blob_id
stringlengths
40
40
language
stringclasses
1 value
repo_name
stringlengths
5
133
path
stringlengths
3
276
src_encoding
stringclasses
33 values
length_bytes
int64
23
9.61M
score
float64
2.52
5.28
int_score
int64
3
5
detected_licenses
listlengths
0
44
license_type
stringclasses
2 values
text
stringlengths
23
9.43M
download_success
bool
1 class
4c378ad9b2c7a50f27804f02ee590476c8e43d69
SQL
bydan/pre
/erp_ejb/src_facturacion/com/bydan/erp/facturacion/resources/general/IngresosReferendos_Postgres.sql
UTF-8
351
3.21875
3
[ "Apache-2.0" ]
permissive
select (select nombre_completo from cartera.cliente where id=p.id_cliente) as nombre_completo_cliente, p.numero, p.numero_autorizacion, p.numero_fue, f.numero_pre_impreso, f.numero_dau, f.numero_referendo, f.fecha_referendo, f.aforo_referendo from facturacion.pedido p inner join facturacion.factura f on f.id_pedido=p.id --where
true
56da5c050120267fca506d07a1da59cc47906014
SQL
ahmadtechcampus2/ahmad4
/برنامج الامين المحاسبي/Bin/System/Sys/fnGetDiscountMats.sql
UTF-8
707
3.375
3
[]
no_license
################################################################################ CREATE FUNCTION fnGetDiscountMats (@DiscountID [UNIQUEIDENTIFIER]) RETURNS @Result TABLE ( [GUID] [UNIQUEIDENTIFIER], [DiscountVal][FLOAT], [DiscountType][INT] ) AS BEGIN INSERT INTO @Result SELECT ItemGuid, Value, DiscountType FROM DiscountTypesItems000 WHERE (Type = 0) AND (ParentGuid = @DiscountID) INSERT INTO @Result SELECT mt.GUID, Value, DiscountType FROM DiscountTypesItems000 item inner join mt000 mt on mt.GroupGUID=item.ItemGUID WHERE item.ParentGuid = @DiscountID RETURN END ################################################################################ #END
true
5a744f532d18375c4c35c251b173a9873b73d0d4
SQL
MatheusNicolielo/3Ano
/BancoDeDados/2 BIM/23_05/Base_Exercicios.Sql
UTF-8
13,086
3.265625
3
[]
no_license
ALTER SESSION SET NLS_DATE_FORMAT = 'DDMMYYYY'; CREATE TABLE DEPTO ( CD_DEPTO CHAR(3) NOT NULL ,NM_DEPTO VARCHAR2(40) ,CD_GERENTE NUMBER(5) ,CD_DEPTO_CTB CHAR(3) ,PRIMARY KEY (CD_DEPTO) ); CREATE TABLE FUNC ( CD_MAT NUMBER(5) NOT NULL ,NM_FUNC VARCHAR2(12) ,NM_SOBRENOME VARCHAR2(12) ,CD_DEPTO CHAR(3) REFERENCES DEPTO(CD_DEPTO) ,NR_RAMAL NUMBER(4) ,DT_ADM DATE ,NR_CARGO NUMBER(3) ,NR_GIT NUMBER(2) ,IN_SEXO VARCHAR2(1) CHECK(IN_SEXO IN ('F', 'M')) ,DT_NASC DATE ,VL_SAL NUMBER(9,2) ,NM_FOTO VARCHAR2(100) ,PRIMARY KEY (CD_MAT) ); CREATE TABLE PROJ ( CD_PROJ CHAR(6) NOT NULL, NM_PROJ VARCHAR2(30) NOT NULL, CD_DEPTO CHAR(3) NOT NULL REFERENCES DEPTO (CD_DEPTO), CD_RESP NUMBER(5) NOT NULL REFERENCES FUNC (CD_MAT), QT_EQP NUMBER(02), DT_INI DATE, DT_FIM DATE, PRIMARY KEY (CD_PROJ)); CREATE TABLE ATIV ( CD_ATIV NUMBER(3) PRIMARY KEY, NM_SIGLA VARCHAR2(12), TX_DESCRICAO VARCHAR2(30) ); CREATE TABLE PRJATV (CD_PROJ CHAR(06) NOT NULL REFERENCES PROJ, CD_ATIV NUMBER(03) NOT NULL REFERENCES ATIV, DT_INI DATE NOT NULL, DT_FIM DATE NOT NULL, PRIMARY KEY (CD_PROJ, CD_ATIV) ); CREATE TABLE HST_PROMO ( DT_PROMOCAO DATE NOT NULL ,CD_MAT NUMBER(5) NOT NULL ,VL_SAL NUMBER(9,2) ,CD_DEPTO CHAR(3) ,NR_CARGO NUMBER(3) ,TX_MOTIVO VARCHAR2(200) ,PRIMARY KEY (DT_PROMOCAO, CD_MAT)); INSERT INTO DEPTO VALUES ('A00','DIRETORIA DA EMPRESA',10,NULL); INSERT INTO DEPTO VALUES ('B01','ASSESSORIA',20,'A00'); INSERT INTO DEPTO VALUES ('C01','CENTRO DE INFORMACAO',30,'A00'); INSERT INTO DEPTO VALUES ('D01','DIRETORIA DE SISTEMAS',NULL,'A00'); INSERT INTO DEPTO VALUES ('D11','GERENCIA DE SISTEMAS COMERCIAIS',60,'D01'); INSERT INTO DEPTO VALUES ('D21','GERENCIA DE SISTEMAS ADMINISTRATIVOS',70,'D01'); INSERT INTO DEPTO VALUES ('E01','DIRETORIA DE SUPORTE/PRODUCAO',50,'A00'); INSERT INTO DEPTO VALUES ('E11','OPERACAO',90,'E01'); INSERT INTO DEPTO VALUES ('E21','SUPORTE DE SOFTWARE',100,'E01'); INSERT INTO FUNC VALUES (10,'CRISTINA','HENDERSON','A00',3978,'01011995',66,18,'F','14081953',5275,'c:\windows\bolhas.bmp'); INSERT INTO FUNC VALUES (20,'MIGUEL','TEIXEIRA','B01',3476,'10101993',61,18,'M','02021968',4125,'c:\windows\egito.bmp'); INSERT INTO FUNC VALUES (30,'SANDRA','KWAN','C01',4738,'05041995',60,20,'F','11051961',3825,'c:\windows\ladrilhos.bmp'); INSERT INTO FUNC VALUES (50,'JOAO','GOMES','E01',6789,'17081989',58,16,'M','15091955',4017.5,'c:\windows\esteira.bmp'); INSERT INTO FUNC VALUES (60,'IRACY','SOUZA','D11',6423,'14091993',55,16,'F','07071955',3225,'c:\windows\bolhas.bmp'); INSERT INTO FUNC VALUES (70,'EVA','PEREIRA','D21',7831,'30091990',56,16,'F','26051963',3617,'c:\windows\ladrilhos.bmp'); INSERT INTO FUNC VALUES (90,'ELIANE','HONOFRE','E11',5498,'15081995',55,16,'F','15051971',2975,'c:\windows\esteira.bmp'); INSERT INTO FUNC VALUES (100,'TEODORO','SIQUEIRA','E21',972,'16061990',54,14,'M','18121966',2615,'c:\windows\bolhas.bmp'); INSERT INTO FUNC VALUES (110,'VICENTE','LOURENCO','A00',3490,'16051994',58,19,'M','05111969',4650,'c:\windows\egito.bmp'); INSERT INTO FUNC VALUES (120,'SILVIO','OLIVA','A00',2167,'05121993',58,14,'M','18101962',2925,'c:\windows\esteira.bmp'); INSERT INTO FUNC VALUES (130,'DOLORES','QUEIROZ','C01',4578,'28071991',55,16,'F','15091955',2380,'c:\windows\ondas.bmp'); INSERT INTO FUNC VALUES (140,'HELENA','NOVAES','C01',1793,'15121991',56,18,'F','19011956',2842,'c:\windows\bolhas.bmp'); INSERT INTO FUNC VALUES (150,'BRUNO','AZEVEDO','D11',4510,'12021992',55,16,'M','17051967',2528,'c:\windows\pied-de-poule.bmp'); INSERT INTO FUNC VALUES (160,'ELIZABET','PINTO','D11',3782,'11101993',54,17,'F','12041965',2225,'c:\windows\egito.bmp'); INSERT INTO FUNC VALUES (170,'GABRIEL','YVES','D11',2890,'15091989',54,16,'M','05011971',2468,'c:\windows\bolhas.bmp'); INSERT INTO FUNC VALUES (180,'MARIA','SANTOS','D11',1682,'07071990',53,17,'F','21021969',2134,'c:\windows\pied-de-poule.bmp'); INSERT INTO FUNC VALUES (190,'JAIRO','WILARES','D11',2986,'26071994',53,16,'M','25061972',2045,'c:\windows\ladrilhos.bmp'); INSERT INTO FUNC VALUES (200,'DAVI','BARBOSA','D11',4501,'03031996',55,16,'M','29051971',2774,'c:\windows\ondas.bmp'); INSERT INTO FUNC VALUES (210,'WILIAM','JONES','D11',942,'11041994',52,17,'M','23021963',1827,'c:\windows\egito.bmp'); INSERT INTO FUNC VALUES (220,'JOANA','LUZ','D11',672,'29081995',55,18,'F','19031968',2984,'c:\windows\pied-de-poule.bmp'); INSERT INTO FUNC VALUES (230,'JOAQUIM','JANUARIO','D21',2094,'21111995',53,14,'M','30051965',2218,'c:\windows\bolhas.bmp'); INSERT INTO FUNC VALUES (240,'SALVADOR','MEDEIROS','D21',3780,'05121993',55,17,'M','31031974',2876,'c:\windows\esteira.bmp'); INSERT INTO FUNC VALUES (250,'DANIEL','SANTANA','D21',961,'30101999',52,15,'M','12111969',1918,'c:\windows\ladrilhos.bmp'); INSERT INTO FUNC VALUES (260,'SILVIA','JUVENTO','D21',8953,'11091995',52,16,'F','05101966',1725,'c:\windows\pied-de-poule.bmp'); INSERT INTO FUNC VALUES (270,'MARTA','PARENTE','D21',9001,'30091990',55,15,'F','26051973',2738,'c:\windows\esteira.bmp'); INSERT INTO FUNC VALUES (280,'ELINE','SEVERO','E11',8997,'24031991',54,17,'F','28031966',2625,'c:\windows\bolhas.bmp'); INSERT INTO FUNC VALUES (290,'JOAO','PONTES','E11',4502,'30051990',42,12,'M','09071966',1534,'c:\windows\egito.bmp'); INSERT INTO FUNC VALUES (300,'FELIPE','SARAIVA','E11',2095,'19061992',48,14,'M','27101956',1775,'c:\windows\esteira.bmp'); INSERT INTO FUNC VALUES (310,'MARINA','SALGADO','E11',3332,'12091991',43,12,'F','21041971',1590,'c:\windows\ondas.bmp'); INSERT INTO FUNC VALUES (320,'ROBERTO','MARQUES','E21',9990,'07071990',52,16,'M','11081972',1995,'c:\windows\ladrilhos.bmp'); INSERT INTO FUNC VALUES (330,'WILSON','LOPES','E21',2103,'23021996',55,14,'M','18071971',2537,'c:\windows\egito.bmp'); INSERT INTO FUNC VALUES (340,'DILSON','GONCALVES','E21',5698,'05051996',54,16,'M','17051966',2384,'c:\windows\bolhas.bmp'); INSERT INTO PROJ VALUES ('MA2100','AUTOMACAO COMERCIAL', 'D21', 070, 12, '01011996', '01021996'); INSERT INTO PROJ VALUES ('MA2110','PROGRAMACAO', 'D11', 060, 09, '01011996', '01021996'); INSERT INTO PROJ VALUES ('MA2111','ANALISE', 'D11', 150, 02, '01011996', '01021996'); INSERT INTO PROJ VALUES ('MA2112','LEVANTAMENTO', 'D11', 060, 03, '01011996', '01021996'); INSERT INTO PROJ VALUES ('MA2113','DEPURACAO', 'D11', 170, 03, '15021996', '15091996'); INSERT INTO PROJ VALUES ('PL2100','PLANEJAMENTO', 'B01', 020, 01, '01011996', '01021996'); INSERT INTO PROJ VALUES ('IF1000','CONSULTORIA', 'C01', 030, 02, '01011996', '01021996'); INSERT INTO PROJ VALUES ('IF2000','TREINAMENTO', 'C01', 130, 01, '01011996', '01021996'); INSERT INTO PROJ VALUES ('AD3100','SERVICOS ADMINISTRATIVOS', 'A00', 010, 06, '01011996', '01021996'); INSERT INTO PROJ VALUES ('AD3110','ADMINISTRACAO GERAL', 'A00', 110, 06, '01011996', '01021996'); INSERT INTO PROJ VALUES ('AD3111','PROGRAMACAO DE PAGAMENTO', 'D21', 240, 02, '01011996', '01021996'); INSERT INTO PROJ VALUES ('AD3112','PROGRAMACAO DE PESSOAL', 'D21', 250, 01, '01011996', '01021996'); INSERT INTO PROJ VALUES ('AD3113','ASSISTENCIA MEDICA', 'D21', 070, 02, '01011996', '01021996'); INSERT INTO PROJ VALUES ('OP1000','SUPORTE PRODUCAO', 'E01', 050, 06, '01011996', '01021996'); INSERT INTO PROJ VALUES ('OP2010','SUPORTE SISTEMAS', 'E21', 320, 04, '01011996', '01021996'); INSERT INTO PROJ VALUES ('OP2011','SUPORTE SOFTWARE', 'E21', 330, 01, '01011996', '01021996'); INSERT INTO PROJ VALUES ('OP2012','SUPORTE USUARIO', 'E21', 340, 01, '01011996', '01021996'); INSERT INTO PROJ VALUES ('OP2013','SUPORTE DB/DC', 'E21', 100, 01, '01011996', '01021996'); INSERT INTO PROJ VALUES ('OP1010','OPERACAO', 'E11', 090, 05, '01011996', '01021996'); INSERT INTO PROJ VALUES ('OP2000','SISTEMAS DE CONTROLE', 'E01', 050, 05, '01011996', '01021996'); INSERT INTO ATIV VALUES (10, 'GERENCIA', 'GERÊNCIA'); INSERT INTO ATIV VALUES (20, 'CUSTO', 'ESTIMATIVA DE CUSTO'); INSERT INTO ATIV VALUES (30, 'LEVANTAMENTO', 'FASE DE LEVANTAMENTO'); INSERT INTO ATIV VALUES (40, 'DEFINICAO', 'DEFINIÇÃO DE PROGRAMAS'); INSERT INTO ATIV VALUES (50, 'APRESENTACAO', 'APRESENTAÇÃO DO PROJETO'); INSERT INTO ATIV VALUES (60, 'LOGICA', 'DESCRIÇÃO DA LÓGICA'); INSERT INTO ATIV VALUES (70, 'CODIGO', 'CODIFICAÇÃO DE PROGRAMAS'); INSERT INTO ATIV VALUES (80, 'TESTE', 'TESTE DE PROGRAMAS'); INSERT INTO ATIV VALUES (90, 'FISICO', 'PROJETO FÍSICO'); INSERT INTO ATIV VALUES (100, 'CURSO', 'MINISTRAR CURSOS'); INSERT INTO ATIV VALUES (110, 'PREPARACAO', 'DESENVOLVIMENTO DE CURSOS'); INSERT INTO ATIV VALUES (120, 'PESSOAL', 'ADMINISTRAÇÃO DE PESSOAL'); INSERT INTO ATIV VALUES (130, 'OPERACAO', 'OPERAÇÃO DE SISTEMAS'); INSERT INTO ATIV VALUES (140, 'MANUTENCAO', 'MANUTENÇÃO DE SOFTWARE'); INSERT INTO ATIV VALUES (150, 'ADMPROD', 'ADMINISTRAÇÃO DE PRODUÇÃO'); INSERT INTO ATIV VALUES (160, 'ADMDB', 'ADMINISTRAÇÃO BANCO DE DADOS'); INSERT INTO ATIV VALUES (170, 'ADMREDE', 'ADMINISTRAÇÃO DE REDE'); INSERT INTO ATIV VALUES (180, 'DOC', 'DOCUMENTAÇÃO DE SISTEMAS'); INSERT INTO PRJATV VALUES ('AD3110',10, '12041989','22041989'); INSERT INTO PRJATV VALUES ('AD3110',40, '28121991','07011992'); INSERT INTO PRJATV VALUES ('AD3110',70, '13091994','23091994'); INSERT INTO PRJATV VALUES ('AD3111',20, '27061990','28071990'); INSERT INTO PRJATV VALUES ('AD3111',50, '13031993','13041993'); INSERT INTO PRJATV VALUES ('AD3111',80, '28111995','29121995'); INSERT INTO PRJATV VALUES ('AD3112',20, '29061990','01071990'); INSERT INTO PRJATV VALUES ('AD3112',50, '15031993','17031993'); INSERT INTO PRJATV VALUES ('AD3112',80, '30111995','02121995'); INSERT INTO PRJATV VALUES ('AD3113',30, '29031991','21041991'); INSERT INTO PRJATV VALUES ('AD3113',60, '13121993','05011994'); INSERT INTO PRJATV VALUES ('AD3113',90, '29081996','21091996'); INSERT INTO PRJATV VALUES ('IF1000',10, '16031989','23031989'); INSERT INTO PRJATV VALUES ('IF1000',40, '01121991','08121991'); INSERT INTO PRJATV VALUES ('IF1000',70, '17081994','24081994'); INSERT INTO PRJATV VALUES ('IF2000',30, '14121990','01011991'); INSERT INTO PRJATV VALUES ('IF2000',60, '30081993','17091993'); INSERT INTO PRJATV VALUES ('IF2000',90, '16051996','03061996'); INSERT INTO PRJATV VALUES ('MA2100',40, '04111991','05121991'); INSERT INTO PRJATV VALUES ('MA2100',70, '21071994','21081994'); INSERT INTO PRJATV VALUES ('MA2110',10, '19021989','21021989'); INSERT INTO PRJATV VALUES ('MA2110',40, '06111991','08111991'); INSERT INTO PRJATV VALUES ('MA2110',70, '23071994','25071994'); INSERT INTO PRJATV VALUES ('MA2110',100, '08041997','10041997'); INSERT INTO PRJATV VALUES ('MA2111',20, '19111989','12121989'); INSERT INTO PRJATV VALUES ('MA2111',50, '05081992','28081992'); INSERT INTO PRJATV VALUES ('MA2111',80, '22041995','15051995'); INSERT INTO PRJATV VALUES ('MA2113',30, '24101990','08111990'); INSERT INTO PRJATV VALUES ('MA2113',60, '10071993','25071993'); INSERT INTO PRJATV VALUES ('MA2113',90, '26031996','10041996'); INSERT INTO PRJATV VALUES ('OP2000',20, '20081990','30081990'); INSERT INTO PRJATV VALUES ('OP2000',50, '06051993','16051993'); INSERT INTO PRJATV VALUES ('OP2000',80, '21011996','31011996'); INSERT INTO PRJATV VALUES ('OP2010',10, '16061989','01071989'); INSERT INTO PRJATV VALUES ('OP2010',40, '02031992','17031992'); INSERT INTO PRJATV VALUES ('OP2010',70, '17111994','02121994'); INSERT INTO PRJATV VALUES ('OP2011',30, '12061991','08071991'); INSERT INTO PRJATV VALUES ('OP2011',60, '26021994','24031994'); INSERT INTO PRJATV VALUES ('OP2011',90, '12111996','08121996'); INSERT INTO PRJATV VALUES ('OP2012',20, '24071990','31071990'); INSERT INTO PRJATV VALUES ('OP2012',50, '09041993','16041993'); INSERT INTO PRJATV VALUES ('OP2012',80, '25121995','01011996'); INSERT INTO PRJATV VALUES ('OP2013',10, '06081989','24081989'); INSERT INTO PRJATV VALUES ('OP2013',40, '22041992','10051992'); INSERT INTO PRJATV VALUES ('OP2013',70, '07011995','25011995'); INSERT INTO PRJATV VALUES ('PL2100',20, '02021990','28021990'); INSERT INTO PRJATV VALUES ('PL2100',50, '19101992','14111992'); INSERT INTO PRJATV VALUES ('PL2100',80, '06071995','01081995'); INSERT INTO HST_PROMO (DT_PROMOCAO, CD_MAT, VL_SAL, CD_DEPTO, NR_CARGO, TX_MOTIVO) SELECT DT_ADM, CD_MAT, VL_SAL, CD_DEPTO, NR_CARGO, 'ADMISSÃO' FROM FUNC; INSERT INTO HST_PROMO (DT_PROMOCAO, CD_MAT, VL_SAL, CD_DEPTO, NR_CARGO, TX_MOTIVO) SELECT DT_ADM + 1/1440, CD_MAT, VL_SAL, CD_DEPTO, NR_CARGO, 'Cargo gerencial. Não haverá % de valor adicional' FROM FUNC WHERE CD_MAT IN (SELECT CD_GERENTE FROM DEPTO); alter table depto add foreign key (cd_depto_ctb) references depto; alter table depto add foreign key (cd_gerente) references func; commit;
true
59076fa31cb916e4db94aca3ab6a8348d53bf36a
SQL
LasseANielsen/NuErDetNu
/Uge 1 Opgaver/SelectManyTablesOpgaver.sql
UTF-8
841
3.25
3
[]
no_license
# Opgave 23 SELECT `customerName`, `salesRepEmployeeNumber`, `firstName`, `lastName`, `employeeNumber` FROM `customers` JOIN `employees` ON (`salesRepEmployeeNumber` = `employeeNumber`); # Opgave 24 SELECT `customerName`, `salesRepEmployeeNumber`, `firstName`, `lastName`, `employeeNumber` FROM `customers` JOIN `employees` ON (`salesRepEmployeeNumber` = `employeeNumber`) WHERE `country` = 'italy'; # Opgave 24a SELECT `customerName`, `salesRepEmployeeNumber`, `firstName`, `lastName`, `employeeNumber` FROM (SELECT * FROM `customers` WHERE `country` = 'italy') AS `Italy` JOIN `employees` ON (`salesRepEmployeeNumber` = `employeeNumber`); # Opgave 25 SELECT `country`, `salesRepEmployeeNumber`, `firstName`, `lastName`, `employeeNumber` FROM `customers` JOIN `employees` ON (`salesRepEmployeeNumber` = `employeeNumber`) GROUP BY `country`;
true
b0c56815192304c3f24d22879d1f78d30ab28c65
SQL
KishorNaik/TMS
/SolTMS/DATABASE/Test Script/Total Consignment Dispatch by Driver.sql
UTF-8
491
4
4
[]
no_license
-- Total Consignment by Driver SELECT Dispatch.DispatchID, Transport.DriverName, (COUNT(Consignment.ConsigneeID)) AS 'Total Consignment' FROM Consignment INNER JOIN Dispatch ON Consignment.DispatchID=Dispatch.DispatchID INNER JOIN Transport ON Dispatch.TransportID=Transport.TransportID GROUP BY Dispatch.DispatchID, Transport.DriverName SELECT Consignment.DispatchID,COUNT(Consignment.DocketNo) as 'Total Consignment' FROM Consignment GROUP BY Consignment.DispatchID
true
8bedbd37fbaa3e0f2cbe62229fa973e973137e44
SQL
vladavladimir/admin
/filmovi.sql
UTF-8
2,435
3.4375
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: May 24, 2020 at 08:11 PM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.4.2 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `filmovi` -- -- -------------------------------------------------------- -- -- Table structure for table `film` -- CREATE TABLE `film` ( `id` int(10) NOT NULL, `naziv` varchar(50) NOT NULL, `godina` varchar(10) NOT NULL, `zanr_id` int(10) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `film` -- INSERT INTO `film` (`id`, `naziv`, `godina`, `zanr_id`) VALUES (60, 'Lajanje na zvezde', '1998', 2), (61, 'Davitelj protiv davitelja', '1984', 9), (62, 'Mars na Drinu', '1964', 1), (63, 'Nebeska udica', '2000', 10); -- -------------------------------------------------------- -- -- Table structure for table `zanrovi` -- CREATE TABLE `zanrovi` ( `id` int(10) NOT NULL, `zanr` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `zanrovi` -- INSERT INTO `zanrovi` (`id`, `zanr`) VALUES (1, 'akcija'), (2, 'komedija'), (3, 'triler'), (9, 'horor'), (10, 'drama'); -- -- Indexes for dumped tables -- -- -- Indexes for table `film` -- ALTER TABLE `film` ADD PRIMARY KEY (`id`), ADD KEY `zanr_id` (`zanr_id`); -- -- Indexes for table `zanrovi` -- ALTER TABLE `zanrovi` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `film` -- ALTER TABLE `film` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; -- -- AUTO_INCREMENT for table `zanrovi` -- ALTER TABLE `zanrovi` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- Constraints for dumped tables -- -- -- Constraints for table `film` -- ALTER TABLE `film` ADD CONSTRAINT `film_ibfk_1` FOREIGN KEY (`zanr_id`) REFERENCES `zanrovi` (`id`) ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
true
001a6ff5b082398d7a88781071c69756812795f3
SQL
maraboinanishanth/DocSortGitRepository
/DocSort v1.0.0.5/DocSort CPA/DataBase Scripts/StoredProcedures/`sp_GetFileCabinets`.sql
UTF-8
226
2.609375
3
[]
no_license
DELIMITER $$ USE `cpa-mysql`$$ DROP PROCEDURE IF EXISTS `sp_GetFileCabinets`$$ CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_GetFileCabinets`() BEGIN SELECT * FROM tbl_filecabinet WHERE IsDelete='True'; END$$ DELIMITER ;
true
54192116c42497214b6d00cf92b4dcf0ff6f48a4
SQL
TakeActionNow/OSM
/Ronin/Database1/global/Tables/operating_system.sql
UTF-8
373
2.640625
3
[]
no_license
CREATE TABLE [global].[operating_system] ( [operating_system_id] INT IDENTITY (1, 1) NOT NULL, [operating_system_value] NVARCHAR (50) NOT NULL, [create_date] DATETIME NULL, [modify_date] DATETIME NULL, [delete_date] DATETIME NULL, PRIMARY KEY CLUSTERED ([operating_system_id] ASC) );
true
aa93f5f212822ff594c8130c3a0cf402d3b54e8e
SQL
spencersong0/cs61a
/homework/hw12/hw12.sql
UTF-8
2,604
4.3125
4
[]
no_license
CREATE TABLE parents AS SELECT "abraham" AS parent, "barack" AS child UNION SELECT "abraham" , "clinton" UNION SELECT "delano" , "herbert" UNION SELECT "fillmore" , "abraham" UNION SELECT "fillmore" , "delano" UNION SELECT "fillmore" , "grover" UNION SELECT "eisenhower" , "fillmore"; CREATE TABLE dogs AS SELECT "abraham" AS name, "long" AS fur, 26 AS height UNION SELECT "barack" , "short" , 52 UNION SELECT "clinton" , "long" , 47 UNION SELECT "delano" , "long" , 46 UNION SELECT "eisenhower" , "short" , 35 UNION SELECT "fillmore" , "curly" , 32 UNION SELECT "grover" , "short" , 28 UNION SELECT "herbert" , "curly" , 31; CREATE TABLE sizes AS SELECT "toy" AS size, 24 AS min, 28 AS max UNION SELECT "mini" , 28 , 35 UNION SELECT "medium" , 35 , 45 UNION SELECT "standard" , 45 , 60; ------------------------------------------------------------- -- PLEASE DO NOT CHANGE ANY SQL STATEMENTS ABOVE THIS LINE -- ------------------------------------------------------------- -- The size of each dog CREATE TABLE size_of_dogs AS SELECT name AS name, size AS size FROM dogs, sizes WHERE height <= max AND height > min; -- All dogs with parents ordered by decreasing height of their parent CREATE TABLE by_height AS SELECT child FROM parents AS p, dogs AS d WHERE d.name = p.parent ORDER BY height DESC; -- Sentences about siblings that are the same size CREATE TABLE sentences AS SELECT distinct a1.name || " and " || a2.name || " are " || a1.size || " siblings" FROM size_of_dogs AS a1, size_of_dogs AS a2, parents as b1, parents as b2 WHERE a1.size = a2.size AND b1.parent = b2.parent AND a1.name < a2.name AND a1.name = b1.child AND a2.name = b2.child ORDER BY a1.name; -- Ways to stack 4 dogs to a height of at least 170, ordered by total height CREATE TABLE stacks AS WITH stacks_helper(four, strings, stack_height, last_height) AS ( SELECT 3, name, height, height FROM dogs UNION SELECT four - 1, name || ", " || strings, stack_height + height, height FROM dogs, stacks_helper -- WHERE four > 0 AND stack_height < last_height WHERE four > 0 AND height < last_height ) SELECT strings, stack_height -- SELECT * FROM stacks_helper WHERE stack_height > 170 AND four = 0 ORDER BY stack_height ASC;
true
0272202eb3ea5d31cae0648ddf84a1e9d98cc660
SQL
PranaySai/MobiCloudWebService
/DBScripts.sql
UTF-8
2,236
3.59375
4
[]
no_license
CREATE TABLE `usertable` ( `UserID` int(11) NOT NULL AUTO_INCREMENT, `UserName` varchar(15) NOT NULL, `Password` varchar(15) NOT NULL, `MobileUID` varchar(40) NOT NULL, `Current_Status` varchar(10) NOT NULL DEFAULT 'ON', `MobileIP` varchar(20) NOT NULL, PRIMARY KEY (`UserID`), UNIQUE KEY `MobileUID` (`MobileUID`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8; CREATE TABLE `location` ( `UserId` int(11) NOT NULL, `XCord` varchar(20) NOT NULL, `YCord` varchar(20) NOT NULL, `Updated_Time` datetime NOT NULL, KEY `location_ibfk_1` (`UserId`), CONSTRAINT `location_ibfk_1` FOREIGN KEY (`UserId`) REFERENCES `usertable` (`UserID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `filetable` ( `FileID` int(11) NOT NULL AUTO_INCREMENT, `FileName` varchar(30) NOT NULL, `FileSize` float NOT NULL, `SyncStatus` varchar(10) NOT NULL, `Type` varchar(10) NOT NULL, `Source` int(11) NOT NULL, `SourceType` varchar(6) NOT NULL, `LastUpdatedTime` datetime NOT NULL, `FileMIMEType` varchar(10) NOT NULL, PRIMARY KEY (`FileID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `userfilemapping` ( `UserId` int(11) NOT NULL, `FileId` int(11) NOT NULL, PRIMARY KEY (`UserId`,`FileId`), KEY `fk_map_fileid` (`FileId`), CONSTRAINT `fk_map_fileid` FOREIGN KEY (`FileId`) REFERENCES `filetable` (`FileID`), CONSTRAINT `fk_map_userid` FOREIGN KEY (`UserId`) REFERENCES `usertable` (`UserID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `vmdetail` ( `VMID` int(11) NOT NULL AUTO_INCREMENT, `IPAddress` varchar(20) NOT NULL, `MACAddress` varchar(25) NOT NULL, `VMLocation` varchar(25) NOT NULL, `isAllocated` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`VMID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `user_vm` ( `UserID` int(11) NOT NULL, `VMID` int(11) NOT NULL, KEY `user_vm_ibfk_1` (`UserID`), KEY `user_vm_ibfk_2` (`VMID`), CONSTRAINT `user_vm_ibfk_1` FOREIGN KEY (`UserID`) REFERENCES `usertable` (`UserID`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `user_vm_ibfk_2` FOREIGN KEY (`VMID`) REFERENCES `vmdetail` (`VMID`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
true
d8db14424aad94087e50b92225a874174708f2cf
SQL
Davi-Alencar/Bancodd
/SQL/Exercicios/1.2Locadora-DDL.sql
UTF-8
980
3.421875
3
[]
no_license
CREATE DATABASE ex01 USE ex01 CREATE TABLE Empresa ( IdEmpresa INT PRIMARY KEY IDENTITY, NomeEmpresa VARCHAR (200) NOT NULL ); CREATE TABLE Marcas ( IdMarca INT PRIMARY KEY IDENTITY, NomeMarca VARCHAR (200) NOT NULL ); CREATE TABLE Modelos ( IdModelo INT PRIMARY KEY IDENTITY, NomeModelo VARCHAR (200) NOT NULL, IdMarca INT FOREIGN KEY REFERENCES Marcas (IdMarca) ); CREATE TABLE Veiculos ( IdVeiculo INT PRIMARY KEY IDENTITY, Placa VARCHAR (200) NOT NULL UNIQUE, IdEmpresa INT FOREIGN KEY REFERENCES Empresa (IdEmpresa), IdModelo INT FOREIGN KEY REFERENCES Modelos (IdModelo) ); CREATE TABLE Clientes ( IdCliente INT PRIMARY KEY IDENTITY, NomeCliente VARCHAR (200) NOT NULL, Cpf VARCHAR (200) NOT NULL UNIQUE ); CREATE TABLE Alugueis ( IdAluguel INT PRIMARY KEY IDENTITY, DataInicio DATE NOT NULL, DataFim DATE NOT NULL, IdVeiculo INT FOREIGN KEY REFERENCES Veiculos (IdVeiculo), IdCliente INT FOREIGN KEY REFERENCES Clientes (IdCliente) );
true
7e271ffd40692a5ef57e890f66c8585b3ecfeb9c
SQL
SuNR0N/crud-server-demo-app
/sql/08_book_publisher.sql
UTF-8
3,937
2.9375
3
[]
no_license
INSERT INTO book_publisher (book_id, publisher_id) VALUES ( (SELECT id FROM book WHERE title = 'Clean Code: A Handbook of Agile Software Craftsmanship'), (SELECT id FROM publisher WHERE name = 'Prentice Hall') ), ( (SELECT id FROM book WHERE title = 'The Pragmatic Programmer'), (SELECT id FROM publisher WHERE name = 'Addison Wesley') ), ( (SELECT id FROM book WHERE title = 'Head First Design Patterns'), (SELECT id FROM publisher WHERE name = 'O''Reilly Media') ), ( (SELECT id FROM book WHERE title = 'JavaScript: The Good Parts'), (SELECT id FROM publisher WHERE name = 'Yahoo Press') ), ( (SELECT id FROM book WHERE title = 'JavaScript Patterns: Build Better Applications with Coding and Design Patterns'), (SELECT id FROM publisher WHERE name = 'O''Reilly Media') ), ( (SELECT id FROM book WHERE title = 'Cracking the Coding Interview, 6th Edition: 189 Programming Questions and Solutions'), (SELECT id FROM publisher WHERE name = 'CareerCup') ), ( (SELECT id FROM book WHERE title = 'ng-book - The Complete Book on AngularJS'), (SELECT id FROM publisher WHERE name = 'Fullstack.io') ), ( (SELECT id FROM book WHERE title = 'ng-book 2: The Complete Book on Angular 2: Volume 2'), (SELECT id FROM publisher WHERE name = 'Fullstack.io') ), ( (SELECT id FROM book WHERE title = 'OCA: Oracle Certified Associate Java SE 8 Programmer I Study Guide: Exam 1Z0-808'), (SELECT id FROM publisher WHERE name = 'Sybex') ), ( (SELECT id FROM book WHERE title = 'OCP: Oracle Certified Professional Java Se 8 Programmer II Study Guide: Exam 1Z0-809'), (SELECT id FROM publisher WHERE name = 'Sybex') ), ( (SELECT id FROM book WHERE title = 'Pro AngularJS (Expert''s Voice in Web Development)'), (SELECT id FROM publisher WHERE name = 'Apress') ), ( (SELECT id FROM book WHERE title = 'JS.Next: ECMAScript 6'), (SELECT id FROM publisher WHERE name = 'O''Reilly Media') ), ( (SELECT id FROM book WHERE title = 'You Don''t Know JS: ES6 & Beyond'), (SELECT id FROM publisher WHERE name = 'O''Reilly Media') ), ( (SELECT id FROM book WHERE title = 'Production-Ready Microservices: Building Standardized Systems Across an Engineering Organization'), (SELECT id FROM publisher WHERE name = 'O''Reilly Media') ), ( (SELECT id FROM book WHERE title = 'Building Microservices: Designing Fine-Grained Systems'), (SELECT id FROM publisher WHERE name = 'O''Reilly Media') ), ( (SELECT id FROM book WHERE title = 'The Hacker Playbook 2: Practical Guide To Penetration Testing'), (SELECT id FROM publisher WHERE name = 'CreateSpace Independent Publishing Platform') ), ( (SELECT id FROM book WHERE title = 'ng-book: The Complete Guide to Angular 4'), (SELECT id FROM publisher WHERE name = 'CreateSpace Independent Publishing Platform') ), ( (SELECT id FROM book WHERE title = 'Automate the Boring Stuff with Python: Practical Programming for Total Beginners'), (SELECT id FROM publisher WHERE name = 'No Starch Press') ), ( (SELECT id FROM book WHERE title = 'Node.js Design Patterns - Second Edition: Master best practices to build modular and scalable server-side web applications'), (SELECT id FROM publisher WHERE name = 'Packt Publishing') ), ( (SELECT id FROM book WHERE title = 'Mastering TypeScript - Second Edition'), (SELECT id FROM publisher WHERE name = 'Packt Publishing') ), ( (SELECT id FROM book WHERE title = 'TypeScript Microservices: A complete guide to build, deploy, test, & secure microservices with TypeScript and NodeJS'), (SELECT id FROM publisher WHERE name = 'Packt Publishing') ), ( (SELECT id FROM book WHERE title = 'Data Structure and Algorithmic Thinking with Python: Data Structure and Algorithmic Puzzles'), (SELECT id FROM publisher WHERE name = 'CareerMonk Publications') );
true
6cc2603d30c1258afd30e6773dd47d7f9beff6ea
SQL
Caucorico/ESIPE
/BDD/TP-06/Exercice-01/requetes.sql
UTF-8
1,976
4.34375
4
[ "MIT" ]
permissive
-- Le nombre total de factures stockées dans la base de données. SELECT COUNT(idfac) FROM facture; --La liste des noms de magasins, avec pour chacun le nombre de villes où ils sont implantés. Le nombre maximum à trouver est 4. SELECT nom, COUNT(DISTINCT ville) FROM magasin GROUP BY nom; --La liste des numéros et noms de clients avec pour chacun le nombre de factures qui le concernent. Attention à ne pas perdre les clients qui n’ont jamais rien acheté. SELECT client.numcli, client.nom, client.prenom, COUNT(facture.idfac) AS nbrFactures FROM client LEFT JOIN facture ON client.numcli = facture.numcli GROUP BY client.numcli, client.nom, client.prenom ORDER BY nbrFactures; -- Le prix moyen, minimum et maximum d’un bureau à Paris. SELECT AVG(stocke.prixunit) AS prix_moyen, MIN(stocke.prixunit) AS prix_min, MAX(stocke.prixunit) FROM produit INNER JOIN stocke ON produit.idpro = stocke.idpro INNER JOIN magasin ON stocke.idmag = magasin.idmag WHERE produit.libelle = 'bureau' AND magasin.ville = 'paris'; -- La liste des meilleurs prix pour chaque libellé de produit. SELECT produit.libelle, MIN(stocke.prixunit) FROM produit LEFT JOIN stocke ON produit.idpro = stocke.idpro GROUP BY produit.libelle; -- a liste de toutes les factures, avec pour chacune le nom complet du client qui l’a contractée et son montant total, triées par montant décroissant. -- La facture la plus chère coûte 1712.45 euros. SELECT facture.idfac, client.nom, client.prenom, SUM(contient.prixunit*contient.quantite) AS montant FROM facture INNER JOIN contient ON facture.idfac = contient.idfac INNER JOIN client ON facture.numcli = client.numcli GROUP BY facture.idfac, client.numcli ORDER BY montant DESC; -- La liste des magasins qui vendent au moins 20 produits de libellés différents. SELECT magasin.idmag, magasin.nom FROM magasin INNER JOIN stocke USING(idmag) INNER JOIN produit USING(idpro) GROUP BY magasin.idmag HAVING COUNT(DISTINCT produit.libelle) >= 20;
true
9975b5f4d6f2af5d326ed3919c5a417eda3ac4f9
SQL
MRGhidini/SAP_Queries
/HANA/Func TREINAMENTO_HANA_FUNCAO_TABULAR_COM_VIEW.SQL
UTF-8
752
3.4375
3
[]
no_license
/* SELECT * FROM TREINAMENTO_HANA_FUNCAO_TABELA(); */ DROP FUNCTION "TREINAMENTO_HANA_FUNCAO_TABELA_COM_VIEW"; CREATE FUNCTION "TREINAMENTO_HANA_FUNCAO_TABELA_COM_VIEW" (Tabela VARCHAR(4), pCardCode VARCHAR(100) default '*sempn*') RETURNS TABLE ( "CardCode" NVARCHAR(100), "CardType" NVARCHAR(1), "DocEntry" INT, "DocDate" DATETIME, "TransId" INT, "Vendedor" NVARCHAR(100) ) AS BEGIN RETURN Select T0."CardCode", T0."CardType", T1."DocEntry", T1."DocDate", T1."TransId", T2."SlpName" as "Vendedor" From OCRD T0 INNER JOIN DOCUMENTOSDEVENDA T1 ON T0."CardCode" = T1."CardCode" INNER JOIN OSLP T2 ON T1."SlpCode" = T2."SlpCode" Where :pCardCode IN (T0."CardCode", '*sempn*'); END;
true
5dff643b1d7dfe57abcdaa42fdeab98cf5125ef4
SQL
xkbui/WebExploit-task2
/database/ekb.sql
UTF-8
4,428
2.828125
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 4.9.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 10, 2019 at 07:24 AM -- Server version: 10.3.16-MariaDB -- PHP Version: 7.3.7 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `ekb` -- -- -------------------------------------------------------- -- -- Table structure for table `tbcve` -- CREATE TABLE `tbcve` ( `id` int(11) NOT NULL, `title` varchar(255) NOT NULL, `CVE` varchar(255) NOT NULL, `OSVDB` varchar(255) DEFAULT NULL, `author` varchar(255) DEFAULT NULL, `published` date DEFAULT NULL, `impact` varchar(255) DEFAULT 'N/A', `platform` varchar(255) DEFAULT 'N/A', `file` varchar(255) DEFAULT NULL, `url` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbcve` -- INSERT INTO `tbcve` (`id`, `title`, `CVE`, `OSVDB`, `author`, `published`, `impact`, `platform`, `file`, `url`) VALUES (11, 'Ä‘', 'b', '2', 'b', '0000-00-00', 'm', 'ư', '4', 's'), (99, 'fefef', 'fefefef00000', 'êfefef', 'tui', '0000-00-00', 'lala', 'okok', 'Ä‘ffffff777777', 'hehe'), (130, 'uuuuu', 'fefuuuu', 'ádssd', 'dsad', '0000-00-00', 'sds', 'đá', 'ádsa', 'dsdas'), (133, 'XNU - Remote Double-Free via Data Race in IPComp Input Path ', '2019-8717 ', 'N/A', 'Google Security Research ', '2019-10-09', 'N/A', 'macOS ', 'N/A', 'N/A'), (134, 'Foscam Video Management System 1.1.6.6 - &#39;UID&#39; Denial of Service (PoC) ', 'N/A ', 'N/A', 'Alessandro Magnosi ', '2019-10-09', 'N/A', 'Windows ', 'N/A', 'N/A'), (135, 'CheckPoint Endpoint Security Client/ZoneAlarm 15.4.062.17802 - Privilege Escalation ', '2019-8452 ', 'N/A', 'Jakub Palaczynski ', '2019-10-07', 'N/A', 'Windows ', 'N/A', 'N/A'), (136, ' Exploit Database Exploit Database Exploits GHDB Papers Shellcodes Search EDB SearchSploit Manual Submissions Online Training PWK Penetration Testing with Kali AWAE Advanced Web Attacks WiFu', '2019-15943 ', 'N/A', 'bi7s ', '2019-09-18', 'N/A', 'Windows ', 'N/A', 'N/A'); -- -------------------------------------------------------- -- -- Table structure for table `tbuser` -- CREATE TABLE `tbuser` ( `id` int(11) NOT NULL, `username` varchar(50) NOT NULL, `password` varchar(32) NOT NULL, `email` varchar(50) NOT NULL, `fullname` varchar(50) CHARACTER SET utf8 NOT NULL, `level` int(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbuser` -- INSERT INTO `tbuser` (`id`, `username`, `password`, `email`, `fullname`, `level`) VALUES (100000, 'admin', '0192023a7bbd73250516f069df18b500', 'admin@gmail.com', 'Nguyễn Văn Admin', 1), (100002, 'user1234', 'u123456', 'user1234@gmail.com', 'Trần Văn A', 0), (100009, 'khaibui', 'khai123', 'khaibui@gmail.com', 'Bùi Xuân Khải', 0), (100011, 'abcde', '123456', '123456@gmail.com', 'Tui Tui', 0), (100014, 'kkkkkk', '123456', 'qưeqrqwre', 'rẻwererewr', 0), (100015, 'admin222', '202cb962ac59075b964b07152d234b70', 'ffwfefwe', 'ềwfewf', 0), (100018, 'Ä‘wef', '343d9040a671c45832ee5381860e2996', 'fefef', 'fefef', 0), (100020, 'vuivui', 'e10adc3949ba59abbe56e057f20f883e', 'sdfghjk', 'dfghjkl', 0), (100024, 'lalala', '0192023a7bbd73250516f069df18b500', 'vovanquykma.96@gm', 'khkhk', 0), (100025, 'bxkhai', '7aab6cc652347dc80218d721fb2a5909', 'khai123@gmail.com', 'Nguyá»…n Văn A', 0); -- -- Indexes for dumped tables -- -- -- Indexes for table `tbcve` -- ALTER TABLE `tbcve` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `CVE` (`CVE`); -- -- Indexes for table `tbuser` -- ALTER TABLE `tbuser` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `username` (`username`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `tbcve` -- ALTER TABLE `tbcve` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=137; -- -- AUTO_INCREMENT for table `tbuser` -- ALTER TABLE `tbuser` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=100026; 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 */;
true
14d235d63c7231055f30b56ad6eb082633aedfd4
SQL
zareentaz/SQL-Homework
/Employee/schema.sql
UTF-8
1,132
3.625
4
[]
no_license
--create department table CREATE TABLE departments( dept_no VARCHAR(20)NOT NULL PRIMARY KEY, dept_name VARCHAR(30) NOT NULL ); --Create dep_emp table CREATE TABLE dept_emp( emp_no INT, FOREIGN KEY (emp_no) REFERENCES employees(emp_no), dept_no VARCHAR(255)NOT NULL, from_date date, to_date date ); DROP TABLE dept_emp; --create employees table CREATE TABLE employees( emp_no INT NOT NULL PRIMARY KEY, birth_date date, first_name VARCHAR(255) NOT NULL , last_name VARCHAR(255) NOT NULL, gender VARCHAR(10) NOT NULL, hire_date date ); DROP TABLE emplopyees; SELECT * FROM dept_emp; --create dept_manager table CREATE TABLE dept_manager ( dept_no VARCHAR(255)NOT NULL, emp_no INT, FOREIGN KEY (emp_no) REFERENCES employees(emp_no), from_date date, to_date date ); DROP TABLE dept_manager; ) --create salary table CREATE TABLE salaries( emp_no INT, FOREIGN KEY (emp_no) REFERENCES employees(emp_no), salary INT NOT NULL, from_date date, to_date date ); --create titles table CREATE TABLE titles( emp_no INT, FOREIGN KEY (emp_no) REFERENCES employees(emp_no), title VARCHAR(255) NOT NULL, from_date date, to_date date );
true
fb31dc0cb8d934e23baf784fad317cca8be8c05d
SQL
francescocamussoni/SQL-for-Data-Science-Universidad-de-California
/week1.sql
UTF-8
494
2.796875
3
[]
no_license
/* date: 28-03-2021 File: week1.sql Author : Francesco Camussoni Email: camussonif@gmail.com francesco.camussoni@ib.edu.ar GitHub: https://github.com/francescocamussoni linkedin: https://www.linkedin.com/in/francesco-camussoni-529079117/ Description: week 1 coding questions: SQL for Data Science - Universidad de California, Davis */ /* Excercise 1 */ SELECT * FROM Employees /* Excercise 2 */ SELECT FirstName, LastName, Birthdate, Address City, State From Employees /* Excercise 3 */ SELECT * FROM Tracks LIMIT 20
true
c918e5445fac9886b0cde22ea62b5c8b079f53be
SQL
Gilyongyi/Board
/project02/161101 MySQL.sql
UTF-8
3,173
4.59375
5
[]
no_license
-- 게시판 ALTER TABLE boards DROP PRIMARY KEY; -- 게시판 기본키 -- 댓글 ALTER TABLE replys DROP PRIMARY KEY; -- 댓글 기본키 -- 게시판 CREATE TABLE boards ( bno INTEGER NOT NULL, -- 게시물번호 title VARCHAR(255) NOT NULL, -- 제목 content VARCHAR(255) NOT NULL, -- 내용 user VARCHAR(50) NOT NULL, -- 작성자 cre_dt DATETIME NOT NULL, -- 등록일 pwd VARCHAR(30) NOT NULL ); -- 게시판 ALTER TABLE boards ADD CONSTRAINT PK_boards -- 게시판 기본키 PRIMARY KEY ( bno -- 게시물번호 ); ALTER TABLE boards MODIFY COLUMN bno INTEGER NOT NULL AUTO_INCREMENT; -- 댓글 CREATE TABLE replys ( rno INTEGER NOT NULL, -- 댓글번호 bno INTEGER NOT NULL, -- 게시물번호 ruser VARCHAR(50) NOT NULL, -- 작성자 rcontent VARCHAR(255) NOT NULL, -- 내용 rcre_dt DATETIME NOT NULL -- 등록일 ); -- 댓글 ALTER TABLE replys ADD CONSTRAINT PK_replys -- 댓글 기본키 PRIMARY KEY ( rno -- 댓글번호 ); ALTER TABLE replys MODIFY COLUMN rno INTEGER NOT NULL AUTO_INCREMENT; -- 댓글 ALTER TABLE replys ADD CONSTRAINT FK_boards_TO_replys -- 게시판 -> 댓글 FOREIGN KEY ( bno -- 게시물번호 ) REFERENCES boards ( -- 게시판 bno -- 게시물번호 ); --게시물 리스트 SELECT b1.bno, b1.title, b1.cre_dt, b1.user_name, r1.rp, b2.totalcount FROM boards b1 LEFT OUTER JOIN ( SELECT bno,COUNT(rno) rp FROM replys GROUP BY bno) r1 ON b1.bno = r1.bno LEFT OUTER JOIN ( SELECT COUNT(bno) totalcount FROM boards) b2 ON b1.bno ORDER BY bno desc LIMIT #{startIndex}, #{len} --게시물 상세보기 SELECT bno, title, content, user_name, cre_dt, pwd FROM boards WHERE bno=#{value} --비밀번호 체크 SELECT * FROM boards WHERE bno = #{bno} --게시물 쓰기 INSERT INTO boards(title, content, user_name, cre_dt, pwd) VALUES(#{title}, #{content}, #{user}, now(), #{pwd}) --게시물 삭제 DELETE FROM boards WHERE bno=#{no} --게시물 업데이트 UPDATE boards SET title=#{title}, content=#{content}, user_name=#{user}, cre_dt=now() WHERE bno=#{no} --게시물 검색 리스트 SELECT bno, title, user_name, cre_dt FROM boards <if test="sValue eq 'sTitle'"> WHERE title Like CONCAT('%',#{sWord},'%') </if> <if test="sValue eq 'sUser'"> WHERE user_name Like CONCAT('%',#{sWord},'%') </if> <if test="sValue eq 'sDate'"> WHERE cre_dt Like CONCAT('%',#{sWord},'%') </if> ORDER BY bno desc LIMIT #{startIndex}, #{len} --게시물 댓글 리스트 SELECT b1.bno, r1.ruser_name, r1.rcontent, r1.rcre_dt, r1.rno FROM replys r1, boards b1 WHERE r1.bno = b1.bno AND r1.bno = #{no} ORDER BY r1.rno DESC LIMIT #{startIndex}, #{len} --게시물 댓글 쓰기 INSERT INTO replys(bno, rcontent, ruser_name, rcre_dt) VALUES(#{no}, #{rcontent}, #{ruser}, now())
true
0fc30ad10900d81f382c7cd3d2bae76514d71f0e
SQL
gdash-code/techelevator
/module-2/06_Database_Design/exercise-student/meetups/meetups.sql
UTF-8
6,472
3.671875
4
[]
no_license
--member table CREATE TABLE member( member_id serial not null, last_name varchar(50) not null, first_name varchar(50) not null, email varchar(50) not null, phone_number varchar(13), date_of_birth date not null, flag boolean NOT NULL default true, CONSTRAINT pk_member_member_id PRIMARY KEY (member_id) ); --Events table CREATE TABLE event( event_id serial not null, event_name varchar(50) not null, description varchar(100) not null, start_date_time timestamp not null, duration integer not null, group_id integer not null, CONSTRAINT pk_events_event_id PRIMARY KEY (event_id), CONSTRAINT ck_events_duration CHECK (duration >= 30) ); --group table CREATE TABLE interest_group( group_id serial NOT NULL, interest_group_name varchar(50) UNIQUE NOT NULL, CONSTRAINT pk_interest_group_group_id PRIMARY KEY (group_id) ); -- Member Event CREATE TABLE member_event ( member_id integer NOT NULL, event_id integer NOT NULL, CONSTRAINT pk_member_event_member_id_event_id PRIMARY KEY (member_id, event_id) ); --Member Group CREATE TABLE member_group ( member_id integer NOT NULL, group_id integer NOT NULL, CONSTRAINT pk_member_group_member_id_group_id PRIMARY KEY (member_id, group_id) ); --ALTERS --Membergroup alters ALTER TABLE member_group ADD FOREIGN KEY (group_id) REFERENCES interest_group (group_id); --Membegroup alters ALTER TABLE member_group ADD FOREIGN KEY (member_id) REFERENCES member (member_id); --Member event alters ALTER TABLE member_event ADD FOREIGN KEY (member_id) REFERENCES member (member_id); --MEMber event alters ALTER TABLE member_event ADD FOREIGN KEY (event_id) REFERENCES event (event_id); --Altering events ALTER TABLE event ADD FOREIGN KEY (group_id) REFERENCES interest_group (group_id); --INSERTS --members INSERT INTO member (last_name, first_name, email, phone_number, date_of_birth, flag) VALUES ('Parton', 'Dolly', 'dollyisamazing@mountain.com', '555-345-3456', '1999-07-23', true); INSERT INTO member (last_name, first_name, email, phone_number, date_of_birth, flag) VALUES ('Perry', 'Tyler', 'madeaisinthehouse@mountain.com', '444-345-1234', '1888-04-23', false); INSERT INTO member (last_name, first_name, email, phone_number, date_of_birth, flag) VALUES ('Carter', 'Aaron', 'aaronisofftherails@mountain.com', null, '1994-02-04', true); INSERT INTO member (last_name, first_name, email, phone_number, date_of_birth, flag) VALUES ('Naruto', 'Hulk', 'neverwatched@mountain.com', '888-180-1254', '1812-05-03', true); INSERT INTO member (last_name, first_name, email, phone_number, date_of_birth, flag) VALUES ('Invincible', 'Mark', 'savetheworld@mountain.com', null, '1995-12-12', false); INSERT INTO member (last_name, first_name, email, phone_number, date_of_birth, flag) VALUES ('Goku', 'Unknown', 'notmyfinalform@mountain.com', '345-234-1234', '1990-09-04', true); INSERT INTO member (last_name, first_name, email, phone_number, date_of_birth, flag) VALUES ('Master', 'Roshi', 'gokuiswild@mountain.com', null, '1880-12-12', true); INSERT INTO member (last_name, first_name, email, phone_number, date_of_birth, flag) VALUES ('Ice', 'Cream', 'ihearanicecreamtruck@mountain.com', null, '1990-12-05', false); --Groups INSERT INTO interest_group (interest_group_name) VALUES ('Rage Against the Machine Club'); INSERT INTO interest_group (interest_group_name) VALUES ('seltzer water enthusiasts'); INSERT INTO interest_group (interest_group_name) VALUES ('Little Nightmares Fan Club'); --Events INSERT INTO event (event_name, description, start_date_time, duration, group_id) VALUES ('Moshpit Etiquete', 'Learn how to mosh with the best', '06-15-2021 5:30', 60,(SELECT group_id FROM interest_group WHERE interest_group_name = 'Rage Against the Machine Club')); INSERT INTO event (event_name, description, start_date_time, duration, group_id) VALUES ('La Croix V. Perrier', 'The bubbliest of the bubblies duke it out.', '06-24-2021 22:30', 45, (SELECT group_id FROM interest_group WHERE interest_group_name = 'seltzer water enthusiasts')); INSERT INTO event (event_name, description, start_date_time, duration, group_id) VALUES ('Rescue the Little Boy', 'Protect the little boy from the monsters Aah!', '11-20-2021 6:00', 60, (SELECT group_id FROM interest_group WHERE interest_group_name = 'Little Nightmares Fan Club')); INSERT INTO event (event_name, description, start_date_time, duration, group_id) VALUES ('Zack de la Rocha Fan Club', 'All hail the the leader of the band', '04-18-2021 16:30', 30, (SELECT group_id FROM interest_group WHERE interest_group_name = 'Rage Against the Machine Club')); --Members into groups INSERT INTO member_group(group_id, member_id) VALUES ((SELECT group_id FROM interest_group WHERE interest_group_name = 'Rage Against the Machine Club'), (SELECT member_id FROM member WHERE email = 'ihearanicecreamtruck@mountain.com' )); INSERT INTO member_group(group_id, member_id) VALUES ((SELECT group_id FROM interest_group WHERE interest_group_name = 'Little Nightmares Fan Club'), (SELECT member_id FROM member WHERE email = 'gokuiswild@mountain.com' )); INSERT INTO member_group(group_id, member_id) VALUES ((SELECT group_id FROM interest_group WHERE interest_group_name = 'seltzer water enthusiasts'), (SELECT member_id FROM member WHERE email = 'notmyfinalform@mountain.com' )); INSERT INTO member_group(group_id, member_id) VALUES ((SELECT group_id FROM interest_group WHERE interest_group_name = 'Little Nightmares Fan Club'), (SELECT member_id FROM member WHERE email = 'savetheworld@mountain.com' )); INSERT INTO member_group(group_id, member_id) VALUES ((SELECT group_id FROM interest_group WHERE interest_group_name = 'seltzer water enthusiasts'), (SELECT member_id FROM member WHERE email = 'neverwatched@mountain.com' )); INSERT INTO member_group(group_id, member_id) VALUES ((SELECT group_id FROM interest_group WHERE interest_group_name = 'Little Nightmares Fan Club'), (SELECT member_id FROM member WHERE email = 'aaronisofftherails@mountain.com' )); --Members to events INSERT INTO member_event (event_id, member_id) VALUES ((SELECT event_id FROM event WHERE event_name = 'Moshpit Etiquete'), (SELECT member_id FROM member WHERE email = 'ihearanicecreamtruck@mountain.com' )); INSERT INTO member_event (event_id, member_id) VALUES ((SELECT event_id FROM event WHERE event_name = 'La Croix V. Perrier'), (SELECT member_id FROM member WHERE email = 'neverwatched@mountain.com' )); INSERT INTO member_event (event_id, member_id) VALUES ((SELECT event_id FROM event WHERE event_name = 'Rescue the Little Boy'), (SELECT member_id FROM member WHERE email = 'aaronisofftherails@mountain.com' )); INSERT INTO member_event (event_id, member_id) VALUES ((SELECT event_id FROM event WHERE event_name = 'Zack de la Rocha Fan Club'), (SELECT member_id FROM member WHERE email = 'aaronisofftherails@mountain.com'));
true
f4e5fec8c35385c82089767244fce3241e748726
SQL
anjali1415/DBMS
/Assignment_16.sql
UTF-8
905
4.4375
4
[]
no_license
use assignments; -- 1) Write a command that will enable a user to pull orders grouped by date out of the Orders table quickly.-- create index ord_index on orders(odate); show indexes from orders; -- 2) If the Orders table has already been created, how can you force the onum field to be unique (assume all current values are unique)?-- desc orders; alter table orders ADD PRIMARY KEY(onum); -- 3) Create an index that would permit each salesperson to retrieve his or her orders grouped by date quickly.-- create index sale_date on orders(odate); -- on one table only one index is allowed in mysql -- -- 4) Let us assume that each salesperson is to have only one customer of a given rating, and that this is currently the case. -- Enter a command that enforces it.-- alter table customers ADD PRIMARY KEY(rating);
true
4fc6983cd590758b82cec711f6062430f82a4a2e
SQL
HannnaK/slodkie_przepisy
/migrations/3_kremy.sql
WINDOWS-1250
1,049
3.21875
3
[]
no_license
DROP TABLE IF EXISTS "kremy"; CREATE TABLE "kremy" ( "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE, "nazwa" TEXT NOT NULL, "rodzaj" TEXT NOT NULL, "przygotowanie" TEXT NOT NULL ); INSERT INTO "kremy" VALUES (NULL,'Polewa czekoladowa', 'polewa', 'Do rondelka wla wod i rozpuci w niej cukier (kolejno rozpuszczania poszczeglnych skadnikw jest wana, poszczeglne skadniki si nam nie zwa i nie "rozwarstwi"). Nastpnie dodajemy pokrojone na mae kawaeczki maso i rozpuszczamy. Zdejmujemy z ognia i wsypujemy przesiane kakao. Energicznie mieszamy by powstaa gadka, lnica polewa, polewamy ciasto. Do mojego mazurka potrzebne 3 porcje'), (NULL, 'Krem kawowy', 'krem', 'Kaw rozpuci w wodzie i zimn wymiesza z serkiem mascarpone. mietan kremwk ubi na sztywno, pod koniec ubijania dodawa stopniowo cukier puder i dalej ubija. Doda serek mascarpone i zmiksowa na maych obrotach do poczenia si skadnikw.');
true
adfa2390418e05fb9d12d09f17eb75d419e74737
SQL
jihyebaek123456/sql
/2021_03_15.sql
UTF-8
4,098
4.84375
5
[]
no_license
--BETWEEN AND --부서 번호가 10번에서 20번 사이에 속한 직원들만 조회 SELECT * FROM emp WHERE deptno BETWEEN 10 AND 20; --emp 테이블에서 급여(sal)가 1000보다 크거나 같고 2000보다 작거나 같은 직원들만 조회 SELECT * FROM emp WHERE sal BETWEEN 1000 AND 2000 AND deptno = 10; --BETWEEN AND 실습 where1 SELECT ename, hiredate FROM emp WHERE hiredate BETWEEN TO_DATE('19820101', 'YYYYMMDD') AND TO_DATE('19830101', 'YYYYMMDD'); SELECT ename, hiredate FROM emp WHERE hiredate >= TO_DATE('19820101', 'YYYYMMDD') AND hiredate <= TO_DATE('19830101', 'YYYYMMDD'); --IN --부서 번호가 10이나 20이면 true SELECT * FROM emp WHERE deptno IN (10, 20); SELECT * FROM emp WHERE deptno = 10 OR deptno = 20; SELECT * FROM emp WHERE 10 IN (10, 20); --10은 10과 같거나 10은 20과 같다 (전자는 true or 후자는 false) --NOT IN --직원의 부서 번호가 30번이 아닌 직원 조회 SELECT * FROM emp WHERE deptno NOT IN (30); SELECT * FROM emp WHERE deptno != 30; SELECT * FROM emp WHERE mgr IN (7698, 7839, NULL); mgr = 7698 OR mgr = 7839 OR < mgr = NULL > --<오류가 발생하는 부분> SELECT * FROM emp WHERE mgr NOT IN (7698, 7839, NULL); NOT (mgr = 7698 OR mgr = 7839 OR mgr = NULL) mgr != 7698 AND mgr != 7839 AND mgr != NULL SELECT * FROM emp WHERE mgr IN (7698, 7839); SELECT * FROM emp WHERE mgr NOT IN (7698, 7839); --IN 실습 where3 SELECT userid AS "아이디", usernm AS "이름", alias AS "별명" FROM users WHERE userid IN ('brown', 'cony', 'sally'); -- userid = 'brown' OR userid = 'cony' OR userid = 'sally' --LIKE --게시글 : 제목 검색, 내용 검색 -- 제목에 [맥북에어]가 들어가는 게시글만 조회 (얼마 안 된 맥북에어 팔아요, 맥북에어 팔아요) --유저 아이디가 c로 시작하는 모든 사용자 조회 SELECT * FROM users WHERE userid LIKE 'c%'; --유저 아이디가 c로 시작하면서 c 이후에 3개의 글자가 오는 모든 사용자 조회 SELECT * FROM users WHERE userid LIKE 'c___'; --유저 아이디에 l가 포함되는 모든 사용자 조회 SELECT * FROM users WHERE userid LIKE '%l%'; --NOT LIKE SELECT * FROM emp WHERE ename NOT LIKE 'S%'; --LIKE, %, _ 실습 where4 SELECT mem_id, mem_name FROM member WHERE mem_name LIKE '신%'; --LIKE, %, _ 실습 where5 SELECT mem_id, mem_name FROM member WHERE mem_name LIKE '%이%'; --테이블명-게시글, 제목 컬럼-제목, 내용 컬럼-내용 / 맥북에어 검색 SELECT * FROM 게시글 WHERE 제목 LIKE '%맥북에어%' OR 내용 LIKE '%맥북에어%'; --IS (NULL 비교) --emp 테이블에서 comm 컬럼의 값이 NULL인 사람만 조회 SELECT * FROM emp WHERE comm IS NOT NULL; --emp 테이블에서 매니저가 없는 직원만 조회 SELECT * FROM emp WHERE mgr IS NULL; --논리 연산자 --emp 테이블에서 mgr의 사번이 7698이면서 sal 값이 1000보다 큰 직원만 조회 SELECT * FROM emp WHERE mgr = 7698 AND sal > 1000; --순서 무관 --emp 테이블에서 mgr의 사번이 7698이거나 sal 값이 2000보다 큰 직원만 조회 SELECT * FROM emp WHERE mgr = 7698 OR sal > 2000; --AND, OR 실습 where7 SELECT * FROM emp WHERE job = 'SALESMAN' AND hiredate >= TO_DATE('19810601', 'YYYYMMDD'); --AND, OR 실습 where8 SELECT * FROM emp WHERE deptno != 10 AND hiredate >= TO_DATE('19810601', 'YYYYMMDD'); --AND, OR 실습 where9 SELECT * FROM emp WHERE deptno NOT IN (10) AND hiredate >= TO_DATE('19810601', 'YYYYMMDD'); --AND, OR 실습 where10 SELECT * FROM emp WHERE deptno IN (20, 30) AND hiredate >= TO_DATE('19810601', 'YYYYMMDD'); --AND, OR 실습 where11 SELECT * FROM emp WHERE job = 'SALESMAN' OR hiredate >= TO_DATE('19810601', 'YYYYMMDD'); --AND, OR 실습 where12 SELECT * FROM emp WHERE job = 'SALESMAN' OR empno LIKE '78%'; --LIKE는 문자열 매칭 -> 숫자를 문자로 자동 형변환하여 매칭 --AND, OR 실습 where13 SELECT * FROM emp WHERE job = 'SALESMAN' OR empno BETWEEN 7800 AND 7899 OR empno BETWEEN 780 AND 789 OR empno = 78;
true
7feeaf87cb81bb9f221764a5e4a5a14836cec43c
SQL
HomeIncorporated/vos_instagram
/cassandra/cql/drop_and_create/ig_blobs_dev.cql
UTF-8
692
3.4375
3
[ "MIT" ]
permissive
// Keyspace: ig_blobs DROP KEYSPACE IF EXISTS ig_blobs; CREATE KEYSPACE ig_blobs WITH replication = { 'class': 'SimpleStrategy', 'replication_factor' : 1 }; USE ig_blobs; DROP TABLE IF EXISTS profile_pictures_blobs; CREATE TABLE profile_pictures_blobs ( picture_id uuid, picture blob, PRIMARY KEY (picture_id) ) WITH CACHING = 'KEYS_ONLY'; DROP TABLE IF EXISTS photos_blobs; CREATE TABLE photos_blobs ( photo_id uuid, photo blob, PRIMARY KEY (photo_id) ) WITH CACHING = 'ALL'; DROP TABLE IF EXISTS photos_thumnbnails_blobs; CREATE TABLE photos_thumnbnails_blobs ( photo_id uuid, photo_thumbnail blob, PRIMARY KEY (photo_id) ) WITH CACHING = 'ALL';
true
3074ba449772c636e21d965f09596c744ee9aa11
SQL
spennington1394/Formula1ETLProject
/DB Objects/Formula1.sql
UTF-8
2,063
3.65625
4
[]
no_license
-- Exported from QuickDBD: https://www.quickdatabasediagrams.com/ -- NOTE! If you have used non-SQL datatypes in your design, you will have to change these here. -- Modify this code to update the DB schema diagram. -- To reset the sample schema, replace everything with -- two dots ('..' - without quotes). CREATE TABLE public."Constructor" ( "constructorId" integer, "constructorRef" character varying(200), name character varying(200), nationality character varying(200), url character varying(2000), PRIMARY KEY ("constructorId") ); CREATE TABLE "ConstructorStandings" ( "constructorStandingsId" int NOT NULL, "constructorId" int NOT NULL, "raceID" int NOT NULL, "points" int NOT NULL, "position" int NOT NULL, "positionText" character varying(200) NOT NULL, "wins" int NOT NULL, PRIMARY KEY ("constructorStandingsId") ); CREATE TABLE "ConstructorResults" ( "constructorResultsId" int NOT NULL, "raceId" int NOT NULL, "constructorId" int NOT NULL, "points" int NOT NULL, PRIMARY KEY ("constructorResultsId") ); -- Table documentation comment 1 (try the PDF/RTF export) -- Table documentation comment 2 CREATE TABLE "Race" ( "raceId" int NOT NULL, "year" int NOT NULL, "round" int NOT NULL, "circuitId" int NOT NULL, "name" character varying(200) NOT NULL, "date" Date NOT NULL, "time" time, "url" character varying(2000) NOT NULL, PRIMARY KEY ("raceId") ); ALTER TABLE "ConstructorStandings" ADD CONSTRAINT "fk_ConstructorStandings_constructorId" FOREIGN KEY("constructorId") REFERENCES "Constructor" ("constructorId"); ALTER TABLE "ConstructorResults" ADD CONSTRAINT "fk_ConstructorResults_raceId" FOREIGN KEY("raceId") REFERENCES "Race" ("raceId"); ALTER TABLE "ConstructorResults" ADD CONSTRAINT "fk_ConstructorResults_constructorId" FOREIGN KEY("constructorId") REFERENCES "Constructor" ("constructorId"); CREATE INDEX "idx_Constructor_constructorRef" ON "Constructor" ("constructorRef");
true
2202c939ce66b253eeb27cfa6cadff41de04ede6
SQL
LanghaoZ/Scalez
/sql/init.sql
UTF-8
1,282
3.21875
3
[]
no_license
DROP TABLE IF EXISTS `User`; CREATE TABLE `User` ( `id` BIGINT(20) NOT NULL, `name` VARCHAR(255) NOT NULL, `password` VARCHAR(32) DEFAULT NULL, `salt` VARCHAR(10) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `Product`; CREATE TABLE `Product` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT, `name` VARCHAR(16) DEFAULT NULL, `description` LONGTEXT, `price` DECIMAL(10, 2) DEFAULT '0.00', `count` INT(11) DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `OrderDetail`; CREATE TABLE `OrderDetail` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT, `user_id` BIGINT(20) DEFAULT NULL, `product_id` BIGINT(20) DEFAULT NULL, `product_name` VARCHAR(16) DEFAULT NULL, `status` TINYINT(4) DEFAULT '0', `create_time` DATETIME DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4; DROP TABLE IF EXISTS `Order`; CREATE TABLE `Order` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT, `user_id` BIGINT(20) DEFAULT NULL, `product_id` BIGINT(20) DEFAULT NULL, `order_id` BIGINT(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4;
true
81745baffd1146afcbfb148cfdb25fcf4eb018f0
SQL
snowxwolf/eop
/src/main/resources/sql/com_permissions.sql
UTF-8
993
2.765625
3
[]
no_license
/* Navicat MySQL Data Transfer Source Server : eop@localhost Source Server Version : 50624 Source Host : localhost:3306 Source Database : eop Target Server Type : MYSQL Target Server Version : 50624 File Encoding : 65001 Date: 2016-12-15 18:41:01 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for com_permissions -- ---------------------------- DROP TABLE IF EXISTS `com_permissions`; CREATE TABLE `com_permissions` ( `pid` int(15) NOT NULL, `pcode` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '权限code', `pname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT '权限名称', `pvalue` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '权限value', `mcode` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '菜单code', `pstatus` tinyint(2) NOT NULL COMMENT '菜单状态', PRIMARY KEY (`pid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
true
8e4174e00ed2b162f3c12fc634da647d9fb8ab20
SQL
avniproject/JSSCP
/migrationscripts/Individual_address_change_Parasada_to_Parsada.sql
UTF-8
251
2.59375
3
[]
no_license
set role jsscp; update individual set address_id=9947, last_modified_by_id=(select id from users where username = 'sachink@jsscp'), last_modified_date_time=current_timestamp + ((id % 4000) * interval '1 millisecond') where address_id = 7910;
true
401a4726df15f47e1d4a2978431d171106c2da4c
SQL
it6c65/sdgh
/schema.sql
UTF-8
1,031
3.515625
4
[ "BSD-3-Clause" ]
permissive
CREATE DATABASE IF NOT EXISTS sdgh; USE sdgh; CREATE TABLE usuarios( id tinyint(1) PRIMARY KEY NOT NULL AUTO_INCREMENT, login varchar(15) NOT NULL, password varchar(32) NOT NULL, nivel enum("adm","usr") NOT NULL ); CREATE TABLE herramientas( id int(6) PRIMARY KEY NOT NULL AUTO_INCREMENT, nombre varchar(30) NOT NULL, num integer(4) NOT NULL, status tinyint(1) NOT NULL, serial varchar(8), UNIQUE(serial) ); CREATE TABLE materiales( id int(6) PRIMARY KEY NOT NULL AUTO_INCREMENT, nombre varchar(30) NOT NULL, num integer(4) NOT NULL, status tinyint(1) NOT NULL ); CREATE TABLE registro( id int(2) ZEROFILL PRIMARY KEY NOT NULL AUTO_INCREMENT, fecha_at date NOT NULL, hora time NOT NULL, usuarios_id tinyint(1) NOT NULL, FOREIGN KEY(usuarios_id) REFERENCES usuarios(id) ON DELETE CASCADE ON UPDATE CASCADE ); INSERT INTO usuarios(login,password,nivel) VALUES ( "Admin",MD5("pnfmadmin"),"adm" ), ( "Invitado",MD5("pnfmecanica"),"usr" );
true
cd95db4077e6ea52e0ff000adde26076adeff89e
SQL
manishkhanchandani/project2017
/work/includes/pear/Mail/docs/mysql.sql
UTF-8
905
3.015625
3
[ "W3C" ]
permissive
# # `mail_queue` # CREATE TABLE mail_queue ( id bigint(20) NOT NULL default '0', create_time datetime NOT NULL default '0000-00-00 00:00:00', time_to_send datetime NOT NULL default '0000-00-00 00:00:00', sent_time datetime default NULL, id_user bigint(20) NOT NULL default '0', ip varchar(20) NOT NULL default 'unknown', sender varchar(50) NOT NULL default '', recipient varchar(50) NOT NULL default '', headers text NOT NULL, body longtext NOT NULL, try_sent tinyint(4) NOT NULL default '0', delete_after_send tinyint(1) NOT NULL default '1', PRIMARY KEY (id), KEY id (id), KEY time_to_send (time_to_send), KEY id_user (id_user) ); # # `mail_queue_seq` # CREATE TABLE mail_queue_seq ( id int(10) unsigned NOT NULL auto_increment, PRIMARY KEY (id) ); # # Data for `mail_queue_seq` # INSERT INTO mail_queue_seq (id) VALUES (1);
true
130c431d253aeeb274628c0f2c48a8e8bf1e5849
SQL
bdalolmo/SQL-CERTIFICACAO
/modulo17_1.sql
ISO-8859-1
5,886
4.625
5
[]
no_license
select employee_id, manager_id FROM employees where employee_id in (104,105); -- retonar os funcionarios cujo gerentes dos funcionarios 104 e 105 coincide com --outros funcionarios sem mostrar os mesmos(104 e 105) select employee_id, manager_id , department_id FROM employees where (manager_id, department_id) in (select manager_id, department_id from employees where employee_id in(104,105)) and employee_id not in (104,105); select employee_id, manager_id , department_id FROM employees where manager_id in (select manager_id from employees where employee_id in(104,105)) and department_id in (select manager_id from employees where employee_id in(104,105)) and employee_id not in (104,105); -- TODOS FUNCIONARIOS DO DEPARTAMETNTO IT select * FROM employees where department_id = (SELECT department_id from departments where department_name ='IT'); -- retonar todos funcionarios que recebem mais que a media salarial do departamento --compara departmento id do interno com externo -- verifica linha por linha.. select * FROM employees emp where salary > (SELECT avg(salary) from employees where department_id = emp.department_id); -- exists select * FROM employees emp -- todos funcionarios que tambm sao gerentes where exists (SELECT 1 from employees where manager_id = emp.department_id); select * FROM departments d -- todos departamentos que nao tem funcionarios where not EXISTS (select 1 from employees where department_id = d.department_id); -- with with dept_custo AS ( SELECT d.department_name , sum(e.salary) AS dept_total FROM employees e , departments d where e.department_id = d.department_id GROUP BY d.department_name), avg_custo AS ( SELECT SUM(dept_total)/count(*) as dept_avg from dept_custo) select * from dept_custo where dept_total > (select dept_avg from avg_custo) order by department_name; -- departamentos que recebem maior que a media de todos eles ------------------------------------------------------------------------------ --exerciiosss ------------------------------------------------------------------------------ /* 01 - Exiba o nome, o id do departamento e o salrio de qualquer funcionrio cujo salrio e departamentocomisso coincidam com o salrio e o departamento de qualquer funcionrio que esteja na localizao ID 1700*/ select e.first_name, e.department_id, e.salary FROM employees e where (e.salary, e.commission_pct) in (select e.salary, e.commission_pct from employees e inner join departments d on (e.department_id = d.department_id) JOIN locations l on l.location_id = d.location_id and l.location_id=1700); --correo select e.first_name, e.department_id, e.salary FROM employees e where (e.salary, e.department_id) in (select b.salary, b.department_id from employees b where b.department_id in (select department_id from departments where location_id = 1700)); /* 02 - Crie uma consulta para exibir os funcionrios que recebem um salrio mais alto do que o salrio dos programadores (JOB_ID = 'IT_PROG'). Classifique os resultados dos salrios do maior para o menor.*/ select * from employees emp where emp.salary > (select max(e.salary) from employees e where job_id = 'IT_PROG'); /* 03- Mostre todos os funcionrios que no so gerentes usando o operador NOT EXISTS. */ select * from employees e where not exists (select 1 from employees where manager_id=e.manager_id); /* 04 - Crie uma consulta para exibir os nomes dos funcionrios que tm um ou mais colegas de trabalho nos respectivos departamentos com datas de admisso posteriores, mas com salrios mais altos. */ select emp.first_name, j.start_date FROM employees emp join job_history j on(emp.department_id= j.department_id) where j.start_date = (SELECT max(j.start_date) from employees e join job_history jo on(e.department_id= jo.department_id) where emp.salary> e.salary); --correo select first_name from employees a where exists ( SELECT 1 from employees b where a.department_id = b.department_id and a.salary < b.salary and a.hire_date < b.hire_date); select * from job_history; /*Crie uma consulta para exibir os nomes dos departamentos cujo custo total de salrio est acima de 1/8 do custo total de salrio de toda a empresa. Use a clusula WITH para criar esta consulta. Nomeie a consulta SOMA_SAL */ with soma_sal AS ( SELECT d.department_name , sum(e.salary) AS dept_total FROM employees e , departments d where e.department_id = d.department_id GROUP BY d.department_name) select department_name, dept_total from soma_sal where dept_total > ( select sum(dept_total)*1/8 from soma_sal) order by department_name; with soma_sal AS ( SELECT d.department_name , sum(e.salary) AS dept_total FROM employees e , departments d where e.department_id = d.department_id GROUP BY d.department_name), total_sal AS ( SELECT SUM(dept_total)*1/8 as custo_total from total_sal) (select * from soma_sal where dept_total) > (select custo_total from total_sal) order by department_name; -- departamentos que recebem maior que a media de todos eles
true
b8a2f01549a49bf6cf70ccda316eeeffeeaf0ebc
SQL
NadunNilanga/DitecLibrarySystem
/db_library.sql
UTF-8
2,421
3.25
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Feb 18, 2019 at 06:17 PM -- Server version: 5.7.19 -- PHP Version: 7.1.9 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `db_library` -- -- -------------------------------------------------------- -- -- Table structure for table `tbl_barrow_books` -- DROP TABLE IF EXISTS `tbl_barrow_books`; CREATE TABLE IF NOT EXISTS `tbl_barrow_books` ( `RefCode` int(11) NOT NULL AUTO_INCREMENT, `BookID` int(11) NOT NULL, `MemberID` varchar(10) NOT NULL, `IssueDate` date NOT NULL, `ReturnDate` date NOT NULL, `Status` varchar(12) NOT NULL, PRIMARY KEY (`RefCode`), KEY `BookID` (`BookID`), KEY `MemberID` (`MemberID`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `tbl_book` -- DROP TABLE IF EXISTS `tbl_book`; CREATE TABLE IF NOT EXISTS `tbl_book` ( `BookID` int(11) NOT NULL AUTO_INCREMENT, `BookName` varchar(100) NOT NULL, `BookPrice` decimal(10,2) NOT NULL, `Author` varchar(100) NOT NULL, `Category` varchar(20) NOT NULL, `Status` varchar(25) NOT NULL, PRIMARY KEY (`BookID`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `tbl_member` -- DROP TABLE IF EXISTS `tbl_member`; CREATE TABLE IF NOT EXISTS `tbl_member` ( `NIC` varchar(12) NOT NULL, `MemberName` varchar(100) NOT NULL, `Phone` varchar(10) NOT NULL, `Gender` varchar(10) NOT NULL, `Lifelong` varchar(3) NOT NULL, PRIMARY KEY (`NIC`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Constraints for dumped tables -- -- -- Constraints for table `tbl_barrow_books` -- ALTER TABLE `tbl_barrow_books` ADD CONSTRAINT `tbl_barrow_books_ibfk_1` FOREIGN KEY (`MemberID`) REFERENCES `tbl_member` (`NIC`); 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 */;
true
7e220e727f549809fe4d892d1b6011735c041ee5
SQL
ratminer/COMP3005Assignment3
/TennisModel.sql
UTF-8
914
3.109375
3
[]
no_license
--SQL Fake Book Song Data --CREATE DATABASE TABLES --======================= DROP TABLE IF EXISTS tennisPlayer; create table if not exists tennisPlayer( id integer primary key not null, name text NOT NULL, location text NOT NULL, level int ); DROP TABLE IF EXISTS coach; create table if not exists coach( id integer primary key not null, name text NOT NULL, location text NOT NULL, schedule text NOT NULL, years int NOT NULL ); --INSERT DATA --=============== begin transaction; --Insert songs --RBFB insert into tennisPlayer (name, location, level) values ('Josh','Richmond Hill',9); insert into tennisPlayer (name, location, level) values ('Zing', 'Ottawa','5'); insert into coach (name, location, schedule, years) values ('Ahmad','Ottawa','Friday',7); insert into coach (name, location, schedule, years) values ('Shafiq','Ottawa','Monday',8); end transaction;
true
b0074833e4f19097d2710005850b380e7d12ad9c
SQL
DEFRA/prsd-iws
/src/EA.Iws.Database/scripts/Update/0001-Release1/Sprint15/20150902-141500-generate-missing-financial-guarantees.sql
UTF-8
375
3.140625
3
[ "LicenseRef-scancode-unknown-license-reference", "OGL-UK-3.0" ]
permissive
INSERT INTO [Notification].[FinancialGuarantee] ( [Id], [Status], [NotificationApplicationId], [CreatedDate] ) SELECT (SELECT Cast(Cast(Newid() AS BINARY(10)) + Cast(Getdate() AS BINARY(6)) AS UNIQUEIDENTIFIER)), 1, [Id], GETUTCDATE() FROM [Notification].[Notification] WHERE [Id] NOT IN (SELECT [NotificationApplicationId] FROM [Notification].[FinancialGuarantee])
true
74e099c08745db1187e5f45d663dfd0762cf9757
SQL
Qying23/Ying-Qi-FSWD30-CodeReview9
/SQL/RentCar.sql
UTF-8
11,330
3.359375
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 4.7.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Erstellungszeit: 05. Feb 2018 um 20:37 -- Server-Version: 10.1.30-MariaDB -- PHP-Version: 7.2.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Datenbank: `RentCar` -- -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `additional_charges` -- CREATE TABLE `additional_charges` ( `additional_charges_id` int(11) NOT NULL, `demages` varchar(255) DEFAULT NULL, `fuel_level` int(11) DEFAULT NULL, `add_cost` int(11) DEFAULT NULL, `fk_driver_id` int(11) DEFAULT NULL, `fk_car_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Daten für Tabelle `additional_charges` -- INSERT INTO `additional_charges` (`additional_charges_id`, `demages`, `fuel_level`, `add_cost`, `fk_driver_id`, `fk_car_id`) VALUES (1, 'no damages', 90, 10, 1, 1), (2, 'dirt in car', 100, 5, 1, 3), (3, 'no damages', 100, 0, 1, 5); -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `car` -- CREATE TABLE `car` ( `car_id` int(11) NOT NULL, `car_cost` int(11) DEFAULT NULL, `car_status` varchar(55) DEFAULT NULL, `color` varchar(55) DEFAULT NULL, `model` varchar(55) DEFAULT NULL, `company` varchar(55) DEFAULT NULL, `horesepower` int(11) DEFAULT NULL, `production_year` int(11) DEFAULT NULL, `consumption` int(11) DEFAULT NULL, `diesel_petrol` varchar(55) DEFAULT NULL, `tank` varchar(55) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Daten für Tabelle `car` -- INSERT INTO `car` (`car_id`, `car_cost`, `car_status`, `color`, `model`, `company`, `horesepower`, `production_year`, `consumption`, `diesel_petrol`, `tank`) VALUES (1, 100, 'new', 'red', 'x5', 'BMW', 230, 2018, 1, 'Diesel', 'voll'), (2, 110, 'new', 'black', 'x5', 'BMW', 230, 2017, 1, 'Diesel', 'full'), (3, 100, 'old', 'blue', 'x4', 'BMW', 210, 2016, 1, 'Diesel', 'full'), (4, 80, 'old', 'grey', 'a6', 'Audi', 120, 2000, 1, 'Petrol', 'full'), (5, 70, 'old', 'blue', 'a6', 'Audi', 120, 2015, 1, 'Diesel', 'full'), (6, 75, 'old', 'black', 'a3', 'Audi', 90, 2013, 2, 'Petrol', 'full'); -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `driver` -- CREATE TABLE `driver` ( `driver_id` int(11) NOT NULL, `first_name` varchar(55) DEFAULT NULL, `last_name` varchar(55) DEFAULT NULL, `birthday` date DEFAULT NULL, `CarLicence` int(11) DEFAULT NULL, `adress` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Daten für Tabelle `driver` -- INSERT INTO `driver` (`driver_id`, `first_name`, `last_name`, `birthday`, `CarLicence`, `adress`, `email`) VALUES (1, 'Daniel', 'Maier', '1985-12-30', 123456789, 'Niederhofstraße 5', 'daniel_maier@gmx.at'), (2, 'Simone', 'Neuhofer', '1980-01-03', 891234567, 'Wohnstraße 18/7', 's.neuhofer@gmail.at'), (3, 'Tobias', 'Ahn', '1995-02-22', 678912345, 'Glasergasse 19/2', 'Tobias.ahn@hotmail.at'); -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `Drop_off_location` -- CREATE TABLE `Drop_off_location` ( `drop_off_location_id` int(11) NOT NULL, `country_name` varchar(55) DEFAULT NULL, `city_name` varchar(55) DEFAULT NULL, `adress` varchar(55) DEFAULT NULL, `zip_code` int(11) DEFAULT NULL, `drop_off_date` date DEFAULT NULL, `drop_off_time` time DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Daten für Tabelle `Drop_off_location` -- INSERT INTO `Drop_off_location` (`drop_off_location_id`, `country_name`, `city_name`, `adress`, `zip_code`, `drop_off_date`, `drop_off_time`) VALUES (1, 'Austria', 'Vienna', 'Westbahnhof', 1150, '2018-02-26', '10:00:12'), (2, 'Austria', 'Salzburg', 'Bahnhof', 5020, '2018-01-06', '13:26:29'), (3, 'Austria', 'Graz', 'Siemstraße 50', 8010, '2018-01-11', '10:49:14'); -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `Insurance` -- CREATE TABLE `Insurance` ( `insurance_id` int(11) NOT NULL, `police_number` int(11) DEFAULT NULL, `days_of_Insurance` int(11) DEFAULT NULL, `name_of_Insurance` varchar(100) DEFAULT NULL, `cost` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Daten für Tabelle `Insurance` -- INSERT INTO `Insurance` (`insurance_id`, `police_number`, `days_of_Insurance`, `name_of_Insurance`, `cost`) VALUES (1, 29301, 3, 'Wüstenrot', 50), (2, 90234, 7, 'Zürich', 120), (3, 28936, 5, 'Wüstenrot', 100); -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `invoice` -- CREATE TABLE `invoice` ( `invoice_id` int(11) NOT NULL, `invoice_date` date DEFAULT NULL, `invoice_time` time DEFAULT NULL, `fk_driver_id` int(11) DEFAULT NULL, `fk_car_id` int(11) DEFAULT NULL, `fk_insurance_id` int(11) DEFAULT NULL, `fk_pick_up_location_id` int(11) DEFAULT NULL, `fk_drop_off_location_id` int(11) DEFAULT NULL, `fk_additional_charges_id` int(11) DEFAULT NULL, `fk_reservation_id` int(11) DEFAULT NULL, `finalsum` int(11) DEFAULT NULL, `rent_days` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Daten für Tabelle `invoice` -- INSERT INTO `invoice` (`invoice_id`, `invoice_date`, `invoice_time`, `fk_driver_id`, `fk_car_id`, `fk_insurance_id`, `fk_pick_up_location_id`, `fk_drop_off_location_id`, `fk_additional_charges_id`, `fk_reservation_id`, `finalsum`, `rent_days`) VALUES (1, '2018-01-06', '13:29:27', 1, 1, 1, 1, 2, 1, 1, 310, 3), (2, '2018-01-11', '14:00:02', 2, 3, 2, 2, 3, 2, 2, 705, 7), (3, '2018-02-26', '00:00:02', 3, 5, 1, 3, 1, 3, 3, 350, 5); -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `Pick_up_location` -- CREATE TABLE `Pick_up_location` ( `pick_up_location_id` int(11) NOT NULL, `country_name` varchar(55) DEFAULT NULL, `city_name` varchar(55) DEFAULT NULL, `adress` varchar(55) DEFAULT NULL, `zip_code` int(11) DEFAULT NULL, `pick_up_date` date DEFAULT NULL, `pick_up_time` time DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Daten für Tabelle `Pick_up_location` -- INSERT INTO `Pick_up_location` (`pick_up_location_id`, `country_name`, `city_name`, `adress`, `zip_code`, `pick_up_date`, `pick_up_time`) VALUES (1, 'Austria', 'Vienna', 'Westbahnhof', 1150, '2018-01-04', '14:00:12'), (2, 'Austria', 'Salzburg', 'Bahnhof', 5020, '2018-01-05', '09:00:12'), (3, 'Austria', 'Graz', 'Siemstraße 50', 8010, '2018-01-22', '12:11:12'); -- -------------------------------------------------------- -- -- Tabellenstruktur für Tabelle `Reservation` -- CREATE TABLE `Reservation` ( `reservation_id` int(11) NOT NULL, `reservation_date` date DEFAULT NULL, `fk_driver_id` int(11) DEFAULT NULL, `fk_car_id` int(11) DEFAULT NULL, `fk_insurance_id` int(11) DEFAULT NULL, `fk_pick_up_location_id` int(11) DEFAULT NULL, `fk_drop_off_location_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Daten für Tabelle `Reservation` -- INSERT INTO `Reservation` (`reservation_id`, `reservation_date`, `fk_driver_id`, `fk_car_id`, `fk_insurance_id`, `fk_pick_up_location_id`, `fk_drop_off_location_id`) VALUES (1, '2017-12-05', 1, 1, 1, 1, 2), (2, '2018-01-01', 2, 3, 2, 2, 3), (3, '2018-01-05', 3, 5, 3, 3, 1); -- -- Indizes der exportierten Tabellen -- -- -- Indizes für die Tabelle `additional_charges` -- ALTER TABLE `additional_charges` ADD PRIMARY KEY (`additional_charges_id`), ADD KEY `fk_driver_id` (`fk_driver_id`), ADD KEY `fk_car_id` (`fk_car_id`); -- -- Indizes für die Tabelle `car` -- ALTER TABLE `car` ADD PRIMARY KEY (`car_id`); -- -- Indizes für die Tabelle `driver` -- ALTER TABLE `driver` ADD PRIMARY KEY (`driver_id`); -- -- Indizes für die Tabelle `Drop_off_location` -- ALTER TABLE `Drop_off_location` ADD PRIMARY KEY (`drop_off_location_id`); -- -- Indizes für die Tabelle `Insurance` -- ALTER TABLE `Insurance` ADD PRIMARY KEY (`insurance_id`); -- -- Indizes für die Tabelle `invoice` -- ALTER TABLE `invoice` ADD PRIMARY KEY (`invoice_id`), ADD KEY `fk_driver_id` (`fk_driver_id`), ADD KEY `fk_car_id` (`fk_car_id`), ADD KEY `fk_insurance_id` (`fk_insurance_id`), ADD KEY `fk_pick_up_location_id` (`fk_pick_up_location_id`), ADD KEY `fk_drop_off_location_id` (`fk_drop_off_location_id`), ADD KEY `fk_additional_charges_id` (`fk_additional_charges_id`), ADD KEY `fk_reservation_id` (`fk_reservation_id`); -- -- Indizes für die Tabelle `Pick_up_location` -- ALTER TABLE `Pick_up_location` ADD PRIMARY KEY (`pick_up_location_id`); -- -- Indizes für die Tabelle `Reservation` -- ALTER TABLE `Reservation` ADD PRIMARY KEY (`reservation_id`), ADD KEY `fk_driver_id` (`fk_driver_id`), ADD KEY `fk_car_id` (`fk_car_id`), ADD KEY `fk_insurance_id` (`fk_insurance_id`), ADD KEY `fk_pick_up_location_id` (`fk_pick_up_location_id`), ADD KEY `fk_drop_off_location_id` (`fk_drop_off_location_id`); -- -- Constraints der exportierten Tabellen -- -- -- Constraints der Tabelle `additional_charges` -- ALTER TABLE `additional_charges` ADD CONSTRAINT `additional_charges_ibfk_1` FOREIGN KEY (`fk_driver_id`) REFERENCES `driver` (`driver_id`), ADD CONSTRAINT `additional_charges_ibfk_2` FOREIGN KEY (`fk_car_id`) REFERENCES `car` (`car_id`); -- -- Constraints der Tabelle `invoice` -- ALTER TABLE `invoice` ADD CONSTRAINT `invoice_ibfk_1` FOREIGN KEY (`fk_driver_id`) REFERENCES `driver` (`driver_id`), ADD CONSTRAINT `invoice_ibfk_2` FOREIGN KEY (`fk_car_id`) REFERENCES `car` (`car_id`), ADD CONSTRAINT `invoice_ibfk_3` FOREIGN KEY (`fk_insurance_id`) REFERENCES `Insurance` (`insurance_id`), ADD CONSTRAINT `invoice_ibfk_4` FOREIGN KEY (`fk_pick_up_location_id`) REFERENCES `Pick_up_location` (`pick_up_location_id`), ADD CONSTRAINT `invoice_ibfk_5` FOREIGN KEY (`fk_drop_off_location_id`) REFERENCES `Drop_off_location` (`drop_off_location_id`), ADD CONSTRAINT `invoice_ibfk_6` FOREIGN KEY (`fk_additional_charges_id`) REFERENCES `additional_charges` (`additional_charges_id`), ADD CONSTRAINT `invoice_ibfk_7` FOREIGN KEY (`fk_reservation_id`) REFERENCES `Reservation` (`reservation_id`); -- -- Constraints der Tabelle `Reservation` -- ALTER TABLE `Reservation` ADD CONSTRAINT `Reservation_ibfk_1` FOREIGN KEY (`fk_driver_id`) REFERENCES `driver` (`driver_id`), ADD CONSTRAINT `Reservation_ibfk_2` FOREIGN KEY (`fk_car_id`) REFERENCES `car` (`car_id`), ADD CONSTRAINT `Reservation_ibfk_3` FOREIGN KEY (`fk_insurance_id`) REFERENCES `Insurance` (`insurance_id`), ADD CONSTRAINT `Reservation_ibfk_4` FOREIGN KEY (`fk_pick_up_location_id`) REFERENCES `Pick_up_location` (`pick_up_location_id`), ADD CONSTRAINT `Reservation_ibfk_5` FOREIGN KEY (`fk_drop_off_location_id`) REFERENCES `Drop_off_location` (`drop_off_location_id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
true
705780f121211901b4dcb536a47e148e6ea6106d
SQL
No-longlong/SQL_practice
/10_outlier/query.sql
UTF-8
133
3.234375
3
[]
no_license
# 이상값 제거 -- SELECT AVG(age) -- FROM member -- WHERE age BETWEEN 5 AND 100; SELECT * FROM member WHERE address LIKE '%호'
true
aa770c3b55c3ca990ddc1c31684aeea18012f49c
SQL
hxline/E-Magang_Ateul
/emagang.sql
UTF-8
3,962
3.125
3
[]
no_license
/* SQLyog Ultimate v11.11 (64 bit) MySQL - 5.1.72-community : Database - emagang ********************************************************************* */ /*!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*/`emagang` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `emagang`; /*Table structure for table `bidang` */ DROP TABLE IF EXISTS `bidang`; CREATE TABLE `bidang` ( `id_bidang` int(11) NOT NULL AUTO_INCREMENT, `nama` varchar(50) NOT NULL, `desc` text NOT NULL, PRIMARY KEY (`id_bidang`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*Data for the table `bidang` */ /*Table structure for table `cv` */ DROP TABLE IF EXISTS `cv`; CREATE TABLE `cv` ( `id_cv` int(11) NOT NULL AUTO_INCREMENT, `file` varchar(100) NOT NULL, `tgl` datetime NOT NULL, `id_iklan` int(11) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_cv`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*Data for the table `cv` */ /*Table structure for table `detail_bidang_ph` */ DROP TABLE IF EXISTS `detail_bidang_ph`; CREATE TABLE `detail_bidang_ph` ( `id_detail` int(11) NOT NULL AUTO_INCREMENT, `id_bidang` int(11) NOT NULL, `id_ph` int(11) NOT NULL, PRIMARY KEY (`id_detail`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*Data for the table `detail_bidang_ph` */ /*Table structure for table `iklan_lowongan` */ DROP TABLE IF EXISTS `iklan_lowongan`; CREATE TABLE `iklan_lowongan` ( `id_iklan` int(11) NOT NULL AUTO_INCREMENT, `judul` varchar(50) NOT NULL, `desc` text NOT NULL, `tgl_awal` datetime NOT NULL, `tgl_akhir` datetime NOT NULL, `id_ph` int(11) NOT NULL, PRIMARY KEY (`id_iklan`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*Data for the table `iklan_lowongan` */ /*Table structure for table `komentar` */ DROP TABLE IF EXISTS `komentar`; CREATE TABLE `komentar` ( `id_komentar` int(11) NOT NULL AUTO_INCREMENT, `komentar` text NOT NULL, `tgl` datetime NOT NULL, `id_iklan` int(11) NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_komentar`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*Data for the table `komentar` */ /*Table structure for table `perusahaan` */ DROP TABLE IF EXISTS `perusahaan`; CREATE TABLE `perusahaan` ( `id_ph` int(11) NOT NULL AUTO_INCREMENT, `nama` varchar(50) NOT NULL, `desc` text NOT NULL, `tgl_daftar` datetime NOT NULL, `username` varchar(25) NOT NULL, `password` varchar(15) NOT NULL, `gambar` varchar(100) DEFAULT NULL, PRIMARY KEY (`id_ph`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*Data for the table `perusahaan` */ /*Table structure for table `portofolio` */ DROP TABLE IF EXISTS `portofolio`; CREATE TABLE `portofolio` ( `id_portofolio` int(11) NOT NULL AUTO_INCREMENT, `gambar` varchar(100) NOT NULL, `desc` text NOT NULL, `id_user` int(11) NOT NULL, PRIMARY KEY (`id_portofolio`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*Data for the table `portofolio` */ /*Table structure for table `user` */ DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id_user` int(11) DEFAULT NULL, `nama` varchar(50) DEFAULT NULL, `lokasi` varchar(50) DEFAULT NULL, `tgl` datetime DEFAULT NULL, `username` varchar(25) DEFAULT NULL, `password` varchar(15) DEFAULT NULL, `gambar` varchar(100) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*Data for the table `user` */ /*!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 */;
true
88f8b0cac8f0c9963b4db3773fc897dc0e1e76a1
SQL
belhassenessid/PHP
/DB-SQL/Table_Users.sql
UTF-8
480
3.09375
3
[ "CC0-1.0" ]
permissive
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; -- Table structure for table `usertable` CREATE TABLE `usertable` ( `name` varchar(255) NOT NULL, `password` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; INSERT INTO `usertable` (`name`, `password`) VALUES ('belha', 'essid'), ('iheb', 'etteyeb'), ('omar', 'adouli'), ('rahma', 'benhassen'); ALTER TABLE `usertable` ADD PRIMARY KEY (`name`); COMMIT;
true
0ae46ba754f49cb026a50116d04d80036cd68218
SQL
COKID/CXF-mybatis-spring
/yum_student.sql
UTF-8
592
2.671875
3
[]
no_license
# Host: localhost (Version 5.7.24-log) # Date: 2019-01-23 16:20:04 # Generator: MySQL-Front 6.0 (Build 2.20) # # Structure for table "yum_student" # DROP TABLE IF EXISTS `yum_student`; CREATE TABLE `yum_student` ( `Id` int(10) NOT NULL DEFAULT '0', `name` varchar(255) DEFAULT NULL, `gender` varchar(255) DEFAULT NULL, `address` varchar(255) DEFAULT NULL, PRIMARY KEY (`Id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; # # Data for table "yum_student" # INSERT INTO `yum_student` VALUES (20190001,'张三','男','上海市8080号'),(20190002,'李四','女','北京市3306号');
true
57afc5fc1398dc548e1f61a0f2e4ae13d396b624
SQL
AdeelGalileo/GTM-App
/dbChanges/getKeywordSetupStatus.sql
UTF-8
730
3.46875
3
[]
no_license
DELIMITER // DROP PROCEDURE IF EXISTS `getKeywordSetupStatus`// CREATE PROCEDURE `getKeywordSetupStatus`( _userId INT(11), _taskCloneId INT(11), _taskCloneCommonId INT(11) ) BEGIN DECLARE QryCond TEXT; SET QryCond = CONCAT(' WHERE task_clone.task_clone_record_status=0 AND task_clone.task_clone_is_main_task=1 AND task_clone.task_clone_common_id = ',_taskCloneCommonId); SET @IdQry1 = CONCAT(' SELECT task_clone_id,task_clone_is_main_task,task_clone_task_id,task_clone_common_id,task_keyword_setup_complete FROM task_clone INNER JOIN task_keyword ON task_keyword.task_keyword_id = task_clone.task_clone_task_id ', QryCond, ' LIMIT 1'); PREPARE stmt1 FROM @IdQry1; EXECUTE stmt1; DEALLOCATE PREPARE stmt1; END
true
75ac8cf941590b75a199b27a506f31d9f3d614cc
SQL
ShirokiyEvgeniy/HT1
/Phonebook/src/main/sql/phonebook.sql
UTF-8
3,165
3.296875
3
[]
no_license
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) -- -- Host: localhost Database: phonebook -- ------------------------------------------------------ -- Server version 5.7.21-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `person` -- DROP TABLE IF EXISTS `person`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `person` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `surname` varchar(150) NOT NULL, `name` varchar(150) NOT NULL, `middlename` varchar(150) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `person` -- LOCK TABLES `person` WRITE; /*!40000 ALTER TABLE `person` DISABLE KEYS */; INSERT INTO `person` VALUES (2,'Петров','Пётр','Петрович'),(3,'Сидоров','Сидор','Сидорович'),(18,'Попов','Федор','Генадьевич'),(19,'American','Name',NULL),(20,'Кучеров','Кучер','Кучеревичь'); /*!40000 ALTER TABLE `person` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `phone` -- DROP TABLE IF EXISTS `phone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `phone` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `owner` int(10) unsigned NOT NULL, `number` varchar(50) NOT NULL, PRIMARY KEY (`id`), KEY `FK_phone_person` (`owner`), CONSTRAINT `FK_phone_person` FOREIGN KEY (`owner`) REFERENCES `person` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `phone` -- LOCK TABLES `phone` WRITE; /*!40000 ALTER TABLE `phone` DISABLE KEYS */; INSERT INTO `phone` VALUES (4,2,'+37517-2990011'),(5,3,'+37517-1111111'),(46,18,'+37529-783-09-87'),(47,18,'#256-90-90'),(48,19,'+1-789-987-772'),(49,20,'8029-798-67-23'); /*!40000 ALTER TABLE `phone` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-07-12 12:40:58
true
8cd9ae9434df82e222d86deb57aa4e1ec22ba285
SQL
mygithub2015/Tutorial
/SQLs.sql
UTF-8
433
3.03125
3
[]
no_license
create database tutorial; use tutorial; select * from courses; desc courses; use tutorial; #drop table course; select * from courses; #create table Courses script CREATE TABLE `Courses` ( `course_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `course_name` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`course_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; delete from Courses where course_name=`HTML`;
true
1a1e8c3358e9c0733a9a230f7af824c1c33db133
SQL
Gopika1/DBMS
/Cycle 1/question set 1.sql
UTF-8
3,116
4.0625
4
[]
no_license
CREATE TABLE EMP ( empno INT, ename VARCHAR(25), job VARCHAR(12), salary INT, commission INT, deptno INT ); DESCRIBE EMP; INSERT INTO EMP(empno,ename,job,salary,deptno)VALUES (7369,'SMITH','CLERK','800','20'); select * from EMP order by empno; INSERT INTO EMP(empno,ename,job,salary,commission,deptno)VALUES (7499,'ALLEN','SALESMAN','1600','300','30'), (7521,'WARD','SALESMAN','1250','500','30'), (7654,'MARTIN','SALESMAN','1250','1400','30'); INSERT INTO EMP(empno,ename,job,salary,deptno)VALUES (7566,'JONES','MANAGER','2975','20'), (7698,'BLAKE','MANAGER','2850','30'), (7782,'CLARK', 'MANAGER', '2450', '10'), (7788, 'SCOTT', 'ANALYST', '3000', '20'), (7839,'KING','PRESIDENT','5000','10'), (7844,'TURNER','SALESMAN', '1500', '30'), (7876,'ADAMS','CLERK','1100', '20'), (7900,'JAMES', 'NULL','950','30'), (7902,'FORD','ANALYST','3000', '20'), (7934 ,'MILLER','CLERK', '1300', '10'); UPDATE EMP SET job='CLERK' WHERE job='NULL'; ALTER TABLE emp DROP COLUMN date_join; ALTER TABLE EMP ADD COLUMN date_join VARCHAR(50); UPDATE EMP SET date_join='17-DEC-80' WHERE empno= '7369'; UPDATE EMP SET date_join='20-FEB-81' WHERE empno= '7499'; UPDATE EMP SET date_join='22-FEB-81' WHERE empno= '7521'; UPDATE EMP SET date_join='02-APR-81' WHERE empno= '7566'; UPDATE EMP SET date_join='28-SEP-81' WHERE empno= '7654'; UPDATE EMP SET date_join='01-MAY-81' WHERE empno= '7698'; UPDATE EMP SET date_join='9-JUN-81' WHERE empno= '7782'; UPDATE EMP SET date_join='19-APR-87' WHERE empno= '7788'; UPDATE EMP SET date_join='17-NOV-81' WHERE empno= '7839'; UPDATE EMP SET date_join='08-SEP-81' WHERE empno= '7844'; UPDATE EMP SET date_join='23-MAY-87' WHERE empno= '7876'; UPDATE EMP SET date_join='03-DEC-81' WHERE empno= '7900'; UPDATE EMP SET date_join='03-DEC-81' WHERE empno= '7902'; UPDATE EMP SET date_join='23-JAN-82' WHERE empno= '7934'; SELECT * FROM EMP; SELECT DISTINCT job FROM EMP; SELECT ename,deptno FROM EMP WHERE deptno IN (20,30); SELECT ename,(salary + IFNULL(commission,0)) AS total_salary FROM EMP; SELECT ename,(salary + coalesce(commission,0)) AS total_salary FROM EMP; SELECT ename,salary*12 AS annual FROM EMP; SELECT * FROM EMP WHERE date_join ='03-DEC-81'; SELECT (salary + IFNULL( commission,0)) AS total_salary FROM EMP WHERE ename='MILLER'; DELETE FROM EMP WHERE ename='MILLER'; SELECT * FROM EMP; SELECT ename,deptno FROM EMP; ALTER TABLE EMP ADD COLUMN total_salary numeric; UPDATE EMP SET total_salary= (salary + IFNULL( commission,0)) ; ALTER TABLE EMP DROP COLUMN commission; SELECT E.ename,E.salary FROM EMP E INNER JOIN EMP B ON E.salary=B.salary AND E.ename<>B.ename; SELECT ename AS name,empno AS emp_id FROM EMP; RENAME TABLE EMP to EMPLOYEE; DESC EMPLOYEE; Create table EMP_TAB as select * from EMPLOYEE; select * from EMP_TAB; select * from EMPLOYEE; select * from EMP_TAB FULL JOIN EMPLOYEE; SELECT distinct e.empno,e.ename,e.job,e.salary,e.deptno,e.date_join,e.total_salary, b.empno,b.ename,b.job,b.salary,b.deptno,b.date_join,b.total_salary FROM EMP_TAB e JOIN EMPLOYEE b where e.empno=b.empno; TRUNCATE TABLE EMPLOYEE; SELECT * FROM EMPLOYEE; DROP TABLE EMPLOYEE;
true
e89ee2c6075da0e2dba5c36a5ebd228e9ad7a22f
SQL
sunnyDX/wireless_ctr_cid
/shell/特征工程/分位数.sql
UTF-8
9,486
3.28125
3
[]
no_license
#用户 #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.2,0.4,0.6,0.8)) from (select style_clicks, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select style_clicks from wireless_user_all_behavior_v1 where dt='2017-06-06' and style_clicks !='-1' )a lateral view explode(split(style_clicks,',')) tmp as style_cnt )main where not style like '%-1' style_clicks [3.0,5.0,12.0,32.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select style_atimes, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select style_atimes from wireless_user_all_behavior_v1 where dt='2017-06-06' and style_atimes != '-1' )a lateral view explode(split(style_atimes,',')) tmp as style_cnt )main where not style like '%-1' style_atimes [0.0,5.0,36.0,133.0,479.0,1422.0,3384.0,7327.0,21072.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.2,0.4,0.6,0.8)) from (select search_style_atimes, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select search_style_atimes from wireless_user_all_behavior_v1 where dt='2017-06-06' and search_style_atimes !="-1" )a lateral view explode(split(search_style_atimes,',')) tmp as style_cnt )main where not style like '%-1' search_style_atimes [0.0,31.0,409.0,3130.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select type_clicks, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select type_clicks from wireless_user_all_behavior_v1 where dt='2017-06-06' and type_clicks !="-1" )a lateral view explode(split(type_clicks,',')) tmp as style_cnt )main where not style like '%-1' type_clicks [2.0,3.0,4.0,7.0,10.0,16.0,27.0,49.0,108.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select type_atimes, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select type_atimes from wireless_user_all_behavior_v1 where dt='2017-06-06' and type_atimes !="-1" )a lateral view explode(split(type_atimes,',')) tmp as style_cnt )main where not style like '%-1' type_atimes [0.0,3.0,35.0,146.0,576.0,1754.0,4266.0,9837.6,29473.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select search_type_atimes, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select search_type_atimes from wireless_user_all_behavior_v1 where dt='2017-06-06' and search_type_atimes !="-1" )a lateral view explode(split(search_type_atimes,',')) tmp as style_cnt )main where not style like '%-1' search_type_atimes [0.0,1.0,10.0,39.0,130.0,509.0,1582.0,3687.0,8921.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.2,0.4,0.6,0.8)) from (select area_clicks, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select area_clicks from wireless_user_all_behavior_v1 where dt='2017-06-06' and area_clicks !="-1" )a lateral view explode(split(area_clicks,',')) tmp as style_cnt )main where not style like '%-1' area_clicks [2.0,4.0,9.0,24.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.2,0.4,0.6,0.8)) from (select area_atimes, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select area_atimes from wireless_user_all_behavior_v1 where dt='2017-06-06' and area_atimes !="-1" )a lateral view explode(split(area_atimes,',')) tmp as style_cnt )main where not style like '%-1' area_atimes [0.0,59.0,620.0,4453.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.2,0.4,0.6,0.8)) from (select search_area_atimes, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select search_area_atimes from wireless_user_all_behavior_v1 where dt='2017-06-06' and search_area_atimes !="-1" )a lateral view explode(split(search_area_atimes,',')) tmp as style_cnt )main where not style like '%-1' search_area_atimes [0.0,25.0,283.0,2706.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cnt as int),array(0.3,0.6,0.9)) from (select sectionid_clicks, split(style_cnt,':')[0] as style, split(style_cnt,':')[1] as cnt from (select sectionid_clicks from wireless_user_all_behavior_v1 where dt='2017-06-06' and sectionid_clicks !='-1' )a lateral view explode(split(sectionid_clicks,',')) tmp as style_cnt )main where not style like '%-1' sectionid_clicks [1.0,3.0,17.0] #卡片 #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cast(displaycnt as double) as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select displaycnt from wireless_cardrec_ctr_cardfeatures where dt='2017-06-15' and displaycnt !='-1' )main displaycnt [509.0,3519.8,6634.4,10936.0,19643.0,35654.3,66857.7,143097.4,405614.8] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cast(vvcnt as double) as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select vvcnt from wireless_cardrec_ctr_cardfeatures where dt='2017-06-15' and vvcnt !='-1' )main vvcnt [31.0,108.0,267.0,522.0,1025.0,2116.0,3907.0,8013.0,23055.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cast(vvsec as double) as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select vvsec from wireless_cardrec_ctr_cardfeatures where dt='2017-06-15' and vvsec !='-1' )main vvsec [4895.0,28158.0,72855.0,141723.0,288383.0,608113.0,1260515.0,2211014.0,7664826.0] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cast(funclickcnt as double) as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select funclickcnt from wireless_cardrec_ctr_cardfeatures where dt='2017-06-15' and funclickcnt !='-1' )main funclickcnt [8.0,33.0,82.0,145.0,233.5,424.0,762.0,1680.0,5068.5] #-------------------------------------------------------------------------------------- #-------------------------------------------------------------------------------------- select percentile(cast(cast(conclickcnt as double) as int),array(0.1,0.2,0.3,0.4,0.5,0.6,0.7,0.8,0.9)) from (select conclickcnt from wireless_cardrec_ctr_cardfeatures where dt='2017-06-15' and conclickcnt !='-1' )main conclickcnt [25.0,94.2,209.1,408.2,801.0,1571.3,2761.1,5623.2,16113.7]
true
e4a1cf0c6ad9c9e428b106386d93d479bcda3a4e
SQL
fitrakun/IF3110-2015-T2
/stackexchange.sql
UTF-8
5,286
3.359375
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 4.2.11 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Nov 17, 2015 at 01:50 PM -- Server version: 5.6.21 -- PHP Version: 5.6.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `stackexchange` -- -- -------------------------------------------------------- -- -- Table structure for table `answer` -- CREATE TABLE IF NOT EXISTS `answer` ( `id` int(11) NOT NULL, `id_question` int(11) NOT NULL, `id_user` int(11) NOT NULL, `content` text NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `votes` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `question` -- CREATE TABLE IF NOT EXISTS `question` ( `id` int(11) NOT NULL, `id_user` int(11) NOT NULL, `topic` varchar(255) NOT NULL, `content` text NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `votes` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `token` -- CREATE TABLE IF NOT EXISTS `token` ( `user_id` int(11) NOT NULL, `access_token` varchar(255) NOT NULL, `expire_date` timestamp NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE IF NOT EXISTS `user` ( `id` int(11) NOT NULL, `password` varchar(32) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `vote_answer` -- CREATE TABLE IF NOT EXISTS `vote_answer` ( `id_user` int(11) NOT NULL, `id_answer` int(11) NOT NULL, `vote_up` tinyint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `vote_question` -- CREATE TABLE IF NOT EXISTS `vote_question` ( `id_user` int(11) NOT NULL, `id_question` int(11) NOT NULL, `vote_up` tinyint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Indexes for dumped tables -- -- -- Indexes for table `answer` -- ALTER TABLE `answer` ADD PRIMARY KEY (`id`), ADD KEY `ques_id` (`id_question`), ADD KEY `user_id` (`id_user`); -- -- Indexes for table `question` -- ALTER TABLE `question` ADD PRIMARY KEY (`id`), ADD KEY `user_id` (`id_user`); -- -- Indexes for table `token` -- ALTER TABLE `token` ADD UNIQUE KEY `user_id` (`user_id`), ADD UNIQUE KEY `access_token` (`access_token`), ADD KEY `user_id_2` (`user_id`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `email` (`email`); -- -- Indexes for table `vote_answer` -- ALTER TABLE `vote_answer` ADD KEY `id_answer` (`id_answer`), ADD KEY `id_user` (`id_user`); -- -- Indexes for table `vote_question` -- ALTER TABLE `vote_question` ADD KEY `id_question` (`id_question`), ADD KEY `id_user` (`id_user`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `answer` -- ALTER TABLE `answer` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `question` -- ALTER TABLE `question` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Constraints for table `answer` -- ALTER TABLE `answer` ADD CONSTRAINT `answer_question_fk` FOREIGN KEY (`id_question`) REFERENCES `question` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `answer_user_fk` FOREIGN KEY (`id_user`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `question` -- ALTER TABLE `question` ADD CONSTRAINT `question_user_fk` FOREIGN KEY (`id_user`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `token` -- ALTER TABLE `token` ADD CONSTRAINT `token_user_fk` FOREIGN KEY (`user_id`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `vote_answer` -- ALTER TABLE `vote_answer` ADD CONSTRAINT `vote_answer_fk` FOREIGN KEY (`id_answer`) REFERENCES `answer` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `vote_answer_user_fk` FOREIGN KEY (`id_user`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; -- -- Constraints for table `vote_question` -- ALTER TABLE `vote_question` ADD CONSTRAINT `vote_question_fk` FOREIGN KEY (`id_question`) REFERENCES `question` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `vote_question_user_fk` FOREIGN KEY (`id_user`) REFERENCES `user` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
true
9dd4fd3457ca72f86cbca5eb6c8078a3bc79811c
SQL
HShanks19/ProjectBookshelf
/src/main/resources/schema.sql
UTF-8
556
3.0625
3
[]
no_license
CREATE SCHEMA IF NOT EXISTS book; CREATE SCHEMA IF NOT EXISTS review; CREATE TABLE IF NOT EXISTS book.book( id bigint NOT NULL AUTO_INCREMENT, author varchar(255) NOT NULL, genre varchar(255) NOT NULL, status int NOT NULL, title varchar(255) NOT NULL, year_released int NOT NULL, PRIMARY KEY (id) ); CREATE TABLE IF NOT EXISTS review.review( id bigint NOT NULL AUTO_INCREMENT, rating int NOT NULL, review_body varchar(255) NOT NULL, review_title varchar(255) NOT NULL, book_id bigint DEFAULT NULL, PRIMARY KEY (id) );
true
7de76c25507752df0174393dfbc65d56c54f5ca2
SQL
supersuporte/tec-wiki
/Docs de Projetos/BI/BI 2014/plsql/bi-views.sql
UTF-8
21,804
3.65625
4
[]
no_license
------------------------------------ -- VENDAS LIQUIDA POR AGRUPAMENTO -- ------------------------------------ CREATE OR REPLACE FORCE VIEW BIV100 ( CODIGO, DATA, CLIENTE, FAMILIA, SUBFAMILIA, AGRUPAMENTO, SUBAGRUPAMENTO, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT BI0100.CODIGO, BI0100.DATA, BI0100.CLIENTE, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU') FAMILIA, IAT177.COD_SUBFAMILIA SUBFAMILIA, BI0100.AGRUPAMENTO, BI0100.SUBAGRUPAMENTO, BI0100.QUANTIDADE, BI0100.VALOR, BI0100.CUSTO_LIQUIDO, BI0100.CUSTO_GGF FROM BI0100, IAT177 WHERE BI0100.AGRUPAMENTO = IAT177.COD_AGRUPAMENTO AND BI0100.SUBAGRUPAMENTO = IAT177.SUB_AGRUPAMENTO ) WITH READ ONLY; DROP MATERIALIZED VIEW BIV101; CREATE MATERIALIZED VIEW "FONTES"."BIV101" TABLESPACE "TB_DADOS_BI" BUILD IMMEDIATE REFRESH COMPLETE AS SELECT ROWNUM codigo, T."DATA", T."REPRESENTANTE", T."FAMILIA", T."SUBFAMILIA", T."AGRUPAMENTO", T."SUBAGRUPAMENTO", T."QUANTIDADE", T."VALOR", T."CUSTO_LIQUIDO", T."CUSTO_GGF" FROM (SELECT BI0100.DATA, TO_NUMBER(CBT055.COD_VENDEDOR, '999') REPRESENTANTE, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU') FAMILIA, IAT177.COD_SUBFAMILIA SUBFAMILIA, BI0100.AGRUPAMENTO, BI0100.SUBAGRUPAMENTO, SUM(BI0100.QUANTIDADE) QUANTIDADE, SUM(BI0100.VALOR) VALOR, SUM(BI0100.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0100.CUSTO_GGF) CUSTO_GGF FROM BI0100, IAT177, FAT017, CBT055 WHERE BI0100.AGRUPAMENTO = IAT177.COD_AGRUPAMENTO AND BI0100.SUBAGRUPAMENTO = IAT177.SUB_AGRUPAMENTO AND BI0100.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) GROUP BY BI0100.DATA, CBT055.COD_VENDEDOR, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU'), IAT177.COD_SUBFAMILIA, BI0100.AGRUPAMENTO, BI0100.SUBAGRUPAMENTO ) T; CREATE OR REPLACE FORCE VIEW BIV102 ( CODIGO, DATA, GERENTE, FAMILIA, SUBFAMILIA, AGRUPAMENTO, SUBAGRUPAMENTO, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT ROWNUM, T.* FROM (SELECT BI0100.DATA, TO_NUMBER(CBT061.COD_GERENCIA, '99') GERENTE, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU') FAMILIA, IAT177.COD_SUBFAMILIA SUBFAMILIA, BI0100.AGRUPAMENTO, BI0100.SUBAGRUPAMENTO, SUM(BI0100.QUANTIDADE) QUANTIDADE, SUM(BI0100.VALOR) VALOR, SUM(BI0100.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0100.CUSTO_GGF) CUSTO_GGF FROM BI0100, IAT177, FAT017, CBT055, CBT061 WHERE BI0100.AGRUPAMENTO = IAT177.COD_AGRUPAMENTO AND BI0100.SUBAGRUPAMENTO = IAT177.SUB_AGRUPAMENTO AND BI0100.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND CBT055.COD_GERENCIA = CBT061.COD_GERENCIA GROUP BY BI0100.DATA, CBT055.COD_VENDEDOR, CBT061.COD_GERENCIA, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU'), IAT177.COD_SUBFAMILIA, BI0100.AGRUPAMENTO, BI0100.SUBAGRUPAMENTO) T ) WITH READ ONLY; DROP MATERIALIZED VIEW BIV103; CREATE MATERIALIZED VIEW "FONTES"."BIV103" TABLESPACE "TB_DADOS_BI" BUILD IMMEDIATE REFRESH COMPLETE AS SELECT ROWNUM codigo, T."DATA", T."GERENCIA", T."FAMILIA", T."SUBFAMILIA", T."AGRUPAMENTO", T."SUBAGRUPAMENTO", T."QUANTIDADE", T."VALOR", T."CUSTO_LIQUIDO", T."CUSTO_GGF" FROM (SELECT BI0100.DATA, TO_NUMBER(CBT1431.COD_GER_REGIAO, '99') GERENCIA, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU') FAMILIA, IAT177.COD_SUBFAMILIA SUBFAMILIA, BI0100.AGRUPAMENTO, BI0100.SUBAGRUPAMENTO, SUM(BI0100.QUANTIDADE) QUANTIDADE, SUM(BI0100.VALOR) VALOR, SUM(BI0100.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0100.CUSTO_GGF) CUSTO_GGF FROM BI0100, IAT177, FAT017, CBT055, CBT061, cbt1431 WHERE BI0100.AGRUPAMENTO = IAT177.COD_AGRUPAMENTO AND BI0100.SUBAGRUPAMENTO = IAT177.SUB_AGRUPAMENTO AND BI0100.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND CBT055.COD_GERENCIA = CBT061.COD_GERENCIA AND CBT061.COD_GER_REGIAO = CBT1431.COD_GER_REGIAO GROUP BY BI0100.DATA, CBT1431.COD_GER_REGIAO, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU'), IAT177.COD_SUBFAMILIA, BI0100.AGRUPAMENTO, BI0100.SUBAGRUPAMENTO ) T; ---------------------------- -- CUTOFF POR AGRUPAMENTO -- ---------------------------- CREATE OR REPLACE FORCE VIEW BIV200 ( CODIGO, DATA, CLIENTE, FAMILIA, SUBFAMILIA, AGRUPAMENTO, SUBAGRUPAMENTO, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT ROWNUM, T.* FROM (SELECT BI0200.DATA, BI0200.CLIENTE, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU') FAMILIA, IAT177.COD_SUBFAMILIA SUBFAMILIA, BI0200.AGRUPAMENTO, BI0200.SUBAGRUPAMENTO, BI0200.QUANTIDADE, BI0200.VALOR, BI0200.CUSTO_LIQUIDO, BI0200.CUSTO_GGF FROM BI0200, IAT177 WHERE BI0200.AGRUPAMENTO = IAT177.COD_AGRUPAMENTO AND BI0200.SUBAGRUPAMENTO = IAT177.SUB_AGRUPAMENTO) T ) WITH READ ONLY; CREATE OR REPLACE FORCE VIEW BIV201 ( CODIGO, DATA, REPRESENTANTE, FAMILIA, SUBFAMILIA, AGRUPAMENTO, SUBAGRUPAMENTO, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT ROWNUM, T.* FROM (SELECT BI0200.DATA, TO_NUMBER(CBT055.COD_VENDEDOR, '999') REPRESENTANTE, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU') FAMILIA, IAT177.COD_SUBFAMILIA SUBFAMILIA, BI0200.AGRUPAMENTO, BI0200.SUBAGRUPAMENTO, SUM(BI0200.QUANTIDADE) QUANTIDADE, SUM(BI0200.VALOR) VALOR, SUM(BI0200.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0200.CUSTO_GGF) CUSTO_GGF FROM BI0200, IAT177, FAT017, CBT055 WHERE BI0200.AGRUPAMENTO = IAT177.COD_AGRUPAMENTO AND BI0200.SUBAGRUPAMENTO = IAT177.SUB_AGRUPAMENTO AND BI0200.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) GROUP BY BI0200.DATA, CBT055.COD_VENDEDOR, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU'), IAT177.COD_SUBFAMILIA, BI0200.AGRUPAMENTO, BI0200.SUBAGRUPAMENTO) T ) WITH READ ONLY; CREATE OR REPLACE FORCE VIEW BIV202 ( CODIGO, DATA, GERENTE, FAMILIA, SUBFAMILIA, AGRUPAMENTO, SUBAGRUPAMENTO, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT ROWNUM, T.* FROM (SELECT BI0200.DATA, TO_NUMBER(CBT061.COD_GERENCIA, '99') GERENTE, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU') FAMILIA, IAT177.COD_SUBFAMILIA SUBFAMILIA, BI0200.AGRUPAMENTO, BI0200.SUBAGRUPAMENTO, SUM(BI0200.QUANTIDADE) QUANTIDADE, SUM(BI0200.VALOR) VALOR, SUM(BI0200.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0200.CUSTO_GGF) CUSTO_GGF FROM BI0200, IAT177, FAT017, CBT055, CBT061 WHERE BI0200.AGRUPAMENTO = IAT177.COD_AGRUPAMENTO AND BI0200.SUBAGRUPAMENTO = IAT177.SUB_AGRUPAMENTO AND BI0200.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND CBT055.COD_GERENCIA = CBT061.COD_GERENCIA GROUP BY BI0200.DATA, CBT055.COD_VENDEDOR, CBT061.COD_GERENCIA, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU'), IAT177.COD_SUBFAMILIA, BI0200.AGRUPAMENTO, BI0200.SUBAGRUPAMENTO) T ) WITH READ ONLY; CREATE OR REPLACE FORCE VIEW BIV203 ( CODIGO, DATA, GERENCIA, FAMILIA, SUBFAMILIA, AGRUPAMENTO, SUBAGRUPAMENTO, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT ROWNUM, T.* FROM (SELECT BI0200.DATA, TO_NUMBER(CBT1431.COD_GER_REGIAO, '99') GERENCIA, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU') FAMILIA, IAT177.COD_SUBFAMILIA SUBFAMILIA, BI0200.AGRUPAMENTO, BI0200.SUBAGRUPAMENTO, SUM(BI0200.QUANTIDADE) QUANTIDADE, SUM(BI0200.VALOR) VALOR, SUM(BI0200.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0200.CUSTO_GGF) CUSTO_GGF FROM BI0200, IAT177, FAT017, CBT055, CBT061, cbt1431 WHERE BI0200.AGRUPAMENTO = IAT177.COD_AGRUPAMENTO AND BI0200.SUBAGRUPAMENTO = IAT177.SUB_AGRUPAMENTO AND BI0200.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND CBT055.COD_GERENCIA = CBT061.COD_GERENCIA AND CBT061.COD_GER_REGIAO = CBT1431.COD_GER_REGIAO GROUP BY BI0200.DATA, CBT1431.COD_GER_REGIAO, REPLACE(REPLACE(IAT177.COD_FAMILIA,'PT','OU'),'EV','OU'), IAT177.COD_SUBFAMILIA, BI0200.AGRUPAMENTO, BI0200.SUBAGRUPAMENTO) T ) WITH READ ONLY; -------------------------------- -- VENDAS LIQUIDA POR PRODUTO -- -------------------------------- CREATE OR REPLACE FORCE VIEW BIV110 ( CODIGO, DATA, CLIENTE, PRODUTO_GRUPO, PRODUTO_SUBGRUPO, PRODUTO_NUMERO, PRODUTO_UNIDADE, FAMILIA, SUBFAMILIA, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT BI0110.CODIGO, BI0110.DATA, BI0110.CLIENTE, BI0110.PRODUTO_GRUPO, BI0110.PRODUTO_SUBGRUPO, BI0110.PRODUTO_NUMERO, BI0110.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA, SUM(BI0110.QUANTIDADE) QUANTIDADE, SUM(BI0110.VALOR) VALOR, SUM(BI0110.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0110.CUSTO_GGF) CUSTO_GGF FROM BI0110, IAT037, IAT177 WHERE BI0110.PRODUTO_GRUPO = IAT037.COD_GRUPO(+) AND BI0110.PRODUTO_SUBGRUPO = IAT037.COD_SUBGRUPO(+) AND BI0110.PRODUTO_NUMERO = IAT037.NUM_PRODUTO(+) AND BI0110.PRODUTO_UNIDADE = IAT037.COD_UNIDADE(+) AND IAT037.COD_AGRUPAMENTO = IAT177.COD_AGRUPAMENTO(+) AND IAT037.SUB_AGRUPAMENTO = IAT177.SUB_AGRUPAMENTO(+) GROUP BY BI0110.CODIGO, BI0110.DATA, BI0110.CLIENTE, BI0110.PRODUTO_GRUPO, BI0110.PRODUTO_SUBGRUPO, BI0110.PRODUTO_NUMERO, BI0110.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA ) WITH READ ONLY; CREATE OR REPLACE FORCE VIEW BIV111 ( CODIGO, DATA, REPRESENTANTE, PRODUTO_GRUPO, PRODUTO_SUBGRUPO, PRODUTO_NUMERO, PRODUTO_UNIDADE, FAMILIA, SUBFAMILIA, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT BI0110.CODIGO, BI0110.DATA, TO_NUMBER(CBT055.COD_VENDEDOR, '999') REPRESENTANTE, BI0110.PRODUTO_GRUPO, BI0110.PRODUTO_SUBGRUPO, BI0110.PRODUTO_NUMERO, BI0110.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA, SUM(BI0110.QUANTIDADE) QUANTIDADE, SUM(BI0110.VALOR) VALOR, SUM(BI0110.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0110.CUSTO_GGF) CUSTO_GGF FROM BI0110, FAT017, CBT055, IAT037, IAT177 WHERE BI0110.CLIENTE = FAT017.COD_CLIENTE AND BI0110.PRODUTO_GRUPO = IAT037.COD_GRUPO(+) AND BI0110.PRODUTO_SUBGRUPO = IAT037.COD_SUBGRUPO(+) AND BI0110.PRODUTO_NUMERO = IAT037.NUM_PRODUTO(+) AND BI0110.PRODUTO_UNIDADE = IAT037.COD_UNIDADE(+) AND IAT037.COD_AGRUPAMENTO = IAT177.COD_AGRUPAMENTO(+) AND IAT037.SUB_AGRUPAMENTO = IAT177.SUB_AGRUPAMENTO(+) AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) GROUP BY BI0110.CODIGO, BI0110.DATA, CBT055.COD_VENDEDOR, BI0110.PRODUTO_GRUPO, BI0110.PRODUTO_SUBGRUPO, BI0110.PRODUTO_NUMERO, BI0110.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA ) WITH READ ONLY; CREATE OR REPLACE FORCE VIEW BIV112 ( CODIGO, DATA, GERENTE, PRODUTO_GRUPO, PRODUTO_SUBGRUPO, PRODUTO_NUMERO, PRODUTO_UNIDADE, FAMILIA, SUBFAMILIA, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT BI0110.CODIGO, BI0110.DATA, TO_NUMBER(CBT061.COD_GERENCIA, '99') GERENTE, BI0110.PRODUTO_GRUPO, BI0110.PRODUTO_SUBGRUPO, BI0110.PRODUTO_NUMERO, BI0110.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA, SUM(BI0110.QUANTIDADE) QUANTIDADE, SUM(BI0110.VALOR) VALOR, SUM(BI0110.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0110.CUSTO_GGF) CUSTO_GGF FROM BI0110, FAT017, CBT055, CBT061, IAT037, IAT177 WHERE BI0110.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND CBT055.COD_GERENCIA = CBT061.COD_GERENCIA AND BI0110.PRODUTO_GRUPO = IAT037.COD_GRUPO(+) AND BI0110.PRODUTO_SUBGRUPO = IAT037.COD_SUBGRUPO(+) AND BI0110.PRODUTO_NUMERO = IAT037.NUM_PRODUTO(+) AND BI0110.PRODUTO_UNIDADE = IAT037.COD_UNIDADE(+) AND IAT037.COD_AGRUPAMENTO = IAT177.COD_AGRUPAMENTO(+) AND IAT037.SUB_AGRUPAMENTO = IAT177.SUB_AGRUPAMENTO(+) GROUP BY BI0110.CODIGO, BI0110.DATA, CBT061.COD_GERENCIA, BI0110.PRODUTO_GRUPO, BI0110.PRODUTO_SUBGRUPO, BI0110.PRODUTO_NUMERO, BI0110.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA ) WITH READ ONLY; CREATE OR REPLACE FORCE VIEW BIV113 ( CODIGO, DATA, GERENCIA, PRODUTO_GRUPO, PRODUTO_SUBGRUPO, PRODUTO_NUMERO, PRODUTO_UNIDADE, FAMILIA, SUBFAMILIA, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT BI0110.CODIGO, BI0110.DATA, TO_NUMBER(CBT1431.COD_GER_REGIAO, '99') GERENCIA, BI0110.PRODUTO_GRUPO, BI0110.PRODUTO_SUBGRUPO, BI0110.PRODUTO_NUMERO, BI0110.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA, SUM(BI0110.QUANTIDADE) QUANTIDADE, SUM(BI0110.VALOR) VALOR, SUM(BI0110.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0110.CUSTO_GGF) CUSTO_GGF FROM BI0110, FAT017, CBT055, CBT061, CBT1431, IAT037, IAT177 WHERE BI0110.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND CBT055.COD_GERENCIA = CBT061.COD_GERENCIA AND CBT061.COD_GER_REGIAO = CBT1431.COD_GER_REGIAO AND BI0110.PRODUTO_GRUPO = IAT037.COD_GRUPO(+) AND BI0110.PRODUTO_SUBGRUPO = IAT037.COD_SUBGRUPO(+) AND BI0110.PRODUTO_NUMERO = IAT037.NUM_PRODUTO(+) AND BI0110.PRODUTO_UNIDADE = IAT037.COD_UNIDADE(+) AND IAT037.COD_AGRUPAMENTO = IAT177.COD_AGRUPAMENTO(+) AND IAT037.SUB_AGRUPAMENTO = IAT177.SUB_AGRUPAMENTO(+) GROUP BY BI0110.CODIGO, BI0110.DATA, CBT1431.COD_GER_REGIAO, BI0110.PRODUTO_GRUPO, BI0110.PRODUTO_SUBGRUPO, BI0110.PRODUTO_NUMERO, BI0110.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA ) WITH READ ONLY; ------------------------ -- CUTOFF POR PRODUTO -- ------------------------ CREATE OR REPLACE FORCE VIEW BIV211 ( CODIGO, DATA, REPRESENTANTE, PRODUTO_GRUPO, PRODUTO_SUBGRUPO, PRODUTO_NUMERO, PRODUTO_UNIDADE, FAMILIA, SUBFAMILIA, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT BI0210.CODIGO, BI0210.DATA, TO_NUMBER(CBT055.COD_VENDEDOR, '999') REPRESENTANTE, BI0210.PRODUTO_GRUPO, BI0210.PRODUTO_SUBGRUPO, BI0210.PRODUTO_NUMERO, BI0210.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA, SUM(BI0210.QUANTIDADE) QUANTIDADE, SUM(BI0210.VALOR) VALOR, SUM(BI0210.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0210.CUSTO_GGF) CUSTO_GGF FROM BI0210, FAT017, CBT055, IAT037, IAT177 WHERE BI0210.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND BI0210.PRODUTO_GRUPO = IAT037.COD_GRUPO(+) AND BI0210.PRODUTO_SUBGRUPO = IAT037.COD_SUBGRUPO(+) AND BI0210.PRODUTO_NUMERO = IAT037.NUM_PRODUTO(+) AND BI0210.PRODUTO_UNIDADE = IAT037.COD_UNIDADE(+) AND IAT037.COD_AGRUPAMENTO = IAT177.COD_AGRUPAMENTO(+) AND IAT037.SUB_AGRUPAMENTO = IAT177.SUB_AGRUPAMENTO(+) GROUP BY BI0210.CODIGO, BI0210.DATA, CBT055.COD_VENDEDOR, BI0210.PRODUTO_GRUPO, BI0210.PRODUTO_SUBGRUPO, BI0210.PRODUTO_NUMERO, BI0210.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA ) WITH READ ONLY; CREATE OR REPLACE FORCE VIEW BIV212 ( CODIGO, DATA, GERENTE, PRODUTO_GRUPO, PRODUTO_SUBGRUPO, PRODUTO_NUMERO, PRODUTO_UNIDADE, FAMILIA, SUBFAMILIA, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT BI0210.CODIGO, BI0210.DATA, TO_NUMBER(CBT061.COD_GERENCIA, '99') GERENTE, BI0210.PRODUTO_GRUPO, BI0210.PRODUTO_SUBGRUPO, BI0210.PRODUTO_NUMERO, BI0210.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA, SUM(BI0210.QUANTIDADE) QUANTIDADE, SUM(BI0210.VALOR) VALOR, SUM(BI0210.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0210.CUSTO_GGF) CUSTO_GGF FROM BI0210, FAT017, CBT055, CBT061, IAT037, IAT177 WHERE BI0210.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND CBT055.COD_GERENCIA = CBT061.COD_GERENCIA AND BI0210.PRODUTO_GRUPO = IAT037.COD_GRUPO(+) AND BI0210.PRODUTO_SUBGRUPO = IAT037.COD_SUBGRUPO(+) AND BI0210.PRODUTO_NUMERO = IAT037.NUM_PRODUTO(+) AND BI0210.PRODUTO_UNIDADE = IAT037.COD_UNIDADE(+) AND IAT037.COD_AGRUPAMENTO = IAT177.COD_AGRUPAMENTO(+) AND IAT037.SUB_AGRUPAMENTO = IAT177.SUB_AGRUPAMENTO(+) GROUP BY BI0210.CODIGO, BI0210.DATA, CBT061.COD_GERENCIA, BI0210.PRODUTO_GRUPO, BI0210.PRODUTO_SUBGRUPO, BI0210.PRODUTO_NUMERO, BI0210.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA ) WITH READ ONLY; CREATE OR REPLACE FORCE VIEW BIV213 ( CODIGO, DATA, GERENCIA, PRODUTO_GRUPO, PRODUTO_SUBGRUPO, PRODUTO_NUMERO, PRODUTO_UNIDADE, FAMILIA, SUBFAMILIA, QUANTIDADE, VALOR, CUSTO_LIQUIDO, CUSTO_GGF) AS (SELECT BI0210.CODIGO, BI0210.DATA, TO_NUMBER(CBT1431.COD_GER_REGIAO, '99') GERENCIA, BI0210.PRODUTO_GRUPO, BI0210.PRODUTO_SUBGRUPO, BI0210.PRODUTO_NUMERO, BI0210.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA, SUM(BI0210.QUANTIDADE) QUANTIDADE, SUM(BI0210.VALOR) VALOR, SUM(BI0210.CUSTO_LIQUIDO) CUSTO_LIQUIDO, SUM(BI0210.CUSTO_GGF) CUSTO_GGF FROM BI0210, FAT017, CBT055, CBT061, CBT1431, IAT037, IAT177 WHERE BI0210.CLIENTE = FAT017.COD_CLIENTE AND (FAT017.COD_SETOR = CBT055.COD_VENDEDOR AND CBT055.COD_VENDEDOR <> '090' OR FAT017.COD_SETOR2 = CBT055.COD_VENDEDOR) AND CBT055.COD_GERENCIA = CBT061.COD_GERENCIA AND CBT061.COD_GER_REGIAO = CBT1431.COD_GER_REGIAO AND BI0210.PRODUTO_GRUPO = IAT037.COD_GRUPO(+) AND BI0210.PRODUTO_SUBGRUPO = IAT037.COD_SUBGRUPO(+) AND BI0210.PRODUTO_NUMERO = IAT037.NUM_PRODUTO(+) AND BI0210.PRODUTO_UNIDADE = IAT037.COD_UNIDADE(+) AND IAT037.COD_AGRUPAMENTO = IAT177.COD_AGRUPAMENTO(+) AND IAT037.SUB_AGRUPAMENTO = IAT177.SUB_AGRUPAMENTO(+) GROUP BY BI0210.CODIGO, BI0210.DATA, CBT1431.COD_GER_REGIAO, BI0210.PRODUTO_GRUPO, BI0210.PRODUTO_SUBGRUPO, BI0210.PRODUTO_NUMERO, BI0210.PRODUTO_UNIDADE, IAT177.COD_FAMILIA, IAT177.COD_SUBFAMILIA ) WITH READ ONLY;
true
9c755836fa55cec8d2710da180c3dc6f6c398939
SQL
Ghostmouth/bamazon
/bamazon.sql
UTF-8
895
3
3
[]
no_license
CREATE DATABASE bamazon; USE bamazon; CREATE TABLE products ( item_id INTEGER(11) AUTO_INCREMENT NOT NULL, product_name VARCHAR(30) NOT NULL, department_name VARCHAR(30) NOT NULL, price DECIMAL (10, 2) NOT NULL, stock_quantity INTEGER(11) NOT NULL, PRIMARY KEY (item_id) ); INSERT INTO products (product_name, department_name, price, stock_quantity) VALUES ('Bucket of Tar', 'Cosmetics', 29.99, 300), ('Gargling Water', 'Cosmetics', 4.99, 100), ('Accessory Storage Bin', 'Accessories', 12.99, 80), ('Used Star Wars Toys', 'Toys', 7.99, 500), ('Esteban DVD', 'Entertainment', 17.99, 300), ('Axe *HOT ITEM*', 'Dangerous Weapons', 2.99, 30), ('Minnesota Pond Scum', 'IPA', 7.50, 200), ('Arby Doll', 'Toys', 8.99, 300), ('Bamazon Gift Card', 'Smart Purchases', 25.00, 500), ('A Bike', 'Toys', 80.00, 400);
true
15167a4cae748242e5a95350e111364a90b5d7f1
SQL
dkulinov/IOT-WebApp
/WebApp/api/sql/db.sql
UTF-8
592
3.5
4
[]
no_license
USE iot; CREATE TABLE devices ( device_id VARCHAR(20) NOT NULL, cloudActivated BOOLEAN DEFAULT 0, customer_email VARCHAR(100), PRIMARY KEY(device_id), FOREIGN KEY(customer_email) REFERENCES customers(email) ); CREATE TABLE customers ( first_name VARCHAR(25), last_name VARCHAR(25), email VARCHAR(100), pw VARCHAR(256), PRIMARY KEY(email) ); CREATE TABLE uploads ( link VARCHAR(256), device_id VARCHAR(20), upload_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY(link), FOREIGN KEY(device_id) REFERENCES devices(device_id) );
true
001176f4d6eb5c4fd896d85fc324f41b954654fb
SQL
carlosfeitosa/zf_project
/rochedo/zendstudio/zf_project/scripts/db/mssql/data/sprint_0001~0007_data/data_seq_0421_basico_localizacao.municipio.sql
UTF-8
3,493,049
3.0625
3
[]
no_license
/** * SCRIPT DE POPULACAO DA TABELA CIDADE * * versao: 1.0 (MSSQL 2000) * por: IGOR PINHO (igor.pinho.souza@rochedoframework.com) * criacao: 26/04/2011 * ultimas modificacoes: * */ -- municipios brasil INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acrelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Assis Brasil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasiléia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bujari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capixaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzeiro do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Epitaciolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feijó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jordão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mâncio Lima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manoel Urbano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marechal Thaumaturgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Plácido de Castro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Walter' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Branco' AS nome_cidade, 68 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rodrigues Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa do Purus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Guiomard' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sena Madureira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tarauacá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xapuri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Acre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Acre'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anadia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arapiraca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Atalaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra de Santo Antônio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra de São Miguel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Batalha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belém' AS nome_cidade, 91 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belo Monte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boca da Mata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Branquinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cacimbinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajueiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campestre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Grande' AS nome_cidade, 67 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canapi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carneiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chã Preta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coité do Nóia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colônia Leopoldina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coqueiro Seco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coruripe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Craíbas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Delmiro Gouveia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dois Riachos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela de Alagoas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feira Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feliz Deserto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flexeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Girau do Ponciano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibateguara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igaci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igreja Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inhapi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacaré dos Homens' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacuípe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japaratinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaramataia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jequiá da Praia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joaquim Gomes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jundiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Junqueiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa da Canoa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Limoeiro de Anadia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maceió' AS nome_cidade, 82 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Major Isidoro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maragogi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maravilha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marechal Deodoro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maribondo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mar Vermelho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mata Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matriz de Camaragibe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Messias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Minador do Negrão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monteirópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Murici' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Lino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olho d''Água das Flores' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olho d''Água do Casado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olho d''Água Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olivença' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palestina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeira dos Índios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pão de Açúcar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pariconha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paripueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passo de Camaragibe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulo Jacinto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Penedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piaçabuçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pilar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pindoba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piranhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poço das Trincheiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Calvo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto de Pedras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Real do Colégio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quebrangulo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Largo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Roteiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Ipanema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Mundaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Brás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Laje' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Tapera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luís do Quitunde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel dos Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel dos Milagres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Satuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Rui Palmeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tanque d''Arca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquarana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teotônio Vilela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Traipu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'União dos Palmares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viçosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Alagoas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra do Navio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amapá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Branca do Amapari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Calçoene' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cutias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ferreira Gomes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaubal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laranjal do Jari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macapá' AS nome_cidade, 96 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mazagão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oiapoque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pracuúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tartarugalzinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitória do Jari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amapá'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvarães' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amaturá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anamã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anori' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Atalaia do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Autazes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barcelos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barreirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Benjamin Constant' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Beruri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista do Ramos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boca do Acre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Borba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caapiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canutama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carauari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Careiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Careiro da Várzea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coari' AS nome_cidade, 97 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Codajás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eirunepé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Envira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fonte Boa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guajará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Humaitá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipixuna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iranduba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itacoatiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itamarati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japurá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juruá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jutaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lábrea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manacapuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manaquiri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manaus' AS nome_cidade, 92 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manicoré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maraã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maués' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nhamundá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Olinda do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Airão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Aripuanã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parintins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pauini' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Figueiredo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Preto da Eva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Isabel do Rio Negro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Içá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gabriel da Cachoeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Paulo de Olivença' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Uatumã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Silves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabatinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapauá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tefé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tonantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uarini' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urucará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urucurituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Amazonas'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abaíra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acajutiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Adustina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Fria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Érico Cardoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aiquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alagoinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alcobaça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Almadina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amargosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amélia Rodrigues' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'América Dourada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anagé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Andaraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Andorinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angical' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anguera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Cardoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Gonçalves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aporá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apuarema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aracatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araças' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aramari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arataca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aratuípe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aurelino Leal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baixa Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Banzaê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra da Estiva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Choça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Mendes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Rocha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barreiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barro Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barrocas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barro Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belmonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belo Campo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Biritinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista do Tupim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus da Lapa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boninal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boquira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Botuporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brotas de Macaúbas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brumado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buerarema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buritirama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caatiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabaceiras do Paraguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caculé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caetanos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caetité' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cafarnaum' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cairu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caldeirão Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camacan' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camaçari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camamu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Alegre de Lourdes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Formoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canarana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canavieiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Candeal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Candeias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Candiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cândido Sales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cansanção' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canudos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capela do Alto Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capim Grosso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caraíbas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caravelas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cardeal da Silva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carinhanha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Casa Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castro Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caturama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Central' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chorrochó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cícero Dantas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cipó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coaraci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cocos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição da Feira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Almeida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Coité' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Jacuípe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Condeúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Contendas do Sincorá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coração de Maria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cordeiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coribe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel João Sá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Correntina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cotegipe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cravolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Crisópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruz das Almas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curaçá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dário Meira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dias d''Ávila' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Basílio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Macedo Costa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Elísio Medrado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Encruzilhada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Entre Rios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esplanada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Euclides da Cunha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eunápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fátima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feira da Mata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feira de Santana' AS nome_cidade, 75 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Filadélfia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Firmino Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floresta Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formosa do Rio Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gandu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gavião' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gentio do Ouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Glória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gongogi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Mangabeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guajeru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guanambi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaratinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Heliópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiassucê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibicaraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibicoara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibicuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibipeba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibipitanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiquera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirapitanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirataia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibitiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibititá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibotirama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ichu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igaporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igrapiúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilhéus' AS nome_cidade, 73 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inhambupe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipecaetá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipiaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipirá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipupiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irajuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iramaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iraquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irecê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaberaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabuna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itacaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaeté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itagi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itagibá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itagimirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaguaçu da Bahia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaju do Colônia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itajuípe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itamaraju' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itamari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itambé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itanagra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itanhém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaparica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapebi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapetinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapicuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapitanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itarantim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itatim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itiruçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itiúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itororó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ituaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ituberá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iuiú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaborandi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacaraci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacobina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguarari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaripe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jandaíra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jequié' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jeremoabo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jiquiriçá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jitaúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Dourado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juazeiro' AS nome_cidade, 74 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jucuruçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jussara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jussari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jussiape' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lafaiete Coutinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Real' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laje' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajedão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajedinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajedo do Tabocal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lamarão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lapão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lauro de Freitas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lençóis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Licínio de Almeida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Livramento de Nossa Senhora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luís Eduardo Magalhães' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macajuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macarani' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macaúbas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macururé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Madre de Deus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maetinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maiquinique' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mairi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Malhada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Malhada de Pedras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manoel Vitorino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mansidão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maracás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maragogipe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maraú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marcionílio Souza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mascote' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mata de São João' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Medeiros Neto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miguel Calmon' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Milagres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirangaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Santo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morpará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro do Chapéu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mortugaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mucugê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mucuri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mulungu do Morro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mundo Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muniz Ferreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muquém de São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muritiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mutuípe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nilo Peçanha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nordestina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Canaã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Fátima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Ibiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Itarana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Redenção' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Soure' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Viçosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Horizonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Triunfo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olindina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oliveira dos Brejinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouriçangas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ourolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmas de Monte Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paramirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paratinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paripiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pau Brasil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulo Afonso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pé de Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedrão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Alexandre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piatã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pilão Arcado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pindaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pindobaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pintadas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piraí do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piripá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piritiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planaltino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planalto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poções' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pojuca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponto Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Seguro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Potiraguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Dutra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Jânio Quadros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Tancredo Neves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Queimadas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quijingue' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quixabeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rafael Jambeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Remanso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Retirolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachão das Neves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachão do Jacuípe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riacho de Santana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeira do Amparo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeira do Pombal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão do Largo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio de Contas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio do Antônio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio do Pires' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Real' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rodelas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ruy Barbosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salinas da Margarida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salvador' AS nome_cidade, 71 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Brígida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz Cabrália' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz da Vitória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Inês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santaluz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria da Vitória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santanópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita de Cássia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Teresinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Amaro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio de Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Estêvão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Desidério' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Félix' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Félix do Coribe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Felipe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Conde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gabriel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo dos Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Vitória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Jacuípe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel das Matas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Passé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapeaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sátiro Dias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saubara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saúde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Seabra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sebastião Laranjeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senhor do Bonfim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra do Ramalho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sento Sé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Dourada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Preta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serrinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serrolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Simões Filho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sítio do Mato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sítio do Quinto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sobradinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Souto Soares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabocas do Brejo Velho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tanhaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tanque Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tanquinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taperoá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapiramutá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teixeira de Freitas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teodoro Sampaio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teofilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tremedal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tucano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uauá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubaíra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubaitaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubatã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uibaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Umburanas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Una' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urandi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruçuca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Utinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Valença' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Valente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea da Roça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea do Poço' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Varzedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vera Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vereda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitória da Conquista' AS nome_cidade, 77 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Wagner' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Wanderley' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Wenceslau Guimarães' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xique-Xique' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Bahia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abaiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acarape' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acaraú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acopiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aiuaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alcântaras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altaneira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Santo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amontada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antonina do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apuiarés' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aquiraz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aracati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aracoiaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ararendá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araripe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aratuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arneiroz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Assaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aurora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baixio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Banabuiú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barbalha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barroquinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baturité' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Beberibe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Viagem' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo Santo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camocim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Sales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canindé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capistrano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caridade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cariré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caririaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cariús' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carnaubal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cascavel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catarina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catunda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caucaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cedro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chaval' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Choró' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chorozinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coreaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Crateús' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Crato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Croatá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Deputado Irapuan Pinheiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ererê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eusébio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Farias Brito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Forquilha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fortaleza' AS nome_cidade, 85 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fortim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frecheirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'General Sampaio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Graça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Granja' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Granjeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Groaíras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaiúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraciaba do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaramiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Hidrolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Horizonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibaretama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiapina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibicuitinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Icapuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Icó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Independência' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipaporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipaumirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipueiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iracema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irauçuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaiçaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaitinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapagé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapipoca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapiúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itarema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itatira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaretama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaribara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaribe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaruana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jijoca de Jericoacoara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juazeiro do Norte' AS nome_cidade, 88 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jucás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lavras da Mangabeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Limoeiro do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Madalena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maracanaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maranguape' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Martinópole' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Massapê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mauriti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Meruoca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Milagres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Milhã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miraíma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Missão Velha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mombaça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monsenhor Tabosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morada Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moraújo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morrinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mucambo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mulungu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Olinda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Russas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Oriente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ocara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Orós' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pacajus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pacatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pacoti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pacujá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palhano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmácia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paracuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraipaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parambu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paramoti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Penaforte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pentecoste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pereiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pindoretama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piquet Carneiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pires Ferreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porteiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Potengi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Potiretama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quiterianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quixadá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quixelô' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quixeramobim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quixeré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Redenção' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Reriutaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Russas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saboeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salitre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Acaraú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Cariri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Quitéria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Benedito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Amarante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Jaguaribe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luís do Curu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Pompeu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Sá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sobral' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Solonópole' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabuleiro do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tamboril' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tarrafas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tauá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tejuçuoca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tianguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trairi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tururu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubajara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Umari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Umirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruburetama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruoca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Varjota' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viçosa do Ceará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Ceará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasília' AS nome_cidade, 61 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Distrito Federal'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Afonso Cláudio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águia Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Doce do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alfredo Chaves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Rio Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anchieta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apiacá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aracruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Atilio Vivacqua' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baixo Guandu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra de São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Esperança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejetuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeiro de Itapemirim' AS nome_cidade, 28 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cariacica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colatina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição da Barra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Castelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divino de São Lourenço' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Domingos Martins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dores do Rio Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ecoporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fundão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Lindenberg' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaçuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarapari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibatiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiraçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibitirama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iconha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irupi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapemirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itarana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jerônimo Monteiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Neiva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laranja da Terra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Linhares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mantenópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marataízes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marechal Floriano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mimoso do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montanha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mucurici' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muniz Freire' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muqui' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Venécia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pancas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Canário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinheiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piúma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponto Belo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Kennedy' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Bananal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Novo do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Leopoldina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria de Jetibá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Teresa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gabriel da Palha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Calçado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Mateus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Roque do Canaã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sooretama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem Alta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Venda Nova do Imigrante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Pavão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Valério' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Velha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitória' AS nome_cidade, 27 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Espírito Santo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abadia de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abadiânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acreúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Adelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Fria de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Limpa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas Lindas de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alexânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aloândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Horizonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Paraíso de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvorada do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amaralina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Americano do Brasil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amorinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anhanguera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anicuns' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aparecida de Goiânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aparecida do Rio Doce' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aporé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aragarças' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aragoiânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguapaz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arenópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aruanã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aurilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Avelinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baliza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barro Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Vista de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jardim de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonfinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brazabrantes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Britânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buriti Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buriti de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buritinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabeceiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira Alta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira Dourada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caiapônia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caldas Novas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caldazinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campestre de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campinaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campinorte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Alegre de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Limpo de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Belos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Verdes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmo do Rio Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catalão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caturaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cavalcante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ceres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cezarina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapadão do Céu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cidade Ocidental' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cocalzinho de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colinas do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Córrego do Ouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corumbá de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corumbaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristalina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Crixás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cromínia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cumari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Damianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Damolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Davinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diorama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Doverlândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Edealina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Edéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Faina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fazenda Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Firminópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flores de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gameleira de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divinópolis de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goianápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goiandira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goianésia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goiânia' AS nome_cidade, 62 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goianira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goiatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gouvelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guapó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraíta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarani de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarinos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Heitoraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Hidrolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Hidrolina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iaciara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inaciolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inhumas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipameri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipiranga de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iporá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Israelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaberaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaguari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaguaru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itajá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapaci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapirapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapuranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itarumã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itauçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itumbiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ivolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jandaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaraguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jataí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaupaci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jesúpolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joviânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jussara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Santa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Leopoldo de Bulhões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luziânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mairipotaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mambaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mara Rosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marzagão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matrinchã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maurilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mimoso de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Minaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mineiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moiporá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alegre de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montes Claros de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montividiu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montividiu do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morrinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro Agudo de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mossâmedes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mozarlândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mundo Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mutunópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nerópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Niquelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova América' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Aurora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Crixás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Glória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Iguaçu de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Roma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Veneza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Brasil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Gama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Planalto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Orizona' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Verde de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouvidor' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Padre Bernardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palestina de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeiras de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palminópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Panamá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranaiguara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Perolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Petrolina de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pilar de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piracanjuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piranhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirenópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pires do Rio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planaltina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pontalina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porangatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porteirão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Portelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Posse' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Professor Jamil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quirinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rialma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rianápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Quente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Verde' AS nome_cidade, 64 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rubiataba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sanclerlândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Fé de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Helena de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Isabel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita do Novo Destino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Tereza de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Terezinha de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio da Barra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Descoberto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João d''Aliança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Paraúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luís de Montes Belos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luíz do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Passa Quatro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Patrício' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Simão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Canedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serranópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Silvânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Simolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sítio d''Abadia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquaral de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teresina de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terezópolis de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Ranchos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trindade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trombas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turvânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turvelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uirapuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urutaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Valparaíso de Goiás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Varjão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vicentinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Boa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Propício' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Goiás'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Açailândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Afonso Cunha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Doce do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alcântara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aldeias Altas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altamira do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Alegre do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Alegre do Pindaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Parnaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amapá do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amarante do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anajatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anapurus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apicum-Açu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguanã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araioses' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arame' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Axixá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bacabal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bacabeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bacuri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bacurituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balsas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barão de Grajaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Corda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barreirinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belágua' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Vista do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Benedito Leite' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bequimão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bernardo do Mearim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista do Gurupi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus das Selvas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Lugar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo de Areia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buriti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buriti Bravo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buriticupu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buritirana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajapió' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campestre do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cândido Mendes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cantanhede' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capinzal do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carolina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carutapera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caxias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cedral' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Central do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Centro do Guilherme' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Centro Novo do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapadinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cidelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Codó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coelho Neto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colinas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Lago-Açu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coroatá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cururupu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Davinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Pedro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Duque Bacelar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esperantinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estreito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feira Nova do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fernando Falcão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formosa da Serra Negra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fortaleza dos Nogueiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fortuna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Godofredo Viana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gonçalves Dias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Archer' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Edison Lobão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Eugênio Barros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Luiz Rocha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Newton Bello' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Nunes Freire' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Graça Aranha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Grajaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guimarães' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Humberto de Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Icatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igarapé do Meio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igarapé Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imperatriz' AS nome_cidade, 99 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaipava do Grajaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapecuru Mirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itinga do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jatobá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jenipapo dos Vieiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Lisboa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joselândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Junco do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lago da Pedra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lago do Junco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lago Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa do Mato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lago dos Rodrigues' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Grande do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajeado Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lima Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Loreto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luís Domingues' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Magalhães de Almeida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maracaçumé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marajá do Sena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maranhãozinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mata Roma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matões do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Milagres do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miranda do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirinzal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monção' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montes Altos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nina Rodrigues' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Colinas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Iorque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Olinda do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olho d''Água das Cunhãs' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olinda Nova do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paço do Lumiar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeirândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraibano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parnarama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passagem Franca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pastos Bons' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulino Neves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulo Ramos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedreiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro do Rosário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Penalva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peri Mirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peritoró' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pindaré-Mirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinheiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pio XII' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirapemas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poção de Pedras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Franco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Rico do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Dutra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Juscelino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Médici' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Sarney' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Vargas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Primeira Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Raposa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribamar Fiquene' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rosário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sambaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Filomena do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Helena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Inês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia do Paruá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Quitéria do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Amaro do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio dos Lopes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Benedito do Rio Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bernardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos do Azeitão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Félix de Balsas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Brejão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João Batista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Carú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Soter' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João dos Patos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José de Ribamar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José dos Basílios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luís' AS nome_cidade, 98 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luís Gonzaga do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Mateus do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro da Água Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro dos Crentes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Raimundo das Mangabeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Raimundo do Doca Bezerra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Roberto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Vicente Ferrer' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Satubinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Alexandre Costa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador La Rocque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serrano do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sítio Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sucupira do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sucupira do Riachão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tasso Fragoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timbiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timon' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trizidela do Vale' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tufilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tuntum' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turiaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tutóia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urbano Santos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Nova dos Martírios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitória do Mearim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitorino Freire' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Zé Doca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Maranhão'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acorizal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Boa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alta Floresta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Garças' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Paraguai' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Taquari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apiacás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguaiana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguainha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araputanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arenápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aripuanã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barão de Melgaço' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Bugres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Garças' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasnorte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cáceres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campinápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Novo do Parecis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos de Júlio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canabrava do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canarana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carlinda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castanheira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapada dos Guimarães' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cláudia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cocalinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colíder' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colniza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Comodoro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Confresa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conquista D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cotriguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cuiabá' AS nome_cidade, 65 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curvelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Denise' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diamantino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Aquino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feliz Natal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Figueirópolis D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gaúcha do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'General Carneiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Glória D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarantã do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guiratinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indiavaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipiranga do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itanhangá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itiquira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaciara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jangada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jauru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juína' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juruena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juscimeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lambari D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lucas do Rio Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luciara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Bela da Santíssima Trindade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marcelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matupá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirassol D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nobres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nortelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora do Livramento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Bandeirantes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Nazaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Lacerda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Santa Helena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Brasilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Canaã do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Mutum' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Olímpia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Ubiratã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Xavantina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Mundo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Horizonte do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo São Joaquim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranaíta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranatinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Santo Antônio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Preta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peixoto de Azevedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planalto da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poconé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pontal do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponte Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pontes e Lacerda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Alegre do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto dos Gaúchos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Esperidião' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Estrela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poxoréo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Primavera do Leste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Querência' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José dos Quatro Marcos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Reserva do Cabaçal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Cascalheira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirãozinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Carmem' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Afonso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Povo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Rio Claro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Xingu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro da Cipa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rondolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rondonópolis' AS nome_cidade, 66 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rosário Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz do Xingu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto do Céu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita do Trivelato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Terezinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Leste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Leverger' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Félix do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapezal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Nova Dourada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sinop' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sorriso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabaporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tangará da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapurah' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Nova do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tesouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Torixoréu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'União do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vale de São Domingos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Rica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Guarita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Marilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Maringá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Monte Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Clara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alcinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amambai' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anastácio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anaurilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angélica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio João' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aparecida do Taboado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aquidauana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aral Moreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bandeirantes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bataguassu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Batayporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bodoquena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caarapó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caracol' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cassilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapadão do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corguinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Sapucaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corumbá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Costa Rica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coxim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Deodápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dois Irmãos do Buriti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Douradina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dourados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eldorado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fátima do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Figueirão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Glória de Dourados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guia Lopes da Laguna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguatemi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inocência' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaquiraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ivinhema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japorã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaraguari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jateí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ladário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laguna Carapã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maracaju' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miranda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mundo Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Naviraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nioaque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Alvorada do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Andradina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Horizonte do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Gomes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponta Porã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Murtinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribas do Rio Pardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Brilhante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Negro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Verde de Mato Grosso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rochedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita do Pardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gabriel do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sete Quedas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Selvíria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sidrolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sonora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tacuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquarussu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terenos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Lagoas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vicentina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Mato Grosso do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abadia dos Dourados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abaeté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abre Campo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acaiaca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Açucena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Boa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Comprida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aguanil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas Formosas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas Vermelhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aimorés' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aiuruoca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alagoa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Albertina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Além Paraíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alfenas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alfredo Vasconcelos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Almenara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alpercata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alpinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alterosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Caparaó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Rio Doce' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvarenga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvorada de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amparo do Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Andradas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira de Pajeú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Andrelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Carlos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Dias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Prado de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araçaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aracitaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araçuaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arantina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araponga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arapuá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araújos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araxá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arceburgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arcos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Argirita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aricanduva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arinos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Astolfo Dutra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ataléia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Augusto de Lima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baependi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baldim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bambuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bandeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bandeira do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barão de Cocais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barão de Monte Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barbacena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra Longa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barroso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Vista de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belmiro Braga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belo Horizonte' AS nome_cidade, 31 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belo Oriente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belo Vale' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Berilo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bertópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Berizal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Betim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bias Fortes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bicas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Biquinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Esperança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bocaina de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bocaiúva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Despacho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jardim de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus da Penha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Amparo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Galho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Repouso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Sucesso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonfim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonfinópolis de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonito de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Borda da Mata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Botelhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Botumirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasilândia de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasília de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brás Pires' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Braúnas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brumadinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bueno Brandão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buenópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bugre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buritis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buritizeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabeceira Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabo Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira da Prata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira Dourada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caetanópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caeté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caiana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajuri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caldas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camacho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camanducaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cambuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cambuquira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campanário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campanha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campestre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campina Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Belo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo do Meio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Florido' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Altos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Gerais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canaã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cana Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Candeias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cantagalo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caparaó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capela Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capelinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capetinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capim Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capitão Andrade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capitão Enéas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capitólio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caputira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caranaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carandaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carangola' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caratinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carbonita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Careaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carlos Chagas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmésia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmo da Cachoeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmo da Mata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmo de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmo do Cajuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmo do Paranaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmo do Rio Claro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmópolis de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carneirinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carrancas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carvalhópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carvalhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Casa Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cascalho Rico' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cássia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição da Barra de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cataguases' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catas Altas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catas Altas da Noruega' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catuji' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catuti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caxambu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cedro do Abaeté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Central de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Centralina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chácara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chalé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapada do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapada Gaúcha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chiador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cipotânea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Claraval' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Claro dos Poções' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cláudio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coimbra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coluna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Comendador Gomes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Comercinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição da Aparecida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição das Pedras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição das Alagoas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição de Ipanema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Mato Dentro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Rio Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição dos Ouros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cônego Marinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Confins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Congonhal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Congonhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Congonhas do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conquista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conselheiro Lafaiete' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conselheiro Pena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Consolação' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Contagem' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coqueiral' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coração de Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cordisburgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cordislândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corinto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coroaci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coromandel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Fabriciano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Murta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Pacheco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Xavier Chaves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Córrego Danta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Córrego do Bom Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Córrego Fundo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Córrego Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Couto de Magalhães de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Crisólita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristália' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristiano Otoni' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Crucilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzeiro da Fortaleza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzília' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cuparaque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curral de Dentro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curvelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Datas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Delfim Moreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Delfinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Delta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Descoberto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Desterro de Entre Rios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Desterro do Melo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diamantina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diogo de Vasconcelos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dionísio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divinésia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divino das Laranjeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divinolândia de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divinópolis' AS nome_cidade, 37 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divisa Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divisa Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divisópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Bosco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Cavati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Joaquim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Silvério' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Viçoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dona Eusébia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dores de Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dores de Guanhães' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dores do Indaiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dores do Turvo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Doresópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Douradoquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Durandé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Elói Mendes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Engenheiro Caldas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Engenheiro Navarro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Entre Folhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Entre Rios de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ervália' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esmeraldas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espera Feliz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espinosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espírito Santo do Dourado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estiva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela Dalva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela do Indaiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eugenópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ewbank da Câmara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Extrema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Faria Lemos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Felício dos Santos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Rio Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Felisburgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Felixlândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fernandes Tourinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ferros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fervedouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Florestal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formiga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fortaleza de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fortuna de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Badaró' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Dumont' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Sá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Franciscópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frei Gaspar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frei Inocêncio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frei Lagonegro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fronteira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fronteira dos Vales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fruta de Leite' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frutal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Funilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Galiléia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gameleiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Glaucilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goiabeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goianá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gonçalves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gonzaga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gouveia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Valadares' AS nome_cidade, 33 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Grão Mogol' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Grupiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guanhães' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guapé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraciaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraciama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaranésia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarani' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarda-Mor' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaxupé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guidoval' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guimarânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guiricema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gurinhatã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Heliodora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iapu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibertioga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiracatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiraci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirité' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibitiúra de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibituruna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Icaraí de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igarapé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igaratinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguatama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ijaci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilicínea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imbé de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inconfidentes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indaiabira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ingaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inhapim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inhaúma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inimutaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipanema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipatinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipiaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipuiúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iraí de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabirito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itacambira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itacarambi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaguara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaipé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itajubá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itamarandiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itamarati de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itambacuri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itambé do Mato Dentro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itamogi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itamonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itanhandu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itanhomi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaobim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapagipe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapecerica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapeva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itatiaiuçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaú de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaverava' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itueta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ituiutaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itumirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iturama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itutinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaboticatubas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacinto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacutinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaraçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jampruca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Janaúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Januária' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japaraíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japonvar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jeceaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jenipapo de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jequeri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jequitaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jequitibá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jequitinhonha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jesuânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joaíma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joanésia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Monlevade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Pinheiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joaquim Felício' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jordânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'José Gonçalves de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'José Raydan' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Josenópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova União' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juiz de Fora' AS nome_cidade, 32 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juramento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juruaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juvenília' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ladainha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagamar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa da Prata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa dos Patos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Dourada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Formosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Santa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lambari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lamim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laranjal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lassance' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lavras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Leandro Ferreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Leme do Prado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Leopoldina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Liberdade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lima Duarte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Limeira do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lontra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luisburgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luislândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luminárias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Machacalis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Machado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Madre de Deus de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Malacacheta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mamonas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manhuaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manhumirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mantena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maravilhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mar de Espanha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maria da Fé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mariana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marilac' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mário Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maripá de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marliéria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marmelópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Martinho Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Martins Soares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mata Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Materlândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mateus Leme' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matias Barbosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matias Cardoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matipó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mato Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matozinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matutina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Medeiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Medina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mendes Pimentel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mercês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mesquita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Minas Novas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Minduri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirabela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miradouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miravânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moeda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monjolos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monsenhor Paulo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montalvânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alegre de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Belo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Carmelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Formoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Santo de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montes Claros' AS nome_cidade, 38 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Sião' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montezuma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morada Nova de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro da Garça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro do Pilar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Munhoz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muriaé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mutum' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muzambinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nacip Raydan' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nanuque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Naque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Natalândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Natércia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazareno' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nepomuceno' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ninheira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Belém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Era' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Lima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Módica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Ponte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Porteirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Resende' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Serrana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Cruzeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Oriente de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novorizonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olaria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olhos-d''Água' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olímpio Noronha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oliveira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oliveira Fortes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Onça de Pitangui' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oratórios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Orizânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Fino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Verde de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Padre Carvalho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Padre Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paineiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pains' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pai Pedro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paiva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Papagaios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paracatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pará de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraisópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraopeba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passabém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passa Quatro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passa Tempo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passa-Vinte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Patis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Patos de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Patrocínio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Patrocínio do Muriaé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paula Cândido' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulistas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pavão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peçanha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Bonita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra do Anta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra do Indaiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Dourada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedralva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedras de Maria da Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedrinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Leopoldo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Teixeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pequeri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pequi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Perdigão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Perdizes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Perdões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Periquito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pescador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piau' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piedade de Caratinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piedade de Ponte Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piedade do Rio Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piedade dos Gerais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pimenta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pingo-d''Água' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pintópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piracema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirajuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piranguçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piranguinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirapetinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirapora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piraúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pitangui' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piumhi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planura' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poço Fundo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poços de Caldas' AS nome_cidade, 35 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pocrane' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pompéu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponte Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponto Chique' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponto dos Volantes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porteirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Firme' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pouso Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pouso Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pratápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pratinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Bernardes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Juscelino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Kubitschek' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Olegário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Jequitibá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prudente de Morais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quartel Geral' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Queluzito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Raposos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Raul Soares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Recreio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Reduto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Resende Costa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Resplendor' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ressaquinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riacho dos Machados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão das Neves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Vermelho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Acima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Casca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Doce' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio do Prado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Espera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Manso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Paranaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Pardo de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Piracicaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Pomba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Vermelho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ritápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rochedo de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rodeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Romaria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rosário da Limeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rubelita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rubim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sabará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sabinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sacramento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salinas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto da Divisa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara do Leste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara do Monte Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara do Tugúrio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz de Salinas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz do Escalvado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Efigênia de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Fé de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Helena de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Juliana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Margarida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria de Itabira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria do Salto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria do Suaçuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana da Vargem' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana de Cataguases' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana de Pirapama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Deserto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Garambéu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Jacaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Manhuaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Riacho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana dos Montes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita de Caldas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita de Jacutinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita de Ibitipoca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita do Itueto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita do Sapucaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Vitória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Amparo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Aventureiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Grama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Itambé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Jacinto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Monte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Retiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Rio Abaixo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Hipólito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santos Dumont' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento Abade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Brás do Suaçuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos das Dores' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos do Prata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Félix de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco de Paula' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco de Sales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Glória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Geraldo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Geraldo da Piedade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Geraldo do Baixio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Abaeté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Rio Abaixo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Sapucaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gotardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João Batista do Glória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Lagoa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Mata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Ponte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João del Rei' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Manhuaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Manteninha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Oriente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Pacuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João Evangelista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João Nepomuceno' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Joaquim de Bicas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Barra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Lapa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Safira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Varginha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Divino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Goiabal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Jacuri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Mantimento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Lourenço' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Anta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro da União' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro dos Ferros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro do Suaçuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Romão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Roque de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião da Bela Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião da Vargem Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Anta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Maranhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Rio Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Rio Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Tiago' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Tomás de Aquino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Thomé das Letras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Vicente de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapucaí-Mirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sardoá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sarzedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Setubinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sem-Peixe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Amaral' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Cortes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Firmino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador José Bento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Modestino Gonçalves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senhora de Oliveira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senhora do Porto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senhora dos Remédios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sericita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Seritinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Azul de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra da Saudade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra dos Aimorés' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra do Salitre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serrania' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serranópolis de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serranos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sete Lagoas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Silveirânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Silvianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Simão Pereira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Simonésia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sobrália' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Soledade de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabuleiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taiobeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taparuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapiraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquaraçu de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tarumirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teixeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teófilo Otoni' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timóteo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tiradentes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tocos do Moji' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Toledo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tombos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Corações' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Marias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Pontas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tumiritinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupaciguara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turmalina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turvolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubaporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uberaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uberlândia' AS nome_cidade, 34 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Umburatiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Unaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'União de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruana de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urucânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urucuia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem Bonita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem Grande do Rio Pardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Varginha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Varjão de Minas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea da Palma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Varzelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vazante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Verdelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Veredinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Veríssimo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vermelho Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vespasiano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viçosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vieiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mathias Lobato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Virgem da Lapa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Virgínia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Virginópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Virgolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Visconde do Rio Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Volta Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Wenceslau Braz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Minas Gerais'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abaetetuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abel Figueiredo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Afuá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Azul do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alenquer' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Almeirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altamira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anajás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ananindeua' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anapu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Augusto Corrêa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aurora do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aveiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bagre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baião' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bannach' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barcarena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belterra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Benevides' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bragança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasil Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo Grande do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Breu Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Breves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bujaru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira do Piriá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira do Arari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cametá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canaã dos Carajás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capanema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capitão Poço' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castanhal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chaves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Concórdia do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cumaru do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curionópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curralinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curuá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curuçá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Eliseu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eldorado dos Carajás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Faro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floresta do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Garrafão do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goianésia do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gurupá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igarapé-Açu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igarapé-Miri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inhangapi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipixuna do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irituia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itupiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacareacanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacundá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juruti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Limoeiro do Ajuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mãe do Rio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Magalhães Barata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marabá' AS nome_cidade, 94 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maracanã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marapanim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Medicilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Melgaço' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mocajuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moju' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muaná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Esperança do Piriá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Ipixuna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Timboteua' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Progresso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Repartimento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Óbidos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oeiras do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oriximiná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ourém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ourilândia do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pacajá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palestina do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paragominas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parauapebas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pau D''Arco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peixe-Boi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piçarra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Placas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponta de Pedras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Portel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto de Moz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prainha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Primavera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quatipuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Redenção' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Maria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rondon do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rurópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salvaterra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz do Arari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Isabel do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria das Barreiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santarém' AS nome_cidade, 93 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santarém Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Tauá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Caetano de Odivelas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos do Capim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Félix do Xingu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Geraldo do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Ponta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João de Pirabas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Guamá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião da Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapucaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador José Porfírio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Soure' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tailândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Alta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Santa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tomé-Açu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tracuateua' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trairão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tucumã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tucuruí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ulianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vigia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viseu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitória do Xingu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xinguara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pará'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aguiar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alagoa Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alagoa Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alagoinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alcantil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Algodão de Jandaíra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alhandra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Rio do Peixe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amparo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aparecida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araçagi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araruna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areia de Baraúnas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areial' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aroeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Assunção' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baía da Traição' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bananeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baraúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra de Santana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra de Santa Rosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra de São Miguel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bayeux' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belém do Brejo do Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bernardino Batista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Ventura' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Sucesso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonito de Santa Fé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boqueirão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igaracy' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Borborema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo do Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo dos Santos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caaporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabaceiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabedelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira dos Índios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cacimba de Areia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cacimba de Dentro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cacimbas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caiçara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajazeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajazeirinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caldas Brandão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camalaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campina Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caraúbas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carrapateira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Casserengue' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catingueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catolé do Rocha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caturité' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Condado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Congo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coremas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coxixola' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruz do Espírito Santo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cubati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cuité' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cuitegi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cuité de Mamanguape' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curral de Cima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curral Velho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Damião' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Desterro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vista Serrana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diamante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dona Inês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Duas Estradas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Emas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esperança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fagundes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frei Martinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gado Bravo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarabira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gurinhém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gurjão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imaculada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ingá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabaiana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapororoca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacaraú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jericó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Pessoa' AS nome_cidade, 83 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juarez Távora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juazeirinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Junco do Seridó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juripiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa de Dentro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Seca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lastro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Livramento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Logradouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lucena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mãe d''Água' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Malta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mamanguape' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manaíra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marcação' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marizópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Massaranduba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mataraca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mato Grosso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maturéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mogeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montadas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Horebe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monteiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mulungu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Natuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazarezinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Floresta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Olinda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Palmeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olho d''Água' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olivedos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Velho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passagem' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Patos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Lavrada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedras de Fogo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piancó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Picuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pilar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pilões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pilõezinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirpirituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pitimbu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pocinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poço Dantas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poço de José de Moura' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pombal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Princesa Isabel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Puxinanã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Queimadas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quixabá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Remígio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Régis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachão do Bacamarte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachão do Poço' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riacho de Santo Antônio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riacho dos Cavalos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Tinto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salgadinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salgado de São Félix' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cecília' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Helena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Inês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana de Mangueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana dos Garrotes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santarém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Teresinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo André' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bentinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos do Cariri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Cariri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Tigre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Lagoa Tapada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José de Caiana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José de Espinharas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José dos Ramos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José de Piranhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José de Princesa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Bonfim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Brejo do Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Sabugi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José dos Cordeiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Mamede' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel de Taipu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião de Lagoa de Roça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Umbuzeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Seridó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra da Raiz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Redonda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serraria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sertãozinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sobrado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Solânea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Soledade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sossêgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sousa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sumé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo de Santana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taperoá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tavares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teixeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tenório' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Triunfo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uiraúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Umbuzeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vieirópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Zabelê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraíba'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abatiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Adrianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Agudos do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Almirante Tamandaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altamira do Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altônia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Piquiri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvorada do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amaporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ampére' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anahy' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Andirá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ângulo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antonina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Olinto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apucarana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arapongas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arapoti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araruna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araucária' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ariranha do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Assaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Assis Chateaubriand' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Astorga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Atalaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balsa Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bandeirantes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barbosa Ferraz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barracão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Jacaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Vista da Caroba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Vista do Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bituruna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Esperança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Esperança do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Ventura de São Roque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista da Aparecida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bocaiúva do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Sucesso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Sucesso do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Borrazópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Braganey' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasilândia do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cafeara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cafelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cafezal do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Califórnia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cambará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cambé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cambira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campina da Lagoa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campina do Simão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campina Grande do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo do Tenente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Largo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Magro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Mourão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cândido de Abreu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Candói' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cantagalo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capanema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capitão Leônidas Marques' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carambeí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carlópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cascavel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catanduvas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Centenário do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerro Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Céu Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chopinzinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cianorte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cidade Gaúcha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Clevelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colombo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colorado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Congonhinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conselheiro Mairinck' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Contenda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corbélia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cornélio Procópio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Domingos Soares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Vivida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corumbataí do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzeiro do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzeiro do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzeiro do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruz Machado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzmaltina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curitiba' AS nome_cidade, 41 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curiúva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diamante do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diamante do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diamante D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dois Vizinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Douradina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Doutor Camargo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Enéas Marques' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Engenheiro Beltrão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esperança Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Entre Rios do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espigão Alto do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Farol' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Faxinal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fazenda Rio Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fênix' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fernandes Pinheiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Figueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flor da Serra do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floresta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Florestópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flórida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formosa do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Foz do Iguaçu' AS nome_cidade, 45 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Beltrão' AS nome_cidade, 46 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Foz do Jordão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'General Carneiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Godoy Moreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goioerê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goioxim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Grandes Rios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaíra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guairaçá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guamiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guapirama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaporema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraniaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarapuava' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraqueçaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaratuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Honório Serpa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibaiti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Icaraíma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguaraçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imbaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imbituva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inácio Martins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inajá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iracema do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iretama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaguajé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaipulândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itambaracá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itambé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapejara d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaperuçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaúna do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ivaiporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ivaté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ivatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaboti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacarezinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguapitã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguariaíva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jandaia do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Janiópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japurá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardim Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardim Olinda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jataizinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jesuítas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joaquim Távora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jundiaí do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juranda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jussara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Kaloré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lapa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laranjal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laranjeiras do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Leópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lidianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lindoeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Loanda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lobato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Londrina' AS nome_cidade, 43 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luiziana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lunardelli' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lupionópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mallet' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mamborê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mandaguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mandaguari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mandirituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manfrinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mangueirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manoel Ribas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marechal Cândido Rondon' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maria Helena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marialva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marilândia do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marilena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mariluz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maringá' AS nome_cidade, 44 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mariópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maripá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marmeleiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marquinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marumbi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mato Rico' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mauá da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Medianeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mercedes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miraselva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Missal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moreira Sales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morretes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Munhoz de Melo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora das Graças' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Aliança do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova América da Colina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Aurora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Cantu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Esperança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Esperança do Sudoeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Fátima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Laranjeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Londrina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Olímpia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Santa Bárbara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Santa Rosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Prata do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Tebas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Itacolomi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ortigueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ourizona' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Verde do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paiçandu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmital' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palotina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraíso do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranacity' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranaguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranapoema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranavaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pato Bragado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pato Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paula Freitas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulo Frontin' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peabiru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Perobal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pérola' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pérola d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piên' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhalão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhal de São Bento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piraí do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piraquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pitanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pitangueiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planaltina do Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planalto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponta Grossa' AS nome_cidade, 42 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pontal do Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porecatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Amazonas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Barreiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Rico' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Vitória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prado Ferreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pranchita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Castelo Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Primeiro de Maio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prudentópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quarto Centenário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quatiguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quatro Barras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quatro Pontes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quedas do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Querência do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quinta do Sol' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quitandinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ramilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rancho Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rancho Alegre D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Realeza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rebouças' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Renascença' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Reserva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Reserva do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Claro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão do Pinhal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Bom' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Bonito do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Branco do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Branco do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Negro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Roncador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rondon' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rosário do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sabáudia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salgado Filho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto do Itararé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto do Lontra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Amélia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cecília do Pavão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz de Monte Castelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Fé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Helena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Inês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Isabel do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Izabel do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Lúcia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Mariana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Mônica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Itararé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Tereza do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Terezinha de Itaipu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio da Platina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Caiuá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Sudoeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Inácio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Carlos do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Jerônimo da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Caiuá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Triunfo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Jorge d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Jorge do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Jorge do Patrocínio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José das Palmeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José dos Pinhais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Manoel do Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Mateus do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro do Ivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro do Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião da Amoreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Tomé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapopema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sarandi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saudade do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sengés' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serranópolis do Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sertaneja' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sertanópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Siqueira Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sulina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tamarana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tamboara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapejara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teixeira Soares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Telêmaco Borba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Boa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Rica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Roxa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tibagi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tijucas do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Toledo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tomazina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Barras do Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tunas do Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tuneiras do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupãssi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turvo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubiratã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Umuarama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'União da Vitória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uniflor' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Wenceslau Braz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ventania' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vera Cruz do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Verê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Doutor Ulysses' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Virmond' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitorino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xambrê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Paraná'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abreu e Lima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Afogados da Ingazeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Afrânio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Agrestina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Preta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas Belas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alagoinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aliança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amaraji' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angelim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araçoiaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araripina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arcoverde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra de Guabiraba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barreiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belém de Maria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belém do São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belo Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Betânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bezerros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bodocó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Conselho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo da Madre de Deus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buenos Aires' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buíque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabo de Santo Agostinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabrobó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caetés' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Calçado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Calumbi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camaragibe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camocim de São Félix' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camutanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canhotinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capoeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carnaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carnaubeira da Penha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carpina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caruaru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Casinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catende' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cedro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chã de Alegria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chã Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Condado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Correntes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cortês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cumaru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cupira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Custódia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dormentes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Escada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Exu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feira Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fernando de Noronha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ferreiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flores' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floresta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frei Miguelinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gameleira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Garanhuns' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Glória do Goitá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goiana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Granito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gravatá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibimirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirajuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igarassu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguaraci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inajá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ingazeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipojuca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipubi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itacuruba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilha de Itamaracá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itambé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapetim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapissuma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaquitinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaboatão dos Guararapes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaqueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jataúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jatobá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Alfredo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joaquim Nabuco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jucati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jupi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jurema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa do Carro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'LAGOA DE ITAENGA' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa do Ouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa dos Gatos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Limoeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macaparana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Machados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maraial' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirandiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moreno' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazaré da Mata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olinda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Orobó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Orocó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouricuri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeirina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Panelas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranatama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parnamirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paudalho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pesqueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Petrolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Petrolina' AS nome_cidade, 87 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poção' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pombos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Primavera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quipapá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quixaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Recife' AS nome_cidade, 81 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riacho das Almas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Formoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sairé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salgadinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salgueiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saloá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sanharó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz da Baixa Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz do Capibaribe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Filomena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria da Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria do Cambucá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Terezinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Benedito do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento do Una' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Caetano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Joaquim do Monte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Coroa Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Belmonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Egito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Lourenço da Mata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Vicente Ferrer' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Talhada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serrita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sertânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sirinhaém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moreilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Solidão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Surubim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tacaimbó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tacaratu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tamandaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquaritinga do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terezinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timbaúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Toritama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tracunhaém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trindade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Triunfo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupanatinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tuparetama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Venturosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Verdejante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vertente do Lério' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vertentes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vicência' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitória de Santo Antão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xexéu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Pernambuco'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acauã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Agricolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alagoinha do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alegrete do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Longá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvorada do Gurguéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amarante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angical do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anísio de Abreu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Almeida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aroazes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aroeiras do Itaim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arraial' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Assunção do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Avelino Lopes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baixa Grande do Ribeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra D''Alcântara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barreiras do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barro Duro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Batalha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Vista do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belém do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Beneditinos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bertolínia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Betânia do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Hora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bocaina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Princípio do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonfim do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boqueirão do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasileira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buriti dos Lopes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buriti dos Montes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabeceiras do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajazeiras do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajueiro da Praia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caldeirão Grande do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campinas do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Alegre do Fidalgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Grande do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Largo do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Maior' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canavieira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canto do Buriti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capitão de Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capitão Gervásio Oliveira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caracol' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caraúbas do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caridade do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castelo do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caxingó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cocal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cocal de Telha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cocal dos Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coivaras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colônia do Gurguéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colônia do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Canindé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel José Dias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corrente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristalândia do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristino Castro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curimatá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Currais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curralinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curral Novo do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Demerval Lobão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dirceu Arcoverde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Expedito Lopes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Domingos Mourão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Inocêncio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Elesbão Veloso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eliseu Martins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esperantina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fartura do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flores do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floresta do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floriano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Ayres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Macedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Santos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fronteiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Geminiano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gilbués' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guadalupe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaribas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Hugo Napoleão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilha Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inhuma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipiranga do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Isaías Coelho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itainópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacobina do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaicós' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardim do Mulato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jatobá do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jerumenha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Costa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joaquim Pires' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joca Marques' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'José de Freitas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juazeiro do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Júlio Borges' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jurema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoinha do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa do Barro do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa de São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa do Sítio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Landri Sales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luís Correia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luzilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Madeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manoel Emídio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marcolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marcos Parente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Massapê do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matias Olímpio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miguel Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miguel Leão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Milton Brandão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monsenhor Gil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monsenhor Hipólito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alegre do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro Cabeça no Tempo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro do Chapéu do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Murici dos Portelas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazaré do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazária' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora de Nazaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora dos Remédios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Oriente do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Santo Antônio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olho D''Água do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Padre Marcos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paes Landim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pajeú do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeira do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeirais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paquetá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parnaguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parnaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passagem Franca do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Patos do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pau D''Arco do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulistana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pavussu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro II' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Laurentino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Santa Rita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Picos' AS nome_cidade, 89 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pimenteiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pio IX' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piracuruca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piripiri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Alegre do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Prata do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Queimada Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Redenção do Gurguéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Regeneração' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riacho Frio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeira do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeiro Gonçalves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Grande do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz dos Milagres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Filomena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio de Lisboa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio dos Milagres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Inácio do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Braz do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Félix do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco de Assis do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Gurguéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Canabrava' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Fronteira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Varjota' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Arraial' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Divino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Peixe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Julião' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Lourenço do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luis do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel da Baixa Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Fidalgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Tapuio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Raimundo Nonato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sebastião Barros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sebastião Leal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sigefredo Pacheco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Simões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Simplício Mendes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Socorro do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sussuapara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tamboril do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tanque do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teresina' AS nome_cidade, 86 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'União' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruçuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Valença do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vera Mendes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Nova do Piauí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Wall Ferraz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Piauí'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angra dos Reis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aperibé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araruama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Armação dos Búzios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arraial do Cabo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Piraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra Mansa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belford Roxo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Itabapoana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabo Frio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeiras de Macacu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cambuci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carapebus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Comendador Levy Gasparian' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos dos Goytacazes' AS nome_cidade, 22 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cantagalo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cardoso Moreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Casimiro de Abreu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição de Macabu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cordeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Duas Barras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Duque de Caxias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Engenheiro Paulo de Frontin' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guapimirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguaba Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaboraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaguaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Italva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaocara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaperuna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itatiaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japeri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laje do Muriaé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macaé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macuco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Magé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mangaratiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maricá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mendes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mesquita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miguel Pereira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miracema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Natividade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nilópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Niterói' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Friburgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Iguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paracambi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraíba do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraty' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paty do Alferes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Petrópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinheiral' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porciúncula' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Real' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quatis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Queimados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quissamã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Resende' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Claro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio das Flores' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio das Ostras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio de Janeiro' AS nome_cidade, 21 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria Madalena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio de Pádua' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco de Itabapoana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Fidélis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Barra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João de Meriti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José de Ubá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Vale do Rio Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro da Aldeia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapucaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saquarema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Seropédica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Silva Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sumidouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tanguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teresópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trajano de Moraes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Rios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Valença' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Varre-Sai' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vassouras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Volta Redonda' AS nome_cidade, 24 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio de Janeiro'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Acari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Açu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Afonso Bezerra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alexandria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Almino Afonso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto do Rodrigues' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angicos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Martins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apodi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areia Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Augusto Severo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baía Formosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Baraúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barcelona' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bento Fernandes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bodó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caiçara do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caiçara do Rio do Vento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caicó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Redondo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canguaretama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caraúbas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carnaúba dos Dantas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carnaubais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ceará-Mirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerro Corá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Ezequiel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel João Pessoa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzeta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Currais Novos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Doutor Severiano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parnamirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Encanto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Equador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espírito Santo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Extremoz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Felipe Guerra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fernando Pedroza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Florânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Dantas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frutuoso Gomes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Galinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goianinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Dix-Sept Rosado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Grossos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guamaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ielmo Marinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipanguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itajá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaçanã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jandaíra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Janduís' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Januário Cicco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardim de Angicos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardim de Piranhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardim do Seridó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Câmara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Dias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'José da Penha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jucurutu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jundiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa d''Anta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa de Pedras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa de Velhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Salgada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajes Pintadas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lucrécia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luís Gomes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macau' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Major Sales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marcelino Vieira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Martins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maxaranguape' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Messias Targino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montanhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte das Gameleiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mossoró' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Natal' AS nome_cidade, 84 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nísia Floresta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olho-d''Água do Borges' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parazinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parelhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio do Fogo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passa e Fica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passagem' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Patu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pau dos Ferros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Preta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Avelino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Velho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pendências' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pilões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poço Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Portalegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto do Mangue' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Juscelino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pureza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rafael Fernandes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rafael Godeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riacho da Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riacho de Santana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachuelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rodolfo Fernandes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tibau' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ruy Barbosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Matos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do Seridó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento do Trairí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Fernando' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gonçalo do Amarante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Sabugi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José de Mipibu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Campestre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Seridó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Gostoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Paulo do Potengi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Rafael' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Tomé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Vicente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Elói de Souza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Georgino Avelino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra de São Bento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra do Mel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Negra do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serrinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serrinha dos Pintos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Severiano Melo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sítio Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taboleiro Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taipu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tangará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tenente Ananias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tenente Laurentino Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tibau do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timbaúba dos Batistas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Touros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Triunfo Potiguar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Umarizal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Upanema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Venha-Ver' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vera Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viçosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Flor' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Norte'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aceguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Santa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Agudo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ajuricaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alecrim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alegrete' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alegria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Almirante Tamandaré do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alpestre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Feliz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvorada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amaral Ferrador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ametista do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'André da Rocha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anta Gorda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Prado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arambaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araricá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aratiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arroio do Meio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arroio do Sal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arroio do Padre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arroio dos Ratos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arroio do Tigre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arroio Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arvorezinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Augusto Pestana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Áurea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bagé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balneário Pinhal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barão de Cotegipe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barão do Triunfo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barracão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Guarita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Quaraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Ribeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Rio Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra Funda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barros Cassal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Benjamin Constant do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bento Gonçalves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista do Buricá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista do Cadeado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista do Incra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Princípio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Progresso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Retiro do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boqueirão do Leão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bossoroca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bozano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Braga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brochier' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Butiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caçapava do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cacequi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cacique Doble' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caibaté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caiçara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camaquã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camargo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cambará do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campestre da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campina das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campinas do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Bom' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Borges' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Candelária' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cândido Godói' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Candiota' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canguçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canoas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canudos do Vale' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capão Bonito do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capão da Canoa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capão do Cipó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capão do Leão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capivari do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capela de Santana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capitão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carazinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caraá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carlos Barbosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carlos Gomes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Casca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caseiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catuípe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caxias do Sul' AS nome_cidade, 54 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Centenário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerrito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerro Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerro Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerro Grande do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerro Largo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Charqueadas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Charrua' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chiapetta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chuvisca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cidreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ciríaco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colinas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colorado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Condor' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Constantina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coqueiro Baixo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coqueiros do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Barros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Bicaco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Pilar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cotiporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coxilha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Crissiumal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristal do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruz Alta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzaltense' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzeiro do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'David Canabarro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Derrubadas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dezesseis de Novembro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dilermando de Aguiar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dois Irmãos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dois Irmãos das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dois Lajeados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Feliciano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Pedro de Alcântara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dom Pedrito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dona Francisca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Doutor Maurício Cardoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Doutor Ricardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eldorado do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Encantado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Encruzilhada do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Engenho Velho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Entre-Ijuís' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Entre Rios do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Erebango' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Erechim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ernestina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Herval' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Erval Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Erval Seco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esmeralda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esperança do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espumoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estação' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estância Velha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esteio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela Velha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eugênio de Castro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fagundes Varela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Farroupilha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Faxinal do Soturno' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Faxinalzinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fazenda Vilanova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feliz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flores da Cunha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floriano Peixoto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fontoura Xavier' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formigueiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Forquetinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fortaleza dos Valos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frederico Westphalen' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Garibaldi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Garruchos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gaurama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'General Câmara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gentil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Getúlio Vargas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Giruá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Glorinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gramado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gramado dos Loureiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gramado Xavier' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gravataí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guabiju' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaporé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarani das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Harmonia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Herveiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Horizontina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Hulha Negra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Humaitá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibarama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiaçá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiraiaras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirapuitã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirubá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igrejinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ijuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imbé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imigrante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Independência' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inhacorá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipiranga do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itacurubi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapuca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaqui' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itatiba do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ivorá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ivoti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaboticaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacuizinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacutinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguarão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaquirana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jóia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Júlio de Castilhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Bonita do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa dos Três Cantos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa Vermelha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajeado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajeado do Bugre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lavras do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Liberato Salzano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lindolfo Collor' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Linha Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Machadinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maçambará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mampituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manoel Viana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maquiné' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maratá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marau' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marcelino Ramos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mariana Pimentel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mariano Moro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marques de Souza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mato Castelhano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mato Leitão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mato Queimado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maximiliano de Almeida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Minas do Leão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miraguaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montauri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alegre dos Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Belo do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Montenegro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mormaço' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morrinhos do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro Redondo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro Reuter' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mostardas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muçum' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muitos Capões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muliterno' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Não-Me-Toque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nicolau Vergueiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nonoai' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Alvorada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Araçá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Bassano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Bréscia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Candelária' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Esperança do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Hartz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Pádua' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Palma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Petrópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Prata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Ramada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Roma do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Santa Rita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Cabrais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Hamburgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Machado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Tiradentes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Xingu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Barreiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Osório' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paim Filho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmares do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeira das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmitinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Panambi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pantano Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraíso do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pareci Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parobé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passa Sete' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passo do Sobrado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passo Fundo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulo Bento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paverama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedras Altas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Osório' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pejuçara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pelotas' AS nome_cidade, 53 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Picada Café' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhal da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhal Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinheirinho do Vale' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinheiro Machado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirapó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piratini' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planalto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poço das Antas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pontão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponte Preta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Portão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Alegre' AS nome_cidade, 51 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Lucena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Mauá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Vera Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Xavier' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pouso Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Lucena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Progresso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Protásio Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Putinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quaraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quatro Irmãos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quevedos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quinze de Novembro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Redentora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Relvado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Restinga Seca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio dos Índios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Pardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riozinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Roca Sales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rodeio Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rolador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rolante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ronda Alta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rondinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Roque Gonzales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rosário do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sagrada Família' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saldanha Marinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto do Jacuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salvador das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salvador do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sananduva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cecília do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Clara do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria' AS nome_cidade, 55 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria do Herval' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Margarida do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana da Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sant''Ana do Livramento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Tereza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Vitória do Palmar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santiago' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Ângelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Palma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio da Patrulha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Planalto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Augusto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Cristo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Expedito do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Borja' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco de Assis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco de Paula' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Gabriel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Jerônimo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Urtiga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Polêsine' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Jorge' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Herval' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Hortêncio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Inhacorá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Ouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José dos Ausentes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Leopoldo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Lourenço do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luiz Gonzaga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Marcos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Martinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Martinho da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Nicolau' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Paulo das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro do Butiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Caí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sepé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Valentim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Valentim do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Valério do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Vendelino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Vicente do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sapucaia do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sarandi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Seberi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sede Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Segredo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Selbach' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Senador Salgado Filho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sentinela do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serafina Corrêa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sério' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sertão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sertão Santana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sete de Setembro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Severiano de Almeida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Silveira Martins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sinimbu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sobradinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Soledade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapejara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapera' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquaruçu do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tavares' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tenente Portela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra de Areia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teutônia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tio Hugo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tiradentes do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Toropi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Torres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tramandaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Travesseiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Arroios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Cachoeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Coroas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três de Maio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Forquilhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Palmeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Passos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trindade do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Triunfo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tucunduva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tunas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupanci do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupanciretã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupandi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tuparendi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turuçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubiretama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'União da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Unistalda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uruguaiana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vacaria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vale Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vale do Sol' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vale Real' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vanini' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Venâncio Aires' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vera Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Veranópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vespasiano Correa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viadutos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viamão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vicente Dutra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Victor Graeff' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Flores' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Lângaro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Maria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vila Nova do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vista Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vista Alegre do Prata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vista Gaúcha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitória das Missões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Westfalia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xangri-lá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rio Grande do Sul'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alta Floresta D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ariquemes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabixi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cacoal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerejeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colorado do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corumbiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Costa Marques' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espigão D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guajará-Mirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ji-Paraná' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Machadinho D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Brasilândia D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Preto do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pimenta Bueno' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Velho' AS nome_cidade, 69 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Médici' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Crespo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rolim de Moura' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vilhena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Guaporé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Mamoré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvorada D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Alegre dos Parecis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buritis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Horizonte do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cacaulândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Novo de Rondônia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Candeias do Jamari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castanheiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chupinguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cujubim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Jorge Teixeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapuã do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ministro Andreazza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirante da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Negro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova União' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parecis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pimenteiras do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Primavera de Rondônia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Felipe D''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Guaporé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Seringueiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teixeirópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Theobroma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urupá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vale do Anari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vale do Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Rondônia'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amajari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Vista' AS nome_cidade, 95 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bonfim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cantá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caracaraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caroebe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iracema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mucajaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Normandia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pacaraima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rorainópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Baliza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luiz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uiramutã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Roraima'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abdon Batista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abelardo Luz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Agrolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Agronômica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Água Doce' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas de Chapecó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas Frias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas Mornas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alfredo Wagner' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Bela Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anchieta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angelina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anita Garibaldi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anitápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Antônio Carlos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apiúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arabutã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araquari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araranguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Armazém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arroio Trinta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arvoredo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ascurra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Atalanta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aurora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balneário Arroio do Silva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balneário Camboriú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balneário Barra do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balneário Gaivota' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bandeirante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra Bonita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra Velha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bela Vista do Toldo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Belmonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Benedito Novo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Biguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Blumenau' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bocaina do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bombinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jardim da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Retiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Botuverá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Braço do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Braço do Trombudo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brunópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brusque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caçador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caibi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Calmon' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Camboriú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capão Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Belo do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Erê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Novos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canelinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canoinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capinzal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capivari de Baixo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catanduvas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caxambu do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Celso Ramos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerro Negro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapadão do Lageado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapecó' AS nome_cidade, 49 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cocal do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Concórdia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cordilheira Alta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Freitas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Martins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corupá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Correia Pinto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Criciúma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cunha Porã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cunhataí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Curitibanos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Descanso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dionísio Cerqueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dona Emma' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Doutor Pedrinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Entre Rios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ermo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Erval Velho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Faxinal dos Guedes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flor do Sertão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Florianópolis' AS nome_cidade, 48 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formosa do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Forquilhinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fraiburgo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frei Rogério' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Galvão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Garopaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Garuva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gaspar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Governador Celso Ramos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Grão Pará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gravatal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guabiruba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraciaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaramirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarujá do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guatambú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Herval d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiam' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibicaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Içara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilhota' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imaruí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imbituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Imbuia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indaial' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iomerê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iporã do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipuaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipumirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iraceminha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irani' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irineópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaiópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itajaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapoá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ituporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaborá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacinto Machado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguaruna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaraguá do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joaçaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joinville' AS nome_cidade, 47 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'José Boiteux' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jupiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lacerdópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lages' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laguna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajeado Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laurentino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lauro Muller' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lebon Régis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Leoberto Leal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lindóia do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lontras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luiz Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luzerna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macieira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mafra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Major Gercino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Major Vieira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maracajá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maravilha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Massaranduba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matos Costa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Meleiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirim Doce' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Modelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mondaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Carlo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Castelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro da Fumaça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Navegantes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Erechim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Itaberaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Trento' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Veneza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Horizonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Orleans' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Otacílio Costa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paial' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Painel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palhoça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palma Sola' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmitos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Papanduva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passo de Torres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Passos Maia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulo Lopes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedras Grandes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Penha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peritiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Petrolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balneário Piçarras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhalzinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinheiro Preto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piratuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planalto Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pomerode' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponte Alta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponte Alta do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponte Serrada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Belo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto União' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pouso Redondo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Praia Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Castello Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Getúlio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Nereu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Princesa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quilombo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rancho Queimado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio das Antas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio do Campo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio dos Cedros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Fortuna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Negrinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Rufino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riqueza' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rodeio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Romelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salete' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saltinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto Veloso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sangão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cecília' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Helena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa de Lima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Terezinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Terezinha do Progresso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santiago do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Amaro da Imperatriz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bernardino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bonifácio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Carlos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Cristovão do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João Batista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Itaperiú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Joaquim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Cedro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Cerrito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Lourenço do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Ludgero' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Martinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel da Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro de Alcântara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saudades' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Schroeder' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Seara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Alta' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Siderópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sombrio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sul Brasil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taió' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tangará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tigrinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tijucas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timbé do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timbó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timbó Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Barras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Treviso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Treze de Maio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Treze Tílias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trombudo Central' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tubarão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tunápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turvo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'União do Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urubici' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urupema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urussanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargeão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem Bonita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vidal Ramos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Videira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitor Meireles' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Witmarsum' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xanxerê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xavantina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xaxim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Zortéa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Santa Catarina'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Adamantina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Adolfo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aguaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas da Prata' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas de Lindóia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas de Santa Bárbara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Águas de São Pedro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Agudos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alambari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alfredo Marcondes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altair' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Altinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alto Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alumínio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Álvares Florence' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Álvares Machado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Álvaro de Carvalho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvinlândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Americana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Américo Brasiliense' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Américo de Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amparo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Analândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Andradina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anhembi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Anhumas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aparecida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aparecida d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Apiaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araçariguama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araçatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araçoiaba da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aramina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arandu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arapeí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araraquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arco-Íris' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arealva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areiópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ariranha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Artur Nogueira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arujá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aspásia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Assis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Atibaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Auriflama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Avaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Avanhandava' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Avaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bady Bassitt' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Balbinos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bálsamo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bananal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barão de Antonina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barbosa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bariri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra Bonita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Chapéu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Turvo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barretos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barrinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barueri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bastos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Batatais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bauru' AS nome_cidade, 14 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bebedouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bento de Abreu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bernardino de Campos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bertioga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bilac' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Birigui' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Biritiba-Mirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boa Esperança do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bocaina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bofete' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boituva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus dos Perdões' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Sucesso de Itararé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Borá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boracéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Borborema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Borebi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Botucatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bragança Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Braúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brodowski' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brotas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buritama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buritizal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabrália Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cabreúva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caçapava' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeira Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caconde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cafelândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caiabu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caieiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caiuá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajamar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajati' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajobi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cajuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campina do Monte Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campinas' AS nome_cidade, 19 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo Limpo Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos do Jordão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Novos Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cananéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cândido Mota' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cândido Rodrigues' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canitar' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capão Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capela do Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capivari' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caraguatatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carapicuíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cardoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Casa Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cássia dos Coqueiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Castilho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catanduva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Catiguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cedral' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerqueira César' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cerquilho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cesário Lange' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Charqueada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Clementina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colômbia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conchal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conchas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cordeirópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coroados' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Coronel Macedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Corumbataí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cosmópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cosmorama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cotia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cravinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristais Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzália' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cruzeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cubatão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cunha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Descalvado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Diadema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dirce Reis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divinolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dobrada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dois Córregos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dolcinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dourado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dracena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Duartina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dumont' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Echaporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Eldorado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Elias Fausto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Elisiário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Embaúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Embu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Embu-Guaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Emilianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Engenheiro Coelho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espírito Santo do Pinhal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Espírito Santo do Turvo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estrela do Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Euclides da Cunha Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fartura' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fernandópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fernando Prestes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fernão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ferraz de Vasconcelos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flora Rica' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Floreal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Flórida Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Florínia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Franca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Francisco Morato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Franco da Rocha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gabriel Monteiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gália' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Garça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gastão Vidigal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gavião Peixoto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'General Salgado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Getulina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Glicério' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaiçara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaimbê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaíra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guapiaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guapiara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraçaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarani d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarantã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guararapes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guararema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaratinguetá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guareí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guariba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarujá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guarulhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guatapará' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guzolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Herculândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Holambra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Hortolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iacanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iacri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iaras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibaté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibirarema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibitinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ibiúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Icém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iepê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igaraçu do Tietê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igarapava' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Igaratá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iguape' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilhabela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilha Comprida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilha Solteira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indaiatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indiana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indiaporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Inúbia Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipaussu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iperó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipeúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipiguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Iracemápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Irapuru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaberá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itajobi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaju' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itanhaém' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaóca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapecerica da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapetininga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapeva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapevi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapirapuã Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapura' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaquaquecetuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itararé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itariri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itatiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itatinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itirapina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itirapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itobi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itupeva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ituverava' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaborandi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaboticabal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacareí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jacupiranga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaguariúna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jambeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jandira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jardinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jarinu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jeriquara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Joanópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'João Ramalho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'José Bonifácio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Júlio Mesquita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jumirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jundiaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Junqueirópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juquiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juquitiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laranjal Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lavínia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lavrinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Leme' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lençóis Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Limeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lindóia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lorena' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lourdes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Louveira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lucélia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lucianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luís Antônio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luiziânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lupércio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lutécia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macaubal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macedônia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Magda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mairinque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mairiporã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Manduri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marabá Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maracaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marapoama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mariápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marília' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Martinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Matão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mauá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mendonça' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Meridiano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mesópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miguelópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mineiros do Tietê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miracatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mira Estrela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirandópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirante do Paranapanema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirassol' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mirassolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mococa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mogi das Cruzes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mogi Guaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moji Mirim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mombuca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monções' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mongaguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alegre do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Aprazível' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Azul Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Castelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monteiro Lobato' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Mor' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morro Agudo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Morungaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Motuca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Murutinga do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nantes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Narandiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Natividade da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazaré Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Neves Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nhandeara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nipoã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Aliança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Campina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Canaã Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Castilho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Europa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Granada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Guataporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Independência' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novais' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Luzitânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Odessa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Horizonte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nuporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ocauçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Óleo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Olímpia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Onda Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oriente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Orindiúva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Orlândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Osasco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oscar Bressane' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Osvaldo Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ourinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouroeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ouro Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pacaembu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palestina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmares Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeira d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmital' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Panorama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraguaçu Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraibuna' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranapanema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pardinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pariquera-Açu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Parisi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Patrocínio Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulicéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulínia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulistânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paulo de Faria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pederneiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Bela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedranópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedregulho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedrinhas Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro de Toledo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Penápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pereira Barreto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pereiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peruíbe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piacatu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piedade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pilar do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pindamonhangaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pindorama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhalzinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piquerobi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piquete' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piracaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piracicaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piraju' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirajuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirangi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirapora do Bom Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirapozinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirassununga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piratininga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pitangueiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Planalto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Platina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poloni' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pompéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pongaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pontal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pontalinda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pontes Gestal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Populina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porangaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Feliz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Ferreira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Potim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Potirendaba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pracinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pradópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Praia Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pratânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Alves' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Bernardes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Epitácio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Prudente' AS nome_cidade, 18 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Venceslau' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Promissão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quadra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quatá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Queiroz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Queluz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Quintana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rafard' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rancharia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Redenção da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Regente Feijó' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Reginópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Registro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Restinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Branco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Corrente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão dos Índios' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Pires' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirão Preto' AS nome_cidade, 16 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riversul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rifaina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rincão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Claro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio das Pedras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Grande da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rosana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Roseira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rubiácea' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rubinéia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sabino' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sagres' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sales' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sales Oliveira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salesópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salmourão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Saltinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto de Pirapora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salto Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sandovalina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Adélia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Albertina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Bárbara d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Clara d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz da Conceição' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz da Esperança' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz das Palmeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Cruz do Rio Pardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Ernestina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Fé do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Gertrudes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Isabel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Lúcia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Mercedes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana da Ponte Pensa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana de Parnaíba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita d''Oeste' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita do Passa Quatro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa de Viterbo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Salete' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Anastácio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo André' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio da Alegria' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio de Posse' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Aracanguá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Antônio do Pinhal' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Expedito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santópolis do Aguapeí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santos' AS nome_cidade, 13 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento do Sapucaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bernardo do Campo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Caetano do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Carlos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João da Boa Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João das Duas Pontes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João de Iracema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São João do Pau d''Alho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Joaquim da Barra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José da Bela Vista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Barreiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Rio Pardo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José do Rio Preto' AS nome_cidade, 17 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São José dos Campos' AS nome_cidade, 12 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Lourenço da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Luís do Paraitinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Manuel' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel Arcanjo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Paulo' AS nome_cidade, 11 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Pedro do Turvo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Roque' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião da Grama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Simão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Vicente' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sarapuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sarutaiá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sebastianópolis do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Azul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serrana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Serra Negra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sertãozinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sete Barras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Severínia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Silveiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Socorro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sorocaba' AS nome_cidade, 15 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sud Mennucci' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sumaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Suzano' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Suzanápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabapuã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tabatinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taboão da Serra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taciba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taguaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taiaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taiúva' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tambaú' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tanabi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapiraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tapiratiba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquaral' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquaritinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquarituba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taquarivaí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tarabai' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tarumã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tatuí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taubaté' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tejupá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Teodoro Sampaio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Terra Roxa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tietê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Timburi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Torre de Pedra' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Torrinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Trabiju' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tremembé' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Três Fronteiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tuiuti' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupi Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turiúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Turmalina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubarana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ubirajara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uchoa' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'União Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urânia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Uru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Urupês' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Valentim Gentil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Valinhos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Valparaíso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem Grande do Sul' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vargem Grande Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Várzea Paulista' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vera Cruz' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vinhedo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Viradouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vista Alegre do Alto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Vitória Brasil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Votorantim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Votuporanga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Zacarias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chavantes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estiva Gerbi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'São Paulo'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Amparo de São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aquidabã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aracaju' AS nome_cidade, 79 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arauá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Areia Branca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra dos Coqueiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Boquim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejo Grande' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campo do Brito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canhoba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Canindé de São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Capela' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cedro de São João' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristinápolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cumbe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divina Pastora' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Estância' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Feira Nova' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Frei Paulo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gararu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'General Maynard' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gracho Cardoso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ilha das Flores' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Indiaroba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabaiana' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabaianinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itabi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaporanga d''Ajuda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japaratuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Japoatã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagarto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Laranjeiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Macambira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Malhada dos Bois' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Malhador' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maruim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Moita Bonita' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Alegre de Sergipe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muribeca' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Neópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora Aparecida' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora da Glória' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora das Dores' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora de Lourdes' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nossa Senhora do Socorro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pacatuba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedra Mole' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedrinhas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pinhão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pirambu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poço Redondo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Poço Verde' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto da Folha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Propriá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachão do Dantas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachuelo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ribeirópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rosário do Catete' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Salgado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Luzia do Itanhy' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santana do São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa de Lima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santo Amaro das Brotas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Cristóvão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Domingos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Francisco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Aleixo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Simão Dias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Siriri' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Telha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tobias Barreto' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tomar do Geru' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Umbaúba' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Sergipe'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Abreulândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aguiarnópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aliança do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Almas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Alvorada' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ananás' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Angico' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aparecida do Rio Negro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aragominas' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguacema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguaçu' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguaína' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguanã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Araguatins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arapoema' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Arraias' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Augustinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Aurora do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Axixá do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Babaçulândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bandeirantes do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barra do Ouro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Barrolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bernardo Sayão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Bom Jesus do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brasilândia do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Brejinho de Nazaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Buriti do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cachoeirinha' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Campos Lindos' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cariri do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carmolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Carrasco Bonito' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Caseara' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Centenário' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapada de Areia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Chapada da Natividade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colinas do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Combinado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Conceição do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Couto Magalhães' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Cristalândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Crixás do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Darcinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dianópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Divinópolis do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dois Irmãos do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Dueré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Esperantina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fátima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Figueirópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Filadélfia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Formoso do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Fortaleza do Tabocão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goianorte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Goiatins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Guaraí' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Gurupi' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ipueiras' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itacajá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaguatins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itapiratins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Itaporã do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Jaú do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Juarina' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa da Confusão' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lagoa do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lajeado' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lavandeira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Lizarda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Luzinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Marianópolis do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Mateiros' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Maurilândia do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miracema do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Miranorte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte do Carmo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Monte Santo do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeiras do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Muricilândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Natividade' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nazaré' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Olinda' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Nova Rosalândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Acordo' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Alegre' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Novo Jardim' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Oliveira de Fátima' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeirante' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmeirópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paraíso do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Paranã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pau D''Arco' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pedro Afonso' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Peixe' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pequizeiro' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Colméia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pindorama do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Piraquê' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pium' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponte Alta do Bom Jesus' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Ponte Alta do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Alegre do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Porto Nacional' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Praia Norte' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Presidente Kennedy' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Pugmil' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Recursolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Riachinho' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio da Conceição' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio dos Bois' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Rio Sono' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sampaio' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sandolândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Fé do Araguaia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Maria do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rita do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Rosa do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Tereza do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Santa Terezinha do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Bento do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Félix do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Miguel do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Salvador do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Sebastião do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'São Valério' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Silvanópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sítio Novo do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Sucupira' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taguatinga' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Taipas do Tocantins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Talismã' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Palmas' AS nome_cidade, 63 AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tocantínia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tocantinópolis' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupirama' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Tupiratins' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Wanderlândia' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; INSERT INTO basico_localizacao.assoc_municipio (id_estado, id_categoria, nome, codigo_ddd, rowinfo) SELECT e.id, (SELECT c.id AS id_categoria FROM basico.tipo_categoria t LEFT join basico.categoria c ON (t.id = c.id_tipo_categoria) WHERE t.nome = 'LOCALIDADE' AND c.nome = 'LOCALIDADE_ESTADO_MUNICIPIO') as id_categoria, 'Xambioá' AS nome_cidade, NULL AS codigo_ddd, 'SYSTEM_STARTUP' AS rowinfo FROM basico_localizacao.pais p LEFT JOIN basico_localizacao.assoc_estado e ON (e.id_pais = p.id) WHERE p.constante_textual = 'NOME_PAIS_BRASIL' AND e.nome = 'Tocantins'; -- fim municipios brasil
true
a42cf5a55d8352abab343e383722894da12cd777
SQL
gsiems/tasker-schema
/schema/tasker/view/dv_task_comment_tree.sql
UTF-8
1,367
3.859375
4
[ "MIT" ]
permissive
SET search_path = tasker, pg_catalog ; CREATE VIEW dv_task_comment_tree AS WITH RECURSIVE toc AS ( SELECT p.id, '{}'::int [ ] AS parents, p.parent_id, 0 AS comment_depth, array [ dense_rank () OVER ( PARTITION BY p.task_id ORDER BY p.id ) ] AS outln, ARRAY[p.id] AS comment_path FROM tasker.dt_task_comment p WHERE ( p.parent_id IS NULL ) UNION ALL SELECT s.id, parents || s.parent_id, s.parent_id, ( q.comment_depth + 1 ) AS comment_depth, ( q.outln || dense_rank () OVER ( PARTITION BY s.task_id, s.parent_id ORDER BY s.id ) ), q.comment_path || s.id FROM tasker.dt_task_comment s JOIN toc q ON ( s.parent_id = q.id AND NOT s.id = any ( q.parents ) ) ) SELECT id AS comment_id, parents, parent_id, comment_depth, comment_path, array_to_string ( outln, '.'::text ) AS comment_outln FROM toc ; ALTER TABLE dv_task_comment_tree OWNER TO tasker_owner ; COMMENT ON VIEW dv_task_comment_tree IS 'Table of contents view for task comments.' ; REVOKE ALL ON TABLE dv_task_comment_tree FROM public ; GRANT SELECT ON table dv_task_comment_tree TO tasker_owner ;
true
85bd0b233e15f02b5bcb5594b5d6aaac56bd3028
SQL
datlmd/datlm
/fuel/modules/articles/install/articles_install.sql
UTF-8
2,639
3.203125
3
[ "Apache-2.0" ]
permissive
# Dump of table articles # ------------------------------------------------------------ CREATE TABLE `articles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `language` varchar(30) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'english', `content` text COLLATE utf8_unicode_ci NOT NULL, `content_filtered` text COLLATE utf8_unicode_ci NOT NULL, `formatting` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `excerpt` text COLLATE utf8_unicode_ci NOT NULL COMMENT 'A condensed version of the content', `slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '' COMMENT 'This is the last part of the url string. If left blank, the slug will automatically be created for you.', `author_id` int(10) unsigned NOT NULL COMMENT 'If left blank, you will assumed be the author.', `video` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `main_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `list_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `thumbnail_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `sticky` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no', `allow_comments` enum('yes','no') COLLATE utf8_unicode_ci DEFAULT 'no', `publish_date` datetime NOT NULL, `page_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `meta_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `meta_keywords` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `canonical` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `og_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `og_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `og_image` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', `category_id` int(10) unsigned NOT NULL, `date_added` datetime DEFAULT NULL, `last_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `published` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'yes', `resource` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `resource_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `permalink` (`slug`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; INSERT INTO `fuel_permissions` (`id`, `description`, `name`, `active`) VALUES (NULL, 'News', 'news', 'yes'), (NULL, 'News: Create', 'news/create', 'yes'), (NULL, 'News: Delete', 'news/delete', 'yes'), (NULL, 'News: Edit', 'news/edit', 'yes'), (NULL, 'News: Publish', 'news/publish', 'yes');
true
02904206aabd7684314bb22b5d3f5af770eb5cf6
SQL
TrabelsiHoussem/twistingMachine
/base de données/user.sql
UTF-8
1,447
3.09375
3
[ "MIT" ]
permissive
-- phpMyAdmin SQL Dump -- version 3.5.4 -- http://www.phpmyadmin.net -- -- Client: localhost -- Généré le: Mar 04 Juin 2019 à 00:03 -- Version du serveur: 5.5.28-log -- Version de PHP: 5.4.9 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Base de données: `db_torsadage` -- -- -------------------------------------------------------- -- -- Structure de la table `user` -- CREATE TABLE IF NOT EXISTS `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nom` varchar(35) NOT NULL, `prenom` varchar(35) NOT NULL, `password` varchar(35) NOT NULL, `email` varchar(35) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `email` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ; -- -- Contenu de la table `user` -- INSERT INTO `user` (`id`, `nom`, `prenom`, `password`, `email`) VALUES (1, 'amiche', 'sirine', '123456', 'sirine@gmail.com'), (2, 'fatma', 'ali', '000000', 'fatma@gmail.com'), (4, 'bouguila', 'amna', '654321', 'amna@gmail.com'), (6, 'el haj ayech', 'mariem', '112233', 'mariem@gmail'); /*!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 */;
true
5aa910fbef59b8691a153505fe462ffb43a50982
SQL
evrimulgen/Oracle-DBA-Life
/INFO/Books Codes/Oracle9i High-Performance Tuning with STATSPACK/rpt_sga_summary.sql
UTF-8
346
2.8125
3
[ "MIT" ]
permissive
column chg_bytes format 999,999,999 column min_bytes format 999,999,999 column max_bytes format 999,999,999 column name format a25 select name, min(bytes) min_bytes, max(bytes) max_bytes, max(bytes)-min(bytes) chg_bytes from stats$sgastat_summary having min(bytes) < max(bytes) group by name ;
true
96219612201e76730b23c9d1641e9de43055da36
SQL
ghard1053/sql-st
/sql_st1/st2.sql
UTF-8
2,712
3.9375
4
[]
no_license
-- Window select shohin_id, shohin_nama, hanbai_price, avg (hanbai_price) over (order by shohin_id rows between 2 preceding and current row) as moving_avg from Shohin; select shohin_id, shohin_nama, hanbai_price, avg (hanbai_price) over w as moving_avg from Shohin window w as (order by shohin_id rows between 2 preceding and current row); select shohin_id, shohin_nama, hanbai_price, avg(hanbai_price) over w as moving_avg, sum(hanbai_price) over w as moving_sum, count(hanbai_price) over w as moving_count, max(hanbai_price) over w as moving_max from Shohin window w as (order by shohin_id rows between 2 preceding and current row); select sample_date as cur_date, min(sample_date) over (order by sample_date asc rows between 1 preceding and 1 preceding) as latest_date from LoadSample; select sample_date as cur_date, load_val as cur_load, min(sample_date) over (order by sample_date asc rows between 1 preceding and 1 preceding) as latest_date, min(load_val) over (order by sample_date asc rows between 1 preceding and 1 preceding) as latest_load from LoadSample; select sample_date as cur_date, load_val as cur_load, min(sample_date) over w as latest_date, min(load_val) over w as latest_load from LoadSample window w as (order by sample_date asc rows between 1 preceding and 1 preceding); select sample_date as cur_date, load_val as cur_load, min(sample_date) over w as next_date, min(load_val) over w as next_load from LoadSample window w as (order by sample_date asc rows between 1 following and 1 following); select sample_date as cur_date, load_val as cur_load, min(sample_date) over (order by sample_date asc range between interval '1' day preceding and interval '1' day preceding ) as day1_before, min(load_val) over (order by sample_date asc range between interval '1' day preceding and interval '1' day preceding ) as load_day1_before from LoadSample; select sample_date as cur_date, min(sample_date) over (order by sample_date asc rows between 1 preceding and 1 preceding) as latest_1, min(sample_date) over (order by sample_date asc rows between 2 preceding and 2 preceding) as latest_2, min(sample_date) over (order by sample_date asc rows between 3 preceding and 3 preceding) as latest_3 from LoadSample;
true
58d53a01b4d2371358779fea5923711163ae26ed
SQL
allash/blog-pcb
/blog.sql
UTF-8
6,299
3.21875
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 3.5.1 -- http://www.phpmyadmin.net -- -- Хост: 127.0.0.1 -- Время создания: Янв 14 2013 г., 20:14 -- Версия сервера: 5.5.25 -- Версия PHP: 5.3.13 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- База данных: `blog` -- -- -------------------------------------------------------- -- -- Структура таблицы `article` -- CREATE TABLE IF NOT EXISTS `article` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `article` text NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `author` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ; -- -- Дамп данных таблицы `article` -- INSERT INTO `article` (`id`, `title`, `article`, `date`, `author`) VALUES (1, 'Новая статья', 'ПРосто тест', '2010-10-09 21:00:00', 'Borya'), (2, 'ещё одна статья', 'Ещё одна мега статья', '0000-00-00 00:00:00', 'Ашот'), (3, 'Как устроены переменные в PHP tutorial', 'Вроде простой вопрос, даже не понятно что на него ответить, правда?\r\nМы все знаем как создать переменную, как получить значение переменной, как взять ссылку на переменную в конце концов.\r\nНо как они работают изнутри?\r\nЧто происходит в интерпретаторе, когда вы изменяете значение переменной? Или когда удаляете ее?\r\nКак реализованы типы переменных?\r\n\r\nВ этой статье я постараюсь раскрыть именно эти темы.\r\n\r\nAbstract\r\n\r\nПеременные в PHP выражены в виде неких контейнеров, которые хранят в себе тип переменной, значение, кол-во ссылающихся переменных на этот контейнер, и флаг — является ли эта переменная ссылочной.', '2000-12-31 22:00:00', 'Гена'), (4, 'dasd', 'asdasd', '0000-00-00 00:00:00', 'asd'), (5, 'dasd', 'asdasdasd', '0000-00-00 00:00:00', 'dzirt.do.uweeeerdenn@gmail.com'), (6, 'asdasd', 'asdasdasdasd', '2012-12-20 09:47:28', 'dzirt.do.uweeeerdenn@gmail.com'), (7, 'adad', 'adadrrr', '2012-12-22 21:03:11', 'ararata@mail.ru'), (9, 'Новая статья просто', 'Простая статья', '2012-12-29 18:12:03', 'ararata@mail.ru'), (10, 'Это очень новая статья', 'Исходников нет. А если у кого и есть - вряд ли поделится. В любом случае полезней писать самому.\r\nА идеи - составить ТЗ, нарисовать дизайн, продумать структуру проекта и реализовать все это, разбивая глобальную задачу на более мелкие.Исходников нет. А если у кого и есть - вряд ли поделится. В любом случае полезней писать самому.\r\nА идеи - составить ТЗ, нарисовать дизайн, продумать структуру проекта и реализовать все это, разбивая глобальную задачу на более мелкие.', '2012-12-29 21:07:27', 'allashp@mail.com'), (11, 'Новая статья 88', 'Сегодня мы будем заниматься постпроцессингом изображения в DirectX.\r\n\r\nКак известно, в темноте зрение человека обеспечивается клетками-палочками сетчатки, высокая световая чувствительность которых достигается за счет потери цветочувствительности и остроты зрения (хотя палочек в сетчатке и больше, они распределены по гораздо большей площади, так что суммарное «разрешение» выходит меньше).\r\n\r\nВсе эти эффекты можно наблюдать самому, оторвавшись от компьютера и выйдя ночью на улицу.', '2013-01-13 06:44:24', 'ararata@mail.ru'), (12, 'best', 'best page', '2013-01-14 08:08:23', 'avatar@test.com'); -- -------------------------------------------------------- -- -- Структура таблицы `user` -- CREATE TABLE IF NOT EXISTS `user` ( `pk_user` int(10) unsigned NOT NULL AUTO_INCREMENT, `role` varchar(255) NOT NULL, `dtime_registration` int(10) unsigned NOT NULL, `login` varchar(30) NOT NULL, `password` varchar(32) NOT NULL, `email` varchar(50) NOT NULL, `activation` varchar(255) DEFAULT NULL, `activation_status` int(2) DEFAULT NULL, PRIMARY KEY (`pk_user`), UNIQUE KEY `login` (`login`), UNIQUE KEY `email` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=32 ; -- -- Дамп данных таблицы `user` -- INSERT INTO `user` (`pk_user`, `role`, `dtime_registration`, `login`, `password`, `email`, `activation`, `activation_status`) VALUES (24, '', 1357735165, 'admin11111', 'f6fdffe48c908deb0f4c3bd36c032e72', 'admin@admin.ua', NULL, NULL), (27, 'admin', 101, 'Adert', '93279e3308bdbbeed946fc965017f67a', 'eamail@va.ru', NULL, NULL), (28, 'admin', 1357916439, 'asdss', 'a8f5f167f44f4964e6c998dee827110c', 'admin@admin1.uaasd', NULL, NULL), (29, '1', 1358070018, 'admin', 'f6fdffe48c908deb0f4c3bd36c032e72', 'admin@adm.ua', NULL, NULL), (30, 'admin', 1357735165, 'rambo', '25f9e794323b453885f5181f1b624d0b', 'rambo@example.com', NULL, NULL), (31, '', 1358150874, 'avatar', '25f9e794323b453885f5181f1b624d0b', 'avatar@test.com', NULL, NULL); /*!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 */;
true
654fe54a43c407f50a1e78d27d9c08e95d3eb779
SQL
appcentric/EIA
/utilities/sql/ebs/XXNUC_AR_POST_INVOICE_PKB.sql
UTF-8
3,640
3.046875
3
[]
no_license
/*=======================================================================+ | FILENAME XXNUC_AR_POST_INVOICE_PKB.sql | | | | Created By: Kumar.S | | Description: This program is used to populate the custom table after | | after the auto invoice programs completes. | | History | | Date :12-AUG-2013 | | | =======================================================================*/ CREATE OR REPLACE PACKAGE BODY XXNUC_AR_POST_INVOICE_PKG AS -- ======================================================================= -- Procedure Name: populate_attributes -- Usage: Call this conc procedure after the Auto invoice Process -- ======================================================================= PROCEDURE populate_attributes( p_error_buf OUT VARCHAR2 , p_ret_code OUT NUMBER )IS CURSOR stg_cur IS SELECT STG.ROWID ROW_ID, RCTL.INTERFACE_LINE_ATTRIBUTE1, RCTA.CUSTOMER_TRX_ID, RCTL.CUSTOMER_TRX_LINE_ID FROM XXNUC.XXNUC_AR_INV_LINE_ATTRIBUTES STG, RA_CUSTOMER_TRX RCTA, RA_CUSTOMER_TRX_LINES RCTL WHERE 1 = 1 AND NVL (STG.INTERFACE_LINE_ATTRIBUTE1, 'X') = NVL (RCTL.INTERFACE_LINE_ATTRIBUTE1, 'X') AND NVL (STG.INTERFACE_LINE_ATTRIBUTE2, 'X') = NVL (RCTL.INTERFACE_LINE_ATTRIBUTE2, 'X') AND NVL (STG.INTERFACE_LINE_ATTRIBUTE3, 'X') = NVL (RCTL.INTERFACE_LINE_ATTRIBUTE3, 'X') AND NVL (STG.INTERFACE_LINE_ATTRIBUTE4, 'X') = NVL (RCTL.INTERFACE_LINE_ATTRIBUTE4, 'X') AND NVL (STG.INTERFACE_LINE_ATTRIBUTE5, 'X') = NVL (RCTL.INTERFACE_LINE_ATTRIBUTE5, 'X') AND NVL (STG.INTERFACE_LINE_ATTRIBUTE6, 'X') = NVL (RCTL.INTERFACE_LINE_ATTRIBUTE6, 'X') AND NVL (STG.INTERFACE_LINE_ATTRIBUTE7, 'X') = NVL (RCTL.INTERFACE_LINE_ATTRIBUTE7, 'X') AND STG.INTERFACE_LINE_ATTRIBUTE1 = RCTA.TRX_NUMBER AND RCTA.CUSTOMER_TRX_ID = RCTL.CUSTOMER_TRX_ID AND STG.CUSTOMER_TRX_ID is null; TYPE fetch_array IS TABLE OF stg_cur%ROWTYPE; stg_array fetch_array; l_start_time date; l_end_time date; BEGIN l_start_time :=sysdate; OPEN stg_cur; LOOP FETCH stg_cur BULK COLLECT INTO stg_array LIMIT 1000; FORALL i IN 1..stg_array.COUNT UPDATE XXNUC.XXNUC_AR_INV_LINE_ATTRIBUTES SET CUSTOMER_TRX_ID = stg_array(i).CUSTOMER_TRX_ID ,CUSTOMER_TRX_LINE_ID = stg_array(i).CUSTOMER_TRX_LINE_ID WHERE ROWID = stg_array(i).ROW_ID; EXIT WHEN stg_cur%NOTFOUND; END LOOP; CLOSE stg_cur; COMMIT; l_end_time := sysdate; Fnd_File.PUT_LINE( Fnd_File.OUTPUT, '==========================================='); Fnd_File.PUT_LINE( Fnd_File.OUTPUT, 'Start Time = '|| to_char(l_end_time,'DD-MON-RRRR HH:MI:SS')); Fnd_File.PUT_LINE( Fnd_File.OUTPUT, 'End Time = '|| to_char(l_end_time,'DD-MON-RRRR HH:MI:SS')); Fnd_File.PUT_LINE( Fnd_File.OUTPUT, '==========================================='); EXCEPTION WHEN OTHERS THEN Fnd_File.PUT_LINE( Fnd_File.OUTPUT, '==========================================='); Fnd_File.PUT_LINE( Fnd_File.OUTPUT, 'Error: '|| sqlerrm ); Fnd_File.PUT_LINE( Fnd_File.OUTPUT, '==========================================='); END populate_attributes; END XXNUC_AR_POST_INVOICE_PKG; /
true
0218017f5f0c15e034baf5b6c54f18125b3c9ac9
SQL
mjx990227/luzan
/static/uploads/img/headImg_1570869742523043.train.sql
UTF-8
2,980
3.015625
3
[]
no_license
# Host: localhost (Version: 5.5.53) # Date: 2019-06-26 10:04:42 # Generator: MySQL-Front 5.3 (Build 4.234) /*!40101 SET NAMES utf8 */; # # Structure for table "book" # DROP TABLE IF EXISTS `book`; CREATE TABLE `book` ( `订单票号` varchar(15) NOT NULL DEFAULT '', `订票时间` date NOT NULL DEFAULT '0000-00-00', `订票数量` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`订单票号`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='订票单'; # # Data for table "book" # /*!40000 ALTER TABLE `book` DISABLE KEYS */; /*!40000 ALTER TABLE `book` ENABLE KEYS */; # # Structure for table "client" # DROP TABLE IF EXISTS `client`; CREATE TABLE `client` ( `客户编号` char(18) NOT NULL DEFAULT '' COMMENT '客户编号', `客户姓名` varchar(15) NOT NULL DEFAULT '', `证件类型` varchar(15) NOT NULL DEFAULT '', `客户类型` varchar(15) NOT NULL DEFAULT '', `联系电话` char(11) NOT NULL DEFAULT '', `支付方式` varchar(15) NOT NULL DEFAULT '微信', PRIMARY KEY (`客户编号`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='客户表'; # # Data for table "client" # /*!40000 ALTER TABLE `client` DISABLE KEYS */; /*!40000 ALTER TABLE `client` ENABLE KEYS */; # # Structure for table "refund" # DROP TABLE IF EXISTS `refund`; CREATE TABLE `refund` ( `订票单号` varchar(15) NOT NULL DEFAULT '', `订票时间` varchar(15) NOT NULL DEFAULT '', `订票数量` int(2) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`订票单号`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='退票单'; # # Data for table "refund" # /*!40000 ALTER TABLE `refund` DISABLE KEYS */; /*!40000 ALTER TABLE `refund` ENABLE KEYS */; # # Structure for table "save" # DROP TABLE IF EXISTS `save`; CREATE TABLE `save` ( `票存系统编号` varchar(15) NOT NULL DEFAULT '', `票存系统地址` varchar(15) NOT NULL DEFAULT '', `出入帐金额` char(6) NOT NULL DEFAULT '', `出入帐类型` char(10) NOT NULL DEFAULT '', `记录时间` date NOT NULL DEFAULT '0000-00-00', PRIMARY KEY (`票存系统编号`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='存票表'; # # Data for table "save" # /*!40000 ALTER TABLE `save` DISABLE KEYS */; /*!40000 ALTER TABLE `save` ENABLE KEYS */; # # Structure for table "traincode" # DROP TABLE IF EXISTS `traincode`; CREATE TABLE `traincode` ( `车票编号` varchar(10) NOT NULL DEFAULT '', `车次` varchar(10) NOT NULL DEFAULT '', `出发站` varchar(10) NOT NULL DEFAULT '', `终点站` varchar(10) NOT NULL DEFAULT '', `票价` varchar(10) NOT NULL DEFAULT '', `出发时间` date NOT NULL DEFAULT '0000-00-00', `到站时间` date NOT NULL DEFAULT '0000-00-00', `座位信息` varchar(10) NOT NULL DEFAULT '', PRIMARY KEY (`车票编号`) COMMENT '车票表' ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='车票表'; # # Data for table "traincode" # /*!40000 ALTER TABLE `traincode` DISABLE KEYS */; /*!40000 ALTER TABLE `traincode` ENABLE KEYS */;
true
362d294f7a95e1a1775d6a71d2008ce541edf100
SQL
aishah21/hw-w05d02-todo
/db/seed.sql
UTF-8
729
3
3
[]
no_license
DROP DATABASE IF EXISTS todo_db; CREATE DATABASE todo_db; \c todo_db CREATE TABLE todo( id serial primary key, task varchar, kindofsupport varchar, building varchar ); INSERT INTO todo(task, kindofsupport, building) VALUES ( 'training other staff members on troubleshooting and diagnosing problems' , 'virtually','C1'), ( 'writing, editing, and revising training manuals for new and updated software and hardware' , 'remotely','binhomran'), ( 'following up with customers to ensure full resolution of issues' , 'remotely','binhomran'), ( 'installing or changing software to fix issues' , 'virtually','C1'), ( 'accessing hardware or software for clients to make changes and fix problems' , 'remotely','binhomran');
true
1a7728453ac5476f3ce4e05156984421219010ee
SQL
DpadamsX/DpadamsX
/types_plus_obsolete/analytic_work_v1/analytic_work_v1_cast.sql
UTF-8
1,738
3
3
[]
no_license
-- Create a casting function to convert analytic_work rows into the compound type format analytic_work_v1. -- If analytic_work changes, you can update the casting to handle the modification smoothly. CREATE OR REPLACE FUNCTION types_plus.analytic_work_to_v1 (analytic_work_in analytic_work) RETURNS analytic_work_v1 AS $BODY$ SELECT analytic_work_in.id, analytic_work_in.hsys_id, analytic_work_in.facility_id, analytic_work_in.inv_id, analytic_work_in.user_id, analytic_work_in.activity_id, analytic_work_in.assembly_id, analytic_work_in.q_event_id, analytic_work_in.scan_id, analytic_work_in.scase_id, analytic_work_in.scase_inv_id, analytic_work_in.sterilizer_load_id, analytic_work_in.sterilizer_loadinv_id, analytic_work_in.start_dts, analytic_work_in.end_dts, analytic_work_in.start_local_dts, analytic_work_in.end_local_dts, analytic_work_in.duration, analytic_work_in.missing_inst, analytic_work_in.num_inst, analytic_work_in.num_items, analytic_work_in.points, analytic_work_in.num_packs, analytic_work_in.num_trays, analytic_work_in.activity, analytic_work_in.description, analytic_work_in.marked_for_deletion $BODY$ LANGUAGE sql; ALTER FUNCTION types_plus.analytic_work_to_v1 (analytic_work_in analytic_work) OWNER TO user_bender; -- Create/recreate the CAST. Use this to convert analytic_work rows into the analytic_work_v1 compound type format using the following syntax: -- select analytic_work::analytic_work_v1 from analytic_work DROP CAST IF EXISTS (analytic_work as analytic_work_v1); CREATE CAST (analytic_work as analytic_work_v1) WITH FUNCTION types_plus.analytic_work_to_v1(analytic_work);
true
93bc6875a71224cab7ee3107e355a75a5c319274
SQL
dailyfatcat/IS211_Assignment10
/music.sql
UTF-8
792
3.75
4
[]
no_license
/******************************************************************************* Assignment Part 1 Music Database Modeling music artists, the albums they create and the songs that appear on those albums A set of relational tables that will sufficiently model what is described above. Submit a file named music.sql, with SQL CREATE queries that will create the tables with the proper schema of your model. ********************************************************************************/ CREATE TABLE artist ( id INTEGER PRIMARY KEY ASC, name CHAR(100), ); CREATE TABLE album ( id INTEGER PRIMARY KEY ASC, name CHAR(100), artist CHAR(100) ); CREATE TABLE song ( id INTEGER PRIMARY KEY ASC, name CHAR(100), track INTEGER, length INTEGER, album CHAR(100) );
true
05ca4f9cda6027eff9228890578dc72847828844
SQL
luisgustavogomes/SQL-Server-Management-Studio
/00_IDENTIFICA_TRIGGERS.sql
UTF-8
677
3.890625
4
[]
no_license
SELECT sysobjects.name AS trigger_name, USER_NAME(sysobjects.uid) AS trigger_owner, s.name AS table_schema, OBJECT_NAME(parent_obj) AS table_name, OBJECTPROPERTY(id, 'ExecIsUpdateTrigger') AS isUpdate, OBJECTPROPERTY(id, 'ExecIsDeleteTrigger') AS isDelete, OBJECTPROPERTY(id, 'ExecIsInsertTrigger') AS isInsert, OBJECTPROPERTY(id, 'ExecIsAfterTrigger') AS isAfter, OBJECTPROPERTY(id, 'ExecIsInsteadOfTrigger') AS isInsteadof, OBJECTPROPERTY(id, 'ExecIsTriggerDisabled') AS [disabled] FROM sysobjects INNER JOIN sys.tables t ON sysobjects.parent_obj = t.object_id INNER JOIN sys.schemas s ON t.schema_id = s.schema_id WHERE sysobjects.type = 'TR' ORDER BY trigger_name
true
0dd2327c4468bedc568d8b014e754fa46c394faa
SQL
ekayuliet/andioffset
/projekse_hris.sql
UTF-8
204,082
3.09375
3
[ "MIT" ]
permissive
-- phpMyAdmin SQL Dump -- version 4.9.5 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Waktu pembuatan: 09 Sep 2020 pada 21.13 -- Versi server: 5.7.31 -- Versi 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 */; -- -- Database: `projekse_hris` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `berita` -- CREATE TABLE `berita` ( `id` int(11) NOT NULL, `nip` varchar(25) NOT NULL, `nama_karyawan` varchar(255) NOT NULL, `tanggal_sekarang` date NOT NULL, `judul` varchar(255) NOT NULL, `keterangan` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `berita` -- INSERT INTO `berita` (`id`, `nip`, `nama_karyawan`, `tanggal_sekarang`, `judul`, `keterangan`) VALUES (2, ' KA-01 ', 'eka putri', '2020-09-07', 'Covid-19', 'covid 19 telah memakan korban jutaan orang di dunia'); -- -------------------------------------------------------- -- -- Struktur dari tabel `bpjs_ketenagakerjaan` -- CREATE TABLE `bpjs_ketenagakerjaan` ( `id` int(11) NOT NULL, `nik` varchar(255) NOT NULL, `nama_karyawan` varchar(255) NOT NULL, `nomor_ktp` varchar(16) NOT NULL, `no_telp` varchar(15) NOT NULL, `jenis_kelamin` varchar(20) NOT NULL, `tanggal_lahir` date NOT NULL, `kelas` varchar(20) NOT NULL, `gaji` varchar(150) NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `bpjs_ketenagakerjaan` -- INSERT INTO `bpjs_ketenagakerjaan` (`id`, `nik`, `nama_karyawan`, `nomor_ktp`, `no_telp`, `jenis_kelamin`, `tanggal_lahir`, `kelas`, `gaji`, `id_user`) VALUES (1, 'KA-01', 'eka putri', '743985643345356', '081345432454', 'Perempuan', '1998-07-27', 'Kelas I', '&lt; Rp. 1.000.000', 21), (2, '', '', '3467583454', '08132222', 'Perempuan', '2020-09-01', 'Kelas II', '< Rp. 1.000.000', 21), (3, '', '', '345345', '453454', 'Perempuan', '2020-09-08', 'Kelas I', '< Rp. 1.000.000', 21), (4, '', '', '2374', '34', 'Perempuan', '2020-09-08', 'Kelas I', '< Rp. 1.000.000', 21), (5, '', '', 'dfg', '455456', 'Perempuan', '2020-09-08', 'Kelas I', '< Rp. 1.000.000', 21), (6, '', '', '64583744546', '083454556787', 'Perempuan', '1998-07-27', 'Kelas I', '< Rp. 1.000.000', 21); -- -------------------------------------------------------- -- -- Struktur dari tabel `cuti` -- CREATE TABLE `cuti` ( `id` int(11) NOT NULL, `nik` varchar(30) NOT NULL, `nama_karyawan` varchar(255) NOT NULL, `tanggal_mulai` date NOT NULL, `tanggal_selesai` date NOT NULL, `id_prov` tinytext NOT NULL, `id_kab` tinytext NOT NULL, `id_kec` tinytext NOT NULL, `keterangan` text NOT NULL, `approve_oleh` enum('manager','direktur','supervisior','') NOT NULL, `status` enum('pending','approve','rejected','') NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `cuti` -- INSERT INTO `cuti` (`id`, `nik`, `nama_karyawan`, `tanggal_mulai`, `tanggal_selesai`, `id_prov`, `id_kab`, `id_kec`, `keterangan`, `approve_oleh`, `status`, `id_user`) VALUES (35, 'KA-01', 'eka putri', '2020-09-16', '2020-09-17', '17', '1704', '170406', 'izin cuti mengunjungi keluarga di bengkulu', 'direktur', 'approve', 20); -- -------------------------------------------------------- -- -- Struktur dari tabel `ijin` -- CREATE TABLE `ijin` ( `id_ijin` varchar(20) NOT NULL, `nik` varchar(30) NOT NULL, `nama_karyawan` varchar(35) NOT NULL, `tanggal_sekarang` date NOT NULL, `bagian` varchar(255) NOT NULL, `alasan` text NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `ijin` -- INSERT INTO `ijin` (`id_ijin`, `nik`, `nama_karyawan`, `tanggal_sekarang`, `bagian`, `alasan`, `id_user`) VALUES ('27', ' KA-01 ', 'eka putri', '2020-09-10', 'UI/UX ', 'diharuskan check up ke dokter ', 20); -- -------------------------------------------------------- -- -- Struktur dari tabel `ijinkeluar` -- CREATE TABLE `ijinkeluar` ( `id` int(11) NOT NULL, `nik` varchar(30) NOT NULL, `nama_karyawan` varchar(35) NOT NULL, `waktu_keluar` datetime NOT NULL, `status` varchar(20) NOT NULL, `alasan` text NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Struktur dari tabel `kabupaten` -- CREATE TABLE `kabupaten` ( `id_kab` char(4) NOT NULL, `id_prov` char(2) NOT NULL, `nama` tinytext NOT NULL, `id_jenis` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data untuk tabel `kabupaten` -- INSERT INTO `kabupaten` (`id_kab`, `id_prov`, `nama`, `id_jenis`) VALUES ('1101', '11', 'KAB. ACEH SELATAN', 1), ('1102', '11', 'KAB. ACEH TENGGARA', 1), ('1103', '11', 'KAB. ACEH TIMUR', 1), ('1104', '11', 'KAB. ACEH TENGAH', 1), ('1105', '11', 'KAB. ACEH BARAT', 1), ('1106', '11', 'KAB. ACEH BESAR', 1), ('1107', '11', 'KAB. PIDIE', 1), ('1108', '11', 'KAB. ACEH UTARA', 1), ('1109', '11', 'KAB. SIMEULUE', 1), ('1110', '11', 'KAB. ACEH SINGKIL', 1), ('1111', '11', 'KAB. BIREUEN', 1), ('1112', '11', 'KAB. ACEH BARAT DAYA', 1), ('1113', '11', 'KAB. GAYO LUES', 1), ('1114', '11', 'KAB. ACEH JAYA', 1), ('1115', '11', 'KAB. NAGAN RAYA', 1), ('1116', '11', 'KAB. ACEH TAMIANG', 1), ('1117', '11', 'KAB. BENER MERIAH', 1), ('1118', '11', 'KAB. PIDIE JAYA', 1), ('1171', '11', 'KOTA BANDA ACEH', 2), ('1172', '11', 'KOTA SABANG', 2), ('1173', '11', 'KOTA LHOKSEUMAWE', 2), ('1174', '11', 'KOTA LANGSA', 2), ('1175', '11', 'KOTA SUBULUSSALAM', 2), ('1201', '12', 'KAB. TAPANULI TENGAH', 1), ('1202', '12', 'KAB. TAPANULI UTARA', 1), ('1203', '12', 'KAB. TAPANULI SELATAN', 1), ('1204', '12', 'KAB. NIAS', 1), ('1205', '12', 'KAB. LANGKAT', 1), ('1206', '12', 'KAB. KARO', 1), ('1207', '12', 'KAB. DELI SERDANG', 1), ('1208', '12', 'KAB. SIMALUNGUN', 1), ('1209', '12', 'KAB. ASAHAN', 1), ('1210', '12', 'KAB. LABUHANBATU', 1), ('1211', '12', 'KAB. DAIRI', 1), ('1212', '12', 'KAB. TOBA SAMOSIR', 1), ('1213', '12', 'KAB. MANDAILING NATAL', 1), ('1214', '12', 'KAB. NIAS SELATAN', 1), ('1215', '12', 'KAB. PAKPAK BHARAT', 1), ('1216', '12', 'KAB. HUMBANG HASUNDUTAN', 1), ('1217', '12', 'KAB. SAMOSIR', 1), ('1218', '12', 'KAB. SERDANG BEDAGAI', 1), ('1219', '12', 'KAB. BATU BARA', 1), ('1220', '12', 'KAB. PADANG LAWAS UTARA', 1), ('1221', '12', 'KAB. PADANG LAWAS', 1), ('1222', '12', 'KAB. LABUHANBATU SELATAN', 1), ('1223', '12', 'KAB. LABUHANBATU UTARA', 1), ('1224', '12', 'KAB. NIAS UTARA', 1), ('1225', '12', 'KAB. NIAS BARAT', 1), ('1271', '12', 'KOTA MEDAN', 2), ('1272', '12', 'KOTA PEMATANG SIANTAR', 2), ('1273', '12', 'KOTA SIBOLGA', 2), ('1274', '12', 'KOTA TANJUNG BALAI', 2), ('1275', '12', 'KOTA BINJAI', 2), ('1276', '12', 'KOTA TEBING TINGGI', 2), ('1277', '12', 'KOTA PADANGSIDIMPUAN', 2), ('1278', '12', 'KOTA GUNUNGSITOLI', 2), ('1301', '13', 'KAB. PESISIR SELATAN', 1), ('1302', '13', 'KAB. SOLOK', 1), ('1303', '13', 'KAB. SIJUNJUNG', 1), ('1304', '13', 'KAB. TANAH DATAR', 1), ('1305', '13', 'KAB. PADANG PARIAMAN', 1), ('1306', '13', 'KAB. AGAM', 1), ('1307', '13', 'KAB. LIMA PULUH KOTA', 1), ('1308', '13', 'KAB. PASAMAN', 1), ('1309', '13', 'KAB. KEPULAUAN MENTAWAI', 1), ('1310', '13', 'KAB. DHARMASRAYA', 1), ('1311', '13', 'KAB. SOLOK SELATAN', 1), ('1312', '13', 'KAB. PASAMAN BARAT', 1), ('1371', '13', 'KOTA PADANG', 2), ('1372', '13', 'KOTA SOLOK', 2), ('1373', '13', 'KOTA SAWAHLUNTO', 2), ('1374', '13', 'KOTA PADANG PANJANG', 2), ('1375', '13', 'KOTA BUKITTINGGI', 2), ('1376', '13', 'KOTA PAYAKUMBUH', 2), ('1377', '13', 'KOTA PARIAMAN', 2), ('1401', '14', 'KAB. KAMPAR', 1), ('1402', '14', 'KAB. INDRAGIRI HULU', 1), ('1403', '14', 'KAB. BENGKALIS', 1), ('1404', '14', 'KAB. INDRAGIRI HILIR', 1), ('1405', '14', 'KAB. PELALAWAN', 1), ('1406', '14', 'KAB. ROKAN HULU', 1), ('1407', '14', 'KAB. ROKAN HILIR', 1), ('1408', '14', 'KAB. SIAK', 1), ('1409', '14', 'KAB. KUANTAN SINGINGI', 1), ('1410', '14', 'KAB. KEPULAUAN MERANTI', 1), ('1471', '14', 'KOTA PEKANBARU', 2), ('1472', '14', 'KOTA DUMAI', 2), ('1501', '15', 'KAB. KERINCI', 1), ('1502', '15', 'KAB. MERANGIN', 1), ('1503', '15', 'KAB. SAROLANGUN', 1), ('1504', '15', 'KAB. BATANGHARI', 1), ('1505', '15', 'KAB. MUARO JAMBI', 1), ('1506', '15', 'KAB. TANJUNG JABUNG BARAT', 1), ('1507', '15', 'KAB. TANJUNG JABUNG TIMUR', 1), ('1508', '15', 'KAB. BUNGO', 1), ('1509', '15', 'KAB. TEBO', 1), ('1571', '15', 'KOTA JAMBI', 2), ('1572', '15', 'KOTA SUNGAI PENUH', 2), ('1601', '16', 'KAB. OGAN KOMERING ULU', 1), ('1602', '16', 'KAB. OGAN KOMERING ILIR', 1), ('1603', '16', 'KAB. MUARA ENIM', 1), ('1604', '16', 'KAB. LAHAT', 1), ('1605', '16', 'KAB. MUSI RAWAS', 1), ('1606', '16', 'KAB. MUSI BANYUASIN', 1), ('1607', '16', 'KAB. BANYUASIN', 1), ('1608', '16', 'KAB. OGAN KOMERING ULU TIMUR', 1), ('1609', '16', 'KAB. OGAN KOMERING ULU SELATAN', 1), ('1610', '16', 'KAB. OGAN ILIR', 1), ('1611', '16', 'KAB. EMPAT LAWANG', 1), ('1612', '16', 'KAB. PENUKAL ABAB LEMATANG ILIR', 1), ('1613', '16', 'KAB. MUSI RAWAS UTARA', 1), ('1671', '16', 'KOTA PALEMBANG', 2), ('1672', '16', 'KOTA PAGAR ALAM', 2), ('1673', '16', 'KOTA LUBUK LINGGAU', 2), ('1674', '16', 'KOTA PRABUMULIH', 2), ('1701', '17', 'KAB. BENGKULU SELATAN', 1), ('1702', '17', 'KAB. REJANG LEBONG', 1), ('1703', '17', 'KAB. BENGKULU UTARA', 1), ('1704', '17', 'KAB. KAUR', 1), ('1705', '17', 'KAB. SELUMA', 1), ('1706', '17', 'KAB. MUKO MUKO', 1), ('1707', '17', 'KAB. LEBONG', 1), ('1708', '17', 'KAB. KEPAHIANG', 1), ('1709', '17', 'KAB. BENGKULU TENGAH', 1), ('1771', '17', 'KOTA BENGKULU', 2), ('1801', '18', 'KAB. LAMPUNG SELATAN', 1), ('1802', '18', 'KAB. LAMPUNG TENGAH', 1), ('1803', '18', 'KAB. LAMPUNG UTARA', 1), ('1804', '18', 'KAB. LAMPUNG BARAT', 1), ('1805', '18', 'KAB. TULANG BAWANG', 1), ('1806', '18', 'KAB. TANGGAMUS', 1), ('1807', '18', 'KAB. LAMPUNG TIMUR', 1), ('1808', '18', 'KAB. WAY KANAN', 1), ('1809', '18', 'KAB. PESAWARAN', 1), ('1810', '18', 'KAB. PRINGSEWU', 1), ('1811', '18', 'KAB. MESUJI', 1), ('1812', '18', 'KAB. TULANG BAWANG BARAT', 1), ('1813', '18', 'KAB. PESISIR BARAT', 1), ('1871', '18', 'KOTA BANDAR LAMPUNG', 2), ('1872', '18', 'KOTA METRO', 2), ('1901', '19', 'KAB. BANGKA', 1), ('1902', '19', 'KAB. BELITUNG', 1), ('1903', '19', 'KAB. BANGKA SELATAN', 1), ('1904', '19', 'KAB. BANGKA TENGAH', 1), ('1905', '19', 'KAB. BANGKA BARAT', 1), ('1906', '19', 'KAB. BELITUNG TIMUR', 1), ('1971', '19', 'KOTA PANGKAL PINANG', 2), ('2101', '21', 'KAB. BINTAN', 1), ('2102', '21', 'KAB. KARIMUN', 1), ('2103', '21', 'KAB. NATUNA', 1), ('2104', '21', 'KAB. LINGGA', 1), ('2105', '21', 'KAB. KEPULAUAN ANAMBAS', 1), ('2171', '21', 'KOTA BATAM', 2), ('2172', '21', 'KOTA TANJUNG PINANG', 2), ('3101', '31', 'KAB. ADM. KEP. SERIBU', 1), ('3171', '31', 'KOTA ADM. JAKARTA PUSAT', 2), ('3172', '31', 'KOTA ADM. JAKARTA UTARA', 2), ('3173', '31', 'KOTA ADM. JAKARTA BARAT', 2), ('3174', '31', 'KOTA ADM. JAKARTA SELATAN', 2), ('3175', '31', 'KOTA ADM. JAKARTA TIMUR', 2), ('3201', '32', 'KAB. BOGOR', 1), ('3202', '32', 'KAB. SUKABUMI', 1), ('3203', '32', 'KAB. CIANJUR', 1), ('3204', '32', 'KAB. BANDUNG', 1), ('3205', '32', 'KAB. GARUT', 1), ('3206', '32', 'KAB. TASIKMALAYA', 1), ('3207', '32', 'KAB. CIAMIS', 1), ('3208', '32', 'KAB. KUNINGAN', 1), ('3209', '32', 'KAB. CIREBON', 1), ('3210', '32', 'KAB. MAJALENGKA', 1), ('3211', '32', 'KAB. SUMEDANG', 1), ('3212', '32', 'KAB. INDRAMAYU', 1), ('3213', '32', 'KAB. SUBANG', 1), ('3214', '32', 'KAB. PURWAKARTA', 1), ('3215', '32', 'KAB. KARAWANG', 1), ('3216', '32', 'KAB. BEKASI', 1), ('3217', '32', 'KAB. BANDUNG BARAT', 1), ('3218', '32', 'KAB. PANGANDARAN', 1), ('3271', '32', 'KOTA BOGOR', 2), ('3272', '32', 'KOTA SUKABUMI', 2), ('3273', '32', 'KOTA BANDUNG', 2), ('3274', '32', 'KOTA CIREBON', 2), ('3275', '32', 'KOTA BEKASI', 2), ('3276', '32', 'KOTA DEPOK', 2), ('3277', '32', 'KOTA CIMAHI', 2), ('3278', '32', 'KOTA TASIKMALAYA', 2), ('3279', '32', 'KOTA BANJAR', 2), ('3301', '33', 'KAB. CILACAP', 1), ('3302', '33', 'KAB. BANYUMAS', 1), ('3303', '33', 'KAB. PURBALINGGA', 1), ('3304', '33', 'KAB. BANJARNEGARA', 1), ('3305', '33', 'KAB. KEBUMEN', 1), ('3306', '33', 'KAB. PURWOREJO', 1), ('3307', '33', 'KAB. WONOSOBO', 1), ('3308', '33', 'KAB. MAGELANG', 1), ('3309', '33', 'KAB. BOYOLALI', 1), ('3310', '33', 'KAB. KLATEN', 1), ('3311', '33', 'KAB. SUKOHARJO', 1), ('3312', '33', 'KAB. WONOGIRI', 1), ('3313', '33', 'KAB. KARANGANYAR', 1), ('3314', '33', 'KAB. SRAGEN', 1), ('3315', '33', 'KAB. GROBOGAN', 1), ('3316', '33', 'KAB. BLORA', 1), ('3317', '33', 'KAB. REMBANG', 1), ('3318', '33', 'KAB. PATI', 1), ('3319', '33', 'KAB. KUDUS', 1), ('3320', '33', 'KAB. JEPARA', 1), ('3321', '33', 'KAB. DEMAK', 1), ('3322', '33', 'KAB. SEMARANG', 1), ('3323', '33', 'KAB. TEMANGGUNG', 1), ('3324', '33', 'KAB. KENDAL', 1), ('3325', '33', 'KAB. BATANG', 1), ('3326', '33', 'KAB. PEKALONGAN', 1), ('3327', '33', 'KAB. PEMALANG', 1), ('3328', '33', 'KAB. TEGAL', 1), ('3329', '33', 'KAB. BREBES', 1), ('3371', '33', 'KOTA MAGELANG', 2), ('3372', '33', 'KOTA SURAKARTA', 2), ('3373', '33', 'KOTA SALATIGA', 2), ('3374', '33', 'KOTA SEMARANG', 2), ('3375', '33', 'KOTA PEKALONGAN', 2), ('3376', '33', 'KOTA TEGAL', 2), ('3401', '34', 'KAB. KULON PROGO', 1), ('3402', '34', 'KAB. BANTUL', 1), ('3403', '34', 'KAB. GUNUNG KIDUL', 1), ('3404', '34', 'KAB. SLEMAN', 1), ('3471', '34', 'KOTA YOGYAKARTA', 2), ('3501', '35', 'KAB. PACITAN', 1), ('3502', '35', 'KAB. PONOROGO', 1), ('3503', '35', 'KAB. TRENGGALEK', 1), ('3504', '35', 'KAB. TULUNGAGUNG', 1), ('3505', '35', 'KAB. BLITAR', 1), ('3506', '35', 'KAB. KEDIRI', 1), ('3507', '35', 'KAB. MALANG', 1), ('3508', '35', 'KAB. LUMAJANG', 1), ('3509', '35', 'KAB. JEMBER', 1), ('3510', '35', 'KAB. BANYUWANGI', 1), ('3511', '35', 'KAB. BONDOWOSO', 1), ('3512', '35', 'KAB. SITUBONDO', 1), ('3513', '35', 'KAB. PROBOLINGGO', 1), ('3514', '35', 'KAB. PASURUAN', 1), ('3515', '35', 'KAB. SIDOARJO', 1), ('3516', '35', 'KAB. MOJOKERTO', 1), ('3517', '35', 'KAB. JOMBANG', 1), ('3518', '35', 'KAB. NGANJUK', 1), ('3519', '35', 'KAB. MADIUN', 1), ('3520', '35', 'KAB. MAGETAN', 1), ('3521', '35', 'KAB. NGAWI', 1), ('3522', '35', 'KAB. BOJONEGORO', 1), ('3523', '35', 'KAB. TUBAN', 1), ('3524', '35', 'KAB. LAMONGAN', 1), ('3525', '35', 'KAB. GRESIK', 1), ('3526', '35', 'KAB. BANGKALAN', 1), ('3527', '35', 'KAB. SAMPANG', 1), ('3528', '35', 'KAB. PAMEKASAN', 1), ('3529', '35', 'KAB. SUMENEP', 1), ('3571', '35', 'KOTA KEDIRI', 2), ('3572', '35', 'KOTA BLITAR', 2), ('3573', '35', 'KOTA MALANG', 2), ('3574', '35', 'KOTA PROBOLINGGO', 2), ('3575', '35', 'KOTA PASURUAN', 2), ('3576', '35', 'KOTA MOJOKERTO', 2), ('3577', '35', 'KOTA MADIUN', 2), ('3578', '35', 'KOTA SURABAYA', 2), ('3579', '35', 'KOTA BATU', 2), ('3601', '36', 'KAB. PANDEGLANG', 1), ('3602', '36', 'KAB. LEBAK', 1), ('3603', '36', 'KAB. TANGERANG', 1), ('3604', '36', 'KAB. SERANG', 1), ('3671', '36', 'KOTA TANGERANG', 2), ('3672', '36', 'KOTA CILEGON', 2), ('3673', '36', 'KOTA SERANG', 2), ('3674', '36', 'KOTA TANGERANG SELATAN', 2), ('5101', '51', 'KAB. JEMBRANA', 1), ('5102', '51', 'KAB. TABANAN', 1), ('5103', '51', 'KAB. BADUNG', 1), ('5104', '51', 'KAB. GIANYAR', 1), ('5105', '51', 'KAB. KLUNGKUNG', 1), ('5106', '51', 'KAB. BANGLI', 1), ('5107', '51', 'KAB. KARANGASEM', 1), ('5108', '51', 'KAB. BULELENG', 1), ('5171', '51', 'KOTA DENPASAR', 2), ('5201', '52', 'KAB. LOMBOK BARAT', 1), ('5202', '52', 'KAB. LOMBOK TENGAH', 1), ('5203', '52', 'KAB. LOMBOK TIMUR', 1), ('5204', '52', 'KAB. SUMBAWA', 1), ('5205', '52', 'KAB. DOMPU', 1), ('5206', '52', 'KAB. BIMA', 1), ('5207', '52', 'KAB. SUMBAWA BARAT', 1), ('5208', '52', 'KAB. LOMBOK UTARA', 1), ('5271', '52', 'KOTA MATARAM', 2), ('5272', '52', 'KOTA BIMA', 2), ('5301', '53', 'KAB. KUPANG', 1), ('5302', '53', 'KAB TIMOR TENGAH SELATAN', 1), ('5303', '53', 'KAB. TIMOR TENGAH UTARA', 1), ('5304', '53', 'KAB. BELU', 1), ('5305', '53', 'KAB. ALOR', 1), ('5306', '53', 'KAB. FLORES TIMUR', 1), ('5307', '53', 'KAB. SIKKA', 1), ('5308', '53', 'KAB. ENDE', 1), ('5309', '53', 'KAB. NGADA', 1), ('5310', '53', 'KAB. MANGGARAI', 1), ('5311', '53', 'KAB. SUMBA TIMUR', 1), ('5312', '53', 'KAB. SUMBA BARAT', 1), ('5313', '53', 'KAB. LEMBATA', 1), ('5314', '53', 'KAB. ROTE NDAO', 1), ('5315', '53', 'KAB. MANGGARAI BARAT', 1), ('5316', '53', 'KAB. NAGEKEO', 1), ('5317', '53', 'KAB. SUMBA TENGAH', 1), ('5318', '53', 'KAB. SUMBA BARAT DAYA', 1), ('5319', '53', 'KAB. MANGGARAI TIMUR', 1), ('5320', '53', 'KAB. SABU RAIJUA', 1), ('5321', '53', 'KAB. MALAKA', 1), ('5371', '53', 'KOTA KUPANG', 2), ('6101', '61', 'KAB. SAMBAS', 1), ('6102', '61', 'KAB. MEMPAWAH', 1), ('6103', '61', 'KAB. SANGGAU', 1), ('6104', '61', 'KAB. KETAPANG', 1), ('6105', '61', 'KAB. SINTANG', 1), ('6106', '61', 'KAB. KAPUAS HULU', 1), ('6107', '61', 'KAB. BENGKAYANG', 1), ('6108', '61', 'KAB. LANDAK', 1), ('6109', '61', 'KAB. SEKADAU', 1), ('6110', '61', 'KAB. MELAWI', 1), ('6111', '61', 'KAB. KAYONG UTARA', 1), ('6112', '61', 'KAB. KUBU RAYA', 1), ('6171', '61', 'KOTA PONTIANAK', 2), ('6172', '61', 'KOTA SINGKAWANG', 2), ('6201', '62', 'KAB. KOTAWARINGIN BARAT', 1), ('6202', '62', 'KAB. KOTAWARINGIN TIMUR', 1), ('6203', '62', 'KAB. KAPUAS', 1), ('6204', '62', 'KAB. BARITO SELATAN', 1), ('6205', '62', 'KAB. BARITO UTARA', 1), ('6206', '62', 'KAB. KATINGAN', 1), ('6207', '62', 'KAB. SERUYAN', 1), ('6208', '62', 'KAB. SUKAMARA', 1), ('6209', '62', 'KAB. LAMANDAU', 1), ('6210', '62', 'KAB. GUNUNG MAS', 1), ('6211', '62', 'KAB. PULANG PISAU', 1), ('6212', '62', 'KAB. MURUNG RAYA', 1), ('6213', '62', 'KAB. BARITO TIMUR', 1), ('6271', '62', 'KOTA PALANGKARAYA', 2), ('6301', '63', 'KAB. TANAH LAUT', 1), ('6302', '63', 'KAB. KOTABARU', 1), ('6303', '63', 'KAB. BANJAR', 1), ('6304', '63', 'KAB. BARITO KUALA', 1), ('6305', '63', 'KAB. TAPIN', 1), ('6306', '63', 'KAB. HULU SUNGAI SELATAN', 1), ('6307', '63', 'KAB. HULU SUNGAI TENGAH', 1), ('6308', '63', 'KAB. HULU SUNGAI UTARA', 1), ('6309', '63', 'KAB. TABALONG', 1), ('6310', '63', 'KAB. TANAH BUMBU', 1), ('6311', '63', 'KAB. BALANGAN', 1), ('6371', '63', 'KOTA BANJARMASIN', 2), ('6372', '63', 'KOTA BANJARBARU', 2), ('6401', '64', 'KAB. PASER', 1), ('6402', '64', 'KAB. KUTAI KARTANEGARA', 1), ('6403', '64', 'KAB. BERAU', 1), ('6407', '64', 'KAB. KUTAI BARAT', 1), ('6408', '64', 'KAB. KUTAI TIMUR', 1), ('6409', '64', 'KAB. PENAJAM PASER UTARA', 1), ('6411', '64', 'KAB. MAHAKAM ULU', 1), ('6471', '64', 'KOTA BALIKPAPAN', 2), ('6472', '64', 'KOTA SAMARINDA', 2), ('6474', '64', 'KOTA BONTANG', 2), ('6501', '65', 'KAB. BULUNGAN', 1), ('6502', '65', 'KAB. MALINAU', 1), ('6503', '65', 'KAB. NUNUKAN', 1), ('6504', '65', 'KAB. TANA TIDUNG', 1), ('6571', '65', 'KOTA TARAKAN', 2), ('7101', '71', 'KAB. BOLAANG MONGONDOW', 1), ('7102', '71', 'KAB. MINAHASA', 1), ('7103', '71', 'KAB. KEPULAUAN SANGIHE', 1), ('7104', '71', 'KAB. KEPULAUAN TALAUD', 1), ('7105', '71', 'KAB. MINAHASA SELATAN', 1), ('7106', '71', 'KAB. MINAHASA UTARA', 1), ('7107', '71', 'KAB. MINAHASA TENGGARA', 1), ('7108', '71', 'KAB. BOLAANG MONGONDOW UTARA', 1), ('7109', '71', 'KAB. KEP. SIAU TAGULANDANG BIARO', 1), ('7110', '71', 'KAB. BOLAANG MONGONDOW TIMUR', 1), ('7111', '71', 'KAB. BOLAANG MONGONDOW SELATAN', 1), ('7171', '71', 'KOTA MANADO', 2), ('7172', '71', 'KOTA BITUNG', 2), ('7173', '71', 'KOTA TOMOHON', 2), ('7174', '71', 'KOTA KOTAMOBAGU', 2), ('7201', '72', 'KAB. BANGGAI', 1), ('7202', '72', 'KAB. POSO', 1), ('7203', '72', 'KAB. DONGGALA', 1), ('7204', '72', 'KAB. TOLI TOLI', 1), ('7205', '72', 'KAB. BUOL', 1), ('7206', '72', 'KAB. MOROWALI', 1), ('7207', '72', 'KAB. BANGGAI KEPULAUAN', 1), ('7208', '72', 'KAB. PARIGI MOUTONG', 1), ('7209', '72', 'KAB. TOJO UNA UNA', 1), ('7210', '72', 'KAB. SIGI', 1), ('7211', '72', 'KAB. BANGGAI LAUT', 1), ('7212', '72', 'KAB. MOROWALI UTARA', 1), ('7271', '72', 'KOTA PALU', 2), ('7301', '73', 'KAB. KEPULAUAN SELAYAR', 1), ('7302', '73', 'KAB. BULUKUMBA', 1), ('7303', '73', 'KAB. BANTAENG', 1), ('7304', '73', 'KAB. JENEPONTO', 1), ('7305', '73', 'KAB. TAKALAR', 1), ('7306', '73', 'KAB. GOWA', 1), ('7307', '73', 'KAB. SINJAI', 1), ('7308', '73', 'KAB. BONE', 1), ('7309', '73', 'KAB. MAROS', 1), ('7310', '73', 'KAB. PANGKAJENE KEPULAUAN', 1), ('7311', '73', 'KAB. BARRU', 1), ('7312', '73', 'KAB. SOPPENG', 1), ('7313', '73', 'KAB. WAJO', 1), ('7314', '73', 'KAB. SIDENRENG RAPPANG', 1), ('7315', '73', 'KAB. PINRANG', 1), ('7316', '73', 'KAB. ENREKANG', 1), ('7317', '73', 'KAB. LUWU', 1), ('7318', '73', 'KAB. TANA TORAJA', 1), ('7322', '73', 'KAB. LUWU UTARA', 1), ('7324', '73', 'KAB. LUWU TIMUR', 1), ('7326', '73', 'KAB. TORAJA UTARA', 1), ('7371', '73', 'KOTA MAKASSAR', 2), ('7372', '73', 'KOTA PARE PARE', 2), ('7373', '73', 'KOTA PALOPO', 2), ('7401', '74', 'KAB. KOLAKA', 1), ('7402', '74', 'KAB. KONAWE', 1), ('7403', '74', 'KAB. MUNA', 1), ('7404', '74', 'KAB. BUTON', 1), ('7405', '74', 'KAB. KONAWE SELATAN', 1), ('7406', '74', 'KAB. BOMBANA', 1), ('7407', '74', 'KAB. WAKATOBI', 1), ('7408', '74', 'KAB. KOLAKA UTARA', 1), ('7409', '74', 'KAB. KONAWE UTARA', 1), ('7410', '74', 'KAB. BUTON UTARA', 1), ('7411', '74', 'KAB. KOLAKA TIMUR', 1), ('7412', '74', 'KAB. KONAWE KEPULAUAN', 1), ('7413', '74', 'KAB. MUNA BARAT', 1), ('7414', '74', 'KAB. BUTON TENGAH', 1), ('7415', '74', 'KAB. BUTON SELATAN', 1), ('7471', '74', 'KOTA KENDARI', 2), ('7472', '74', 'KOTA BAU BAU', 2), ('7501', '75', 'KAB. GORONTALO', 1), ('7502', '75', 'KAB. BOALEMO', 1), ('7503', '75', 'KAB. BONE BOLANGO', 1), ('7504', '75', 'KAB. PAHUWATO', 1), ('7505', '75', 'KAB. GORONTALO UTARA', 1), ('7571', '75', 'KOTA GORONTALO', 2), ('7601', '76', 'KAB. MAMUJU UTARA', 1), ('7602', '76', 'KAB. MAMUJU', 1), ('7603', '76', 'KAB. MAMASA', 1), ('7604', '76', 'KAB. POLEWALI MANDAR', 1), ('7605', '76', 'KAB. MAJENE', 1), ('7606', '76', 'KAB. MAMUJU TENGAH', 1), ('8101', '81', 'KAB. MALUKU TENGAH', 1), ('8102', '81', 'KAB. MALUKU TENGGARA', 1), ('8103', '81', 'KAB MALUKU TENGGARA BARAT', 1), ('8104', '81', 'KAB. BURU', 1), ('8105', '81', 'KAB. SERAM BAGIAN TIMUR', 1), ('8106', '81', 'KAB. SERAM BAGIAN BARAT', 1), ('8107', '81', 'KAB. KEPULAUAN ARU', 1), ('8108', '81', 'KAB. MALUKU BARAT DAYA', 1), ('8109', '81', 'KAB. BURU SELATAN', 1), ('8171', '81', 'KOTA AMBON', 2), ('8172', '81', 'KOTA TUAL', 2), ('8201', '82', 'KAB. HALMAHERA BARAT', 1), ('8202', '82', 'KAB. HALMAHERA TENGAH', 1), ('8203', '82', 'KAB. HALMAHERA UTARA', 1), ('8204', '82', 'KAB. HALMAHERA SELATAN', 1), ('8205', '82', 'KAB. KEPULAUAN SULA', 1), ('8206', '82', 'KAB. HALMAHERA TIMUR', 1), ('8207', '82', 'KAB. PULAU MOROTAI', 1), ('8208', '82', 'KAB. PULAU TALIABU', 1), ('8271', '82', 'KOTA TERNATE', 2), ('8272', '82', 'KOTA TIDORE KEPULAUAN', 2), ('9101', '91', 'KAB. MERAUKE', 1), ('9102', '91', 'KAB. JAYAWIJAYA', 1), ('9103', '91', 'KAB. JAYAPURA', 1), ('9104', '91', 'KAB. NABIRE', 1), ('9105', '91', 'KAB. KEPULAUAN YAPEN', 1), ('9106', '91', 'KAB. BIAK NUMFOR', 1), ('9107', '91', 'KAB. PUNCAK JAYA', 1), ('9108', '91', 'KAB. PANIAI', 1), ('9109', '91', 'KAB. MIMIKA', 1), ('9110', '91', 'KAB. SARMI', 1), ('9111', '91', 'KAB. KEEROM', 1), ('9112', '91', 'KAB PEGUNUNGAN BINTANG', 1), ('9113', '91', 'KAB. YAHUKIMO', 1), ('9114', '91', 'KAB. TOLIKARA', 1), ('9115', '91', 'KAB. WAROPEN', 1), ('9116', '91', 'KAB. BOVEN DIGOEL', 1), ('9117', '91', 'KAB. MAPPI', 1), ('9118', '91', 'KAB. ASMAT', 1), ('9119', '91', 'KAB. SUPIORI', 1), ('9120', '91', 'KAB. MAMBERAMO RAYA', 1), ('9121', '91', 'KAB. MAMBERAMO TENGAH', 1), ('9122', '91', 'KAB. YALIMO', 1), ('9123', '91', 'KAB. LANNY JAYA', 1), ('9124', '91', 'KAB. NDUGA', 1), ('9125', '91', 'KAB. PUNCAK', 1), ('9126', '91', 'KAB. DOGIYAI', 1), ('9127', '91', 'KAB. INTAN JAYA', 1), ('9128', '91', 'KAB. DEIYAI', 1), ('9171', '91', 'KOTA JAYAPURA', 2), ('9201', '92', 'KAB. SORONG', 1), ('9202', '92', 'KAB. MANOKWARI', 1), ('9203', '92', 'KAB. FAK FAK', 1), ('9204', '92', 'KAB. SORONG SELATAN', 1), ('9205', '92', 'KAB. RAJA AMPAT', 1), ('9206', '92', 'KAB. TELUK BINTUNI', 1), ('9207', '92', 'KAB. TELUK WONDAMA', 1), ('9208', '92', 'KAB. KAIMANA', 1), ('9209', '92', 'KAB. TAMBRAUW', 1), ('9210', '92', 'KAB. MAYBRAT', 1), ('9211', '92', 'KAB. MANOKWARI SELATAN', 1), ('9212', '92', 'KAB. PEGUNUNGAN ARFAK', 1), ('9271', '92', 'KOTA SORONG', 2); -- -------------------------------------------------------- -- -- Struktur dari tabel `karyawan` -- CREATE TABLE `karyawan` ( `id` int(11) NOT NULL, `nama` varchar(255) NOT NULL, `nik` varchar(20) NOT NULL, `jenis_kelamin` varchar(35) NOT NULL COMMENT '1=perempuan, 2=laki-laki', `tanggal_lahir` date NOT NULL, `usia` varchar(10) NOT NULL, `alamat` varchar(255) NOT NULL, `agama` varchar(35) NOT NULL COMMENT '1=kristen, 2=islam, 3=katolik, 4=hindu, 5=buddha, 6=konghucu', `jabatan` varchar(255) NOT NULL, `no_telp` varchar(20) NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `karyawan` -- INSERT INTO `karyawan` (`id`, `nama`, `nik`, `jenis_kelamin`, `tanggal_lahir`, `usia`, `alamat`, `agama`, `jabatan`, `no_telp`, `id_user`) VALUES (14, 'eka putri', '71160062', 'perempuan', '1998-07-27', '21', 'jln.seturan no.12', 'kristen', 'staff keuangan', '081345652677', 14), (17, 'wayan Edi', '711720078', 'laki-laki', '1990-03-20', '30', 'jln babarsari no 12 Yogyakarta', 'hindu', 'Content Creator', '088765677821', 55); -- -------------------------------------------------------- -- -- Struktur dari tabel `kecamatan` -- CREATE TABLE `kecamatan` ( `id_kec` char(6) NOT NULL, `id_kab` char(4) NOT NULL, `nama` tinytext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data untuk tabel `kecamatan` -- INSERT INTO `kecamatan` (`id_kec`, `id_kab`, `nama`) VALUES ('110101', '1101', 'Bakongan'), ('110102', '1101', 'Kluet Utara'), ('110103', '1101', 'Kluet Selatan'), ('110104', '1101', 'Labuhan Haji'), ('110105', '1101', 'Meukek'), ('110106', '1101', 'Samadua'), ('110107', '1101', 'Sawang'), ('110108', '1101', 'Tapaktuan'), ('110109', '1101', 'Trumon'), ('110110', '1101', 'Pasi Raja'), ('110111', '1101', 'Labuhan Haji Timur'), ('110112', '1101', 'Labuhan Haji Barat'), ('110113', '1101', 'Kluet Tengah'), ('110114', '1101', 'Kluet Timur'), ('110115', '1101', 'Bakongan Timur'), ('110116', '1101', 'Trumon Timur'), ('110117', '1101', 'Kota Bahagia'), ('110118', '1101', 'Trumon Tengah'), ('110201', '1102', 'Lawe Alas'), ('110202', '1102', 'Lawe Sigala-Gala'), ('110203', '1102', 'Bambel'), ('110204', '1102', 'Babussalam'), ('110205', '1102', 'Badar'), ('110206', '1102', 'Babul Makmur'), ('110207', '1102', 'Darul Hasanah'), ('110208', '1102', 'Lawe Bulan'), ('110209', '1102', 'Bukit Tusam'), ('110210', '1102', 'Semadam'), ('110211', '1102', 'Babul Rahmah'), ('110212', '1102', 'Ketambe'), ('110213', '1102', 'Deleng Pokhkisen'), ('110214', '1102', 'Lawe Sumur'), ('110215', '1102', 'Tanoh Alas'), ('110216', '1102', 'Leuser'), ('110301', '1103', 'Darul Aman'), ('110302', '1103', 'Julok'), ('110303', '1103', 'Idi Rayeuk'), ('110304', '1103', 'Birem Bayeun'), ('110305', '1103', 'Serbajadi'), ('110306', '1103', 'Nurussalam'), ('110307', '1103', 'Peureulak'), ('110308', '1103', 'Rantau Selamat'), ('110309', '1103', 'Simpang Ulim'), ('110310', '1103', 'Rantau Peureulak'), ('110311', '1103', 'Pante Bidari'), ('110312', '1103', 'Madat'), ('110313', '1103', 'Indra Makmu'), ('110314', '1103', 'Idi Tunong'), ('110315', '1103', 'Banda Alam'), ('110316', '1103', 'Peudawa'), ('110317', '1103', 'Peureulak Timur'), ('110318', '1103', 'Peureulak Barat'), ('110319', '1103', 'Sungai Raya'), ('110320', '1103', 'Simpang Jernih'), ('110321', '1103', 'Darul Ihsan'), ('110322', '1103', 'Darul Falah'), ('110323', '1103', 'Idi Timur'), ('110324', '1103', 'Peunaron'), ('110401', '1104', 'Linge'), ('110402', '1104', 'Silih Nara'), ('110403', '1104', 'Bebesen'), ('110407', '1104', 'Pegasing'), ('110408', '1104', 'Bintang'), ('110410', '1104', 'Ketol'), ('110411', '1104', 'Kebayakan'), ('110412', '1104', 'Kute Panang'), ('110413', '1104', 'Celala'), ('110417', '1104', 'Laut Tawar'), ('110418', '1104', 'Atu Lintang'), ('110419', '1104', 'Jagong Jeget'), ('110420', '1104', 'Bies'), ('110421', '1104', 'Rusip Antara'), ('110501', '1105', 'Johan Pahwalan'), ('110502', '1105', 'Kaway XVI'), ('110503', '1105', 'Sungai Mas'), ('110504', '1105', 'Woyla'), ('110505', '1105', 'Samatiga'), ('110506', '1105', 'Bubon'), ('110507', '1105', 'Arongan Lambalek'), ('110508', '1105', 'Pante Ceureumen'), ('110509', '1105', 'Meureubo'), ('110510', '1105', 'Woyla Barat'), ('110511', '1105', 'Woyla Timur'), ('110512', '1105', 'Panton Reu'), ('110601', '1106', 'Lhoong'), ('110602', '1106', 'Lhoknga'), ('110603', '1106', 'Indrapuri'), ('110604', '1106', 'Seulimeum'), ('110605', '1106', 'Montasik'), ('110606', '1106', 'Sukamakmur'), ('110607', '1106', 'Darul Imarah'), ('110608', '1106', 'Peukan Bada'), ('110609', '1106', 'Mesjid Raya'), ('110610', '1106', 'Ingin Jaya'), ('110611', '1106', 'Kuta Baro'), ('110612', '1106', 'Darussalam'), ('110613', '1106', 'Pulo Aceh'), ('110614', '1106', 'Lembah Seulawah'), ('110615', '1106', 'Kota Jantho'), ('110616', '1106', 'Kota Cot Glie'), ('110617', '1106', 'Kuta Malaka'), ('110618', '1106', 'Simpang Tiga'), ('110619', '1106', 'Darul Kamal'), ('110620', '1106', 'Baitussalam'), ('110621', '1106', 'Krueng Barona Jaya'), ('110622', '1106', 'Leupung'), ('110623', '1106', 'Blang Bintang'), ('110703', '1107', 'Batee'), ('110704', '1107', 'Delima'), ('110705', '1107', 'Geumpang'), ('110706', '1107', 'Geulumpang Tiga'), ('110707', '1107', 'Indra Jaya'), ('110708', '1107', 'Kembang Tanjong'), ('110709', '1107', 'Kota Sigli'), ('110711', '1107', 'Mila'), ('110712', '1107', 'Muara Tiga'), ('110713', '1107', 'Mutiara'), ('110714', '1107', 'Padang Tiji'), ('110715', '1107', 'Peukan Baro'), ('110716', '1107', 'Pidie'), ('110717', '1107', 'Sakti'), ('110718', '1107', 'Simpang Tiga'), ('110719', '1107', 'Tangse'), ('110721', '1107', 'Tiro/Truseb'), ('110722', '1107', 'Keumala'), ('110724', '1107', 'Mutiara Timur'), ('110725', '1107', 'Grong-grong'), ('110727', '1107', 'Mane'), ('110729', '1107', 'Glumpang Baro'), ('110731', '1107', 'Titeue'), ('110801', '1108', 'Baktiya'), ('110802', '1108', 'Dewantara'), ('110803', '1108', 'Kuta Makmur'), ('110804', '1108', 'Lhoksukon'), ('110805', '1108', 'Matangkuli'), ('110806', '1108', 'Muara Batu'), ('110807', '1108', 'Meurah Mulia'), ('110808', '1108', 'Samudera'), ('110809', '1108', 'Seunuddon'), ('110810', '1108', 'Syamtalira Aron'), ('110811', '1108', 'Syamtalira Bayu'), ('110812', '1108', 'Tanah Luas'), ('110813', '1108', 'Tanah Pasir'), ('110814', '1108', 'T. Jambo Aye'), ('110815', '1108', 'Sawang'), ('110816', '1108', 'Nisam'), ('110817', '1108', 'Cot Girek'), ('110818', '1108', 'Langkahan'), ('110819', '1108', 'Baktiya Barat'), ('110820', '1108', 'Paya Bakong'), ('110821', '1108', 'Nibong'), ('110822', '1108', 'Simpang Kramat'), ('110823', '1108', 'Lapang'), ('110824', '1108', 'Pirak Timur'), ('110825', '1108', 'Geuredong Pase'), ('110826', '1108', 'Banda Baro'), ('110827', '1108', 'Nisam Antara'), ('110901', '1109', 'Simeulue Tengah'), ('110902', '1109', 'Salang'), ('110903', '1109', 'Teupah Barat'), ('110904', '1109', 'Simeulue Timur'), ('110905', '1109', 'Teluk Dalam'), ('110906', '1109', 'Simeulue Barat'), ('110907', '1109', 'Teupah Selatan'), ('110908', '1109', 'Alapan'), ('110909', '1109', 'Teupah Tengah'), ('110910', '1109', 'Simeulue Cut'), ('111001', '1110', 'Pulau Banyak'), ('111002', '1110', 'Simpang Kanan'), ('111004', '1110', 'Singkil'), ('111006', '1110', 'Gunung Meriah'), ('111009', '1110', 'Kota Baharu'), ('111010', '1110', 'Singkil Utara'), ('111011', '1110', 'Danau Paris'), ('111012', '1110', 'Suro Makmur'), ('111013', '1110', 'Singkohor'), ('111014', '1110', 'Kuala Baru'), ('111016', '1110', 'Pulau Banyak Barat'), ('111101', '1111', 'Samalanga'), ('111102', '1111', 'Jeunieb'), ('111103', '1111', 'Peudada'), ('111104', '1111', 'Jeumpa'), ('111105', '1111', 'Peusangan'), ('111106', '1111', 'Makmur'), ('111107', '1111', 'Gandapura'), ('111108', '1111', 'Pandrah'), ('111109', '1111', 'Juli'), ('111110', '1111', 'Jangka'), ('111111', '1111', 'Simpang Mamplam'), ('111112', '1111', 'Peulimbang'), ('111113', '1111', 'Kota Juang'), ('111114', '1111', 'Kuala'), ('111115', '1111', 'Peusangan Siblah Krueng'), ('111116', '1111', 'Peusangan Selatan'), ('111117', '1111', 'Kuta Blang'), ('111201', '1112', 'Blang Pidie'), ('111202', '1112', 'Tangan-Tangan'), ('111203', '1112', 'Manggeng'), ('111204', '1112', 'Susoh'), ('111205', '1112', 'Kuala Batee'), ('111206', '1112', 'Babah Rot'), ('111207', '1112', 'Setia'), ('111208', '1112', 'Jeumpa'), ('111209', '1112', 'Lembah Sabil'), ('111301', '1113', 'Blangkejeren'), ('111302', '1113', 'Kutapanjang'), ('111303', '1113', 'Rikit Gaib'), ('111304', '1113', 'Terangun'), ('111305', '1113', 'Pining'), ('111306', '1113', 'Blangpegayon'), ('111307', '1113', 'Puteri Betung'), ('111308', '1113', 'Dabun Gelang'), ('111309', '1113', 'Blangjerango'), ('111310', '1113', 'Teripe Jaya'), ('111311', '1113', 'Pantan Cuaca'), ('111401', '1114', 'Teunom'), ('111402', '1114', 'Krueng Sabee'), ('111403', '1114', 'Setia Bhakti'), ('111404', '1114', 'Sampoiniet'), ('111405', '1114', 'Jaya'), ('111406', '1114', 'Panga'), ('111407', '1114', 'Indra Jaya'), ('111408', '1114', 'Darul Hikmah'), ('111409', '1114', 'Pasie Raya'), ('111501', '1115', 'Kuala'), ('111502', '1115', 'Seunagan'), ('111503', '1115', 'Seunagan Timur'), ('111504', '1115', 'Beutong'), ('111505', '1115', 'Darul Makmur'), ('111506', '1115', 'Suka Makmue'), ('111507', '1115', 'Kuala Pesisir'), ('111508', '1115', 'Tadu Raya'), ('111509', '1115', 'Tripa Makmur'), ('111510', '1115', 'Beutong Ateuh Banggalang'), ('111601', '1116', 'Manyak Payed'), ('111602', '1116', 'Bendahara'), ('111603', '1116', 'Karang Baru'), ('111604', '1116', 'Seruway'), ('111605', '1116', 'Kota Kualasinpang'), ('111606', '1116', 'Kejuruan Muda'), ('111607', '1116', 'Tamiang Hulu'), ('111608', '1116', 'Rantau'), ('111609', '1116', 'Banda Mulia'), ('111610', '1116', 'Bandar Pusaka'), ('111611', '1116', 'Tenggulun'), ('111612', '1116', 'Sekerak'), ('111701', '1117', 'Pintu Rime Gayo'), ('111702', '1117', 'Permata'), ('111703', '1117', 'Syiah Utama'), ('111704', '1117', 'Bandar'), ('111705', '1117', 'Bukit'), ('111706', '1117', 'Wih Pesam'), ('111707', '1117', 'Timang gajah'), ('111708', '1117', 'Bener Kelipah'), ('111709', '1117', 'Mesidah'), ('111710', '1117', 'Gajah Putih'), ('111801', '1118', 'Meureudu'), ('111802', '1118', 'Ulim'), ('111803', '1118', 'Jangka Buaya'), ('111804', '1118', 'Bandar Dua'), ('111805', '1118', 'Meurah Dua'), ('111806', '1118', 'Bandar Baru'), ('111807', '1118', 'Panteraja'), ('111808', '1118', 'Trienggadeng'), ('117101', '1171', 'Baiturrahman'), ('117102', '1171', 'Kuta Alam'), ('117103', '1171', 'Meuraxa'), ('117104', '1171', 'Syiah Kuala'), ('117105', '1171', 'Lueng Bata'), ('117106', '1171', 'Kuta Raja'), ('117107', '1171', 'Banda Raya'), ('117108', '1171', 'Jaya Baru'), ('117109', '1171', 'Ulee Kareng'), ('117201', '1172', 'Sukakarya'), ('117202', '1172', 'Sukajaya'), ('117301', '1173', 'Muara Dua'), ('117302', '1173', 'Banda Sakti'), ('117303', '1173', 'Blang Mangat'), ('117304', '1173', 'Muara Satu'), ('117401', '1174', 'Langsa Timur'), ('117402', '1174', 'Langsa Barat'), ('117403', '1174', 'Langsa Kota'), ('117404', '1174', 'Langsa Lama'), ('117405', '1174', 'Langsa Baro'), ('117501', '1175', 'Simpang Kiri'), ('117502', '1175', 'Penanggalan'), ('117503', '1175', 'Rundeng'), ('117504', '1175', 'Sultan Daulat'), ('117505', '1175', 'Longkib'), ('120101', '1201', 'Barus'), ('120102', '1201', 'Sorkam'), ('120103', '1201', 'Pandan'), ('120104', '1201', 'Pinangsori'), ('120105', '1201', 'Manduamas'), ('120106', '1201', 'Kolang'), ('120107', '1201', 'Tapian Nauli'), ('120108', '1201', 'Sibabangun'), ('120109', '1201', 'Sosor Gadong'), ('120110', '1201', 'Sorkam Barat'), ('120111', '1201', 'Sirandorung'), ('120112', '1201', 'Andam Dewi'), ('120113', '1201', 'Sitahuis'), ('120114', '1201', 'Tukka'), ('120115', '1201', 'Badiri'), ('120116', '1201', 'Pasaribu Tobing'), ('120117', '1201', 'Barus Utara'), ('120118', '1201', 'Suka Bangun'), ('120119', '1201', 'Lumut'), ('120120', '1201', 'Sarudik'), ('120201', '1202', 'Tarutung'), ('120202', '1202', 'Siatas Barita'), ('120203', '1202', 'Adian Koting'), ('120204', '1202', 'Sipoholon'), ('120205', '1202', 'Pahae Julu'), ('120206', '1202', 'Pahae Jae'), ('120207', '1202', 'Simangumban'), ('120208', '1202', 'Purba Tua'), ('120209', '1202', 'Siborong-Borong'), ('120210', '1202', 'Pagaran'), ('120211', '1202', 'Parmonangan'), ('120212', '1202', 'Sipahutar'), ('120213', '1202', 'Pangaribuan'), ('120214', '1202', 'Garoga'), ('120215', '1202', 'Muara'), ('120301', '1203', 'Angkola Barat'), ('120302', '1203', 'Batang Toru'), ('120303', '1203', 'Angkola Timur'), ('120304', '1203', 'Sipirok'), ('120305', '1203', 'Saipar Dolok Hole'), ('120306', '1203', 'Angkola Selatan'), ('120307', '1203', 'Batang Angkola'), ('120314', '1203', 'Arse'), ('120320', '1203', 'Marancar'), ('120321', '1203', 'Sayur Matinggi'), ('120322', '1203', 'Aek Bilah'), ('120329', '1203', 'Muara Batang Toru'), ('120330', '1203', 'Tano Tombangan Angkola'), ('120331', '1203', 'Angkola Sangkunur'), ('120405', '1204', 'Hiliduho'), ('120406', '1204', 'Gido'), ('120410', '1204', 'Idanogawo'), ('120411', '1204', 'Bawolato'), ('120420', '1204', 'Hiliserangkai'), ('120421', '1204', 'Botomuzoi'), ('120427', '1204', 'Ulugawo'), ('120428', '1204', 'Ma\'u'), ('120429', '1204', 'Somolo-molo'), ('120435', '1204', 'Sogae\'adu'), ('120501', '1205', 'Bahorok'), ('120502', '1205', 'Salapian'), ('120503', '1205', 'Kuala'), ('120504', '1205', 'Sei Bingei'), ('120505', '1205', 'Binjai'), ('120506', '1205', 'Selesai'), ('120507', '1205', 'Stabat'), ('120508', '1205', 'Wampu'), ('120509', '1205', 'Secanggang'), ('120510', '1205', 'Hinai'), ('120511', '1205', 'Tanjung Pura'), ('120512', '1205', 'Padang Tualang'), ('120513', '1205', 'Gebang'), ('120514', '1205', 'Babalan'), ('120515', '1205', 'Pangkalan Susu'), ('120516', '1205', 'Besitang'), ('120517', '1205', 'Sei Lepan'), ('120518', '1205', 'Brandan Barat'), ('120519', '1205', 'Batang Serangan'), ('120520', '1205', 'Sawit Seberang'), ('120521', '1205', 'Sirapit'), ('120522', '1205', 'Kutambaru'), ('120523', '1205', 'Pematang Jaya'), ('120601', '1206', 'Kabanjahe'), ('120602', '1206', 'Berastagi'), ('120603', '1206', 'Barusjahe'), ('120604', '1206', 'Tigapanah'), ('120605', '1206', 'Merek'), ('120606', '1206', 'Munte'), ('120607', '1206', 'Juhar'), ('120608', '1206', 'Tigabinanga'), ('120609', '1206', 'Laubaleng'), ('120610', '1206', 'Mardingding'), ('120611', '1206', 'Payung'), ('120612', '1206', 'Simpang Empat'), ('120613', '1206', 'Kutabuluh'), ('120614', '1206', 'Dolat Rayat'), ('120615', '1206', 'Merdeka'), ('120616', '1206', 'Naman Teran'), ('120617', '1206', 'Tiganderket'), ('120701', '1207', 'Gunung Meriah'), ('120702', '1207', 'Tanjung Morawa'), ('120703', '1207', 'Sibolangit'), ('120704', '1207', 'Kutalimbaru'), ('120705', '1207', 'Pancur Batu'), ('120706', '1207', 'Namorambe'), ('120707', '1207', 'Sibiru-biru'), ('120708', '1207', 'STM Hilir'), ('120709', '1207', 'Bangun Purba'), ('120719', '1207', 'Galang'), ('120720', '1207', 'STM Hulu'), ('120721', '1207', 'Patumbak'), ('120722', '1207', 'Deli Tua'), ('120723', '1207', 'Sunggal'), ('120724', '1207', 'Hamparan Perak'), ('120725', '1207', 'Labuhan Deli'), ('120726', '1207', 'Percut Sei Tuan'), ('120727', '1207', 'Batang Kuis'), ('120728', '1207', 'Lubuk Pakam'), ('120731', '1207', 'Pagar Merbau'), ('120732', '1207', 'Pantai Labu'), ('120733', '1207', 'Beringin'), ('120801', '1208', 'Siantar'), ('120802', '1208', 'Gunung Malela'), ('120803', '1208', 'Gunung Maligas'), ('120804', '1208', 'Panei'), ('120805', '1208', 'Panombeian Pane'), ('120806', '1208', 'Jorlang Hataran'), ('120807', '1208', 'Raya Kahean'), ('120808', '1208', 'Bosar Maligas'), ('120809', '1208', 'Sidamanik'), ('120810', '1208', 'Pematang Sidamanik'), ('120811', '1208', 'Tanah Jawa'), ('120812', '1208', 'Hatonduhan'), ('120813', '1208', 'Dolok Panribuan'), ('120814', '1208', 'Purba'), ('120815', '1208', 'Haranggaol Horison'), ('120816', '1208', 'Girsang Sipangan Bolon'), ('120817', '1208', 'Dolok Batu Nanggar'), ('120818', '1208', 'Huta Bayu Raja'), ('120819', '1208', 'Jawa Maraja Bah Jambi'), ('120820', '1208', 'Dolok Pardamean'), ('120821', '1208', 'Pematang Bandar'), ('120822', '1208', 'Bandar Huluan'), ('120823', '1208', 'Bandar'), ('120824', '1208', 'Bandar Masilam'), ('120825', '1208', 'Silimakuta'), ('120826', '1208', 'Dolok Silau'), ('120827', '1208', 'Silou Kahean'), ('120828', '1208', 'Tapian Dolok'), ('120829', '1208', 'Raya'), ('120830', '1208', 'Ujung Padang'), ('120831', '1208', 'Pamatang Silima Huta'), ('120908', '1209', 'Meranti'), ('120909', '1209', 'Air Joman'), ('120910', '1209', 'Tanjung Balai'), ('120911', '1209', 'Sei Kepayang'), ('120912', '1209', 'Simpang Empat'), ('120913', '1209', 'Air Batu'), ('120914', '1209', 'Pulau Rakyat'), ('120915', '1209', 'Bandar Pulau'), ('120916', '1209', 'Buntu Pane'), ('120917', '1209', 'Bandar Pasir Mandoge'), ('120918', '1209', 'Aek Kuasan'), ('120919', '1209', 'Kota Kisaran Barat'), ('120920', '1209', 'Kota Kisaran Timur'), ('120921', '1209', 'Aek Songsongan'), ('120922', '1209', 'Rahunig'), ('120923', '1209', 'Sei Dadap'), ('120924', '1209', 'Sei Kepayang Barat'), ('120925', '1209', 'Sei Kepayang Timur'), ('120926', '1209', 'Tinggi Raja'), ('120927', '1209', 'Setia Janji'), ('120928', '1209', 'Silau Laut'), ('120929', '1209', 'Rawang Panca Arga'), ('120930', '1209', 'Pulo Bandring'), ('120931', '1209', 'Teluk Dalam'), ('120932', '1209', 'Aek Ledong'), ('121001', '1210', 'Rantau Utara'), ('121002', '1210', 'Rantau Selatan'), ('121007', '1210', 'Bilah Barat'), ('121008', '1210', 'Bilah Hilir'), ('121009', '1210', 'Bilah Hulu'), ('121014', '1210', 'Pangkatan'), ('121018', '1210', 'Panai Tengah'), ('121019', '1210', 'Panai Hilir'), ('121020', '1210', 'Panai Hulu'), ('121101', '1211', 'Sidikalang'), ('121102', '1211', 'Sumbul'), ('121103', '1211', 'Tigalingga'), ('121104', '1211', 'Siempat Nempu'), ('121105', '1211', 'Silima Pungga Punga'), ('121106', '1211', 'Tanah Pinem'), ('121107', '1211', 'Siempat Nempu Hulu'), ('121108', '1211', 'Siempat Nempu Hilir'), ('121109', '1211', 'Pegagan Hilir'), ('121110', '1211', 'Parbuluan'), ('121111', '1211', 'Lae Parira'), ('121112', '1211', 'Gunung Sitember'), ('121113', '1211', 'Brampu'), ('121114', '1211', 'Silahisabungan'), ('121115', '1211', 'Sitinjo'), ('121201', '1212', 'Balige'), ('121202', '1212', 'Laguboti'), ('121203', '1212', 'Silaen'), ('121204', '1212', 'Habinsaran'), ('121205', '1212', 'Pintu Pohan Meranti'), ('121206', '1212', 'Borbor'), ('121207', '1212', 'Porsea'), ('121208', '1212', 'Ajibata'), ('121209', '1212', 'Lumban Julu'), ('121210', '1212', 'Uluan'), ('121219', '1212', 'Sigumpar'), ('121220', '1212', 'Siantar Narumonda'), ('121221', '1212', 'Nassau'), ('121222', '1212', 'Tampahan'), ('121223', '1212', 'Bonatua Lunasi'), ('121224', '1212', 'Parmaksian'), ('121301', '1213', 'Panyabungan'), ('121302', '1213', 'Panyabungan Utara'), ('121303', '1213', 'Panyabungan Timur'), ('121304', '1213', 'Panyabungan Selatan'), ('121305', '1213', 'Panyabungan Barat'), ('121306', '1213', 'Siabu'), ('121307', '1213', 'Bukit Malintang'), ('121308', '1213', 'Kotanopan'), ('121309', '1213', 'Lembah Sorik Marapi'), ('121310', '1213', 'Tambangan'), ('121311', '1213', 'Ulu Pungkut'), ('121312', '1213', 'Muara Sipongi'), ('121313', '1213', 'Batang Natal'), ('121314', '1213', 'Lingga Bayu'), ('121315', '1213', 'Batahan'), ('121316', '1213', 'Natal'), ('121317', '1213', 'Muara Batang Gadis'), ('121318', '1213', 'Ranto Baek'), ('121319', '1213', 'Huta Bargot'), ('121320', '1213', 'Puncak Sorik Marapi'), ('121321', '1213', 'Pakantan'), ('121322', '1213', 'Sinunukan'), ('121323', '1213', 'Naga Juang'), ('121401', '1214', 'Lolomatua'), ('121402', '1214', 'Gomo'), ('121403', '1214', 'Lahusa'), ('121404', '1214', 'Hibala'), ('121405', '1214', 'Pulau-Pulau Batu'), ('121406', '1214', 'Teluk Dalam'), ('121407', '1214', 'Amandraya'), ('121408', '1214', 'Lalowa\'u'), ('121409', '1214', 'Susua'), ('121410', '1214', 'Maniamolo'), ('121411', '1214', 'Hilimegai'), ('121412', '1214', 'Toma'), ('121413', '1214', 'Mazino'), ('121414', '1214', 'Umbunasi'), ('121415', '1214', 'Aramo'), ('121416', '1214', 'Pulau-Pulau Batu Timur'), ('121417', '1214', 'Mazo'), ('121418', '1214', 'Fanayama'), ('121419', '1214', 'Ulunoyo'), ('121420', '1214', 'Huruna'), ('121421', '1214', 'O\'o\'u'), ('121422', '1214', 'Onohazumba'), ('121423', '1214', 'Hilisalawa\'ahe'), ('121424', '1214', 'Ulususua'), ('121425', '1214', 'Sidua\'ori'), ('121426', '1214', 'Somambawa'), ('121427', '1214', 'Boronadu'), ('121428', '1214', 'Simuk'), ('121429', '1214', 'Pulau-Pulau Batu Barat'), ('121430', '1214', 'Pulau-Pulau Batu Utara'), ('121431', '1214', 'Tanah Masa'), ('121501', '1215', 'Sitelu Tali Urang Jehe'), ('121502', '1215', 'Kerajaan'), ('121503', '1215', 'Salak'), ('121504', '1215', 'Sitelu Tali Urang Julu'), ('121505', '1215', 'Pergetteng Getteng Sengkut'), ('121506', '1215', 'Pagindar'), ('121507', '1215', 'Tinada'), ('121508', '1215', 'Siempat Rube'), ('121601', '1216', 'Parlilitan'), ('121602', '1216', 'Pollung'), ('121603', '1216', 'Baktiraja'), ('121604', '1216', 'Paranginan'), ('121605', '1216', 'Lintong Nihuta'), ('121606', '1216', 'Dolok Sanggul'), ('121607', '1216', 'Sijamapolang'), ('121608', '1216', 'Onan Ganjang'), ('121609', '1216', 'Pakkat'), ('121610', '1216', 'Tarabintang'), ('121701', '1217', 'Simanindo'), ('121702', '1217', 'Onan Runggu'), ('121703', '1217', 'Nainggolan'), ('121704', '1217', 'Palipi'), ('121705', '1217', 'Harian'), ('121706', '1217', 'Sianjar Mula Mula'), ('121707', '1217', 'Ronggur Nihuta'), ('121708', '1217', 'Pangururan'), ('121709', '1217', 'Sitio-tio'), ('121801', '1218', 'Pantai Cermin'), ('121802', '1218', 'Perbaungan'), ('121803', '1218', 'Teluk Mengkudu'), ('121804', '1218', 'Sei. Rampah'), ('121805', '1218', 'Tanjung Beringin'), ('121806', '1218', 'Bandar Khalifah'), ('121807', '1218', 'Dolok Merawan'), ('121808', '1218', 'Sipispis'), ('121809', '1218', 'Dolok Masihul'), ('121810', '1218', 'Kotarih'), ('121811', '1218', 'Silinda'), ('121812', '1218', 'Serba Jadi'), ('121813', '1218', 'Tebing Tinggi'), ('121814', '1218', 'Pegajahan'), ('121815', '1218', 'Sei Bamban'), ('121816', '1218', 'Tebing Syahbandar'), ('121817', '1218', 'Bintang Bayu'), ('121901', '1219', 'Medang Deras'), ('121902', '1219', 'Sei Suka'), ('121903', '1219', 'Air Putih'), ('121904', '1219', 'Lima Puluh'), ('121905', '1219', 'Talawi'), ('121906', '1219', 'Tanjung Tiram'), ('121907', '1219', 'Sei Balai'), ('122001', '1220', 'Dolok Sigompulon'), ('122002', '1220', 'Dolok'), ('122003', '1220', 'Halongonan'), ('122004', '1220', 'Padang Bolak'), ('122005', '1220', 'Padang Bolak Julu'), ('122006', '1220', 'Portibi'), ('122007', '1220', 'Batang Onang'), ('122008', '1220', 'Simangambat'), ('122009', '1220', 'Hulu Sihapas'), ('122101', '1221', 'Sosopan'), ('122102', '1221', 'Barumun Tengah'), ('122103', '1221', 'Huristak'), ('122104', '1221', 'Lubuk Barumun'), ('122105', '1221', 'Huta Raja Tinggi'), ('122106', '1221', 'Ulu Barumun'), ('122107', '1221', 'Barumun'), ('122108', '1221', 'Sosa'), ('122109', '1221', 'Batang Lubu Sutam'), ('122110', '1221', 'Barumun Selatan'), ('122111', '1221', 'Aek Nabara Barumun'), ('122112', '1221', 'Sihapas Barumun'), ('122201', '1222', 'Kotapinang'), ('122202', '1222', 'Kampung Rakyat'), ('122203', '1222', 'Torgamba'), ('122204', '1222', 'Sungai Kanan'), ('122205', '1222', 'Silangkitang'), ('122301', '1223', 'Kualuh Hulu'), ('122302', '1223', 'Kualuh Leidong'), ('122303', '1223', 'Kualuh Hilir'), ('122304', '1223', 'Aek Kuo'), ('122305', '1223', 'Marbau'), ('122306', '1223', 'Na IX - X'), ('122307', '1223', 'Aek Natas'), ('122308', '1223', 'Kualuh Selatan'), ('122401', '1224', 'Lotu'), ('122402', '1224', 'Sawo'), ('122403', '1224', 'Tuhemberua'), ('122404', '1224', 'Sitolu Ori'), ('122405', '1224', 'Namohalu Esiwa'), ('122406', '1224', 'Alasa Talumuzoi'), ('122407', '1224', 'Alasa'), ('122408', '1224', 'Tugala Oyo'), ('122409', '1224', 'Afulu'), ('122410', '1224', 'Lahewa'), ('122411', '1224', 'Lahewa Timur'), ('122501', '1225', 'Lahomi'), ('122502', '1225', 'Sirombu'), ('122503', '1225', 'Mandrehe Barat'), ('122504', '1225', 'Moro\'o'), ('122505', '1225', 'Mandrehe'), ('122506', '1225', 'Mandrehe Utara'), ('122507', '1225', 'Lolofitu Moi'), ('122508', '1225', 'Ulu Moro\'o'), ('127101', '1271', 'Medan Kota'), ('127102', '1271', 'Medan Sunggal'), ('127103', '1271', 'Medan Helvetia'), ('127104', '1271', 'Medan Denai'), ('127105', '1271', 'Medan Barat'), ('127106', '1271', 'Medan Deli'), ('127107', '1271', 'Medan Tuntungan'), ('127108', '1271', 'Medan Belawan'), ('127109', '1271', 'Medan Amplas'), ('127110', '1271', 'Medan Area'), ('127111', '1271', 'Medan Johor'), ('127112', '1271', 'Medan Marelan'), ('127113', '1271', 'Medan Labuhan'), ('127114', '1271', 'Medan Tembung'), ('127115', '1271', 'Medan Maimun'), ('127116', '1271', 'Medan Polonia'), ('127117', '1271', 'Medan Baru'), ('127118', '1271', 'Medan Perjuangan'), ('127119', '1271', 'Medan Petisah'), ('127120', '1271', 'Medan Timur'), ('127121', '1271', 'Medan Selayang'), ('127201', '1272', 'Siantar Timur'), ('127202', '1272', 'Siantar Barat'), ('127203', '1272', 'Siantar Utara'), ('127204', '1272', 'Siantar Selatan'), ('127205', '1272', 'Siantar Marihat'), ('127206', '1272', 'Siantar Martoba'), ('127207', '1272', 'Siantar Sitalasari'), ('127208', '1272', 'Siantar Marimbun'), ('127301', '1273', 'Sibolga Utara'), ('127302', '1273', 'Sibolga Kota'), ('127303', '1273', 'Sibolga Selatan'), ('127304', '1273', 'Sibolga Sambas'), ('127401', '1274', 'Tanjung Balai Selatan'), ('127402', '1274', 'Tanjung Balai Utara'), ('127403', '1274', 'Sei Tualang Raso'), ('127404', '1274', 'Teluk Nibung'), ('127405', '1274', 'Datuk Bandar'), ('127406', '1274', 'Datuk Bandar Timur'), ('127501', '1275', 'Binjai Utara'), ('127502', '1275', 'Binjai Kota'), ('127503', '1275', 'Binjai Barat'), ('127504', '1275', 'Binjai Timur'), ('127505', '1275', 'Binjai Selatan'), ('127601', '1276', 'Padang Hulu'), ('127602', '1276', 'Rambutan'), ('127603', '1276', 'Padang Hilir'), ('127604', '1276', 'Bajenis'), ('127605', '1276', 'Tebing Tinggi Kota'), ('127701', '1277', 'Padangsidimpuan Utara'), ('127702', '1277', 'Padangsidimpuan Selatan'), ('127703', '1277', 'Padangsidimpuan Batunadua'), ('127704', '1277', 'Padangsidimpuan Hutaimbaru'), ('127705', '1277', 'Padangsidimpuan Tenggara'), ('127706', '1277', 'Padangsidimpuan Angkola Julu'), ('127801', '1278', 'Gunungsitoli'), ('127802', '1278', 'Gunungsitoli Selatan'), ('127803', '1278', 'Gunungsitoli Utara'), ('127804', '1278', 'Gunungsitoli Idanoi'), ('127805', '1278', 'Gunungsitoli Alo\'oa'), ('127806', '1278', 'Gunungsitoli Barat'), ('130101', '1301', 'Pancung Soal'), ('130102', '1301', 'Ranah Pesisir'), ('130103', '1301', 'Lengayang'), ('130104', '1301', 'Batang Kapas'), ('130105', '1301', 'IV Jurai'), ('130106', '1301', 'Bayang'), ('130107', '1301', 'Koto XI Tarusan'), ('130108', '1301', 'Sutera'), ('130109', '1301', 'Linggo Sari Baganti'), ('130110', '1301', 'Lunang'), ('130111', '1301', 'Basa Ampek Balai Tapan'), ('130112', '1301', 'IV Nagari Bayang Utara'), ('130113', '1301', 'Airpura'), ('130114', '1301', 'Ranah Ampek Hulu Tapan'), ('130115', '1301', 'Silaut'), ('130203', '1302', 'Pantai Cermin'), ('130204', '1302', 'Lembah Gumanti'), ('130205', '1302', 'Payung Sekaki'), ('130206', '1302', 'Lembang Jaya'), ('130207', '1302', 'Gunung Talang'), ('130208', '1302', 'Bukit Sundi'), ('130209', '1302', 'IX Koto Sungai Lasi'), ('130210', '1302', 'Kubung'), ('130211', '1302', 'X Koto Singkarak'), ('130212', '1302', 'X Koto Diatas'), ('130213', '1302', 'Junjung Sirih'), ('130217', '1302', 'Hiliran Gumanti'), ('130218', '1302', 'Tigo Lurah'), ('130219', '1302', 'Danau Kembar'), ('130303', '1303', 'Tanjung Gadang'), ('130304', '1303', 'Sijunjung'), ('130305', '1303', 'IV Nagari'), ('130306', '1303', 'Kamang Baru'), ('130307', '1303', 'Lubuak Tarok'), ('130308', '1303', 'Koto VII'), ('130309', '1303', 'Sumpur Kudus'), ('130310', '1303', 'Kupitan'), ('130401', '1304', 'X Koto'), ('130402', '1304', 'Batipuh'), ('130403', '1304', 'Rambatan'), ('130404', '1304', 'Lima Kaum'), ('130405', '1304', 'Tanjung Emas'), ('130406', '1304', 'Lintau Buo'), ('130407', '1304', 'Sungayang'), ('130408', '1304', 'Sungai Tarab'), ('130409', '1304', 'Pariangan'), ('130410', '1304', 'Salimpauang'), ('130411', '1304', 'Padang Ganting'), ('130412', '1304', 'Tanjuang Baru'), ('130413', '1304', 'Lintau Buo Utara'), ('130414', '1304', 'Batipuah Selatan'), ('130501', '1305', 'Lubuk Alung'), ('130502', '1305', 'Batang Anai'), ('130503', '1305', 'Nan Sabaris'), ('130504', '1305', 'x Enam Lingkuang'), ('130505', '1305', 'VII Koto Sungai Sarik'), ('130506', '1305', 'V Koto Kampung Dalam'), ('130507', '1305', 'Sungai Garingging'), ('130508', '1305', 'Sungai Limau'), ('130509', '1305', 'IV Koto Aur Malintang'), ('130510', '1305', 'Ulakan Tapakih'), ('130511', '1305', 'Sintuak Toboh Gadang'), ('130512', '1305', 'Padang Sago'), ('130513', '1305', 'Batang Gasan'), ('130514', '1305', 'V Koto Timur'), ('130515', '1305', 'x Kayu Tanam'), ('130516', '1305', 'Patamuan'), ('130517', '1305', 'Enam Lingkung'), ('130601', '1306', 'Tanjung Mutiara'), ('130602', '1306', 'Lubuk Basung'), ('130603', '1306', 'Tanjung Raya'), ('130604', '1306', 'Matur'), ('130605', '1306', 'IV Koto'), ('130606', '1306', 'Banuhampu'), ('130607', '1306', 'Ampek Angkek'), ('130608', '1306', 'Baso'), ('130609', '1306', 'Tilatang Kamang'), ('130610', '1306', 'Palupuh'), ('130611', '1306', 'Pelembayan'), ('130612', '1306', 'Sungai Pua'), ('130613', '1306', 'Ampek Nagari'), ('130614', '1306', 'Candung'), ('130615', '1306', 'Kamang Magek'), ('130616', '1306', 'Malalak'), ('130701', '1307', 'Suliki'), ('130702', '1307', 'Guguak'), ('130703', '1307', 'Payakumbuh'), ('130704', '1307', 'Luak'), ('130705', '1307', 'Harau'), ('130706', '1307', 'Pangkalan Koto Baru'), ('130707', '1307', 'Kapur IX'), ('130708', '1307', 'Gunuang Omeh'), ('130709', '1307', 'Lareh Sago Halaban'), ('130710', '1307', 'Situjuah Limo Nagari'), ('130711', '1307', 'Mungka'), ('130712', '1307', 'Bukik Barisan'), ('130713', '1307', 'Akabiluru'), ('130804', '1308', 'Bonjol'), ('130805', '1308', 'Lubuk Sikaping'), ('130807', '1308', 'Panti'), ('130808', '1308', 'Mapat Tunggul'), ('130812', '1308', 'Duo Koto'), ('130813', '1308', 'Tigo Nagari'), ('130814', '1308', 'Rao'), ('130815', '1308', 'Mapat Tunggul Selatan'), ('130816', '1308', 'Simpang Alahan Mati'), ('130817', '1308', 'Padang Gelugur'), ('130818', '1308', 'Rao Utara'), ('130819', '1308', 'Rao Selatan'), ('130901', '1309', 'Pagai Utara'), ('130902', '1309', 'Sipora Selatan'), ('130903', '1309', 'Siberut Selatan'), ('130904', '1309', 'Siberut Utara'), ('130905', '1309', 'Siberut Barat'), ('130906', '1309', 'Siberut Barat Daya'), ('130907', '1309', 'Siberut Tengah'), ('130908', '1309', 'Sipora Utara'), ('130909', '1309', 'Sikakap'), ('130910', '1309', 'Pagai Selatan'), ('131001', '1310', 'Koto Baru'), ('131002', '1310', 'Pulau Punjung'), ('131003', '1310', 'Sungai Rumbai'), ('131004', '1310', 'Sitiung'), ('131005', '1310', 'Sembilan Koto'), ('131006', '1310', 'Timpeh'), ('131007', '1310', 'Koto Salak'), ('131008', '1310', 'Tiumang'), ('131009', '1310', 'Padang Laweh'), ('131010', '1310', 'Asam Jujuhan'), ('131011', '1310', 'Koto Besar'), ('131101', '1311', 'Sangir'), ('131102', '1311', 'Sungai Pagu'), ('131103', '1311', 'Koto Parik Gadang Diateh'), ('131104', '1311', 'Sangir Jujuan'), ('131105', '1311', 'Sangir Batang Hari'), ('131106', '1311', 'Pauh Duo'), ('131107', '1311', 'Sangir Balai Janggo'), ('131201', '1312', 'Sungaiberemas'), ('131202', '1312', 'Lembah Melintang'), ('131203', '1312', 'Pasaman'), ('131204', '1312', 'Talamau'), ('131205', '1312', 'Kinali'), ('131206', '1312', 'Gunungtuleh'), ('131207', '1312', 'Ranah Batahan'), ('131208', '1312', 'Koto Balingka'), ('131209', '1312', 'Sungaiaur'), ('131210', '1312', 'Luhak Nan Duo'), ('131211', '1312', 'Sasak Ranah Pesisir'), ('137101', '1371', 'Padang Selatan'), ('137102', '1371', 'Padang Timur'), ('137103', '1371', 'Padang Barat'), ('137104', '1371', 'Padang Utara'), ('137105', '1371', 'Bungus Teluk Kabung'), ('137106', '1371', 'Lubuk Begalung'), ('137107', '1371', 'Lubuk Kilangan'), ('137108', '1371', 'Pauh'), ('137109', '1371', 'Kuranji'), ('137110', '1371', 'Nanggalo'), ('137111', '1371', 'Koto Tangah'), ('137201', '1372', 'Lubuk Sikarah'), ('137202', '1372', 'Tanjung Harapan'), ('137301', '1373', 'Lembah Segar'), ('137302', '1373', 'Barangin'), ('137303', '1373', 'Silungkang'), ('137304', '1373', 'Talawi'), ('137401', '1374', 'Padang Panjang Timur'), ('137402', '1374', 'Padang Panjang Barat'), ('137501', '1375', 'Guguak Panjang'), ('137502', '1375', 'Mandiangin K. Selayan'), ('137503', '1375', 'Aur Birugo Tigo Baleh'), ('137601', '1376', 'Payakumbuh Barat'), ('137602', '1376', 'Payakumbuh Utara'), ('137603', '1376', 'Payakumbuh Timur'), ('137604', '1376', 'Lamposi Tigo Nagori'), ('137605', '1376', 'Payakumbuh Selatan'), ('137701', '1377', 'Pariaman Tengah'), ('137702', '1377', 'Pariaman Utara'), ('137703', '1377', 'Pariaman Selatan'), ('137704', '1377', 'Pariaman Timur'), ('140101', '1401', 'Bangkinang Kota'), ('140102', '1401', 'Kampar'), ('140103', '1401', 'Tambang'), ('140104', '1401', 'XIII Koto Kampar'), ('140105', '1401', 'Kuok'), ('140106', '1401', 'Siak Hulu'), ('140107', '1401', 'Kampar Kiri'), ('140108', '1401', 'Kampar Kiri Hilir'), ('140109', '1401', 'Kampar Kiri Hulu'), ('140110', '1401', 'Tapung'), ('140111', '1401', 'Tapung Hilir'), ('140112', '1401', 'Tapung Hulu'), ('140113', '1401', 'Salo'), ('140114', '1401', 'Rumbio Jaya'), ('140115', '1401', 'Bangkinang'), ('140116', '1401', 'Perhentian Raja'), ('140117', '1401', 'Kampar Timur'), ('140118', '1401', 'Kampar Utara'), ('140119', '1401', 'Kampar Kiri Tengah'), ('140120', '1401', 'Gunung Sahilan'), ('140121', '1401', 'Koto Kampar Hulu'), ('140201', '1402', 'Rengat'), ('140202', '1402', 'Rengat Barat'), ('140203', '1402', 'Kelayang'), ('140204', '1402', 'Pasir Penyu'), ('140205', '1402', 'Peranap'), ('140206', '1402', 'Siberida'), ('140207', '1402', 'Batang Cenaku'), ('140208', '1402', 'Batang Gangsal'), ('140209', '1402', 'Lirik'), ('140210', '1402', 'Kuala Cenaku'), ('140211', '1402', 'Sungai Lala'), ('140212', '1402', 'Lubuk Batu Jaya'), ('140213', '1402', 'Rakit Kulim'), ('140214', '1402', 'Batang Peranap'), ('140301', '1403', 'Bengkalis'), ('140302', '1403', 'Bantan'), ('140303', '1403', 'Bukit Batu'), ('140309', '1403', 'Mandau'), ('140310', '1403', 'Rupat'), ('140311', '1403', 'Rupat Utara'), ('140312', '1403', 'Siak Kecil'), ('140313', '1403', 'Pinggir'), ('140401', '1404', 'Reteh'), ('140402', '1404', 'Enok'), ('140403', '1404', 'Kuala Indragiri'), ('140404', '1404', 'Tembilahan'), ('140405', '1404', 'Tempuling'), ('140406', '1404', 'Gaung Anak Serka'), ('140407', '1404', 'Mandah'), ('140408', '1404', 'Kateman'), ('140409', '1404', 'Keritang'), ('140410', '1404', 'Tanah Merah'), ('140411', '1404', 'Batang Tuaka'), ('140412', '1404', 'Gaung'), ('140413', '1404', 'Tembilahan Hulu'), ('140414', '1404', 'Kemuning'), ('140415', '1404', 'Pelangiran'), ('140416', '1404', 'Teluk Belengkong'), ('140417', '1404', 'Pulau Burung'), ('140418', '1404', 'Concong'), ('140419', '1404', 'Kempas'), ('140420', '1404', 'Sungai Batang'), ('140501', '1405', 'Ukui'), ('140502', '1405', 'Pangkalan Kerinci'), ('140503', '1405', 'Pangkalan Kuras'), ('140504', '1405', 'Pangkalan Lesung'), ('140505', '1405', 'Langgam'), ('140506', '1405', 'Pelalawan'), ('140507', '1405', 'Kerumutan'), ('140508', '1405', 'Bunut'), ('140509', '1405', 'Teluk Meranti'), ('140510', '1405', 'Kuala Kampar'), ('140511', '1405', 'Bandar Sei Kijang'), ('140512', '1405', 'Bandar Petalangan'), ('140601', '1406', 'Ujung Batu'), ('140602', '1406', 'Rokan IV Koto'), ('140603', '1406', 'Rambah'), ('140604', '1406', 'Tambusai'), ('140605', '1406', 'Kepenuhan'), ('140606', '1406', 'Kunto Darussalam'), ('140607', '1406', 'Rambah Samo'), ('140608', '1406', 'Rambah Hilir'), ('140609', '1406', 'Tambusai Utara'), ('140610', '1406', 'Bangun Purba'), ('140611', '1406', 'Tandun'), ('140612', '1406', 'Kabun'), ('140613', '1406', 'Bonai Darussalam'), ('140614', '1406', 'Pagaran Tapah Darussalam'), ('140615', '1406', 'Kepenuhan Hulu'), ('140616', '1406', 'Pendalian IV Koto'), ('140701', '1407', 'Kubu'), ('140702', '1407', 'Bangko'), ('140703', '1407', 'Tanah Putih'), ('140704', '1407', 'Rimba Melintang'), ('140705', '1407', 'Bagan Sinembah'), ('140706', '1407', 'Pasir Limau Kapas'), ('140707', '1407', 'Sinaboi'), ('140708', '1407', 'Pujud'), ('140709', '1407', 'Tanah Putih Tanjung Melawan'), ('140710', '1407', 'Bangko Pusako'), ('140711', '1407', 'Simpang Kanan'), ('140712', '1407', 'Batu Hampar'), ('140713', '1407', 'Rantau Kopar'), ('140714', '1407', 'Pekaitan'), ('140715', '1407', 'Kubu Babussalam'), ('140801', '1408', 'Siak'), ('140802', '1408', 'Sungai Apit'), ('140803', '1408', 'Minas'), ('140804', '1408', 'Tualang'), ('140805', '1408', 'Sungai Mandau'), ('140806', '1408', 'Dayun'), ('140807', '1408', 'Kerinci Kanan'), ('140808', '1408', 'Bunga Raya'), ('140809', '1408', 'Koto Gasib'), ('140810', '1408', 'Kandis'), ('140811', '1408', 'Lubuk Dalam'), ('140812', '1408', 'Sabak Auh'), ('140813', '1408', 'Mempura'), ('140814', '1408', 'Pusako'), ('140901', '1409', 'Kuantan Mudik'), ('140902', '1409', 'Kuantan Tengah'), ('140903', '1409', 'Singingi'), ('140904', '1409', 'Kuantan Hilir'), ('140905', '1409', 'Cerenti'), ('140906', '1409', 'Benai'), ('140907', '1409', 'Gunungtoar'), ('140908', '1409', 'Singingi Hilir'), ('140909', '1409', 'Pangean'), ('140910', '1409', 'Logas Tanah Darat'), ('140911', '1409', 'Inuman'), ('140912', '1409', 'Hulu Kuantan'), ('140913', '1409', 'Kuantan Hilir Seberang'), ('140914', '1409', 'Sentajo Raya'), ('140915', '1409', 'Pucuk Rantau'), ('141001', '1410', 'Tebing Tinggi'), ('141002', '1410', 'Rangsang Barat'), ('141003', '1410', 'Rangsang'), ('141004', '1410', 'Tebing Tinggi Barat'), ('141005', '1410', 'Merbau'), ('141006', '1410', 'Pulaumerbau'), ('141007', '1410', 'Tebing Tinggi Timur'), ('141008', '1410', 'Tasik Putri Puyu'), ('141009', '1410', 'Rangsang Pesisir'), ('147101', '1471', 'Sukajadi'), ('147102', '1471', 'Pekanbaru Kota'), ('147103', '1471', 'Sail'), ('147104', '1471', 'Lima Puluh'), ('147105', '1471', 'Senapelan'), ('147106', '1471', 'Rumbai'), ('147107', '1471', 'Bukit Raya'), ('147108', '1471', 'Tampan'), ('147109', '1471', 'Marpoyan Damai'), ('147110', '1471', 'Tenayan Raya'), ('147111', '1471', 'Payung Sekaki'), ('147112', '1471', 'Rumbai Pesisir'), ('147201', '1472', 'Dumai Barat'), ('147202', '1472', 'Dumai Timur'), ('147203', '1472', 'Bukit Kapur'), ('147204', '1472', 'Sungai Sembilan'), ('147205', '1472', 'Medang Kampai'), ('147206', '1472', 'Dumai Kota'), ('147207', '1472', 'Dumai Selatan'), ('150101', '1501', 'Gunung Raya'), ('150102', '1501', 'Danau Kerinci'), ('150104', '1501', 'Sitinjau Laut'), ('150105', '1501', 'Air Hangat'), ('150106', '1501', 'Gunung Kerinci'), ('150107', '1501', 'Batang Merangin'), ('150108', '1501', 'Keliling Danau'), ('150109', '1501', 'Kayu Aro'), ('150111', '1501', 'Air Hangat Timur'), ('150115', '1501', 'Gunung Tujuh'), ('150116', '1501', 'Siulak'), ('150117', '1501', 'Depati Tujuh'), ('150118', '1501', 'Siulak Mukai'), ('150119', '1501', 'Kayu Aro Barat'), ('150120', '1501', 'Bukitkerman'), ('150121', '1501', 'Air Hangat Barat'), ('150201', '1502', 'Jangkat'), ('150202', '1502', 'Bangko'), ('150203', '1502', 'Muara Siau'), ('150204', '1502', 'Sungai Manau'), ('150205', '1502', 'Tabir'), ('150206', '1502', 'Pamenang'), ('150207', '1502', 'Tabir Ulu'), ('150208', '1502', 'Tabir Selatan'), ('150209', '1502', 'Lembah Masurai'), ('150210', '1502', 'Bangko Barat'), ('150211', '1502', 'Nalo Tatan'), ('150212', '1502', 'Batang Masumai'), ('150213', '1502', 'Pamenang Barat'), ('150214', '1502', 'Tabir Ilir'), ('150215', '1502', 'Tabir Timur'), ('150216', '1502', 'Renah Pembarap'), ('150217', '1502', 'Pangkalan Jambu'), ('150218', '1502', 'Sungai Tenang'), ('150219', '1502', 'Renah Pamenang'), ('150220', '1502', 'Pamenang Selatan'), ('150221', '1502', 'Margo Tabir'), ('150222', '1502', 'Tabir Lintas'), ('150223', '1502', 'Tabir Barat'), ('150224', '1502', 'Tiang Pumpung'), ('150301', '1503', 'Batang Asai'), ('150302', '1503', 'Limun'), ('150303', '1503', 'Sarolangun'), ('150304', '1503', 'Pauh'), ('150305', '1503', 'Pelawan'), ('150306', '1503', 'Mandiangin'), ('150307', '1503', 'Air Hitam'), ('150308', '1503', 'Bathin VIII'), ('150309', '1503', 'Singkut'), ('150310', '1503', 'Cermin Nan Gedang'), ('150401', '1504', 'Mersam'), ('150402', '1504', 'Muara Tembesi'), ('150403', '1504', 'Muara Bulian'), ('150404', '1504', 'Batin XXIV'), ('150405', '1504', 'Pemayung'), ('150406', '1504', 'Maro Sebo Ulu'), ('150407', '1504', 'Bajubang'), ('150408', '1504', 'Maro Sebo Ilir'), ('150501', '1505', 'Jambi Luar Kota'), ('150502', '1505', 'Sekernan'), ('150503', '1505', 'Kumpeh'), ('150504', '1505', 'Maro Sebo'), ('150505', '1505', 'Mestong'), ('150506', '1505', 'Kumpeh Ulu'), ('150507', '1505', 'Sungai Bahar'), ('150508', '1505', 'Sungai Gelam'), ('150509', '1505', 'Bahar Utara'), ('150510', '1505', 'Bahar Selatan'), ('150511', '1505', 'Taman Rajo'), ('150601', '1506', 'Tungkal Ulu'), ('150602', '1506', 'Tungkal Ilir'), ('150603', '1506', 'Pengabuan'), ('150604', '1506', 'Betara'), ('150605', '1506', 'Merlung'), ('150606', '1506', 'Tebing Tinggi'), ('150607', '1506', 'Batang Asam'), ('150608', '1506', 'Renah Mendaluh'), ('150609', '1506', 'Muara Papalik'), ('150610', '1506', 'Seberang Kota'), ('150611', '1506', 'Bram Itam'), ('150612', '1506', 'Kuala Betara'), ('150613', '1506', 'Senyerang'), ('150701', '1507', 'Muara Sabak Timur'), ('150702', '1507', 'Nipah Panjang'), ('150703', '1507', 'Mendahara'), ('150704', '1507', 'Rantau Rasau'), ('150705', '1507', 'S a d u'), ('150706', '1507', 'Dendang'), ('150707', '1507', 'Muara Sabak Barat'), ('150708', '1507', 'Kuala Jambi'), ('150709', '1507', 'Mendahara Ulu'), ('150710', '1507', 'Geragai'), ('150711', '1507', 'Berbak'), ('150801', '1508', 'Tanah Tumbuh'), ('150802', '1508', 'Rantau Pandan'), ('150803', '1508', 'Pasar Muaro Bungo'), ('150804', '1508', 'Jujuhan'), ('150805', '1508', 'Tanah Sepenggal'), ('150806', '1508', 'Pelepat'), ('150807', '1508', 'Limbur Lubuk Mengkuang'), ('150808', '1508', 'Muko-muko Bathin VII'), ('150809', '1508', 'Pelepat Ilir'), ('150810', '1508', 'Batin II Babeko'), ('150811', '1508', 'Bathin III'), ('150812', '1508', 'Bungo Dani'), ('150813', '1508', 'Rimbo Tengah'), ('150814', '1508', 'Bathin III Ulu'), ('150815', '1508', 'Bathin II Pelayang'), ('150816', '1508', 'Jujuhan Ilir'), ('150817', '1508', 'Tanah Sepenggal Lintas'), ('150901', '1509', 'Tebo Tengah'), ('150902', '1509', 'Tebo Ilir'), ('150903', '1509', 'Tebo Ulu'), ('150904', '1509', 'Rimbo Bujang'), ('150905', '1509', 'Sumay'), ('150906', '1509', 'VII Koto'), ('150907', '1509', 'Rimbo Ulu'), ('150908', '1509', 'Rimbo Ilir'), ('150909', '1509', 'Tengah Ilir'), ('150910', '1509', 'Serai Serumpun'), ('150911', '1509', 'VII Koto Ilir'), ('150912', '1509', 'Muara Tabir'), ('157101', '1571', 'Telanaipura'), ('157102', '1571', 'Jambi Selatan'), ('157103', '1571', 'Jambi Timur'), ('157104', '1571', 'Pasar Jambi'), ('157105', '1571', 'Pelayangan'), ('157106', '1571', 'Danau Teluk'), ('157107', '1571', 'Kota Baru'), ('157108', '1571', 'Jelutung'), ('157201', '1572', 'Sungai Penuh'), ('157202', '1572', 'Pesisir Bukit'), ('157203', '1572', 'Hamparan Rawang'), ('157204', '1572', 'Tanah Kampung'), ('157205', '1572', 'Kumun Debai'), ('157206', '1572', 'Pondok Tinggi'), ('157207', '1572', 'Koto Baru'), ('157208', '1572', 'Sungai Bungkal'), ('160107', '1601', 'Sosoh Buay Rayap'), ('160108', '1601', 'Pengandonan'), ('160109', '1601', 'Peninjauan'), ('160113', '1601', 'Baturaja Barat'), ('160114', '1601', 'Baturaja Timur'), ('160120', '1601', 'Ulu Ogan'), ('160121', '1601', 'Semidang Aji'), ('160122', '1601', 'Lubuk Batang'), ('160128', '1601', 'Lengkiti'), ('160129', '1601', 'Sinar Peninjauan'), ('160130', '1601', 'Lubuk Raja'), ('160131', '1601', 'Muara Jaya'), ('160202', '1602', 'Tanjung Lubuk'), ('160203', '1602', 'Pedamaran'), ('160204', '1602', 'Mesuji'), ('160205', '1602', 'Kayu Agung'), ('160208', '1602', 'Sirah Pulau Padang'), ('160211', '1602', 'Tulung Selapan'), ('160212', '1602', 'Pampangan'), ('160213', '1602', 'Lempuing'), ('160214', '1602', 'Air Sugihan'), ('160215', '1602', 'Sungai Menang'), ('160217', '1602', 'Jejawi'), ('160218', '1602', 'Cengal'), ('160219', '1602', 'Pangkalan Lampam'), ('160220', '1602', 'Mesuji Makmur'), ('160221', '1602', 'Mesuji Raya'), ('160222', '1602', 'Lempuing Jaya'), ('160223', '1602', 'Teluk Gelam'), ('160224', '1602', 'Pedamaran Timur'), ('160301', '1603', 'Tanjung Agung'), ('160302', '1603', 'Muara Enim'), ('160303', '1603', 'Rambang Dangku'), ('160304', '1603', 'Gunung Megang'), ('160306', '1603', 'Gelumbang'), ('160307', '1603', 'Lawang Kidul'), ('160308', '1603', 'Semende Darat Laut'), ('160309', '1603', 'Semende Darat Tengah'), ('160310', '1603', 'Semende Darat Ulu'), ('160311', '1603', 'Ujan Mas'), ('160314', '1603', 'Lubai'), ('160315', '1603', 'Rambang'), ('160316', '1603', 'Sungai Rotan'), ('160317', '1603', 'Lembak'), ('160319', '1603', 'Benakat'), ('160321', '1603', 'Kelekar'), ('160322', '1603', 'Muara Belida'), ('160323', '1603', 'Belimbing'), ('160324', '1603', 'Belida Darat'), ('160325', '1603', 'Lubai Ulu'), ('160401', '1604', 'Tanjungsakti Pumu'), ('160406', '1604', 'Jarai'), ('160407', '1604', 'Kota Agung'), ('160408', '1604', 'Pulaupinang'), ('160409', '1604', 'Merapi Barat'), ('160410', '1604', 'Lahat'), ('160412', '1604', 'Pajar Bulan'), ('160415', '1604', 'Mulak Ulu'), ('160416', '1604', 'Kikim Selatan'), ('160417', '1604', 'Kikim Timur'), ('160418', '1604', 'Kikim Tengah'), ('160419', '1604', 'Kikim Barat'), ('160420', '1604', 'Pseksu'), ('160421', '1604', 'Gumay Talang'), ('160422', '1604', 'Pagar Gunung'), ('160423', '1604', 'Merapi Timur'), ('160424', '1604', 'Tanjung Sakti Pumi'), ('160425', '1604', 'Gumay Ulu'), ('160426', '1604', 'Merapi Selatan'), ('160427', '1604', 'Tanjungtebat'), ('160428', '1604', 'Muarapayang'), ('160429', '1604', 'Sukamerindu'), ('160501', '1605', 'Tugumulyo'), ('160502', '1605', 'Muara Lakitan'), ('160503', '1605', 'Muara Kelingi'), ('160508', '1605', 'Jayaloka'), ('160509', '1605', 'Muara Beliti'), ('160510', '1605', 'STL Ulu Terawas'), ('160511', '1605', 'Selangit'), ('160512', '1605', 'Megang Sakti'), ('160513', '1605', 'Purwodadi'), ('160514', '1605', 'BTS. Ulu'), ('160518', '1605', 'Tiang Pumpung Kepungut'), ('160519', '1605', 'Sumber Harta'), ('160520', '1605', 'Tuah Negeri'), ('160521', '1605', 'Suka Karya'), ('160601', '1606', 'Sekayu'), ('160602', '1606', 'Lais'), ('160603', '1606', 'Sungai Keruh'), ('160604', '1606', 'Batang Hari Leko'), ('160605', '1606', 'Sanga Desa'), ('160606', '1606', 'Babat Toman'), ('160607', '1606', 'Sungai Lilin'), ('160608', '1606', 'Keluang'), ('160609', '1606', 'Bayung Lencir'), ('160610', '1606', 'Plakat Tinggi'), ('160611', '1606', 'Lalan'), ('160612', '1606', 'Tungkal Jaya'), ('160613', '1606', 'Lawang Wetan'), ('160614', '1606', 'Babat Supat'), ('160701', '1607', 'Banyuasin I'), ('160702', '1607', 'Banyuasin II'), ('160703', '1607', 'Banyuasin III'), ('160704', '1607', 'Pulau Rimau'), ('160705', '1607', 'Betung'), ('160706', '1607', 'Rambutan'), ('160707', '1607', 'Muara Padang'), ('160708', '1607', 'Muara Telang'), ('160709', '1607', 'Makarti Jaya'), ('160710', '1607', 'Talang Kelapa'), ('160711', '1607', 'Rantau Bayur'), ('160712', '1607', 'Tanjung Lago'), ('160713', '1607', 'Muara Sugihan'), ('160714', '1607', 'Air Salek'), ('160715', '1607', 'Tungkal Ilir'), ('160716', '1607', 'Suak Tapeh'), ('160717', '1607', 'Sembawa'), ('160718', '1607', 'Sumber Marga Telang'), ('160719', '1607', 'Air Kumbang'), ('160801', '1608', 'Martapura'), ('160802', '1608', 'Buay Madang'), ('160803', '1608', 'Belitang'), ('160804', '1608', 'Cempaka'), ('160805', '1608', 'Buay Pemuka Peliung'), ('160806', '1608', 'Madang Suku II'), ('160807', '1608', 'Madang Suku I'), ('160808', '1608', 'Semendawai Suku III'), ('160809', '1608', 'Belitang II'), ('160810', '1608', 'Belitang III'), ('160811', '1608', 'Bunga Mayang'), ('160812', '1608', 'Buay Madang Timur'), ('160813', '1608', 'Madang Suku III'), ('160814', '1608', 'Semendawai Barat'), ('160815', '1608', 'Semendawai Timur'), ('160816', '1608', 'Jayapura'), ('160817', '1608', 'Belitang Jaya'), ('160818', '1608', 'Belitang Madang Raya'), ('160819', '1608', 'Belitang Mulya'), ('160820', '1608', 'Buay Pemuka Bangsa Raja'), ('160901', '1609', 'Muara Dua'), ('160902', '1609', 'Pulau Beringin'), ('160903', '1609', 'Banding Agung'), ('160904', '1609', 'Muara Dua Kisam'), ('160905', '1609', 'Simpang'), ('160906', '1609', 'Buay Sandang Aji'), ('160907', '1609', 'Buay Runjung'), ('160908', '1609', 'Mekakau Ilir'), ('160909', '1609', 'Buay Pemaca'), ('160910', '1609', 'Kisam Tinggi'), ('160911', '1609', 'Kisam Ilir'), ('160912', '1609', 'Buay Pematang Ribu Ranau Tengah'), ('160913', '1609', 'Warkuk Ranau Selatan'), ('160914', '1609', 'Runjung Agung'), ('160915', '1609', 'Sungai Are'), ('160916', '1609', 'Sindang Danau'), ('160917', '1609', 'Buana Pemaca'), ('160918', '1609', 'Tiga Dihaji'), ('160919', '1609', 'Buay Rawan'), ('161001', '1610', 'Muara Kuang'), ('161002', '1610', 'Tanjung Batu'), ('161003', '1610', 'Tanjung Raja'), ('161004', '1610', 'Indralaya'), ('161005', '1610', 'Pemulutan'), ('161006', '1610', 'Rantau Alai'), ('161007', '1610', 'Indralaya Utara'), ('161008', '1610', 'Indralaya Selatan'), ('161009', '1610', 'Pemulutan Selatan'), ('161010', '1610', 'Pemulutan Barat'), ('161011', '1610', 'Rantau Panjang'), ('161012', '1610', 'Sungai Pinang'), ('161013', '1610', 'Kandis'), ('161014', '1610', 'Rambang Kuang'), ('161015', '1610', 'Lubuk Keliat'), ('161016', '1610', 'Payaraman'), ('161101', '1611', 'Muara Pinang'), ('161102', '1611', 'Pendopo'), ('161103', '1611', 'Ulu Musi'), ('161104', '1611', 'Tebing Tinggi'), ('161105', '1611', 'Lintang Kanan'), ('161106', '1611', 'Talang Padang'), ('161107', '1611', 'Pasemah Air Keruh'), ('161108', '1611', 'Sikap Dalam'), ('161109', '1611', 'Saling'), ('161110', '1611', 'Pendopo Barat'), ('161201', '1612', 'Talang Ubi'), ('161202', '1612', 'Penukal Utara'), ('161203', '1612', 'Penukal'), ('161204', '1612', 'Abab'), ('161205', '1612', 'Tanah Abang'), ('161301', '1613', 'Rupit'), ('161302', '1613', 'Rawas Ulu'), ('161303', '1613', 'Nibung'), ('161304', '1613', 'Rawas Ilir'), ('161305', '1613', 'Karang Dapo'), ('161306', '1613', 'Karang Jaya'), ('161307', '1613', 'Ulu Rawas'), ('167101', '1671', 'Ilir Barat II'), ('167102', '1671', 'Seberang Ulu I'), ('167103', '1671', 'Seberang Ulu II'), ('167104', '1671', 'Ilir Barat I'), ('167105', '1671', 'Ilir Timur I'), ('167106', '1671', 'Ilir Timur II'), ('167107', '1671', 'Sukarami'), ('167108', '1671', 'Sako'), ('167109', '1671', 'Kemuning'), ('167110', '1671', 'Kalidoni'), ('167111', '1671', 'Bukit Kecil'), ('167112', '1671', 'Gandus'), ('167113', '1671', 'Kertapati'), ('167114', '1671', 'Plaju'), ('167115', '1671', 'Alang-alang Lebar'), ('167116', '1671', 'Sematang Borang'), ('167201', '1672', 'Pagar Alam Utara'), ('167202', '1672', 'Pagar Alam Selatan'), ('167203', '1672', 'Dempo Utara'), ('167204', '1672', 'Dempo Selatan'), ('167205', '1672', 'Dempo Tengah'), ('167301', '1673', 'Lubuk Linggau Timur I'), ('167302', '1673', 'Lubuk Linggau Barat I'), ('167303', '1673', 'Lubuk Linggau Selatan I'), ('167304', '1673', 'Lubuk Linggau Utara I'), ('167305', '1673', 'Lubuk Linggau Timur II'), ('167306', '1673', 'Lubuk Linggau Barat II'), ('167307', '1673', 'Lubuk Linggau Selatan II'), ('167308', '1673', 'Lubuk Linggau Utara II'), ('167401', '1674', 'Prabumulih Barat'), ('167402', '1674', 'Prabumulih Timur'), ('167403', '1674', 'Cambai'), ('167404', '1674', 'Rambang Kpk Tengah'), ('167405', '1674', 'Prabumulih Utara'), ('167406', '1674', 'Prabumulih Selatan'), ('170101', '1701', 'Kedurang'), ('170102', '1701', 'Seginim'), ('170103', '1701', 'Pino'), ('170104', '1701', 'Manna'), ('170105', '1701', 'Kota Manna'), ('170106', '1701', 'Pino Raya'), ('170107', '1701', 'Kedurang Ilir'), ('170108', '1701', 'Air Nipis'), ('170109', '1701', 'Ulu Manna'), ('170110', '1701', 'Bunga Mas'), ('170111', '1701', 'Pasar Manna'), ('170206', '1702', 'Kota Padang'), ('170207', '1702', 'Padang Ulak Tanding'), ('170208', '1702', 'Sindang Kelingi'), ('170209', '1702', 'Curup'), ('170210', '1702', 'Bermani Ulu'), ('170211', '1702', 'Selupu Rejang'), ('170216', '1702', 'Curup Utara'), ('170217', '1702', 'Curup Timur'), ('170218', '1702', 'Curup Selatan'), ('170219', '1702', 'Curup Tengah'), ('170220', '1702', 'Binduriang'), ('170221', '1702', 'Sindang Beliti Ulu'), ('170222', '1702', 'Sindang Dataran'), ('170223', '1702', 'Sindang Beliti Ilir'), ('170224', '1702', 'Bermani Ulu Raya'), ('170301', '1703', 'Enggano'), ('170306', '1703', 'Kerkap'), ('170307', '1703', 'Kota Arga Makmur'), ('170308', '1703', 'Giri Mulya'), ('170309', '1703', 'Padang Jaya'), ('170310', '1703', 'Lais'), ('170311', '1703', 'Batik Nau'), ('170312', '1703', 'Ketahun'), ('170313', '1703', 'Napal Putih'), ('170314', '1703', 'Putri Hijau'), ('170315', '1703', 'Air Besi'), ('170316', '1703', 'Air Napal'), ('170319', '1703', 'Hulu Palik'), ('170320', '1703', 'Air Padang'), ('170321', '1703', 'Arma Jaya'), ('170322', '1703', 'Tanjung Agung Palik'), ('170323', '1703', 'Ulok Kupai'), ('170401', '1704', 'Kinal'), ('170402', '1704', 'Tanjung Kemuning'), ('170403', '1704', 'Kaur Utara'), ('170404', '1704', 'Kaur Tengah'), ('170405', '1704', 'Kaur Selatan'), ('170406', '1704', 'Maje'), ('170407', '1704', 'Nasal'), ('170408', '1704', 'Semidang Gumay'), ('170409', '1704', 'Kelam Tengah'), ('170410', '1704', 'Luas'), ('170411', '1704', 'Muara Sahung'), ('170412', '1704', 'Tetap'), ('170413', '1704', 'Lungkang Kule'), ('170414', '1704', 'Padang Guci Hilir'), ('170415', '1704', 'Padang Guci Hulu'), ('170501', '1705', 'Sukaraja'), ('170502', '1705', 'Seluma'), ('170503', '1705', 'Talo'), ('170504', '1705', 'Semidang Alas'), ('170505', '1705', 'Semidang Alas Maras'), ('170506', '1705', 'Air Periukan'), ('170507', '1705', 'Lubuk Sandi'), ('170508', '1705', 'Seluma Barat'), ('170509', '1705', 'Seluma Timur'), ('170510', '1705', 'Seluma Utara'); INSERT INTO `kecamatan` (`id_kec`, `id_kab`, `nama`) VALUES ('170511', '1705', 'Seluma Selatan'), ('170512', '1705', 'Talo Kecil'), ('170513', '1705', 'Ulu Talo'), ('170514', '1705', 'Ilir Talo'), ('170601', '1706', 'Lubuk Pinang'), ('170602', '1706', 'Kota Mukomuko'), ('170603', '1706', 'Teras Terunjam'), ('170604', '1706', 'Pondok Suguh'), ('170605', '1706', 'Ipuh'), ('170606', '1706', 'Malin Deman'), ('170607', '1706', 'Air Rami'), ('170608', '1706', 'Teramang Jaya'), ('170609', '1706', 'Selagan Raya'), ('170610', '1706', 'Penarik'), ('170611', '1706', 'XIV Koto'), ('170612', '1706', 'V Koto'), ('170613', '1706', 'Air Majunto'), ('170614', '1706', 'Air Dikit'), ('170615', '1706', 'Sungai Rumbai'), ('170701', '1707', 'Lebong Utara'), ('170702', '1707', 'Lebong Atas'), ('170703', '1707', 'Lebong Tengah'), ('170704', '1707', 'Lebong Selatan'), ('170705', '1707', 'Rimbo Pengadang'), ('170706', '1707', 'Topos'), ('170707', '1707', 'Bingin Kuning'), ('170708', '1707', 'Lebong Sakti'), ('170709', '1707', 'Pelabai'), ('170710', '1707', 'Amen'), ('170711', '1707', 'Uram Jaya'), ('170712', '1707', 'Pinang Belapis'), ('170801', '1708', 'Bermani Ilir'), ('170802', '1708', 'Ujan Mas'), ('170803', '1708', 'Tebat Karai'), ('170804', '1708', 'Kepahiang'), ('170805', '1708', 'Merigi'), ('170806', '1708', 'Kebawetan'), ('170807', '1708', 'Seberang Musi'), ('170808', '1708', 'Muara Kemumu'), ('170901', '1709', 'Karang Tinggi'), ('170902', '1709', 'Talang Empat'), ('170903', '1709', 'Pondok Kelapa'), ('170904', '1709', 'Pematang Tiga'), ('170905', '1709', 'Pagar Jati'), ('170906', '1709', 'Taba Penanjung'), ('170907', '1709', 'Merigi Kelindang'), ('170908', '1709', 'Merigi Sakti'), ('170909', '1709', 'Pondok Kubang'), ('170910', '1709', 'Bang Haji'), ('177101', '1771', 'Selebar'), ('177102', '1771', 'Gading Cempaka'), ('177103', '1771', 'Teluk Segara'), ('177104', '1771', 'Muara Bangka Hulu'), ('177105', '1771', 'Kampung Melayu'), ('177106', '1771', 'Ratu Agung'), ('177107', '1771', 'Ratu Samban'), ('177108', '1771', 'Sungai Serut'), ('177109', '1771', 'Singaran Pati'), ('180104', '1801', 'Natar'), ('180105', '1801', 'Tanjung Bintang'), ('180106', '1801', 'Kalianda'), ('180107', '1801', 'Sidomulyo'), ('180108', '1801', 'Katibung'), ('180109', '1801', 'Penengahan'), ('180110', '1801', 'Palas'), ('180113', '1801', 'Jati Agung'), ('180114', '1801', 'Ketapang'), ('180115', '1801', 'Sragi'), ('180116', '1801', 'Raja Basa'), ('180117', '1801', 'Candipuro'), ('180118', '1801', 'Merbau Mataram'), ('180121', '1801', 'Bakauheni'), ('180122', '1801', 'Tanjung Sari'), ('180123', '1801', 'Way Sulan'), ('180124', '1801', 'Way Panji'), ('180201', '1802', 'Kalirejo'), ('180202', '1802', 'Bangun Rejo'), ('180203', '1802', 'Padang Ratu'), ('180204', '1802', 'Gunung Sugih'), ('180205', '1802', 'Trimurjo'), ('180206', '1802', 'Punggur'), ('180207', '1802', 'Terbanggi Besar'), ('180208', '1802', 'Seputih Raman'), ('180209', '1802', 'Rumbia'), ('180210', '1802', 'Seputih Banyak'), ('180211', '1802', 'Seputih Mataram'), ('180212', '1802', 'Seputih Surabaya'), ('180213', '1802', 'Terusan Nunyai'), ('180214', '1802', 'Bumi Ratu Nuban'), ('180215', '1802', 'Bekri'), ('180216', '1802', 'Seputih Agung'), ('180217', '1802', 'Way Pangubuan'), ('180218', '1802', 'Bandar Mataram'), ('180219', '1802', 'Pubian'), ('180220', '1802', 'Selagai Lingga'), ('180221', '1802', 'Anak Tuha'), ('180222', '1802', 'Sendang Agung'), ('180223', '1802', 'Kota Gajah'), ('180224', '1802', 'Bumi Nabung'), ('180225', '1802', 'Way Seputih'), ('180226', '1802', 'Bandar Surabaya'), ('180227', '1802', 'Anak Ratu Aji'), ('180228', '1802', 'Putra Rumbia'), ('180301', '1803', 'Bukit Kemuning'), ('180302', '1803', 'Kotabumi'), ('180303', '1803', 'Sungkai Selatan'), ('180304', '1803', 'Tanjung Raja'), ('180305', '1803', 'Abung Timur'), ('180306', '1803', 'Abung Barat'), ('180307', '1803', 'Abung Selatan'), ('180308', '1803', 'Sungkai Utara'), ('180309', '1803', 'Kotabumi Utara'), ('180310', '1803', 'Kotabumi Selatan'), ('180311', '1803', 'Abung Tengah'), ('180312', '1803', 'Abung Tinggi'), ('180313', '1803', 'Abung Semuli'), ('180314', '1803', 'Abung Surakarta'), ('180315', '1803', 'Muara Sungkai'), ('180316', '1803', 'Bunga Mayang'), ('180317', '1803', 'Hulu Sungkai'), ('180318', '1803', 'Sungkai Tengah'), ('180319', '1803', 'Abung Pekurun'), ('180320', '1803', 'Sungkai Jaya'), ('180321', '1803', 'Sungkai Barat'), ('180322', '1803', 'Abung Kunang'), ('180323', '1803', 'Blambangan Pagar'), ('180404', '1804', 'Balik Bukit'), ('180405', '1804', 'Sumber Jaya'), ('180406', '1804', 'Belalau'), ('180407', '1804', 'Way Tenong'), ('180408', '1804', 'Sekincau'), ('180409', '1804', 'Suoh'), ('180410', '1804', 'Batu Brak'), ('180411', '1804', 'Sukau'), ('180415', '1804', 'Gedung Surian'), ('180418', '1804', 'Kebun Tebu'), ('180419', '1804', 'Air Hitam'), ('180420', '1804', 'Pagar Dewa'), ('180421', '1804', 'Batu Ketulis'), ('180422', '1804', 'Lumbok Seminung'), ('180423', '1804', 'Bandar Negeri Suoh'), ('180502', '1805', 'Menggala'), ('180506', '1805', 'Gedung Aji'), ('180508', '1805', 'Banjar Agung'), ('180511', '1805', 'Gedung Meneng'), ('180512', '1805', 'Rawa Jitu Selatan'), ('180513', '1805', 'Penawar Tama'), ('180518', '1805', 'Rawa Jitu Timur'), ('180520', '1805', 'Banjar Margo'), ('180522', '1805', 'Rawa Pitu'), ('180523', '1805', 'Penawar Aji'), ('180525', '1805', 'Dente Teladas'), ('180526', '1805', 'Meraksa Aji'), ('180527', '1805', 'Gedung Aji Baru'), ('180529', '1805', 'Banjar Baru'), ('180530', '1805', 'Menggala Timur'), ('180601', '1806', 'Kota Agung'), ('180602', '1806', 'Talang Padang'), ('180603', '1806', 'Wonosobo'), ('180604', '1806', 'Pulau Panggung'), ('180609', '1806', 'Cukuh Balak'), ('180611', '1806', 'Pugung'), ('180612', '1806', 'Semaka'), ('180613', '1806', 'Sumber Rejo'), ('180615', '1806', 'Ulu Belu'), ('180616', '1806', 'Pematang Sawa'), ('180617', '1806', 'Klumbayan'), ('180618', '1806', 'Kota Agung Barat'), ('180619', '1806', 'Kota Agung Timur'), ('180620', '1806', 'Gisting'), ('180621', '1806', 'Gunung Alip'), ('180624', '1806', 'Limau'), ('180625', '1806', 'Bandar Negeri Semuong'), ('180626', '1806', 'Air Naningan'), ('180627', '1806', 'Bulok'), ('180628', '1806', 'Klumbayan Barat'), ('180701', '1807', 'Sukadana'), ('180702', '1807', 'Labuhan Maringgai'), ('180703', '1807', 'Jabung'), ('180704', '1807', 'Pekalongan'), ('180705', '1807', 'Sekampung'), ('180706', '1807', 'Batanghari'), ('180707', '1807', 'Way Jepara'), ('180708', '1807', 'Purbolinggo'), ('180709', '1807', 'Raman Utara'), ('180710', '1807', 'Metro Kibang'), ('180711', '1807', 'Marga Tiga'), ('180712', '1807', 'Sekampung Udik'), ('180713', '1807', 'Batanghari Nuban'), ('180714', '1807', 'Bumi Agung'), ('180715', '1807', 'Bandar Sribhawono'), ('180716', '1807', 'Mataram Baru'), ('180717', '1807', 'Melinting'), ('180718', '1807', 'Gunung Pelindung'), ('180719', '1807', 'Pasir Sakti'), ('180720', '1807', 'Waway Karya'), ('180721', '1807', 'Labuhan Ratu'), ('180722', '1807', 'Braja Selebah'), ('180723', '1807', 'Way Bungur'), ('180724', '1807', 'Marga Sekampung'), ('180801', '1808', 'Blambangan Umpu'), ('180802', '1808', 'Kasui'), ('180803', '1808', 'Banjit'), ('180804', '1808', 'Baradatu'), ('180805', '1808', 'Bahuga'), ('180806', '1808', 'Pakuan Ratu'), ('180807', '1808', 'Negeri Agung'), ('180808', '1808', 'Way Tuba'), ('180809', '1808', 'Rebang Tangkas'), ('180810', '1808', 'Gunung Labuhan'), ('180811', '1808', 'Negara Batin'), ('180812', '1808', 'Negeri Besar'), ('180813', '1808', 'Buay Bahuga'), ('180814', '1808', 'Bumi Agung'), ('180901', '1809', 'Gedong Tataan'), ('180902', '1809', 'Negeri Katon'), ('180903', '1809', 'Tegineneng'), ('180904', '1809', 'Way Lima'), ('180905', '1809', 'Padang Cermin'), ('180906', '1809', 'Punduh Pidada'), ('180907', '1809', 'Kedondong'), ('180908', '1809', 'Marga Punduh'), ('180909', '1809', 'Way Khilau'), ('181001', '1810', 'Pringsewu'), ('181002', '1810', 'Gading Rejo'), ('181003', '1810', 'Ambarawa'), ('181004', '1810', 'Pardasuka'), ('181005', '1810', 'Pagelaran'), ('181006', '1810', 'Banyumas'), ('181007', '1810', 'Adiluwih'), ('181008', '1810', 'Sukoharjo'), ('181009', '1810', 'Pagelaran Utara'), ('181101', '1811', 'Mesuji'), ('181102', '1811', 'Mesuji Timur'), ('181103', '1811', 'Rawa Jitu Utara'), ('181104', '1811', 'Way Serdang'), ('181105', '1811', 'Simpang Pematang'), ('181106', '1811', 'Panca Jaya'), ('181107', '1811', 'Tanjung Raya'), ('181201', '1812', 'Tulang Bawang Tengah'), ('181202', '1812', 'Tumijajar'), ('181203', '1812', 'Tulang Bawang Udik'), ('181204', '1812', 'Gunung Terang'), ('181205', '1812', 'Gunung Agung'), ('181206', '1812', 'Way Kenanga'), ('181207', '1812', 'Lambu Kibang'), ('181208', '1812', 'Pagar Dewa'), ('181301', '1813', 'Pesisir Tengah'), ('181302', '1813', 'Pesisir Selatan'), ('181303', '1813', 'Lemong'), ('181304', '1813', 'Pesisir Utara'), ('181305', '1813', 'Karya Penggawa'), ('181306', '1813', 'Pulaupisang'), ('181307', '1813', 'Way Krui'), ('181308', '1813', 'Krui Selatan'), ('181309', '1813', 'Ngambur'), ('181310', '1813', 'Bengkunat'), ('181311', '1813', 'Bengkunat Belimbing'), ('187101', '1871', 'Kedaton'), ('187102', '1871', 'Sukarame'), ('187103', '1871', 'Tanjungkarang Barat'), ('187104', '1871', 'Panjang'), ('187105', '1871', 'Tanjungkarang Timur'), ('187106', '1871', 'Tanjungkarang Pusat'), ('187107', '1871', 'Telukbetung Selatan'), ('187108', '1871', 'Telukbetung Barat'), ('187109', '1871', 'Telukbetung Utara'), ('187110', '1871', 'Rajabasa'), ('187111', '1871', 'Tanjung Senang'), ('187112', '1871', 'Sukabumi'), ('187113', '1871', 'Kemiling'), ('187114', '1871', 'Labuhan Ratu'), ('187115', '1871', 'Way Halim'), ('187116', '1871', 'Langkapura'), ('187117', '1871', 'Enggal'), ('187118', '1871', 'Kedamaian'), ('187119', '1871', 'Telukbetung Timur'), ('187120', '1871', 'Bumi Waras'), ('187201', '1872', 'Metro Pusat'), ('187202', '1872', 'Metro Utara'), ('187203', '1872', 'Metro Barat'), ('187204', '1872', 'Metro Timur'), ('187205', '1872', 'Metro Selatan'), ('190101', '1901', 'Sungailiat'), ('190102', '1901', 'Belinyu'), ('190103', '1901', 'Merawang'), ('190104', '1901', 'Mendo Barat'), ('190105', '1901', 'Pemali'), ('190106', '1901', 'Bakam'), ('190107', '1901', 'Riau Silip'), ('190108', '1901', 'Puding Besar'), ('190201', '1902', 'Tanjung Pandan'), ('190202', '1902', 'Membalong'), ('190203', '1902', 'Selat Nasik'), ('190204', '1902', 'Sijuk'), ('190205', '1902', 'Badau'), ('190301', '1903', 'Toboali'), ('190302', '1903', 'Lepar Pongok'), ('190303', '1903', 'Air Gegas'), ('190304', '1903', 'Simpang Rimba'), ('190305', '1903', 'Payung'), ('190306', '1903', 'Tukak Sadai'), ('190307', '1903', 'Pulaubesar'), ('190308', '1903', 'Kepulauan Pongok'), ('190401', '1904', 'Koba'), ('190402', '1904', 'Pangkalan Baru'), ('190403', '1904', 'Sungai Selan'), ('190404', '1904', 'Simpang Katis'), ('190405', '1904', 'Namang'), ('190406', '1904', 'Lubuk Besar'), ('190501', '1905', 'Mentok'), ('190502', '1905', 'Simpang Teritip'), ('190503', '1905', 'Jebus'), ('190504', '1905', 'Kelapa'), ('190505', '1905', 'Tempilang'), ('190506', '1905', 'Parittiga'), ('190601', '1906', 'Manggar'), ('190602', '1906', 'Gantung'), ('190603', '1906', 'Dendang'), ('190604', '1906', 'Kelapa Kampit'), ('190605', '1906', 'Damar'), ('190606', '1906', 'Simpang Renggiang'), ('190607', '1906', 'Simpang Pesak'), ('197101', '1971', 'Bukitintan'), ('197102', '1971', 'Taman Sari'), ('197103', '1971', 'Pangkal Balam'), ('197104', '1971', 'Rangkui'), ('197105', '1971', 'Gerunggang'), ('197106', '1971', 'Gabek'), ('197107', '1971', 'Girimaya'), ('210104', '2101', 'Gunung Kijang'), ('210106', '2101', 'Bintan Timur'), ('210107', '2101', 'Bintan Utara'), ('210108', '2101', 'Teluk Bintan'), ('210109', '2101', 'Tambelan'), ('210110', '2101', 'Telok Sebong'), ('210112', '2101', 'Toapaya'), ('210113', '2101', 'Mantang'), ('210114', '2101', 'Bintan Pesisir'), ('210115', '2101', 'Seri Kuala Lobam'), ('210201', '2102', 'Moro'), ('210202', '2102', 'Kundur'), ('210203', '2102', 'Karimun'), ('210204', '2102', 'Meral'), ('210205', '2102', 'Tebing'), ('210206', '2102', 'Buru'), ('210207', '2102', 'Kundur Utara'), ('210208', '2102', 'Kundur Barat'), ('210209', '2102', 'Durai'), ('210210', '2102', 'Meral Barat'), ('210211', '2102', 'Ungar'), ('210212', '2102', 'Belat'), ('210304', '2103', 'Midai'), ('210305', '2103', 'Bunguran Barat'), ('210306', '2103', 'Serasan'), ('210307', '2103', 'Bunguran Timur'), ('210308', '2103', 'Bunguran Utara'), ('210309', '2103', 'Subi'), ('210310', '2103', 'Pulau Laut'), ('210311', '2103', 'Pulau Tiga'), ('210315', '2103', 'Bunguran Timur Laut'), ('210316', '2103', 'Bunguran Tengah'), ('210318', '2103', 'Bunguran Selatan'), ('210319', '2103', 'Serasan Timur'), ('210401', '2104', 'Singkep'), ('210402', '2104', 'Lingga'), ('210403', '2104', 'Senayang'), ('210404', '2104', 'Singkep Barat'), ('210405', '2104', 'Lingga Utara'), ('210406', '2104', 'Singkep Pesisir'), ('210407', '2104', 'Lingga Timur'), ('210408', '2104', 'Selayar'), ('210409', '2104', 'Singkep Selatan'), ('210501', '2105', 'Siantan'), ('210502', '2105', 'Palmatak'), ('210503', '2105', 'Siantan Timur'), ('210504', '2105', 'Siantan Selatan'), ('210505', '2105', 'Jemaja Timur'), ('210506', '2105', 'Jemaja'), ('210507', '2105', 'Siantan Tengah'), ('217101', '2171', 'Belakang Padang'), ('217102', '2171', 'Batu Ampar'), ('217103', '2171', 'Sekupang'), ('217104', '2171', 'Nongsa'), ('217105', '2171', 'Bulang'), ('217106', '2171', 'Lubuk Baja'), ('217107', '2171', 'Sei Beduk'), ('217108', '2171', 'Galang'), ('217109', '2171', 'Bengkong'), ('217110', '2171', 'Batam Kota'), ('217111', '2171', 'Sagulung'), ('217112', '2171', 'Batu Aji'), ('217201', '2172', 'Tanjung Pinang Barat'), ('217202', '2172', 'Tanjung Pinang Timur'), ('217203', '2172', 'Tanjung Pinang Kota'), ('217204', '2172', 'Bukit Bestari'), ('310101', '3101', 'Kepulauan Seribu Utara'), ('310102', '3101', 'Kepulauan Seribu Selatan.'), ('317101', '3171', 'Gambir'), ('317102', '3171', 'Sawah Besar'), ('317103', '3171', 'Kemayoran'), ('317104', '3171', 'Senen'), ('317105', '3171', 'Cempaka Putih'), ('317106', '3171', 'Menteng'), ('317107', '3171', 'Tanah Abang'), ('317108', '3171', 'Johar Baru'), ('317201', '3172', 'Penjaringan'), ('317202', '3172', 'Tanjung Priok'), ('317203', '3172', 'Koja'), ('317204', '3172', 'Cilincing'), ('317205', '3172', 'Pademangan'), ('317206', '3172', 'Kelapa Gading'), ('317301', '3173', 'Cengkareng'), ('317302', '3173', 'Grogol Petamburan'), ('317303', '3173', 'Taman Sari'), ('317304', '3173', 'Tambora'), ('317305', '3173', 'Kebon Jeruk'), ('317306', '3173', 'Kalideres'), ('317307', '3173', 'Pal Merah'), ('317308', '3173', 'Kembangan'), ('317401', '3174', 'Tebet'), ('317402', '3174', 'Setiabudi'), ('317403', '3174', 'Mampang Prapatan'), ('317404', '3174', 'Pasar Minggu'), ('317405', '3174', 'Kebayoran Lama'), ('317406', '3174', 'Cilandak'), ('317407', '3174', 'Kebayoran Baru'), ('317408', '3174', 'Pancoran'), ('317409', '3174', 'Jagakarsa'), ('317410', '3174', 'Pesanggrahan'), ('317501', '3175', 'Matraman'), ('317502', '3175', 'Pulogadung'), ('317503', '3175', 'Jatinegara'), ('317504', '3175', 'Kramatjati'), ('317505', '3175', 'Pasar Rebo'), ('317506', '3175', 'Cakung'), ('317507', '3175', 'Duren Sawit'), ('317508', '3175', 'Makasar'), ('317509', '3175', 'Ciracas'), ('317510', '3175', 'Cipayung'), ('320101', '3201', 'Cibinong'), ('320102', '3201', 'Gunung Putri'), ('320103', '3201', 'Citeureup'), ('320104', '3201', 'Sukaraja'), ('320105', '3201', 'Babakan Madang'), ('320106', '3201', 'Jonggol'), ('320107', '3201', 'Cileungsi'), ('320108', '3201', 'Cariu'), ('320109', '3201', 'Sukamakmur'), ('320110', '3201', 'Parung'), ('320111', '3201', 'Gunung Sindur'), ('320112', '3201', 'Kemang'), ('320113', '3201', 'Bojong Gede'), ('320114', '3201', 'Leuwiliang'), ('320115', '3201', 'Ciampea'), ('320116', '3201', 'Cibungbulang'), ('320117', '3201', 'Pamijahan'), ('320118', '3201', 'Rumpin'), ('320119', '3201', 'Jasinga'), ('320120', '3201', 'Parung Panjang'), ('320121', '3201', 'Nanggung'), ('320122', '3201', 'Cigudeg'), ('320123', '3201', 'Tenjo'), ('320124', '3201', 'Ciawi'), ('320125', '3201', 'Cisarua'), ('320126', '3201', 'Megamendung'), ('320127', '3201', 'Caringin'), ('320128', '3201', 'Cijeruk'), ('320129', '3201', 'Ciomas'), ('320130', '3201', 'Dramaga'), ('320131', '3201', 'Tamansari'), ('320132', '3201', 'Klapanunggal'), ('320133', '3201', 'Ciseeng'), ('320134', '3201', 'Ranca Bungur'), ('320135', '3201', 'Sukajaya'), ('320136', '3201', 'Tanjungsari'), ('320137', '3201', 'Tajurhalang'), ('320138', '3201', 'Cigombong'), ('320139', '3201', 'Leuwisadeng'), ('320140', '3201', 'Tenjolaya'), ('320201', '3202', 'Pelabuhanratu'), ('320202', '3202', 'Simpenan'), ('320203', '3202', 'Cikakak'), ('320204', '3202', 'Bantargadung'), ('320205', '3202', 'Cisolok'), ('320206', '3202', 'Cikidang'), ('320207', '3202', 'Lengkong'), ('320208', '3202', 'Jampang Tengah'), ('320209', '3202', 'Warungkiara'), ('320210', '3202', 'Cikembar'), ('320211', '3202', 'Cibadak'), ('320212', '3202', 'Nagrak'), ('320213', '3202', 'Parungkuda'), ('320214', '3202', 'Bojonggenteng'), ('320215', '3202', 'Parakansalak'), ('320216', '3202', 'Cicurug'), ('320217', '3202', 'Cidahu'), ('320218', '3202', 'Kalapanunggal'), ('320219', '3202', 'Kabandungan'), ('320220', '3202', 'Waluran'), ('320221', '3202', 'Jampang Kulon'), ('320222', '3202', 'Ciemas'), ('320223', '3202', 'Kalibunder'), ('320224', '3202', 'Surade'), ('320225', '3202', 'Cibitung'), ('320226', '3202', 'Ciracap'), ('320227', '3202', 'Gunungguruh'), ('320228', '3202', 'Cicantayan'), ('320229', '3202', 'Cisaat'), ('320230', '3202', 'Kadudampit'), ('320231', '3202', 'Caringin'), ('320232', '3202', 'Sukabumi'), ('320233', '3202', 'Sukaraja'), ('320234', '3202', 'Kebonpedes'), ('320235', '3202', 'Cireunghas'), ('320236', '3202', 'Sukalarang'), ('320237', '3202', 'Pabuaran'), ('320238', '3202', 'Purabaya'), ('320239', '3202', 'Nyalindung'), ('320240', '3202', 'Gegerbitung'), ('320241', '3202', 'Sagaranten'), ('320242', '3202', 'Curugkembar'), ('320243', '3202', 'Cidolog'), ('320244', '3202', 'Cidadap'), ('320245', '3202', 'Tegalbuleud'), ('320246', '3202', 'Cimanggu'), ('320247', '3202', 'Ciambar'), ('320301', '3203', 'Cianjur'), ('320302', '3203', 'Warungkondang'), ('320303', '3203', 'Cibeber'), ('320304', '3203', 'Cilaku'), ('320305', '3203', 'Ciranjang'), ('320306', '3203', 'Bojongpicung'), ('320307', '3203', 'Karangtengah'), ('320308', '3203', 'Mande'), ('320309', '3203', 'Sukaluyu'), ('320310', '3203', 'Pacet'), ('320311', '3203', 'Cugenang'), ('320312', '3203', 'Cikalongkulon'), ('320313', '3203', 'Sukaresmi'), ('320314', '3203', 'Sukanagara'), ('320315', '3203', 'Campaka'), ('320316', '3203', 'Takokak'), ('320317', '3203', 'Kadupandak'), ('320318', '3203', 'Pagelaran'), ('320319', '3203', 'Tanggeung'), ('320320', '3203', 'Cibinong'), ('320321', '3203', 'Sindangbarang'), ('320322', '3203', 'Agrabinta'), ('320323', '3203', 'Cidaun'), ('320324', '3203', 'Naringgul'), ('320325', '3203', 'Campakamulya'), ('320326', '3203', 'Cikadu'), ('320327', '3203', 'Gekbrong'), ('320328', '3203', 'Cipanas'), ('320329', '3203', 'Cijati'), ('320330', '3203', 'Leles'), ('320331', '3203', 'Haurwangi'), ('320332', '3203', 'Pasirkuda'), ('320405', '3204', 'Cileunyi'), ('320406', '3204', 'Cimenyan'), ('320407', '3204', 'Cilengkrang'), ('320408', '3204', 'Bojongsoang'), ('320409', '3204', 'Margahayu'), ('320410', '3204', 'Margaasih'), ('320411', '3204', 'Katapang'), ('320412', '3204', 'Dayeuhkolot'), ('320413', '3204', 'Banjaran'), ('320414', '3204', 'Pameungpeuk'), ('320415', '3204', 'Pangalengan'), ('320416', '3204', 'Arjasari'), ('320417', '3204', 'Cimaung'), ('320425', '3204', 'Cicalengka'), ('320426', '3204', 'Nagreg'), ('320427', '3204', 'Cikancung'), ('320428', '3204', 'Rancaekek'), ('320429', '3204', 'Ciparay'), ('320430', '3204', 'Pacet'), ('320431', '3204', 'Kertasari'), ('320432', '3204', 'Baleendah'), ('320433', '3204', 'Majalaya'), ('320434', '3204', 'Solokanjeruk'), ('320435', '3204', 'Paseh'), ('320436', '3204', 'Ibun'), ('320437', '3204', 'Soreang'), ('320438', '3204', 'Pasirjambu'), ('320439', '3204', 'Ciwidey'), ('320440', '3204', 'Rancabali'), ('320444', '3204', 'Cangkuang'), ('320446', '3204', 'Kutawaringin'), ('320501', '3205', 'Garut Kota'), ('320502', '3205', 'Karangpawitan'), ('320503', '3205', 'Wanaraja'), ('320504', '3205', 'Tarogong Kaler'), ('320505', '3205', 'Tarogong Kidul'), ('320506', '3205', 'Banyuresmi'), ('320507', '3205', 'Samarang'), ('320508', '3205', 'Pasirwangi'), ('320509', '3205', 'Leles'), ('320510', '3205', 'Kadungora'), ('320511', '3205', 'Leuwigoong'), ('320512', '3205', 'Cibatu'), ('320513', '3205', 'Kersamanah'), ('320514', '3205', 'Malangbong'), ('320515', '3205', 'Sukawening'), ('320516', '3205', 'Karangtengah'), ('320517', '3205', 'Bayongbong'), ('320518', '3205', 'Cigedug'), ('320519', '3205', 'Cilawu'), ('320520', '3205', 'Cisurupan'), ('320521', '3205', 'Sukaresmi'), ('320522', '3205', 'Cikajang'), ('320523', '3205', 'Banjarwangi'), ('320524', '3205', 'Singajaya'), ('320525', '3205', 'Cihurip'), ('320526', '3205', 'Peundeuy'), ('320527', '3205', 'Pameungpeuk'), ('320528', '3205', 'Cisompet'), ('320529', '3205', 'Cibalong'), ('320530', '3205', 'Cikelet'), ('320531', '3205', 'Bungbulang'), ('320532', '3205', 'Mekarmukti'), ('320533', '3205', 'Pakenjeng'), ('320534', '3205', 'Pamulihan'), ('320535', '3205', 'Cisewu'), ('320536', '3205', 'Caringin'), ('320537', '3205', 'Talegong'), ('320538', '3205', 'Bl. Limbangan'), ('320539', '3205', 'Selaawi'), ('320540', '3205', 'Cibiuk'), ('320541', '3205', 'Pangatikan'), ('320542', '3205', 'Sucinaraja'), ('320601', '3206', 'Cipatujah'), ('320602', '3206', 'Karangnunggal'), ('320603', '3206', 'Cikalong'), ('320604', '3206', 'Pancatengah'), ('320605', '3206', 'Cikatomas'), ('320606', '3206', 'Cibalong'), ('320607', '3206', 'Parungponteng'), ('320608', '3206', 'Bantarkalong'), ('320609', '3206', 'Bojongasih'), ('320610', '3206', 'Culamega'), ('320611', '3206', 'Bojonggambir'), ('320612', '3206', 'Sodonghilir'), ('320613', '3206', 'Taraju'), ('320614', '3206', 'Salawu'), ('320615', '3206', 'Puspahiang'), ('320616', '3206', 'Tanjungjaya'), ('320617', '3206', 'Sukaraja'), ('320618', '3206', 'Salopa'), ('320619', '3206', 'Jatiwaras'), ('320620', '3206', 'Cineam'), ('320621', '3206', 'Karang Jaya'), ('320622', '3206', 'Manonjaya'), ('320623', '3206', 'Gunung Tanjung'), ('320624', '3206', 'Singaparna'), ('320625', '3206', 'Mangunreja'), ('320626', '3206', 'Sukarame'), ('320627', '3206', 'Cigalontang'), ('320628', '3206', 'Leuwisari'), ('320629', '3206', 'Padakembang'), ('320630', '3206', 'Sariwangi'), ('320631', '3206', 'Sukaratu'), ('320632', '3206', 'Cisayong'), ('320633', '3206', 'Sukahening'), ('320634', '3206', 'Rajapolah'), ('320635', '3206', 'Jamanis'), ('320636', '3206', 'Ciawi'), ('320637', '3206', 'Kadipaten'), ('320638', '3206', 'Pagerageung'), ('320639', '3206', 'Sukaresik'), ('320701', '3207', 'Ciamis'), ('320702', '3207', 'Cikoneng'), ('320703', '3207', 'Cijeungjing'), ('320704', '3207', 'Sadananya'), ('320705', '3207', 'Cidolog'), ('320706', '3207', 'Cihaurbeuti'), ('320707', '3207', 'Panumbangan'), ('320708', '3207', 'Panjalu'), ('320709', '3207', 'Kawali'), ('320710', '3207', 'Panawangan'), ('320711', '3207', 'Cipaku'), ('320712', '3207', 'Jatinagara'), ('320713', '3207', 'Rajadesa'), ('320714', '3207', 'Sukadana'), ('320715', '3207', 'Rancah'), ('320716', '3207', 'Tambaksari'), ('320717', '3207', 'Lakbok'), ('320718', '3207', 'Banjarsari'), ('320719', '3207', 'Pamarican'), ('320729', '3207', 'Cimaragas'), ('320730', '3207', 'Cisaga'), ('320731', '3207', 'Sindangkasih'), ('320732', '3207', 'Baregbeg'), ('320733', '3207', 'Sukamantri'), ('320734', '3207', 'Lumbung'), ('320735', '3207', 'Purwadadi'), ('320801', '3208', 'Kadugede'), ('320802', '3208', 'Ciniru'), ('320803', '3208', 'Subang'), ('320804', '3208', 'Ciwaru'), ('320805', '3208', 'Cibingbin'), ('320806', '3208', 'Luragung'), ('320807', '3208', 'Lebakwangi'), ('320808', '3208', 'Garawangi'), ('320809', '3208', 'Kuningan'), ('320810', '3208', 'Ciawigebang'), ('320811', '3208', 'Cidahu'), ('320812', '3208', 'Jalaksana'), ('320813', '3208', 'Cilimus'), ('320814', '3208', 'Mandirancan'), ('320815', '3208', 'Selajambe'), ('320816', '3208', 'Kramatmulya'), ('320817', '3208', 'Darma'), ('320818', '3208', 'Cigugur'), ('320819', '3208', 'Pasawahan'), ('320820', '3208', 'Nusaherang'), ('320821', '3208', 'Cipicung'), ('320822', '3208', 'Pancalang'), ('320823', '3208', 'Japara'), ('320824', '3208', 'Cimahi'), ('320825', '3208', 'Cilebak'), ('320826', '3208', 'Hantara'), ('320827', '3208', 'Kalimanggis'), ('320828', '3208', 'Cibeureum'), ('320829', '3208', 'Karang Kancana'), ('320830', '3208', 'Maleber'), ('320831', '3208', 'Sindang Agung'), ('320832', '3208', 'Cigandamekar'), ('320901', '3209', 'Waled'), ('320902', '3209', 'Ciledug'), ('320903', '3209', 'Losari'), ('320904', '3209', 'Pabedilan'), ('320905', '3209', 'Babakan'), ('320906', '3209', 'Karangsembung'), ('320907', '3209', 'Lemahabang'), ('320908', '3209', 'Susukan Lebak'), ('320909', '3209', 'Sedong'), ('320910', '3209', 'Astanajapura'), ('320911', '3209', 'Pangenan'), ('320912', '3209', 'Mundu'), ('320913', '3209', 'Beber'), ('320914', '3209', 'Talun'), ('320915', '3209', 'Sumber'), ('320916', '3209', 'Dukupuntang'), ('320917', '3209', 'Palimanan'), ('320918', '3209', 'Plumbon'), ('320919', '3209', 'Weru'), ('320920', '3209', 'Kedawung'), ('320921', '3209', 'Gunung Jati'), ('320922', '3209', 'Kapetakan'), ('320923', '3209', 'Klangenan'), ('320924', '3209', 'Arjawinangun'), ('320925', '3209', 'Panguragan'), ('320926', '3209', 'Ciwaringin'), ('320927', '3209', 'Susukan'), ('320928', '3209', 'Gegesik'), ('320929', '3209', 'Kaliwedi'), ('320930', '3209', 'Gebang'), ('320931', '3209', 'Depok'), ('320932', '3209', 'Pasaleman'), ('320933', '3209', 'Pabuaran'), ('320934', '3209', 'Karangwareng'), ('320935', '3209', 'Tengah Tani'), ('320936', '3209', 'Plered'), ('320937', '3209', 'Gempol'), ('320938', '3209', 'Greged'), ('320939', '3209', 'Suranenggala'), ('320940', '3209', 'Jamblang'), ('321001', '3210', 'Lemahsugih'), ('321002', '3210', 'Bantarujeg'), ('321003', '3210', 'Cikijing'), ('321004', '3210', 'Talaga'), ('321005', '3210', 'Argapura'), ('321006', '3210', 'Maja'), ('321007', '3210', 'Majalengka'), ('321008', '3210', 'Sukahaji'), ('321009', '3210', 'Rajagaluh'), ('321010', '3210', 'Leuwimunding'), ('321011', '3210', 'Jatiwangi'), ('321012', '3210', 'Dawuan'), ('321013', '3210', 'Kadipaten'), ('321014', '3210', 'Kertajati'), ('321015', '3210', 'Jatitujuh'), ('321016', '3210', 'Ligung'), ('321017', '3210', 'Sumberjaya'), ('321018', '3210', 'Panyingkiran'), ('321019', '3210', 'Palasah'), ('321020', '3210', 'Cigasong'), ('321021', '3210', 'Sindangwangi'), ('321022', '3210', 'Banjaran'), ('321023', '3210', 'Cingambul'), ('321024', '3210', 'Kasokandel'), ('321025', '3210', 'Sindang'), ('321026', '3210', 'Malausma'), ('321101', '3211', 'Wado'), ('321102', '3211', 'Jatinunggal'), ('321103', '3211', 'Darmaraja'), ('321104', '3211', 'Cibugel'), ('321105', '3211', 'Cisitu'), ('321106', '3211', 'Situraja'), ('321107', '3211', 'Conggeang'), ('321108', '3211', 'Paseh'), ('321109', '3211', 'Surian'), ('321110', '3211', 'Buahdua'), ('321111', '3211', 'Tanjungsari'), ('321112', '3211', 'Sukasari'), ('321113', '3211', 'Pamulihan'), ('321114', '3211', 'Cimanggung'), ('321115', '3211', 'Jatinangor'), ('321116', '3211', 'Rancakalong'), ('321117', '3211', 'Sumedang Selatan'), ('321118', '3211', 'Sumedang Utara'), ('321119', '3211', 'Ganeas'), ('321120', '3211', 'Tanjungkerta'), ('321121', '3211', 'Tanjungmedar'), ('321122', '3211', 'Cimalaka'), ('321123', '3211', 'Cisarua'), ('321124', '3211', 'Tomo'), ('321125', '3211', 'Ujungjaya'), ('321126', '3211', 'Jatigede'), ('321201', '3212', 'Haurgeulis'), ('321202', '3212', 'Kroya'), ('321203', '3212', 'Gabuswetan'), ('321204', '3212', 'Cikedung'), ('321205', '3212', 'Lelea'), ('321206', '3212', 'Bangodua'), ('321207', '3212', 'Widasari'), ('321208', '3212', 'Kertasemaya'), ('321209', '3212', 'Krangkeng'), ('321210', '3212', 'Karangampel'), ('321211', '3212', 'Juntinyuat'), ('321212', '3212', 'Sliyeg'), ('321213', '3212', 'Jatibarang'), ('321214', '3212', 'Balongan'), ('321215', '3212', 'Indramayu'), ('321216', '3212', 'Sindang'), ('321217', '3212', 'Cantigi'), ('321218', '3212', 'Lohbener'), ('321219', '3212', 'Arahan'), ('321220', '3212', 'Losarang'), ('321221', '3212', 'Kandanghaur'), ('321222', '3212', 'Bongas'), ('321223', '3212', 'Anjatan'), ('321224', '3212', 'Sukra'), ('321225', '3212', 'Gantar'), ('321226', '3212', 'Trisi'), ('321227', '3212', 'Sukagumiwang'), ('321228', '3212', 'Kedokan Bunder'), ('321229', '3212', 'Pasekan'), ('321230', '3212', 'Tukdana'), ('321231', '3212', 'Patrol'), ('321301', '3213', 'Sagalaherang'), ('321302', '3213', 'Cisalak'), ('321303', '3213', 'Subang'), ('321304', '3213', 'Kalijati'), ('321305', '3213', 'Pabuaran'), ('321306', '3213', 'Purwadadi'), ('321307', '3213', 'Pagaden'), ('321308', '3213', 'Binong'), ('321309', '3213', 'Ciasem'), ('321310', '3213', 'Pusakanagara'), ('321311', '3213', 'Pamanukan'), ('321312', '3213', 'Jalancagak'), ('321313', '3213', 'Blanakan'), ('321314', '3213', 'Tanjungsiang'), ('321315', '3213', 'Compreng'), ('321316', '3213', 'Patokbeusi'), ('321317', '3213', 'Cibogo'), ('321318', '3213', 'Cipunagara'), ('321319', '3213', 'Cijambe'), ('321320', '3213', 'Cipeunduey'), ('321321', '3213', 'Legonkulon'), ('321322', '3213', 'Cikaum'), ('321323', '3213', 'Serangpanjang'), ('321324', '3213', 'Sukasari'), ('321325', '3213', 'Tambakdahan'), ('321326', '3213', 'Kasomalang'), ('321327', '3213', 'Dawuan'), ('321328', '3213', 'Pagaden Barat'), ('321329', '3213', 'Ciater'), ('321330', '3213', 'Pusakajaya'), ('321401', '3214', 'Purwakarta'), ('321402', '3214', 'Campaka'), ('321403', '3214', 'Jatiluhur'), ('321404', '3214', 'Plered'), ('321405', '3214', 'Sukatani'), ('321406', '3214', 'Darangdan'), ('321407', '3214', 'Maniis'), ('321408', '3214', 'Tegalwaru'), ('321409', '3214', 'Wanayasa'), ('321410', '3214', 'Pasawahan'), ('321411', '3214', 'Bojong'), ('321412', '3214', 'Babakancikao'), ('321413', '3214', 'Bungursari'), ('321414', '3214', 'Cibatu'), ('321415', '3214', 'Sukasari'), ('321416', '3214', 'Pondoksalam'), ('321417', '3214', 'Kiarapedes'), ('321501', '3215', 'Karawang Barat'), ('321502', '3215', 'Pangkalan'), ('321503', '3215', 'Telukjambe Timur'), ('321504', '3215', 'Ciampel'), ('321505', '3215', 'Klari'), ('321506', '3215', 'Rengasdengklok'), ('321507', '3215', 'Kutawaluya'), ('321508', '3215', 'Batujaya'), ('321509', '3215', 'Tirtajaya'), ('321510', '3215', 'Pedes'), ('321511', '3215', 'Cibuaya'), ('321512', '3215', 'Pakisjaya'), ('321513', '3215', 'Cikampek'), ('321514', '3215', 'Jatisari'), ('321515', '3215', 'Cilamaya Wetan'), ('321516', '3215', 'Tirtamulya'), ('321517', '3215', 'Telagasari'), ('321518', '3215', 'Rawamerta'), ('321519', '3215', 'Lemahabang'), ('321520', '3215', 'Tempuran'), ('321521', '3215', 'Majalaya'), ('321522', '3215', 'Jayakerta'), ('321523', '3215', 'Cilamaya Kulon'), ('321524', '3215', 'Banyusari'), ('321525', '3215', 'Kota Baru'), ('321526', '3215', 'Karawang Timur'), ('321527', '3215', 'Telukjambe Barat'), ('321528', '3215', 'Tegalwaru'), ('321529', '3215', 'Purwasari'), ('321530', '3215', 'Cilebar'), ('321601', '3216', 'Tarumajaya'), ('321602', '3216', 'Babelan'), ('321603', '3216', 'Sukawangi'), ('321604', '3216', 'Tambelang'), ('321605', '3216', 'Tambun Utara'), ('321606', '3216', 'Tambun Selatan'), ('321607', '3216', 'Cibitung'), ('321608', '3216', 'Cikarang Barat'), ('321609', '3216', 'Cikarang Utara'), ('321610', '3216', 'Karang Bahagia'), ('321611', '3216', 'Cikarang Timur'), ('321612', '3216', 'Kedung Waringin'), ('321613', '3216', 'Pebayuran'), ('321614', '3216', 'Sukakarya'), ('321615', '3216', 'Sukatani'), ('321616', '3216', 'Cabangbungin'), ('321617', '3216', 'Muaragembong'), ('321618', '3216', 'Setu'), ('321619', '3216', 'Cikarang Selatan'), ('321620', '3216', 'Cikarang Pusat'), ('321621', '3216', 'Serang Baru'), ('321622', '3216', 'Cibarusah'), ('321623', '3216', 'Bojongmangu'), ('321701', '3217', 'Lembang'), ('321702', '3217', 'Parongpong'), ('321703', '3217', 'Cisarua'), ('321704', '3217', 'Cikalongwetan'), ('321705', '3217', 'Cipeundeuy'), ('321706', '3217', 'Ngamprah'), ('321707', '3217', 'Cipatat'), ('321708', '3217', 'Padalarang'), ('321709', '3217', 'Batujajar'), ('321710', '3217', 'Cihampelas'), ('321711', '3217', 'Cililin'), ('321712', '3217', 'Cipongkor'), ('321713', '3217', 'Rongga'), ('321714', '3217', 'Sindangkerta'), ('321715', '3217', 'Gununghalu'), ('321716', '3217', 'Saguling'), ('321801', '3218', 'Parigi'), ('321802', '3218', 'Cijulang'), ('321803', '3218', 'Cimerak'), ('321804', '3218', 'Cigugur'), ('321805', '3218', 'Langkaplancar'), ('321806', '3218', 'Mangunjaya'), ('321807', '3218', 'Padaherang'), ('321808', '3218', 'Kalipucang'), ('321809', '3218', 'Pangandaran'), ('321810', '3218', 'Sidamulih'), ('327101', '3271', 'Bogor Selatan'), ('327102', '3271', 'Bogor Timur'), ('327103', '3271', 'Bogor Tengah'), ('327104', '3271', 'Bogor Barat'), ('327105', '3271', 'Bogor Utara'), ('327106', '3271', 'Tanah Sareal'), ('327201', '3272', 'Gunung Puyuh'), ('327202', '3272', 'Cikole'), ('327203', '3272', 'Citamiang'), ('327204', '3272', 'Warudoyong'), ('327205', '3272', 'Baros'), ('327206', '3272', 'Lembursitu'), ('327207', '3272', 'Cibeureum'), ('327301', '3273', 'Sukasari'), ('327302', '3273', 'Coblong'), ('327303', '3273', 'Babakan Ciparay'), ('327304', '3273', 'Bojongloa Kaler'), ('327305', '3273', 'Andir'), ('327306', '3273', 'Cicendo'), ('327307', '3273', 'Sukajadi'), ('327308', '3273', 'Cidadap'), ('327309', '3273', 'Bandung Wetan'), ('327310', '3273', 'Astana Anyar'), ('327311', '3273', 'Regol'), ('327312', '3273', 'Batununggal'), ('327313', '3273', 'Lengkong'), ('327314', '3273', 'Cibeunying Kidul'), ('327315', '3273', 'Bandung Kulon'), ('327316', '3273', 'Kiaracondong'), ('327317', '3273', 'Bojongloa Kidul'), ('327318', '3273', 'Cibeunying Kaler'), ('327319', '3273', 'Sumur Bandung'), ('327320', '3273', 'Antapani'), ('327321', '3273', 'Bandung Kidul'), ('327322', '3273', 'Buahbatu'), ('327323', '3273', 'Rancasari'), ('327324', '3273', 'Arcamanik'), ('327325', '3273', 'Cibiru'), ('327326', '3273', 'Ujung Berung'), ('327327', '3273', 'Gedebage'), ('327328', '3273', 'Panyileukan'), ('327329', '3273', 'Cinambo'), ('327330', '3273', 'Mandalajati'), ('327401', '3274', 'Kejaksan'), ('327402', '3274', 'Lemah Wungkuk'), ('327403', '3274', 'Harjamukti'), ('327404', '3274', 'Pekalipan'), ('327405', '3274', 'Kesambi'), ('327501', '3275', 'Bekasi Timur'), ('327502', '3275', 'Bekasi Barat'), ('327503', '3275', 'Bekasi Utara'), ('327504', '3275', 'Bekasi Selatan'), ('327505', '3275', 'Rawa Lumbu'), ('327506', '3275', 'Medan Satria'), ('327507', '3275', 'Bantar Gebang'), ('327508', '3275', 'Pondok Gede'), ('327509', '3275', 'Jatiasih'), ('327510', '3275', 'Jati Sempurna'), ('327511', '3275', 'Mustika Jaya'), ('327512', '3275', 'Pondok Melati'), ('327601', '3276', 'Pancoran Mas'), ('327602', '3276', 'Cimanggis'), ('327603', '3276', 'Sawangan'), ('327604', '3276', 'Limo'), ('327605', '3276', 'Sukmajaya'), ('327606', '3276', 'Beji'), ('327607', '3276', 'Cipayung'), ('327608', '3276', 'Cilodong'), ('327609', '3276', 'Cinere'), ('327610', '3276', 'Tapos'), ('327611', '3276', 'Bojongsari'), ('327701', '3277', 'Cimahi Selatan'), ('327702', '3277', 'Cimahi Tengah'), ('327703', '3277', 'Cimahi Utara'), ('327801', '3278', 'Cihideung'), ('327802', '3278', 'Cipedes'), ('327803', '3278', 'Tawang'), ('327804', '3278', 'Indihiang'), ('327805', '3278', 'Kawalu'), ('327806', '3278', 'Cibeureum'), ('327807', '3278', 'Tamansari'), ('327808', '3278', 'Mangkubumi'), ('327809', '3278', 'Bungursari'), ('327810', '3278', 'Purbaratu'), ('327901', '3279', 'Banjar'), ('327902', '3279', 'Pataruman'), ('327903', '3279', 'Purwaharja'), ('327904', '3279', 'Langensari'), ('330101', '3301', 'Kedungreja'), ('330102', '3301', 'Kesugihan'), ('330103', '3301', 'Adipala'), ('330104', '3301', 'Binangun'), ('330105', '3301', 'Nusawungu'), ('330106', '3301', 'Kroya'), ('330107', '3301', 'Maos'), ('330108', '3301', 'Jeruklegi'), ('330109', '3301', 'Kawunganten'), ('330110', '3301', 'Gandrungmangu'), ('330111', '3301', 'Sidareja'), ('330112', '3301', 'Karangpucung'), ('330113', '3301', 'Cimanggu'), ('330114', '3301', 'Majenang'), ('330115', '3301', 'Wanareja'), ('330116', '3301', 'Dayeuhluhur'), ('330117', '3301', 'Sampang'), ('330118', '3301', 'Cipari'), ('330119', '3301', 'Patimuan'), ('330120', '3301', 'Bantarsari'), ('330121', '3301', 'Cilacap Selatan'), ('330122', '3301', 'Cilacap Tengah'), ('330123', '3301', 'Cilacap Utara'), ('330124', '3301', 'Kampung Laut'), ('330201', '3302', 'Lumbir'), ('330202', '3302', 'Wangon'), ('330203', '3302', 'Jatilawang'), ('330204', '3302', 'Rawalo'), ('330205', '3302', 'Kebasen'), ('330206', '3302', 'Kemranjen'), ('330207', '3302', 'Sumpiuh'), ('330208', '3302', 'Tambak'), ('330209', '3302', 'Somagede'), ('330210', '3302', 'Kalibagor'), ('330211', '3302', 'Banyumas'), ('330212', '3302', 'Patikraja'), ('330213', '3302', 'Purwojati'), ('330214', '3302', 'Ajibarang'), ('330215', '3302', 'Gumelar'), ('330216', '3302', 'Pekuncen'), ('330217', '3302', 'Cilongok'), ('330218', '3302', 'Karanglewas'), ('330219', '3302', 'Sokaraja'), ('330220', '3302', 'Kembaran'), ('330221', '3302', 'Sumbang'), ('330222', '3302', 'Baturraden'), ('330223', '3302', 'Kedungbanteng'), ('330224', '3302', 'Purwokerto Selatan'), ('330225', '3302', 'Purwokerto Barat'), ('330226', '3302', 'Purwokerto Timur'), ('330227', '3302', 'Purwokerto Utara'), ('330301', '3303', 'Kemangkon'), ('330302', '3303', 'Bukateja'), ('330303', '3303', 'Kejobong'), ('330304', '3303', 'Kaligondang'), ('330305', '3303', 'Purbalingga'), ('330306', '3303', 'Kalimanah'), ('330307', '3303', 'Kutasari'), ('330308', '3303', 'Mrebet'), ('330309', '3303', 'Bobotsari'), ('330310', '3303', 'Karangreja'), ('330311', '3303', 'Karanganyar'), ('330312', '3303', 'Karangmoncol'), ('330313', '3303', 'Rembang'), ('330314', '3303', 'Bojongsari'), ('330315', '3303', 'Padamara'), ('330316', '3303', 'Pengadegan'), ('330317', '3303', 'Karangjambu'), ('330318', '3303', 'Kertanegara'), ('330401', '3304', 'Susukan'), ('330402', '3304', 'Purworeja Klampok'), ('330403', '3304', 'Mandiraja'), ('330404', '3304', 'Purwanegara'), ('330405', '3304', 'Bawang'), ('330406', '3304', 'Banjarnegara'), ('330407', '3304', 'Sigaluh'), ('330408', '3304', 'Madukara'), ('330409', '3304', 'Banjarmangu'), ('330410', '3304', 'Wanadadi'), ('330411', '3304', 'Rakit'), ('330412', '3304', 'Punggelan'), ('330413', '3304', 'Karangkobar'), ('330414', '3304', 'Pagentan'), ('330415', '3304', 'Pejawaran'), ('330416', '3304', 'Batur'), ('330417', '3304', 'Wanayasa'), ('330418', '3304', 'Kalibening'), ('330419', '3304', 'Pandanarum'), ('330420', '3304', 'Pagedongan'), ('330501', '3305', 'Ayah'), ('330502', '3305', 'Buayan'), ('330503', '3305', 'Puring'), ('330504', '3305', 'Petanahan'), ('330505', '3305', 'Klirong'), ('330506', '3305', 'Buluspesantren'), ('330507', '3305', 'Ambal'), ('330508', '3305', 'Mirit'), ('330509', '3305', 'Prembun'), ('330510', '3305', 'Kutowinangun'), ('330511', '3305', 'Alian'), ('330512', '3305', 'Kebumen'), ('330513', '3305', 'Pejagoan'), ('330514', '3305', 'Sruweng'), ('330515', '3305', 'Adimulyo'), ('330516', '3305', 'Kuwarasan'), ('330517', '3305', 'Rowokele'), ('330518', '3305', 'Sempor'), ('330519', '3305', 'Gombong'), ('330520', '3305', 'Karanganyar'), ('330521', '3305', 'Karanggayam'), ('330522', '3305', 'Sadang'), ('330523', '3305', 'Bonorowo'), ('330524', '3305', 'Padureso'), ('330525', '3305', 'Poncowarno'), ('330526', '3305', 'Karangsambung'), ('330601', '3306', 'Grabag'), ('330602', '3306', 'Ngombol'), ('330603', '3306', 'Purwodadi'), ('330604', '3306', 'Bagelen'), ('330605', '3306', 'Kaligesing'), ('330606', '3306', 'Purworejo'), ('330607', '3306', 'Banyuurip'), ('330608', '3306', 'Bayan'), ('330609', '3306', 'Kutoarjo'), ('330610', '3306', 'Butuh'), ('330611', '3306', 'Pituruh'), ('330612', '3306', 'Kemiri'), ('330613', '3306', 'Bruno'), ('330614', '3306', 'Gebang'), ('330615', '3306', 'Loano'), ('330616', '3306', 'Bener'), ('330701', '3307', 'Wadaslintang'), ('330702', '3307', 'Kepil'), ('330703', '3307', 'Sapuran'), ('330704', '3307', 'Kaliwiro'), ('330705', '3307', 'Leksono'), ('330706', '3307', 'Selomerto'), ('330707', '3307', 'Kalikajar'), ('330708', '3307', 'Kertek'), ('330709', '3307', 'Wonosobo'), ('330710', '3307', 'Watumalang'), ('330711', '3307', 'Mojotengah'), ('330712', '3307', 'Garung'), ('330713', '3307', 'Kejajar'), ('330714', '3307', 'Sukoharjo'), ('330715', '3307', 'Kalibawang'), ('330801', '3308', 'Salaman'), ('330802', '3308', 'Borobudur'), ('330803', '3308', 'Ngluwar'), ('330804', '3308', 'Salam'), ('330805', '3308', 'Srumbung'), ('330806', '3308', 'Dukun'), ('330807', '3308', 'Sawangan'), ('330808', '3308', 'Muntilan'), ('330809', '3308', 'Mungkid'), ('330810', '3308', 'Mertoyudan'), ('330811', '3308', 'Tempuran'), ('330812', '3308', 'Kajoran'), ('330813', '3308', 'Kaliangkrik'), ('330814', '3308', 'Bandongan'), ('330815', '3308', 'Candimulyo'), ('330816', '3308', 'Pakis'), ('330817', '3308', 'Ngablak'), ('330818', '3308', 'Grabag'), ('330819', '3308', 'Tegalrejo'), ('330820', '3308', 'Secang'), ('330821', '3308', 'Windusari'), ('330901', '3309', 'Selo'), ('330902', '3309', 'Ampel'), ('330903', '3309', 'Cepogo'), ('330904', '3309', 'Musuk'), ('330905', '3309', 'Boyolali'), ('330906', '3309', 'Mojosongo'), ('330907', '3309', 'Teras'), ('330908', '3309', 'Sawit'), ('330909', '3309', 'Banyudono'), ('330910', '3309', 'Sambi'), ('330911', '3309', 'Ngemplak'), ('330912', '3309', 'Nogosari'), ('330913', '3309', 'Simo'), ('330914', '3309', 'Karanggede'), ('330915', '3309', 'Klego'), ('330916', '3309', 'Andong'), ('330917', '3309', 'Kemusu'), ('330918', '3309', 'Wonosegoro'), ('330919', '3309', 'Juwangi'), ('331001', '3310', 'Prambanan'), ('331002', '3310', 'Gantiwarno'), ('331003', '3310', 'Wedi'), ('331004', '3310', 'Bayat'), ('331005', '3310', 'Cawas'), ('331006', '3310', 'Trucuk'), ('331007', '3310', 'Kebonarum'), ('331008', '3310', 'Jogonalan'), ('331009', '3310', 'Manisrenggo'), ('331010', '3310', 'Karangnongko'), ('331011', '3310', 'Ceper'), ('331012', '3310', 'Pedan'), ('331013', '3310', 'Karangdowo'), ('331014', '3310', 'Juwiring'), ('331015', '3310', 'Wonosari'), ('331016', '3310', 'Delanggu'), ('331017', '3310', 'Polanharjo'), ('331018', '3310', 'Karanganom'), ('331019', '3310', 'Tulung'), ('331020', '3310', 'Jatinom'), ('331021', '3310', 'Kemalang'), ('331022', '3310', 'Ngawen'), ('331023', '3310', 'Kalikotes'), ('331024', '3310', 'Klaten Utara'), ('331025', '3310', 'Klaten Tengah'), ('331026', '3310', 'Klaten Selatan'), ('331101', '3311', 'Weru'), ('331102', '3311', 'Bulu'), ('331103', '3311', 'Tawangsari'), ('331104', '3311', 'Sukoharjo'), ('331105', '3311', 'Nguter'), ('331106', '3311', 'Bendosari'), ('331107', '3311', 'Polokarto'), ('331108', '3311', 'Mojolaban'), ('331109', '3311', 'Grogol'), ('331110', '3311', 'Baki'), ('331111', '3311', 'Gatak'), ('331112', '3311', 'Kartasura'), ('331201', '3312', 'Pracimantoro'), ('331202', '3312', 'Giritontro'), ('331203', '3312', 'Giriwoyo'), ('331204', '3312', 'Batuwarno'), ('331205', '3312', 'Tirtomoyo'), ('331206', '3312', 'Nguntoronadi'), ('331207', '3312', 'Baturetno'), ('331208', '3312', 'Eromoko'), ('331209', '3312', 'Wuryantoro'), ('331210', '3312', 'Manyaran'), ('331211', '3312', 'Selogiri'), ('331212', '3312', 'Wonogiri'), ('331213', '3312', 'Ngadirojo'), ('331214', '3312', 'Sidoharjo'), ('331215', '3312', 'Jatiroto'), ('331216', '3312', 'Kismantoro'), ('331217', '3312', 'Purwantoro'), ('331218', '3312', 'Bulukerto'), ('331219', '3312', 'Slogohimo'), ('331220', '3312', 'Jatisrono'), ('331221', '3312', 'Jatipurno'), ('331222', '3312', 'Girimarto'), ('331223', '3312', 'Karangtengah'), ('331224', '3312', 'Paranggupito'), ('331225', '3312', 'Puhpelem'), ('331301', '3313', 'Jatipuro'), ('331302', '3313', 'Jatiyoso'), ('331303', '3313', 'Jumapolo'), ('331304', '3313', 'Jumantono'), ('331305', '3313', 'Matesih'), ('331306', '3313', 'Tawangmangu'), ('331307', '3313', 'Ngargoyoso'), ('331308', '3313', 'Karangpandan'), ('331309', '3313', 'Karanganyar'), ('331310', '3313', 'Tasikmadu'), ('331311', '3313', 'Jaten'), ('331312', '3313', 'Colomadu'), ('331313', '3313', 'Gondangrejo'), ('331314', '3313', 'Kebakkramat'), ('331315', '3313', 'Mojogedang'), ('331316', '3313', 'Kerjo'), ('331317', '3313', 'Jenawi'), ('331401', '3314', 'Kalijambe'), ('331402', '3314', 'Plupuh'), ('331403', '3314', 'Masaran'), ('331404', '3314', 'Kedawung'), ('331405', '3314', 'Sambirejo'), ('331406', '3314', 'Gondang'), ('331407', '3314', 'Sambungmacan'), ('331408', '3314', 'Ngrampal'), ('331409', '3314', 'Karangmalang'), ('331410', '3314', 'Sragen'), ('331411', '3314', 'Sidoharjo'), ('331412', '3314', 'Tanon'), ('331413', '3314', 'Gemolong'), ('331414', '3314', 'Miri'), ('331415', '3314', 'Sumberlawang'), ('331416', '3314', 'Mondokan'), ('331417', '3314', 'Sukodono'), ('331418', '3314', 'Gesi'), ('331419', '3314', 'Tangen'), ('331420', '3314', 'Jenar'), ('331501', '3315', 'Kedungjati'), ('331502', '3315', 'Karangrayung'), ('331503', '3315', 'Penawangan'), ('331504', '3315', 'Toroh'), ('331505', '3315', 'Geyer'), ('331506', '3315', 'Pulokulon'), ('331507', '3315', 'Kradenan'), ('331508', '3315', 'Gabus'), ('331509', '3315', 'Ngaringan'), ('331510', '3315', 'Wirosari'), ('331511', '3315', 'Tawangharjo'), ('331512', '3315', 'Grobogan'), ('331513', '3315', 'Purwodadi'), ('331514', '3315', 'Brati'), ('331515', '3315', 'Klambu'), ('331516', '3315', 'Godong'), ('331517', '3315', 'Gubug'), ('331518', '3315', 'Tegowanu'), ('331519', '3315', 'Tanggungharjo'), ('331601', '3316', 'Jati'), ('331602', '3316', 'Randublatung'), ('331603', '3316', 'Kradenan'), ('331604', '3316', 'Kedungtuban'), ('331605', '3316', 'Cepu'), ('331606', '3316', 'Sambong'), ('331607', '3316', 'Jiken'), ('331608', '3316', 'Jepon'), ('331609', '3316', 'Blora'), ('331610', '3316', 'Tunjungan'), ('331611', '3316', 'Banjarejo'), ('331612', '3316', 'Ngawen'), ('331613', '3316', 'Kunduran'), ('331614', '3316', 'Todanan'), ('331615', '3316', 'Bogorejo'), ('331616', '3316', 'Japah'), ('331701', '3317', 'Sumber'), ('331702', '3317', 'Bulu'), ('331703', '3317', 'Gunem'), ('331704', '3317', 'Sale'), ('331705', '3317', 'Sarang'), ('331706', '3317', 'Sedan'), ('331707', '3317', 'Pamotan'), ('331708', '3317', 'Sulang'), ('331709', '3317', 'Kaliori'), ('331710', '3317', 'Rembang'), ('331711', '3317', 'Pancur'), ('331712', '3317', 'Kragan'), ('331713', '3317', 'Sluke'), ('331714', '3317', 'Lasem'), ('331801', '3318', 'Sukolilo'), ('331802', '3318', 'Kayen'), ('331803', '3318', 'Tambakromo'), ('331804', '3318', 'Winong'), ('331805', '3318', 'Pucakwangi'), ('331806', '3318', 'Jaken'), ('331807', '3318', 'Batangan'), ('331808', '3318', 'Juwana'), ('331809', '3318', 'Jakenan'), ('331810', '3318', 'Pati'), ('331811', '3318', 'Gabus'), ('331812', '3318', 'Margorejo'), ('331813', '3318', 'Gembong'), ('331814', '3318', 'Tlogowungu'), ('331815', '3318', 'Wedarijaksa'), ('331816', '3318', 'Margoyoso'), ('331817', '3318', 'Gunungwungkal'), ('331818', '3318', 'Cluwak'), ('331819', '3318', 'Tayu'), ('331820', '3318', 'Dukuhseti'), ('331821', '3318', 'Trangkil'), ('331901', '3319', 'Kaliwungu'), ('331902', '3319', 'Kota Kudus'), ('331903', '3319', 'Jati'), ('331904', '3319', 'Undaan'), ('331905', '3319', 'Mejobo'), ('331906', '3319', 'Jekulo'), ('331907', '3319', 'Bae'), ('331908', '3319', 'Gebog'), ('331909', '3319', 'Dawe'), ('332001', '3320', 'Kedung'), ('332002', '3320', 'Pecangaan'), ('332003', '3320', 'Welahan'), ('332004', '3320', 'Mayong'), ('332005', '3320', 'Batealit'), ('332006', '3320', 'Jepara'), ('332007', '3320', 'Mlonggo'), ('332008', '3320', 'Bangsri'), ('332009', '3320', 'Keling'), ('332010', '3320', 'Karimun Jawa'), ('332011', '3320', 'Tahunan'), ('332012', '3320', 'Nalumsari'), ('332013', '3320', 'Kalinyamatan'), ('332014', '3320', 'Kembang'), ('332015', '3320', 'Pakis Aji'), ('332016', '3320', 'Donorojo'), ('332101', '3321', 'Mranggen'), ('332102', '3321', 'Karangawen'), ('332103', '3321', 'Guntur'), ('332104', '3321', 'Sayung'), ('332105', '3321', 'Karangtengah'), ('332106', '3321', 'Wonosalam'), ('332107', '3321', 'Dempet'), ('332108', '3321', 'Gajah'), ('332109', '3321', 'Karanganyar'), ('332110', '3321', 'Mijen'), ('332111', '3321', 'Demak'), ('332112', '3321', 'Bonang'), ('332113', '3321', 'Wedung'), ('332114', '3321', 'Kebonagung'), ('332201', '3322', 'Getasan'), ('332202', '3322', 'Tengaran'), ('332203', '3322', 'Susukan'), ('332204', '3322', 'Suruh'), ('332205', '3322', 'Pabelan'), ('332206', '3322', 'Tuntang'), ('332207', '3322', 'Banyubiru'), ('332208', '3322', 'Jambu'), ('332209', '3322', 'Sumowono'), ('332210', '3322', 'Ambarawa'), ('332211', '3322', 'Bawen'), ('332212', '3322', 'Bringin'), ('332213', '3322', 'Bergas'), ('332215', '3322', 'Pringapus'), ('332216', '3322', 'Bancak'), ('332217', '3322', 'Kaliwungu'), ('332218', '3322', 'Ungaran Barat'), ('332219', '3322', 'Ungaran Timur'), ('332220', '3322', 'Bandungan'), ('332301', '3323', 'Bulu'), ('332302', '3323', 'Tembarak'), ('332303', '3323', 'Temanggung'), ('332304', '3323', 'Pringsurat'), ('332305', '3323', 'Kaloran'), ('332306', '3323', 'Kandangan'), ('332307', '3323', 'Kedu'), ('332308', '3323', 'Parakan'), ('332309', '3323', 'Ngadirejo'), ('332310', '3323', 'Jumo'), ('332311', '3323', 'Tretep'), ('332312', '3323', 'Candiroto'), ('332313', '3323', 'Kranggan'), ('332314', '3323', 'Tlogomulyo'), ('332315', '3323', 'Selopampang'), ('332316', '3323', 'Bansari'), ('332317', '3323', 'Kledung'), ('332318', '3323', 'Bejen'), ('332319', '3323', 'Wonoboyo'), ('332320', '3323', 'Gemawang'), ('332401', '3324', 'Plantungan'), ('332402', '3324', 'Pageruyung'), ('332403', '3324', 'Sukorejo'), ('332404', '3324', 'Patean'), ('332405', '3324', 'Singorojo'), ('332406', '3324', 'Limbangan'), ('332407', '3324', 'Boja'), ('332408', '3324', 'Kaliwungu'), ('332409', '3324', 'Brangsong'), ('332410', '3324', 'Pegandon'), ('332411', '3324', 'Gemuh'), ('332412', '3324', 'Weleri'), ('332413', '3324', 'Cepiring'), ('332414', '3324', 'Patebon'), ('332415', '3324', 'Kendal'), ('332416', '3324', 'Rowosari'), ('332417', '3324', 'Kangkung'), ('332418', '3324', 'Ringinarum'), ('332419', '3324', 'Ngampel'), ('332420', '3324', 'Kaliwungu Selatan'), ('332501', '3325', 'Wonotunggal'), ('332502', '3325', 'Bandar'), ('332503', '3325', 'Blado'), ('332504', '3325', 'Reban'), ('332505', '3325', 'Bawang'), ('332506', '3325', 'Tersono'), ('332507', '3325', 'Gringsing'), ('332508', '3325', 'Limpung'), ('332509', '3325', 'Subah'), ('332510', '3325', 'Tulis'), ('332511', '3325', 'Batang'), ('332512', '3325', 'Warungasem'), ('332513', '3325', 'Kandeman'), ('332514', '3325', 'Pecalungan'), ('332515', '3325', 'Banyuputih'), ('332601', '3326', 'Kandangserang'), ('332602', '3326', 'Paninggaran'), ('332603', '3326', 'Lebakbarang'), ('332604', '3326', 'Petungkriyono'), ('332605', '3326', 'Talun'), ('332606', '3326', 'Doro'), ('332607', '3326', 'Karanganyar'), ('332608', '3326', 'Kajen'), ('332609', '3326', 'Kesesi'), ('332610', '3326', 'Sragi'), ('332611', '3326', 'Bojong'), ('332612', '3326', 'Wonopringgo'), ('332613', '3326', 'Kedungwuni'), ('332614', '3326', 'Buaran'), ('332615', '3326', 'Tirto'), ('332616', '3326', 'Wiradesa'), ('332617', '3326', 'Siwalan'), ('332618', '3326', 'Karangdadap'), ('332619', '3326', 'Wonokerto'), ('332701', '3327', 'Moga'), ('332702', '3327', 'Pulosari'), ('332703', '3327', 'Belik'), ('332704', '3327', 'Watukumpul'), ('332705', '3327', 'Bodeh'), ('332706', '3327', 'Bantarbolang'), ('332707', '3327', 'Randudongkal'), ('332708', '3327', 'Pemalang'), ('332709', '3327', 'Taman'), ('332710', '3327', 'Petarukan'), ('332711', '3327', 'Ampelgading'), ('332712', '3327', 'Comal'), ('332713', '3327', 'Ulujami'), ('332714', '3327', 'Warungpring'), ('332801', '3328', 'Margasari'), ('332802', '3328', 'Bumijawa'), ('332803', '3328', 'Bojong'), ('332804', '3328', 'Balapulang'), ('332805', '3328', 'Pagerbarang'), ('332806', '3328', 'Lebaksiu'), ('332807', '3328', 'Jatinegara'), ('332808', '3328', 'Kedungbanteng'), ('332809', '3328', 'Pangkah'), ('332810', '3328', 'Slawi'), ('332811', '3328', 'Adiwerna'), ('332812', '3328', 'Talang'), ('332813', '3328', 'Dukuhturi'), ('332814', '3328', 'Tarub'), ('332815', '3328', 'Kramat'), ('332816', '3328', 'Suradadi'), ('332817', '3328', 'Warureja'), ('332818', '3328', 'Dukuhwaru'), ('332901', '3329', 'Salem'), ('332902', '3329', 'Bantarkawung'), ('332903', '3329', 'Bumiayu'), ('332904', '3329', 'Paguyangan'), ('332905', '3329', 'Sirampog'), ('332906', '3329', 'Tonjong'), ('332907', '3329', 'Jatibarang'), ('332908', '3329', 'Wanasari'), ('332909', '3329', 'Brebes'), ('332910', '3329', 'Songgom'), ('332911', '3329', 'Kersana'), ('332912', '3329', 'Losari'), ('332913', '3329', 'Tanjung'), ('332914', '3329', 'Bulakamba'), ('332915', '3329', 'Larangan'); INSERT INTO `kecamatan` (`id_kec`, `id_kab`, `nama`) VALUES ('332916', '3329', 'Ketanggungan'), ('332917', '3329', 'Banjarharjo'), ('337101', '3371', 'Magelang Selatan'), ('337102', '3371', 'Magelang Utara'), ('337103', '3371', 'Magelang Tengah'), ('337201', '3372', 'Laweyan'), ('337202', '3372', 'Serengan'), ('337203', '3372', 'Pasar Kliwon'), ('337204', '3372', 'Jebres'), ('337205', '3372', 'Banjarsari'), ('337301', '3373', 'Sidorejo'), ('337302', '3373', 'Tingkir'), ('337303', '3373', 'Argomulyo'), ('337304', '3373', 'Sidomukti'), ('337401', '3374', 'Semarang Tengah'), ('337402', '3374', 'Semarang Utara'), ('337403', '3374', 'Semarang Timur'), ('337404', '3374', 'Gayamsari'), ('337405', '3374', 'Genuk'), ('337406', '3374', 'Pedurungan'), ('337407', '3374', 'Semarang Selatan'), ('337408', '3374', 'Candisari'), ('337409', '3374', 'Gajahmungkur'), ('337410', '3374', 'Tembalang'), ('337411', '3374', 'Banyumanik'), ('337412', '3374', 'Gunungpati'), ('337413', '3374', 'Semarang Barat'), ('337414', '3374', 'Mijen'), ('337415', '3374', 'Ngaliyan'), ('337416', '3374', 'Tugu'), ('337501', '3375', 'Pekalongan Barat'), ('337502', '3375', 'Pekalongan Timur'), ('337503', '3375', 'Pekalongan Utara'), ('337504', '3375', 'Pekalongan Selatan'), ('337601', '3376', 'Tegal Barat'), ('337602', '3376', 'Tegal Timur'), ('337603', '3376', 'Tegal Selatan'), ('337604', '3376', 'Margadana'), ('340101', '3401', 'Temon'), ('340102', '3401', 'Wates'), ('340103', '3401', 'Panjatan'), ('340104', '3401', 'Galur'), ('340105', '3401', 'Lendah'), ('340106', '3401', 'Sentolo'), ('340107', '3401', 'Pengasih'), ('340108', '3401', 'Kokap'), ('340109', '3401', 'Girimulyo'), ('340110', '3401', 'Nanggulan'), ('340111', '3401', 'Samigaluh'), ('340112', '3401', 'Kalibawang'), ('340201', '3402', 'Srandakan'), ('340202', '3402', 'Sanden'), ('340203', '3402', 'Kretek'), ('340204', '3402', 'Pundong'), ('340205', '3402', 'Bambang Lipuro'), ('340206', '3402', 'Pandak'), ('340207', '3402', 'Pajangan'), ('340208', '3402', 'Bantul'), ('340209', '3402', 'Jetis'), ('340210', '3402', 'Imogiri'), ('340211', '3402', 'Dlingo'), ('340212', '3402', 'Banguntapan'), ('340213', '3402', 'Pleret'), ('340214', '3402', 'Piyungan'), ('340215', '3402', 'Sewon'), ('340216', '3402', 'Kasihan'), ('340217', '3402', 'Sedayu'), ('340301', '3403', 'Wonosari'), ('340302', '3403', 'Nglipar'), ('340303', '3403', 'Playen'), ('340304', '3403', 'Patuk'), ('340305', '3403', 'Paliyan'), ('340306', '3403', 'Panggang'), ('340307', '3403', 'Tepus'), ('340308', '3403', 'Semanu'), ('340309', '3403', 'Karangmojo'), ('340310', '3403', 'Ponjong'), ('340311', '3403', 'Rongkop'), ('340312', '3403', 'Semin'), ('340313', '3403', 'Ngawen'), ('340314', '3403', 'Gedangsari'), ('340315', '3403', 'Saptosari'), ('340316', '3403', 'Girisubo'), ('340317', '3403', 'Tanjungsari'), ('340318', '3403', 'Purwosari'), ('340401', '3404', 'Gamping'), ('340402', '3404', 'Godean'), ('340403', '3404', 'Moyudan'), ('340404', '3404', 'Minggir'), ('340405', '3404', 'Seyegan'), ('340406', '3404', 'Mlati'), ('340407', '3404', 'Depok'), ('340408', '3404', 'Berbah'), ('340409', '3404', 'Prambanan'), ('340410', '3404', 'Kalasan'), ('340411', '3404', 'Ngemplak'), ('340412', '3404', 'Ngaglik'), ('340413', '3404', 'Sleman'), ('340414', '3404', 'Tempel'), ('340415', '3404', 'Turi'), ('340416', '3404', 'Pakem'), ('340417', '3404', 'Cangkringan'), ('347101', '3471', 'Tegalrejo'), ('347102', '3471', 'Jetis'), ('347103', '3471', 'Gondokusuman'), ('347104', '3471', 'Danurejan'), ('347105', '3471', 'Gedongtengen'), ('347106', '3471', 'Ngampilan'), ('347107', '3471', 'Wirobrajan'), ('347108', '3471', 'Mantrijeron'), ('347109', '3471', 'Kraton'), ('347110', '3471', 'Gondomanan'), ('347111', '3471', 'Pakualaman'), ('347112', '3471', 'Mergangsan'), ('347113', '3471', 'Umbulharjo'), ('347114', '3471', 'Kotagede'), ('350101', '3501', 'Donorojo'), ('350102', '3501', 'Pringkuku'), ('350103', '3501', 'Punung'), ('350104', '3501', 'Pacitan'), ('350105', '3501', 'Kebonagung'), ('350106', '3501', 'Arjosari'), ('350107', '3501', 'Nawangan'), ('350108', '3501', 'Bandar'), ('350109', '3501', 'Tegalombo'), ('350110', '3501', 'Tulakan'), ('350111', '3501', 'Ngadirojo'), ('350112', '3501', 'Sudimoro'), ('350201', '3502', 'Slahung'), ('350202', '3502', 'Ngrayun'), ('350203', '3502', 'Bungkal'), ('350204', '3502', 'Sambit'), ('350205', '3502', 'Sawoo'), ('350206', '3502', 'Sooko'), ('350207', '3502', 'Pulung'), ('350208', '3502', 'Mlarak'), ('350209', '3502', 'Jetis'), ('350210', '3502', 'Siman'), ('350211', '3502', 'Balong'), ('350212', '3502', 'Kauman'), ('350213', '3502', 'Badegan'), ('350214', '3502', 'Sampung'), ('350215', '3502', 'Sukorejo'), ('350216', '3502', 'Babadan'), ('350217', '3502', 'Ponorogo'), ('350218', '3502', 'Jenangan'), ('350219', '3502', 'Ngebel'), ('350220', '3502', 'Jambon'), ('350221', '3502', 'Pudak'), ('350301', '3503', 'Panggul'), ('350302', '3503', 'Munjungan'), ('350303', '3503', 'Pule'), ('350304', '3503', 'Dongko'), ('350305', '3503', 'Tugu'), ('350306', '3503', 'Karangan'), ('350307', '3503', 'Kampak'), ('350308', '3503', 'Watulimo'), ('350309', '3503', 'Bendungan'), ('350310', '3503', 'Gandusari'), ('350311', '3503', 'Trenggalek'), ('350312', '3503', 'Pogalan'), ('350313', '3503', 'Durenan'), ('350314', '3503', 'Suruh'), ('350401', '3504', 'Tulungagung'), ('350402', '3504', 'Boyolangu'), ('350403', '3504', 'Kedungwaru'), ('350404', '3504', 'Ngantru'), ('350405', '3504', 'Kauman'), ('350406', '3504', 'Pagerwojo'), ('350407', '3504', 'Sendang'), ('350408', '3504', 'Karangrejo'), ('350409', '3504', 'Gondang'), ('350410', '3504', 'Sumbergempol'), ('350411', '3504', 'Ngunut'), ('350412', '3504', 'Pucanglaban'), ('350413', '3504', 'Rejotangan'), ('350414', '3504', 'Kalidawir'), ('350415', '3504', 'Besuki'), ('350416', '3504', 'Campurdarat'), ('350417', '3504', 'Bandung'), ('350418', '3504', 'Pakel'), ('350419', '3504', 'Tanggunggunung'), ('350501', '3505', 'Wonodadi'), ('350502', '3505', 'Udanawu'), ('350503', '3505', 'Srengat'), ('350504', '3505', 'Kademangan'), ('350505', '3505', 'Bakung'), ('350506', '3505', 'Ponggok'), ('350507', '3505', 'Sanankulon'), ('350508', '3505', 'Wonotirto'), ('350509', '3505', 'Nglegok'), ('350510', '3505', 'Kanigoro'), ('350511', '3505', 'Garum'), ('350512', '3505', 'Sutojayan'), ('350513', '3505', 'Panggungrejo'), ('350514', '3505', 'Talun'), ('350515', '3505', 'Gandusari'), ('350516', '3505', 'Binangun'), ('350517', '3505', 'Wlingi'), ('350518', '3505', 'Doko'), ('350519', '3505', 'Kesamben'), ('350520', '3505', 'Wates'), ('350521', '3505', 'Selorejo'), ('350522', '3505', 'Selopuro'), ('350601', '3506', 'Semen'), ('350602', '3506', 'Mojo'), ('350603', '3506', 'Kras'), ('350604', '3506', 'Ngadiluwih'), ('350605', '3506', 'Kandat'), ('350606', '3506', 'Wates'), ('350607', '3506', 'Ngancar'), ('350608', '3506', 'Puncu'), ('350609', '3506', 'Plosoklaten'), ('350610', '3506', 'Gurah'), ('350611', '3506', 'Pagu'), ('350612', '3506', 'Gampengrejo'), ('350613', '3506', 'Grogol'), ('350614', '3506', 'Papar'), ('350615', '3506', 'Purwoasri'), ('350616', '3506', 'Plemahan'), ('350617', '3506', 'Pare'), ('350618', '3506', 'Kepung'), ('350619', '3506', 'Kandangan'), ('350620', '3506', 'Tarokan'), ('350621', '3506', 'Kunjang'), ('350622', '3506', 'Banyakan'), ('350623', '3506', 'Ringinrejo'), ('350624', '3506', 'Kayen Kidul'), ('350625', '3506', 'Ngasem'), ('350626', '3506', 'Badas'), ('350701', '3507', 'Donomulyo'), ('350702', '3507', 'Pagak'), ('350703', '3507', 'Bantur'), ('350704', '3507', 'Sumbermanjing Wetan'), ('350705', '3507', 'Dampit'), ('350706', '3507', 'Ampelgading'), ('350707', '3507', 'Poncokusumo'), ('350708', '3507', 'Wajak'), ('350709', '3507', 'Turen'), ('350710', '3507', 'Gondanglegi'), ('350711', '3507', 'Kalipare'), ('350712', '3507', 'Sumberpucung'), ('350713', '3507', 'Kepanjen'), ('350714', '3507', 'Bululawang'), ('350715', '3507', 'Tajinan'), ('350716', '3507', 'Tumpang'), ('350717', '3507', 'Jabung'), ('350718', '3507', 'Pakis'), ('350719', '3507', 'Pakisaji'), ('350720', '3507', 'Ngajung'), ('350721', '3507', 'Wagir'), ('350722', '3507', 'Dau'), ('350723', '3507', 'Karang Ploso'), ('350724', '3507', 'Singosari'), ('350725', '3507', 'Lawang'), ('350726', '3507', 'Pujon'), ('350727', '3507', 'Ngantang'), ('350728', '3507', 'Kasembon'), ('350729', '3507', 'Gedangan'), ('350730', '3507', 'Tirtoyudo'), ('350731', '3507', 'Kromengan'), ('350732', '3507', 'Wonosari'), ('350733', '3507', 'Pagelaran'), ('350801', '3508', 'Tempursari'), ('350802', '3508', 'Pronojiwo'), ('350803', '3508', 'Candipuro'), ('350804', '3508', 'Pasirian'), ('350805', '3508', 'Tempeh'), ('350806', '3508', 'Kunir'), ('350807', '3508', 'Yosowilangun'), ('350808', '3508', 'Rowokangkung'), ('350809', '3508', 'Tekung'), ('350810', '3508', 'Lumajang'), ('350811', '3508', 'Pasrujambe'), ('350812', '3508', 'Senduro'), ('350813', '3508', 'Gucialit'), ('350814', '3508', 'Padang'), ('350815', '3508', 'Sukodono'), ('350816', '3508', 'Kedungjajang'), ('350817', '3508', 'Jatiroto'), ('350818', '3508', 'Randuagung'), ('350819', '3508', 'Klakah'), ('350820', '3508', 'Ranuyoso'), ('350821', '3508', 'Sumbersuko'), ('350901', '3509', 'Jombang'), ('350902', '3509', 'Kencong'), ('350903', '3509', 'Sumberbaru'), ('350904', '3509', 'Gumukmas'), ('350905', '3509', 'Umbulsari'), ('350906', '3509', 'Tanggul'), ('350907', '3509', 'Semboro'), ('350908', '3509', 'Puger'), ('350909', '3509', 'Bangsalsari'), ('350910', '3509', 'Balung'), ('350911', '3509', 'Wuluhan'), ('350912', '3509', 'Ambulu'), ('350913', '3509', 'Rambipuji'), ('350914', '3509', 'Panti'), ('350915', '3509', 'Sukorambi'), ('350916', '3509', 'Jenggawah'), ('350917', '3509', 'Ajung'), ('350918', '3509', 'Tempurejo'), ('350919', '3509', 'Kaliwates'), ('350920', '3509', 'Patrang'), ('350921', '3509', 'Sumbersari'), ('350922', '3509', 'Arjasa'), ('350923', '3509', 'Mumbulsari'), ('350924', '3509', 'Pakusari'), ('350925', '3509', 'Jelbuk'), ('350926', '3509', 'Mayang'), ('350927', '3509', 'Kalisat'), ('350928', '3509', 'Ledokombo'), ('350929', '3509', 'Sukowono'), ('350930', '3509', 'Silo'), ('350931', '3509', 'Sumberjambe'), ('351001', '3510', 'Pesanggaran'), ('351002', '3510', 'Bangorejo'), ('351003', '3510', 'Purwoharjo'), ('351004', '3510', 'Tegaldlimo'), ('351005', '3510', 'Muncar'), ('351006', '3510', 'Cluring'), ('351007', '3510', 'Gambiran'), ('351008', '3510', 'Srono'), ('351009', '3510', 'Genteng'), ('351010', '3510', 'Glenmore'), ('351011', '3510', 'Kalibaru'), ('351012', '3510', 'Singojuruh'), ('351013', '3510', 'Rogojampi'), ('351014', '3510', 'Kabat'), ('351015', '3510', 'Glagah'), ('351016', '3510', 'Banyuwangi'), ('351017', '3510', 'Giri'), ('351018', '3510', 'Wongsorejo'), ('351019', '3510', 'Songgon'), ('351020', '3510', 'Sempu'), ('351021', '3510', 'Kalipuro'), ('351022', '3510', 'Siliragung'), ('351023', '3510', 'Tegalsari'), ('351024', '3510', 'Licin'), ('351101', '3511', 'Maesan'), ('351102', '3511', 'Tamanan'), ('351103', '3511', 'Tlogosari'), ('351104', '3511', 'Sukosari'), ('351105', '3511', 'Pujer'), ('351106', '3511', 'Grujugan'), ('351107', '3511', 'Curahdami'), ('351108', '3511', 'Tenggarang'), ('351109', '3511', 'Wonosari'), ('351110', '3511', 'Tapen'), ('351111', '3511', 'Bondowoso'), ('351112', '3511', 'Wringin'), ('351113', '3511', 'Tegalampel'), ('351114', '3511', 'Klabang'), ('351115', '3511', 'Cermee'), ('351116', '3511', 'Prajekan'), ('351117', '3511', 'Pakem'), ('351118', '3511', 'Sumberwringin'), ('351119', '3511', 'Sempol'), ('351120', '3511', 'Binakal'), ('351121', '3511', 'Taman Krocok'), ('351122', '3511', 'Botolinggo'), ('351123', '3511', 'Jambesari Darus Sholah'), ('351201', '3512', 'Jatibanteng'), ('351202', '3512', 'Besuki'), ('351203', '3512', 'Suboh'), ('351204', '3512', 'Mlandingan'), ('351205', '3512', 'Kendit'), ('351206', '3512', 'Panarukan'), ('351207', '3512', 'Situbondo'), ('351208', '3512', 'Panji'), ('351209', '3512', 'Mangaran'), ('351210', '3512', 'Kapongan'), ('351211', '3512', 'Arjasa'), ('351212', '3512', 'Jangkar'), ('351213', '3512', 'Asembagus'), ('351214', '3512', 'Banyuputih'), ('351215', '3512', 'Sumbermalang'), ('351216', '3512', 'Banyuglugur'), ('351217', '3512', 'Bungatan'), ('351301', '3513', 'Sukapura'), ('351302', '3513', 'Sumber'), ('351303', '3513', 'Kuripan'), ('351304', '3513', 'Bantaran'), ('351305', '3513', 'Leces'), ('351306', '3513', 'Banyuanyar'), ('351307', '3513', 'Tiris'), ('351308', '3513', 'Krucil'), ('351309', '3513', 'Gading'), ('351310', '3513', 'Pakuniran'), ('351311', '3513', 'Kotaanyar'), ('351312', '3513', 'Paiton'), ('351313', '3513', 'Besuk'), ('351314', '3513', 'Kraksaan'), ('351315', '3513', 'Krejengan'), ('351316', '3513', 'Pejarakan'), ('351317', '3513', 'Maron'), ('351318', '3513', 'Gending'), ('351319', '3513', 'Dringu'), ('351320', '3513', 'Tegalsiwalan'), ('351321', '3513', 'Sumberasih'), ('351322', '3513', 'Wonomerto'), ('351323', '3513', 'Tongas'), ('351324', '3513', 'Lumbang'), ('351401', '3514', 'Purwodadi'), ('351402', '3514', 'Tutur'), ('351403', '3514', 'Puspo'), ('351404', '3514', 'Lumbang'), ('351405', '3514', 'Pasrepan'), ('351406', '3514', 'Kejayan'), ('351407', '3514', 'Wonorejo'), ('351408', '3514', 'Purwosari'), ('351409', '3514', 'Sukorejo'), ('351410', '3514', 'Prigen'), ('351411', '3514', 'Pandaan'), ('351412', '3514', 'Gempol'), ('351413', '3514', 'Beji'), ('351414', '3514', 'Bangil'), ('351415', '3514', 'Rembang'), ('351416', '3514', 'Kraton'), ('351417', '3514', 'Pohjentrek'), ('351418', '3514', 'Gondangwetan'), ('351419', '3514', 'Winongan'), ('351420', '3514', 'Grati'), ('351421', '3514', 'Nguling'), ('351422', '3514', 'Lekok'), ('351423', '3514', 'Rejoso'), ('351424', '3514', 'Tosari'), ('351501', '3515', 'Tarik'), ('351502', '3515', 'Prambon'), ('351503', '3515', 'Krembung'), ('351504', '3515', 'Porong'), ('351505', '3515', 'Jabon'), ('351506', '3515', 'Tanggulangin'), ('351507', '3515', 'Candi'), ('351508', '3515', 'Sidoarjo'), ('351509', '3515', 'Tulangan'), ('351510', '3515', 'Wonoayu'), ('351511', '3515', 'Krian'), ('351512', '3515', 'Balongbendo'), ('351513', '3515', 'Taman'), ('351514', '3515', 'Sukodono'), ('351515', '3515', 'Buduran'), ('351516', '3515', 'Gedangan'), ('351517', '3515', 'Sedati'), ('351518', '3515', 'Waru'), ('351601', '3516', 'Jatirejo'), ('351602', '3516', 'Gondang'), ('351603', '3516', 'Pacet'), ('351604', '3516', 'Trawas'), ('351605', '3516', 'Ngoro'), ('351606', '3516', 'Pungging'), ('351607', '3516', 'Kutorejo'), ('351608', '3516', 'Mojosari'), ('351609', '3516', 'Dlanggu'), ('351610', '3516', 'Bangsal'), ('351611', '3516', 'Puri'), ('351612', '3516', 'Trowulan'), ('351613', '3516', 'Sooko'), ('351614', '3516', 'Gedeg'), ('351615', '3516', 'Kemlagi'), ('351616', '3516', 'Jetis'), ('351617', '3516', 'Dawarblandong'), ('351618', '3516', 'Mojoanyar'), ('351701', '3517', 'Perak'), ('351702', '3517', 'Gudo'), ('351703', '3517', 'Ngoro'), ('351704', '3517', 'Bareng'), ('351705', '3517', 'Wonosalam'), ('351706', '3517', 'Mojoagung'), ('351707', '3517', 'Mojowarno'), ('351708', '3517', 'Diwek'), ('351709', '3517', 'Jombang'), ('351710', '3517', 'Peterongan'), ('351711', '3517', 'Sumobito'), ('351712', '3517', 'Kesamben'), ('351713', '3517', 'Tembelang'), ('351714', '3517', 'Ploso'), ('351715', '3517', 'Plandaan'), ('351716', '3517', 'Kabuh'), ('351717', '3517', 'Kudu'), ('351718', '3517', 'Bandarkedungmulyo'), ('351719', '3517', 'Jogoroto'), ('351720', '3517', 'Megaluh'), ('351721', '3517', 'Ngusikan'), ('351801', '3518', 'Sawahan'), ('351802', '3518', 'Ngetos'), ('351803', '3518', 'Berbek'), ('351804', '3518', 'Loceret'), ('351805', '3518', 'Pace'), ('351806', '3518', 'Prambon'), ('351807', '3518', 'Ngronggot'), ('351808', '3518', 'Kertosono'), ('351809', '3518', 'Patianrowo'), ('351810', '3518', 'Baron'), ('351811', '3518', 'Tanjunganom'), ('351812', '3518', 'Sukomoro'), ('351813', '3518', 'Nganjuk'), ('351814', '3518', 'Bagor'), ('351815', '3518', 'Wilangan'), ('351816', '3518', 'Rejoso'), ('351817', '3518', 'Gondang'), ('351818', '3518', 'Ngluyu'), ('351819', '3518', 'Lengkong'), ('351820', '3518', 'Jatikalen'), ('351901', '3519', 'Kebon Sari'), ('351902', '3519', 'Dolopo'), ('351903', '3519', 'Geger'), ('351904', '3519', 'Dagangan'), ('351905', '3519', 'Kare'), ('351906', '3519', 'Gemarang'), ('351907', '3519', 'Wungu'), ('351908', '3519', 'Madiun'), ('351909', '3519', 'Jiwan'), ('351910', '3519', 'Balerejo'), ('351911', '3519', 'Mejayan'), ('351912', '3519', 'Saradan'), ('351913', '3519', 'Pilangkenceng'), ('351914', '3519', 'Sawahan'), ('351915', '3519', 'Wonoasri'), ('352001', '3520', 'Poncol'), ('352002', '3520', 'Parang'), ('352003', '3520', 'Lembeyan'), ('352004', '3520', 'Takeran'), ('352005', '3520', 'Kawedanan'), ('352006', '3520', 'Magetan'), ('352007', '3520', 'Plaosan'), ('352008', '3520', 'Panekan'), ('352009', '3520', 'Sukomoro'), ('352010', '3520', 'Bendo'), ('352011', '3520', 'Maospati'), ('352012', '3520', 'Barat'), ('352013', '3520', 'Karangrejo'), ('352014', '3520', 'Karas'), ('352015', '3520', 'Kartoharjo'), ('352016', '3520', 'Ngariboyo'), ('352017', '3520', 'Nguntoronadi'), ('352018', '3520', 'Sidorejo'), ('352101', '3521', 'Sine'), ('352102', '3521', 'Ngrambe'), ('352103', '3521', 'Jogorogo'), ('352104', '3521', 'Kendal'), ('352105', '3521', 'Geneng'), ('352106', '3521', 'Kwadungan'), ('352107', '3521', 'Karangjati'), ('352108', '3521', 'Padas'), ('352109', '3521', 'Ngawi'), ('352110', '3521', 'Paron'), ('352111', '3521', 'Kedunggalar'), ('352112', '3521', 'Widodaren'), ('352113', '3521', 'Mantingan'), ('352114', '3521', 'Pangkur'), ('352115', '3521', 'Bringin'), ('352116', '3521', 'Pitu'), ('352117', '3521', 'Karanganyar'), ('352118', '3521', 'Gerih'), ('352119', '3521', 'Kasreman'), ('352201', '3522', 'Ngraho'), ('352202', '3522', 'Tambakrejo'), ('352203', '3522', 'Ngambon'), ('352204', '3522', 'Ngasem'), ('352205', '3522', 'Bubulan'), ('352206', '3522', 'Dander'), ('352207', '3522', 'Sugihwaras'), ('352208', '3522', 'Kedungadem'), ('352209', '3522', 'Kepoh Baru'), ('352210', '3522', 'Baureno'), ('352211', '3522', 'Kanor'), ('352212', '3522', 'Sumberejo'), ('352213', '3522', 'Balen'), ('352214', '3522', 'Kapas'), ('352215', '3522', 'Bojonegoro'), ('352216', '3522', 'Kalitidu'), ('352217', '3522', 'Malo'), ('352218', '3522', 'Purwosari'), ('352219', '3522', 'Padangan'), ('352220', '3522', 'Kasiman'), ('352221', '3522', 'Temayang'), ('352222', '3522', 'Margomulyo'), ('352223', '3522', 'Trucuk'), ('352224', '3522', 'Sukosewu'), ('352225', '3522', 'Kedewan'), ('352226', '3522', 'Gondang'), ('352227', '3522', 'Sekar'), ('352228', '3522', 'Gayam'), ('352301', '3523', 'Kenduruan'), ('352302', '3523', 'Jatirogo'), ('352303', '3523', 'Bangilan'), ('352304', '3523', 'Bancar'), ('352305', '3523', 'Senori'), ('352306', '3523', 'Tambakboyo'), ('352307', '3523', 'Singgahan'), ('352308', '3523', 'Kerek'), ('352309', '3523', 'Parengan'), ('352310', '3523', 'Montong'), ('352311', '3523', 'Soko'), ('352312', '3523', 'Jenu'), ('352313', '3523', 'Merakurak'), ('352314', '3523', 'Rengel'), ('352315', '3523', 'Semanding'), ('352316', '3523', 'Tuban'), ('352317', '3523', 'Plumpang'), ('352318', '3523', 'Palang'), ('352319', '3523', 'Widang'), ('352320', '3523', 'Grabagan'), ('352401', '3524', 'Sukorame'), ('352402', '3524', 'Bluluk'), ('352403', '3524', 'Modo'), ('352404', '3524', 'Ngimbang'), ('352405', '3524', 'Babat'), ('352406', '3524', 'Kedungpring'), ('352407', '3524', 'Brondong'), ('352408', '3524', 'Laren'), ('352409', '3524', 'Sekaran'), ('352410', '3524', 'Maduran'), ('352411', '3524', 'Sambeng'), ('352412', '3524', 'Sugio'), ('352413', '3524', 'Pucuk'), ('352414', '3524', 'Paciran'), ('352415', '3524', 'Solokuro'), ('352416', '3524', 'Mantup'), ('352417', '3524', 'Sukodadi'), ('352418', '3524', 'Karanggeneng'), ('352419', '3524', 'Kembangbahu'), ('352420', '3524', 'Kalitengah'), ('352421', '3524', 'Turi'), ('352422', '3524', 'Lamongan'), ('352423', '3524', 'Tikung'), ('352424', '3524', 'Karangbinangun'), ('352425', '3524', 'Deket'), ('352426', '3524', 'Glagah'), ('352427', '3524', 'Sarirejo'), ('352501', '3525', 'Dukun'), ('352502', '3525', 'Balongpanggang'), ('352503', '3525', 'Panceng'), ('352504', '3525', 'Benjeng'), ('352505', '3525', 'Duduksampeyan'), ('352506', '3525', 'Wringinanom'), ('352507', '3525', 'Ujungpangkah'), ('352508', '3525', 'Kedamean'), ('352509', '3525', 'Sidayu'), ('352510', '3525', 'Manyar'), ('352511', '3525', 'Cerme'), ('352512', '3525', 'Bungah'), ('352513', '3525', 'Menganti'), ('352514', '3525', 'Kebomas'), ('352515', '3525', 'Driyorejo'), ('352516', '3525', 'Gresik'), ('352517', '3525', 'Sangkapura'), ('352518', '3525', 'Tambak'), ('352601', '3526', 'Bangkalan'), ('352602', '3526', 'Socah'), ('352603', '3526', 'Burneh'), ('352604', '3526', 'Kamal'), ('352605', '3526', 'Arosbaya'), ('352606', '3526', 'Geger'), ('352607', '3526', 'Klampis'), ('352608', '3526', 'Sepulu'), ('352609', '3526', 'Tanjung Bumi'), ('352610', '3526', 'Kokop'), ('352611', '3526', 'Kwanyar'), ('352612', '3526', 'Labang'), ('352613', '3526', 'Tanah Merah'), ('352614', '3526', 'Tragah'), ('352615', '3526', 'Blega'), ('352616', '3526', 'Modung'), ('352617', '3526', 'Konang'), ('352618', '3526', 'Galis'), ('352701', '3527', 'Sreseh'), ('352702', '3527', 'Torjun'), ('352703', '3527', 'Sampang'), ('352704', '3527', 'Camplong'), ('352705', '3527', 'Omben'), ('352706', '3527', 'Kedungdung'), ('352707', '3527', 'Jrengik'), ('352708', '3527', 'Tambelangan'), ('352709', '3527', 'Banyuates'), ('352710', '3527', 'Robatal'), ('352711', '3527', 'Sokobanah'), ('352712', '3527', 'Ketapang'), ('352713', '3527', 'Pangarengan'), ('352714', '3527', 'Karangpenang'), ('352801', '3528', 'Tlanakan'), ('352802', '3528', 'Pademawu'), ('352803', '3528', 'Galis'), ('352804', '3528', 'Pamekasan'), ('352805', '3528', 'Proppo'), ('352806', '3528', 'Palenga\"an'), ('352807', '3528', 'Pegantenan'), ('352808', '3528', 'Larangan'), ('352809', '3528', 'Pakong'), ('352810', '3528', 'Waru'), ('352811', '3528', 'Batumarmar'), ('352812', '3528', 'Kadur'), ('352813', '3528', 'Pasean'), ('352901', '3529', 'Kota Sumenep'), ('352902', '3529', 'Kalianget'), ('352903', '3529', 'Manding'), ('352904', '3529', 'Talango'), ('352905', '3529', 'Bluto'), ('352906', '3529', 'Saronggi'), ('352907', '3529', 'Lenteng'), ('352908', '3529', 'Gili Ginting'), ('352909', '3529', 'Guluk-Guluk'), ('352910', '3529', 'Ganding'), ('352911', '3529', 'Pragaan'), ('352912', '3529', 'Ambunten'), ('352913', '3529', 'Pasongsongan'), ('352914', '3529', 'Dasuk'), ('352915', '3529', 'Rubaru'), ('352916', '3529', 'Batang Batang'), ('352917', '3529', 'Batu Putih'), ('352918', '3529', 'Dungkek'), ('352919', '3529', 'Gapura'), ('352920', '3529', 'Gayam'), ('352921', '3529', 'Nonggunong'), ('352922', '3529', 'Ra\"as'), ('352923', '3529', 'Masalembu'), ('352924', '3529', 'Arjasa'), ('352925', '3529', 'Sapeken'), ('352926', '3529', 'Batuan'), ('352927', '3529', 'Kangayan'), ('357101', '3571', 'Mojoroto'), ('357102', '3571', 'Kota'), ('357103', '3571', 'Pesantren'), ('357201', '3572', 'Kepanjenkidul'), ('357202', '3572', 'Sukorejo'), ('357203', '3572', 'Sananwetan'), ('357301', '3573', 'Blimbing'), ('357302', '3573', 'Klojen'), ('357303', '3573', 'Kedungkandang'), ('357304', '3573', 'Sukun'), ('357305', '3573', 'Lowokwaru'), ('357401', '3574', 'Kademangan'), ('357402', '3574', 'Wonoasih'), ('357403', '3574', 'Mayangan'), ('357404', '3574', 'Kanigaran'), ('357405', '3574', 'Kedopak'), ('357501', '3575', 'Gadingrejo'), ('357502', '3575', 'Purworejo'), ('357503', '3575', 'Bugul Kidul'), ('357504', '3575', 'Panggungrejo'), ('357601', '3576', 'Prajurit Kulon'), ('357602', '3576', 'Magersari'), ('357701', '3577', 'Kartoharjo'), ('357702', '3577', 'Manguharjo'), ('357703', '3577', 'Taman'), ('357801', '3578', 'Karangpilang'), ('357802', '3578', 'Wonocolo'), ('357803', '3578', 'Rungkut'), ('357804', '3578', 'Wonokromo'), ('357805', '3578', 'Tegalsari'), ('357806', '3578', 'Sawahan'), ('357807', '3578', 'Genteng'), ('357808', '3578', 'Gubeng'), ('357809', '3578', 'Sukolilo'), ('357810', '3578', 'Tambaksari'), ('357811', '3578', 'Simokerto'), ('357812', '3578', 'Pabean Cantikan'), ('357813', '3578', 'Bubutan'), ('357814', '3578', 'Tandes'), ('357815', '3578', 'Krembangan'), ('357816', '3578', 'Semampir'), ('357817', '3578', 'Kenjeran'), ('357818', '3578', 'Lakarsantri'), ('357819', '3578', 'Benowo'), ('357820', '3578', 'Wiyung'), ('357821', '3578', 'Dukuhpakis'), ('357822', '3578', 'Gayungan'), ('357823', '3578', 'Jambangan'), ('357824', '3578', 'Tenggilis Mejoyo'), ('357825', '3578', 'Gunung Anyar'), ('357826', '3578', 'Mulyorejo'), ('357827', '3578', 'Sukomanunggal'), ('357828', '3578', 'Asem Rowo'), ('357829', '3578', 'Bulak'), ('357830', '3578', 'Pakal'), ('357831', '3578', 'Sambikerep'), ('357901', '3579', 'Batu'), ('357902', '3579', 'Bumiaji'), ('357903', '3579', 'Junrejo'), ('360101', '3601', 'Sumur'), ('360102', '3601', 'Cimanggu'), ('360103', '3601', 'Cibaliung'), ('360104', '3601', 'Cikeusik'), ('360105', '3601', 'Cigeulis'), ('360106', '3601', 'Panimbang'), ('360107', '3601', 'Angsana'), ('360108', '3601', 'Munjul'), ('360109', '3601', 'Pagelaran'), ('360110', '3601', 'Bojong'), ('360111', '3601', 'Picung'), ('360112', '3601', 'Labuan'), ('360113', '3601', 'Menes'), ('360114', '3601', 'Saketi'), ('360115', '3601', 'Cipeucang'), ('360116', '3601', 'Jiput'), ('360117', '3601', 'Mandalawangi'), ('360118', '3601', 'Cimanuk'), ('360119', '3601', 'Kaduhejo'), ('360120', '3601', 'Banjar'), ('360121', '3601', 'Pandeglang'), ('360122', '3601', 'Cadasari'), ('360123', '3601', 'Cisata'), ('360124', '3601', 'Patia'), ('360125', '3601', 'Karang Tanjung'), ('360126', '3601', 'Cikedal'), ('360127', '3601', 'Cibitung'), ('360128', '3601', 'Carita'), ('360129', '3601', 'Sukaresmi'), ('360130', '3601', 'Mekarjaya'), ('360131', '3601', 'Sindangresmi'), ('360132', '3601', 'Pulosari'), ('360133', '3601', 'Koroncong'), ('360134', '3601', 'Majasari'), ('360135', '3601', 'Sobang'), ('360201', '3602', 'Malingping'), ('360202', '3602', 'Panggarangan'), ('360203', '3602', 'Bayah'), ('360204', '3602', 'Cipanas'), ('360205', '3602', 'Muncang'), ('360206', '3602', 'Leuwidamar'), ('360207', '3602', 'Bojongmanik'), ('360208', '3602', 'Gunungkencana'), ('360209', '3602', 'Banjarsari'), ('360210', '3602', 'Cileles'), ('360211', '3602', 'Cimarga'), ('360212', '3602', 'Sajira'), ('360213', '3602', 'Maja'), ('360214', '3602', 'Rangkasbitung'), ('360215', '3602', 'Warunggunung'), ('360216', '3602', 'Cijaku'), ('360217', '3602', 'Cikulur'), ('360218', '3602', 'Cibadak'), ('360219', '3602', 'Cibeber'), ('360220', '3602', 'Cilograng'), ('360221', '3602', 'Wanasalam'), ('360222', '3602', 'Sobang'), ('360223', '3602', 'Curug bitung'), ('360224', '3602', 'Kalanganyar'), ('360225', '3602', 'Lebakgedong'), ('360226', '3602', 'Cihara'), ('360227', '3602', 'Cirinten'), ('360228', '3602', 'Cigemlong'), ('360301', '3603', 'Balaraja'), ('360302', '3603', 'Jayanti'), ('360303', '3603', 'Tigaraksa'), ('360304', '3603', 'Jambe'), ('360305', '3603', 'Cisoka'), ('360306', '3603', 'Kresek'), ('360307', '3603', 'Kronjo'), ('360308', '3603', 'Mauk'), ('360309', '3603', 'Kemiri'), ('360310', '3603', 'Sukadiri'), ('360311', '3603', 'Rajeg'), ('360312', '3603', 'Pasar Kemis'), ('360313', '3603', 'Teluknaga'), ('360314', '3603', 'Kosambi'), ('360315', '3603', 'Pakuhaji'), ('360316', '3603', 'Sepatan'), ('360317', '3603', 'Curug'), ('360318', '3603', 'Cikupa'), ('360319', '3603', 'Panongan'), ('360320', '3603', 'Legok'), ('360322', '3603', 'Pagedangan'), ('360323', '3603', 'Cisauk'), ('360327', '3603', 'Sukamulya'), ('360328', '3603', 'Kelapa Dua'), ('360329', '3603', 'Sindang Jaya'), ('360330', '3603', 'Sepatan Timur'), ('360331', '3603', 'Solear'), ('360332', '3603', 'Gunung Kaler'), ('360333', '3603', 'Mekar Baru'), ('360405', '3604', 'Kramatwatu'), ('360406', '3604', 'Waringinkurung'), ('360407', '3604', 'Bojonegara'), ('360408', '3604', 'Pulo Ampel'), ('360409', '3604', 'Ciruas'), ('360411', '3604', 'Kragilan'), ('360412', '3604', 'Pontang'), ('360413', '3604', 'Tirtayasa'), ('360414', '3604', 'Tanara'), ('360415', '3604', 'Cikande'), ('360416', '3604', 'Kibin'), ('360417', '3604', 'Carenang'), ('360418', '3604', 'Binuang'), ('360419', '3604', 'Petir'), ('360420', '3604', 'Tunjung Teja'), ('360422', '3604', 'Baros'), ('360423', '3604', 'Cikeusal'), ('360424', '3604', 'Pamarayan'), ('360425', '3604', 'Kopo'), ('360426', '3604', 'Jawilan'), ('360427', '3604', 'Ciomas'), ('360428', '3604', 'Pabuaran'), ('360429', '3604', 'Padarincang'), ('360430', '3604', 'Anyar'), ('360431', '3604', 'Cinangka'), ('360432', '3604', 'Mancak'), ('360433', '3604', 'Gunung Sari'), ('360434', '3604', 'Bandung'), ('360435', '3604', 'Lebak Wangi'), ('367101', '3671', 'Tangerang'), ('367102', '3671', 'Jatiuwung'), ('367103', '3671', 'Batuceper'), ('367104', '3671', 'Benda'), ('367105', '3671', 'Cipondoh'), ('367106', '3671', 'Ciledug'), ('367107', '3671', 'Karawaci'), ('367108', '3671', 'Periuk'), ('367109', '3671', 'Cibodas'), ('367110', '3671', 'Neglasari'), ('367111', '3671', 'Pinang'), ('367112', '3671', 'Karang Tengah'), ('367113', '3671', 'Larangan'), ('367201', '3672', 'Cibeber'), ('367202', '3672', 'Cilegon'), ('367203', '3672', 'Pulomerak'), ('367204', '3672', 'Ciwandan'), ('367205', '3672', 'Jombang'), ('367206', '3672', 'Gerogol'), ('367207', '3672', 'Purwakarta'), ('367208', '3672', 'Citangkil'), ('367301', '3673', 'Serang'), ('367302', '3673', 'Kasemen'), ('367303', '3673', 'Walantaka'), ('367304', '3673', 'Curug'), ('367305', '3673', 'Cipocok Jaya'), ('367306', '3673', 'Taktakan'), ('367401', '3674', 'Serpong'), ('367402', '3674', 'Serpong Utara'), ('367403', '3674', 'Pondok Aren'), ('367404', '3674', 'Ciputat'), ('367405', '3674', 'Ciputat Timur'), ('367406', '3674', 'Pamulang'), ('367407', '3674', 'Setu'), ('510101', '5101', 'Negara'), ('510102', '5101', 'Mendoyo'), ('510103', '5101', 'Pekutatan'), ('510104', '5101', 'Melaya'), ('510105', '5101', 'Jembrana'), ('510201', '5102', 'Selemadeg'), ('510202', '5102', 'Salamadeg Timur'), ('510203', '5102', 'Salemadeg Barat'), ('510204', '5102', 'Kerambitan'), ('510205', '5102', 'Tabanan'), ('510206', '5102', 'Kediri'), ('510207', '5102', 'Marga'), ('510208', '5102', 'Penebel'), ('510209', '5102', 'Baturiti'), ('510210', '5102', 'Pupuan'), ('510301', '5103', 'Kuta'), ('510302', '5103', 'Mengwi'), ('510303', '5103', 'Abiansemal'), ('510304', '5103', 'Petang'), ('510305', '5103', 'Kuta Selatan'), ('510306', '5103', 'Kuta Utara'), ('510401', '5104', 'Sukawati'), ('510402', '5104', 'Blahbatuh'), ('510403', '5104', 'Gianyar'), ('510404', '5104', 'Tampaksiring'), ('510405', '5104', 'Ubud'), ('510406', '5104', 'Tegalallang'), ('510407', '5104', 'Payangan'), ('510501', '5105', 'Nusa Penida'), ('510502', '5105', 'Banjarangkan'), ('510503', '5105', 'Klungkung'), ('510504', '5105', 'Dawan'), ('510601', '5106', 'Susut'), ('510602', '5106', 'Bangli'), ('510603', '5106', 'Tembuku'), ('510604', '5106', 'Kintamani'), ('510701', '5107', 'Rendang'), ('510702', '5107', 'Sidemen'), ('510703', '5107', 'Manggis'), ('510704', '5107', 'Karangasem'), ('510705', '5107', 'Abang'), ('510706', '5107', 'Bebandem'), ('510707', '5107', 'Selat'), ('510708', '5107', 'Kubu'), ('510801', '5108', 'Gerokgak'), ('510802', '5108', 'Seririt'), ('510803', '5108', 'Busung biu'), ('510804', '5108', 'Banjar'), ('510805', '5108', 'Sukasada'), ('510806', '5108', 'Buleleng'), ('510807', '5108', 'Sawan'), ('510808', '5108', 'Kubutambahan'), ('510809', '5108', 'Tejakula'), ('517101', '5171', 'Denpasar Selatan'), ('517102', '5171', 'Denpasar Timur'), ('517103', '5171', 'Denpasar Barat'), ('517104', '5171', 'Denpasar Utara'), ('520101', '5201', 'Gerung'), ('520102', '5201', 'Kediri'), ('520103', '5201', 'Narmada'), ('520107', '5201', 'Sekotong'), ('520108', '5201', 'Labuapi'), ('520109', '5201', 'Gunungsari'), ('520112', '5201', 'Lingsar'), ('520113', '5201', 'Lembar'), ('520114', '5201', 'Batu Layar'), ('520115', '5201', 'Kuripan'), ('520201', '5202', 'Praya'), ('520202', '5202', 'Jonggat'), ('520203', '5202', 'Batukliang'), ('520204', '5202', 'Pujut'), ('520205', '5202', 'Praya Barat'), ('520206', '5202', 'Praya Timur'), ('520207', '5202', 'Janapria'), ('520208', '5202', 'Pringgarata'), ('520209', '5202', 'Kopang'), ('520210', '5202', 'Praya Tengah'), ('520211', '5202', 'Praya Barat Daya'), ('520212', '5202', 'Batukliang Utara'), ('520301', '5203', 'Keruak'), ('520302', '5203', 'Sakra'), ('520303', '5203', 'Terara'), ('520304', '5203', 'Sikur'), ('520305', '5203', 'Masbagik'), ('520306', '5203', 'Sukamulia'), ('520307', '5203', 'Selong'), ('520308', '5203', 'Pringgabaya'), ('520309', '5203', 'Aikmel'), ('520310', '5203', 'Sambelia'), ('520311', '5203', 'Montong Gading'), ('520312', '5203', 'Pringgasela'), ('520313', '5203', 'Suralaga'), ('520314', '5203', 'Wanasaba'), ('520315', '5203', 'Sembalun'), ('520316', '5203', 'Suwela'), ('520317', '5203', 'Labuhan Haji'), ('520318', '5203', 'Sakra Timur'), ('520319', '5203', 'Sakra Barat'), ('520320', '5203', 'Jerowaru'), ('520402', '5204', 'Lunyuk'), ('520405', '5204', 'Alas'), ('520406', '5204', 'Utan'), ('520407', '5204', 'Batu Lanteh'), ('520408', '5204', 'Sumbawa'), ('520409', '5204', 'Moyo Hilir'), ('520410', '5204', 'Moyo Hulu'), ('520411', '5204', 'Ropang'), ('520412', '5204', 'Lape'), ('520413', '5204', 'Plampang'), ('520414', '5204', 'Empang'), ('520417', '5204', 'Alas Barat'), ('520418', '5204', 'Labuhan Badas'), ('520419', '5204', 'Labangka'), ('520420', '5204', 'Buer'), ('520421', '5204', 'Rhee'), ('520422', '5204', 'Unter Iwes'), ('520423', '5204', 'Moyo Utara'), ('520424', '5204', 'Maronge'), ('520425', '5204', 'Tarano'), ('520426', '5204', 'Lopok'), ('520427', '5204', 'Lenangguar'), ('520428', '5204', 'Orong Telu'), ('520429', '5204', 'Lantung'), ('520501', '5205', 'Dompu'), ('520502', '5205', 'Kempo'), ('520503', '5205', 'Hu\'u'), ('520504', '5205', 'Kilo'), ('520505', '5205', 'Woja'), ('520506', '5205', 'Pekat'), ('520507', '5205', 'Manggalewa'), ('520508', '5205', 'Pajo'), ('520601', '5206', 'Monta'), ('520602', '5206', 'Bolo'), ('520603', '5206', 'Woha'), ('520604', '5206', 'Belo'), ('520605', '5206', 'Wawo'), ('520606', '5206', 'Sape'), ('520607', '5206', 'Wera'), ('520608', '5206', 'Donggo'), ('520609', '5206', 'Sanggar'), ('520610', '5206', 'Ambalawi'), ('520611', '5206', 'Langgudu'), ('520612', '5206', 'Lambu'), ('520613', '5206', 'Madapangga'), ('520614', '5206', 'Tambora'), ('520615', '5206', 'Soromandi'), ('520616', '5206', 'Parado'), ('520617', '5206', 'Lambitu'), ('520618', '5206', 'Palibelo'), ('520701', '5207', 'Jereweh'), ('520702', '5207', 'Taliwang'), ('520703', '5207', 'Seteluk'), ('520704', '5207', 'Sekongkang'), ('520705', '5207', 'Brang Rea'), ('520706', '5207', 'Poto Tano'), ('520707', '5207', 'Brang Ene'), ('520708', '5207', 'Maluk'), ('520801', '5208', 'Tanjung'), ('520802', '5208', 'Gangga'), ('520803', '5208', 'Kayangan'), ('520804', '5208', 'Bayan'), ('520805', '5208', 'Pemenang'), ('527101', '5271', 'Ampenan'), ('527102', '5271', 'Mataram'), ('527103', '5271', 'Cakranegara'), ('527104', '5271', 'Sekarbela'), ('527105', '5271', 'Selaprang'), ('527106', '5271', 'Sandubaya'), ('527201', '5272', 'RasanaE Barat'), ('527202', '5272', 'RasanaE Timur'), ('527203', '5272', 'Asakota'), ('527204', '5272', 'Raba'), ('527205', '5272', 'Mpunda'), ('530104', '5301', 'Semau'), ('530105', '5301', 'Kupang Barat'), ('530106', '5301', 'Kupang Timur'), ('530107', '5301', 'Sulamu'), ('530108', '5301', 'Kupang Tengah'), ('530109', '5301', 'Amarasi'), ('530110', '5301', 'Fatuleu'), ('530111', '5301', 'Takari'), ('530112', '5301', 'Amfoang Selatan'), ('530113', '5301', 'Amfoang Utara'), ('530116', '5301', 'Nekamese'), ('530117', '5301', 'Amarasi Barat'), ('530118', '5301', 'Amarasi Selatan'), ('530119', '5301', 'Amarasi Timur'), ('530120', '5301', 'Amabi Oefeto Timur'), ('530121', '5301', 'Amfoang Barat Daya'), ('530122', '5301', 'Amfoang Barat Laut'), ('530123', '5301', 'Semau Selatan'), ('530124', '5301', 'Taebenu'), ('530125', '5301', 'Amabi Oefeto'), ('530126', '5301', 'Amfoang Timur'), ('530127', '5301', 'Fatuleu Barat'), ('530128', '5301', 'Fatuleu Tengah'), ('530130', '5301', 'Amfoang Tengah'), ('530201', '5302', 'Kota Soe'), ('530202', '5302', 'Mollo Selatan'), ('530203', '5302', 'Mollo Utara'), ('530204', '5302', 'Amanuban Timur'), ('530205', '5302', 'Amanuban Tengah'), ('530206', '5302', 'Amanuban Selatan'), ('530207', '5302', 'Amanuban Barat'), ('530208', '5302', 'Amanatun Selatan'), ('530209', '5302', 'Amanatun Utara'), ('530210', '5302', 'KI\'E'), ('530211', '5302', 'Kuanfatu'), ('530212', '5302', 'Fatumnasi'), ('530213', '5302', 'Polen'), ('530214', '5302', 'Batu Putih'), ('530215', '5302', 'Boking'), ('530216', '5302', 'Toianas'), ('530217', '5302', 'Nunkolo'), ('530218', '5302', 'Oenino'), ('530219', '5302', 'Kolbano'), ('530220', '5302', 'Kot olin'), ('530221', '5302', 'Kualin'), ('530222', '5302', 'Mollo Barat'), ('530223', '5302', 'Kok Baun'), ('530224', '5302', 'Noebana'), ('530225', '5302', 'Santian'), ('530226', '5302', 'Noebeba'), ('530227', '5302', 'Kuatnana'), ('530228', '5302', 'Fautmolo'), ('530229', '5302', 'Fatukopa'), ('530230', '5302', 'Mollo Tengah'), ('530231', '5302', 'Tobu'), ('530232', '5302', 'Nunbena'), ('530301', '5303', 'Miomafo Timur'), ('530302', '5303', 'Miomafo Barat'), ('530303', '5303', 'Biboki Selatan'), ('530304', '5303', 'Noemuti'), ('530305', '5303', 'Kota Kefamenanu'), ('530306', '5303', 'Biboki Utara'), ('530307', '5303', 'Biboki Anleu'), ('530308', '5303', 'Insana'), ('530309', '5303', 'Insana Utara'), ('530310', '5303', 'Noemuti Timur'), ('530311', '5303', 'Miomaffo Tengah'), ('530312', '5303', 'Musi'), ('530313', '5303', 'Mutis'), ('530314', '5303', 'Bikomi Selatan'), ('530315', '5303', 'Bikomi Tengah'), ('530316', '5303', 'Bikomi Nilulat'), ('530317', '5303', 'Bikomi Utara'), ('530318', '5303', 'Naibenu'), ('530319', '5303', 'Insana Fafinesu'), ('530320', '5303', 'Insana Barat'), ('530321', '5303', 'Insana Tengah'), ('530322', '5303', 'Biboki Tan Pah'), ('530323', '5303', 'Biboki Moenleu'), ('530324', '5303', 'Biboki Feotleu'), ('530401', '5304', 'Lamaknen'), ('530402', '5304', 'TasifetoTimur'), ('530403', '5304', 'Raihat'), ('530404', '5304', 'Tasifeto Barat'), ('530405', '5304', 'Kakuluk Mesak'), ('530412', '5304', 'Kota Atambua'), ('530413', '5304', 'Raimanuk'), ('530417', '5304', 'Lasiolat'), ('530418', '5304', 'Lamaknen Selatan'), ('530421', '5304', 'Atambua Barat'), ('530422', '5304', 'Atambua Selatan'), ('530423', '5304', 'Nanaet Duabesi'), ('530501', '5305', 'Teluk Mutiara'), ('530502', '5305', 'Alor Barat Laut'), ('530503', '5305', 'Alor Barat Daya'), ('530504', '5305', 'Alor Selatan'), ('530505', '5305', 'Alor Timur'), ('530506', '5305', 'Pantar'), ('530507', '5305', 'Alor Tengah Utara'), ('530508', '5305', 'Alor Timur Laut'), ('530509', '5305', 'Pantar Barat'), ('530510', '5305', 'Kabola'), ('530511', '5305', 'Pulau Pura'), ('530512', '5305', 'Mataru'), ('530513', '5305', 'Pureman'), ('530514', '5305', 'Pantar Timur'), ('530515', '5305', 'Lembur'), ('530516', '5305', 'Pantar Tengah'), ('530517', '5305', 'Pantar Baru Laut'), ('530601', '5306', 'Wulanggitang'), ('530602', '5306', 'Titehena'), ('530603', '5306', 'Larantuka'), ('530604', '5306', 'Ile Mandiri'), ('530605', '5306', 'Tanjung Bunga'), ('530606', '5306', 'Solor Barat'), ('530607', '5306', 'Solor Timur'), ('530608', '5306', 'Adonara Barat'), ('530609', '5306', 'Wotan Ulumando'), ('530610', '5306', 'Adonara Timur'), ('530611', '5306', 'Kelubagolit'), ('530612', '5306', 'Witihama'), ('530613', '5306', 'Ile Boleng'), ('530614', '5306', 'Demon Pagong'), ('530615', '5306', 'Lewolema'), ('530616', '5306', 'Ile Bura'), ('530617', '5306', 'Adonara'), ('530618', '5306', 'Adonara Tengah'), ('530619', '5306', 'Solor Selatan'), ('530701', '5307', 'Paga'), ('530702', '5307', 'Mego'), ('530703', '5307', 'Lela'), ('530704', '5307', 'Nita'), ('530705', '5307', 'Alok'), ('530706', '5307', 'Palue'), ('530707', '5307', 'Nelle'), ('530708', '5307', 'Talibura'), ('530709', '5307', 'Waigete'), ('530710', '5307', 'Kewapante'), ('530711', '5307', 'Bola'), ('530712', '5307', 'Magepanda'), ('530713', '5307', 'Waiblama'), ('530714', '5307', 'Alok Barat'), ('530715', '5307', 'Alok Timur'), ('530716', '5307', 'Koting'), ('530717', '5307', 'Tana Wawo'), ('530718', '5307', 'Hewokloang'), ('530719', '5307', 'Kangae'), ('530720', '5307', 'Doreng'), ('530721', '5307', 'Mapitara'), ('530801', '5308', 'Nangapanda'), ('530802', '5308', 'Pulau Ende'), ('530803', '5308', 'Ende'), ('530804', '5308', 'Ende Selatan'), ('530805', '5308', 'Ndona'), ('530806', '5308', 'Detusoko'), ('530807', '5308', 'Wewaria'), ('530808', '5308', 'Wolowaru'), ('530809', '5308', 'Wolojita'), ('530810', '5308', 'Maurole'), ('530811', '5308', 'Maukaro'), ('530812', '5308', 'Lio Timur'), ('530813', '5308', 'Kota Baru'), ('530814', '5308', 'Kelimutu'), ('530815', '5308', 'Detukeli'), ('530816', '5308', 'Ndona Timur'), ('530817', '5308', 'Ndori'), ('530818', '5308', 'Ende Utara'), ('530819', '5308', 'Ende Tengah'), ('530820', '5308', 'Ende Timur'), ('530821', '5308', 'Lepembusu Kelisoke'), ('530901', '5309', 'Aimere'), ('530902', '5309', 'Golewa'), ('530906', '5309', 'Bajawa'), ('530907', '5309', 'Soa'), ('530909', '5309', 'Riung'), ('530912', '5309', 'Jerebuu'), ('530914', '5309', 'Riung Barat'), ('530915', '5309', 'Bajawa Utara'), ('530916', '5309', 'Wolomeze'), ('530918', '5309', 'Golewa Selatan'), ('530919', '5309', 'Golewa Barat'), ('530920', '5309', 'Inerie'), ('531001', '5310', 'Wae Rii'), ('531003', '5310', 'Ruteng'), ('531005', '5310', 'Satar Mese'), ('531006', '5310', 'Cibal'), ('531011', '5310', 'Reok'), ('531012', '5310', 'Langke Rembong'), ('531013', '5310', 'Satar Mese Barat'), ('531014', '5310', 'Rahong Utara'), ('531015', '5310', 'Lelak'), ('531016', '5310', 'Reok Barat'), ('531017', '5310', 'Cibal barat'), ('531101', '5311', 'Kota Waingapu'), ('531102', '5311', 'Haharu'), ('531103', '5311', 'Lewa'), ('531104', '5311', 'Nggaha Ori Angu'), ('531105', '5311', 'Tabundung'), ('531106', '5311', 'Pinu Pahar'), ('531107', '5311', 'Pandawai'), ('531108', '5311', 'Umalulu'), ('531109', '5311', 'Rindi'), ('531110', '5311', 'Pahunga Lodu'), ('531111', '5311', 'Wulla Waijelu'), ('531112', '5311', 'Paberiwai'), ('531113', '5311', 'Karera'), ('531114', '5311', 'Kahaungu Eti'), ('531115', '5311', 'Matawai La Pawu'), ('531116', '5311', 'Kambera'), ('531117', '5311', 'Kambata Mapambuhang'), ('531118', '5311', 'Lewa Tidahu'), ('531119', '5311', 'Katala Hamu Lingu'), ('531120', '5311', 'Kanatang'), ('531121', '5311', 'Ngadu Ngala'), ('531122', '5311', 'Mahu'), ('531204', '5312', 'Tana Righu'), ('531210', '5312', 'Loli'), ('531211', '5312', 'Wanokaka'), ('531212', '5312', 'Lamboya'), ('531215', '5312', 'Kota Waikabubak'), ('531218', '5312', 'Laboya Barat'), ('531301', '5313', 'Naga Wutung'), ('531302', '5313', 'Atadei'), ('531303', '5313', 'Ile Ape'), ('531304', '5313', 'Lebatukan'), ('531305', '5313', 'Nubatukan'), ('531306', '5313', 'Omesuri'), ('531307', '5313', 'Buyasuri'), ('531308', '5313', 'Wulandoni'), ('531309', '5313', 'Ile Ape Timur'), ('531401', '5314', 'Rote Barat Daya'), ('531402', '5314', 'Rote Barat Laut'), ('531403', '5314', 'Lobalain'), ('531404', '5314', 'Rote Tengah'), ('531405', '5314', 'Pantai Baru'), ('531406', '5314', 'Rote Timur'), ('531407', '5314', 'Rote Barat'), ('531408', '5314', 'Rote Selatan'), ('531409', '5314', 'Ndao Nuse'), ('531410', '5314', 'Landu Leko'), ('531501', '5315', 'Macang Pacar'), ('531502', '5315', 'Kuwus'), ('531503', '5315', 'Lembor'), ('531504', '5315', 'Sano Nggoang'), ('531505', '5315', 'Komodo'), ('531506', '5315', 'Boleng'), ('531507', '5315', 'Welak'), ('531508', '5315', 'Ndoso'), ('531509', '5315', 'Lembor Selatan'), ('531510', '5315', 'Mbeliling'), ('531601', '5316', 'Aesesa'), ('531602', '5316', 'Nangaroro'), ('531603', '5316', 'Boawae'), ('531604', '5316', 'Mauponggo'), ('531605', '5316', 'Wolowae'), ('531606', '5316', 'Keo Tengah'), ('531607', '5316', 'Aesesa Selatan'), ('531701', '5317', 'Katiku Tana'), ('531702', '5317', 'Umbu Ratu Nggay Barat'), ('531703', '5317', 'Mamboro'), ('531704', '5317', 'Umbu Ratu Nggay'), ('531705', '5317', 'Katiku Tana Selatan'), ('531801', '5318', 'Loura'), ('531802', '5318', 'Wewewa Utara'), ('531803', '5318', 'Wewewa Timur'), ('531804', '5318', 'Wewewa Barat'), ('531805', '5318', 'Wewewa Selatan'), ('531806', '5318', 'Kodi Bangedo'), ('531807', '5318', 'Kodi'), ('531808', '5318', 'Kodi Utara'), ('531809', '5318', 'Kota Tambolaka'), ('531810', '5318', 'Wewewa Tengah'), ('531811', '5318', 'Kodi Balaghar'), ('531901', '5319', 'Borong'), ('531902', '5319', 'Poco Ranaka'), ('531903', '5319', 'Lamba Leda'), ('531904', '5319', 'Sambi Rampas'), ('531905', '5319', 'Elar'), ('531906', '5319', 'Kota Komba'), ('531907', '5319', 'Rana Mese'), ('531908', '5319', 'Poco Ranaka Timur'), ('531909', '5319', 'Elar Selatan'), ('532001', '5320', 'Sabu Barat'), ('532002', '5320', 'Sabu Tengah'), ('532003', '5320', 'Sabu Timur'), ('532004', '5320', 'Sabu Liae'), ('532005', '5320', 'Hawu Mehara'), ('532006', '5320', 'Raijua'), ('532101', '5321', 'Malaka Tengah'), ('532102', '5321', 'Malaka Barat'), ('532103', '5321', 'Wewiku'), ('532104', '5321', 'Weliman'), ('532105', '5321', 'Rinhat'), ('532106', '5321', 'Io Kufeu'), ('532107', '5321', 'Sasitamean'), ('532108', '5321', 'Laenmanen'), ('532109', '5321', 'Malaka Timur'), ('532110', '5321', 'Kobalima Timur'), ('532111', '5321', 'Kobalima'), ('532112', '5321', 'Botin Leobele'), ('537101', '5371', 'Alak'), ('537102', '5371', 'Maulafa'), ('537103', '5371', 'Kelapa Lima'), ('537104', '5371', 'Oebobo'), ('537105', '5371', 'Kota Raja'), ('537106', '5371', 'Kota Lama'), ('610101', '6101', 'Sambas'), ('610102', '6101', 'Teluk Keramat'), ('610103', '6101', 'Jawai'), ('610104', '6101', 'Tebas'), ('610105', '6101', 'Pemangkat'), ('610106', '6101', 'Sejangkung'), ('610107', '6101', 'Selakau'), ('610108', '6101', 'Paloh'), ('610109', '6101', 'Sajingan Besar'), ('610110', '6101', 'Subah'), ('610111', '6101', 'Galing'), ('610112', '6101', 'Tekarang'), ('610113', '6101', 'Semparuk'), ('610114', '6101', 'Sajad'), ('610115', '6101', 'Sebawi'), ('610116', '6101', 'Jawai Selatan'), ('610117', '6101', 'Tangaran'), ('610118', '6101', 'Salatiga'), ('610119', '6101', 'Selakau Timur'), ('610201', '6102', 'Mempawah Hilir'), ('610206', '6102', 'Toho'), ('610207', '6102', 'Sungai Pinyuh'), ('610208', '6102', 'Siantan'), ('610212', '6102', 'Sungai Kunyit'), ('610215', '6102', 'Segedong'), ('610216', '6102', 'Anjongan'), ('610217', '6102', 'Sadaniang'), ('610218', '6102', 'Mempawah Timur'), ('610301', '6103', 'Kapuas'), ('610302', '6103', 'Mukok'), ('610303', '6103', 'Noyan'), ('610304', '6103', 'Jangkang'), ('610305', '6103', 'Bonti'), ('610306', '6103', 'Beduai'), ('610307', '6103', 'Sekayam'), ('610308', '6103', 'Kembayan'), ('610309', '6103', 'Parindu'), ('610310', '6103', 'Tayan Hulu'), ('610311', '6103', 'Tayan Hilir'), ('610312', '6103', 'Balai'), ('610313', '6103', 'Toba'), ('610320', '6103', 'Meliau'), ('610321', '6103', 'Entikong'), ('610401', '6104', 'Matan Hilir Utara'), ('610402', '6104', 'Marau'), ('610403', '6104', 'Manis Mata'), ('610404', '6104', 'Kendawangan'), ('610405', '6104', 'Sandai'), ('610407', '6104', 'Sungai Laur'), ('610408', '6104', 'Simpang Hulu'), ('610411', '6104', 'Nanga Tayap'), ('610412', '6104', 'Matan Hilir Selatan'), ('610413', '6104', 'Tumbang Titi'), ('610414', '6104', 'Jelai Hulu'), ('610416', '6104', 'Delta Pawan'), ('610417', '6104', 'Muara Pawan'), ('610418', '6104', 'Benua Kayong'), ('610419', '6104', 'Hulu Sungai'), ('610420', '6104', 'Simpang Dua'), ('610421', '6104', 'Air Upas'), ('610422', '6104', 'Singkup'), ('610424', '6104', 'Pemahan'), ('610425', '6104', 'Sungai Melayu Rayak'), ('610501', '6105', 'Sintang'), ('610502', '6105', 'Tempunak'), ('610503', '6105', 'Sepauk'), ('610504', '6105', 'Ketungau Hilir'), ('610505', '6105', 'Ketungau Tengah'), ('610506', '6105', 'Ketungau Hulu'), ('610507', '6105', 'Dedai'), ('610508', '6105', 'Kayan Hilir'), ('610509', '6105', 'Kayan Hulu'), ('610514', '6105', 'Serawai'), ('610515', '6105', 'Ambalau'), ('610519', '6105', 'Kelam Permai'), ('610520', '6105', 'Sungai Tebelian'), ('610521', '6105', 'Binjai Hulu'), ('610601', '6106', 'Putussibau Utara'), ('610602', '6106', 'Bika'), ('610603', '6106', 'Embaloh Hilir'), ('610604', '6106', 'Embaloh Hulu'), ('610605', '6106', 'Bunut Hilir'), ('610606', '6106', 'Bunut Hulu'), ('610607', '6106', 'Jongkong'), ('610608', '6106', 'Hulu Gurung'), ('610609', '6106', 'Selimbau'), ('610610', '6106', 'Semitau'), ('610611', '6106', 'Seberuang'), ('610612', '6106', 'Batang Lupar'), ('610613', '6106', 'Empanang'), ('610614', '6106', 'Badau'), ('610615', '6106', 'Silat Hilir'), ('610616', '6106', 'Silat Hulu'), ('610617', '6106', 'Putussibau Selatan'), ('610618', '6106', 'Kalis'), ('610619', '6106', 'Boyan Tanjung'), ('610620', '6106', 'Mentebah'), ('610621', '6106', 'Pengkadan'), ('610622', '6106', 'Suhaid'), ('610623', '6106', 'Puring Kencana'), ('610701', '6107', 'Sungai Raya'), ('610702', '6107', 'Samalantan'), ('610703', '6107', 'Ledo'), ('610704', '6107', 'Bengkayang'), ('610705', '6107', 'Seluas'), ('610706', '6107', 'Sanggau Ledo'), ('610707', '6107', 'Jagoi Babang'), ('610708', '6107', 'Monterado'), ('610709', '6107', 'Teriak'), ('610710', '6107', 'Suti Semarang'), ('610711', '6107', 'Capkala'), ('610712', '6107', 'Siding'), ('610713', '6107', 'Lumar'), ('610714', '6107', 'Sungai Betung'), ('610715', '6107', 'Sungai Raya Kepulauan'), ('610716', '6107', 'Lembah Bawang'), ('610717', '6107', 'Tujuh Belas'), ('610801', '6108', 'Ngabang'), ('610802', '6108', 'Mempawah Hulu'), ('610803', '6108', 'Menjalin'), ('610804', '6108', 'Mandor'), ('610805', '6108', 'Air Besar'), ('610806', '6108', 'Menyuke'), ('610807', '6108', 'Sengah Temila'), ('610808', '6108', 'Meranti'), ('610809', '6108', 'Kuala Behe'), ('610810', '6108', 'Sebangki'), ('610811', '6108', 'Jelimpo'), ('610812', '6108', 'Banyuke Hulu'), ('610813', '6108', 'Sompak'), ('610901', '6109', 'Sekadau Hilir'), ('610902', '6109', 'Sekadau Hulu'), ('610903', '6109', 'Nanga Taman'), ('610904', '6109', 'Nanga Mahap'), ('610905', '6109', 'Belitang Hilir'), ('610906', '6109', 'Belitang Hulu'), ('610907', '6109', 'Belitang'), ('611001', '6110', 'Belimbing'), ('611002', '6110', 'Nanga Pinoh'), ('611003', '6110', 'Ella Hilir'), ('611004', '6110', 'Menukung'), ('611005', '6110', 'Sayan'), ('611006', '6110', 'Tanah Pinoh'), ('611007', '6110', 'Sokan'), ('611008', '6110', 'Pinoh Utara'), ('611009', '6110', 'Pinoh Selatan'), ('611010', '6110', 'Belimbing Hulu'), ('611011', '6110', 'Tanah Pinoh Barat'), ('611101', '6111', 'Sukadana'), ('611102', '6111', 'Simpang Hilir'), ('611103', '6111', 'Teluk Batang'), ('611104', '6111', 'Pulau Maya'), ('611105', '6111', 'Seponti'), ('611106', '6111', 'Kepulauan Karimata'), ('611201', '6112', 'Sungai Raya'), ('611202', '6112', 'Kuala Mandor B'), ('611203', '6112', 'Sungai Ambawang'), ('611204', '6112', 'Terentang'), ('611205', '6112', 'Batu Ampar'), ('611206', '6112', 'Kubu'), ('611207', '6112', 'Rasau Jaya'), ('611208', '6112', 'Teluk Pakedai'), ('611209', '6112', 'Sungai Kakap'), ('617101', '6171', 'Pontianak Selatan'), ('617102', '6171', 'Pontianak Timur'), ('617103', '6171', 'Pontianak Barat'), ('617104', '6171', 'Pontianak Utara'), ('617105', '6171', 'Pontianak Kota'), ('617106', '6171', 'Pontianak Tenggara'), ('617201', '6172', 'Singkawang Tengah'), ('617202', '6172', 'Singkawang Barat'), ('617203', '6172', 'Singkawang Timur'), ('617204', '6172', 'Singkawang Utara'), ('617205', '6172', 'Singkawang Selatan'), ('620101', '6201', 'Kumai'), ('620102', '6201', 'Arut Selatan'), ('620103', '6201', 'Kotawaringin Lama'), ('620104', '6201', 'Arut Utara'), ('620105', '6201', 'Pangkalan Lada'), ('620106', '6201', 'Pangkalan Banteng'), ('620201', '6202', 'Kota Besi'), ('620202', '6202', 'Cempaga'), ('620203', '6202', 'Mentaya Hulu'), ('620204', '6202', 'Parenggean'), ('620205', '6202', 'Baamang'), ('620206', '6202', 'Mentawa Baru Ketapang'), ('620207', '6202', 'Mentaya Hilir Utara'), ('620208', '6202', 'Mentaya Hilir Selatan'), ('620209', '6202', 'Pulau Hanaut'), ('620210', '6202', 'Antang Kalang'), ('620211', '6202', 'Teluk Sampit'), ('620212', '6202', 'Seranau'), ('620213', '6202', 'Cempaga Hulu'), ('620214', '6202', 'Telawang'), ('620215', '6202', 'Bukit Santuai'), ('620216', '6202', 'Tualan Hulu'), ('620217', '6202', 'Telaga Antang'), ('620301', '6203', 'Selat'), ('620302', '6203', 'Kapuas Hilir'), ('620303', '6203', 'Kapuas Timur'), ('620304', '6203', 'Kapuas Kuala'), ('620305', '6203', 'Kapuas Barat'), ('620306', '6203', 'Pulau Petak'), ('620307', '6203', 'Kapuas Murung'), ('620308', '6203', 'Basarang'), ('620309', '6203', 'Mantangai'), ('620310', '6203', 'Timpah'), ('620311', '6203', 'Kapuas Tengah'), ('620312', '6203', 'Kapuas Hulu'), ('620313', '6203', 'Tamban Catur'), ('620314', '6203', 'Pasak Talawang'), ('620315', '6203', 'Mandau Talawang'), ('620316', '6203', 'Dadahup'), ('620317', '6203', 'Bataguh'), ('620401', '6204', 'Jenamas'), ('620402', '6204', 'Dusun Hilir'), ('620403', '6204', 'Karau Kuala'), ('620404', '6204', 'Dusun Utara'), ('620405', '6204', 'Gn. Bintang Awai'); INSERT INTO `kecamatan` (`id_kec`, `id_kab`, `nama`) VALUES ('620406', '6204', 'Dusun Selatan'), ('620501', '6205', 'Montallat'), ('620502', '6205', 'Gunung Timang'), ('620503', '6205', 'Gunung Purei'), ('620504', '6205', 'Teweh Timur'), ('620505', '6205', 'Teweh Tengah'), ('620506', '6205', 'Lahei'), ('620507', '6205', 'Teweh Baru'), ('620508', '6205', 'Teweh Selatan'), ('620509', '6205', 'Lahei Barat'), ('620601', '6206', 'Kampiang'), ('620602', '6206', 'Katingan Hilir'), ('620603', '6206', 'Tewang Sangalang Garing'), ('620604', '6206', 'Pulau Malan'), ('620605', '6206', 'Katingan Tengah'), ('620606', '6206', 'Sanaman Mantikei'), ('620607', '6206', 'Marikit'), ('620608', '6206', 'Katingan Hulu'), ('620609', '6206', 'Mendawai'), ('620610', '6206', 'Katingan Kuala'), ('620611', '6206', 'Tasik Payawan'), ('620612', '6206', 'Petak Malai'), ('620613', '6206', 'Bukit Raya'), ('620701', '6207', 'Seruyan Hilir'), ('620702', '6207', 'Seruyan Tengah'), ('620703', '6207', 'Danau Sembuluh'), ('620704', '6207', 'Hanau'), ('620705', '6207', 'Seruyan Hulu'), ('620706', '6207', 'Seruyan Hilir Timur'), ('620707', '6207', 'Seruyan Raya'), ('620708', '6207', 'Danau Seluluk'), ('620709', '6207', 'Batu Ampar'), ('620710', '6207', 'Suling Tambun'), ('620801', '6208', 'Sukamara'), ('620802', '6208', 'Jelai'), ('620803', '6208', 'Balai Riam'), ('620804', '6208', 'Pantai Lunci'), ('620805', '6208', 'Permata Kecubung'), ('620901', '6209', 'Lamandau'), ('620902', '6209', 'Delang'), ('620903', '6209', 'Bulik'), ('620904', '6209', 'Bulik Timur'), ('620905', '6209', 'Menthobi Raya'), ('620906', '6209', 'Sematu Jaya'), ('620907', '6209', 'Belantikan Raya'), ('620908', '6209', 'Batang Kawa'), ('621001', '6210', 'Sepang Simin'), ('621002', '6210', 'Kurun'), ('621003', '6210', 'Tewah'), ('621004', '6210', 'Kahayan Hulu Utara'), ('621005', '6210', 'Rungan'), ('621006', '6210', 'Manuhing'), ('621007', '6210', 'Mihing Raya'), ('621008', '6210', 'Damang Batu'), ('621009', '6210', 'Miri Manasa'), ('621010', '6210', 'Rungan Hulu'), ('621011', '6210', 'Mahuning Raya'), ('621012', '6210', 'Rungan Barat'), ('621101', '6211', 'Pandih Batu'), ('621102', '6211', 'Kahayan Kuala'), ('621103', '6211', 'Kahayan Tengah'), ('621104', '6211', 'Banama Tingang'), ('621105', '6211', 'Kahayan Hilir'), ('621106', '6211', 'Maliku'), ('621107', '6211', 'Jabiren'), ('621108', '6211', 'Sebangau Kuala'), ('621201', '6212', 'Murung'), ('621202', '6212', 'Tanah Siang'), ('621203', '6212', 'Laung Tuhup'), ('621204', '6212', 'Permata Intan'), ('621205', '6212', 'Sumber Barito'), ('621206', '6212', 'Barito Tuhup Raya'), ('621207', '6212', 'Tanah Siang Selatan'), ('621208', '6212', 'Sungai Babuat'), ('621209', '6212', 'Seribu Riam'), ('621210', '6212', 'Uut Murung'), ('621301', '6213', 'Dusun Timur'), ('621302', '6213', 'Banua Lima'), ('621303', '6213', 'Patangkep Tutui'), ('621304', '6213', 'Awang'), ('621305', '6213', 'Dusun Tengah'), ('621306', '6213', 'Pematang Karau'), ('621307', '6213', 'Paju Epat'), ('621308', '6213', 'Raren Batuah'), ('621309', '6213', 'Paku'), ('621310', '6213', 'Karusen Janang'), ('627101', '6271', 'Pahandut'), ('627102', '6271', 'Bukit Batu'), ('627103', '6271', 'Jekan Raya'), ('627104', '6271', 'Sabangau'), ('627105', '6271', 'Rakumpit'), ('630101', '6301', 'Takisung'), ('630102', '6301', 'Jorong'), ('630103', '6301', 'Pelaihari'), ('630104', '6301', 'Kurau'), ('630105', '6301', 'Bati Bati'), ('630106', '6301', 'Panyipatan'), ('630107', '6301', 'Kintap'), ('630108', '6301', 'Tambang Ulang'), ('630109', '6301', 'Batu Ampar'), ('630110', '6301', 'Bajuin'), ('630111', '6301', 'Bumi Makmur'), ('630201', '6302', 'Pulausembilan'), ('630202', '6302', 'Pulaulaut Barat'), ('630203', '6302', 'Pulaulaut Selatan'), ('630204', '6302', 'Pulaulaut Timur'), ('630205', '6302', 'Pulausebuku'), ('630206', '6302', 'Pulaulaut Utara'), ('630207', '6302', 'Kelumpang Selatan'), ('630208', '6302', 'Kelumpang Hulu'), ('630209', '6302', 'Kelumpang Tengah'), ('630210', '6302', 'Kelumpang Utara'), ('630211', '6302', 'Pamukan Selatan'), ('630212', '6302', 'Sampanahan'), ('630213', '6302', 'Pamukan Utara'), ('630214', '6302', 'Hampang'), ('630215', '6302', 'Sungaidurian'), ('630216', '6302', 'Pulaulaut Tengah'), ('630217', '6302', 'Kelumpang Hilir'), ('630218', '6302', 'Kelumpang Barat'), ('630219', '6302', 'Pamukan Barat'), ('630220', '6302', 'Pulaulaut Kepulauan'), ('630221', '6302', 'Pulaulaut Tanjung Selayar'), ('630301', '6303', 'Aluh Aluh'), ('630302', '6303', 'Kertak Hanyar'), ('630303', '6303', 'Gambut'), ('630304', '6303', 'Sungai Tabuk'), ('630305', '6303', 'Martapura'), ('630306', '6303', 'Karang Intan'), ('630307', '6303', 'Astambul'), ('630308', '6303', 'Simpang Empat'), ('630309', '6303', 'Pengarom'), ('630310', '6303', 'Sungai Pinang'), ('630311', '6303', 'Aranio'), ('630312', '6303', 'Mataraman'), ('630313', '6303', 'Beruntung Baru'), ('630314', '6303', 'Martapura Barat'), ('630315', '6303', 'Martapura Timur'), ('630316', '6303', 'Sambung Makmur'), ('630317', '6303', 'Paramasan'), ('630318', '6303', 'Telaga Bauntung'), ('630319', '6303', 'Tatah Makmur'), ('630401', '6304', 'Tabunganen'), ('630402', '6304', 'Tamban'), ('630403', '6304', 'Anjir Pasar'), ('630404', '6304', 'Anjir Muara'), ('630405', '6304', 'Alalak'), ('630406', '6304', 'Mandastana'), ('630407', '6304', 'Rantau Badauh'), ('630408', '6304', 'Belawang'), ('630409', '6304', 'Cerbon'), ('630410', '6304', 'Bakumpai'), ('630411', '6304', 'Kuripan'), ('630412', '6304', 'Tabukan'), ('630413', '6304', 'Mekarsari'), ('630414', '6304', 'Barambai'), ('630415', '6304', 'Marabahan'), ('630416', '6304', 'Wanaraya'), ('630417', '6304', 'Jejangkit'), ('630501', '6305', 'Binuang'), ('630502', '6305', 'Tapin Selatan'), ('630503', '6305', 'Tapin Tengah'), ('630504', '6305', 'Tapin Utara'), ('630505', '6305', 'Candi Laras Selatan'), ('630506', '6305', 'Candi Laras Utara'), ('630507', '6305', 'Bakarangan'), ('630508', '6305', 'Piani'), ('630509', '6305', 'Bungur'), ('630510', '6305', 'Lokpaikat'), ('630511', '6305', 'Salam Babaris'), ('630512', '6305', 'Hatungun'), ('630601', '6306', 'Sungai Raya'), ('630602', '6306', 'Padang Batung'), ('630603', '6306', 'Telaga Langsat'), ('630604', '6306', 'Angkinang'), ('630605', '6306', 'Kandangan'), ('630606', '6306', 'Simpur'), ('630607', '6306', 'Daha Selatan'), ('630608', '6306', 'Daha Utara'), ('630609', '6306', 'Kalumpang'), ('630610', '6306', 'Loksado'), ('630611', '6306', 'Daha Barat'), ('630701', '6307', 'Haruyan'), ('630702', '6307', 'Batu Benawa'), ('630703', '6307', 'Labuan Amas Selatan'), ('630704', '6307', 'Labuan Amas Utara'), ('630705', '6307', 'Pandawan'), ('630706', '6307', 'Barabai'), ('630707', '6307', 'Batang Alai Selatan'), ('630708', '6307', 'Batang Alai Utara'), ('630709', '6307', 'Hantakan'), ('630710', '6307', 'Batang Alai Timur'), ('630711', '6307', 'Limpasu'), ('630801', '6308', 'Danau Panggang'), ('630802', '6308', 'Babirik'), ('630803', '6308', 'Sungai Pandan'), ('630804', '6308', 'Amuntai Selatan'), ('630805', '6308', 'Amuntai Tengah'), ('630806', '6308', 'Amuntai Utara'), ('630807', '6308', 'Banjang'), ('630808', '6308', 'Haur Gading'), ('630809', '6308', 'Paminggir'), ('630810', '6308', 'Sungai Tabukan'), ('630901', '6309', 'Banua Lawas'), ('630902', '6309', 'Kelua'), ('630903', '6309', 'Tanta'), ('630904', '6309', 'Tanjung'), ('630905', '6309', 'Haruai'), ('630906', '6309', 'Murung Pudak'), ('630907', '6309', 'Muara Uya'), ('630908', '6309', 'Muara Harus'), ('630909', '6309', 'Pugaan'), ('630910', '6309', 'Upau'), ('630911', '6309', 'Jaro'), ('630912', '6309', 'Bintang Ara'), ('631001', '6310', 'Batu Licin'), ('631002', '6310', 'Kusan Hilir'), ('631003', '6310', 'Sungai Loban'), ('631004', '6310', 'Satui'), ('631005', '6310', 'Kusan Hulu'), ('631006', '6310', 'Simpang Empat'), ('631007', '6310', 'Karang Bintang'), ('631008', '6310', 'Mantewe'), ('631009', '6310', 'Angsana'), ('631010', '6310', 'Kuranji'), ('631101', '6311', 'Juai'), ('631102', '6311', 'Halong'), ('631103', '6311', 'Awayan'), ('631104', '6311', 'Batu Mandi'), ('631105', '6311', 'Lampihong'), ('631106', '6311', 'Paringin'), ('631107', '6311', 'Paringin Selatan'), ('631108', '6311', 'Tebing Tinggi'), ('637101', '6371', 'Banjarmasin Selatan'), ('637102', '6371', 'Banjarmasin Timur'), ('637103', '6371', 'Banjarmasin Barat'), ('637104', '6371', 'Banjarmasin Utara'), ('637105', '6371', 'Banjarmasin Tengah'), ('637202', '6372', 'Landasan Ulin'), ('637203', '6372', 'Cempaka'), ('637204', '6372', 'Banjarbaru Utara'), ('637205', '6372', 'Banjarbaru Selatan'), ('637206', '6372', 'Liang Anggang'), ('640101', '6401', 'Batu Sopang'), ('640102', '6401', 'Tanjung Harapan'), ('640103', '6401', 'Pasir Balengkong'), ('640104', '6401', 'Tanah Grogot'), ('640105', '6401', 'Kuaro'), ('640106', '6401', 'Long Ikis'), ('640107', '6401', 'Muara Komam'), ('640108', '6401', 'Long Kali'), ('640109', '6401', 'Batu Engau'), ('640110', '6401', 'Muara Samu'), ('640201', '6402', 'Muara Muntai'), ('640202', '6402', 'Loa Kulu'), ('640203', '6402', 'Loa Janan'), ('640204', '6402', 'Anggana'), ('640205', '6402', 'Muara Badak'), ('640206', '6402', 'Tenggarong'), ('640207', '6402', 'Sebulu'), ('640208', '6402', 'Kota Bangun'), ('640209', '6402', 'Kenohan'), ('640210', '6402', 'Kembang Janggut'), ('640211', '6402', 'Muara Kaman'), ('640212', '6402', 'Tabang'), ('640213', '6402', 'Samboja'), ('640214', '6402', 'Muara Jawa'), ('640215', '6402', 'Sanga Sanga'), ('640216', '6402', 'Tenggarong Seberang'), ('640217', '6402', 'Marang Kayu'), ('640218', '6402', 'Muara Wis'), ('640301', '6403', 'Kelay'), ('640302', '6403', 'Talisayan'), ('640303', '6403', 'Sambaliung'), ('640304', '6403', 'Segah'), ('640305', '6403', 'Tanjung Redeb'), ('640306', '6403', 'Gunung Tabur'), ('640307', '6403', 'Pulau Derawan'), ('640308', '6403', 'Biduk-Biduk'), ('640309', '6403', 'Teluk Bayur'), ('640310', '6403', 'Tabalar'), ('640311', '6403', 'Maratua'), ('640312', '6403', 'Batu Putih'), ('640313', '6403', 'Biatan'), ('640705', '6407', 'Long Iram'), ('640706', '6407', 'Melak'), ('640707', '6407', 'Barong Tongkok'), ('640708', '6407', 'Damai'), ('640709', '6407', 'Muara Lawa'), ('640710', '6407', 'Muara Pahu'), ('640711', '6407', 'Jempang'), ('640712', '6407', 'Bongan'), ('640713', '6407', 'Penyinggahan'), ('640714', '6407', 'Bentian Besar'), ('640715', '6407', 'Linggang Bigung'), ('640716', '6407', 'Nyuatan'), ('640717', '6407', 'Siluq Ngurai'), ('640718', '6407', 'Mook Manaar Bulatn'), ('640719', '6407', 'Tering'), ('640720', '6407', 'Sekolaq Darat'), ('640801', '6408', 'Muara Ancalong'), ('640802', '6408', 'Muara Wahau'), ('640803', '6408', 'Muara Bengkal'), ('640804', '6408', 'Sangatta Utara'), ('640805', '6408', 'Sangkulirang'), ('640806', '6408', 'Busang'), ('640807', '6408', 'Telen'), ('640808', '6408', 'Kombeng'), ('640809', '6408', 'Bengalon'), ('640810', '6408', 'Kaliorang'), ('640811', '6408', 'Sandaran'), ('640812', '6408', 'Sangatta Selatan'), ('640813', '6408', 'Teluk Pandan'), ('640814', '6408', 'Rantau Pulung'), ('640815', '6408', 'Kaubun'), ('640816', '6408', 'Karangan'), ('640817', '6408', 'Batu Ampar'), ('640818', '6408', 'Long Mesangat'), ('640901', '6409', 'Penajam'), ('640902', '6409', 'Waru'), ('640903', '6409', 'Babulu'), ('640904', '6409', 'Sepaku'), ('641101', '6411', 'Long Bagun'), ('641102', '6411', 'Long Hubung'); -- -------------------------------------------------------- -- -- Struktur dari tabel `provinsi` -- CREATE TABLE `provinsi` ( `id_prov` char(2) NOT NULL, `nama` tinytext NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; -- -- Dumping data untuk tabel `provinsi` -- INSERT INTO `provinsi` (`id_prov`, `nama`) VALUES ('11', 'Aceh'), ('12', 'Sumatera Utara'), ('13', 'Sumatera Barat'), ('14', 'Riau'), ('15', 'Jambi'), ('16', 'Sumatera Selatan'), ('17', 'Bengkulu'), ('18', 'Lampung'), ('19', 'Kepulauan Bangka Belitung'), ('21', 'Kepulauan Riau'), ('31', 'DKI Jakarta'), ('32', 'Jawa Barat'), ('33', 'Jawa Tengah'), ('34', 'DI Yogyakarta'), ('35', 'Jawa Timur'), ('36', 'Banten'), ('51', 'Bali'), ('52', 'Nusa Tenggara Barat'), ('53', 'Nusa Tenggara Timur'), ('61', 'Kalimantan Barat'), ('62', 'Kalimantan Tengah'), ('63', 'Kalimantan Selatan'), ('64', 'Kalimantan Timur'), ('65', 'Kalimantan Utara'), ('71', 'Sulawesi Utara'), ('72', 'Sulawesi Tengah'), ('73', 'Sulawesi Selatan'), ('74', 'Sulawesi Tenggara'), ('75', 'Gorontalo'), ('76', 'Sulawesi Barat'), ('81', 'Maluku'), ('82', 'Maluku Utara'), ('91', 'Papua Barat'), ('92', 'Papua'); -- -------------------------------------------------------- -- -- Struktur dari tabel `sakit` -- CREATE TABLE `sakit` ( `id` int(11) NOT NULL, `nik` varchar(30) NOT NULL, `nama_karyawan` varchar(35) NOT NULL, `tanggal_sekarang` date NOT NULL, `nama_dokter` varchar(100) NOT NULL, `keterangan` text NOT NULL, `foto` varchar(255) NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `sakit` -- INSERT INTO `sakit` (`id`, `nik`, `nama_karyawan`, `tanggal_sekarang`, `nama_dokter`, `keterangan`, `foto`, `id_user`) VALUES (18, ' KA-01 ', 'eka putri', '2020-09-07', 'Dr.wayan edi sudarma', 'muntah-muntah dan sakit perut', 'contoh surat sakit.jpg', 20); -- -------------------------------------------------------- -- -- Struktur dari tabel `saran` -- CREATE TABLE `saran` ( `id` int(11) NOT NULL, `nip` int(11) NOT NULL, `sarankomen` text NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Struktur dari tabel `tugas` -- CREATE TABLE `tugas` ( `id` int(11) NOT NULL, `nik` varchar(30) NOT NULL, `nama_karyawan` varchar(255) NOT NULL, `tanggal_mulai` date NOT NULL, `tanggal_selesai` date NOT NULL, `id_prov` tinytext NOT NULL, `id_kab` tinytext NOT NULL, `id_kec` tinytext NOT NULL, `keterangan` varchar(255) NOT NULL, `status` enum('pending','approve','rejected','') NOT NULL, `id_user` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `tugas` -- INSERT INTO `tugas` (`id`, `nik`, `nama_karyawan`, `tanggal_mulai`, `tanggal_selesai`, `id_prov`, `id_kab`, `id_kec`, `keterangan`, `status`, `id_user`) VALUES (11, ' KA-01 ', 'eka putri', '2020-09-09', '2020-09-13', '15', '1506', '150603', 'tugas dinas mengunjungi kantor andi offset di jakarta', 'pending', 20); -- -------------------------------------------------------- -- -- Struktur dari tabel `tunjangan` -- CREATE TABLE `tunjangan` ( `id_tunjangan` varchar(20) NOT NULL, `id_anggota` varchar(255) NOT NULL, `nama_anggota` varchar(100) NOT NULL, `nomor_ktp` varchar(20) NOT NULL, `no_telp` varchar(15) NOT NULL, `jenis_kelamin` varchar(20) NOT NULL, `tanggal_lahir` date NOT NULL, `kelas` varchar(20) NOT NULL, `gaji` varchar(20) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `tunjangan` -- INSERT INTO `tunjangan` (`id_tunjangan`, `id_anggota`, `nama_anggota`, `nomor_ktp`, `no_telp`, `jenis_kelamin`, `tanggal_lahir`, `kelas`, `gaji`) VALUES ('5', 'KA-01', 'eka putri', '64583744546', '083454556787', 'Perempuan', '1998-07-27', 'Kelas I', '< Rp. 1.000.000'); -- -------------------------------------------------------- -- -- Struktur dari tabel `tunjangan_beras` -- CREATE TABLE `tunjangan_beras` ( `id_tunjangan` int(20) NOT NULL, `id_anggota` varchar(200) NOT NULL, `nama_anggota` varchar(100) NOT NULL, `status_dapat` char(2) NOT NULL COMMENT '1=dapat, 2=tidak dapat', `status_terima` char(2) NOT NULL COMMENT '1=Diterima, 2=Belum diterima, kosong= tidak dapat', `keterangan` varchar(255) NOT NULL, `status_hapus` char(2) NOT NULL COMMENT '1=Dihapus, N=Belum dihapus' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data untuk tabel `tunjangan_beras` -- INSERT INTO `tunjangan_beras` (`id_tunjangan`, `id_anggota`, `nama_anggota`, `status_dapat`, `status_terima`, `keterangan`, `status_hapus`) VALUES (1, 'kjbdfd', 'jskd', '1', '1', 'ksjdb', ''); -- -------------------------------------------------------- -- -- Struktur dari tabel `user` -- CREATE TABLE `user` ( `id` int(20) NOT NULL, `username` varchar(30) NOT NULL, `password` varchar(255) NOT NULL, `nama_anggota` varchar(100) NOT NULL, `tempat_lahir` varchar(100) NOT NULL, `tanggal_lahir` date NOT NULL, `nik` varchar(20) NOT NULL, `alamat_ktp` varchar(255) NOT NULL, `alamat_Sekarang` varchar(255) NOT NULL, `email` varchar(100) NOT NULL, `npwp` varchar(100) DEFAULT NULL, `no_wa` varchar(15) NOT NULL, `no_telp` varchar(15) NOT NULL, `golongan_darah` varchar(10) NOT NULL, `pend_terakhir` varchar(20) NOT NULL, `tgl_masuk_kerja` date NOT NULL, `status_pernikahan` char(1) NOT NULL COMMENT '1=lajang, 2=menikah, 3=cerai hidup, 4=cerai mati', `status_kepegawaian` char(1) NOT NULL COMMENT '1=kontrak, 2=tetap', `status` enum('karyawan','direktur','admin','supervisior') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data untuk tabel `user` -- INSERT INTO `user` (`id`, `username`, `password`, `nama_anggota`, `tempat_lahir`, `tanggal_lahir`, `nik`, `alamat_ktp`, `alamat_Sekarang`, `email`, `npwp`, `no_wa`, `no_telp`, `golongan_darah`, `pend_terakhir`, `tgl_masuk_kerja`, `status_pernikahan`, `status_kepegawaian`, `status`) VALUES (2, 'admin', '$2y$10$siYGkiauftjLSLtWUfC2pOmdFPFWOpQZxEqmHKa5btTcN6mBN1ryS', 'admin', 'Yogyakarta', '1984-05-22', '276433435345454', 'Yogyakarta', 'Yogyakarta', 'andioffset@gmail.com', '7364579356435', '082453656544', '085654554324', 'AB', 'S2', '2013-05-06', 'M', 'T', 'admin'), (7, 'direktur', '$2y$10$LiyfCDYeRpBTJQYXQmsV1uTppDpiQN1wnSnsOh3sTuOyVsadogrT6', 'direktur', 'Jakarta', '1966-07-20', '3648365934692392', 'Jakarta', 'Yogyakarta', 'direktur@gmail.com', '72364553983443', '082345654776', '082345654776', 'B', 'S3', '2007-06-15', 'm', 't', 'direktur'), (20, 'KA-01', '$2y$10$xxlgQTiSdCX77arLjw0kg.l.uvfjEsjbPfLIamMOrKMzcd8anjLAq', 'eka putri', 'Makassar', '1998-07-27', '659346593435323423', 'Tana Toraja', 'Yogyakarta', 'ekaputri@gmail.com', '7645938454', '081345243566', '081333335656', 'O', 'S1', '2020-08-06', 'M', 'T', 'karyawan'); -- -- Indexes for dumped tables -- -- -- Indeks untuk tabel `berita` -- ALTER TABLE `berita` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `bpjs_ketenagakerjaan` -- ALTER TABLE `bpjs_ketenagakerjaan` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `cuti` -- ALTER TABLE `cuti` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `ijin` -- ALTER TABLE `ijin` ADD PRIMARY KEY (`id_ijin`); -- -- Indeks untuk tabel `ijinkeluar` -- ALTER TABLE `ijinkeluar` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `kabupaten` -- ALTER TABLE `kabupaten` ADD PRIMARY KEY (`id_kab`) USING BTREE; -- -- Indeks untuk tabel `karyawan` -- ALTER TABLE `karyawan` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `kecamatan` -- ALTER TABLE `kecamatan` ADD PRIMARY KEY (`id_kec`) USING BTREE; -- -- Indeks untuk tabel `provinsi` -- ALTER TABLE `provinsi` ADD PRIMARY KEY (`id_prov`) USING BTREE; -- -- Indeks untuk tabel `sakit` -- ALTER TABLE `sakit` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `saran` -- ALTER TABLE `saran` ADD UNIQUE KEY `id_user` (`id`); -- -- Indeks untuk tabel `tugas` -- ALTER TABLE `tugas` ADD PRIMARY KEY (`id`); -- -- Indeks untuk tabel `tunjangan` -- ALTER TABLE `tunjangan` ADD PRIMARY KEY (`id_tunjangan`); -- -- Indeks untuk tabel `tunjangan_beras` -- ALTER TABLE `tunjangan_beras` ADD PRIMARY KEY (`id_tunjangan`); -- -- Indeks untuk tabel `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT untuk tabel yang dibuang -- -- -- AUTO_INCREMENT untuk tabel `berita` -- ALTER TABLE `berita` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT untuk tabel `bpjs_ketenagakerjaan` -- ALTER TABLE `bpjs_ketenagakerjaan` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT untuk tabel `cuti` -- ALTER TABLE `cuti` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36; -- -- AUTO_INCREMENT untuk tabel `karyawan` -- ALTER TABLE `karyawan` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT untuk tabel `sakit` -- ALTER TABLE `sakit` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT untuk tabel `saran` -- ALTER TABLE `saran` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT untuk tabel `tugas` -- ALTER TABLE `tugas` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT untuk tabel `tunjangan_beras` -- ALTER TABLE `tunjangan_beras` MODIFY `id_tunjangan` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT untuk tabel `user` -- ALTER TABLE `user` MODIFY `id` int(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; 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 */;
true
f033274cb680d2e90f9afe4f9bdffb9261af5a45
SQL
AppKiv/TaskManager
/htdocs/TaskCtrl/sql/do_new_task.sql
WINDOWS-1251
1,033
3.25
3
[]
no_license
CREATE DEFINER=`ivan`@`%` PROCEDURE `do_new_task`( in v_task_id int ,in v_city_id int ,in v_startdate datetime ,in v_user_id int ,in v_newstatus int ,in v_description text ) BEGIN /* */ INSERT INTO task_status_log(task_id,startdate,status_id,user_id,statusdate,city_id,description) VALUES( v_task_id,v_startdate,v_newstatus,v_user_id,sysdate(),v_city_id,v_description); /* */ IF exists(SELECT 1 FROM task_status WHERE task_id = v_task_id and user_id = v_user_id and city_id = v_city_id and startdate = v_startdate ) THEN UPDATE task_status SET statusdate = sysdate() ,status_id = v_newstatus ,description = v_description WHERE task_id = v_task_id and user_id = v_user_id and city_id = v_city_id and startdate = v_startdate; ELSE INSERT INTO task_status(task_id,startdate,status_id,user_id,statusdate,city_id,description) VALUES( v_task_id,v_startdate,v_newstatus,v_user_id,sysdate(),v_city_id,v_description); END IF; END
true
ccd8fde5bf797b3a9b417bf1e3eda90008e6306d
SQL
agrup/PAW
/TP2-2/ej4.sql
UTF-8
865
3.640625
4
[]
no_license
CREATE DATABASE `blogDB` /*!40100 COLLATE 'latin1_swedish_ci' */; CREATE TABLE `tags` ( `id_tags` INT NOT NULL AUTO_INCREMENT, `nombre_tag` VARCHAR(50)NOT NULL, PRIMARY KEY (`id_tags`) ) COLLATE='latin1_swedish_ci' ; CREATE TABLE `comentario` ( `id_comentario` INT(11) NOT NULL AUTO_INCREMENT, `comentario` VARCHAR(50) NOT NULL DEFAULT '0', PRIMARY KEY (`id_comentario`) ) CREATE TABLE `articulo` ( `id_articulo` INT(11) NOT NULL AUTO_INCREMENT, `id_comentario` INT(11) NOT NULL DEFAULT '0', `id_tag` INT(11) NOT NULL DEFAULT '0', `titulo` VARCHAR(50) NOT NULL DEFAULT '0', PRIMARY KEY (`id_articulo`), INDEX `id_comentario` (`id_comentario`), INDEX `id_tag` (`id_tag`), CONSTRAINT `id_comentario` FOREIGN KEY (`id_comentario`) REFERENCES `comentario` (`id_comentario`), CONSTRAINT `id_tag` FOREIGN KEY (`id_tag`) REFERENCES `tags` (`id_tags`) )
true
8bd729dabc0744fac9cbc9e2cb5bfeba0ed0845f
SQL
sgrove/cothinker
/data/sql/plugins.sfPropelActAsCountableBehaviorPlugin.lib.model.schema.sql
UTF-8
697
3.25
3
[]
no_license
# This is a fix for InnoDB in MySQL >= 4.1.x # It "suspends judgement" for fkey relationships until are tables are set. SET FOREIGN_KEY_CHECKS = 0; #----------------------------------------------------------------------------- #-- sf_counter #----------------------------------------------------------------------------- DROP TABLE IF EXISTS `sf_counter`; CREATE TABLE `sf_counter` ( `id` INTEGER NOT NULL AUTO_INCREMENT, `countable_model` VARCHAR(30), `countable_id` INTEGER, `counter` INTEGER default 0, PRIMARY KEY (`id`), KEY `countable`(`countable_model`, `countable_id`) )Type=InnoDB; # This restores the fkey checks, after having unset them earlier SET FOREIGN_KEY_CHECKS = 1;
true
0bdea8296d8e03ba82b995454e332da4e72519b1
SQL
RENCI-NRIG/actor-registry
/src/main/resources/registry-controllers.sql
UTF-8
505
3.0625
3
[]
no_license
USE ActorRegistry; DROP TABLE IF EXISTS `Controllers`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `Controllers` ( `ctrl_id` int(11) NOT NULL auto_increment, `ctrl_name` varchar(255) NOT NULL, `ctrl_url` varchar(255) NOT NULL, `ctrl_description` text, `ctrl_enabled` boolean, PRIMARY KEY(`ctrl_id`), UNIQUE KEY `ctrl_url` (`ctrl_url`) ) ENGINE=InnoDB AUTO_INCREMENT=175 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client;
true
4cda211b991c6b29b39025cefa286283ac7cc54b
SQL
trabpickf/Trabalho01
/arquivos/script_insert _ANTIGO.sql
UTF-8
2,527
3.1875
3
[]
no_license
USE pickfantasy; INSERT INTO USUARIO(user_id, user_name, nome, email, senha, pontos) VALUES (1, 'rodolfinho', 'Rodolfo', 'rodolfo@gmail.com', '*****', 150), (2, 'nichol', 'Nicholas', 'nichol@gmail.com', '********',300), (3, 'rogertt', 'Roger', 'rogerfo@gmail.com', '*********',540), (4, 'dinho', 'Denis', 'dendinho@gmail.com', '****',100), (5, 'beterraba', 'José', 'beterrabajose@gmail.com', '**********',250); INSERT INTO CAMPEONATOS(id_campeonato,nome) VALUES (1,'CBLOl 2017'), (2,'ESL PRO LEAGUE 2017'); INSERT INTO TIME(id_time,nome, nacionalidade) VALUES (1,'Keyd Stars', 'Norte-Americana'), (2,'PaiN Gaming', 'Brasileira'), (3,'Team oNe', 'Brasileira'), (4,'INTZ', 'Brasileira'), (5,'Kabum','Norte-Americana'), (6,'AlienTech','Norte-Americana'), (7,'CNB', 'Brasileira'), (8,'Red Cannids','Brasileira'), (9,'g3nerationX','Brasileira'); INSERT INTO JOGADOR(id_jogador,nome,apelido,nacionalidade,FK_TIME_id_time) VALUES (1,'Roberto da Siva', 'Polenta', 'Brasileira',4), (2,'Juan Souza','JunZ','Brasileira',4), (3,'Denis Voté','Dent','Francesa',4), (4,'Nikole','Koler','Brasileira',4), (5,'Oswald','Andrade','Brasileira',4), (6,'Mateus','Manossos','Alemã',3), (7,'Marcos Henrique','mFlechas','Brasileira',3), (8,'Felipe Gonçalves','BrTT','Brasileira',3), (9,'Gabriel','20Mata70Correr','Brasileira',3); INSERT INTO RANKING_TEMPORADA(id_temporada, data_inicio, data_fim) VALUES (1, '2017/06/01', '2017/06/30'), (2, '2017/07/01', '2017/07/31'); INSERT INTO PARTIDA(id_partida,placar,ganhador,data,FK_CAMPEONATOS_id_campeonato, FK_TIME_id_time2,FK_TIME_id_time) VALUES (1,'3x2',1,'2017/05/18', 1, 8, 1), (2, '4x1', 1,'2017/07/11', null,1, 9), (3, '3x2', 7,'2017/07/13', null, 3, 7), (4, '3x0', 4,'2017/08/18', null, 4, 6), (5, '3x2',2,'2017/09/18', 1, 2, 5); INSERT into APOSTA_USUARIO_PARTIDA_TIME(FK_USUARIO_user_id,FK_PARTIDA_id_partida,FK_TIME_id_time) VALUES(1,5,5),(2,2,2),(3,4,4); insert into etapa (id_etapa,nome) values(1,'Fase de Grupos'),(2,'Oitavas de Final'),(3,'Quartas de Final'), (4,'Semi Final'),(5,'Final'); insert into ESCOLHE_E_C_ESCOLHE_USUARIO_TIME_JOGADOR (id_escolha, FK_USUARIO_user_id, FK_TIME_id_time ,FK_TIME_id_pior_time, FK_JOGADOR_id_jogador, FK_JOGADOR_id_pior_jogador) values (1,2,2,7,8,2),(2,4,8,1,8,4); insert into ETAPA_CAMPEONATO_ETAPA_CAMPEONATOS_ESCOLHE_E_C (FK_ETAPA_id_etapa ,FK_CAMPEONATOS_id_campeonato, FK_ESCOLHE_E_C_ESCOLHE_USUARIO_TIME_JOGADOR_id_escolha) values (3,1,1),(1,2,2); insert into alcancou (FK_USUARIO_user_id ,FK_RANKING_TEMPORADA_id_temporada) values(1,2),(2,2),(3,2),(4,2),(5,2);
true
128048541fbef3b0f8b5b0b14046c6dfcdf6957f
SQL
demichalk/csasoutheast
/2020Features/AQE Demo.sql
UTF-8
4,560
4.375
4
[]
no_license
-- Databricks notebook source -- MAGIC %md -- MAGIC # Adaptive Query Execution Demo -- MAGIC -- MAGIC Adaptive Query Execution (AQE) is query re-optimization that occurs during query execution based on runtime statistics. AQE in Spark 3.0 includes 3 main features: -- MAGIC * Dynamically coalescing shuffle partitions -- MAGIC * Dynamically switching join strategies -- MAGIC * Dynamically optimizing skew joins -- COMMAND ---------- -- MAGIC %md ## Enable AQE -- COMMAND ---------- set spark.sql.adaptive.enabled = true; -- COMMAND ---------- -- For demo purpose only. -- Not necesary in real-life usage. set spark.sql.adaptive.coalescePartitions.minPartitionNum = 1; -- COMMAND ---------- -- MAGIC %md ## Create Tables -- COMMAND ---------- -- MAGIC %scala -- MAGIC dbutils.fs.rm("dbfs:/user/hive/warehouse/aqe_demo_db", true) -- COMMAND ---------- CREATE DATABASE IF NOT EXISTS aqe_demo_db; USE aqe_demo_db; DROP TABLE IF EXISTS items; DROP TABLE IF EXISTS sales; -- Create "items" table. CREATE TABLE items USING parquet AS SELECT id AS i_item_id, CAST(rand() * 1000 AS INT) AS i_price FROM RANGE(30000000); -- Create "sales" table with skew. -- Item with id 100 is in 80% of all sales. CREATE TABLE sales USING parquet AS SELECT CASE WHEN rand() < 0.8 THEN 100 ELSE CAST(rand() * 30000000 AS INT) END AS s_item_id, CAST(rand() * 100 AS INT) AS s_quantity, DATE_ADD(current_date(), - CAST(rand() * 360 AS INT)) AS s_date FROM RANGE(1000000000); -- COMMAND ---------- -- MAGIC %md ## Dynamically Coalesce Shuffle Partitions -- COMMAND ---------- -- Get the sums of sales quantity grouped by sales date. -- The grouped result is very small. SELECT s_date, sum(s_quantity) AS q FROM sales GROUP BY s_date ORDER BY q DESC; -- COMMAND ---------- -- MAGIC %md -- MAGIC * The partition sizes after aggregation are very small: 13KB on average, 431KB in total (see the highlighted box **shuffle bytes written**). -- MAGIC * AQE combines these small partitions into one new partition (see the highlighted box **CustomShuffleReader**). -- MAGIC -- MAGIC ![screenshot_coalesce](https://docs.databricks.com/_static/images/spark/aqe/coalesce_partitions.png) -- COMMAND ---------- -- MAGIC %md ## Dynamically Switch Join Strategies -- COMMAND ---------- -- Get total sales amount grouped by sales date for items with a price lower than 10. -- The selectivity of the filter by price is not known in static planning, so the initial plan opts for sort merge join. -- But in fact, the "items" table after filtering is very small, so the query can do a broadcast hash join instead. -- Static explain shows the initial plan with sort merge join. EXPLAIN FORMATTED SELECT s_date, sum(s_quantity * i_price) AS total_sales FROM sales JOIN items ON s_item_id = i_item_id WHERE i_price < 10 GROUP BY s_date ORDER BY total_sales DESC; -- COMMAND ---------- -- The runtime join stategy is changed to broadcast hash join. SELECT s_date, sum(s_quantity * i_price) AS total_sales FROM sales JOIN items ON s_item_id = i_item_id WHERE i_price < 10 GROUP BY s_date ORDER BY total_sales DESC; -- COMMAND ---------- -- MAGIC %md -- MAGIC * The data size of the "items" table after filtering is very small 6.9 MB (see the highlighted box **data size**). -- MAGIC * AQE changes the sort merge join to broadcast hash join at runtime (see the highlighted box **BroadcastHashJoin**). -- MAGIC -- MAGIC ![screenshot_strategy](https://docs.databricks.com/_static/images/spark/aqe/join_strategy.png) -- COMMAND ---------- -- MAGIC -- MAGIC %md ## Dynamically Optimize Skew Join -- COMMAND ---------- -- Get the total sales amount grouped by sales date. -- The partition in the "sales" table containing value "100" as "s_item_id" is much larger than other partitions. -- AQE splits the skewed partition into smaller partitions before joining the "sales" table with the "items" table. SELECT s_date, sum(s_quantity * i_price) AS total_sales FROM sales JOIN items ON i_item_id = s_item_id GROUP BY s_date ORDER BY total_sales DESC; -- COMMAND ---------- -- MAGIC %md -- MAGIC * There is a skewed partition from the "sales" table (see the highlighted box **number of skewed partitions**). -- MAGIC * AQE splits the skewed partition into smaller partitions (see the highlighted box **number of skewed partition splits**). -- MAGIC * The sort merge join operator is marked with a skew join flag (see the highlighted box **SortMergeJoin(isSkew=true)**). -- MAGIC -- MAGIC ![screenshot_skew](https://docs.databricks.com/_static/images/spark/aqe/skew_join.png)
true
f86e46f6441cf133c1d1edfa986e4bfed1c5aa82
SQL
erichsueh/SchoolWork
/cmpt291/assi2/9.sql
UTF-8
249
3.375
3
[]
no_license
prompt Question9-ehsueh CREATE VIEW tStat(writer, tdate, text, rep_cnt, ret_cnt, sim_cnt) AS SELECT t.writer, t.tdate, t.text, FROM( Select rt.tdate, rt.writer, COUNT(rt.writer) as rtweet From retweets rt Group by rt.writer, rt.tdate)st, tweets
true
322bf889c77a869c104fbbd889ed22ed944d5a48
SQL
liujiusheng/coinKG
/backend/web/src/main/resources/SQLScripts/graph_layout.sql
UTF-8
1,036
3.203125
3
[]
no_license
/* Navicat Premium Data Transfer Source Server : 阿里云 Source Server Type : MySQL Source Server Version : 80022 Source Schema : coin Target Server Type : MySQL Target Server Version : 80022 File Encoding : 65001 Date: 20/06/2021 12:23:27 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for graph_layout -- ---------------------------- DROP TABLE IF EXISTS `graph_layout`; CREATE TABLE `graph_layout` ( `id` int NOT NULL AUTO_INCREMENT, `project_id` int NOT NULL, `layout_type` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `width` double NOT NULL DEFAULT 0, `height` double NOT NULL DEFAULT 0, PRIMARY KEY (`id`) USING BTREE, UNIQUE INDEX `nid`(`project_id`, `layout_type`) USING BTREE, INDEX `graph_layout_project_type`(`project_id`, `layout_type`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 411 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = DYNAMIC; SET FOREIGN_KEY_CHECKS = 1;
true
d584778cb9d755c15f5149f5666a33043358d882
SQL
camost/Base-de-datos
/Clase17.sql
UTF-8
2,069
4.34375
4
[]
no_license
SELECT * FROM customers; CREATE INDEX postalCode ON customers(postalCode); -- DROP INDEX postalCode ON customers; SELECT * FROM products; ALTER TABLE products ADD FULLTEXT(productline); -------------------------------------- SELECT productName, productline FROM products WHERE MATCH(productline) AGAINST('Classic'); ------------------------------------- SELECT productName, productline FROM products WHERE MATCH(productline) AGAINST('Classic,Vintage'); ------------------------------------- SELECT productName, productline FROM products WHERE MATCH(productline) AGAINST('Classic,Vintage' IN NATURAL LANGUAGE MODE) ---------------------------------------- ALTER TABLE products ADD FULLTEXT(productName); SELECT productName, productline FROM products WHERE MATCH(productName) AGAINST('1932,Ford'); ----------------------------------------- -- Ej 1: -- Create two or three queries using address table in sakila db: -- include postal_code in where (try with in/not it operator) -- eventually join the table with city/country tables. -- measure execution time. -- Then create an index for postal_code on address table. -- measure execution time again and compare with the previous ones. -- Explain the results SELECT address,CONCAT_WS(" ",first_name,last_name) AS "Nombre" FROM address INNER JOIN customer USING(address_id); SELECT * FROM address WHERE postal_code IN (SELECT postal_code FROM address WHERE postal_code LIKE '%3%'); CREATE INDEX codigo_direccion ON address(postal.code); ---------------------------------------------------------- -- Ej 2: Run queries using actor table, searching for first and last name columns independently. -- Explain the differences and why is that happening? -- es mas "rapido" igual una ves cacheado no te das cuenta SELECT first_name FROM actor WHERE first_name LIKE "%ed%"; SELECT last_name FROM actor WHERE last_name LIKE "%gable%"; -- 3 Compare results finding text in the description -- on table film with LIKE and in the film_text using MATCH ... AGAINST. Explain the results.
true
820ab2197b72385eac05f3792c73b407d35b1966
SQL
jmoody/ljsj-utils
/mysql-testing/target/classes/performer.sql
UTF-8
324
3
3
[]
no_license
CREATE TABLE `booking`.`performer` ( `performer_id` VARCHAR(38) NOT NULL, `name` VARCHAR(50) NOT NULL, `genre` VARCHAR(50) NOT NULL, PRIMARY KEY (`performer_id`), CONSTRAINT `fk__genre__genre_Id` FOREIGN KEY `fk__genre__genre_Id` (`genre`) REFERENCES `genre` (`genre_id`) ) ENGINE = InnoDB CHARACTER SET utf8;
true
a167e445beed530942972479e4b390781a05873d
SQL
DpadamsX/DpadamsX
/functions/ascendco/hsys_get_id_by_facility_id.sql
UTF-8
519
2.828125
3
[]
no_license
CREATE OR REPLACE FUNCTION ascendco.hsys_get_id_by_facility_id (facility_id_in uuid) RETURNS uuid LANGUAGE sql STABLE AS $BODY$ SELECT coalesce( (SELECT hsys_id FROM ascendco.facility WHERE id = facility_id_in), '00000000-0000-0000-0000-000000000000'::uuid); $BODY$ ; COMMENT ON FUNCTION ascendco.hsys_get_id_by_facility_id (uuid) IS 'Pass in a facility ID name and get back its parent hsys ID, or a pseudo-null UUID.'; ALTER FUNCTION ascendco.hsys_get_id_by_facility_id (uuid) OWNER TO user_bender;
true
2dfaf5bab307946c646c386f03dae93ea098353b
SQL
hedger9487/database
/gamedb.sql
UTF-8
7,117
3.296875
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- 主機: 127.0.0.1 -- 產生時間: -- 伺服器版本: 10.4.11-MariaDB -- PHP 版本: 7.2.26 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 */; -- -- 資料庫: `gamedb` -- -- -------------------------------------------------------- -- -- 資料表結構 `coach` -- CREATE TABLE `coach` ( `Coach_Name` varchar(250) NOT NULL, `Coach_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `competition` -- CREATE TABLE `competition` ( `Arena` varchar(250) NOT NULL, `Regional` varchar(250) NOT NULL, `Name` varchar(250) NOT NULL, `prize` int(11) NOT NULL, `Com_ID` int(11) NOT NULL, `Game_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `game` -- CREATE TABLE `game` ( `Game_title` int(250) NOT NULL, `Category` varchar(250) DEFAULT NULL, `Game_ID` int(11) NOT NULL, `G_Producer_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `game_producer` -- CREATE TABLE `game_producer` ( `Company_Name` varchar(250) NOT NULL, `Company_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `has_joined` -- CREATE TABLE `has_joined` ( `T_SSID` int(11) NOT NULL, `Com_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `has_played` -- CREATE TABLE `has_played` ( `P_SSID` int(11) NOT NULL, `Game_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `is_sponsor` -- CREATE TABLE `is_sponsor` ( `Team_ID` int(11) NOT NULL, `Sponsor_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `manager` -- CREATE TABLE `manager` ( `Salary` int(11) NOT NULL, `Nationality` varchar(250) DEFAULT NULL, `Name` varchar(250) NOT NULL, `M_SSID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `player` -- CREATE TABLE `player` ( `Name` varchar(250) NOT NULL, `Salary` int(11) DEFAULT NULL, `Nationality` varchar(250) NOT NULL, `P_SSID` int(11) NOT NULL, `P_Team_ID` int(11) NOT NULL, `P_Game_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `sponsor` -- CREATE TABLE `sponsor` ( `Sponsor_ID` int(11) NOT NULL, `Sponsor_Name` varchar(250) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- 資料表結構 `team` -- CREATE TABLE `team` ( `Team_Color` varchar(250) DEFAULT NULL, `Team_Name` varchar(250) NOT NULL, `Team_ID` int(11) NOT NULL, `T_M_SSID` int(11) NOT NULL, `T_Coach_ID` int(11) NOT NULL, `T_Game_ID` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- 已傾印資料表的索引 -- -- -- 資料表索引 `coach` -- ALTER TABLE `coach` ADD PRIMARY KEY (`Coach_ID`); -- -- 資料表索引 `competition` -- ALTER TABLE `competition` ADD PRIMARY KEY (`Com_ID`,`Game_ID`), ADD KEY `Game_ID` (`Game_ID`); -- -- 資料表索引 `game` -- ALTER TABLE `game` ADD PRIMARY KEY (`Game_ID`), ADD KEY `G_Producer_ID` (`G_Producer_ID`); -- -- 資料表索引 `game_producer` -- ALTER TABLE `game_producer` ADD PRIMARY KEY (`Company_ID`); -- -- 資料表索引 `has_joined` -- ALTER TABLE `has_joined` ADD PRIMARY KEY (`T_SSID`,`Com_ID`), ADD KEY `Com_ID` (`Com_ID`); -- -- 資料表索引 `has_played` -- ALTER TABLE `has_played` ADD PRIMARY KEY (`P_SSID`,`Game_ID`), ADD KEY `has_played_ibfk_1` (`Game_ID`); -- -- 資料表索引 `is_sponsor` -- ALTER TABLE `is_sponsor` ADD KEY `Sponsor_ID` (`Sponsor_ID`), ADD KEY `Team_ID` (`Team_ID`); -- -- 資料表索引 `manager` -- ALTER TABLE `manager` ADD PRIMARY KEY (`M_SSID`); -- -- 資料表索引 `player` -- ALTER TABLE `player` ADD PRIMARY KEY (`P_SSID`,`P_Team_ID`), ADD KEY `P_Team_ID` (`P_Team_ID`), ADD KEY `P_Game_ID` (`P_Game_ID`); -- -- 資料表索引 `sponsor` -- ALTER TABLE `sponsor` ADD PRIMARY KEY (`Sponsor_ID`); -- -- 資料表索引 `team` -- ALTER TABLE `team` ADD PRIMARY KEY (`Team_ID`,`T_M_SSID`,`T_Coach_ID`,`T_Game_ID`), ADD KEY `T_Coach_ID` (`T_Coach_ID`), ADD KEY `T_M_SSID` (`T_M_SSID`), ADD KEY `T_Game_ID` (`T_Game_ID`); -- -- 已傾印資料表的限制式 -- -- -- 資料表的限制式 `competition` -- ALTER TABLE `competition` ADD CONSTRAINT `competition_ibfk_1` FOREIGN KEY (`Game_ID`) REFERENCES `game` (`Game_ID`) ON UPDATE CASCADE; -- -- 資料表的限制式 `game` -- ALTER TABLE `game` ADD CONSTRAINT `game_ibfk_1` FOREIGN KEY (`G_Producer_ID`) REFERENCES `game_producer` (`Company_ID`); -- -- 資料表的限制式 `has_joined` -- ALTER TABLE `has_joined` ADD CONSTRAINT `has_joined_ibfk_1` FOREIGN KEY (`Com_ID`) REFERENCES `competition` (`Com_ID`) ON UPDATE CASCADE, ADD CONSTRAINT `has_joined_ibfk_2` FOREIGN KEY (`T_SSID`) REFERENCES `team` (`Team_ID`) ON UPDATE CASCADE; -- -- 資料表的限制式 `has_played` -- ALTER TABLE `has_played` ADD CONSTRAINT `has_played_ibfk_1` FOREIGN KEY (`Game_ID`) REFERENCES `game` (`Game_ID`) ON UPDATE CASCADE; -- -- 資料表的限制式 `is_sponsor` -- ALTER TABLE `is_sponsor` ADD CONSTRAINT `is_sponsor_ibfk_1` FOREIGN KEY (`Sponsor_ID`) REFERENCES `sponsor` (`Sponsor_ID`) ON UPDATE CASCADE, ADD CONSTRAINT `is_sponsor_ibfk_2` FOREIGN KEY (`Team_ID`) REFERENCES `team` (`Team_ID`) ON UPDATE CASCADE; -- -- 資料表的限制式 `player` -- ALTER TABLE `player` ADD CONSTRAINT `player_ibfk_1` FOREIGN KEY (`P_Team_ID`) REFERENCES `team` (`Team_ID`) ON UPDATE CASCADE, ADD CONSTRAINT `player_ibfk_2` FOREIGN KEY (`P_Game_ID`) REFERENCES `game` (`Game_ID`); -- -- 資料表的限制式 `team` -- ALTER TABLE `team` ADD CONSTRAINT `team_ibfk_1` FOREIGN KEY (`T_Coach_ID`) REFERENCES `coach` (`Coach_ID`) ON UPDATE CASCADE, ADD CONSTRAINT `team_ibfk_2` FOREIGN KEY (`T_M_SSID`) REFERENCES `manager` (`M_SSID`) ON UPDATE CASCADE, ADD CONSTRAINT `team_ibfk_3` FOREIGN KEY (`T_Game_ID`) REFERENCES `game` (`Game_ID`) ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
true
0e376e5a8c86a1e3c2fe90606849f5b8714eacce
SQL
anjingbin/starccm
/postgresql/src/test/regress/sql/alter_table.sql
UTF-8
11,137
2.8125
3
[ "PostgreSQL", "BSD-2-Clause" ]
permissive
-- -- ALTER_TABLE -- add attribute -- CREATE TABLE tmp (initial int4); ALTER TABLE tmp ADD COLUMN a int4; ALTER TABLE tmp ADD COLUMN b name; ALTER TABLE tmp ADD COLUMN c text; ALTER TABLE tmp ADD COLUMN d float8; ALTER TABLE tmp ADD COLUMN e float4; ALTER TABLE tmp ADD COLUMN f int2; ALTER TABLE tmp ADD COLUMN g polygon; ALTER TABLE tmp ADD COLUMN h abstime; ALTER TABLE tmp ADD COLUMN i char; ALTER TABLE tmp ADD COLUMN j abstime[]; ALTER TABLE tmp ADD COLUMN k dt; ALTER TABLE tmp ADD COLUMN l tid; ALTER TABLE tmp ADD COLUMN m xid; ALTER TABLE tmp ADD COLUMN n oidvector; --ALTER TABLE tmp ADD COLUMN o lock; ALTER TABLE tmp ADD COLUMN p smgr; ALTER TABLE tmp ADD COLUMN q point; ALTER TABLE tmp ADD COLUMN r lseg; ALTER TABLE tmp ADD COLUMN s path; ALTER TABLE tmp ADD COLUMN t box; ALTER TABLE tmp ADD COLUMN u tinterval; ALTER TABLE tmp ADD COLUMN v datetime; ALTER TABLE tmp ADD COLUMN w timespan; ALTER TABLE tmp ADD COLUMN x float8[]; ALTER TABLE tmp ADD COLUMN y float4[]; ALTER TABLE tmp ADD COLUMN z int2[]; INSERT INTO tmp (a, b, c, d, e, f, g, h, i, j, k, l, m, n, p, q, r, s, t, u, v, w, x, y, z) VALUES (4, 'name', 'text', 4.1, 4.1, 2, '(4.1,4.1,3.1,3.1)', 'Mon May 1 00:30:30 1995', 'c', '{Mon May 1 00:30:30 1995, Monday Aug 24 14:43:07 1992, epoch}', 314159, '(1,1)', 512, '1 2 3 4 5 6 7 8', 'magnetic disk', '(1.1,1.1)', '(4.1,4.1,3.1,3.1)', '(0,2,4.1,4.1,3.1,3.1)', '(4.1,4.1,3.1,3.1)', '["current" "infinity"]', '1/3', '1,name', '{1.0,2.0,3.0,4.0}', '{1.0,2.0,3.0,4.0}', '{1,2,3,4}'); SELECT * FROM tmp; DROP TABLE tmp; -- the wolf bug - schema mods caused inconsistent row descriptors CREATE TABLE tmp ( initial int4 ); ALTER TABLE tmp ADD COLUMN a int4; ALTER TABLE tmp ADD COLUMN b name; ALTER TABLE tmp ADD COLUMN c text; ALTER TABLE tmp ADD COLUMN d float8; ALTER TABLE tmp ADD COLUMN e float4; ALTER TABLE tmp ADD COLUMN f int2; ALTER TABLE tmp ADD COLUMN g polygon; ALTER TABLE tmp ADD COLUMN h abstime; ALTER TABLE tmp ADD COLUMN i char; ALTER TABLE tmp ADD COLUMN j abstime[]; ALTER TABLE tmp ADD COLUMN k dt; ALTER TABLE tmp ADD COLUMN l tid; ALTER TABLE tmp ADD COLUMN m xid; ALTER TABLE tmp ADD COLUMN n oidvector; --ALTER TABLE tmp ADD COLUMN o lock; ALTER TABLE tmp ADD COLUMN p smgr; ALTER TABLE tmp ADD COLUMN q point; ALTER TABLE tmp ADD COLUMN r lseg; ALTER TABLE tmp ADD COLUMN s path; ALTER TABLE tmp ADD COLUMN t box; ALTER TABLE tmp ADD COLUMN u tinterval; ALTER TABLE tmp ADD COLUMN v datetime; ALTER TABLE tmp ADD COLUMN w timespan; ALTER TABLE tmp ADD COLUMN x float8[]; ALTER TABLE tmp ADD COLUMN y float4[]; ALTER TABLE tmp ADD COLUMN z int2[]; INSERT INTO tmp (a, b, c, d, e, f, g, h, i, j, k, l, m, n, p, q, r, s, t, u, v, w, x, y, z) VALUES (4, 'name', 'text', 4.1, 4.1, 2, '(4.1,4.1,3.1,3.1)', 'Mon May 1 00:30:30 1995', 'c', '{Mon May 1 00:30:30 1995, Monday Aug 24 14:43:07 1992, epoch}', 314159, '(1,1)', 512, '1 2 3 4 5 6 7 8', 'magnetic disk', '(1.1,1.1)', '(4.1,4.1,3.1,3.1)', '(0,2,4.1,4.1,3.1,3.1)', '(4.1,4.1,3.1,3.1)', '["current" "infinity"]', '1/3', '1,name', '{1.0,2.0,3.0,4.0}', '{1.0,2.0,3.0,4.0}', '{1,2,3,4}'); SELECT * FROM tmp; DROP TABLE tmp; -- -- rename - -- should preserve indices, which we can check by seeing if a SELECT -- chooses an indexscan; however, in the absence of vacuum statistics -- it might not. Therefore, vacuum first. -- VACUUM ANALYZE tenk1; ALTER TABLE tenk1 RENAME TO ten_k; -- 20 values, sorted SELECT unique1 FROM ten_k WHERE unique1 < 20; -- 20 values, sorted SELECT unique2 FROM ten_k WHERE unique2 < 20; -- 100 values, sorted SELECT hundred FROM ten_k WHERE hundred = 50; ALTER TABLE ten_k RENAME TO tenk1; -- 5 values, sorted SELECT unique1 FROM tenk1 WHERE unique1 < 5; -- FOREIGN KEY CONSTRAINT adding TEST CREATE TABLE tmp2 (a int primary key); CREATE TABLE tmp3 (a int, b int); CREATE TABLE tmp4 (a int, b int, unique(a,b)); CREATE TABLE tmp5 (a int, b int); -- Insert rows into tmp2 (pktable) INSERT INTO tmp2 values (1); INSERT INTO tmp2 values (2); INSERT INTO tmp2 values (3); INSERT INTO tmp2 values (4); -- Insert rows into tmp3 INSERT INTO tmp3 values (1,10); INSERT INTO tmp3 values (1,20); INSERT INTO tmp3 values (5,50); -- Try (and fail) to add constraint due to invalid source columns ALTER TABLE tmp3 add constraint tmpconstr foreign key(c) references tmp2 match full; -- Try (and fail) to add constraint due to invalide destination columns explicitly given ALTER TABLE tmp3 add constraint tmpconstr foreign key(a) references tmp2(b) match full; -- Try (and fail) to add constraint due to invalid data ALTER TABLE tmp3 add constraint tmpconstr foreign key (a) references tmp2 match full; -- Delete failing row DELETE FROM tmp3 where a=5; -- Try (and succeed) ALTER TABLE tmp3 add constraint tmpconstr foreign key (a) references tmp2 match full; -- Try (and fail) to create constraint from tmp5(a) to tmp4(a) - unique constraint on -- tmp4 is a,b ALTER TABLE tmp5 add constraint tmpconstr foreign key(a) references tmp4(a) match full; DROP TABLE tmp5; DROP TABLE tmp4; DROP TABLE tmp3; DROP TABLE tmp2; -- Foreign key adding test with mixed types -- Note: these tables are TEMP to avoid name conflicts when this test -- is run in parallel with foreign_key.sql. CREATE TEMP TABLE PKTABLE (ptest1 int PRIMARY KEY); CREATE TEMP TABLE FKTABLE (ftest1 text); -- This next should fail, because text=int does not exist ALTER TABLE FKTABLE ADD FOREIGN KEY(ftest1) references pktable; -- This should also fail for the same reason, but here we -- give the column name ALTER TABLE FKTABLE ADD FOREIGN KEY(ftest1) references pktable(ptest1); -- This should succeed, even though they are different types -- because varchar=int does exist DROP TABLE FKTABLE; CREATE TEMP TABLE FKTABLE (ftest1 varchar); ALTER TABLE FKTABLE ADD FOREIGN KEY(ftest1) references pktable; -- As should this ALTER TABLE FKTABLE ADD FOREIGN KEY(ftest1) references pktable(ptest1); DROP TABLE pktable; DROP TABLE fktable; CREATE TEMP TABLE PKTABLE (ptest1 int, ptest2 text, PRIMARY KEY(ptest1, ptest2)); -- This should fail, because we just chose really odd types CREATE TEMP TABLE FKTABLE (ftest1 cidr, ftest2 datetime); ALTER TABLE FKTABLE ADD FOREIGN KEY(ftest1, ftest2) references pktable; -- Again, so should this... DROP TABLE FKTABLE; CREATE TEMP TABLE FKTABLE (ftest1 cidr, ftest2 datetime); ALTER TABLE FKTABLE ADD FOREIGN KEY(ftest1, ftest2) references pktable(ptest1, ptest2); -- This fails because we mixed up the column ordering DROP TABLE FKTABLE; CREATE TEMP TABLE FKTABLE (ftest1 int, ftest2 text); ALTER TABLE FKTABLE ADD FOREIGN KEY(ftest1, ftest2) references pktable(ptest2, ptest1); -- As does this... ALTER TABLE FKTABLE ADD FOREIGN KEY(ftest2, ftest1) references pktable(ptest1, ptest2); -- temp tables should go away by themselves, need not drop them. -- test check constraint adding create table atacc1 ( test int ); -- add a check constraint alter table atacc1 add constraint atacc_test1 check (test>3); -- should fail insert into atacc1 (test) values (2); -- should succeed insert into atacc1 (test) values (4); drop table atacc1; -- let's do one where the check fails when added create table atacc1 ( test int ); -- insert a soon to be failing row insert into atacc1 (test) values (2); -- add a check constraint (fails) alter table atacc1 add constraint atacc_test1 check (test>3); insert into atacc1 (test) values (4); drop table atacc1; -- let's do one where the check fails because the column doesn't exist create table atacc1 ( test int ); -- add a check constraint (fails) alter table atacc1 add constraint atacc_test1 check (test1>3); drop table atacc1; -- something a little more complicated create table atacc1 ( test int, test2 int, test3 int); -- add a check constraint (fails) alter table atacc1 add constraint atacc_test1 check (test+test2<test3*4); -- should fail insert into atacc1 (test,test2,test3) values (4,4,2); -- should succeed insert into atacc1 (test,test2,test3) values (4,4,5); drop table atacc1; -- lets do some naming tests create table atacc1 (test int check (test>3), test2 int); alter table atacc1 add check (test2>test); -- should fail for $2 insert into atacc1 (test2, test) values (3, 4); drop table atacc1; -- inheritance related tests create table atacc1 (test int); create table atacc2 (test2 int); create table atacc3 (test3 int) inherits (atacc1, atacc2); alter table atacc2 add constraint foo check (test2>0); -- fail and then succeed on atacc2 insert into atacc2 (test2) values (-3); insert into atacc2 (test2) values (3); -- fail and then succeed on atacc3 insert into atacc3 (test2) values (-3); insert into atacc3 (test2) values (3); drop table atacc3; drop table atacc2; drop table atacc1; -- let's try only to add only to the parent create table atacc1 (test int); create table atacc2 (test2 int); create table atacc3 (test3 int) inherits (atacc1, atacc2); alter table only atacc2 add constraint foo check (test2>0); -- fail and then succeed on atacc2 insert into atacc2 (test2) values (-3); insert into atacc2 (test2) values (3); -- both succeed on atacc3 insert into atacc3 (test2) values (-3); insert into atacc3 (test2) values (3); drop table atacc3; drop table atacc2; drop table atacc1; -- test unique constraint adding create table atacc1 ( test int ); -- add a unique constraint alter table atacc1 add constraint atacc_test1 unique (test); -- insert first value insert into atacc1 (test) values (2); -- should fail insert into atacc1 (test) values (2); -- should succeed insert into atacc1 (test) values (4); -- try adding a unique oid constraint alter table atacc1 add constraint atacc_oid1 unique(oid); drop table atacc1; -- let's do one where the unique constraint fails when added create table atacc1 ( test int ); -- insert soon to be failing rows insert into atacc1 (test) values (2); insert into atacc1 (test) values (2); -- add a unique constraint (fails) alter table atacc1 add constraint atacc_test1 unique (test); insert into atacc1 (test) values (3); drop table atacc1; -- let's do one where the unique contsraint fails -- because the column doesn't exist create table atacc1 ( test int ); -- add a unique constraint (fails) alter table atacc1 add constraint atacc_test1 unique (test1); drop table atacc1; -- something a little more complicated create table atacc1 ( test int, test2 int); -- add a unique constraint alter table atacc1 add constraint atacc_test1 unique (test, test2); -- insert initial value insert into atacc1 (test,test2) values (4,4); -- should fail insert into atacc1 (test,test2) values (4,4); -- should all succeed insert into atacc1 (test,test2) values (4,5); insert into atacc1 (test,test2) values (5,4); insert into atacc1 (test,test2) values (5,5); drop table atacc1; -- lets do some naming tests create table atacc1 (test int, test2 int, unique(test)); alter table atacc1 add unique (test2); -- should fail for @@ second one @@ insert into atacc1 (test2, test) values (3, 3); insert into atacc1 (test2, test) values (2, 3); drop table atacc1;
true
831a85db76411a5206e82713cab41c0fbcc07be9
SQL
cckmit/xinfu
/ccms/WebContent/WEB-INF/action/security/forcenewpass/update/check-password.sql
UTF-8
167
2.875
3
[]
no_license
select hash from ${schema}s_passlog p, ${schema}s_user u where hash = ${fld:passwd} and p.user_id = u.user_id and u.userlogin = '${ses:dinamica.userlogin}'
true
8f07a029b7eef61bca4a105b8712b156e3f28ce6
SQL
jbazans/landing-page
/db.sql
UTF-8
353
2.75
3
[]
no_license
create table mensaje( codmen int not null AUTO_INCREMENT, nommen varchar(50) not null, dnimen varchar(15) not null, conmen varchar(200) not null, PRIMARY KEY (codmen) )ENGINE = InnoDB CHARACTER SET latin1 COLLATE latin1_spanish_ci; alter table mensaje add cormen varchar(30) not null; alter table mensaje add celmen varchar(15) not null;
true
0ca190fc2729705f13930b25c7089c3222686fe0
SQL
indamuliana/psbwikrama
/ppdbwk-v4.sql.sql
UTF-8
15,329
2.53125
3
[ "MIT" ]
permissive
-- phpMyAdmin SQL Dump -- version 4.9.7 -- https://www.phpmyadmin.net/ -- -- Host: localhost:3306 -- Generation Time: Oct 23, 2021 at 02:27 AM -- Server version: 10.3.30-MariaDB-cll-lve -- PHP Version: 7.3.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `u1546269_psbwikrama2` -- -- -------------------------------------------------------- -- -- Table structure for table `buys` -- CREATE TABLE `buys` ( `id` bigint(20) UNSIGNED NOT NULL, `nisn` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pendaftaran` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `form1s` -- CREATE TABLE `form1s` ( `id` bigint(20) UNSIGNED NOT NULL, `nisn` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `jk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tempat_lahir` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tanggal_lahir` date NOT NULL, `agama` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `alamat` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `rt` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `rw` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `desa` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `kec` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `kab` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `prov` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `kodpos` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nohp_siswa` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nohp_ortu` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `asal_smp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `jalur` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `info` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `jurusan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `beasiswa` enum('Umum/normal','lumni SMPN 1 Leles','Alumni SMPN 1 Cilageni','Alumni SMPN 1 Kadungora','Prestasi','Yatim','Dhuafa') COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `form1s` -- INSERT INTO `form1s` (`id`, `nisn`, `nama`, `jk`, `tempat_lahir`, `tanggal_lahir`, `agama`, `email`, `alamat`, `rt`, `rw`, `desa`, `kec`, `kab`, `prov`, `kodpos`, `nohp_siswa`, `nohp_ortu`, `asal_smp`, `jalur`, `info`, `jurusan`, `created_at`, `updated_at`, `beasiswa`) VALUES (2, '11900561', 'Salwa Amalia', 'perempuan', 'Bogor', '2021-10-16', 'Islam', 'salwa@gmail.com', 'sdsdfsdfsd', '123', '02', 'Pasir Jaya', 'Cigombong', 'Bogor', 'Jawa Barat', '16110', '08877545443', '08762345676', 'SMPN 1 CGB', 'Unggulan (Asrama + Tahfidz)', 'Guru', 'Rekayasa Perangkat Lunak', '2021-10-19 02:35:01', '2021-10-22 12:24:16', 'Dhuafa'), (6, '11900444', 'Najwa Shihab', 'perempuan', 'Bogor', '2021-10-24', 'Islam', 'najwa@gmail.com', 'Jakarta', '2', '3', 'Padjajaran', 'Sukaindah', 'Bogor-edited', 'Jawa Barat', '16222', '08867578968', '08977787878', 'SMPN 1 Bogor', 'Reguler', 'Orang tua siswa yang menyekolahkan anaknya di SMK Wikrama 1 Garut', 'Bisnis Daring Dan Pemasaran', '2021-10-19 21:48:16', '2021-10-20 21:13:01', 'Yatim'); -- -------------------------------------------------------- -- -- Table structure for table `form2s` -- CREATE TABLE `form2s` ( `id` bigint(20) UNSIGNED NOT NULL, `nisn` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nik_siswa` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `no_kk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `foto_kk` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nik_ibu` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ktp_ibu` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nik_ayah` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ktp_ayah` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `kip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `kesejahtera` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `form2s` -- INSERT INTO `form2s` (`id`, `nisn`, `nik_siswa`, `no_kk`, `foto_kk`, `nik_ibu`, `ktp_ibu`, `nik_ayah`, `ktp_ayah`, `kip`, `kesejahtera`, `created_at`, `updated_at`) VALUES (1, '11900561', '11900765422', '87653567', '3.PNG', '1234567', '19.PNG', '1234567', '7.PNG', '6.PNG', '7.PNG', '2021-10-19 01:15:34', '2021-10-19 03:57:55'); -- -------------------------------------------------------- -- -- Table structure for table `form3s` -- CREATE TABLE `form3s` ( `id` bigint(20) UNSIGNED NOT NULL, `nisn` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ibu` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tahun_ibu` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ayah` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tahun_ayah` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nohp_ibu` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `nohp_ayah` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pekerjaan_ayah` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pekerjaan_ibu` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `penghasilan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pengeluaran` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `listrik` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `bayar_listrik` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `kesehatan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pj_belajar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `pj_dana` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `anak` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `dari_saudara` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `alasan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `form3s` -- INSERT INTO `form3s` (`id`, `nisn`, `ibu`, `tahun_ibu`, `ayah`, `tahun_ayah`, `nohp_ibu`, `nohp_ayah`, `pekerjaan_ayah`, `pekerjaan_ibu`, `penghasilan`, `pengeluaran`, `listrik`, `bayar_listrik`, `kesehatan`, `pj_belajar`, `pj_dana`, `anak`, `dari_saudara`, `alasan`, `created_at`, `updated_at`) VALUES (1, '11900561', 'oguyft', 'ohigufyt', 'oiuyt', 'uyzd', 'iuyxt', 'gifuyxtz', 'PNS/TNI/Polri', 'Pedagang listrikil', '2.000.000 - 3.000.0000', 'gufydt', '8765\\', '097867545', 'nbjhvg', 'Ayah', 'Ayah', '876', 'poiu', 'Orang Tua', '2021-10-15 01:51:53', '2021-10-15 01:51:53'), (2, '22222222222', 'fsf', 'fdsfsdff', 'fdsfds', 'dfsdfs', 'fsdfsdf', 'fsfsd', 'Sudah Meninggal', 'Wirausaha', '500.000 - 1.000.000', 'fdsfsdf', 'fdfs', 'fgfd', 'fdd', 'Wali', 'Kakak', '1', 'sf', 'Intruksi Guru SMP', '2021-10-20 23:09:20', '2021-10-20 23:09:20'); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (9, '2021_09_28_032613_create_form1_table', 2), (51, '2014_10_12_000000_create_users_table', 3), (52, '2014_10_12_100000_create_password_resets_table', 3), (53, '2019_08_19_000000_create_failed_jobs_table', 3), (54, '2019_12_14_000001_create_personal_access_tokens_table', 3), (55, '2021_09_28_035922_create_form1s_table', 3), (56, '2021_09_28_062140_create_form2s_table', 3), (57, '2021_10_09_090436_create_buys_table', 3), (58, '2021_10_14_060842_create_form3s_table', 3), (59, '2021_10_15_070408_add_column_to_users_table', 4), (60, '2021_10_19_131049_create_add_column_to_form1s_table', 5), (64, '2021_10_19_131459_add_column_to_form1s_table', 6); -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `nisn` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `role` enum('admin','user') COLLATE utf8mb4_unicode_ci DEFAULT NULL, `no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `fb` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `ig` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `tes` enum('sudah','belum') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'belum', `status` enum('diverifikasi','diterima','ditolak','belum') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'belum' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `nisn`, `name`, `email`, `role`, `no`, `fb`, `ig`, `password`, `email_verified_at`, `remember_token`, `created_at`, `updated_at`, `tes`, `status`) VALUES (1, '11900', 'admin', 'admin@admin.com', 'admin', '088765424719', 'Admin', '@admin', '$2y$10$X3v6bW/ZwFDLiLCCTbl.JensP79ad7tdy5vOWTBzYFV3qA9zk6F2y', NULL, NULL, '2021-10-14 23:24:10', '2021-10-14 23:24:10', 'belum', 'belum'), (2, '11900561', 'Salwa Amalia', 'salwa@gmail.com', NULL, '0876675687', 'Salwa', '@salwa', '$2y$10$X3v6bW/ZwFDLiLCCTbl.JensP79ad7tdy5vOWTBzYFV3qA9zk6F2y', NULL, NULL, '2021-10-14 23:25:33', '2021-10-19 06:53:25', 'belum', 'belum'), (3, '11900555', 'Ardhito Pramono', 'ardito@gmail.com', NULL, '0876175615', 'Ardhito', '@ardhito', '$2y$10$nuETXZEqFjVb57alW0QaDuYWOsUSTlYPAdNwWAHmUnvtZVfRFRvBO', NULL, NULL, '2021-10-19 21:15:45', '2021-10-20 20:33:00', 'belum', 'belum'), (4, '11900444', 'Najwa Shihab', 'najwa@gmail.com', NULL, '08866456455', 'Najwa', '@najwa', '$2y$10$H4BUH95.SzQED7ff5wlTg./3L19pCEv6DmoAClYZr4/g9yDvG3G5i', NULL, NULL, '2021-10-19 21:36:50', '2021-10-20 20:33:48', 'belum', 'diterima'), (5, '11900777', 'Iqbaal Ramadhan', 'iqbaal@gmail.com', NULL, '0861761881681', 'iqbaal', '@iqbaal', '$2y$10$6FDPkdRLh0kgYpauSc.aju8BgxMbtAS.o.0ToqPRtpaL6SQ68Kj2.', NULL, NULL, '2021-10-19 22:51:38', '2021-10-20 20:36:07', 'belum', 'belum'); -- -- Indexes for dumped tables -- -- -- Indexes for table `buys` -- ALTER TABLE `buys` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `form1s` -- ALTER TABLE `form1s` ADD PRIMARY KEY (`id`); -- -- Indexes for table `form2s` -- ALTER TABLE `form2s` ADD PRIMARY KEY (`id`); -- -- Indexes for table `form3s` -- ALTER TABLE `form3s` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_nisn_unique` (`nisn`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `buys` -- ALTER TABLE `buys` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `form1s` -- ALTER TABLE `form1s` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `form2s` -- ALTER TABLE `form2s` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `form3s` -- ALTER TABLE `form3s` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=65; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; 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 */;
true
47556ea28216df551bb53e9b37a169bda6a73634
SQL
flaviasilvaa/FinalProject
/hotBerry.sql
UTF-8
9,901
4.28125
4
[]
no_license
DROP DATABASE if exists hotberry; CREATE DATABASE hotberry; USE hotberry; DROP TABLE if exists keycodes; CREATE TABLE keycodes( keycode_key VARCHAR(6) NOT NULL UNIQUE, keycode_comment VARCHAR(45), keycode_used BOOLEAN NOT NULL DEFAULT 0, PRIMARY KEY(keycode_key) ); DROP TABLE if exists users; CREATE TABLE users( user_id INT AUTO_INCREMENT NOT NULL, user_name VARCHAR(45), user_email VARCHAR(45) NOT NULL UNIQUE, user_pass VARCHAR(64) NOT NULL, user_status BOOLEAN NOT NULL DEFAULT 1, user_deleted BOOLEAN NOT NULL DEFAULT 0, PRIMARY KEY(user_id) ); DROP TABLE if exists relation; CREATE TABLE relation( relation_id INT AUTO_INCREMENT NOT NULL, relation_level INT(1) NOT NULL DEFAULT 2, keycode_key VARCHAR(6) NOT NULL, user_id INT NOT NULL, PRIMARY KEY(relation_id), CONSTRAINT keycodes FOREIGN KEY(keycode_key) REFERENCES keycodes(keycode_key), CONSTRAINT users FOREIGN KEY(user_id) REFERENCES users(user_id) ); DROP TABLE if exists schedules; CREATE TABLE schedules( schedule_id INT AUTO_INCREMENT NOT NULL, schedule_start INT NOT NULL, schedule_end INT NOT NULL, relation_id int not null, PRIMARY KEY(schedule_id), CONSTRAINT relation FOREIGN KEY(relation_id) REFERENCES relation (relation_id) ); /* ################################## <DATA> #################################### */ INSERT INTO keycodes (keycode_key) VALUES ("8AF11A"),("QL7IBV"),("3UMX9P"),("QW158Z"),("7F6QIQ"),("NW5M9C"),("V4M0V6"),("0IB81A"), ("PH8F0O"),("P21B53"),("DB33U6"),("Q2AK4W"),("DBPP6I"),("IBK13I"),("L73TKD"),("2FL19U"), ("SL7J8R"),("3UNRFN"),("4M8OQ0"),("0QMBJQ"),("CTO4I4"),("N13C4L"),("81KMD3"),("00ZVXV"), ("0O1YPB"),("QW324F"),("43L8FN"),("9I2TPU"),("SMDB0Y"),("5JCOO4"),("Z74G1X"); /* ################################## </DATA> #################################### */ DELIMITER // DROP PROCEDURE IF EXISTS createUser// CREATE PROCEDURE createUser(IN email VARCHAR(45), IN pass VARCHAR(64), IN keycode VARCHAR(6)) BEGIN DECLARE id INT; START TRANSACTION; INSERT INTO users (user_email, user_pass) VALUES (email, pass); SELECT user_id FROM users WHERE user_email = email into id; INSERT INTO relation (keycode_key, user_id) VALUES (keycode, id); COMMIT; END // DELIMITER ; DELIMITER // DROP PROCEDURE IF EXISTS createAdmin// CREATE PROCEDURE createAdmin(IN keycode VARCHAR(12), IN email VARCHAR(45), IN pass VARCHAR(65), OUT result BOOLEAN) BEGIN START TRANSACTION; IF (SELECT keycode_used FROM keycodes WHERE keycode_key = keycode) != 1 THEN INSERT INTO users (user_email, user_pass, user_status) VALUES (email, pass, 1); INSERT INTO relation (relation_level, keycode_key, user_id) VALUES (1, keycode, (SELECT user_id FROM users WHERE user_email = email)); UPDATE keycodes SET keycode_used = 1 WHERE keycode_key = keycode; ELSE SELECT keycode_used FROM keycodes WHERE keycode_key = keycode INTO result; END IF; COMMIT; END // DELIMITER ; CALL createSchedule(15, '00ZVXV', 1553934289, ‭1553936989‬); DELIMITER // DROP PROCEDURE IF EXISTS createSchedule// CREATE PROCEDURE createSchedule(IN userId INT, IN keycode VARCHAR(6), IN startSchedule INT, IN endSchedule INT) BEGIN DECLARE ralationId INT; SELECT relation_id FROM relation WHERE keycode_key = keycode AND user_id = userId INTO ralationId; INSERT INTO schedules (schedule_start, schedule_end, relation_id) VALUES (startSchedule, endSchedule, ralationId); END // DELIMITER ; DELIMITER // DROP FUNCTION IF EXISTS checkEmailAndKey// CREATE FUNCTION checkEmailAndKey(email VARCHAR(45), keycode VARCHAR(7)) RETURNS VARCHAR(2) BEGIN DECLARE cheking BOOLEAN; IF (SELECT COUNT(*) FROM users WHERE user_email = email) != 0 THEN # Email already registered! # RETURN "4"; ELSEIF (SELECT COUNT(*) FROM keycodes WHERE keycode_key = keycode) != 1 THEN # Key is invalid! Key does not exist # RETURN "7"; ELSEIF (SELECT keycode_used FROM keycodes WHERE keycode_key = keycode) = 1 THEN # Key is invalid! Already used # RETURN "7"; ELSE # Valid key! # RETURN "ok"; END IF; END// DELIMITER ; /* ################################## <SIMULATION DATA> #################################### */ CALL createAdmin("8AF11A","caroldanvers@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa", @resutl); CALL createUser("davidbonner@email.com", "$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa", "8AF11A"); CALL createUser("hankpym@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa", "8AF11A"); CALL createUser("emmafrost@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa", "8AF11A"); CALL createAdmin("SMDB0Y","stevenrogers@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa", @resutl); INSERT INTO relation (relation_level, keycode_key, user_id) VALUES (1, "5JCOO4",5); CALL createUser("annamarie@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","5JCOO4"); CALL createUser("mollyfitzgerald@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","5JCOO4"); CALL createUser("williamnasland@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","5JCOO4"); CALL createAdmin("00ZVXV","joshuasanders@email.comm","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa", @resutl); CALL createUser("jaygarrick@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","00ZVXV"); CALL createUser("troystewart@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","00ZVXV"); CALL createUser("danieleaton@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","00ZVXV"); CALL createUser("samanthaparrington@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","00ZVXV"); CALL createUser("guygardner@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","00ZVXV"); CALL createUser("cassiesandsmark@email.com","$2y$10$Gr15GhasjDto5Nt8Bz5N3e5dhN/epsID4/eDrkyJQUU5pJjT8NIAa","00ZVXV"); /* ################################## </SIMULATION DATA> #################################### */ /* # Select to show the users, giving the option to the admin add one of them ######### SELECT relation.user_id, keycode_key, user_email FROM users INNER JOIN relation ON relation.user_id = users.user_id WHERE keycode_key = "00ZVXV" and users.user_id != 1; ####################################### # Selecto to login a user on the system ############# SELECT users.user_id, users.user_name, users.user_email, relation.relation_level as user_level FROM users INNER JOIN relation ON relation.user_id = users.user_id where users.user_email = "marcosvaldeni@gmail.com"; ####################################### # Check if boiler is ON ############ SELECT * FROM schedules inner join relation on relation.user_id = schedules.user_id where schedule_start <= (SELECT UNIX_TIMESTAMP(NOW())) and schedule_end >= (SELECT UNIX_TIMESTAMP(NOW())) having relation.keycode_key = "00ZVXV"; ####################################### # Select userd on Historic page ################ changed, please check the php page SELECT relation.relation_id, users.user_id, schedules.schedule_id, users.user_name AS name, users.user_email AS email, schedule_start, schedule_end FROM schedules INNER JOIN relation ON schedules.relation_id = relation.relation_id INNER JOIN users ON relation.user_id = users.user_id WHERE relation.keycode_key = "8AF11A" ORDER BY schedules.schedule_end; ################################# # Select userd on User page ################ SELECT users.user_name AS name, users.user_email AS email, relation.relation_level AS level, users.user_status AS status, users.user_deleted AS deleted FROM users INNER JOIN relation ON users.user_id = relation.user_id WHERE relation.keycode_key = "8AF11A"; ################################# # select planing programming for today ################ SELECT users.user_email AS email,users.user_name AS name, schedules.schedule_start AS start, schedules.schedule_end AS end FROM schedules INNER JOIN relation ON schedules.relation_id = relation.relation_id INNER JOIN users ON users.user_id = relation.user_id WHERE FROM_UNIXTIME(schedule_start, "%d/%m/%Y") = FROM_UNIXTIME((SELECT UNIX_TIMESTAMP(NOW())), "%d/%m/%Y") AND relation.keycode_key = "00ZVXV" ORDER BY schedule_end; ################################# SELECT UNIX_TIMESTAMP(NOW()); SELECT FROM_UNIXTIME((SELECT UNIX_TIMESTAMP(NOW())), "%d/%m/%Y %H:%i") as MyTime; SELECT schedules.schedule_id FROM schedules INNER JOIN relation ON schedules.relation_id = relation.relation_id where schedules.schedule_start <= (SELECT UNIX_TIMESTAMP(NOW()-3600)) and schedules.schedule_end >= (SELECT UNIX_TIMESTAMP(NOW()-3600)) and relation.keycode_key = "00ZVXV"; SELECT count(*) FROM relation INNER JOIN users ON relation.user_id = users.user_id WHERE users.user_id = 5; */ /* SELECT FROM_UNIXTIME((1552225500), "%d/%m/%Y %H:%i") as MyTime; INSERT INTO schedules (schedule_start, schedule_end, relation_id) VALUES (1553934289, 1553936989, ralationId); #15 'cassiesandsmark@email.com' CALL createSchedule(15, '00ZVXV', 1553934289, ‭1553936989‬); CALL createSchedule(15, '00ZVXV', 1553940000, ‭1553941800‬); #14 'guygardner@email.com' CALL createSchedule(14, '00ZVXV', 1556616600, ‭1556617500‬); CALL createSchedule(14, '00ZVXV', 1556628300, ‭1556631900‬); CALL createSchedule(14, '00ZVXV', 1556635500, ‭1556639100‬); CALL createSchedule(14, '00ZVXV', 1556646300, ‭1556647200‬); #13 'samanthaparrington@email.com' CALL createSchedule(13, '00ZVXV', 1552201200, ‭1552202100‬); CALL createSchedule(13, '00ZVXV', 1552216500, ‭1552218300‬); CALL createSchedule(13, '00ZVXV', 1552225500, ‭1552229100‬); #9 'joshuasanders@email.comm' CALL createSchedule(14, '00ZVXV', 1552272300, 1552275000‭‬); CALL createSchedule(14, '00ZVXV', 1552282200, ‭‬1552283100); CALL createSchedule(14, '00ZVXV', 1552304700, ‭‬1552262400); CALL createSchedule(14, '00ZVXV', 1552309200, 1552311000‭‬); select * from users INNER JOIN relation ON users.user_id = relation.user_id;
true
fa17fd9994434250d7abaed02592e8232c9d18fd
SQL
SmokeJaguarr/quiztestapp
/testapp.sql
UTF-8
22,600
2.890625
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Dec 11, 2020 at 02:11 PM -- Server version: 10.4.13-MariaDB -- PHP Version: 7.4.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `testapp` -- -- -------------------------------------------------------- -- -- Table structure for table `answer` -- CREATE TABLE `answer` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `test_id` int(11) NOT NULL, `question_id` int(11) NOT NULL, `option_id` int(11) NOT NULL, `attemp_count` int(11) NOT NULL, `correct` tinyint(1) NOT NULL, `session_id` varchar(255) NOT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `answer` -- INSERT INTO `answer` (`id`, `user_id`, `test_id`, `question_id`, `option_id`, `attemp_count`, `correct`, `session_id`, `created_at`) VALUES (40, 2, 2, 6, 1, 0, 0, '5fd255bae282a', '2020-12-10 19:07:08'), (41, 2, 2, 7, 6, 0, 1, '5fd255bae282a', '2020-12-10 19:07:10'), (42, 2, 2, 8, 10, 0, 1, '5fd255bae282a', '2020-12-10 19:07:11'), (43, 2, 2, 6, 3, 0, 0, '5fd255d220c57', '2020-12-10 19:07:33'), (44, 2, 2, 7, 6, 0, 1, '5fd255d220c57', '2020-12-10 19:07:39'), (45, 2, 2, 8, 10, 0, 1, '5fd255d220c57', '2020-12-10 19:07:45'), (46, 2, 2, 6, 2, 0, 0, '5fd25648542d7', '2020-12-10 19:09:34'), (47, 2, 2, 7, 7, 0, 0, '5fd25648542d7', '2020-12-10 19:09:38'), (48, 2, 2, 8, 10, 0, 1, '5fd25648542d7', '2020-12-10 19:09:41'), (49, 2, 2, 6, 1, 0, 0, '5fd25de19801e', '2020-12-10 19:42:59'), (50, 2, 2, 7, 6, 0, 1, '5fd25de19801e', '2020-12-10 19:43:01'), (51, 2, 2, 8, 10, 0, 1, '5fd25de19801e', '2020-12-10 19:43:03'), (52, 2, 2, 6, 1, 0, 0, '5fd260121c45a', '2020-12-10 19:51:23'), (53, 2, 2, 7, 6, 0, 1, '5fd260121c45a', '2020-12-10 19:51:25'), (54, 2, 2, 8, 10, 0, 1, '5fd260121c45a', '2020-12-10 19:51:27'), (55, 2, 2, 6, 1, 0, 0, '5fd260462f78b', '2020-12-10 19:52:07'), (56, 2, 2, 7, 6, 0, 1, '5fd260462f78b', '2020-12-10 19:52:13'), (57, 2, 2, 8, 10, 0, 1, '5fd260462f78b', '2020-12-10 19:52:16'), (58, 2, 2, 6, 1, 0, 0, '5fd263336006f', '2020-12-10 20:04:37'), (59, 2, 2, 7, 6, 0, 1, '5fd263336006f', '2020-12-10 20:04:40'), (60, 2, 2, 8, 10, 0, 1, '5fd263336006f', '2020-12-10 20:04:42'), (61, 2, 2, 6, 1, 0, 0, '5fd263dd3b86f', '2020-12-10 20:07:27'), (62, 2, 2, 7, 6, 0, 1, '5fd263dd3b86f', '2020-12-10 20:07:28'), (63, 2, 2, 8, 10, 0, 1, '5fd263dd3b86f', '2020-12-10 20:07:29'), (64, 2, 2, 6, 1, 0, 0, '5fd264168c849', '2020-12-10 20:08:23'), (65, 2, 2, 7, 6, 0, 1, '5fd264168c849', '2020-12-10 20:08:25'), (66, 2, 2, 8, 10, 0, 1, '5fd264168c849', '2020-12-10 20:08:26'), (67, 2, 2, 6, 1, 0, 0, '5fd2644e7d91f', '2020-12-10 20:09:21'), (68, 2, 2, 7, 8, 0, 1, '5fd2644e7d91f', '2020-12-10 20:09:23'), (69, 2, 2, 8, 10, 0, 1, '5fd2644e7d91f', '2020-12-10 20:09:24'), (70, 2, 2, 6, 1, 0, 0, '5fd2644e7d91f', '2020-12-10 20:26:29'), (71, 2, 2, 7, 6, 0, 1, '5fd2644e7d91f', '2020-12-10 20:26:30'), (72, 2, 2, 8, 10, 0, 1, '5fd2644e7d91f', '2020-12-10 20:26:32'), (73, 2, 2, 6, 2, 0, 0, '5fd2644e7d91f', '2020-12-10 20:26:48'), (74, 2, 2, 7, 7, 0, 0, '5fd2644e7d91f', '2020-12-10 20:26:51'), (75, 2, 2, 8, 10, 0, 1, '5fd2644e7d91f', '2020-12-10 20:26:53'), (76, 2, 2, 6, 3, 0, 0, '5fd2644e7d91f', '2020-12-10 20:26:58'), (77, 2, 2, 7, 8, 0, 1, '5fd2644e7d91f', '2020-12-10 20:27:00'), (78, 2, 2, 8, 10, 0, 1, '5fd2644e7d91f', '2020-12-10 20:27:01'), (79, 2, 2, 6, 1, 0, 0, '5fd268d0bb1a6', '2020-12-10 20:28:34'), (80, 2, 2, 7, 6, 0, 1, '5fd268d0bb1a6', '2020-12-10 20:28:35'), (81, 2, 2, 8, 10, 0, 1, '5fd268d0bb1a6', '2020-12-10 20:28:36'), (82, 2, 2, 6, 1, 0, 0, '5fd2697bbd5f6', '2020-12-10 20:31:25'), (83, 2, 2, 7, 6, 0, 1, '5fd2697bbd5f6', '2020-12-10 20:31:27'), (84, 2, 2, 8, 10, 0, 1, '5fd2697bbd5f6', '2020-12-10 20:31:28'), (85, 2, 2, 6, 1, 0, 0, '5fd2698bdd873', '2020-12-10 20:31:41'), (86, 2, 2, 7, 6, 0, 1, '5fd2698bdd873', '2020-12-10 20:31:42'), (87, 2, 2, 8, 10, 0, 1, '5fd2698bdd873', '2020-12-10 20:31:45'), (88, 2, 2, 6, 1, 0, 0, '5fd26a8a352ac', '2020-12-10 20:35:57'), (89, 2, 2, 7, 6, 0, 1, '5fd26a8a352ac', '2020-12-10 20:35:59'), (90, 2, 2, 8, 10, 0, 1, '5fd26a8a352ac', '2020-12-10 20:36:01'), (91, 2, 2, 6, 1, 0, 0, '5fd26ad363b26', '2020-12-10 20:37:09'), (92, 2, 2, 7, 6, 0, 1, '5fd26ad363b26', '2020-12-10 20:37:10'), (93, 2, 2, 8, 10, 0, 1, '5fd26ad363b26', '2020-12-10 20:37:12'), (94, 2, 2, 6, 3, 0, 0, '5fd26cc6dfefc', '2020-12-10 20:45:36'), (95, 2, 2, 7, 8, 0, 1, '5fd26cc6dfefc', '2020-12-10 20:45:38'), (96, 2, 2, 8, 10, 0, 1, '5fd26cc6dfefc', '2020-12-10 20:45:47'), (97, 2, 2, 6, 1, 0, 0, '5fd26d1aaa549', '2020-12-10 20:46:52'), (98, 2, 2, 7, 7, 0, 0, '5fd26d1aaa549', '2020-12-10 20:46:54'), (99, 2, 2, 8, 9, 0, 0, '5fd26d1aaa549', '2020-12-10 20:46:56'), (100, 2, 2, 6, 2, 0, 0, '5fd26d60b5c87', '2020-12-10 20:48:06'), (101, 2, 2, 7, 6, 0, 1, '5fd26d60b5c87', '2020-12-10 20:48:10'), (102, 2, 2, 8, 10, 0, 1, '5fd26d60b5c87', '2020-12-10 20:48:14'), (103, 2, 2, 6, 2, 0, 0, '5fd26da5c77cc', '2020-12-10 20:49:15'), (104, 2, 2, 7, 6, 0, 1, '5fd26da5c77cc', '2020-12-10 20:49:20'), (105, 2, 2, 8, 10, 0, 1, '5fd26da5c77cc', '2020-12-10 20:49:23'), (106, 2, 2, 6, 4, 0, 1, '5fd26e3238e86', '2020-12-10 20:52:35'), (107, 2, 2, 7, 8, 0, 1, '5fd26e3238e86', '2020-12-10 20:52:40'), (108, 2, 2, 8, 10, 0, 1, '5fd26e3238e86', '2020-12-10 20:52:44'), (109, 2, 2, 6, 1, 0, 0, '5fd26fbc10379', '2020-12-10 20:58:06'), (110, 2, 2, 7, 6, 0, 1, '5fd26fbc10379', '2020-12-10 20:58:08'), (111, 2, 2, 8, 10, 0, 1, '5fd26fbc10379', '2020-12-10 20:58:10'), (112, 2, 2, 6, 1, 0, 0, '5fd2824e099cc', '2020-12-10 22:17:19'), (113, 2, 2, 7, 8, 0, 1, '5fd2824e099cc', '2020-12-10 22:17:21'), (114, 2, 2, 8, 10, 0, 1, '5fd2824e099cc', '2020-12-10 22:17:22'), (115, 2, 2, 6, 1, 0, 0, '5fd2875048393', '2020-12-10 22:38:42'), (116, 2, 2, 7, 8, 0, 1, '5fd2875048393', '2020-12-10 22:38:43'), (117, 2, 2, 8, 9, 0, 0, '5fd2875048393', '2020-12-10 22:38:45'), (118, 2, 2, 6, 1, 0, 0, '5fd28bb79c3c1', '2020-12-10 22:57:29'), (119, 2, 2, 7, 6, 0, 1, '5fd28bb79c3c1', '2020-12-10 22:57:31'), (120, 2, 2, 8, 10, 0, 1, '5fd28bb79c3c1', '2020-12-10 22:57:32'), (121, 2, 2, 6, 1, 0, 0, '5fd32cdda2827', '2020-12-11 10:25:03'), (122, 2, 2, 7, 8, 0, 1, '5fd32cdda2827', '2020-12-11 10:25:07'), (123, 2, 2, 8, 10, 0, 1, '5fd32cdda2827', '2020-12-11 10:25:09'), (124, 2, 2, 6, 1, 0, 0, '5fd32ed2081a3', '2020-12-11 10:33:41'), (125, 2, 2, 7, 6, 0, 1, '5fd32ed2081a3', '2020-12-11 10:38:17'), (126, 2, 2, 8, 9, 0, 0, '5fd32ed2081a3', '2020-12-11 11:27:40'), (127, 2, 2, 6, 1, 0, 0, '5fd33ba454ba5', '2020-12-11 11:28:07'), (128, 2, 2, 7, 6, 0, 1, '5fd33ba454ba5', '2020-12-11 11:28:09'), (129, 2, 2, 8, 10, 0, 1, '5fd33ba454ba5', '2020-12-11 11:28:11'), (130, 2, 2, 6, 4, 0, 1, '5fd33c5f84656', '2020-12-11 11:31:13'), (131, 2, 2, 7, 6, 0, 1, '5fd33c5f84656', '2020-12-11 11:31:15'), (132, 2, 2, 8, 9, 0, 0, '5fd33c5f84656', '2020-12-11 11:31:17'), (133, 2, 2, 6, 5, 0, 0, '5fd33c6983442', '2020-12-11 11:31:23'), (134, 2, 2, 7, 7, 0, 0, '5fd33c6983442', '2020-12-11 11:31:26'), (135, 2, 2, 8, 9, 0, 0, '5fd33c6983442', '2020-12-11 11:31:28'), (136, 2, 2, 6, 5, 0, 0, '5fd33c7621ec4', '2020-12-11 11:31:36'), (137, 2, 2, 7, 8, 0, 1, '5fd33c7621ec4', '2020-12-11 11:31:38'), (138, 2, 2, 8, 9, 0, 0, '5fd33c7621ec4', '2020-12-11 11:32:14'), (139, 2, 2, 6, 1, 0, 0, '5fd34144a03d5', '2020-12-11 11:52:07'), (140, 2, 2, 7, 8, 0, 1, '5fd34144a03d5', '2020-12-11 11:52:08'), (141, 2, 2, 8, 10, 0, 1, '5fd34144a03d5', '2020-12-11 11:52:16'), (142, 2, 2, 6, 1, 0, 0, '5fd3423a3a35e', '2020-12-11 11:56:11'), (143, 2, 2, 7, 6, 0, 1, '5fd3423a3a35e', '2020-12-11 11:56:13'), (144, 2, 2, 8, 9, 0, 0, '5fd3423a3a35e', '2020-12-11 11:56:15'), (145, 2, 2, 6, 1, 0, 0, '5fd34824d731f', '2020-12-11 12:24:34'), (146, 2, 2, 7, 7, 0, 0, '5fd34824d731f', '2020-12-11 12:24:41'), (147, 2, 2, 8, 9, 0, 0, '5fd34824d731f', '2020-12-11 12:25:26'), (148, 2, 2, 6, 1, 0, 0, '5fd34956f314e', '2020-12-11 12:35:57'), (149, 2, 2, 7, 8, 0, 1, '5fd34956f314e', '2020-12-11 12:35:59'), (150, 2, 2, 8, 9, 0, 0, '5fd34956f314e', '2020-12-11 12:36:01'), (151, 2, 2, 6, 1, 0, 0, '5fd34e3277e2c', '2020-12-11 12:47:17'), (152, 2, 2, 7, 7, 0, 0, '5fd34e3277e2c', '2020-12-11 12:47:19'), (153, 2, 2, 8, 9, 0, 0, '5fd34e3277e2c', '2020-12-11 12:47:21'), (154, 2, 2, 6, 1, 0, 0, '5fd34fa87fe91', '2020-12-11 12:53:40'), (155, 2, 2, 7, 8, 0, 1, '5fd34fa87fe91', '2020-12-11 12:59:55'), (156, 2, 2, 8, 10, 0, 1, '5fd34fa87fe91', '2020-12-11 12:59:58'), (157, 2, 2, 6, 5, 0, 0, '5fd351458e069', '2020-12-11 13:00:29'), (158, 2, 2, 7, 6, 0, 1, '5fd351458e069', '2020-12-11 13:01:00'), (159, 2, 2, 8, 9, 0, 0, '5fd351458e069', '2020-12-11 13:01:05'), (160, 2, 2, 6, 1, 0, 0, '5fd351b53e03d', '2020-12-11 13:02:27'), (161, 2, 2, 7, 7, 0, 0, '5fd351b53e03d', '2020-12-11 13:02:31'), (162, 2, 2, 8, 9, 0, 0, '5fd351b53e03d', '2020-12-11 13:02:34'), (163, 2, 3, 9, 12, 0, 0, '5fd35797549ef', '2020-12-11 13:27:23'), (164, 2, 3, 10, 16, 0, 0, '5fd35797549ef', '2020-12-11 13:27:30'), (165, 2, 3, 9, 11, 0, 1, '5fd357a72563a', '2020-12-11 13:27:49'), (166, 2, 3, 10, 13, 0, 1, '5fd357a72563a', '2020-12-11 13:27:52'), (167, 2, 2, 6, 2, 0, 0, '5fd357ee75c8b', '2020-12-11 13:28:48'), (168, 2, 2, 7, 7, 0, 0, '5fd357ee75c8b', '2020-12-11 13:28:49'), (169, 2, 2, 8, 10, 0, 1, '5fd357ee75c8b', '2020-12-11 13:32:25'), (170, 2, 4, 11, 23, 0, 1, '5fd35a76dbb9e', '2020-12-11 13:39:40'), (171, 2, 4, 12, 24, 0, 1, '5fd35a76dbb9e', '2020-12-11 13:39:45'), (172, 2, 3, 9, 11, 0, 1, '5fd35a8f04d71', '2020-12-11 13:40:00'), (173, 2, 3, 10, 16, 0, 0, '5fd35a8f04d71', '2020-12-11 13:40:19'), (174, 2, 2, 6, 4, 0, 1, '5fd35ab264f49', '2020-12-11 13:40:51'), (175, 2, 2, 7, 8, 0, 1, '5fd35ab264f49', '2020-12-11 13:40:53'), (176, 2, 2, 8, 10, 0, 1, '5fd35ab264f49', '2020-12-11 13:40:56'), (177, 3, 2, 6, 1, 0, 0, '5fd35c92395c2', '2020-12-11 13:48:36'), (178, 3, 2, 7, 8, 0, 1, '5fd35c92395c2', '2020-12-11 13:48:38'), (179, 3, 2, 8, 10, 0, 1, '5fd35c92395c2', '2020-12-11 13:48:39'), (180, 3, 2, 6, 1, 0, 0, '5fd35cca97e23', '2020-12-11 13:49:32'), (181, 3, 2, 7, 6, 0, 1, '5fd35cca97e23', '2020-12-11 13:49:33'), (182, 3, 2, 8, 10, 0, 1, '5fd35cca97e23', '2020-12-11 13:49:35'), (183, 3, 2, 6, 1, 0, 0, '5fd35cf176e8f', '2020-12-11 13:50:10'), (184, 3, 2, 7, 6, 0, 1, '5fd35cf176e8f', '2020-12-11 13:50:12'), (185, 3, 2, 8, 10, 0, 1, '5fd35cf176e8f', '2020-12-11 13:50:13'), (186, 2, 4, 11, 23, 0, 1, '5fd35e4a38dc3', '2020-12-11 13:56:02'), (187, 2, 4, 12, 24, 0, 1, '5fd35e4a38dc3', '2020-12-11 13:56:04'), (188, 2, 2, 6, 1, 0, 0, '5fd35e58de25f', '2020-12-11 13:56:10'), (189, 2, 2, 7, 7, 0, 0, '5fd35e58de25f', '2020-12-11 13:56:11'), (190, 2, 2, 8, 17, 0, 0, '5fd35e58de25f', '2020-12-11 13:56:13'), (191, 8, 2, 6, 1, 0, 0, '5fd35fa2d5b93', '2020-12-11 14:01:40'), (192, 8, 2, 7, 6, 0, 1, '5fd35fa2d5b93', '2020-12-11 14:01:42'), (193, 8, 2, 8, 17, 0, 0, '5fd35fa2d5b93', '2020-12-11 14:01:44'), (194, 2, 4, 11, 22, 0, 0, '5fd3659566a99', '2020-12-11 14:27:03'), (195, 2, 4, 12, 24, 0, 1, '5fd3659566a99', '2020-12-11 14:27:04'), (196, 2, 4, 11, 22, 0, 0, '5fd365b3a2da9', '2020-12-11 14:27:33'), (197, 2, 4, 12, 24, 0, 1, '5fd365b3a2da9', '2020-12-11 14:27:34'), (198, 2, 2, 6, 1, 0, 0, '5fd3666bef991', '2020-12-11 14:30:37'), (199, 2, 2, 7, 6, 0, 1, '5fd3666bef991', '2020-12-11 14:30:39'), (200, 2, 2, 8, 10, 0, 1, '5fd3666bef991', '2020-12-11 14:30:41'), (201, 2, 3, 9, 11, 0, 1, '5fd36675aca8b', '2020-12-11 14:30:47'), (202, 2, 3, 10, 16, 0, 0, '5fd36675aca8b', '2020-12-11 14:30:49'), (203, 2, 4, 11, 22, 0, 0, '5fd3667d28019', '2020-12-11 14:30:55'), (204, 2, 4, 12, 24, 0, 1, '5fd3667d28019', '2020-12-11 14:30:57'), (205, 2, 2, 6, 1, 0, 0, '5fd366d2152ec', '2020-12-11 14:32:19'), (206, 2, 2, 7, 6, 0, 1, '5fd366d2152ec', '2020-12-11 14:32:21'), (207, 2, 2, 8, 10, 0, 1, '5fd366d2152ec', '2020-12-11 14:32:31'), (208, 2, 4, 11, 21, 0, 0, '5fd36729eae55', '2020-12-11 14:33:55'), (209, 2, 4, 12, 25, 0, 0, '5fd36729eae55', '2020-12-11 14:33:57'), (210, 2, 4, 11, 22, 0, 0, '5fd36739e5443', '2020-12-11 14:34:03'), (211, 2, 4, 12, 25, 0, 0, '5fd36739e5443', '2020-12-11 14:34:04'), (212, 2, 2, 6, 2, 0, 0, '5fd3673f03a97', '2020-12-11 14:34:08'), (213, 2, 2, 7, 6, 0, 1, '5fd3673f03a97', '2020-12-11 14:34:09'), (214, 2, 2, 8, 10, 0, 1, '5fd3673f03a97', '2020-12-11 14:34:11'); -- -------------------------------------------------------- -- -- Table structure for table `finished_test` -- CREATE TABLE `finished_test` ( `id` int(11) NOT NULL, `test_id` int(11) NOT NULL, `User_id` int(11) NOT NULL, `correct_answers` int(11) NOT NULL, `session_id` varchar(255) NOT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `finished_test` -- INSERT INTO `finished_test` (`id`, `test_id`, `User_id`, `correct_answers`, `session_id`, `created_at`) VALUES (1, 2, 2, 0, '5fd26d1aaa549', '2020-12-10 20:47:24'), (2, 2, 2, 2, '5fd26d60b5c87', '2020-12-10 20:48:14'), (3, 2, 2, 2, '5fd26da5c77cc', '2020-12-10 20:49:23'), (4, 2, 2, 3, '5fd26e3238e86', '2020-12-10 20:52:44'), (5, 2, 2, 2, '5fd26fbc10379', '2020-12-10 20:58:10'), (6, 2, 2, 2, '5fd2824e099cc', '2020-12-10 22:17:22'), (7, 2, 2, 1, '5fd2875048393', '2020-12-10 22:38:45'), (8, 2, 2, 2, '5fd28bb79c3c1', '2020-12-10 22:57:32'), (9, 2, 2, 2, '5fd32cdda2827', '2020-12-11 10:25:09'), (10, 2, 2, 1, '5fd32ed2081a3', '2020-12-11 11:27:40'), (11, 2, 2, 2, '5fd33ba454ba5', '2020-12-11 11:28:11'), (12, 2, 2, 2, '5fd33c5f84656', '2020-12-11 11:31:17'), (13, 2, 2, 0, '5fd33c6983442', '2020-12-11 11:31:28'), (14, 2, 2, 1, '5fd33c7621ec4', '2020-12-11 11:32:14'), (15, 2, 2, 2, '5fd34144a03d5', '2020-12-11 11:52:17'), (16, 2, 2, 1, '5fd3423a3a35e', '2020-12-11 11:56:15'), (17, 2, 2, 0, '5fd34824d731f', '2020-12-11 12:25:26'), (18, 2, 2, 1, '5fd34956f314e', '2020-12-11 12:36:01'), (19, 2, 2, 0, '5fd34e3277e2c', '2020-12-11 12:47:22'), (20, 2, 2, 2, '5fd34fa87fe91', '2020-12-11 12:59:58'), (21, 2, 2, 1, '5fd351458e069', '2020-12-11 13:01:05'), (22, 2, 2, 0, '5fd351b53e03d', '2020-12-11 13:02:34'), (23, 3, 2, 0, '5fd35797549ef', '2020-12-11 13:27:30'), (24, 3, 2, 2, '5fd357a72563a', '2020-12-11 13:27:52'), (25, 2, 2, 1, '5fd357ee75c8b', '2020-12-11 13:32:25'), (26, 4, 2, 2, '5fd35a76dbb9e', '2020-12-11 13:39:45'), (27, 3, 2, 1, '5fd35a8f04d71', '2020-12-11 13:40:19'), (28, 2, 2, 3, '5fd35ab264f49', '2020-12-11 13:40:56'), (29, 2, 3, 2, '5fd35c92395c2', '2020-12-11 13:48:39'), (30, 2, 3, 2, '5fd35cca97e23', '2020-12-11 13:49:35'), (31, 2, 3, 2, '5fd35cf176e8f', '2020-12-11 13:50:13'), (32, 4, 2, 2, '5fd35e4a38dc3', '2020-12-11 13:56:04'), (33, 2, 2, 0, '5fd35e58de25f', '2020-12-11 13:56:13'), (34, 2, 8, 1, '5fd35fa2d5b93', '2020-12-11 14:01:44'), (35, 4, 2, 1, '5fd3659566a99', '2020-12-11 14:27:04'), (36, 4, 2, 1, '5fd365b3a2da9', '2020-12-11 14:27:35'), (37, 2, 2, 2, '5fd3666bef991', '2020-12-11 14:30:41'), (38, 3, 2, 1, '5fd36675aca8b', '2020-12-11 14:30:49'), (39, 4, 2, 1, '5fd3667d28019', '2020-12-11 14:30:57'), (40, 2, 2, 2, '5fd366d2152ec', '2020-12-11 14:32:31'), (41, 4, 2, 0, '5fd36729eae55', '2020-12-11 14:33:57'), (42, 4, 2, 0, '5fd36739e5443', '2020-12-11 14:34:04'), (43, 2, 2, 2, '5fd3673f03a97', '2020-12-11 14:34:11'); -- -------------------------------------------------------- -- -- Table structure for table `options` -- CREATE TABLE `options` ( `id` int(11) NOT NULL, `question_id` int(11) NOT NULL, `option_text` varchar(255) NOT NULL, `answer_bool` tinyint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `options` -- INSERT INTO `options` (`id`, `question_id`, `option_text`, `answer_bool`) VALUES (1, 6, 'PreHypertext processor.', 0), (2, 6, 'Hypertext Preprocessor', 0), (3, 6, 'Hypertext Patheticprocessor', 0), (4, 6, 'Hypertext processor', 1), (5, 6, 'Just PHP', 0), (6, 7, 'PHP syntax resembles Perl and C', 1), (7, 7, 'PHP syntax resembles Python and Pearl', 0), (8, 7, 'PHP syntax resembles C and Pearl', 1), (9, 8, 'Write in command-line interpreter php -e', 0), (10, 8, 'Write in command-line interpreter php -a', 1), (11, 9, 'Inner join return rows when there is at least one match of rows between the tables', 1), (12, 9, 'Inner join return rows when there is one match of rows between the tables', 0), (13, 10, 'Full join return rows when there are matching rows in any one of the tables', 1), (14, 10, 'Full join returns all the rows from the left hand side table and all the rows from the right hand side table.', 1), (15, 10, 'Simply, it returns all the rows from Left hand side table even though there are no matches in the Right hand side table.', 0), (16, 10, 'Simply, it returns all the rows from the right hand side table even though there are no matches in the left hand side table.', 0), (17, 8, 'Write in command-line interpreter php -p', 0), (21, 11, 'One time', 0), (22, 11, 'One to ten times', 0), (23, 11, 'As many times you want to', 1), (24, 12, 'In Vue, props (or properties), are the way that we pass data from a parent component down to it\'s child components', 1), (25, 12, 'In Vue, props (or properties), are the way that we can store data in components.', 0); -- -------------------------------------------------------- -- -- Table structure for table `question` -- CREATE TABLE `question` ( `id` int(11) NOT NULL, `question_text` varchar(255) NOT NULL, `test_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `question` -- INSERT INTO `question` (`id`, `question_text`, `test_id`) VALUES (6, 'What do the initials of PHP stand for?', 2), (7, 'Which programming language does PHP resemble?', 2), (8, 'How to run the interactive PHP shell from the command line interface?', 2), (9, 'What is Inner Join.', 3), (10, 'What is Full Join', 3), (11, 'How many times you can reuse a component?', 4), (12, 'What is props in Vue.js ?', 4); -- -------------------------------------------------------- -- -- Table structure for table `test` -- CREATE TABLE `test` ( `id` int(11) NOT NULL, `test_name` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `test` -- INSERT INTO `test` (`id`, `test_name`) VALUES (2, 'PHP Basics'), (3, 'Advanced SQL'), (4, 'Vue.js components'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `password`, `created_at`) VALUES (2, 'Davis Talums', 'it@lh.lv', '$2y$10$Vt8NXmDyXwBAQ16rOYt6J.iyX0PCIYiQq3mTXv4D6EHwtAS6hii7O', '2020-12-09 21:23:23'), (3, 'test2User', 'test2@test.com', '$2y$10$3T6wQJmwb3vtgy4DqWM2b.3AUofzecb.xUyjGtUEAyeNg8WKXwBOK', '2020-12-11 13:48:06'), (4, 'sadsa', 'sadsad@sad.sda', '$2y$10$Jj6CgcTyXc4viGBsNdnqWui1Sba1lA2GqoWhcs/cyi1xy187mg6aK', '2020-12-11 13:56:57'), (5, 'sadsad', 'it@lh.lv', '$2y$10$2c2K4i.2S2QLI8FQMJc6reA58DI3aWcDohP8fDmc0sdetnPE0Sl76', '2020-12-11 13:58:17'), (7, 'test2User', 'test22@test.com2', '$2y$10$L1TtmKZYKaCWoGVa8jspjevMtrWzMOkaiGqCFa2upA4MKflpOFT6O', '2020-12-11 14:01:05'), (8, 'Aivars', 'aivars@aivars.lv', '$2y$10$eAOQ4msl/xvvy0v6Nwb6rOArnlXiL/1BcxBOAxGrhkhX7l0ExaME2', '2020-12-11 14:01:25'); -- -- Indexes for dumped tables -- -- -- Indexes for table `answer` -- ALTER TABLE `answer` ADD PRIMARY KEY (`id`), ADD KEY `user_id` (`user_id`), ADD KEY `test_id` (`test_id`), ADD KEY `question_id` (`question_id`), ADD KEY `option_id` (`option_id`); -- -- Indexes for table `finished_test` -- ALTER TABLE `finished_test` ADD PRIMARY KEY (`id`), ADD KEY `User_id` (`User_id`), ADD KEY `test_id` (`test_id`); -- -- Indexes for table `options` -- ALTER TABLE `options` ADD PRIMARY KEY (`id`), ADD KEY `question_id` (`question_id`); -- -- Indexes for table `question` -- ALTER TABLE `question` ADD PRIMARY KEY (`id`), ADD KEY `test_id` (`test_id`); -- -- Indexes for table `test` -- ALTER TABLE `test` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `answer` -- ALTER TABLE `answer` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=215; -- -- AUTO_INCREMENT for table `finished_test` -- ALTER TABLE `finished_test` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44; -- -- AUTO_INCREMENT for table `options` -- ALTER TABLE `options` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; -- -- AUTO_INCREMENT for table `question` -- ALTER TABLE `question` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `test` -- ALTER TABLE `test` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- Constraints for dumped tables -- -- -- Constraints for table `answer` -- ALTER TABLE `answer` ADD CONSTRAINT `answer_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`), ADD CONSTRAINT `answer_ibfk_2` FOREIGN KEY (`test_id`) REFERENCES `test` (`id`), ADD CONSTRAINT `answer_ibfk_3` FOREIGN KEY (`question_id`) REFERENCES `question` (`id`), ADD CONSTRAINT `answer_ibfk_4` FOREIGN KEY (`option_id`) REFERENCES `options` (`id`); -- -- Constraints for table `finished_test` -- ALTER TABLE `finished_test` ADD CONSTRAINT `finished_test_ibfk_1` FOREIGN KEY (`User_id`) REFERENCES `users` (`id`), ADD CONSTRAINT `finished_test_ibfk_2` FOREIGN KEY (`test_id`) REFERENCES `test` (`id`); -- -- Constraints for table `options` -- ALTER TABLE `options` ADD CONSTRAINT `options_ibfk_1` FOREIGN KEY (`question_id`) REFERENCES `question` (`id`); -- -- Constraints for table `question` -- ALTER TABLE `question` ADD CONSTRAINT `question_ibfk_1` FOREIGN KEY (`test_id`) REFERENCES `test` (`id`); COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
true
a77025c0ada2880550264a419b9cefcc948cc1cd
SQL
iae94/Calendar
/docker/psql/3table.sql
UTF-8
780
3.53125
4
[]
no_license
-- Table: public."Events" -- DROP TABLE public."Events"; CREATE TABLE public."Events" ( id serial NOT NULL , "UUID" uuid, "Summary" text COLLATE pg_catalog."default", "Description" text COLLATE pg_catalog."default", "User" text COLLATE pg_catalog."default", "StartDate" timestamp without time zone, "EndDate" timestamp without time zone, "NotifyTime" timestamp without time zone, CONSTRAINT "Events_pkey" PRIMARY KEY (id) ) TABLESPACE pg_default; ALTER TABLE public."Events" OWNER to api_user; GRANT ALL ON TABLE public."Events" TO api_user; GRANT ALL ON TABLE public."Events" TO scheduler_user; GRANT USAGE, SELECT ON ALL SEQUENCES IN SCHEMA public TO api_user; GRANT USAGE, SELECT ON ALL SEQUENCES IN SCHEMA public TO scheduler_user;
true
c6302dbd653b419fe8bb6989e71bf453ae1f81f8
SQL
Cristhian-Sierra/SRS_Project
/persistence/srsC.sql
UTF-8
5,980,594
3.421875
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 17-06-2021 a las 05:04:52 -- Versión del servidor: 10.4.13-MariaDB -- Versión de PHP: 7.4.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `srs` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `administrator` -- CREATE TABLE `administrator` ( `idAdministrator` int(11) NOT NULL, `name` varchar(45) NOT NULL, `lastName` varchar(45) NOT NULL, `email` varchar(45) NOT NULL, `password` varchar(45) NOT NULL, `picture` varchar(45) DEFAULT NULL, `phone` varchar(45) DEFAULT NULL, `mobile` varchar(45) DEFAULT NULL, `state` tinyint(4) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `administrator` -- INSERT INTO `administrator` (`idAdministrator`, `name`, `lastName`, `email`, `password`, `picture`, `phone`, `mobile`, `state`) VALUES (1, 'Admin', 'Admin', 'admin@udistrital.edu.co', '202cb962ac59075b964b07152d234b70', NULL, '123', '123', 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `area` -- CREATE TABLE `area` ( `idArea` int(11) NOT NULL, `name` varchar(45) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `area` -- INSERT INTO `area` (`idArea`, `name`) VALUES (1, 'Agricultural and Biological Sciences'), (2, 'Art and Humanities'), (3, 'Biochemistry Genetics and Molecular Biology'), (4, 'Business Management and Accounting'), (5, 'Chemical Engineering'), (6, 'Chemistry'), (7, 'Computer Science'), (8, 'Decision Sciences'), (9, 'Dentistry'), (10, 'Earth and Planetary Sciences'), (11, 'Economics Econometrics and Finance'), (12, 'Energy'), (13, 'Engineering'), (14, 'Environmental Science'), (15, 'Health Professions'), (16, 'Immunology and Microbiology'), (17, 'Materials Science'), (18, 'Mathematics'), (19, 'Medicine'), (20, 'Multidisciplinary'), (21, 'Neuroscience'), (22, 'Nursing'), (23, 'Pharmacology Toxicology and Pharmaceutics'), (24, 'Physics and Astronomy'), (25, 'Phychology'), (26, 'Social Sciences'), (27, 'Veterinary'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `category` -- CREATE TABLE `category` ( `idCategory` int(11) NOT NULL, `area_idArea` int(11) NOT NULL, `name` varchar(200) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `category` -- INSERT INTO `category` (`idCategory`, `area_idArea`, `name`) VALUES (1, 1, 'Agricultural and Biological Sciences (miscellaneous)'), (2, 1, 'Agronomy and Crop Science'), (3, 1, 'Animal Science and Zoology'), (4, 1, 'Aquatic Science'), (5, 1, 'Ecology, Evolution, Behavior and Systematics'), (6, 1, 'Food Science'), (7, 1, 'Forestry'), (8, 1, 'Horticulture'), (9, 1, 'Insect Science'), (10, 1, 'Plant Science'), (11, 1, 'Soil Science'), (12, 2, 'Archeology (arts and humanities)'), (13, 2, 'Arts and Humanities (miscellaneous)'), (14, 2, 'Classics'), (15, 2, 'Conservation'), (16, 2, 'History'), (17, 2, 'History and Philosophy'), (18, 2, 'Language and Linguistics'), (19, 2, 'Literature and Literary Theory'), (21, 2, 'Museology'), (22, 2, 'Music'), (23, 2, 'Philosophy'), (24, 2, 'Religious Studies'), (25, 2, 'Visual Arts and Performing Arts'), (26, 3, 'Aging'), (27, 3, 'Biochemistry'), (28, 3, 'Biochemistry, Genetics and Molecular Biology (miscellaneous)'), (29, 3, 'Biophysics'), (30, 3, 'Biotechnology'), (31, 3, 'Cancer Research'), (32, 3, 'Cell Biology'), (33, 3, 'Clinical Biochemistry'), (34, 3, 'Developmental Biology'), (35, 3, 'Endocrinology'), (36, 3, 'Genetics'), (37, 3, 'Molecular Biology'), (38, 3, 'Molecular Medicine'), (39, 3, 'Physiology'), (40, 3, 'Structural Biology'), (41, 4, 'Accounting'), (42, 4, 'Business and International Management'), (43, 4, 'Business, Management and Accounting (miscellaneous)'), (44, 4, 'Industrial Relations'), (45, 4, 'Management Information Systems'), (46, 4, 'Management of Technology and Innovation'), (47, 4, 'Marketing'), (48, 4, 'Organizational Behavior and Human Resource Management'), (49, 4, 'Strategy and Management'), (50, 4, 'Tourism, Leisure and Hospitality Management'), (51, 5, 'Bioengineering'), (52, 5, 'Catalysis'), (53, 5, 'Chemical Engineering (miscellaneous)'), (54, 5, 'Chemical Health and Safety'), (55, 5, 'Colloid and Surface Chemistry'), (56, 5, 'Filtration and Separation'), (57, 5, 'Fluid Flow and Transfer Processes'), (58, 5, 'Process Chemistry and Technology'), (59, 6, 'Analytical Chemistry'), (60, 6, 'Chemistry (miscellaneous)'), (61, 6, 'Electrochemistry'), (62, 6, 'Inorganic Chemistry'), (63, 6, 'Organic Chemistry'), (64, 6, 'Physical and Theoretical Chemistry'), (65, 6, 'Spectroscopy'), (66, 7, 'Artificial Intelligence'), (67, 7, 'Computational Theory and Mathematics'), (68, 7, 'Computer Graphics and Computer-Aided Design'), (69, 7, 'Computer Networks and Communications'), (70, 7, 'Computer Science Applications'), (71, 7, 'Computer Science (miscellaneous)'), (72, 7, 'Computer Vision and Pattern Recognition'), (73, 7, 'Hardware and Architecture'), (74, 7, 'Human-Computer Interaction'), (75, 7, 'Information Systems'), (76, 7, 'Signal Processing'), (77, 7, 'Software'), (78, 8, 'Decision Sciences (miscellaneous)'), (79, 8, 'Information Systems and Management'), (80, 8, 'Management Science and Operations Research'), (81, 8, 'Statistics, Probability and Uncertainty'), (82, 9, 'Dental Assisting'), (83, 9, 'Dental Hygiene'), (84, 9, 'Dentistry (miscellaneous)'), (85, 9, 'Oral Surgery'), (86, 9, 'Orthodontics'), (87, 9, 'Periodontics'), (88, 10, 'Atmospheric Science'), (89, 10, 'Computers in Earth Sciences'), (90, 10, 'Earth and Planetary Sciences (miscellaneous)'), (91, 10, 'Earth-Surface Processes'), (92, 10, 'Economic Geology'), (93, 10, 'Geochemistry and Petrology'), (94, 10, 'Geology'), (95, 10, 'Geophysics'), (96, 10, 'Geotechnical Engineering and Engineering Geology'), (97, 10, 'Oceanography'), (98, 10, 'Paleontology'), (99, 10, 'Space and Planetary Science'), (100, 10, 'Stratigraphy'), (101, 11, 'Economics and Econometrics'), (102, 11, 'Economics, Econometrics and Finance (miscellaneous)'), (103, 11, 'Finance'), (104, 12, 'Energy Engineering and Power Technology'), (105, 12, 'Energy (miscellaneous)'), (106, 12, 'Fuel Technology'), (107, 12, 'Nuclear Energy and Engineering'), (108, 12, 'Renewable Energy, Sustainability and the Environment'), (109, 13, 'Aerospace Engineering'), (110, 13, 'Architecture'), (111, 13, 'Automotive Engineering'), (112, 13, 'Biomedical Engineering'), (113, 13, 'Building and Construction'), (114, 13, 'Civil and Structural Engineering'), (115, 13, 'Computational Mechanics'), (116, 13, 'Control and Systems Engineering'), (117, 13, 'Electrical and Electronic Engineering'), (118, 13, 'Engineering (miscellaneous)'), (119, 13, 'Industrial and Manufacturing Engineering '), (120, 13, 'Mechanical Engineering'), (121, 13, 'Mechanics of Materials'), (122, 13, 'Media Technology'), (123, 13, 'Ocean Engineering'), (124, 13, 'Safety, Risk, Reliability and Quality'), (125, 14, 'Ecological Modeling'), (126, 14, 'Ecology'), (127, 14, 'Environmental Chemistry'), (128, 14, 'Environmental Engineering'), (129, 14, 'Environmental Science (miscellaneous)'), (130, 14, 'Global and Planetary Change'), (131, 14, 'Health, Toxicology and Mutagenesis'), (132, 14, 'Management, Monitoring, Policy and Law'), (133, 14, 'Nature and Landscape Conservation'), (134, 14, 'Pollution'), (135, 14, 'Waste Management and Disposal'), (136, 14, 'Water Science and Technology'), (137, 15, 'Chiropractics'), (138, 15, 'Complementary and Manual Therapy'), (139, 15, 'Emergency Medical Services'), (140, 15, 'Health Information Management'), (141, 15, 'Health Professions (miscellaneous)'), (142, 15, 'Medical Assisting and Transcription'), (143, 15, 'Medical Laboratory Technology'), (144, 15, 'Medical Terminology'), (145, 15, 'Occupational Therapy'), (146, 15, 'Optometry'), (147, 15, 'Pharmacy'), (148, 15, 'Physical Therapy, Sports Therapy and Rehabilitation'), (149, 15, 'Podiatry'), (150, 15, 'Radiological and Ultrasound Technology'), (151, 15, 'Respiratory Care'), (152, 15, 'Speech and Hearing'), (153, 15, 'Sports Science'), (154, 16, 'Applied Microbiology and Biotechnology'), (155, 16, 'Immunology'), (156, 16, 'Immunology and Microbiology (miscellaneous)'), (157, 16, 'Microbiology'), (158, 16, 'Parasitology'), (159, 16, 'Virology'), (160, 17, 'Biomaterials'), (161, 17, 'Ceramics and Composites'), (162, 17, 'Electronic, Optical and Magnetic Materials'), (163, 17, 'Materials Chemistry'), (164, 17, 'Materials Science (miscellaneous)'), (165, 17, 'Metals and Alloys'), (166, 17, 'Nanoscience and Nanotechnology'), (167, 17, 'Polymers and Plastics'), (168, 17, 'Surfaces, Coatings and Films'), (169, 18, 'Algebra and Number Theory'), (170, 18, 'Analysis'), (171, 18, 'Applied Mathematics'), (172, 18, 'Computational Mathematics'), (173, 18, 'Control and Optimization'), (174, 18, 'Discrete Mathematics and Combinatorics'), (175, 18, 'Geometry and Topology'), (176, 18, 'Logic'), (177, 18, 'Mathematical Physics'), (178, 18, 'Mathematics (miscellaneous)'), (179, 18, 'Modeling and Simulation'), (180, 18, 'Numerical Analysis'), (181, 18, 'Statistics and Probability'), (182, 18, 'Theoretical Computer Science'), (183, 19, 'Anatomy'), (184, 19, 'Anesthesiology and Pain Medicine'), (185, 19, 'Biochemistry (medical)'), (186, 19, 'Cardiology and Cardiovascular Medicine'), (187, 19, 'Complementary and Alternative Medicine'), (188, 19, 'Critical Care and Intensive Care Medicine'), (189, 19, 'Dermatology'), (190, 19, 'Drug Guides'), (191, 19, 'Embryology'), (192, 19, 'Emergency Medicine'), (193, 19, 'Endocrinology, Diabetes and Metabolism'), (194, 19, 'Epidemiology'), (195, 19, 'Family Practice'), (196, 19, 'Gastroenterology'), (197, 19, 'Genetics (clinical)'), (198, 19, 'Geriatrics and Gerontology'), (199, 19, 'Health Informatics'), (200, 19, 'Health Policy'), (201, 19, 'Hematology'), (202, 19, 'Hepatology'), (203, 19, 'Histology'), (204, 19, 'Immunology and Allergy'), (205, 19, 'Infectious Diseases'), (206, 19, 'Internal Medicine'), (207, 19, 'Medicine (miscellaneous)'), (208, 19, 'Microbiology (medical)'), (209, 19, 'Nephrology'), (210, 19, 'Neurology (clinical)'), (211, 19, 'Obstetrics and Gynecology'), (212, 19, 'Oncology'), (213, 19, 'Ophthalmology'), (214, 19, 'Otorhinolaryngology'), (215, 19, 'Pathology and Forensic Medicine'), (216, 19, 'Pharmacology (medical)'), (217, 19, 'Physiology (medical)'), (218, 19, 'Psychiatry and Mental Health'), (219, 19, 'Public Health, Environmental and Occupational Health'), (220, 19, 'Pulmonary and Respiratory Medicine'), (221, 19, 'Radiology, Nuclear Medicine and Imaging'), (222, 19, 'Rehabilitation'), (223, 19, 'Reproductive Medicine'), (224, 19, 'Reviews and References (medical)'), (225, 19, 'Rheumatology'), (226, 19, 'Surgery'), (227, 19, 'Transplantation'), (228, 19, 'Urology'), (229, 20, 'Multidisciplinary'), (230, 21, 'Behavioral Neuroscience'), (231, 21, 'Biological Psychiatry'), (232, 21, 'Cellular and Molecular Neuroscience'), (233, 21, 'Cognitive Neuroscience'), (234, 21, 'Developmental Neuroscience'), (235, 21, 'Endocrine and Autonomic Systems'), (236, 21, 'Neurology'), (237, 21, 'Neuroscience (miscellaneous)'), (238, 21, 'Sensory Systems'), (239, 22, 'Advanced and Specialized Nursing'), (240, 22, 'Assessment and Diagnosis'), (241, 22, 'Care Planning'), (242, 22, 'Community and Home Care'), (243, 22, 'Critical Care Nursing'), (244, 22, 'Emergency Nursing'), (245, 22, 'Fundamentals and Skills'), (246, 22, 'Gerontology'), (247, 22, 'Issues, Ethics and Legal Aspects'), (248, 22, 'Leadership and Management'), (249, 22, 'LPN and LVN'), (250, 22, 'Maternity and Midwifery'), (251, 22, 'Medical and Surgical Nursing'), (252, 22, 'Nurse Assisting'), (253, 22, 'Nursing (miscellaneous)'), (254, 22, 'Nutrition and Dietetics'), (255, 22, 'Oncology (nursing)'), (256, 22, 'Pediatrics'), (257, 22, 'Pharmacology (nursing)'), (258, 22, 'Psychiatric Mental Health'), (259, 22, 'Research and Theory'), (260, 22, 'Review and Exam Preparation'), (261, 23, 'Drug Discovery'), (262, 23, 'Pharmaceutical Science'), (263, 23, 'Pharmacology'), (264, 23, 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous)'), (265, 23, 'Toxicology'), (266, 24, 'Acoustics and Ultrasonics'), (267, 24, 'Astronomy and Astrophysics'), (268, 24, 'Atomic and Molecular Physics, and Optics'), (269, 24, 'Condensed Matter Physics'), (270, 24, 'Instrumentation'), (271, 24, 'Nuclear and High Energy Physics'), (272, 24, 'Physics and Astronomy (miscellaneous)'), (273, 24, 'Radiation'), (274, 24, 'Statistical and Nonlinear Physics'), (275, 24, 'Surfaces and Interfaces'), (276, 25, 'Applied Psychology'), (277, 25, 'Clinical Psychology'), (278, 25, 'Developmental and Educational Psychology'), (279, 25, 'Experimental and Cognitive Psychology'), (280, 25, 'Neuropsychology and Physiological Psychology'), (281, 25, 'Psychology (miscellaneous)'), (282, 25, 'Social Psychology'), (283, 26, 'Anthropology'), (284, 26, 'Archeology'), (285, 26, 'Communication'), (286, 26, 'Cultural Studies'), (287, 26, 'Demography'), (288, 26, 'Development'), (289, 26, 'Education'), (290, 26, 'E-learning'), (291, 26, 'Gender Studies'), (292, 26, 'Geography, Planning and Development'), (293, 26, 'Health (social science)'), (294, 26, 'Human Factors and Ergonomics'), (295, 26, 'Law'), (296, 26, 'Library and Information Sciences'), (297, 26, 'Life-span and Life-course Studies'), (298, 26, 'Linguistics and Language'), (299, 26, 'Political Science and International Relations'), (300, 26, 'Public Administration'), (301, 26, 'Safety Research'), (302, 26, 'Social Sciences (miscellaneous)'), (303, 26, 'Social Work'), (304, 26, 'Transportation'), (305, 26, 'Urban Studies'), (306, 27, 'Equine'), (307, 27, 'Food Animals'), (308, 27, 'Small Animals'), (309, 27, 'Veterinary (miscellaneous)'), (310, 19, 'Pediatrics, Perinatology and Child Health'), (311, 19, 'Orthopedics and Sports Medicine'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `country` -- CREATE TABLE `country` ( `idCountry` int(11) NOT NULL, `name` varchar(45) NOT NULL, `region` varchar(45) DEFAULT NULL, `documents` int(11) DEFAULT NULL, `citable_docs` int(11) DEFAULT NULL, `citations` int(11) DEFAULT NULL, `self_citations` int(11) DEFAULT NULL, `citations_per_doc` int(11) DEFAULT NULL, `hindex` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `country` -- INSERT INTO `country` (`idCountry`, `name`, `region`, `documents`, `citable_docs`, `citations`, `self_citations`, `citations_per_doc`, `hindex`) VALUES (1, 'China', 'Asiatic Region', 684048, 669877, 544310, 379765, 1, 884), (2, 'United States', 'Northern America', 678197, 605796, 582779, 282855, 1, 2386), (3, 'United Kingdom', 'Western Europe', 212519, 188259, 207745, 62486, 1, 1487), (4, 'India', 'Asiatic Region', 187014, 173574, 101838, 47364, 1, 624), (5, 'Germany', 'Western Europe', 183640, 167305, 167682, 55750, 1, 1298), (6, 'Japan', 'Asiatic Region', 132308, 123834, 83421, 26821, 1, 1036), (7, 'Italy', 'Western Europe', 125709, 113243, 117534, 43611, 1, 1030), (8, 'France', 'Western Europe', 118951, 109099, 104040, 26734, 1, 1180), (9, 'Canada', 'Northern America', 115384, 104950, 110142, 26543, 1, 1193), (10, 'Russian Federation', 'Eastern Europe', 111820, 108786, 42097, 21450, 0, 580), (11, 'Australia', 'Pacific Region', 110579, 100527, 116738, 32171, 1, 1001), (12, 'Spain', 'Western Europe', 100364, 93133, 87368, 24670, 1, 904), (13, 'South Korea', 'Asiatic Region', 89544, 86242, 66127, 18450, 1, 687), (14, 'Brazil', 'Latin America', 84887, 80430, 45929, 14720, 1, 578), (15, 'Iran', 'Middle East', 64744, 62836, 54671, 23561, 1, 329), (16, 'Netherlands', 'Western Europe', 64539, 58783, 74321, 16394, 1, 1032), (17, 'Poland', 'Eastern Europe', 50338, 47450, 34722, 10713, 1, 562), (18, 'Turkey', 'Middle East', 49930, 47226, 29044, 8897, 1, 443), (19, 'Switzerland', 'Western Europe', 49033, 44583, 59216, 12225, 1, 993), (20, 'Sweden', 'Western Europe', 44895, 41554, 48756, 9662, 1, 896), (21, 'Indonesia', 'Asiatic Region', 44576, 44194, 10481, 5873, 0, 241), (22, 'Taiwan', 'Asiatic Region', 38308, 36578, 27530, 6358, 1, 523), (23, 'Malaysia', 'Asiatic Region', 36307, 35111, 23953, 8373, 1, 323), (24, 'Belgium', 'Western Europe', 35138, 32215, 39309, 7521, 1, 814), (25, 'Denmark', 'Western Europe', 30333, 27808, 35460, 7319, 1, 773), (26, 'Portugal', 'Western Europe', 28871, 26505, 23936, 5442, 1, 507), (27, 'South Africa', 'Africa', 27941, 26263, 20668, 5801, 1, 468), (28, 'Austria', 'Western Europe', 27827, 25404, 27944, 5726, 1, 672), (29, 'Saudi Arabia', 'Middle East', 27715, 26772, 29040, 9222, 1, 361), (30, 'Mexico', 'Latin America', 27542, 25823, 16923, 3679, 1, 454), (31, 'Czech Republic', 'Eastern Europe', 25620, 24416, 18954, 4608, 1, 471), (32, 'Egypt', 'Africa/Middle East', 25314, 24356, 18633, 6377, 1, 288), (33, 'Norway', 'Western Europe', 25153, 23311, 25013, 5271, 1, 638), (34, 'Pakistan', 'Asiatic Region', 24312, 23461, 21787, 8050, 1, 281), (35, 'Hong Kong', 'Asiatic Region', 24214, 23051, 28642, 5168, 1, 574), (36, 'Israel', 'Middle East', 23195, 21345, 21424, 4197, 1, 721), (37, 'Singapore', 'Asiatic Region', 23079, 21513, 28852, 5378, 1, 589), (38, 'Finland', 'Western Europe', 22488, 20943, 22389, 4788, 1, 660), (39, 'Greece', 'Western Europe', 20650, 18739, 18998, 4055, 1, 514), (40, 'Thailand', 'Asiatic Region', 19628, 18877, 11609, 2742, 1, 339), (41, 'New Zealand', 'Pacific Region', 17640, 15928, 16715, 3501, 1, 537), (42, 'Ireland', 'Western Europe', 16470, 14959, 15974, 2789, 1, 538), (43, 'Romania', 'Eastern Europe', 16326, 15538, 10840, 3037, 1, 304), (44, 'Ukraine', 'Eastern Europe', 15783, 15350, 7543, 3651, 0, 277), (45, 'Chile', 'Latin America', 15487, 14691, 12269, 2863, 1, 384), (46, 'Argentina', 'Latin America', 14580, 13755, 9856, 1923, 1, 431), (47, 'Colombia', 'Latin America', 14001, 13319, 8053, 1812, 1, 290), (48, 'Iraq', 'Middle East', 12821, 12690, 5086, 2102, 0, 109), (49, 'Viet Nam', 'Asiatic Region', 12475, 12055, 12150, 4798, 1, 220), (50, 'Hungary', 'Eastern Europe', 11787, 11133, 10762, 2115, 1, 459), (51, 'Nigeria', 'Africa', 11143, 10679, 5592, 1822, 1, 208), (52, 'United Arab Emirates', 'Middle East', 9047, 8619, 7223, 1468, 1, 216), (53, 'Slovakia', 'Eastern Europe', 8838, 8446, 5028, 1309, 1, 283), (54, 'Algeria', 'Africa', 8459, 8110, 4391, 1455, 1, 178), (55, 'Serbia', 'Eastern Europe', 8430, 7933, 6308, 1250, 1, 247), (56, 'Morocco', 'Africa', 8283, 7888, 4047, 1505, 0, 196), (57, 'Tunisia', 'Africa', 8153, 7757, 4433, 1051, 1, 193), (58, 'Croatia', 'Eastern Europe', 7406, 6962, 4920, 1019, 1, 282), (59, 'Bangladesh', 'Asiatic Region', 7228, 6976, 4829, 1559, 1, 202), (60, 'Slovenia', 'Eastern Europe', 6601, 6201, 5539, 949, 1, 310), (61, 'Bulgaria', 'Eastern Europe', 6022, 5752, 3318, 770, 1, 261), (62, 'Jordan', 'Middle East', 5366, 5240, 3415, 977, 1, 176), (63, 'Philippines ', 'Asiatic Region', 5201, 4996, 3055, 715, 1, 246), (64, 'Ecuador', 'Latin America', 4786, 4608, 2565, 553, 1, 166), (65, 'Kazakhstan', 'Asiatic Region', 4727, 4545, 2236, 719, 0, 107), (66, 'Qatar', 'Middle East', 4430, 4129, 4877, 983, 1, 178), (67, 'Ethiopia', 'Africa', 4367, 4196, 2372, 551, 1, 155), (68, 'Peru', 'Latin America', 4297, 4004, 2424, 509, 1, 238), (69, 'Lithuania', 'Eastern Europe', 4141, 3966, 3459, 650, 1, 220), (70, 'Lebanon', 'Middle East', 3938, 3687, 2962, 544, 1, 216), (71, 'Estonia', 'Eastern Europe', 3805, 3589, 4268, 693, 1, 283), (72, 'Kenya', 'Africa', 3615, 3321, 2566, 500, 1, 261), (73, 'Ghana', 'Africa', 3503, 3357, 2065, 455, 1, 160), (74, 'Cyprus', 'Western Europe', 3270, 3044, 2924, 478, 1, 211), (75, 'Belarus', 'Eastern Europe', 2489, 2412, 1895, 363, 1, 184), (76, 'Sri Lanka', 'Asiatic Region', 2489, 2379, 1743, 275, 1, 184), (77, 'Latvia ', 'Eastern Europe', 2410, 2300, 1942, 230, 1, 168), (78, 'Luxembourg', 'Western Europe', 2353, 2177, 2855, 390, 1, 199), (79, 'Oman', 'Middle East', 2316, 2191, 1581, 331, 1, 140), (80, 'Kuwait', 'Middle East', 2304, 2197, 2450, 618, 1, 162), (81, 'Georgia', 'Eastern Europe', 2198, 2010, 3103, 262, 1, 184), (82, 'Macao', 'Asiatic Region', 2185, 2103, 2416, 278, 1, 134), (83, 'Tanzania', 'Africa', 2057, 1918, 1418, 336, 1, 175), (84, 'Uganda', 'Africa', 2050, 1912, 1349, 276, 1, 184), (85, 'Cuba', 'Latin America', 1974, 1816, 725, 155, 0, 177), (86, 'Uruguay', 'Latin America', 1910, 1801, 1400, 220, 1, 193), (87, 'Iceland', 'Western Europe', 1877, 1724, 2320, 334, 1, 318), (88, 'Nepal', 'Asiatic Region', 1856, 1729, 1082, 219, 1, 145), (89, 'Cameroon', 'Africa', 1827, 1741, 1279, 331, 1, 138), (90, 'Bosnia and Herzegovina', 'Eastern Europe', 1512, 1323, 707, 99, 0, 103), (91, 'Uzbekistan', 'Asiatic Region', 1477, 1435, 402, 138, 0, 94), (92, 'Azerbaijan', 'Eastern Europe', 1454, 1420, 1110, 234, 1, 112), (93, 'Armenia', 'Eastern Europe', 1356, 1315, 1453, 272, 1, 190), (94, 'Venezuela', 'Latin America', 1307, 1235, 1055, 167, 1, 221), (95, 'Costa Rica', 'Latin America', 1275, 1209, 853, 122, 1, 188), (96, 'Palestine', 'Middle East', 1019, 985, 809, 169, 1, 104), (97, 'Zimbabwe', 'Africa', 1001, 935, 894, 113, 1, 140), (98, 'Bahrain', 'Middle East', 992, 932, 659, 91, 1, 94), (99, 'Sudan', 'Africa', 988, 952, 597, 94, 1, 100), (100, 'Macedonia', 'Eastern Europe', 983, 934, 612, 67, 1, 121), (101, 'Malta', 'Western Europe', 966, 832, 967, 252, 1, 129), (102, 'Senegal ', 'Africa', 855, 803, 475, 66, 1, 129), (103, 'Malawi', 'Africa', 849, 797, 604, 113, 1, 147), (104, 'Panama', 'Latin America', 798, 735, 754, 122, 1, 208), (105, 'Puerto Rico', 'Latin America', 793, 744, 696, 42, 1, 228), (106, 'Myanmar', 'Asiatic Region', 768, 725, 431, 68, 1, 77), (107, 'Botswana', 'Africa', 735, 686, 421, 82, 1, 109), (108, 'Zambia', 'Africa', 684, 640, 623, 103, 1, 131), (109, 'Yemen', 'Middle East', 672, 654, 535, 136, 1, 78), (110, 'Burkina Faso', 'Africa', 617, 581, 386, 122, 1, 111), (111, 'Mongolia', 'Asiatic Region', 616, 586, 432, 73, 1, 100), (112, 'Benin', 'Africa', 601, 578, 383, 54, 1, 98), (113, 'Cote d\'Ivoire', 'Africa', 599, 581, 375, 60, 1, 119), (114, 'Brunei Darussalam', 'Asiatic Region', 573, 536, 394, 79, 1, 82), (115, 'Syrian Arab Republic', 'Middle East', 564, 546, 267, 69, 0, 113), (116, 'Montenegro', 'Eastern Europe', 559, 527, 364, 82, 1, 64), (117, 'Libya', 'Africa', 538, 520, 411, 48, 1, 76), (118, 'Mozambique', 'Africa', 537, 502, 421, 61, 1, 108), (119, 'Albania', 'Eastern Europe', 526, 490, 327, 42, 1, 72), (120, 'Rwanda', 'Africa', 525, 488, 339, 50, 1, 88), (121, 'Mauritius', 'Africa', 522, 486, 432, 92, 1, 81), (122, 'Cambodia', 'Asiatic Region', 520, 482, 422, 63, 1, 111), (123, 'Moldova', 'Eastern Europe', 509, 489, 353, 50, 1, 117), (124, 'Namibia', 'Africa', 457, 423, 332, 61, 1, 101), (125, 'Congo', 'Africa', 450, 420, 410, 69, 1, 109), (126, 'Trinidad and Tobago', 'Latin America', 449, 412, 190, 25, 0, 102), (127, 'Fiji', 'Pacific Region', 434, 397, 295, 45, 1, 92), (128, 'Jamaica', 'Latin America', 434, 390, 274, 17, 1, 106), (129, 'Bolivia', 'Latin America', 421, 375, 407, 63, 1, 128), (130, 'Kyrgyzstan', 'Asiatic Region', 405, 376, 339, 24, 1, 79), (131, 'Paraguay', 'Latin America', 402, 373, 320, 31, 1, 88), (132, 'Madagascar', 'Africa', 359, 338, 237, 47, 1, 98), (133, 'Mali', 'Africa', 342, 314, 314, 44, 1, 104), (134, 'Laos', 'Asiatic Region', 338, 317, 307, 51, 1, 88), (135, 'Afghanistan', 'Asiatic Region', 331, 315, 152, 13, 0, 60), (136, 'Guatemala', 'Latin America', 324, 302, 326, 31, 1, 96), (137, 'Dominican Republic', 'Latin America', 281, 263, 167, 12, 1, 71), (138, 'Papua New Guinea', 'Pacific Region', 280, 262, 157, 32, 1, 98), (139, 'Democratic Republic Congo', 'Africa', 269, 255, 157, 21, 1, 66), (140, 'Monaco', 'Western Europe', 242, 218, 544, 46, 2, 106), (141, 'Grenada', 'Latin America', 233, 209, 112, 8, 0, 52), (142, 'North Korea', 'Asiatic Region', 226, 220, 166, 43, 1, 32), (143, 'Tajikistan', 'Asiatic Region', 221, 219, 163, 21, 1, 46), (144, 'Gabon', 'Africa', 221, 199, 173, 13, 1, 106), (145, 'Honduras', 'Latin America', 217, 197, 212, 21, 1, 65), (146, 'Togo', 'Africa', 215, 211, 141, 25, 1, 55), (147, 'Niger', 'Africa', 203, 189, 147, 30, 1, 81), (148, 'Gambia', 'Africa', 192, 182, 237, 21, 1, 131), (149, 'New Caledonia', 'Pacific Region', 189, 183, 167, 20, 1, 107), (150, 'French Polynesia', 'Pacific Region', 177, 166, 129, 27, 1, 89), (151, 'Sierra Leone', 'Africa', 164, 150, 120, 19, 1, 57), (152, 'Swaziland', 'Africa', 162, 154, 119, 10, 1, 62), (153, 'Barbados', 'Latin America', 150, 127, 271, 15, 2, 90), (154, 'Angola', 'Africa', 147, 127, 141, 41, 1, 49), (155, 'Liechtenstein', 'Western Europe', 144, 127, 175, 13, 1, 83), (156, 'Bhutan', 'Asiatic Region', 143, 132, 69, 8, 0, 48), (157, 'Greenland', 'Western Europe', 140, 130, 148, 23, 1, 73), (158, 'Nicaragua', 'Latin America', 138, 123, 184, 4, 1, 85), (159, 'Guinea', 'Africa', 123, 115, 109, 8, 1, 63), (160, 'Haiti', 'Latin America', 118, 107, 71, 11, 1, 68), (161, 'Liberia', 'Africa', 116, 102, 147, 15, 1, 46), (162, 'Faroe Islands', 'Western Europe', 114, 110, 107, 18, 1, 63), (163, 'French Guiana', 'Latin America', 113, 98, 119, 18, 1, 78), (164, 'Saint Kitts and Nevis', 'Latin America', 108, 102, 43, 8, 0, 35), (165, 'El Salvador', 'Latin America', 104, 99, 60, 8, 1, 68), (166, 'Bahamas', 'Latin America', 89, 87, 62, 5, 1, 51), (167, 'Lesotho', 'Africa', 86, 80, 28, 8, 0, 40), (168, 'Burundi', 'Africa', 84, 80, 43, 7, 1, 45), (169, 'Mauritania', 'Africa', 79, 77, 10, 1, 0, 45), (170, 'Bermuda', 'Latin America', 68, 64, 75, 5, 1, 96), (171, 'Suriname', 'Latin America', 68, 61, 62, 4, 1, 43), (172, 'Guinea-Bissau', 'Africa', 64, 61, 62, 17, 1, 61), (173, 'Chad', 'Africa', 63, 61, 89, 9, 1, 45), (174, 'Somalia', 'Africa', 61, 60, 48, 1, 1, 23), (175, 'Guadeloupe', 'Latin America', 60, 56, 56, 3, 1, 69), (176, 'Seychelles', 'Africa', 57, 55, 86, 3, 2, 65), (177, 'Central African Republic', 'Africa', 57, 53, 15, 0, 0, 55), (178, 'Guyana', 'Latin America', 55, 49, 45, 3, 1, 45), (179, 'Martinique', 'Latin America', 55, 48, 39, 4, 1, 53), (180, 'Solomon Islands', 'Pacific Region', 54, 52, 75, 12, 1, 44), (181, 'Cape Verde', 'Africa', 53, 51, 44, 1, 1, 30), (182, 'Eritrea', 'Africa', 53, 52, 23, 2, 0, 46), (183, 'San Marino', 'Western Europe', 51, 40, 64, 4, 1, 36), (184, 'Belize', 'Latin America', 50, 42, 26, 0, 1, 55), (185, 'Reunion', 'Africa', 47, 40, 22, 0, 0, 54), (186, 'Guam', 'Pacific Region', 46, 43, 20, 1, 0, 69), (187, 'Vanuatu', 'Pacific Region', 45, 42, 25, 5, 1, 39), (188, 'Maldives', 'Asiatic Region', 45, 42, 24, 2, 1, 32), (189, 'Samoa', 'Pacific Region', 44, 39, 24, 8, 1, 37), (190, 'Timor-Leste', 'Asiatic Region', 41, 38, 21, 4, 1, 23), (191, 'Dominica', 'Latin America', 34, 30, 14, 0, 0, 36), (192, 'Andorra', 'Western Europe', 33, 30, 72, 2, 2, 28), (193, 'Falkland Islands (Malvinas)', 'Latin America', 33, 30, 17, 3, 1, 43), (194, 'Palau', 'Pacific Region', 28, 27, 46, 16, 2, 38), (195, 'Vatican City State', 'Western Europe', 27, 19, 19, 0, 1, 12), (196, 'Cayman Islands', 'Latin America', 23, 22, 19, 1, 1, 33), (197, 'Aruba', 'Latin America', 22, 18, 6, 1, 0, 18), (198, 'Tonga', 'Pacific Region', 21, 20, 40, 2, 2, 30), (199, 'Saint Vincent and the Grenadines', 'Latin America', 20, 20, 4, 0, 0, 21), (200, 'Djibouti', 'Africa', 20, 20, 11, 0, 1, 26), (201, 'Comoros', 'Africa', 19, 19, 21, 1, 1, 18), (202, 'Equatorial Guinea', 'Africa', 18, 18, 13, 4, 1, 28), (203, 'Antigua and Barbuda', 'Latin America', 18, 18, 8, 2, 0, 20), (204, 'Kiribati', 'Pacific Region', 17, 17, 8, 2, 0, 14), (205, 'Saint Lucia', 'Latin America', 14, 13, 3, 0, 0, 28), (206, 'Federated States of Micronesia', 'Pacific Region', 13, 13, 13, 1, 1, 47), (207, 'Turkmenistan', 'Asiatic Region', 13, 10, 9, 0, 1, 27), (208, 'Svalbard and Jan Mayen', 'Western Europe', 13, 13, 2, 0, 0, 12), (209, 'Virgin Islands (U.S.)', 'Latin America', 11, 10, 1, 0, 0, 36), (210, 'Sao Tome and Principe', 'Africa', 11, 11, 1, 0, 0, 21), (211, 'Anguilla', 'Latin America', 10, 10, 0, 0, 0, 28), (212, 'Marshall Islands', 'Pacific Region', 10, 8, 5, 1, 1, 24), (213, 'Cook Islands', 'Pacific Region', 10, 10, 7, 1, 1, 22), (214, 'Virgin Islands (British)', 'Latin America', 9, 8, 9, 0, 1, 30), (215, 'Mayotte', 'Africa', 8, 7, 7, 0, 1, 13), (216, 'American Samoa', 'Pacific Region', 7, 7, 4, 0, 1, 29), (217, 'Republic of South Sudan', 'Africa', 7, 3, 12, 0, 2, 11), (218, 'Gibraltar', 'Western Europe', 7, 6, 9, 0, 1, 33), (219, 'Northern Mariana Islands', 'Asiatic Region', 7, 6, 7, 0, 1, 19), (220, 'Montserrat', 'Latin America', 6, 5, 5, 0, 1, 33), (221, 'Netherlands Antilles', 'Latin America', 5, 5, 0, 0, 0, 56), (222, 'British Indian Ocean Territory', 'Africa', 5, 5, 0, 0, 0, 7), (223, 'Saint Helena', 'Africa', 4, 4, 0, 0, 0, 10), (224, 'Turks and Caicos Islands', 'Latin America', 3, 3, 3, 0, 1, 19), (225, 'Niue', 'Pacific Region', 3, 3, 0, 0, 0, 6), (226, 'Tuvalu', 'Pacific Region', 2, 2, 2, 0, 1, 10), (227, 'Nauru', 'Pacific Region', 2, 1, 1, 0, 1, 10), (228, 'Wallis and Futuna', 'Pacific Region', 2, 2, 2, 0, 1, 6), (229, 'South Georgia and the South Sandwich Islands', 'Latin America', 2, 2, 1, 0, 1, 4), (230, 'United States Minor Outlying Islands', 'Northern America', 1, 1, 0, 0, 0, 11), (231, 'Bouvet Island', 'Eastern Europe', 1, 1, 1, 0, 1, 2); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `filter_search` -- CREATE TABLE `filter_search` ( `idFilter_search` int(11) NOT NULL, `search_date` date NOT NULL, `search_time` time NOT NULL, `hindex_filter` int(11) NOT NULL, `references_filter` int(11) NOT NULL, `country_filter` varchar(45) NOT NULL, `category_filter` int(11) NOT NULL, `area_filter` int(11) NOT NULL, `quartile_filter` varchar(11) NOT NULL, `sjr_filter` float NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `filter_search` -- INSERT INTO `filter_search` (`idFilter_search`, `search_date`, `search_time`, `hindex_filter`, `references_filter`, `country_filter`, `category_filter`, `area_filter`, `quartile_filter`, `sjr_filter`) VALUES (11, '2021-05-14', '16:00:00', 730, 1000, '', 0, 0, '', 10), (12, '2021-05-15', '16:07:00', 100, 1000, '2', 4, 1, '', 0), (13, '2021-05-16', '16:09:00', 0, 0, '2', 83, 9, '', 0), (14, '2021-05-16', '16:09:00', 10, 1000, '11', 0, 0, '', 0), (15, '2021-05-16', '16:10:00', 0, 0, '46', 178, 18, '', 0), (16, '2021-05-19', '14:25:00', 0, 0, '46', 0, 6, '', 0), (17, '2021-05-21', '10:55:00', 50, 0, '', 54, 5, '', 0), (18, '2021-05-21', '10:55:00', 50, 1000, '', 0, 10, '', 10), (19, '2021-05-21', '11:05:00', 70, 1000, '', 0, 0, '', 10), (20, '2021-05-21', '11:09:00', 100, 2000, '', 0, 0, '', 10), (21, '2021-05-21', '11:14:00', 100, 2000, '', 0, 0, '', 10), (22, '2021-05-21', '12:10:00', 617, 1000, '', 0, 5, '', 10), (23, '2021-05-25', '11:19:00', 100, 566934, '', 0, 0, '', 10), (24, '2021-05-26', '10:35:00', 100, 1000, '', 103, 11, '', 0), (25, '2021-05-31', '17:47:00', 0, 175134, '', 0, 18, '', 0), (26, '2021-05-31', '17:53:00', 0, 0, '47', 0, 0, 'Q1', 0), (27, '2021-06-02', '11:11:00', 100, 1000, '', 27, 3, 'Q1', 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `journal` -- CREATE TABLE `journal` ( `idJournal` int(11) NOT NULL, `title` varchar(45) NOT NULL, `issn` int(11) NOT NULL, `sjr` float DEFAULT NULL, `best_quartile` varchar(45) DEFAULT NULL, `hindex` int(11) DEFAULT NULL, `total_docs` int(11) DEFAULT NULL, `total_references` int(11) DEFAULT NULL, `total_cites` int(11) DEFAULT NULL, `citable_docs` int(11) DEFAULT NULL, `country_idCountry` varchar(45) DEFAULT NULL, `coverage` varchar(100) DEFAULT NULL, `categories` varchar(200) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `journal` -- INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (1, 'Ca-A Cancer Journal for Clinicians', 15424863, 62.937, 'Q1', 168, 47, 3452, 15499, 80, '2', '1950-2020', 'Hematology (Q1); Oncology (Q1)'), (2, 'MMWR Recommendations and Reports', 10575987, 40.949, 'Q1', 143, 10, 1292, 492, 9, '2', '1990-2020', 'Epidemiology (Q1); Health Information Management (Q1); Health (social science) (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1)'), (3, 'Nature Reviews Molecular Cell Biology', 14710072, 37.461, 'Q1', 431, 115, 8439, 10844, 167, '3', '2000-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (4, 'Quarterly Journal of Economics', 335533, 34.573, 'Q1', 259, 40, 2733, 1945, 109, '3', '1886-2020', 'Economics and Econometrics (Q1)'), (5, 'Nature Reviews Materials', 20588437, 32.011, 'Q1', 108, 92, 10632, 11188, 138, '3', '2016-2020', 'Biomaterials (Q1); Electronic, Optical and Magnetic Materials (Q1); Energy (miscellaneous) (Q1); Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1)'), (6, 'National vital statistics reports : from the ', 15518922, 28.083, 'Q1', 100, 12, 211, 1225, 34, '2', '1998-2020', 'Life-span and Life-course Studies (Q1)'), (7, 'Cell', 928674, 26.304, 'Q1', 776, 572, 35345, 52644, 1563, '2', '1974-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (8, 'Nature Reviews Genetics', 14710056, 26.214, 'Q1', 365, 106, 7332, 6348, 149, '3', '2000-2020', 'Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)'), (9, 'Reviews of Modern Physics', 346861, 24.877, 'Q1', 363, 34, 9662, 10251, 120, '2', '1929-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (10, 'Journal of Political Economy', 223808, 21.034, 'Q1', 186, 104, 5807, 1773, 176, '2', '1969, 1973-1974, 1979-1985, 1987-2020', 'Economics and Econometrics (Q1)'), (11, 'Nature Reviews Immunology', 14741741, 20.529, 'Q1', 390, 230, 9421, 8200, 202, '3', '2001-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1)'), (12, 'Chemical Reviews', 15206890, 20.528, 'Q1', 700, 283, 115486, 41703, 703, '2', '1924-2020', 'Chemistry (miscellaneous) (Q1)'), (13, 'MMWR. Surveillance summaries : Morbidity and ', 15458636, 19.961, 'Q1', 100, 32, 499, 2235, 48, '2', '2002-2020', 'Epidemiology (Q1); Health Information Management (Q1); Health (social science) (Q1); Health, Toxicology and Mutagenesis (Q1)'), (14, 'New England Journal of Medicine', 284793, 19.889, 'Q1', 1030, 1671, 15715, 82469, 1842, '2', '1945-2020', 'Medicine (miscellaneous) (Q1)'), (15, 'Nature Energy', 20587546, 19.733, 'Q1', 129, 201, 5672, 15766, 384, '2', '2016-2020', 'Electronic, Optical and Magnetic Materials (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (16, 'Nature Reviews Cancer', 1474175, 19.575, 'Q1', 442, 85, 8894, 9077, 202, '3', '2001-2020', 'Cancer Research (Q1); Oncology (Q1)'), (17, 'Nature Medicine', 1546170, 19.536, 'Q1', 547, 452, 10601, 22548, 664, '3', '1995-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (18, 'Nature Methods', 15487091, 19.469, 'Q1', 318, 331, 6602, 16032, 649, '3', '2004-2020', 'Biochemistry (Q1); Biotechnology (Q1); Cell Biology (Q1); Molecular Biology (Q1)'), (19, 'Nature Genetics', 10614036, 18.861, 'Q1', 573, 189, 9059, 17158, 608, '3', '1992-2020', 'Genetics (Q1)'), (20, 'Academy of Management Annals', 19416520, 18.318, 'Q1', 73, 31, 7077, 1648, 75, '2', '2010-2020', 'Business and International Management (Q1); Organizational Behavior and Human Resource Management (Q1)'), (21, 'Annual Review of Immunology', 15453278, 18.301, 'Q1', 301, 30, 5413, 2105, 74, '2', '1983-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (22, 'Journal of Finance', 221082, 18.151, 'Q1', 299, 78, 4002, 1966, 203, '3', '1946-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (23, 'American Economic Review', 28282, 16.936, 'Q1', 297, 119, 6608, 4193, 489, '2', '1978-2020', 'Economics and Econometrics (Q1)'), (24, 'Annual Review of Biochemistry', 15454509, 16.921, 'Q1', 293, 32, 4637, 3358, 105, '2', '1946-1948, 1950-1960, 1962-2020', 'Biochemistry (Q1)'), (25, 'Econometrica', 129682, 16.7, 'Q1', 199, 85, 3849, 1407, 173, '3', '1974, 1977-1984, 1990-1991, 1994-2020', 'Economics and Econometrics (Q1)'), (26, 'Nature Reviews Chemistry', 23973358, 16.465, 'Q1', 50, 84, 7134, 4402, 121, '3', '2017-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)'), (27, 'Nature', 14764687, 15.993, 'Q1', 1226, 3189, 50004, 134891, 4049, '3', '1869-2020', 'Multidisciplinary (Q1)'), (28, 'Review of Economic Studies', 346527, 15.641, 'Q1', 141, 70, 4157, 1162, 182, '3', '1933-1974, 1976-2020', 'Economics and Econometrics (Q1)'), (29, 'Chemical Society Reviews', 3060012, 15.598, 'Q1', 513, 338, 64412, 40611, 882, '3', '1972-2020', 'Chemistry (miscellaneous) (Q1)'), (30, 'World Psychiatry', 17238617, 15.51, 'Q1', 93, 100, 3547, 3026, 62, '2', '2007-2020', 'Psychiatric Mental Health (Q1); Psychiatry and Mental Health (Q1)'), (31, 'Nature Biotechnology', 15461696, 15.358, 'Q1', 445, 366, 6475, 14636, 641, '3', '1989-2020', 'Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Molecular Medicine (Q1)'), (32, 'Administrative Science Quarterly', 18392, 15.098, 'Q1', 181, 44, 4213, 881, 74, '2', '1975-1987, 1989-1990, 1993-1994, 1996-2020', 'Arts and Humanities (miscellaneous) (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (33, 'Energy and Environmental Science', 17545692, 14.486, 'Q1', 343, 336, 31079, 29284, 804, '3', '2008-2020', 'Environmental Chemistry (Q1); Nuclear Energy and Engineering (Q1); Pollution (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (34, 'Nature Materials', 14764660, 14.344, 'Q1', 483, 262, 8148, 20189, 549, '3', '2002-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (35, 'Nature Catalysis', 25201158, 14.33, 'Q1', 65, 141, 6405, 7827, 265, '2', '2018-2020', 'Biochemistry (Q1); Bioengineering (Q1); Catalysis (Q1); Process Chemistry and Technology (Q1)'), (36, 'Nature Nanotechnology', 17483387, 14.308, 'Q1', 353, 192, 6844, 18266, 481, '3', '2006-2020', 'Atomic and Molecular Physics, and Optics (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscellan'), (37, 'Immunity', 10974180, 14.286, 'Q1', 395, 226, 14046, 13386, 711, '2', '1994-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Infectious Diseases (Q1)'), (38, 'Physiological Reviews', 15221210, 13.853, 'Q1', 342, 44, 18814, 4542, 129, '2', '1945-2020', 'Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Physiology (Q1); Physiology (medical) (Q1)'), (39, 'Nature Photonics', 17494885, 13.674, 'Q1', 331, 163, 4770, 14203, 354, '3', '2007-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (40, 'Lancet Oncology, The', 14702045, 13.53, 'Q1', 324, 491, 6955, 15824, 575, '3', '2000-2020', 'Oncology (Q1)'), (41, 'Nature Neuroscience', 10976256, 13.403, 'Q1', 422, 194, 9378, 12632, 658, '3', '1998-2020', 'Neuroscience (miscellaneous) (Q1)'), (42, 'Lancet, The', 1406736, 13.103, 'Q1', 762, 1488, 16580, 45581, 1227, '3', '1823-2020', 'Medicine (miscellaneous) (Q1)'), (43, 'Cancer Cell', 15356108, 13.035, 'Q1', 335, 193, 9114, 10411, 495, '2', '2002-2020', 'Cancer Research (Q1); Cell Biology (Q1); Oncology (Q1)'), (44, 'American Economic Journal: Applied Economics', 19457790, 12.996, 'Q1', 82, 29, 1482, 1005, 134, '2', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (45, 'Review of Financial Studies', 14657368, 12.8, 'Q1', 190, 120, 6948, 2565, 334, '3', '1996-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (46, 'Lancet Neurology, The', 14744465, 12.776, 'Q1', 291, 269, 5124, 8742, 259, '3', '2002-2020', 'Neurology (clinical) (Q1)'), (47, 'Molecular Cell', 10974164, 12.615, 'Q1', 395, 413, 24946, 17825, 1177, '2', '1997-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (48, 'Science', 10959203, 12.556, 'Q1', 1186, 2929, 41521, 116524, 4493, '2', '1880-1881, 1883-2020', 'History and Philosophy of Science (Q1); Multidisciplinary (Q1)'), (49, 'Joule', 25424351, 12.532, 'Q1', 84, 237, 10595, 14739, 512, '2', '2017-2020', 'Energy (miscellaneous) (Q1)'), (50, 'Nature Reviews Clinical Oncology', 17594782, 12.214, 'Q1', 155, 144, 7574, 8185, 277, '3', '2009-2020', 'Oncology (Q1)'), (51, 'Journal of Economic Literature', 220515, 11.771, 'Q1', 160, 21, 3698, 887, 89, '2', '1981, 1984, 1986, 1996-2020', 'Economics and Econometrics (Q1)'), (52, 'Annual Review of Plant Biology', 15452123, 11.695, 'Q1', 262, 29, 4986, 2059, 79, '2', '1996-2020', 'Cell Biology (Q1); Molecular Biology (Q1); Physiology (Q1); Plant Science (Q1)'), (53, 'Journal of Financial Economics', 304405, 11.673, 'Q1', 256, 154, 7975, 3129, 372, '16', '1974-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1); Strategy and Management (Q1)'), (54, 'Nature Reviews Neuroscience', 14710048, 11.585, 'Q1', 413, 156, 8018, 5687, 253, '3', '2000-2020', 'Neuroscience (miscellaneous) (Q1)'), (55, 'Living Reviews in Relativity', 14338351, 11.551, 'Q1', 91, 4, 1722, 1261, 20, '19', '1998-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (56, 'Nature Reviews Microbiology', 17401534, 11.496, 'Q1', 300, 169, 7828, 8929, 299, '3', '2003-2020', 'Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (Q1)'), (57, 'Nature Cell Biology', 14764679, 11.38, 'Q1', 369, 163, 7384, 8897, 474, '3', '1999-2020', 'Cell Biology (Q1)'), (58, 'Academy of Management Journal', 14273, 11.193, 'Q1', 318, 68, 6929, 2839, 260, '2', '1975-1987, 1989-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (59, 'Annual Review of Cell and Developmental Biolo', 15308995, 11.094, 'Q1', 220, 23, 3751, 1274, 77, '2', '1995-2019', 'Cell Biology (Q1); Developmental Biology (Q1)'), (60, 'Strategic Management Journal', 10970266, 11.035, 'Q1', 286, 120, 9598, 3648, 368, '3', '1980-2020', 'Business and International Management (Q1); Strategy and Management (Q1)'), (61, 'Annual Review of Genetics', 15452948, 10.88, 'Q1', 183, 24, 3613, 1117, 71, '2', '1970-2019', 'Genetics (Q1)'), (62, 'Astronomy and Astrophysics Review', 9354956, 10.857, 'Q1', 72, 7, 2701, 879, 19, '5', '1989-2000, 2002-2004, 2006-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (63, 'Psychological Bulletin', 332909, 10.737, 'Q1', 313, 33, 5265, 3042, 123, '2', '1904-2020', 'History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1)'), (64, 'Nature Reviews Disease Primers', 2056676, 10.718, 'Q1', 95, 101, 9555, 6999, 179, '3', '2015-2020', 'Medicine (miscellaneous) (Q1)'), (65, 'Advanced Materials', 9359648, 10.707, 'Q1', 527, 1509, 129070, 118321, 4161, '2', '1989-2020', 'Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Nanoscience and Nanotechnology (Q1)'), (66, 'Journal of Clinical Oncology', 15277755, 10.482, 'Q1', 548, 583, 17448, 23642, 1221, '2', '1983-2020', 'Cancer Research (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)'), (67, 'Annual Review of Physiology', 664278, 10.475, 'Q1', 207, 23, 3350, 1688, 71, '2', '1946-2020', 'Physiology (Q1)'), (68, 'American Economic Journal: Macroeconomics', 19457707, 10.443, 'Q1', 61, 30, 1328, 523, 104, '2', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (69, 'Annual Review of Psychology', 664308, 10.358, 'Q1', 243, 26, 3844, 1920, 76, '2', '1950-1958, 1960-1963, 1965-2020', 'Psychology (miscellaneous) (Q1)'), (70, 'Cell Metabolism', 15504131, 10.326, 'Q1', 266, 215, 12016, 12515, 661, '2', '2005-2020', 'Cell Biology (Q1); Molecular Biology (Q1); Physiology (Q1)'), (71, 'Journal of the American College of Cardiology', 15583597, 10.315, 'Q1', 431, 935, 22363, 23475, 1191, '2', '1983-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (72, 'Annual Review of Neuroscience', 147006, 10.219, 'Q1', 241, 24, 3557, 1228, 76, '2', '1978-2020', 'Neuroscience (miscellaneous) (Q1)'), (73, 'Nature Reviews Physics', 25225820, 10.12, 'Q1', 29, 115, 6032, 1953, 55, '3', '2019-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (74, 'Advanced Energy Materials', 16146832, 10.08, 'Q1', 220, 725, 63843, 52484, 1966, '5', '2011-2020', 'Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (75, 'Nature Chemistry', 17554330, 9.996, 'Q1', 232, 203, 7471, 9958, 525, '3', '2009-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)'), (76, 'Nature Reviews Drug Discovery', 14741784, 9.921, 'Q1', 328, 247, 7946, 8550, 314, '3', '2002-2020', 'Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1)'), (77, 'Annual Review of Organizational Psychology an', 23270608, 9.807, 'Q1', 48, 21, 2572, 1151, 57, '2', '2014-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Social Psychology (Q1)'), (78, 'European Urology', 3022838, 9.799, 'Q1', 216, 502, 7656, 10533, 538, '16', '1975-2020', 'Urology (Q1)'), (79, 'Personality and Social Psychology Review', 10888683, 9.757, 'Q1', 156, 15, 2460, 794, 44, '2', '1997-2020', 'Social Psychology (Q1)'), (80, 'Journal of Economic Perspectives', 8953309, 9.614, 'Q1', 196, 41, 2515, 1972, 138, '2', '1992-1994, 1996-2020', 'Economics and Econometrics (Q1)'), (81, 'Neuron', 10974199, 9.612, 'Q1', 473, 415, 25049, 18448, 1435, '2', '1988-2020', 'Neuroscience (miscellaneous) (Q1)'), (82, 'Nature Electronics', 25201131, 9.569, 'Q1', 47, 159, 4639, 4033, 172, '3', '2018-2020', 'Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Instrumentation (Q1)'), (83, 'Genome Research', 15495469, 9.556, 'Q1', 297, 159, 9436, 6386, 530, '2', '1991-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (84, 'Nature Structural and Molecular Biology', 15459993, 9.448, 'Q1', 270, 165, 7527, 4986, 441, '3', '1998, 2004-2020', 'Molecular Biology (Q1); Structural Biology (Q1)'), (85, 'Annual Review of Pathology: Mechanisms of Dis', 15534006, 9.417, 'Q1', 122, 20, 2953, 1260, 56, '2', '2006-2020', 'Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1); Plant Science (Q1)'), (86, 'Foundations and Trends in Finance', 15672409, 9.231, 'Q1', 21, 2, 186, 33, 3, '2', '2005-2015, 2017', 'Economics and Econometrics (Q1); Finance (Q1)'), (87, 'Clinical Microbiology Reviews', 8938512, 9.177, 'Q1', 282, 37, 10963, 2820, 103, '2', '1988-2020', 'Epidemiology (Q1); Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (88, 'Progress in Materials Science', 18732208, 9.172, 'Q1', 175, 55, 18579, 6060, 154, '3', '1961, 1963, 1968-1970, 1972-1974, 1976, 1978-1986, 1988-2021', 'Materials Science (miscellaneous) (Q1)'), (89, 'Nature Physics', 17452473, 9.157, 'Q1', 309, 305, 8232, 16763, 531, '3', '2005-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (90, 'Annual Review of Biophysics', 19361238, 9.144, 'Q1', 159, 15, 2037, 1212, 77, '2', '2008-2020', 'Biochemistry (Q1); Bioengineering (Q1); Biophysics (Q1); Cell Biology (Q1); Structural Biology (Q1)'), (91, 'Nature Immunology', 15292908, 9.074, 'Q1', 388, 249, 8257, 8095, 591, '3', '2000-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (92, 'Lancet Respiratory Medicine,The', 22132619, 9.03, 'Q1', 113, 330, 5300, 5271, 247, '3', '2013-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (93, 'Genome Biology', 14747596, 9.027, 'Q1', 248, 296, 19556, 9017, 699, '3', '2000-2020', 'Cell Biology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)'), (94, 'Nucleic Acids Research', 3051048, 9.008, 'Q1', 537, 1119, 64745, 60949, 3963, '3', '1974-2020', 'Genetics (Q1)'), (95, 'Review of Economics and Statistics', 346535, 8.999, 'Q1', 165, 62, 2927, 1321, 193, '2', '1978-2020', 'Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1)'), (96, 'Journal of Consumer Research', 935301, 8.916, 'Q1', 179, 45, 2621, 1537, 186, '3', '1977-1978, 1984, 1996-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (97, 'Cell Stem Cell', 19345909, 8.86, 'Q1', 248, 189, 9573, 7913, 545, '2', '2007-2020', 'Cell Biology (Q1); Genetics (Q1); Molecular Medicine (Q1)'), (98, 'NCHS data brief', 19414927, 8.856, 'Q1', 72, 39, 0, 1351, 81, '2', '2007-2020', 'Medicine (miscellaneous) (Q1)'), (99, 'JAMA Oncology', 23742445, 8.846, 'Q1', 99, 429, 5903, 11688, 633, '2', '2015-2020', 'Cancer Research (Q1); Oncology (Q1)'), (100, 'Science immunology', 24709468, 8.83, 'Q1', 51, 133, 5313, 3498, 298, '2', '2016-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (101, 'Nature Reviews Gastroenterology and Hepatolog', 17595045, 8.801, 'Q1', 133, 139, 8471, 6087, 247, '3', '2009-2020', 'Gastroenterology (Q1); Hepatology (Q1)'), (102, 'Trends in Cell Biology', 9628924, 8.705, 'Q1', 237, 90, 7459, 4318, 266, '3', '1991-2020', 'Cell Biology (Q1)'), (103, 'ACS Energy Letters', 23808195, 8.632, 'Q1', 105, 399, 20785, 22945, 1143, '2', '2016-2020', 'Chemistry (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Materials Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (104, 'Lancet Diabetes and Endocrinology,The', 22138595, 8.596, 'Q1', 114, 218, 4977, 5391, 220, '16', '2013-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (105, 'Journal of the American Mathematical Society', 10886834, 8.574, 'Q1', 111, 24, 1138, 741, 65, '2', '1988-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (106, 'Molecular Systems Biology', 17444292, 8.523, 'Q1', 148, 87, 6092, 1889, 156, '2', '2005-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Computational Theory and Mathematics (Q1); Immun'), (107, 'Journal of Experimental Medicine', 221007, 8.483, 'Q1', 448, 284, 16582, 8156, 657, '2', '1909-1910, 1929, 1945-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1)'), (108, 'Accounts of Chemical Research', 14842, 8.454, 'Q1', 395, 250, 16284, 20471, 967, '2', '1968-2020', 'Chemistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (109, 'Academy of Management Review', 3637425, 8.446, 'Q1', 270, 54, 5402, 1374, 123, '2', '1978-1987, 1989-1991, 1996-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (110, 'Gut', 14683288, 8.413, 'Q1', 293, 476, 15640, 12334, 595, '3', '1960-2020', 'Gastroenterology (Q1)'), (111, 'Materials Science and Engineering: R: Reports', 927796, 8.366, 'Q1', 146, 26, 11204, 1363, 40, '16', '1993-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (112, 'Annual Review of Condensed Matter Physics', 19475454, 8.316, 'Q1', 74, 23, 3185, 1773, 64, '2', '2010-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (113, 'Publications Mathematiques de l Institut des ', 16181913, 8.298, 'Q1', 50, 10, 505, 298, 26, '5', '1959-2000, 2005-2020', 'Mathematics (miscellaneous) (Q1)'), (114, 'Annual Review of Clinical Psychology', 15485951, 8.259, 'Q1', 117, 18, 2365, 1228, 62, '2', '2005-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (115, 'Journal of Labor Economics', 734306, 8.184, 'Q1', 109, 32, 1492, 576, 123, '2', '1985-1989, 1991, 1993, 1995-2020', 'Economics and Econometrics (Q1); Industrial Relations (Q1)'), (116, 'Pharmacological Reviews', 15210081, 8.176, 'Q1', 231, 26, 10316, 1524, 65, '2', '1949, 1951-2020', 'Molecular Medicine (Q1); Pharmacology (Q1)'), (117, 'Progress in Energy and Combustion Science', 3601285, 8.089, 'Q1', 183, 31, 8417, 3523, 97, '3', '1975-2021', 'Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1)'), (118, 'Reviews of Geophysics', 87551209, 8.087, 'Q1', 156, 26, 9315, 1971, 80, '2', '1963-2020', 'Geophysics (Q1)'), (119, 'Materials Today', 13697021, 8.071, 'Q1', 177, 156, 17229, 5938, 218, '16', '1999, 2002-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (120, 'Trends in Chemistry', 25895974, 8.037, 'Q1', 26, 115, 7522, 1399, 83, '2', '2019-2020', 'Chemistry (miscellaneous) (Q1)'), (121, 'Annals of Mathematics', 3486, 8.01, 'Q1', 138, 4, 202, 1256, 106, '2', '1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (122, 'Morbidity and Mortality Weekly Report', 1492195, 7.992, 'Q1', 208, 397, 2928, 9890, 686, '2', '1981-2020', 'Epidemiology (Q1); Health Information Management (Q1); Health (social science) (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1)'), (123, 'Cell Host and Microbe', 19313128, 7.985, 'Q1', 182, 214, 10281, 7552, 574, '2', '2007-2020', 'Cancer Research (Q1); Immunology and Microbiology (miscellaneous) (Q1); Microbiology (Q1); Molecular Biology (Q1); Parasitology (Q1); Virology (Q1)'), (124, 'Lancet Global Health,The', 2214109, 7.97, 'Q1', 88, 332, 4999, 6192, 299, '3', '2013-2020', 'Medicine (miscellaneous) (Q1)'), (125, 'Annals of Oncology', 15698041, 7.954, 'Q1', 242, 268, 8070, 14406, 882, '3', '1990-2020', 'Hematology (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)'), (126, 'Physical Review X', 21603308, 7.94, 'Q1', 164, 283, 19632, 17835, 729, '2', '2011-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (127, 'American Economic Journal: Economic Policy', 19457731, 7.868, 'Q1', 62, 26, 1391, 691, 128, '2', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (128, 'Gastroenterology', 15280012, 7.828, 'Q1', 402, 752, 20468, 16135, 943, '3', '1945-2020', 'Gastroenterology (Q1); Hepatology (Q1)'), (129, 'Annual Review of Microbiology', 664227, 7.817, 'Q1', 192, 40, 5265, 1474, 91, '2', '1948, 1950-1958, 1960, 1962-2020', 'Medicine (miscellaneous) (Q1); Microbiology (Q1)'), (130, 'Journal of Marketing', 15477185, 7.799, 'Q1', 243, 53, 3877, 1572, 146, '2', '1969, 1971, 1973, 1977, 1979-1981, 1996-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (131, 'Circulation', 97322, 7.795, 'Q1', 607, 778, 22242, 26532, 1702, '2', '1950-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q1)'), (132, 'Journal of the European Economic Association', 15424774, 7.792, 'Q1', 93, 81, 4462, 635, 134, '2', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (133, 'Fungal Diversity', 15602745, 7.743, 'Q1', 94, 24, 6920, 1153, 64, '16', '1998-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (134, 'Nature Reviews Endocrinology', 17595037, 7.653, 'Q1', 148, 155, 7772, 5527, 232, '3', '2009-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)'), (135, 'Cell Systems', 24054712, 7.638, 'Q1', 58, 113, 5684, 3230, 353, '2', '2015-2020', 'Cell Biology (Q1); Histology (Q1); Pathology and Forensic Medicine (Q1)'), (136, 'Journal of Statistical Software', 15487660, 7.636, 'Q1', 145, 71, 3610, 3031, 208, '2', '1996-2020', 'Software (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (137, 'JAMA Psychiatry', 21686238, 7.531, 'Q1', 365, 265, 6095, 6761, 402, '2', '2013-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (138, 'Reports on Progress in Physics', 13616633, 7.53, 'Q1', 230, 37, 8982, 6086, 212, '3', '1934-1942, 1944, 1947, 1949-2020', 'Medicine (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (139, 'Journal of Management', 1492063, 7.491, 'Q1', 224, 96, 9601, 4569, 316, '2', '1975-2020', 'Finance (Q1); Strategy and Management (Q1)'), (140, 'EMBO Journal', 2614189, 7.484, 'Q1', 392, 295, 18556, 7748, 681, '5', '1982-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Neuroscience (miscellaneous'), (141, 'Lancet Infectious Diseases, The', 14744457, 7.475, 'Q1', 235, 533, 7607, 9339, 512, '3', '2001-2020', 'Infectious Diseases (Q1)'), (142, 'Nature Protocols', 17542189, 7.471, 'Q1', 245, 169, 9834, 5904, 445, '3', '2006-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (143, 'Lancet Psychiatry,The', 22150374, 7.447, 'Q1', 86, 347, 5712, 4496, 224, '3', '2014-2020', 'Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)'), (144, 'Cell Research', 17487838, 7.395, 'Q1', 167, 157, 6460, 5123, 293, '3', '1996-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (145, 'Acta Crystallographica Section D: Structural ', 20597983, 7.374, 'Q1', 138, 126, 5719, 2176, 312, '2', '2016-2020', 'Structural Biology (Q1)'), (146, 'Manufacturing and Service Operations Manageme', 15265498, 7.372, 'Q1', 83, 75, 3957, 1083, 144, '2', '1999-2020', 'Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (147, 'Nature Microbiology', 20585276, 7.305, 'Q1', 79, 191, 8635, 7900, 512, '3', '2016-2020', 'Applied Microbiology and Biotechnology (Q1); Cell Biology (Q1); Genetics (Q1); Immunology (Q1); Microbiology (Q1); Microbiology (medical) (Q1)'), (148, 'Molecular Cancer', 14764598, 7.274, 'Q1', 126, 166, 13682, 12320, 478, '3', '2002-2020', 'Cancer Research (Q1); Molecular Medicine (Q1); Oncology (Q1)'), (149, 'Nature Reviews Neurology', 17594766, 7.271, 'Q1', 150, 134, 8180, 5075, 273, '3', '2009-2020', 'Cellular and Molecular Neuroscience (Q1); Neurology (clinical) (Q1)'), (150, 'Lancet Public Health, The', 24682667, 7.226, 'Q1', 45, 172, 2668, 2651, 134, '3', '2016-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (151, 'Progress in Retinal and Eye Research', 13509462, 7.198, 'Q1', 152, 62, 17085, 2610, 129, '3', '1990-1991, 1993-2020', 'Ophthalmology (Q1); Sensory Systems (Q1)'), (152, 'Acta Neuropathologica', 16322, 7.183, 'Q1', 170, 152, 8155, 5342, 330, '5', '1961-2020', 'Cellular and Molecular Neuroscience (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1)'), (153, 'Annual Review of Economics', 19411383, 7.162, 'Q1', 54, 31, 2977, 479, 79, '2', '2010-2019', 'Economics and Econometrics (Q1)'), (154, 'Progress in Particle and Nuclear Physics', 1466410, 7.159, 'Q1', 128, 41, 10661, 2579, 96, '16', '1978-2020', 'Nuclear and High Energy Physics (Q1)'), (155, 'Genes and Development', 15495477, 7.136, 'Q1', 438, 128, 8723, 4460, 464, '2', '1987-2020', 'Developmental Biology (Q1); Genetics (Q1)'), (156, 'Brookings Papers on Economic Activity', 72303, 7.134, 'Q1', 83, 0, 0, 311, 41, '2', '1990, 1992, 1996-2019', 'Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1)'), (157, 'Systematic Biology', 1076836, 7.128, 'Q1', 182, 80, 6529, 2800, 218, '3', '1952, 1968-1975, 1977-1978, 1980-1982, 1984, 1986, 1988-1989, 1991-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)'), (158, 'Journal of the American Chemical Society', 15205126, 7.115, 'Q1', 612, 2592, 148559, 113923, 7577, '2', '1879-2020', 'Biochemistry (Q1); Catalysis (Q1); Chemistry (miscellaneous) (Q1); Colloid and Surface Chemistry (Q1)'), (159, 'Journal of Hepatology', 16000641, 7.112, 'Q1', 243, 406, 13611, 12466, 651, '16', '1985-2020', 'Hepatology (Q1)'), (160, 'Journal of Business Venturing', 8839026, 7.107, 'Q1', 182, 71, 7642, 1777, 129, '2', '1985-2020', 'Business and International Management (Q1); Management of Technology and Innovation (Q1)'), (161, 'Chem', 24519294, 7.057, 'Q1', 78, 275, 13915, 9545, 596, '2', '2016-2020', 'Biochemistry (Q1); Biochemistry (medical) (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Materials Chemistry (Q1)'), (162, 'Psychological Methods', 1082989, 6.981, 'Q1', 151, 51, 1670, 1579, 144, '2', '1996-2020', 'History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1)'), (163, 'Organization Science', 15265455, 6.96, 'Q1', 238, 79, 7274, 1080, 192, '2', '1996-2020', 'Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (164, 'Physics Reports', 3701573, 6.914, 'Q1', 297, 53, 21274, 5960, 147, '16', '1971-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (165, 'Living Reviews in Solar Physics', 16144961, 6.861, 'Q1', 57, 5, 1288, 449, 14, '19', '2004-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (166, 'Trends in Cognitive Sciences', 1879307, 6.857, 'Q1', 313, 121, 8251, 4345, 292, '3', '1997-2020', 'Cognitive Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Neuropsychology and Physiological Psychology (Q1)'), (167, 'Ecology Letters', 1461023, 6.852, 'Q1', 265, 183, 13171, 4739, 103, '3', '1998-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (168, 'Immunological Reviews', 1052896, 6.839, 'Q1', 223, 96, 15570, 4124, 265, '3', '1969-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (169, 'Science Translational Medicine', 19466234, 6.819, 'Q1', 216, 422, 18880, 13433, 1113, '2', '2009-2020', 'Medicine (miscellaneous) (Q1)'), (170, 'Cancer Discovery', 21598274, 6.795, 'Q1', 163, 384, 6976, 9083, 836, '2', '2011-2020', 'Oncology (Q1)'), (171, 'Journal of Accounting Research', 1475679, 6.767, 'Q1', 141, 30, 1966, 522, 98, '3', '1996-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (172, 'Nature Climate Change', 17586798, 6.749, 'Q1', 189, 281, 9476, 9565, 407, '3', '2011-2020', 'Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (173, 'Alzheimer s and Dementia', 15525279, 6.713, 'Q1', 118, 182, 9488, 5971, 412, '2', '2005-2020', 'Cellular and Molecular Neuroscience (Q1); Developmental Neuroscience (Q1); Epidemiology (Q1); Geriatrics and Gerontology (Q1); Health Policy (Q1); Neurology (clinical) (Q1); Psychiatry and Mental Heal'), (174, 'American Journal of Human Genetics', 15376605, 6.661, 'Q1', 302, 168, 7980, 5815, 523, '2', '1950-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (175, 'Advances in Optics and Photonics', 19438206, 6.638, 'Q1', 68, 15, 2834, 922, 41, '2', '2009-2020', 'Atomic and Molecular Physics, and Optics (Q1); Water Science and Technology (Q1)'), (176, 'Molecular Biology and Evolution', 15371719, 6.637, 'Q1', 218, 280, 19098, 10983, 739, '3', '1983-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Molecular Biology (Q1)'), (177, 'Diabetes Care', 19355548, 6.636, 'Q1', 363, 563, 16551, 14089, 935, '2', '1978-2020', 'Advanced and Specialized Nursing (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (178, 'Journal of Accounting and Economics', 1654101, 6.607, 'Q1', 151, 45, 2877, 825, 129, '16', '1979-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (179, 'IEEE Communications Surveys and Tutorials', 1553877, 6.605, 'Q1', 197, 91, 18147, 15073, 360, '2', '2005-2020', 'Electrical and Electronic Engineering (Q1)'), (180, 'Journal of the Royal Statistical Society. Ser', 14679868, 6.523, 'Q1', 137, 50, 2429, 1400, 149, '3', '1997-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (181, 'Journal of Applied Psychology', 19391854, 6.522, 'Q1', 284, 122, 7648, 2517, 276, '2', '1917-2020', 'Applied Psychology (Q1)'), (182, 'Trends in Ecology and Evolution', 1695347, 6.476, 'Q1', 342, 144, 8124, 3932, 276, '3', '1986-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (183, 'Nature Chemical Biology', 15524469, 6.412, 'Q1', 216, 249, 8644, 6073, 519, '3', '2005-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (184, 'Microbiology and Molecular Biology Reviews', 10985557, 6.358, 'Q1', 247, 28, 5883, 946, 57, '2', '1997-2020', 'Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (Q1); Molecular Biology (Q1)'), (185, 'Endocrine Reviews', 19457189, 6.357, 'Q1', 272, 24, 4748, 2213, 122, '2', '1980-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)'), (186, 'Trends in Immunology', 14714906, 6.349, 'Q1', 226, 112, 8232, 3648, 286, '3', '1987-1990, 1993-1994, 2001-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (187, 'American Journal of Political Science', 925853, 6.347, 'Q1', 170, 106, 5906, 1309, 188, '3', '1982, 1986, 1996-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (188, 'Annals of the Rheumatic Diseases', 34967, 6.333, 'Q1', 240, 677, 11102, 10863, 718, '3', '1945-1948, 1950-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology (Q1); Immunology and Allergy (Q1); Rheumatology (Q1)'), (189, 'Journal of Marketing Research', 222437, 6.321, 'Q1', 171, 61, 3499, 1416, 183, '2', '1968, 1996-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (190, 'Trends in Biochemical Sciences', 13624326, 6.29, 'Q1', 272, 115, 8141, 3346, 286, '3', '1976-2020', 'Biochemistry (Q1); Molecular Biology (Q1)'), (191, 'Journal of Clinical Investigation', 219738, 6.278, 'Q1', 488, 611, 32961, 16569, 1418, '2', '1945-2020', 'Medicine (miscellaneous) (Q1)'), (192, 'American Sociological Review', 31224, 6.277, 'Q1', 194, 43, 3643, 1208, 128, '2', '1965-2020', 'Sociology and Political Science (Q1)'), (193, 'American Journal of Respiratory and Critical ', 1073449, 6.272, 'Q1', 374, 823, 17250, 12155, 854, '2', '1991, 1994-2020', 'Critical Care and Intensive Care Medicine (Q1); Pulmonary and Respiratory Medicine (Q1)'), (194, 'Cell Reports', 22111247, 6.264, 'Q1', 154, 1312, 84499, 34014, 3619, '2', '1970, 2012-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (195, 'Annual Review of Public Health', 1637525, 6.239, 'Q1', 144, 0, 0, 1903, 112, '2', '1980-2020', 'Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (196, 'Analytic Methods in Accident Research', 22136657, 6.221, 'Q1', 35, 27, 1782, 766, 57, '3', '2014-2020', 'Safety Research (Q1); Transportation (Q1)'), (197, 'Annual Review of Phytopathology', 664286, 6.195, 'Q1', 160, 17, 2348, 1216, 76, '2', '1973, 1981, 1987, 1989-2020', 'Medicine (miscellaneous) (Q1); Plant Science (Q1)'), (198, 'Studies in Mycology', 1660616, 6.18, 'Q1', 95, 15, 2353, 774, 49, '16', '1996, 1998-2000, 2002-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Plant Science (Q1)'), (199, 'JACC: Heart Failure', 22131787, 6.123, 'Q1', 67, 184, 2888, 2708, 262, '16', '2013-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (200, 'JAMA Cardiology', 23806583, 6.108, 'Q1', 63, 349, 4752, 4608, 486, '2', '2016-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (201, 'Light: Science and Applications', 20477538, 6.104, 'Q1', 96, 193, 9846, 6314, 312, '3', '2012-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (202, 'Personnel Psychology', 315826, 6.076, 'Q1', 142, 44, 4797, 538, 62, '2', '1948-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)'), (203, 'Advanced Functional Materials', 1616301, 6.069, 'Q1', 322, 1835, 144828, 63213, 3590, '5', '2000-2020', 'Biomaterials (Q1); Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Electrochemistry (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Science (miscellaneous) (Q1); Nanosc'), (204, 'Annual Review of Medicine', 1545326, 6.03, 'Q1', 160, 26, 2025, 1370, 102, '2', '1950-1958, 1960-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (205, 'Cold Spring Harbor perspectives in biology', 19430264, 6.011, 'Q1', 173, 82, 11209, 3419, 315, '2', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (206, 'Review of Educational Research', 346543, 5.969, 'Q1', 153, 25, 2682, 1163, 77, '2', '1931-2020', 'Education (Q1)'), (207, 'Nature Biomedical Engineering', 2157846, 5.961, 'Q1', 56, 162, 5898, 5173, 322, '2', '2017-2020', 'Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Computer Science Applications (Q1); Medicine (miscellaneous) (Q1)'), (208, 'Progress in Polymer Science', 796700, 5.952, 'Q1', 279, 55, 11966, 4645, 169, '3', '1967, 1970-1971, 1975, 1977-1978, 1980-1986, 1988-2020', 'Ceramics and Composites (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1); Surfaces and Interfaces (Q1)'), (209, 'Journal of Extracellular Vesicles', 20013078, 5.94, 'Q1', 68, 120, 7755, 3212, 151, '20', '2012-2020', 'Cell Biology (Q1); Histology (Q1)'), (210, 'Marketing Science', 7322399, 5.938, 'Q1', 127, 61, 2631, 779, 153, '2', '1996-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (211, 'Science advances', 23752548, 5.928, 'Q1', 146, 2130, 107854, 46429, 2868, '2', '2015-2020', 'Multidisciplinary (Q1)'), (212, 'FEMS Microbiology Reviews', 1686445, 5.91, 'Q1', 212, 35, 7135, 2665, 152, '3', '1985-2020', 'Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1)'), (213, 'Organizational Research Methods', 15527425, 5.901, 'Q1', 111, 59, 4551, 1036, 97, '2', '1998-2020', 'Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (214, 'Annual Review of Marine Science', 19410611, 5.879, 'Q1', 97, 23, 3308, 1028, 60, '2', '2009-2020', 'Oceanography (Q1)'), (215, 'eLife', 2050084, 5.879, 'Q1', 139, 2054, 141957, 34170, 4331, '3', '2012-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)'), (216, 'American Political Science Review', 15375943, 5.878, 'Q1', 175, 78, 4608, 1350, 214, '3', '1906-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (217, 'Annals of Statistics', 905364, 5.877, 'Q1', 178, 131, 5499, 2646, 336, '2', '1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (218, 'Educational Psychologist', 15326985, 5.856, 'Q1', 126, 26, 1942, 627, 51, '2', '1963-2020', 'Developmental and Educational Psychology (Q1)'), (219, 'Journal of Human Resources', 15488004, 5.855, 'Q1', 106, 52, 2754, 391, 96, '2', '1976-1982, 1990, 1992-2020', 'Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (220, 'Angewandte Chemie - International Edition', 14337851, 5.831, 'Q1', 550, 3426, 214391, 114803, 8436, '3', '1962-2020', 'Catalysis (Q1); Chemistry (miscellaneous) (Q1)'), (221, 'Nature Ecology and Evolution', 2397334, 5.822, 'Q1', 57, 273, 11720, 8497, 679, '2', '2016-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (222, 'Journal of the National Cancer Institute', 14602105, 5.797, 'Q1', 356, 181, 5236, 5228, 459, '3', '1940-2020', 'Cancer Research (Q1); Oncology (Q1)'), (223, 'JACC: Cardiovascular Imaging', 1936878, 5.79, 'Q1', 120, 481, 9756, 4889, 422, '2', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (224, 'Nano Energy', 22112855, 5.764, 'Q1', 171, 1071, 62430, 44164, 2546, '16', '2012-2020', 'Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (225, 'Trends in Genetics', 1689525, 5.713, 'Q1', 223, 126, 8268, 2607, 261, '3', '1985-2020', 'Genetics (Q1)'), (226, 'Accounting Review', 14826, 5.678, 'Q1', 156, 74, 4402, 1296, 241, '2', '1996-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (227, 'Annual Review of Genomics and Human Genetics', 15278204, 5.677, 'Q1', 117, 25, 3052, 575, 59, '2', '2000-2020', 'Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)'), (228, 'Clinical Psychology Review', 18737811, 5.632, 'Q1', 209, 85, 9714, 2976, 213, '2', '1981-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (229, 'Science Robotics', 24709476, 5.619, 'Q1', 50, 83, 3048, 3969, 198, '2', '2016-2020', 'Artificial Intelligence (Q1); Computer Science Applications (Q1); Control and Optimization (Q1); Mechanical Engineering (Q1)'), (230, 'Nature Reviews Nephrology', 1759507, 5.606, 'Q1', 111, 139, 7143, 3623, 235, '3', '2009-2020', 'Nephrology (Q1)'), (231, 'Annual Review of Virology', 23270578, 5.605, 'Q1', 42, 30, 3604, 791, 79, '2', '2014-2020', 'Virology (Q1)'), (232, 'Nano Today', 17480132, 5.586, 'Q1', 143, 128, 15010, 2971, 154, '16', '1970, 2006-2020', 'Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1); Pharmaceutical Science'), (233, 'Molecular Neurodegeneration', 17501326, 5.565, 'Q1', 83, 64, 6059, 2523, 206, '3', '2006-2020', 'Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Neurology (clinical) (Q1)'), (234, 'Genome Medicine', 1756994, 5.564, 'Q1', 89, 109, 7264, 2818, 255, '3', '2009-2020', 'Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)'), (235, 'Nature Communications', 20411723, 5.559, 'Q1', 365, 6169, 336574, 216850, 14936, '3', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (236, 'ACS Nano', 1936086, 5.554, 'Q1', 382, 1583, 90107, 62947, 3958, '2', '2007-2020', 'Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (237, 'Annual Review of Entomology', 664170, 5.551, 'Q1', 198, 24, 3318, 1273, 76, '2', '1961-1963, 1966-1967, 1969-1979, 1981-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)'), (238, 'Inventiones Mathematicae', 209910, 5.536, 'Q1', 125, 82, 3374, 1592, 223, '5', '1966-2020', 'Mathematics (miscellaneous) (Q1)'), (239, 'Blood', 15280020, 5.515, 'Q1', 465, 853, 26498, 22558, 2041, '2', '1946-2020', 'Biochemistry (Q1); Cell Biology (Q1); Hematology (Q1); Immunology (Q1)'), (240, 'International Organization', 15315088, 5.513, 'Q1', 145, 43, 3334, 618, 98, '3', '1947-2020', 'Law (Q1); Organizational Behavior and Human Resource Management (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (241, 'Journal of the Academy of Marketing Science', 920703, 5.512, 'Q1', 170, 72, 6303, 2134, 154, '2', '1973-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (242, 'Nature Reviews Cardiology', 17595010, 5.495, 'Q1', 130, 175, 8971, 3856, 268, '3', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (243, 'Hepatology', 2709139, 5.488, 'Q1', 361, 501, 14907, 14033, 1062, '2', '1981-2020', 'Hepatology (Q1); Medicine (miscellaneous) (Q1)'), (244, 'Lancet HIV,The', 23523018, 5.483, 'Q1', 54, 187, 3742, 2126, 187, '3', '2014-2020', 'Epidemiology (Q1); Immunology (Q1); Infectious Diseases (Q1); Virology (Q1)'), (245, 'American Journal of Psychiatry', 2953, 5.477, 'Q1', 353, 207, 5855, 4459, 357, '2', '1945-2020', 'Psychiatry and Mental Health (Q1)'), (246, 'Journal of Financial Intermediation', 10960473, 5.445, 'Q1', 77, 48, 2092, 436, 83, '2', '1990-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (247, 'Nature Geoscience', 17520908, 5.435, 'Q1', 200, 164, 7453, 6661, 507, '3', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (248, 'Clinical Cancer Research', 10780432, 5.427, 'Q1', 324, 694, 26002, 24012, 2181, '2', '1995-2020', 'Cancer Research (Q1); Oncology (Q1)'), (249, 'Journal of Cell Biology', 15408140, 5.414, 'Q1', 380, 296, 17326, 7772, 929, '2', '1961-2020', 'Cell Biology (Q1); Medicine (miscellaneous) (Q1)'), (250, 'Advanced Science', 21983844, 5.388, 'Q1', 100, 709, 50538, 18493, 1110, '5', '2014-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Chemical Engineering (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscel'), (251, 'Nature Plants', 2055026, 5.38, 'Q1', 71, 235, 8508, 4789, 386, '3', '2010, 2015-2020', 'Plant Science (Q1)'), (252, 'Entrepreneurship Theory and Practice', 10422587, 5.365, 'Q1', 155, 96, 9601, 1911, 117, '2', '2004-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1)'), (253, 'Lancet Haematology,The', 23523026, 5.343, 'Q1', 54, 206, 3676, 1917, 150, '3', '2014-2020', 'Hematology (Q1)'), (254, 'American Economic Journal: Microeconomics', 19457669, 5.339, 'Q1', 40, 24, 1041, 298, 126, '2', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (255, 'Biological Psychiatry', 63223, 5.335, 'Q1', 319, 294, 14850, 6464, 528, '2', '1969-2020', 'Biological Psychiatry (Q1)'), (256, 'Plant Cell', 1532298, 5.324, 'Q1', 341, 333, 16240, 5787, 546, '2', '1989-2020', 'Cell Biology (Q1); Plant Science (Q1)'), (257, 'JAMA Neurology', 21686157, 5.298, 'Q1', 231, 264, 5245, 5625, 494, '2', '2013-2020', 'Neurology (clinical) (Q1)'), (258, 'Microbiome', 20492618, 5.297, 'Q1', 78, 162, 10793, 7887, 526, '3', '2013-2020', 'Microbiology (Q1); Microbiology (medical) (Q1)'), (259, 'Developmental Cell', 15345807, 5.284, 'Q1', 264, 298, 17082, 7055, 896, '2', '2001-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Cell Biology (Q1); Developmental Biology (Q1); Molecular Biology (Q1)'), (260, 'MIS Quarterly: Management Information Systems', 2767783, 5.283, 'Q1', 230, 64, 5921, 2117, 184, '2', '1980-2020', 'Computer Science Applications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)'), (261, 'Perspectives on Psychological Science', 17456916, 5.234, 'Q1', 140, 89, 9708, 2547, 233, '2', '2006-2020', 'Psychology (miscellaneous) (Q1)'), (262, 'Energy Storage Materials', 24058297, 5.225, 'Q1', 76, 517, 40004, 11925, 720, '16', '2015-2020', 'Energy Engineering and Power Technology (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (263, 'Wiley interdisciplinary reviews. RNA', 17577012, 5.225, 'Q1', 71, 45, 7773, 1399, 151, '2', '2010-2020', 'Biochemistry (Q1); Molecular Biology (Q1)'), (264, 'Advances in Physics', 14606976, 5.207, 'Q1', 116, 2, 1719, 256, 13, '3', '1952-2019', 'Condensed Matter Physics (Q1)'), (265, 'Coordination Chemistry Reviews', 108545, 5.166, 'Q1', 276, 270, 49022, 13782, 723, '16', '1966-2021', 'Inorganic Chemistry (Q1); Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1)'), (266, 'European Journal of Heart Failure', 13889842, 5.149, 'Q1', 133, 397, 12087, 5341, 445, '2', '1999-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (267, 'Brain', 14602156, 5.142, 'Q1', 336, 385, 17258, 9044, 800, '3', '1878-1915, 1917-2020', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1)'), (268, 'JAMA Internal Medicine', 21686114, 5.14, 'Q1', 342, 512, 7032, 7148, 610, '2', '2013-2020', 'Internal Medicine (Q1)'), (269, 'Current Opinion in Cell Biology', 9550674, 5.128, 'Q1', 261, 115, 7587, 2607, 303, '3', '1989-2021', 'Cell Biology (Q1)'), (270, 'Wiley Interdisciplinary Reviews: Computationa', 17590876, 5.126, 'Q1', 81, 54, 8464, 2213, 107, '2', '2011-2020', 'Biochemistry (Q1); Computational Mathematics (Q1); Computer Science Applications (Q1); Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1)'), (271, 'Applied Physics Reviews', 19319401, 5.084, 'Q1', 66, 86, 13597, 3458, 159, '2', '2014-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (272, 'Optica', 23342536, 5.074, 'Q1', 107, 260, 11343, 10361, 612, '2', '2014-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (273, 'Molecular Psychiatry', 14765578, 5.071, 'Q1', 213, 503, 31080, 6933, 599, '3', '1996-2020', 'Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Psychiatry and Mental Health (Q1)'), (274, 'Journal of Business and Economic Statistics', 7350015, 5.062, 'Q1', 103, 142, 5733, 906, 163, '3', '1983-2020', 'Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (275, 'Strategic Entrepreneurship Journal', 19324391, 5.061, 'Q1', 46, 50, 4706, 673, 69, '2', '2011-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Strategy and Management (Q1)'), (276, 'Journal for ImmunoTherapy of Cancer', 20511426, 5.06, 'Q1', 61, 519, 19214, 6888, 573, '3', '2013-2020', 'Cancer Research (Q1); Immunology (Q1); Immunology and Allergy (Q1); Molecular Medicine (Q1); Oncology (Q1); Pharmacology (Q1)'), (277, 'Ophthalmology', 15494713, 5.028, 'Q1', 244, 462, 8075, 6231, 635, '2', '1958, 1978-2020', 'Ophthalmology (Q1)'), (278, 'Proceedings of the National Academy of Scienc', 10916490, 5.011, 'Q1', 771, 4191, 202921, 113782, 10217, '2', '1945-1951, 1961-2020', 'Multidisciplinary (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (279, 'Biological Reviews', 1469185, 4.993, 'Q1', 165, 88, 21550, 3897, 319, '2', '1924-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (280, 'Leadership Quarterly', 10489843, 4.989, 'Q1', 151, 78, 9416, 1576, 142, '2', '1990-2020', 'Applied Psychology (Q1); Business and International Management (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)'), (281, 'Journal of Monetary Economics', 3043932, 4.988, 'Q1', 130, 107, 3821, 819, 198, '16', '1975-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (282, 'Human Reproduction Update', 14602369, 4.977, 'Q1', 180, 51, 6601, 1834, 113, '3', '1995-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)'), (283, 'Cancer Immunology Research', 23266066, 4.976, 'Q1', 87, 145, 6331, 4663, 453, '2', '2013-2020', 'Cancer Research (Q1); Immunology (Q1)'), (284, 'Journal of the American Statistical Associati', 1621459, 4.976, 'Q1', 196, 309, 12956, 3508, 409, '3', '1922-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (285, 'International Review of Sport and Exercise Ps', 1750984, 4.975, 'Q1', 38, 37, 3776, 614, 33, '3', '2009-2020', 'Applied Psychology (Q1); Sports Science (Q1)'), (286, 'Annual Review of Pharmacology and Toxicology', 15454304, 4.968, 'Q1', 204, 33, 4408, 1233, 90, '2', '1965-1973, 1975-2020', 'Pharmacology (Q1); Toxicology (Q1)'), (287, 'Management Science', 251909, 4.954, 'Q1', 255, 300, 15009, 4897, 856, '2', '1969-2020', 'Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (288, 'Review of Finance', 1573692, 4.933, 'Q1', 61, 36, 1976, 711, 152, '3', '2001-2002, 2004-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (289, 'EMBO Molecular Medicine', 17574676, 4.923, 'Q1', 107, 145, 9161, 3156, 296, '3', '2009-2020', 'Molecular Medicine (Q1)'), (290, 'Circulation Research', 97330, 4.899, 'Q1', 336, 352, 19861, 10880, 933, '2', '1953-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (Q1)'), (291, 'ACS Catalysis', 21555435, 4.898, 'Q1', 198, 1410, 99268, 44419, 3376, '2', '2011-2020', 'Catalysis (Q1); Chemistry (miscellaneous) (Q1)'), (292, 'Lancet Gastroenterology and Hepatology, The', 24681253, 4.897, 'Q1', 49, 234, 4263, 3209, 240, '3', '2016-2020', 'Gastroenterology (Q1); Hepatology (Q1)'), (293, 'Nature Machine Intelligence', 25225839, 4.894, 'Q1', 16, 65, 2720, 949, 25, '19', '2019-2020', 'Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Vision and Pattern Recognition (Q1); Human-Computer Interaction (Q1); Software (Q1)'), (294, 'ACS Central Science', 23747951, 4.893, 'Q1', 76, 275, 13496, 7688, 640, '2', '2015-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)'), (295, 'Nano Letters', 15306992, 4.853, 'Q1', 488, 1172, 51759, 42578, 3368, '2', '2001-2020', 'Bioengineering (Q1); Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Nanoscience and Nanotechnology (Q1)'), (296, 'PLoS Medicine', 15491277, 4.847, 'Q1', 228, 335, 14324, 7192, 700, '2', '2004-2020', 'Biochemistry (Q1); Biotechnology (Q1); Cell Biology (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)'), (297, 'Nature Metabolism', 25225812, 4.834, 'Q1', 22, 152, 7202, 1092, 90, '5', '2019-2020', 'Cell Biology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Physiology (medical) (Q1)'), (298, 'Journal of International Business Studies', 472506, 4.819, 'Q1', 195, 96, 9694, 2151, 189, '3', '1996-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Strategy and Manage'), (299, 'Seminars in Immunopathology', 18632297, 4.778, 'Q1', 94, 52, 6436, 2313, 160, '5', '2007-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (300, 'Annals of Neurology', 15318249, 4.764, 'Q1', 296, 262, 8265, 5320, 538, '2', '1977-2020', 'Neurology (Q1); Neurology (clinical) (Q1)'), (301, 'Annual Review of Physical Chemistry', 66426, 4.72, 'Q1', 171, 20, 2591, 806, 63, '2', '1975, 1983, 1985, 1988-2020', 'Physical and Theoretical Chemistry (Q1)'), (302, 'Trends in Neurosciences', 3785912, 4.715, 'Q1', 289, 100, 8022, 2602, 274, '3', '1978-2020', 'Neuroscience (miscellaneous) (Q1)'), (303, 'JAMA - Journal of the American Medical Associ', 15383598, 4.688, 'Q1', 680, 1793, 14369, 30016, 2627, '2', '1883-2020', 'Medicine (miscellaneous) (Q1)'), (304, 'Psychological Review', 19391471, 4.688, 'Q1', 211, 49, 4014, 996, 115, '2', '1894-2020', 'History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1)'), (305, 'Economic Journal', 14680297, 4.683, 'Q1', 160, 68, 3386, 1278, 357, '2', '1973, 1979-1986, 1988-2020', 'Economics and Econometrics (Q1)'), (306, 'SIAM Review', 10957200, 4.683, 'Q1', 120, 40, 2396, 2097, 75, '2', '1969-1972, 1974-1978, 1983-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Theoretical Computer Science (Q1)'), (307, 'Applied Catalysis B: Environmental', 18733883, 4.672, 'Q1', 248, 1069, 61815, 58547, 3147, '16', '1992-2021', 'Catalysis (Q1); Environmental Science (miscellaneous) (Q1); Process Chemistry and Technology (Q1)'), (308, 'Small Methods', 23669608, 4.66, 'Q1', 46, 222, 23756, 4547, 340, '3', '2017-2020', 'Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (309, 'Global Environmental Change', 9593780, 4.659, 'Q1', 177, 131, 10718, 4649, 351, '3', '1990-2020', 'Ecology (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)'), (310, 'Journal of Financial and Quantitative Analysi', 221090, 4.657, 'Q1', 121, 152, 7994, 1218, 253, '3', '1966-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (311, 'Critical Reviews in Biochemistry and Molecula', 10409238, 4.634, 'Q1', 107, 31, 6393, 890, 97, '3', '1972-2020', 'Biochemistry (Q1); Molecular Biology (Q1)'), (312, 'Cement and Concrete Research', 88846, 4.628, 'Q1', 215, 244, 14892, 7459, 637, '3', '1971-2020', 'Building and Construction (Q1); Materials Science (miscellaneous) (Q1)'), (313, 'Foundations and Trends in Signal Processing', 19328346, 4.611, 'Q1', 18, 2, 253, 292, 8, '2', '2007-2014, 2016-2019', 'Signal Processing (Q1)'), (314, 'Journal of Economic Growth', 15737020, 4.596, 'Q1', 85, 12, 986, 147, 38, '2', '1996-2020', 'Economics and Econometrics (Q1)'), (315, 'Molecular Plant', 16742052, 4.588, 'Q1', 115, 153, 8872, 4792, 380, '2', '2008-2020', 'Molecular Biology (Q1); Plant Science (Q1)'), (316, 'Trends in Plant Science', 13601385, 4.587, 'Q1', 263, 162, 9428, 4844, 377, '3', '1996-2020', 'Plant Science (Q1)'), (317, 'Journal of Differential Geometry', 22040, 4.586, 'Q1', 82, 31, 1084, 595, 123, '2', '1967-2020', 'Algebra and Number Theory (Q1); Analysis (Q1); Geometry and Topology (Q1)'), (318, 'EMBO Reports', 14693178, 4.584, 'Q1', 184, 342, 15968, 4061, 489, '2', '2000-2020', 'Biochemistry (Q1); Genetics (Q1); Molecular Biology (Q1)'), (319, 'Economic Policy', 2664658, 4.579, 'Q1', 75, 6, 180, 207, 38, '3', '1988-2019', 'Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)'), (320, 'Journal of Thoracic Oncology', 15561380, 4.539, 'Q1', 133, 316, 6973, 6688, 581, '2', '2006-2020', 'Medicine (miscellaneous) (Q1); Oncology (Q1); Pulmonary and Respiratory Medicine (Q1)'), (321, 'Leukemia', 8876924, 4.539, 'Q1', 192, 459, 15493, 8062, 787, '3', '1987-2020', 'Anesthesiology and Pain Medicine (Q1); Cancer Research (Q1); Hematology (Q1); Oncology (Q1)'), (322, 'Journal of Occupational Health Psychology', 19391307, 4.532, 'Q1', 119, 26, 1945, 1475, 135, '2', '1996-2020', 'Applied Psychology (Q1); Public Health, Environmental and Occupational Health (Q1)'), (323, 'Nature Sustainability', 23989629, 4.514, 'Q1', 37, 177, 7330, 3714, 239, '3', '2018-2020', 'Ecology (Q1); Food Science (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Renewa'), (324, 'Persoonia: Molecular Phylogeny and Evolution ', 315850, 4.508, 'Q1', 58, 21, 1974, 599, 61, '16', '1996-2000, 2002-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (325, 'Trends in Microbiology', 18784380, 4.491, 'Q1', 194, 135, 8738, 3925, 342, '3', '1993-2020', 'Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1); Virology (Q1)'), (326, 'Annual Review of Criminology', 25724568, 4.483, 'Q1', 16, 16, 1895, 400, 45, '2', '2018-2020', 'Law (Q1)'), (327, 'International Journal of Management Reviews', 14608545, 4.475, 'Q1', 107, 22, 3597, 1344, 94, '3', '1999-2002, 2004-2020', 'Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (328, 'Journal of Personality and Social Psychology', 223514, 4.455, 'Q1', 369, 171, 8583, 2589, 339, '2', '1965-2020', 'Social Psychology (Q1); Sociology and Political Science (Q1)'), (329, 'Journal of the American Society of Nephrology', 15333450, 4.451, 'Q1', 279, 294, 11024, 7001, 788, '2', '1990-2020', 'Medicine (miscellaneous) (Q1); Nephrology (Q1)'), (330, 'Organization Studies', 17413044, 4.441, 'Q1', 148, 102, 7894, 1457, 234, '3', '1980-2020', 'Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (331, 'Journal of Service Research', 10946705, 4.434, 'Q1', 122, 51, 3938, 1077, 84, '2', '1998-2020', 'Information Systems (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)'), (332, 'Journal of Consumer Psychology', 15327663, 4.433, 'Q1', 110, 72, 4203, 637, 144, '2', '1992-2020', 'Applied Psychology (Q1); Marketing (Q1)'), (333, 'ISME Journal', 17517362, 4.422, 'Q1', 173, 265, 17505, 8171, 743, '3', '2007-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Microbiology (Q1)'), (334, 'Review of Accounting Studies', 15737136, 4.418, 'Q1', 74, 42, 2196, 589, 135, '2', '1996-2020', 'Accounting (Q1); Business, Management and Accounting (miscellaneous) (Q1)'), (335, 'Theoretical Economics', 15557561, 4.404, 'Q1', 32, 45, 1817, 263, 125, '2', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (336, 'Journal of Management Studies', 222380, 4.398, 'Q1', 184, 95, 7792, 1265, 147, '3', '1964-2020', 'Business and International Management (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (337, 'Matrix Biology', 15691802, 4.368, 'Q1', 117, 68, 6034, 3059, 284, '16', '1994-2020', 'Molecular Biology (Q1)'), (338, 'Journal of the Association of Environmental a', 23335963, 4.367, 'Q1', 22, 6, 335, 488, 95, '2', '2015-2020', 'Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (339, 'Review of Asset Pricing Studies', 20459920, 4.356, 'Q1', 19, 30, 1280, 56, 23, '2', '2011-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (340, 'European Heart Journal', 15229645, 4.336, 'Q1', 293, 1008, 16028, 14482, 1859, '3', '1980-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (341, 'British Journal of Sports Medicine', 3063674, 4.329, 'Q1', 171, 394, 11234, 7715, 668, '3', '1964, 1974-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (342, 'Materials Horizons', 20516347, 4.322, 'Q1', 81, 285, 21679, 5731, 422, '3', '2014-2020', 'Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1); Process Chemistry and Technology (Q1)'), (343, 'Journal of Hematology and Oncology', 17568722, 4.305, 'Q1', 84, 165, 14290, 5870, 440, '3', '2008-2020', 'Cancer Research (Q1); Hematology (Q1); Molecular Biology (Q1); Oncology (Q1)'), (344, 'Foundations and Trends in Machine Learning', 19358245, 4.292, 'Q1', 35, 4, 528, 814, 12, '2', '2008-2019', 'Artificial Intelligence (Q1); Human-Computer Interaction (Q1); Software (Q1)'), (345, 'Review of Corporate Finance Studies', 20469136, 4.292, 'Q1', 14, 16, 586, 71, 26, '2', '2012-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (346, 'Signal Transduction and Targeted Therapy', 20593635, 4.284, 'Q1', 33, 295, 21641, 2148, 111, '3', '2016-2020', 'Cancer Research (Q1); Genetics (Q1)'), (347, 'Progress in Human Geography', 14770288, 4.283, 'Q1', 146, 124, 13937, 1689, 173, '3', '1977-2020', 'Geography, Planning and Development (Q1)'), (348, 'Cancer Treatment Reviews', 3057372, 4.278, 'Q1', 133, 106, 9562, 3732, 341, '3', '1974-2020', 'Medicine (miscellaneous) (Q1); Oncology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (349, 'Sleep Medicine Reviews', 15322955, 4.268, 'Q1', 144, 95, 6689, 3088, 229, '3', '1997-2020', 'Neurology (Q1); Neurology (clinical) (Q1); Physiology (medical) (Q1); Pulmonary and Respiratory Medicine (Q1)'), (350, 'Ecological Monographs', 129615, 4.254, 'Q1', 156, 42, 4584, 1150, 123, '2', '1974-1977, 1979-1980, 1987-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (351, 'Annual Review of Nutrition', 1999885, 4.231, 'Q1', 157, 18, 2713, 757, 53, '2', '1981-2019', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (352, 'Current Opinion in Neurobiology', 9594388, 4.229, 'Q1', 229, 128, 8343, 3279, 469, '3', '1991-2021', 'Neuroscience (miscellaneous) (Q1)'), (353, 'Review of Environmental Economics and Policy', 17506824, 4.207, 'Q1', 53, 3, 220, 492, 62, '2', '2008-2019', 'Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)'), (354, 'Psychological Science in the Public Interest,', 15396053, 4.201, 'Q1', 54, 7, 921, 239, 13, '2', '2000-2020', 'Psychology (miscellaneous) (Q1)'), (355, 'Acta Mathematica', 15962, 4.185, 'Q1', 76, 11, 507, 350, 34, '16', '1882-1887, 1889-1895, 1897, 1899-1906, 1908-1916, 1920-1923, 1925-1942, 1944-2020', 'Mathematics (miscellaneous) (Q1)'), (356, 'Trends in Cancer', 24058033, 4.175, 'Q1', 48, 125, 8545, 2509, 269, '2', '2015-2020', 'Cancer Research (Q1); Oncology (Q1)'), (357, 'Current Opinion in Plant Biology', 18790356, 4.155, 'Q1', 205, 115, 7507, 3014, 336, '3', '1998-2020', 'Plant Science (Q1)'), (358, 'Journal of Public Administration Research and', 14779803, 4.154, 'Q1', 112, 39, 2790, 696, 107, '3', '1991-2020', 'Marketing (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (359, 'Annals of Surgery', 15281140, 4.153, 'Q1', 309, 500, 6042, 9859, 1019, '2', '1945-2020', 'Surgery (Q1)'), (360, 'Journal of Computer-Mediated Communication', 10836101, 4.15, 'Q1', 119, 7, 307, 509, 54, '2', '1995-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1)'), (361, 'Global Change Biology', 13652486, 4.146, 'Q1', 255, 536, 44520, 12601, 1226, '3', '1995-2020', 'Ecology (Q1); Environmental Chemistry (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1)'), (362, 'Annual Review of Biomedical Engineering', 15239829, 4.142, 'Q1', 133, 16, 2285, 1171, 58, '2', '1999-2020', 'Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)'), (363, 'Matter', 25902393, 4.138, 'Q1', 22, 322, 15168, 1414, 133, '2', '2019-2020', 'Materials Science (miscellaneous) (Q1)'), (364, 'PLoS Biology', 15449173, 4.127, 'Q1', 271, 352, 23645, 8461, 1109, '2', '2003-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Neuroscience (miscellan'), (365, 'Arthritis and Rheumatology', 23265191, 4.106, 'Q1', 314, 329, 9529, 5530, 641, '3', '2014-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Rheumatology (Q1)'), (366, 'Cancer Research', 85472, 4.103, 'Q1', 449, 477, 22584, 17842, 1836, '2', '1941-2020', 'Cancer Research (Q1); Oncology (Q1)'), (367, 'JCI insight', 23793708, 4.099, 'Q1', 45, 534, 30303, 9948, 1292, '2', '2016-2020', 'Medicine (miscellaneous) (Q1)'), (368, 'Sports Medicine', 1121642, 4.092, 'Q1', 184, 152, 11242, 5291, 478, '19', '1984-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (369, 'Earth System Science Data', 18663516, 4.066, 'Q1', 58, 188, 12849, 3317, 291, '5', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (370, 'Quantitative Economics', 17597323, 4.062, 'Q1', 27, 39, 1960, 312, 117, '2', '2010-2020', 'Economics and Econometrics (Q1)'), (371, 'Journal of the Learning Sciences', 10508406, 4.06, 'Q1', 92, 31, 1724, 454, 51, '2', '1991-1992, 1994-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (372, 'Structural Equation Modeling', 15328007, 4.041, 'Q1', 101, 89, 4113, 969, 196, '3', '1994-2020', 'Decision Sciences (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Modeling and Simulation (Q1); Sociology and Political Science (Q1)'), (373, 'European Respiratory Journal', 9031936, 4.021, 'Q1', 241, 714, 19588, 10466, 1039, '19', '1988-2020', 'Medicine (miscellaneous) (Q1); Pulmonary and Respiratory Medicine (Q1)'), (374, 'Comparative Political Studies', 15523829, 4.017, 'Q1', 110, 86, 6353, 953, 191, '2', '1968-2020', 'Sociology and Political Science (Q1)'), (375, 'Drug Resistance Updates', 13687646, 4.01, 'Q1', 110, 28, 6414, 835, 52, '2', '1998-2020', 'Cancer Research (Q1); Infectious Diseases (Q1); Oncology (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (376, 'Neuro-Oncology', 15228517, 4.005, 'Q1', 125, 251, 7551, 4934, 453, '3', '1999-2020', 'Cancer Research (Q1); Neurology (clinical) (Q1); Oncology (Q1)'), (377, 'JAMA Pediatrics', 21686211, 4.004, 'Q1', 183, 398, 6380, 5163, 473, '2', '2013-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (378, 'Annual Review of Vision Science', 23744650, 3.984, 'Q1', 26, 24, 3385, 514, 62, '2', '2015-2019', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Ophthalmology (Q1)'), (379, 'Research in Organizational Behavior', 1913085, 3.962, 'Q1', 65, 0, 0, 180, 26, '3', '2000-2004, 2006, 2008-2018', 'Experimental and Cognitive Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Social Psychology (Q1)'), (380, 'Political Analysis', 10471987, 3.953, 'Q1', 69, 31, 1426, 657, 105, '3', '1989-1993, 2004-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (381, 'BMC Biology', 17417007, 3.952, 'Q1', 106, 195, 14317, 2551, 340, '3', '2003-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biotechnology (Q1); Cell Biology (Q1); Developmental Biology (Q1); Ecology'), (382, 'Geometric and Functional Analysis', 14208970, 3.952, 'Q1', 77, 34, 1324, 600, 126, '19', '1991-2020', 'Analysis (Q1); Geometry and Topology (Q1)'), (383, 'Applied Linguistics', 1426001, 3.941, 'Q1', 96, 41, 1954, 657, 128, '3', '1980-2020', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (384, 'Journal of Organizational Behavior', 10991379, 3.938, 'Q1', 177, 62, 6106, 2006, 221, '3', '1981-1982, 1984-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Psychology (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (385, 'Current Opinion in Structural Biology', 1879033, 3.935, 'Q1', 200, 144, 8393, 2860, 404, '3', '1991-2021', 'Molecular Biology (Q1); Structural Biology (Q1)'), (386, 'Autophagy', 15548627, 3.934, 'Q1', 146, 390, 18841, 5401, 376, '2', '2005-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (387, 'Frontiers in Ecology and the Environment', 15409295, 3.918, 'Q1', 164, 123, 2467, 1919, 189, '2', '2003-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (388, 'Progress in Neurobiology', 18735118, 3.911, 'Q1', 231, 86, 9718, 2447, 201, '3', '1959, 1962, 1973-2020', 'Neuroscience (miscellaneous) (Q1)'), (389, 'npj 2D Materials and Applications', 23977132, 3.91, 'Q1', 28, 46, 3006, 1419, 122, '3', '2017-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (390, 'Seminars in Cancer Biology', 10963650, 3.908, 'Q1', 148, 287, 47920, 3555, 286, '2', '1990-2020', 'Cancer Research (Q1)'), (391, 'Annual Review of Financial Economics', 19411367, 3.903, 'Q1', 30, 15, 1421, 178, 47, '2', '2010-2019', 'Economics and Econometrics (Q1); Finance (Q1)'), (392, 'Journal of Engineering Education', 10694730, 3.896, 'Q1', 108, 50, 3479, 550, 71, '2', '1969-1978, 1993-1995, 1997-2020', 'Education (Q1); Engineering (miscellaneous) (Q1)'), (393, 'Duke Mathematical Journal', 15477398, 3.894, 'Q1', 97, 58, 2427, 1088, 199, '2', '1935-2020', 'Mathematics (miscellaneous) (Q1)'), (394, 'Earth-Science Reviews', 128252, 3.893, 'Q1', 192, 339, 61016, 7358, 573, '16', '1966-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (395, 'Journal of Urban Economics', 10959068, 3.886, 'Q1', 109, 50, 2193, 728, 150, '2', '1974-2020', 'Economics and Econometrics (Q1); Urban Studies (Q1)'), (396, 'Trends in Pharmacological Sciences', 18733735, 3.878, 'Q1', 218, 101, 6920, 3178, 276, '3', '1979-2020', 'Pharmacology (Q1); Toxicology (Q1)'), (397, 'Molecular Therapy', 15250024, 3.871, 'Q1', 174, 226, 10674, 6849, 693, '2', '2000-2020', 'Drug Discovery (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1); Pharmacology (Q1)'), (398, 'Current Opinion in Immunology', 9527915, 3.863, 'Q1', 193, 104, 6099, 2399, 301, '3', '1988-2021', 'Immunology (Q1); Immunology and Allergy (Q1)'), (399, 'Econometrics Journal', 13684221, 3.861, 'Q1', 36, 16, 705, 320, 55, '3', '2006-2020', 'Economics and Econometrics (Q1)'), (400, 'Cold Spring Harbor perspectives in medicine', 21571422, 3.853, 'Q1', 105, 96, 11448, 2289, 288, '2', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (401, 'Long Range Planning', 246301, 3.852, 'Q1', 102, 91, 9732, 1513, 162, '3', '1968-2020', 'Finance (Q1); Geography, Planning and Development (Q1); Strategy and Management (Q1)'), (402, 'Annals of Internal Medicine', 15393704, 3.839, 'Q1', 390, 931, 4077, 9259, 1080, '2', '1945-2020', 'Internal Medicine (Q1); Medicine (miscellaneous) (Q1)'), (403, 'Health Affairs', 2782715, 3.837, 'Q1', 178, 339, 7677, 4101, 792, '2', '1981-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1)'), (404, 'Journal of Public Economics', 472727, 3.826, 'Q1', 142, 133, 6095, 1202, 358, '16', '1972-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (405, 'npj Flexible Electronics', 23974621, 3.826, 'Q1', 21, 33, 1793, 762, 62, '3', '2017-2020', 'Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1)'), (406, 'European Journal of Epidemiology', 3932990, 3.825, 'Q1', 111, 126, 5420, 2423, 281, '16', '1985-2001, 2003-2020', 'Epidemiology (Q1)'), (407, 'Schizophrenia Bulletin', 5867614, 3.823, 'Q1', 190, 184, 9734, 3599, 459, '3', '1973-2020', 'Psychiatry and Mental Health (Q1)'), (408, 'Current Biology', 18790445, 3.822, 'Q1', 316, 929, 38487, 15523, 2265, '2', '1991-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)'), (409, 'American Journal of Mathematics', 10806377, 3.818, 'Q1', 67, 50, 1500, 474, 125, '2', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (410, 'IEEE Transactions on Pattern Analysis and Mac', 1628828, 3.811, 'Q1', 372, 312, 12574, 21311, 621, '2', '1978-2020', 'Applied Mathematics (Q1); Artificial Intelligence (Q1); Computational Theory and Mathematics (Q1); Computer Vision and Pattern Recognition (Q1); Software (Q1)'), (411, 'Journal of Abnormal Psychology', 1939843, 3.809, 'Q1', 193, 73, 3261, 2030, 249, '2', '1946-1959, 1963-2020', 'Biological Psychiatry (Q1); Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)'), (412, 'Social Issues and Policy Review', 17512409, 3.798, 'Q1', 35, 10, 1488, 284, 24, '3', '2008-2020', 'Applied Psychology (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (413, 'Operations Research', 30364, 3.797, 'Q1', 140, 103, 4457, 1303, 305, '2', '1969-2020', 'Computer Science Applications (Q1); Management Science and Operations Research (Q1)'), (414, 'Trends in Molecular Medicine', 1471499, 3.789, 'Q1', 178, 110, 8666, 2703, 298, '3', '2000-2020', 'Molecular Biology (Q1); Molecular Medicine (Q1)'), (415, 'Small', 16136829, 3.785, 'Q1', 236, 1194, 79704, 33873, 2785, '5', '2005-2020', 'Biomaterials (Q1); Biotechnology (Q1); Chemistry (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotech'), (416, 'Laser and Photonics Reviews', 18638880, 3.778, 'Q1', 116, 135, 9842, 3368, 248, '5', '2007-2020', 'Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (417, 'Journal of Econometrics', 3044076, 3.769, 'Q1', 159, 241, 11045, 1497, 408, '16', '1973-2020', 'Applied Mathematics (Q1); Economics and Econometrics (Q1); History and Philosophy of Science (Q1)'), (418, 'Seminars in Immunology', 10445323, 3.765, 'Q1', 125, 46, 5811, 1713, 150, '2', '1989-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (419, 'Journal of International Economics', 221996, 3.761, 'Q1', 136, 90, 4453, 1044, 262, '16', '1971-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (420, 'International Materials Reviews', 9506608, 3.76, 'Q1', 109, 29, 6424, 964, 51, '3', '1987-2020', 'Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)'), (421, 'JAMA Surgery', 21686262, 3.757, 'Q1', 176, 418, 5540, 5256, 513, '2', '2013-2020', 'Surgery (Q1)'), (422, 'American Journal of Sociology', 29602, 3.755, 'Q1', 181, 26, 3255, 526, 100, '2', '1946-1950, 1964-2020', 'Sociology and Political Science (Q1)'), (423, 'Development (Cambridge)', 14779129, 3.754, 'Q1', 325, 445, 15883, 7881, 1338, '3', '1987-2020', 'Developmental Biology (Q1); Molecular Biology (Q1)'), (424, 'Journal of Communication', 219916, 3.752, 'Q1', 131, 29, 1830, 1008, 141, '2', '1951-2020', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (425, 'Journal of Supply Chain Management', 15232409, 3.75, 'Q1', 92, 27, 2594, 538, 54, '2', '1999-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Information Systems (Q1); Management Information Systems (Q1); Marketing (Q1)'), (426, 'New Phytologist', 14698137, 3.742, 'Q1', 244, 721, 48381, 14900, 1570, '3', '1902-2020', 'Physiology (Q1); Plant Science (Q1)'), (427, 'Review of Economic Dynamics', 10966099, 3.742, 'Q1', 65, 88, 3961, 357, 160, '2', '1998-2020', 'Economics and Econometrics (Q1)'), (428, 'Chemistry of Materials', 15205002, 3.741, 'Q1', 375, 948, 58441, 31367, 3160, '2', '1989-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1)'), (429, 'International Journal of Research in Marketin', 1678116, 3.725, 'Q1', 102, 74, 5545, 986, 129, '16', '1984-2020', 'Marketing (Q1)'), (430, 'Periodontology 2000', 9066713, 3.725, 'Q1', 122, 53, 6789, 1317, 132, '25', '1993-2020', 'Periodontics (Q1)'), (431, 'PLoS Pathogens', 15537374, 3.719, 'Q1', 206, 713, 44105, 12514, 1739, '2', '2005-2020', 'Genetics (Q1); Immunology (Q1); Microbiology (Q1); Molecular Biology (Q1); Parasitology (Q1); Virology (Q1)'), (432, 'Journal of the National Comprehensive Cancer ', 15401413, 3.707, 'Q1', 109, 199, 7436, 4588, 444, '2', '2003-2020', 'Medicine (miscellaneous) (Q1); Oncology (Q1)'), (433, 'Journal of Economic Theory', 10957235, 3.689, 'Q1', 101, 121, 4648, 722, 348, '2', '1969-2020', 'Economics and Econometrics (Q1)'), (434, 'Physical Review Letters', 10797114, 3.688, 'Q1', 673, 2805, 141086, 114102, 8007, '2', '1958-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (435, 'Chemical Science', 20416520, 3.687, 'Q1', 172, 1401, 87695, 30251, 3155, '3', '2010-2020', 'Chemistry (miscellaneous) (Q1)'), (436, 'RAND Journal of Economics', 17562171, 3.687, 'Q1', 108, 45, 1939, 259, 115, '2', '1984-1985, 1987, 1989, 1991-2020', 'Economics and Econometrics (Q1)'), (437, 'Communication Methods and Measures', 19312466, 3.686, 'Q1', 27, 20, 1237, 433, 53, '2', '2010-2020', 'Communication (Q1)'), (438, 'Current Opinion in Microbiology', 18790364, 3.675, 'Q1', 176, 98, 6114, 2705, 304, '3', '1998-2021', 'Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1)'), (439, 'Vital and health statistics. Series 2, Data e', 832057, 3.667, 'Q1', 25, 2, 0, 64, 16, '2', '1965, 1970, 1977-1982, 1985-1989, 1991-1994, 1996-2001, 2003-2006, 2008, 2010-2019', 'Health Information Management (Q1); Medicine (miscellaneous) (Q1); Statistics and Probability (Q1)'), (440, 'Research Policy', 487333, 3.666, 'Q1', 238, 168, 13902, 4408, 483, '16', '1971-2021', 'Engineering (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (441, 'ACS Materials Letters', 26394979, 3.662, 'Q1', 12, 175, 10511, 263, 30, '2', '2019-2020', 'Biomedical Engineering (Q1); Chemical Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (442, 'Current Climate Change Reports', 21986061, 3.659, 'Q1', 33, 13, 1171, 773, 96, '19', '2015-2020', 'Atmospheric Science (Q1); Global and Planetary Change (Q1)'), (443, 'Science Signaling', 19450877, 3.659, 'Q1', 154, 191, 8382, 3719, 582, '2', '2000, 2008-2020', 'Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)'), (444, 'Intensive Care Medicine', 14321238, 3.658, 'Q1', 197, 451, 10932, 5964, 596, '5', '1977-2020', 'Critical Care and Intensive Care Medicine (Q1)'), (445, 'Geometry and Topology', 13640380, 3.656, 'Q1', 58, 38, 1452, 781, 213, '3', '1997-2020', 'Geometry and Topology (Q1)'), (446, 'Journal of Child Psychology and Psychiatry an', 219630, 3.652, 'Q1', 211, 187, 8996, 3159, 341, '3', '1960-2020', 'Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)'), (447, 'Developmental Review', 2732297, 3.651, 'Q1', 96, 18, 2432, 527, 61, '2', '1981-2020', 'Developmental and Educational Psychology (Q1); Education (Q1); Experimental and Cognitive Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)'), (448, 'Journal of Operations Management', 2726963, 3.649, 'Q1', 191, 48, 3951, 662, 84, '16', '1980-1991, 1993-2020', 'Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (449, 'Psychological Science', 9567976, 3.641, 'Q1', 260, 152, 4648, 3134, 465, '2', '1990-2020', 'Psychology (miscellaneous) (Q1)'), (450, 'Astrophysical Journal Letters', 20418213, 3.639, 'Q1', 201, 730, 37090, 26546, 1751, '3', '1991-1993, 1995-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (451, 'Current Directions in Psychological Science', 14678721, 3.638, 'Q1', 171, 87, 3274, 1681, 245, '2', '1992-2020', 'Developmental and Educational Psychology (Q1); Psychology (miscellaneous) (Q1)'), (452, 'Journal of Materials Chemistry A', 20507496, 3.637, 'Q1', 212, 2313, 156034, 95168, 7804, '3', '2013-2020', 'Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (453, 'Educational Evaluation and Policy Analysis', 1623737, 3.636, 'Q1', 78, 26, 1713, 367, 76, '2', '1979-1982, 1996-2020', 'Education (Q1)'), (454, 'Progress in Lipid Research', 18732194, 3.634, 'Q1', 145, 30, 6129, 981, 64, '3', '1978-2020', 'Biochemistry (Q1); Cell Biology (Q1)'), (455, 'Surface Science Reports', 1675729, 3.627, 'Q1', 117, 6, 1168, 314, 22, '16', '1981-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1); Surfaces and Interfaces (Q1); Surfaces'), (456, 'Remote Sensing of Environment', 344257, 3.611, 'Q1', 281, 496, 37684, 16246, 1374, '2', '1969-2020', 'Computers in Earth Sciences (Q1); Geology (Q1); Soil Science (Q1)'), (457, 'Blood Cancer Journal', 20445385, 3.607, 'Q1', 51, 124, 4147, 2147, 199, '2', '2011-2020', 'Hematology (Q1); Oncology (Q1)'), (458, 'Journal of World Business', 10909516, 3.607, 'Q1', 112, 64, 7019, 1595, 168, '2', '1997-2020', 'Business and International Management (Q1); Finance (Q1); Marketing (Q1)'), (459, 'Bioinformatics', 13674811, 3.599, 'Q1', 390, 983, 29619, 19414, 2669, '3', '1985-2020', 'Biochemistry (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Molecular Biology (Q1); Statistics and Probability (Q1)'), (460, 'Mucosal Immunology', 19353456, 3.596, 'Q1', 101, 100, 6367, 2965, 400, '3', '2008-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (461, 'Neuroscience and Biobehavioral Reviews', 18737528, 3.59, 'Q1', 240, 388, 63323, 8529, 883, '3', '1978-2020', 'Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Neuropsychology and Physiological Psychology (Q1)'), (462, 'Educational Psychology Review', 1040726, 3.588, 'Q1', 111, 71, 7043, 1245, 125, '2', '1989-2020', 'Developmental and Educational Psychology (Q1)'), (463, 'Journal of Development Economics', 3043878, 3.588, 'Q1', 142, 129, 6723, 1172, 279, '16', '1974-2020', 'Development (Q1); Economics and Econometrics (Q1)'), (464, 'PLoS Genetics', 15537390, 3.587, 'Q1', 233, 561, 36925, 9669, 1675, '2', '2005-2020', 'Cancer Research (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)'), (465, 'IEEE Transactions on Smart Grid', 19493053, 3.571, 'Q1', 171, 532, 16876, 18927, 1452, '2', '2010-2020', 'Computer Science (miscellaneous) (Q1)'), (466, 'Multivariate Behavioral Research', 273171, 3.57, 'Q1', 78, 115, 5765, 765, 172, '2', '1966-2020', 'Arts and Humanities (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1); Statistics and Probability (Q1)'), (467, 'mBio', 21612129, 3.562, 'Q1', 121, 695, 41376, 12135, 1626, '2', '2010-2020', 'Microbiology (Q1); Virology (Q1)'), (468, 'Plant Physiology', 320889, 3.554, 'Q1', 312, 553, 31589, 10821, 1287, '2', '1965-1971, 1975, 1977-2020', 'Genetics (Q1); Physiology (Q1); Plant Science (Q1)'), (469, 'Journal of Heart and Lung Transplantation', 15573117, 3.549, 'Q1', 135, 1537, 4734, 3313, 371, '2', '1991-2020', 'Cardiology and Cardiovascular Medicine (Q1); Pulmonary and Respiratory Medicine (Q1); Surgery (Q1); Transplantation (Q1)'), (470, 'Journal of the European Mathematical Society', 14359855, 3.549, 'Q1', 64, 87, 3299, 1133, 254, '19', '2002-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (471, 'Astrophysical Journal, Supplement Series', 15384365, 3.546, 'Q1', 277, 274, 18873, 8193, 562, '3', '1984, 1987-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (472, 'Lancet Planetary Health, The', 25425196, 3.535, 'Q1', 29, 136, 2441, 1782, 107, '16', '2017-2020', 'Health Policy (Q1); Health (social science) (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (473, 'Catalysis Reviews - Science and Engineering', 15205703, 3.534, 'Q1', 101, 29, 5130, 572, 32, '2', '1968-1972, 1974-2020', 'Catalysis (Q1); Chemistry (miscellaneous) (Q1); Process Chemistry and Technology (Q1)'), (474, 'Psychotherapy and Psychosomatics', 333190, 3.531, 'Q1', 98, 90, 3854, 990, 84, '19', '1953-2020', 'Applied Psychology (Q1); Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (475, 'Plant Biotechnology Journal', 14677644, 3.525, 'Q1', 115, 283, 14827, 4944, 483, '3', '2004-2020', 'Agronomy and Crop Science (Q1); Biotechnology (Q1); Plant Science (Q1)'), (476, 'Ageing Research Reviews', 15681637, 3.523, 'Q1', 120, 152, 23546, 3133, 253, '42', '2002-2020', 'Aging (Q1); Biochemistry (Q1); Biotechnology (Q1); Molecular Biology (Q1); Neurology (Q1)'), (477, 'American Educational Research Journal', 28312, 3.522, 'Q1', 121, 78, 5834, 959, 162, '2', '1978, 1982, 1986, 1996-2020', 'Education (Q1)'), (478, 'Renewable and Sustainable Energy Reviews', 13640321, 3.522, 'Q1', 295, 643, 73956, 54087, 3206, '3', '1997-2021', 'Renewable Energy, Sustainability and the Environment (Q1)'), (479, 'Trends in Endocrinology and Metabolism', 10432760, 3.52, 'Q1', 168, 93, 7181, 2620, 266, '2', '1989-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)'), (480, 'Genetics in Medicine', 10983600, 3.509, 'Q1', 128, 311, 7792, 5050, 662, '2', '1998-2020', 'Genetics (clinical) (Q1); Medicine (miscellaneous) (Q1)'), (481, 'Information Systems Research', 15265536, 3.507, 'Q1', 159, 70, 5137, 1135, 170, '2', '1990-2020', 'Computer Networks and Communications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1)'), (482, 'Ocular Surface', 15420124, 3.505, 'Q1', 65, 120, 5895, 1932, 204, '2', '2003-2020', 'Ophthalmology (Q1)'), (483, 'New Media and Society', 14614448, 3.501, 'Q1', 109, 285, 16403, 4194, 488, '3', '1999-2020', 'Communication (Q1); Sociology and Political Science (Q1)'), (484, 'Kidney International', 852538, 3.499, 'Q1', 276, 470, 12600, 6461, 749, '2', '1972-2020', 'Nephrology (Q1)'), (485, 'Digital Journalism', 2167082, 3.498, 'Q1', 46, 103, 5843, 1720, 217, '3', '2013-2020', 'Communication (Q1)'), (486, 'American Journal of Obstetrics and Gynecology', 29378, 3.497, 'Q1', 225, 590, 17607, 6898, 989, '2', '1920-2020', 'Obstetrics and Gynecology (Q1)'), (487, 'Biostatistics', 14654644, 3.493, 'Q1', 82, 64, 1006, 624, 124, '3', '2003-2020', 'Medicine (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (488, 'Molecular Aspects of Medicine', 982997, 3.492, 'Q1', 134, 54, 8510, 1909, 157, '3', '1976-1985, 1987-2020', 'Biochemistry (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)'), (489, 'Journal of Politics', 14682508, 3.489, 'Q1', 121, 131, 6529, 1536, 385, '3', '1939-2020', 'Sociology and Political Science (Q1)'), (490, 'npj Computational Materials', 20573960, 3.488, 'Q1', 41, 190, 10665, 3292, 252, '3', '2015-2020', 'Computer Science Applications (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)'), (491, 'Modern Language Journal', 15404781, 3.486, 'Q1', 83, 53, 2628, 817, 128, '2', '1916-1996, 1998-2001, 2004-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (492, 'Journal of Neuroscience', 2706474, 3.483, 'Q1', 455, 767, 48964, 15788, 2486, '2', '1981-2020', 'Neuroscience (miscellaneous) (Q1)'), (493, 'Advanced Drug Delivery Reviews', 169409, 3.475, 'Q1', 313, 138, 28532, 6945, 443, '16', '1987-2020', 'Pharmaceutical Science (Q1)'), (494, 'Nano-Micro Letters', 23116706, 3.473, 'Q1', 52, 181, 15196, 3181, 229, '16', '2009-2020', 'Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Nanoscience and Nanotechnology (Q1); Surfaces, Coatings and Films (Q1)'), (495, 'Criminology', 17459125, 3.467, 'Q1', 139, 26, 2434, 524, 83, '2', '1963-2020', 'Law (Q1); Pathology and Forensic Medicine (Q1)'), (496, 'Diabetologia', 12186, 3.464, 'Q1', 227, 269, 11173, 6674, 717, '5', '1965-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (497, 'BMC Medicine', 17417015, 3.463, 'Q1', 138, 399, 20684, 5718, 636, '3', '2003-2020', 'Medicine (miscellaneous) (Q1)'), (498, 'IEEE Transactions on Evolutionary Computation', 1089778, 3.463, 'Q1', 180, 94, 4675, 3458, 201, '2', '1997-2020', 'Computational Theory and Mathematics (Q1); Software (Q1); Theoretical Computer Science (Q1)'), (499, 'Pharmacology and Therapeutics', 1879016, 3.461, 'Q1', 201, 162, 33410, 5374, 450, '2', '1975-1977, 1979-1985, 1987-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1)'), (500, 'Journal of Clinical Periodontology', 1600051, 3.456, 'Q1', 151, 164, 7458, 3531, 462, '25', '1974-2020', 'Periodontics (Q1)'), (501, 'Review of Research in Education', 91732, 3.456, 'Q1', 57, 15, 1546, 402, 49, '2', '1973-1981, 1983-1988, 1990-2000, 2002-2020', 'Education (Q1)'), (502, 'Clinical Infectious Diseases', 15376591, 3.44, 'Q1', 336, 1343, 30586, 13917, 2149, '3', '1985-1986, 1988-1990, 1992-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1)'), (503, 'IEEE Transactions on Automatic Control', 189286, 3.436, 'Q1', 294, 696, 17025, 13271, 1584, '2', '1963-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (504, 'Biochimica et Biophysica Acta - Reviews on Ca', 304419, 3.435, 'Q1', 137, 105, 16163, 1826, 190, '16', '1974-2020', 'Cancer Research (Q1); Genetics (Q1); Oncology (Q1)'), (505, 'Nature Human Behaviour', 23973374, 3.434, 'Q1', 46, 189, 7903, 4293, 363, '3', '2017-2020', 'Behavioral Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Social Psychology (Q1)'), (506, 'Methods in Ecology and Evolution', 2041210, 3.425, 'Q1', 105, 172, 7643, 5126, 595, '2', '2011-2020', 'Ecological Modeling (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (507, 'International Journal of Machine Tools and Ma', 8906955, 3.418, 'Q1', 156, 65, 3080, 2146, 241, '3', '1987-2020', 'Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)'), (508, 'Cellular and Molecular Gastroenterology and H', 2352345, 3.417, 'Q1', 38, 132, 5114, 1798, 232, '2', '2015-2020', 'Gastroenterology (Q1); Hepatology (Q1)'), (509, 'Cell Discovery', 20565968, 3.412, 'Q1', 29, 94, 4054, 1082, 135, '3', '2015-2020', 'Biochemistry (Q1); Cell Biology (Q1); Genetics (Q1); Molecular Biology (Q1)'), (510, 'Current Opinion in Genetics and Development', 959437, 3.407, 'Q1', 189, 105, 5949, 1681, 278, '3', '1991-2020', 'Developmental Biology (Q1); Genetics (Q1)'), (511, 'International Journal of Epidemiology', 14643685, 3.406, 'Q1', 208, 164, 5679, 5533, 719, '3', '1972-2020', 'Epidemiology (Q1); Medicine (miscellaneous) (Q1)'), (512, 'Political Communication', 10584609, 3.405, 'Q1', 84, 80, 4722, 743, 89, '3', '1980-2020', 'Communication (Q1); Sociology and Political Science (Q1)'), (513, 'Journal of Travel Research', 15526763, 3.403, 'Q1', 132, 168, 14675, 2663, 237, '3', '1969-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1); Transportation (Q1)'), (514, 'npj Quantum Information', 20566387, 3.397, 'Q1', 47, 103, 4957, 2521, 197, '3', '2015-2020', 'Computational Theory and Mathematics (Q1); Computer Networks and Communications (Q1); Computer Science (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)'), (515, 'Stroke', 15244628, 3.397, 'Q1', 319, 775, 15700, 11233, 1632, '2', '1970-2020', 'Advanced and Specialized Nursing (Q1); Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)'), (516, 'Sociology of Education', 380407, 3.396, 'Q1', 93, 19, 1234, 299, 52, '2', '1980, 1983, 1992, 1996-2020', 'Education (Q1); Sociology and Political Science (Q1)'), (517, 'Oncogene', 14765594, 3.395, 'Q1', 342, 508, 27383, 14178, 1601, '3', '1987-2020', 'Cancer Research (Q1); Genetics (Q1); Molecular Biology (Q1)'), (518, 'Journal of Neurology, Neurosurgery and Psychi', 1468330, 3.391, 'Q1', 206, 272, 7186, 4191, 474, '3', '1920-1937, 1945-2020', 'Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1); Surgery (Q1)'), (519, 'Academy of Management Perspectives', 15589080, 3.376, 'Q1', 130, 37, 3439, 487, 70, '2', '2006-2019', 'Business and International Management (Q1); Marketing (Q1); Strategy and Management (Q1)'), (520, 'Research Synthesis Methods', 17592879, 3.376, 'Q1', 35, 72, 3448, 966, 130, '3', '2010, 2013-2020', 'Education (Q1)'), (521, 'Psychometrika', 333123, 3.375, 'Q1', 76, 49, 1955, 465, 156, '2', '1936-2020', 'Applied Mathematics (Q1); Psychology (miscellaneous) (Q1)'), (522, 'Philosophical Review, The', 318108, 3.371, 'Q1', 57, 8, 668, 91, 26, '2', '1970, 1977-1978, 1984, 1996-2020', 'Philosophy (Q1)'), (523, 'Bulletin of the American Meteorological Socie', 15200477, 3.367, 'Q1', 197, 177, 8121, 4350, 532, '2', '1972-2020', 'Atmospheric Science (Q1)'), (524, 'British Journal of Political Science', 71234, 3.364, 'Q1', 96, 163, 10146, 805, 167, '3', '1971-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (525, 'Cell Chemical Biology', 24519448, 3.364, 'Q1', 182, 155, 9497, 3601, 518, '2', '2016-2020', 'Biochemistry (Q1); Clinical Biochemistry (Q1); Drug Discovery (Q1); Molecular Biology (Q1); Molecular Medicine (Q1); Pharmacology (Q1)'), (526, 'Allergy: European Journal of Allergy and Clin', 1054538, 3.363, 'Q1', 173, 575, 19394, 6213, 601, '3', '1948-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (527, 'European Journal of Cancer', 9598049, 3.354, 'Q1', 214, 935, 12549, 7985, 961, '3', '1990-2020', 'Cancer Research (Q1); Oncology (Q1)'), (528, 'Protein Science', 1469896, 3.353, 'Q1', 175, 210, 11432, 2977, 607, '2', '1992-2020', 'Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)'), (529, 'Circulation: Heart Failure', 19413297, 3.352, 'Q1', 104, 178, 4474, 1949, 329, '2', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)'), (530, 'Movement Disorders', 8853185, 3.352, 'Q1', 198, 418, 13455, 5387, 609, '2', '1986-2020', 'Neurology (Q1); Neurology (clinical) (Q1)'), (531, 'Advances in Parasitology', 65308, 3.351, 'Q1', 89, 67, 6471, 601, 43, '2', '1963-2020', 'Medicine (miscellaneous) (Q1); Parasitology (Q1)'), (532, 'Essays in Biochemistry', 711365, 3.351, 'Q1', 66, 67, 6270, 1521, 181, '3', '1965, 1967-1983, 1985-1987, 1989-1992, 1994-2020', 'Biochemistry (Q1); Molecular Biology (Q1)'), (533, 'Cell Death and Differentiation', 13509047, 3.348, 'Q1', 218, 272, 13862, 6506, 532, '3', '1994-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (534, 'Journal of Teacher Education', 224871, 3.344, 'Q1', 92, 63, 3660, 631, 99, '2', '1950-2020', 'Education (Q1)'), (535, 'Tourism Management', 2615177, 3.328, 'Q1', 199, 159, 11910, 8354, 687, '3', '1982-2021', 'Development (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1); Transportation (Q1)'), (536, 'Acta Materialia', 13596454, 3.322, 'Q1', 297, 816, 48272, 21829, 2338, '3', '1996-2020', 'Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1); Metals and Alloys (Q1); Polymers and Plastics (Q1)'), (537, 'Journal of Climate', 15200442, 3.315, 'Q1', 287, 577, 37650, 9641, 1566, '2', '1987-1989, 1991-2020', 'Atmospheric Science (Q1)'), (538, 'IEEE Transactions on Power Systems', 8858950, 3.312, 'Q1', 263, 570, 14760, 16188, 1644, '2', '1985-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (539, 'Alimentary Pharmacology and Therapeutics', 2692813, 3.308, 'Q1', 177, 557, 14100, 5542, 697, '3', '1987-2020', 'Gastroenterology (Q1); Hepatology (Q1); Pharmacology (medical) (Q1)'), (540, 'Biometrika', 14643510, 3.307, 'Q1', 122, 73, 2257, 949, 214, '3', '1908-1913, 1945, 1947-1951, 1965-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (541, 'Information and Organization', 14717727, 3.298, 'Q1', 61, 15, 1307, 386, 48, '3', '1996-1997, 2001-2020', 'Information Systems (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Managemen'), (542, 'Gut Microbes', 19490984, 3.294, 'Q1', 72, 230, 14372, 1623, 151, '2', '2010-2020', 'Gastroenterology (Q1); Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1)'), (543, 'Bone Research', 20954700, 3.289, 'Q1', 41, 43, 3452, 1324, 95, '3', '2013-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Histology (Q1); Physiology (Q1)'), (544, 'Journal of Allergy and Clinical Immunology', 10976825, 3.281, 'Q1', 292, 472, 16826, 12487, 1480, '2', '1963-1965, 1971-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (545, 'Production and Operations Management', 10591478, 3.279, 'Q1', 110, 196, 11451, 2082, 417, '2', '1992-2020', 'Industrial and Manufacturing Engineering (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1)'), (546, 'JAMA network open', 25743805, 3.278, 'Q1', 39, 1568, 0, 7733, 1078, '2', '2018-2020', 'Medicine (miscellaneous) (Q1)'), (547, 'Educational Research Review', 1747938, 3.277, 'Q1', 66, 47, 5133, 1176, 89, '3', '2006-2020', 'Education (Q1)'), (548, 'Journal of Crohn s and Colitis', 18739946, 3.277, 'Q1', 80, 218, 8864, 4044, 500, '3', '2007-2020', 'Gastroenterology (Q1); Medicine (miscellaneous) (Q1)'), (549, 'Social Psychological and Personality Science', 19485514, 3.276, 'Q1', 58, 197, 8911, 1759, 311, '2', '2010-2020', 'Clinical Psychology (Q1); Social Psychology (Q1)'), (550, 'Annual Review of Statistics and Its Applicati', 23268298, 3.271, 'Q1', 31, 16, 1619, 634, 62, '2', '2014-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (551, 'European Journal of Political Research', 3044130, 3.267, 'Q1', 95, 67, 4299, 764, 150, '3', '1973-2020', 'Sociology and Political Science (Q1)'), (552, 'NeuroImage', 10959572, 3.259, 'Q1', 364, 981, 73619, 20526, 2767, '2', '1970, 1992-2020', 'Cognitive Neuroscience (Q1); Neurology (Q1)'), (553, 'Epidemiologic Reviews', 14786729, 3.253, 'Q1', 106, 12, 0, 371, 40, '3', '1979-2019', 'Epidemiology (Q1); Medicine (miscellaneous) (Q1)'), (554, 'Geoscientific Model Development', 1991959, 3.238, 'Q1', 86, 293, 21997, 5019, 701, '5', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Modeling and Simulation (Q1)'), (555, 'Diabetes', 121797, 3.219, 'Q1', 330, 280, 11639, 5470, 730, '2', '1952-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (556, 'IEEE Wireless Communications', 15361284, 3.216, 'Q1', 162, 157, 2083, 5766, 368, '2', '2002-2020', 'Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1)'), (557, 'Journal of the American Academy of Child and ', 8908567, 3.216, 'Q1', 243, 210, 6057, 2251, 268, '3', '1962, 1968, 1970, 1973, 1976, 1979, 1981-1984, 1987-2020', 'Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)'), (558, 'Biomaterials', 1429612, 3.209, 'Q1', 381, 540, 37235, 20244, 1663, '3', '1980-2020', 'Bioengineering (Q1); Biomaterials (Q1); Biophysics (Q1); Ceramics and Composites (Q1); Mechanics of Materials (Q1); Nanoscience and Nanotechnology (Q1)'), (559, 'Science Education', 368326, 3.209, 'Q1', 115, 39, 3360, 782, 158, '2', '1930-2020', 'Education (Q1); History and Philosophy of Science (Q1)'), (560, 'Comprehensive Physiology', 20404603, 3.207, 'Q1', 80, 43, 13004, 1383, 142, '2', '2011-2020', 'Medicine (miscellaneous) (Q1); Physiology (Q1); Physiology (medical) (Q1)'), (561, 'Stem Cell Reports', 22136711, 3.207, 'Q1', 76, 191, 8863, 5305, 756, '2', '2013-2020', 'Biochemistry (Q1); Cell Biology (Q1); Developmental Biology (Q1); Genetics (Q1)'), (562, 'Briefings in Bioinformatics', 14774054, 3.204, 'Q1', 113, 116, 8928, 4515, 449, '3', '2000-2020', 'Information Systems (Q1); Molecular Biology (Q1)'), (563, 'Ultrasound in Obstetrics and Gynecology', 9607692, 3.202, 'Q1', 141, 311, 7719, 3633, 559, '3', '1991-2020', 'Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Reproductive Medicine (Q1)'), (564, 'Probability Theory and Related Fields', 1788051, 3.198, 'Q1', 90, 86, 3331, 1036, 229, '5', '1986-2020', 'Analysis (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (565, 'Trends in Biotechnology', 1677799, 3.192, 'Q1', 219, 167, 11206, 4561, 346, '3', '1983-2020', 'Bioengineering (Q1); Biotechnology (Q1)'), (566, 'Journal of Molecular Biology', 222836, 3.189, 'Q1', 269, 446, 37835, 5286, 973, '2', '1959-2020', 'Biophysics (Q1); Molecular Biology (Q1); Structural Biology (Q1)'), (567, 'Transportation Research Part C: Emerging Tech', 968090, 3.185, 'Q1', 133, 327, 17795, 8956, 824, '3', '1993-2020', 'Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Computer Science Applications (Q1); Management Science and Operations Research (Q1); Transportation (Q1)'), (568, 'Annals of Probability', 911798, 3.184, 'Q1', 98, 47, 1761, 1300, 283, '2', '1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (569, 'Journal of Retailing', 224359, 3.184, 'Q1', 136, 66, 4311, 839, 87, '3', '1993-2020', 'Marketing (Q1)'), (570, 'npj Climate and Atmospheric Science', 23973722, 3.175, 'Q1', 18, 44, 2511, 767, 93, '2', '2018-2020', 'Atmospheric Science (Q1); Environmental Chemistry (Q1); Global and Planetary Change (Q1)'), (571, 'Implementation Science', 17485908, 3.167, 'Q1', 100, 106, 5862, 2854, 403, '3', '2006-2020', 'Health Informatics (Q1); Health Policy (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (572, 'National Health Statistics Reports', 23328363, 3.167, 'Q1', 70, 16, 206, 215, 36, '2', '2008-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (573, 'Global Ecology and Biogeography', 14668238, 3.164, 'Q1', 152, 169, 12490, 2608, 385, '3', '1998-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Global and Planetary Change (Q1)'), (574, 'Journal of Environmental Economics and Manage', 10960449, 3.163, 'Q1', 119, 71, 3648, 1586, 301, '2', '1974-2020', 'Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)'), (575, 'British Journal of Mathematical and Statistic', 71102, 3.157, 'Q1', 51, 52, 2058, 242, 74, '2', '1965-2020', 'Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1); Statistics and Probability (Q1)'), (576, 'Conservation Letters', 1755263, 3.153, 'Q1', 79, 73, 2938, 2153, 114, '2', '2008, 2010-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (577, 'Transportation Research, Series B: Methodolog', 1912615, 3.15, 'Q1', 140, 148, 7766, 4500, 577, '3', '1979-2020', 'Civil and Structural Engineering (Q1); Management Science and Operations Research (Q1); Transportation (Q1)'), (578, 'Economic Geography', 130095, 3.144, 'Q1', 84, 21, 1643, 499, 63, '3', '1972, 1974, 1978-1985, 1987-2020', 'Economics and Econometrics (Q1); Geography, Planning and Development (Q1)'), (579, 'Internet and Higher Education', 10967516, 3.143, 'Q1', 90, 23, 1486, 740, 73, '3', '1998-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Education (Q1); E-learning (Q1)'), (580, 'Metabolic Engineering', 10967176, 3.142, 'Q1', 117, 144, 8582, 4114, 422, '2', '1999-2020', 'Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biotechnology (Q1)'), (581, 'Physiology', 15489213, 3.14, 'Q1', 125, 45, 4540, 1014, 106, '2', '2004-2020', 'Physiology (Q1)'), (582, 'Strategic Organization', 1741315, 3.135, 'Q1', 57, 50, 4566, 380, 75, '3', '2003-2020', 'Business and International Management (Q1); Education (Q1); Industrial Relations (Q1); Strategy and Management (Q1)'), (583, 'Journal of Strategic Information Systems', 9638687, 3.133, 'Q1', 88, 24, 2111, 965, 61, '16', '1991-2020', 'Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)'), (584, 'Automatica', 51098, 3.132, 'Q1', 277, 558, 17296, 12550, 1522, '3', '1963-2020', 'Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (585, 'Acta neuropathologica communications', 20515960, 3.131, 'Q1', 56, 218, 11720, 3074, 425, '3', '2013-2020', 'Cellular and Molecular Neuroscience (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1)'), (586, 'Communications on Pure and Applied Mathematic', 103640, 3.12, 'Q1', 115, 89, 3808, 972, 159, '2', '1948-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (587, 'Radiology', 338419, 3.118, 'Q1', 295, 570, 12095, 10226, 1150, '2', '1945-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (588, 'Acta Numerica', 14740508, 3.117, 'Q1', 81, 6, 1428, 388, 17, '3', '1992-1999, 2003-2019', 'Mathematics (miscellaneous) (Q1); Numerical Analysis (Q1)'), (589, 'Genomics, Proteomics and Bioinformatics', 16720229, 3.114, 'Q1', 49, 36, 1874, 1152, 135, '1', '2003-2020', 'Biochemistry (Q1); Computational Mathematics (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)'), (590, 'Analysis and PDE', 1948206, 3.11, 'Q1', 39, 64, 2041, 792, 175, '2', '2011-2020', 'Analysis (Q1); Applied Mathematics (Q1); Numerical Analysis (Q1)'), (591, 'Journal of Peasant Studies', 3066150, 3.11, 'Q1', 83, 89, 7008, 1148, 189, '3', '1973-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)'), (592, 'IEEE Transactions on Cybernetics', 21682275, 3.109, 'Q1', 124, 542, 18740, 13312, 997, '2', '2013-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q1); Information Systems (Q1); Software (Q1)'), (593, 'JACC: Cardiovascular Interventions', 18767605, 3.108, 'Q1', 121, 639, 8213, 5307, 910, '2', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)'), (594, 'European urology oncology', 25889311, 3.107, 'Q1', 15, 104, 103, 843, 161, '16', '2018-2020', 'Medicine (miscellaneous) (Q1); Oncology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Surgery (Q1); Urology (Q1)'), (595, 'Aging Cell', 14749726, 3.103, 'Q1', 140, 230, 12277, 3878, 463, '3', '2002-2020', 'Aging (Q1); Cell Biology (Q1)'), (596, 'Child Development', 14678624, 3.103, 'Q1', 257, 236, 15233, 3426, 543, '2', '1945-1948, 1950-2020', 'Developmental and Educational Psychology (Q1); Education (Q1); Pediatrics, Perinatology and Child Health (Q1); Social Work (Q1)'), (597, 'Nuclear Data Sheets', 903752, 3.099, 'Q1', 60, 20, 3859, 486, 50, '2', '1971-2020', 'Nuclear and High Energy Physics (Q1)'), (598, 'Water Research', 431354, 3.099, 'Q1', 303, 1142, 70129, 29848, 2588, '3', '1967-2020', 'Civil and Structural Engineering (Q1); Ecological Modeling (Q1); Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)'), (599, 'Journal of Advertising', 15577805, 3.092, 'Q1', 109, 47, 3278, 1057, 106, '2', '1972-2020', 'Business and International Management (Q1); Communication (Q1); Marketing (Q1)'), (600, 'Nature Astronomy', 23973366, 3.085, 'Q1', 67, 267, 8153, 6859, 347, '3', '2016-2020', 'Astronomy and Astrophysics (Q1)'), (601, 'Thorax', 14683296, 3.083, 'Q1', 221, 219, 5350, 3440, 469, '3', '1946-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (602, 'NPG Asia Materials', 18844057, 3.082, 'Q1', 75, 85, 4429, 2653, 252, '2', '2009-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Modeling and Simulation (Q1)'), (603, 'Open Biology', 20462441, 3.078, 'Q1', 53, 143, 15164, 1932, 301, '3', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology (Q1); Neuroscience (miscellaneous) (Q1)'), (604, 'Journal of Management Information Systems', 1557928, 3.073, 'Q1', 144, 44, 3227, 1138, 122, '2', '1987-2020', 'Computer Science Applications (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Management Science and Operations Research (Q1)'), (605, 'Exceptional Children', 144029, 3.071, 'Q1', 89, 30, 1431, 382, 73, '2', '1936-1937, 1958, 1961-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (606, 'Seminars in Cell and Developmental Biology', 10963634, 3.071, 'Q1', 142, 234, 29177, 4177, 580, '3', '1992-2020', 'Cell Biology (Q1); Developmental Biology (Q1)'), (607, 'Journal of Research in Science Teaching', 10982736, 3.067, 'Q1', 131, 65, 5172, 943, 165, '2', '1963-1967, 1969-2020', 'Education (Q1)'), (608, 'Journal of Educational and Behavioral Statist', 10769986, 3.066, 'Q1', 59, 40, 1592, 284, 81, '2', '1996-2020', 'Education (Q1); Social Sciences (miscellaneous) (Q1)'), (609, 'Current Opinion in Chemical Biology', 13675931, 3.064, 'Q1', 184, 116, 6365, 2881, 329, '3', '1997-2021', 'Analytical Chemistry (Q1); Biochemistry (Q1)'), (610, 'International Journal of Press/Politics', 19401612, 3.064, 'Q1', 64, 62, 3327, 409, 72, '2', '2003, 2008-2020', 'Communication (Q1); Sociology and Political Science (Q1)'), (611, 'Plant Journal', 1365313, 3.058, 'Q1', 269, 487, 34677, 7143, 1005, '3', '1991-2020', 'Cell Biology (Q1); Genetics (Q1); Plant Science (Q1)'), (612, 'Cancer', 8543, 3.052, 'Q1', 304, 727, 21672, 9435, 1382, '2', '1948-2020', 'Cancer Research (Q1); Oncology (Q1)'), (613, 'OncoImmunology', 2162402, 3.049, 'Q1', 75, 266, 13099, 7012, 928, '2', '2012-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Oncology (Q1)'), (614, 'Transport Reviews', 1441647, 3.046, 'Q1', 82, 52, 3838, 1233, 106, '3', '1981-2020', 'Transportation (Q1)'), (615, 'Behavior Research Methods', 15543528, 3.042, 'Q1', 135, 235, 12638, 3371, 523, '2', '1968-1983, 2004-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Psychology (miscellaneous) (Q1)'), (616, 'RNA', 13558382, 3.037, 'Q1', 171, 160, 9407, 2166, 472, '2', '1995-2020', 'Molecular Biology (Q1)'), (617, 'Applied Energy', 3062619, 3.035, 'Q1', 212, 1729, 100144, 56804, 5304, '3', '1975-2020', 'Building and Construction (Q1); Energy (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Mechanical Engineering (Q1)'), (618, 'Memoirs of the American Mathematical Society', 659266, 3.034, 'Q1', 70, 32, 1763, 518, 122, '2', '1996-2006, 2009-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (619, 'Journal of Advances in Modeling Earth Systems', 19422466, 3.03, 'Q1', 58, 231, 17521, 3261, 527, '2', '2011-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Chemistry (Q1); Global and Planetary Change (Q1)'), (620, 'Environmental Innovation and Societal Transit', 22104224, 3.028, 'Q1', 52, 123, 9723, 1454, 135, '16', '2011-2020', 'Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1); Social Sciences (miscellaneous) (Q1)'), (621, 'Computers and Education', 3601315, 3.026, 'Q1', 179, 230, 16615, 6272, 557, '3', '1976-2020', 'Computer Science (miscellaneous) (Q1); Education (Q1); E-learning (Q1)'), (622, 'American Journal of Sports Medicine', 3635465, 3.021, 'Q1', 221, 464, 16320, 7409, 1155, '2', '1973-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (623, 'npj Parkinson s Disease', 23738057, 3.02, 'Q1', 24, 40, 2543, 678, 80, '2', '2015-2020', 'Cellular and Molecular Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1)'), (624, 'Annual Review of Analytical Chemistry', 19361335, 3.011, 'Q1', 73, 22, 2316, 638, 67, '2', '2008-2020', 'Analytical Chemistry (Q1); Medicine (miscellaneous) (Q1)'), (625, 'Arteriosclerosis, Thrombosis, and Vascular Bi', 10795642, 3.007, 'Q1', 270, 368, 17479, 5327, 794, '2', '1990-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (626, 'Critical Care Medicine', 903493, 3.002, 'Q1', 271, 690, 13925, 7557, 1064, '2', '1973-2020', 'Critical Care and Intensive Care Medicine (Q1)'), (627, 'Child Development Perspectives', 17508606, 3, 'Q1', 71, 38, 1653, 874, 130, '3', '2008-2020', 'Developmental and Educational Psychology (Q1); Life-span and Life-course Studies (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (628, 'Progress in Nuclear Magnetic Resonance Spectr', 796565, 2.999, 'Q1', 104, 19, 3434, 592, 56, '16', '1965-1967, 1969-1973, 1975-1982, 1984-2020', 'Analytical Chemistry (Q1); Biochemistry (Q1); Materials Science (miscellaneous) (Q1); Nuclear and High Energy Physics (Q1); Spectroscopy (Q1)'), (629, 'Journal of Clinical Epidemiology', 8954356, 2.993, 'Q1', 212, 314, 8870, 3242, 528, '2', '1988-2020', 'Epidemiology (Q1)'), (630, 'Nanoscale Horizons', 20556764, 2.992, 'Q1', 38, 183, 10305, 2211, 224, '3', '2016-2020', 'Materials Science (miscellaneous) (Q1)'), (631, 'Communication Monographs', 3637751, 2.987, 'Q1', 70, 37, 2003, 546, 75, '3', '1976-2020', 'Communication (Q1); Language and Linguistics (Q1)'), (632, 'Journal of Photochemistry and Photobiology C:', 13895567, 2.987, 'Q1', 92, 12, 2682, 848, 67, '16', '2000-2020', 'Catalysis (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)'), (633, 'Hypertension', 194911, 2.986, 'Q1', 265, 481, 18806, 6627, 932, '2', '1979-2020', 'Internal Medicine (Q1)'), (634, 'IEEE Journal on Selected Areas in Communicati', 7338716, 2.986, 'Q1', 236, 229, 9052, 9483, 608, '2', '1983-2020', 'Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1)'), (635, 'Business and Society', 76503, 2.983, 'Q1', 75, 98, 8666, 1008, 130, '3', '1960-1978, 1980-1981, 1983-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (636, 'Ecography', 16000587, 2.973, 'Q1', 128, 156, 12350, 3243, 492, '3', '1978-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (637, 'Protein and Cell', 16748018, 2.973, 'Q1', 63, 132, 6672, 1862, 198, '5', '2010-2020', 'Biochemistry (Q1); Biotechnology (Q1); Cell Biology (Q1); Drug Discovery (Q1); Medicine (miscellaneous) (Q1)'), (638, 'Journal of Pathology', 10969896, 2.964, 'Q1', 184, 145, 8741, 3148, 434, '3', '1969-2020', 'Pathology and Forensic Medicine (Q1)'), (639, 'ISPRS Journal of Photogrammetry and Remote Se', 9242716, 2.96, 'Q1', 138, 264, 16114, 7306, 668, '16', '1989-2020', 'Atomic and Molecular Physics, and Optics (Q1); Computer Science Applications (Q1); Computers in Earth Sciences (Q1); Engineering (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (640, 'Molecular Ecology Resources', 1755098, 2.96, 'Q1', 136, 148, 9416, 2928, 393, '3', '2008-2020', 'Biotechnology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)'), (641, 'GLIA', 8941491, 2.954, 'Q1', 164, 175, 15089, 3249, 472, '2', '1988-2020', 'Cellular and Molecular Neuroscience (Q1); Neurology (Q1)'), (642, 'Journal of the American Society of Echocardio', 10976795, 2.95, 'Q1', 132, 245, 5721, 2038, 372, '2', '1988-2020', 'Cardiology and Cardiovascular Medicine (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (643, 'Family Business Review', 17416248, 2.947, 'Q1', 105, 26, 2519, 541, 50, '2', '1988-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1)'), (644, 'GigaScience', 2047217, 2.947, 'Q1', 54, 141, 7970, 3075, 363, '3', '2012-2020', 'Computer Science Applications (Q1); Health Informatics (Q1)'), (645, 'Neuropsychology Review', 15736660, 2.944, 'Q1', 92, 33, 3215, 659, 82, '2', '1990-1992, 1994-2020', 'Neuropsychology and Physiological Psychology (Q1)'), (646, 'Archive for Rational Mechanics and Analysis', 39527, 2.933, 'Q1', 106, 143, 5380, 1735, 375, '2', '1957-2020', 'Analysis (Q1); Mathematics (miscellaneous) (Q1); Mechanical Engineering (Q1)'), (647, 'mSystems', 23795077, 2.931, 'Q1', 39, 325, 20619, 3137, 442, '2', '2016-2020', 'Biochemistry (Q1); Computer Science Applications (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Microbiology (Q1); Modeling and Simulation (Q1); Molecular Biology (Q1); Physio'), (648, 'Cellular and Molecular Life Sciences', 1420682, 2.928, 'Q1', 223, 320, 35862, 7263, 869, '19', '1952, 1997-2020', 'Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1); Molecular Medicine (Q1); Pharmacology (Q1)'), (649, 'ILR Review', 197939, 2.927, 'Q1', 78, 77, 3806, 516, 123, '2', '1978, 1981-1982, 1984, 1996-2020', 'Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (650, 'American Heart Journal', 10976744, 2.925, 'Q1', 187, 252, 7559, 2605, 592, '2', '1925-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (651, 'Advances in Nonlinear Analysis', 2191950, 2.924, 'Q1', 28, 45, 1482, 887, 183, '5', '2012-2021', 'Analysis (Q1)'), (652, 'Current Opinion in Solid State and Materials ', 13590286, 2.918, 'Q1', 112, 30, 3680, 927, 75, '3', '1996-1999, 2001-2020', 'Materials Science (miscellaneous) (Q1)'), (653, 'Human Relations', 187267, 2.91, 'Q1', 134, 123, 10029, 1197, 204, '3', '1947-2020', 'Arts and Humanities (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Social Sciences (miscellaneous) (Q1); Strategy and Management (Q1)'), (654, 'Neurology', 283878, 2.91, 'Q1', 364, 1419, 7332, 14325, 2238, '2', '1951-2020', 'Neurology (clinical) (Q1)'), (655, 'Soil Biology and Biochemistry', 380717, 2.91, 'Q1', 222, 321, 21846, 7176, 960, '3', '1933, 1969-2021', 'Microbiology (Q1); Soil Science (Q1)'), (656, 'American Journal of Gastroenterology', 15720241, 2.907, 'Q1', 252, 482, 4992, 4924, 762, '2', '1938, 1947-2020', 'Gastroenterology (Q1); Hepatology (Q1)'), (657, 'Structure', 9692126, 2.907, 'Q1', 182, 150, 7474, 2494, 574, '2', '1993-2020', 'Molecular Biology (Q1); Structural Biology (Q1)'), (658, 'Political Behavior', 1909320, 2.9, 'Q1', 69, 114, 7337, 682, 155, '2', '1979-2020', 'Sociology and Political Science (Q1)'), (659, 'Journal of Policy Analysis and Management', 2768739, 2.898, 'Q1', 84, 74, 2819, 537, 122, '2', '1981-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (660, 'Perspectives on Politics', 15375927, 2.898, 'Q1', 81, 99, 7088, 512, 120, '3', '2003-2020', 'Political Science and International Relations (Q1)'), (661, 'Cement and Concrete Composites', 9589465, 2.896, 'Q1', 155, 320, 18003, 5736, 679, '3', '1989-2020', 'Building and Construction (Q1); Materials Science (miscellaneous) (Q1)'), (662, 'Econometric Theory', 2664666, 2.894, 'Q1', 73, 70, 2762, 294, 113, '3', '1985-2020', 'Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1)'), (663, 'Advanced Optical Materials', 21951071, 2.89, 'Q1', 91, 649, 40522, 12979, 1336, '2', '2013-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (664, 'American Journal of Transplantation', 16006135, 2.89, 'Q1', 188, 607, 15873, 5955, 970, '3', '2001-2020', 'Immunology and Allergy (Q1); Pharmacology (medical) (Q1); Transplantation (Q1)'), (665, 'Medical Image Analysis', 13618415, 2.887, 'Q1', 135, 161, 9223, 7895, 411, '16', '1996-2020', 'Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1); Health Informatics (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Im'), (666, 'IEEE Transactions on Fuzzy Systems', 10636706, 2.886, 'Q1', 191, 377, 13012, 7556, 653, '2', '1993-2020', 'Applied Mathematics (Q1); Artificial Intelligence (Q1); Computational Theory and Mathematics (Q1); Control and Systems Engineering (Q1)'), (667, 'Clinical Microbiology and Infection', 1198743, 2.884, 'Q1', 154, 503, 12723, 5153, 683, '3', '1995-2020', 'Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1)'), (668, 'Materials Research Letters', 21663831, 2.883, 'Q1', 47, 60, 2119, 1889, 223, '3', '2013-2020', 'Materials Science (miscellaneous) (Q1)'), (669, 'IEEE Transactions on Neural Networks and Lear', 2162237, 2.882, 'Q1', 212, 609, 22815, 14914, 1107, '2', '2012-2020', 'Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Software (Q1)'), (670, 'Language Learning', 14679922, 2.882, 'Q1', 103, 55, 3983, 538, 112, '3', '1948-1953, 1955-1956, 1958-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (671, 'Annual Review of Animal Biosciences', 21658110, 2.879, 'Q1', 38, 18, 2635, 477, 57, '2', '2013-2020', 'Animal Science and Zoology (Q1); Biotechnology (Q1); Genetics (Q1); Veterinary (miscellaneous) (Q1)'), (672, 'Journal of Applied Econometrics', 10991255, 2.878, 'Q1', 99, 53, 2120, 702, 211, '3', '1986-2020', 'Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1)'), (673, 'Materials Today Physics', 25425293, 2.878, 'Q1', 30, 95, 6841, 1259, 122, '3', '2017-2020', 'Energy (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (674, 'Educational Researcher', 13189, 2.876, 'Q1', 124, 76, 3308, 736, 140, '2', '1972-2020', 'Education (Q1)'), (675, 'Materials Today Nano', 25888420, 2.869, 'Q1', 15, 33, 3815, 521, 55, '3', '2018-2020', 'Biomaterials (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1)'), (676, 'Medicinal Research Reviews', 1986325, 2.868, 'Q1', 130, 105, 22297, 1985, 157, '2', '1981-2020', 'Drug Discovery (Q1); Molecular Medicine (Q1); Pharmacology (Q1)'), (677, 'Gondwana Research', 1342937, 2.859, 'Q1', 135, 243, 31951, 3698, 517, '2', '1997-2020', 'Geology (Q1)'), (678, 'Quantum', 2521327, 2.859, 'Q1', 29, 156, 8444, 2309, 215, '28', '2019-2020', 'Atomic and Molecular Physics, and Optics (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (679, 'Psychological Medicine', 14698978, 2.857, 'Q1', 209, 646, 35221, 5530, 834, '3', '1970-2020', 'Applied Psychology (Q1); Psychiatry and Mental Health (Q1)'), (680, 'Kidney International Supplements', 21571716, 2.855, 'Q1', 38, 12, 470, 195, 22, '2', '2011-2020', 'Nephrology (Q1)'), (681, 'npj Quantum Materials', 23974648, 2.852, 'Q1', 38, 92, 4551, 1677, 193, '3', '2016-2020', 'Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (682, 'Environmental Science &amp; Technology', 13936, 2.851, 'Q1', 397, 1633, 92610, 43144, 4591, '2', '1958, 1967-2020', 'Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Medicine (miscellaneous) (Q1)'), (683, 'Acta Psychiatrica Scandinavica', 16000447, 2.849, 'Q1', 146, 123, 5550, 1998, 300, '3', '1926-1949, 1953-2020', 'Psychiatry and Mental Health (Q1)'), (684, 'Molecular Metabolism', 22128778, 2.848, 'Q1', 65, 195, 14703, 3387, 466, '5', '2012-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (685, 'Obesity Reviews', 1467789, 2.845, 'Q1', 162, 145, 11488, 3520, 381, '3', '2000-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Public Health, Environmental and Occupational Health (Q1)'), (686, 'Current Opinion in Biotechnology', 18790429, 2.843, 'Q1', 202, 193, 11888, 4236, 444, '3', '1990-2020', 'Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1)'), (687, 'European Journal of Personality', 8902070, 2.839, 'Q1', 84, 65, 6448, 576, 101, '3', '1987-2020', 'Social Psychology (Q1)'), (688, 'British Journal of Cancer', 15321827, 2.833, 'Q1', 236, 457, 19555, 7208, 1049, '3', '1947-2020', 'Cancer Research (Q1); Oncology (Q1)'), (689, 'IUCrJ', 20522525, 2.832, 'Q1', 42, 129, 5840, 1500, 266, '3', '2014-2020', 'Biochemistry (Q1); Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (690, 'Protection and Control of Modern Power System', 23670983, 2.831, 'Q1', 24, 33, 1170, 917, 68, '37', '2018-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Safety, Risk, Reliability and Quality (Q1)'), (691, 'Earth and Planetary Science Letters', 12821, 2.829, 'Q1', 248, 543, 29632, 9373, 1673, '16', '1966-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1); Space and Planetary Science (Q1)'), (692, 'Gastric Cancer', 14363291, 2.824, 'Q1', 81, 115, 3683, 2794, 373, '6', '2000-2020', 'Cancer Research (Q1); Gastroenterology (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)'), (693, 'IEEE Communications Magazine', 1636804, 2.823, 'Q1', 252, 190, 2243, 13371, 853, '2', '1979-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1)'), (694, 'Frontiers in Neuroendocrinology', 913022, 2.818, 'Q1', 133, 35, 6797, 1118, 125, '2', '1973, 1990-2020', 'Endocrine and Autonomic Systems (Q1)'), (695, 'Global Strategy Journal', 20425805, 2.814, 'Q1', 24, 38, 3908, 475, 73, '2', '2014-2020', 'Business and International Management (Q1); Strategy and Management (Q1)'), (696, 'Communications Biology', 23993642, 2.812, 'Q1', 26, 737, 40950, 3837, 658, '2', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (697, 'Human Molecular Genetics', 14602083, 2.811, 'Q1', 276, 280, 15836, 6438, 1137, '3', '1992-2020', 'Genetics (Q1); Genetics (clinical) (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)'), (698, 'Information Communication and Society', 1369118, 2.806, 'Q1', 80, 214, 11266, 2542, 344, '3', '2001, 2005-2020', 'Communication (Q1); Library and Information Sciences (Q1)'), (699, 'Journal of Cachexia, Sarcopenia and Muscle', 21905991, 2.803, 'Q1', 66, 150, 8380, 3189, 276, '2', '2010-2020', 'Orthopedics and Sports Medicine (Q1); Physiology (medical) (Q1)'), (700, 'Alzheimer s Research and Therapy', 17589193, 2.802, 'Q1', 68, 164, 9059, 2337, 334, '3', '2010-2020', 'Cognitive Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1)'), (701, 'Circulation. Genomic and precision medicine', 25748300, 2.801, 'Q1', 79, 106, 2446, 1242, 250, '2', '2018-2020', 'Cardiology and Cardiovascular Medicine (Q1); Genetics (Q1); Genetics (clinical) (Q1)'), (702, 'Comprehensive Reviews in Food Science and Foo', 15414337, 2.801, 'Q1', 110, 142, 25529, 3419, 246, '2', '2002-2003, 2005-2020', 'Food Science (Q1)'), (703, 'Developmental Science', 14677687, 2.801, 'Q1', 127, 161, 10108, 2126, 420, '3', '1998-2020', 'Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1)'), (704, 'Genetics', 19432631, 2.792, 'Q1', 246, 239, 17529, 4402, 973, '2', '1945-1951, 1961-2020', 'Genetics (Q1)'), (705, 'Haematologica', 15928721, 2.782, 'Q1', 142, 585, 17191, 5999, 740, '7', '1947-2020', 'Hematology (Q1)'), (706, 'Journal of Peace Research', 223433, 2.781, 'Q1', 100, 97, 5860, 660, 167, '3', '1964-2020', 'Political Science and International Relations (Q1); Safety Research (Q1); Sociology and Political Science (Q1)'), (707, 'SIAM Journal on Numerical Analysis', 361429, 2.78, 'Q1', 134, 128, 4428, 2043, 390, '2', '1969-1972, 1974-1978, 1983-1987, 1990-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Numerical Analysis (Q1)'), (708, 'Wiley Interdisciplinary Reviews: Developmenta', 17597684, 2.779, 'Q1', 45, 33, 5032, 453, 73, '3', '2012-2020', 'Cell Biology (Q1); Developmental Biology (Q1); Molecular Biology (Q1)'), (709, 'Information Fusion', 18726305, 2.776, 'Q1', 107, 168, 13659, 5599, 312, '16', '2000-2021', 'Hardware and Architecture (Q1); Information Systems (Q1); Signal Processing (Q1); Software (Q1)'), (710, 'Geotechnique', 17517656, 2.775, 'Q1', 135, 91, 3646, 1386, 264, '3', '1948-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (711, 'Cardiovascular Research', 17553245, 2.774, 'Q1', 219, 281, 12774, 4000, 554, '3', '1967-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (Q1); Physiology (medical) (Q1)'), (712, 'Computer-Aided Civil and Infrastructure Engin', 14678667, 2.773, 'Q1', 82, 116, 5381, 2555, 191, '3', '1986-2020', 'Civil and Structural Engineering (Q1); Computational Theory and Mathematics (Q1); Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1)'), (713, 'Biotechnology Advances', 18731899, 2.772, 'Q1', 191, 130, 25746, 4598, 321, '2', '1983-2020', 'Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biotechnology (Q1)'), (714, 'Compositio Mathematica', 10437, 2.772, 'Q1', 63, 58, 2181, 722, 229, '3', '1996-2020', 'Algebra and Number Theory (Q1)'), (715, 'IEEE Transactions on Sustainable Energy', 19493029, 2.771, 'Q1', 120, 271, 9066, 5889, 560, '2', '2010-2020', 'Renewable Energy, Sustainability and the Environment (Q1)'), (716, 'Journal of Carcinogenesis', 9746773, 2.771, 'Q1', 38, 6, 142, 164, 15, '4', '2002-2020', 'Cancer Research (Q1); Health, Toxicology and Mutagenesis (Q1); Oncology (Q1)'), (717, 'International Journal of Information Manageme', 2684012, 2.77, 'Q1', 114, 224, 20318, 5853, 373, '3', '1970, 1986-2021', 'Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1); Management Informatio'), (718, 'Contemporary Accounting Research', 8239150, 2.769, 'Q1', 99, 90, 6105, 879, 238, '2', '1984-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (719, 'Heart Rhythm', 15475271, 2.768, 'Q1', 131, 335, 10038, 4353, 744, '16', '2004-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q1)'), (720, 'Eurosurveillance', 15607917, 2.766, 'Q1', 104, 281, 5433, 3668, 631, '20', '2001-2020', 'Epidemiology (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Virology (Q1)'), (721, 'Journal of Arthroplasty', 8835403, 2.766, 'Q1', 135, 810, 23925, 9335, 1949, '2', '1986-2020', 'Orthopedics and Sports Medicine (Q1)'), (722, 'Health systems in transition', 18176127, 2.765, 'Q1', 32, 5, 0, 112, 13, '25', '2010-2020', 'Medicine (miscellaneous) (Q1)'), (723, 'International Journal of Project Management', 2637863, 2.762, 'Q1', 144, 55, 4711, 2547, 268, '3', '1983-2020', 'Business and International Management (Q1); Management, Monitoring, Policy and Law (Q1); Management of Technology and Innovation (Q1)'), (724, 'BioScience', 15253244, 2.761, 'Q1', 209, 124, 5454, 2100, 258, '2', '1972-1979, 1983-1986, 1988-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (725, 'Molecular and Cellular Proteomics', 15359476, 2.757, 'Q1', 187, 156, 9430, 3143, 564, '2', '2002-2020', 'Analytical Chemistry (Q1); Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)'), (726, 'Quarterly Journal of Political Science', 15540634, 2.757, 'Q1', 34, 18, 958, 124, 52, '2', '2006-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (727, 'Journal of the American Taxation Association', 15588017, 2.756, 'Q1', 23, 13, 792, 66, 28, '2', '2003, 2007, 2009-2020', 'Accounting (Q1); Finance (Q1)'), (728, 'Clinical journal of the American Society of N', 1555905, 2.755, 'Q1', 151, 286, 7475, 4239, 626, '2', '2006-2020', 'Critical Care and Intensive Care Medicine (Q1); Epidemiology (Q1); Nephrology (Q1); Transplantation (Q1)'), (729, 'Philosophical Transactions of the Royal Socie', 9628436, 2.753, 'Q1', 272, 440, 34639, 7714, 1202, '3', '1947, 1950-1951, 1970-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (730, 'Journal of Experimental and Clinical Cancer R', 17569966, 2.752, 'Q1', 81, 270, 15775, 9324, 965, '3', '1982-2020', 'Cancer Research (Q1); Oncology (Q1)'), (731, 'Fish and Fisheries', 14672960, 2.747, 'Q1', 109, 80, 7929, 1650, 224, '3', '2001-2020', 'Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q1); Oceanography (Q1)'), (732, 'npj Breast Cancer', 23744677, 2.746, 'Q1', 21, 63, 3331, 621, 102, '3', '2015-2020', 'Oncology (Q1); Pharmacology (medical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (733, 'Energy Conversion and Management', 1968904, 2.743, 'Q1', 192, 1125, 61183, 35051, 3458, '3', '1979-2020', 'Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (734, 'Clinical Psychological Science', 21677034, 2.74, 'Q1', 47, 78, 4494, 1351, 239, '2', '2013-2020', 'Clinical Psychology (Q1)'), (735, 'Journal of Immunology', 15506606, 2.737, 'Q1', 372, 654, 36038, 12042, 2239, '2', '1945-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (736, 'World Bank Research Observer', 15646971, 2.737, 'Q1', 65, 3, 279, 141, 30, '3', '1986-2019', 'Development (Q1); Economics and Econometrics (Q1)'), (737, 'ACS Photonics', 23304022, 2.735, 'Q1', 89, 405, 20799, 12440, 1464, '2', '2014-2020', 'Atomic and Molecular Physics, and Optics (Q1); Biotechnology (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (738, 'Journal of Integrative Plant Biology', 16729072, 2.734, 'Q1', 83, 145, 8477, 1450, 197, '3', '2005-2020', 'Biochemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Plant Science (Q1)'), (739, 'International Journal of Engineering Science', 207225, 2.731, 'Q1', 111, 133, 7216, 2939, 336, '3', '1963-2020', 'Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (740, 'Scientific Studies of Reading', 1532799, 2.731, 'Q1', 63, 57, 3614, 492, 102, '2', '2004-2020', 'Education (Q1); Psychology (miscellaneous) (Q1)'), (741, 'MIS Quarterly Executive', 15401979, 2.729, 'Q1', 40, 26, 254, 565, 55, '2', '2010-2020', 'Economics and Econometrics (Q1)'), (742, 'European Review of Social Psychology', 10463283, 2.728, 'Q1', 64, 15, 1898, 156, 25, '3', '1990-2000, 2002-2020', 'Social Psychology (Q1)'), (743, 'Journal of the International AIDS Society', 17582652, 2.724, 'Q1', 62, 208, 8141, 2424, 485, '2', '2009-2020', 'Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1)'), (744, 'Public Administration Review', 333352, 2.721, 'Q1', 139, 162, 8805, 1348, 239, '3', '1978-1983, 1985, 1988, 1996-2020', 'Marketing (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (745, 'Molecular Cancer Therapeutics', 15357163, 2.717, 'Q1', 173, 244, 10829, 4623, 726, '2', '2001-2020', 'Cancer Research (Q1); Oncology (Q1)'), (746, 'Nanophotonics', 21928614, 2.717, 'Q1', 61, 421, 31807, 4087, 387, '5', '2012-2020', 'Atomic and Molecular Physics, and Optics (Q1); Biotechnology (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (747, 'Annual Review of Chemical and Biomolecular En', 19475438, 2.715, 'Q1', 59, 24, 3036, 674, 59, '2', '2010-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (748, 'Tobacco Control', 9644563, 2.715, 'Q1', 122, 295, 9437, 2794, 446, '3', '1996-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (749, 'Additive Manufacturing', 22148604, 2.71, 'Q1', 65, 644, 33427, 9606, 763, '16', '2014-2020', 'Biomedical Engineering (Q1); Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1)'), (750, 'American Journal of Ophthalmology', 29394, 2.704, 'Q1', 186, 428, 11979, 4453, 848, '2', '1918-2020', 'Ophthalmology (Q1)'), (751, 'Neuropsychopharmacology', 893133, 2.704, 'Q1', 219, 310, 18081, 5570, 830, '3', '1987-2020', 'Pharmacology (Q1); Psychiatry and Mental Health (Q1)'), (752, 'Experimental and Molecular Medicine', 12263613, 2.703, 'Q1', 82, 185, 13393, 3910, 481, '13', '1996-2020', 'Biochemistry (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)'), (753, 'Journal of Business and Psychology', 1573353, 2.703, 'Q1', 75, 91, 8044, 895, 140, '2', '1986-2020', 'Applied Psychology (Q1); Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)'), (754, 'Natural Product Reports', 2650568, 2.703, 'Q1', 177, 92, 12696, 2233, 239, '3', '1984-2020', 'Biochemistry (Q1); Drug Discovery (Q1); Organic Chemistry (Q1)'), (755, '2D Materials', 20531583, 2.702, 'Q1', 72, 202, 14354, 6182, 720, '3', '2014-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (756, 'Lancet Child and Adolescent Health, The', 23524642, 2.702, 'Q1', 27, 222, 4327, 1616, 167, '16', '2017-2020', 'Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (757, 'Cerebral Cortex', 10473211, 2.694, 'Q1', 250, 441, 33586, 6086, 1161, '3', '1991-2020', 'Cellular and Molecular Neuroscience (Q1); Cognitive Neuroscience (Q1)'), (758, 'Journal for Research in Mathematics Education', 218251, 2.694, 'Q1', 78, 32, 1567, 263, 67, '2', '1996-2020', 'Education (Q1); Mathematics (miscellaneous) (Q1)'), (759, 'Annual review of food science and technology', 19411413, 2.692, 'Q1', 68, 16, 2486, 975, 76, '2', '2010-2020', 'Food Science (Q1)'), (760, 'Circulation: Cardiovascular Quality and Outco', 19417705, 2.692, 'Q1', 87, 182, 4346, 1678, 379, '2', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)'), (761, 'npj Vaccines', 20590105, 2.691, 'Q1', 22, 105, 5357, 866, 133, '3', '2016-2020', 'Immunology (Q1); Infectious Diseases (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (762, 'International Security', 15314804, 2.69, 'Q1', 106, 23, 1272, 312, 48, '2', '1984, 1996-2020', 'Law (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (763, 'Journal of Infectious Diseases', 221899, 2.69, 'Q1', 252, 735, 21535, 8125, 1622, '3', '1904-2020', 'Immunology and Allergy (Q1); Infectious Diseases (Q1)'), (764, 'Theranostics', 18387640, 2.689, 'Q1', 97, 849, 57817, 14693, 1337, '11', '2012-2020', 'Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)'), (765, 'Epilepsia', 15281167, 2.687, 'Q1', 191, 321, 11656, 5628, 816, '3', '1909-1915, 1937-1950, 1952-1955, 1959-2020', 'Neurology (Q1); Neurology (clinical) (Q1)'), (766, 'Bayesian Analysis', 19316690, 2.685, 'Q1', 58, 48, 2348, 634, 140, '2', '2006-2020', 'Applied Mathematics (Q1); Statistics and Probability (Q1)'), (767, 'Blood advances', 24739537, 2.685, 'Q1', 39, 652, 25516, 6065, 1090, '2', '2017-2020', 'Hematology (Q1)'), (768, 'Brain Stimulation', 1935861, 2.685, 'Q1', 81, 292, 10698, 2939, 358, '2', '2008-2020', 'Biophysics (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)'), (769, 'Circulation: Arrhythmia and Electrophysiology', 19413084, 2.684, 'Q1', 102, 180, 3828, 2180, 423, '2', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Physiology (medical) (Q1)'), (770, 'Nature reviews. Rheumatology', 17594790, 2.683, 'Q1', 137, 195, 7286, 2972, 381, '3', '2009-2020', 'Rheumatology (Q1)'), (771, 'Critical Care', 1466609, 2.681, 'Q1', 171, 693, 15269, 6343, 756, '3', '1998-2020', 'Critical Care and Intensive Care Medicine (Q1)'), (772, 'Wiley Interdisciplinary Reviews: Climate Chan', 17577799, 2.678, 'Q1', 75, 54, 5927, 1277, 154, '2', '2010-2020', 'Atmospheric Science (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1)'), (773, 'American Journal of Kidney Diseases', 15236838, 2.677, 'Q1', 214, 264, 7570, 3775, 538, '3', '1981-2020', 'Nephrology (Q1)'), (774, 'Traffic', 16000854, 2.677, 'Q1', 130, 58, 4727, 1055, 202, '25', '2000-2020', 'Biochemistry (Q1); Cell Biology (Q1); Genetics (Q1); Molecular Biology (Q1); Structural Biology (Q1)'), (775, 'Journal of Health Economics', 18791646, 2.676, 'Q1', 124, 86, 4550, 1022, 253, '16', '1982-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (776, 'Organizational Behavior and Human Decision Pr', 7495978, 2.676, 'Q1', 146, 89, 7645, 691, 157, '2', '1985-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)'), (777, 'Trends in Food Science and Technology', 9242244, 2.676, 'Q1', 188, 363, 38684, 9617, 670, '3', '1990-2020', 'Biotechnology (Q1); Food Science (Q1)'), (778, 'Journal of Conflict Resolution', 220027, 2.671, 'Q1', 106, 78, 5569, 915, 254, '2', '1957-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (779, 'Blood Reviews', 15321681, 2.67, 'Q1', 95, 76, 9522, 1176, 152, '2', '1987-2020', 'Hematology (Q1); Oncology (Q1)'), (780, 'Obstetrics and Gynecology', 297844, 2.664, 'Q1', 220, 569, 3967, 6104, 1272, '2', '1953-2020', 'Obstetrics and Gynecology (Q1)'), (781, 'Developmental Cognitive Neuroscience', 18789293, 2.662, 'Q1', 64, 123, 9112, 2037, 304, '16', '2011-2020', 'Cognitive Neuroscience (Q1)'), (782, 'International Economic Review', 14682354, 2.658, 'Q1', 86, 64, 2926, 374, 192, '3', '1979-1985, 1988-2020', 'Economics and Econometrics (Q1)'), (783, 'Journal of Public Relations Research', 1062726, 2.658, 'Q1', 46, 11, 855, 197, 38, '3', '1992-1995, 2004, 2007-2020', 'Public Administration (Q1); Sociology and Political Science (Q1)'), (784, 'Journal of Service Management', 17575818, 2.658, 'Q1', 60, 72, 5916, 1203, 118, '3', '2009-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (785, 'Environment and Planning D: Society and Space', 2637758, 2.655, 'Q1', 105, 77, 5278, 1009, 177, '3', '1983-2020', 'Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (786, 'Geochemical Perspectives Letters', 2410339, 2.653, 'Q1', 22, 19, 521, 495, 95, '8', '2015-2020', 'Environmental Chemistry (Q1); Geochemistry and Petrology (Q1); Geology (Q1)'), (787, 'International Journal of Behavioral Nutrition', 14795868, 2.652, 'Q1', 117, 160, 9843, 3636, 438, '3', '2004-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)'), (788, 'Journal of NeuroInterventional Surgery', 17598486, 2.652, 'Q1', 55, 341, 8187, 3971, 773, '3', '2009-2020', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Surgery (Q1)'), (789, 'Translational Psychiatry', 21583188, 2.652, 'Q1', 82, 417, 27717, 5737, 895, '3', '2011-2020', 'Biological Psychiatry (Q1); Cellular and Molecular Neuroscience (Q1); Psychiatry and Mental Health (Q1)'), (790, 'Chest', 123692, 2.647, 'Q1', 289, 854, 19519, 6472, 938, '2', '1970-2020', 'Cardiology and Cardiovascular Medicine (Q1); Critical Care and Intensive Care Medicine (Q1); Pulmonary and Respiratory Medicine (Q1)'), (791, 'Frontiers in Immunology', 16643224, 2.646, 'Q1', 124, 3517, 278279, 54184, 7854, '19', '2010-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (792, 'Journal of Product Innovation Management', 15405885, 2.646, 'Q1', 144, 29, 2617, 1010, 121, '3', '1984-2020', 'Engineering (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (793, 'Plant, Cell and Environment', 1407791, 2.646, 'Q1', 200, 231, 18208, 4745, 659, '3', '1978-2020', 'Physiology (Q1); Plant Science (Q1)'), (794, 'Journal of Petrology', 14602415, 2.644, 'Q1', 169, 93, 10979, 1093, 228, '3', '1960-2019', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (795, 'Progress in Surface Science', 796816, 2.643, 'Q1', 80, 4, 830, 265, 27, '3', '1971-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)'), (796, 'Earth s Future', 23284277, 2.641, 'Q1', 39, 114, 8370, 2417, 276, '2', '2014-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)'), (797, 'npj Genomic Medicine', 20567944, 2.641, 'Q1', 22, 57, 3034, 606, 93, '3', '2016-2020', 'Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)'), (798, 'Journal of Metamorphic Geology', 15251314, 2.639, 'Q1', 114, 48, 4252, 747, 157, '3', '1983-2020', 'Geochemistry and Petrology (Q1); Geology (Q1)'), (799, 'American Journal of Science', 29599, 2.638, 'Q1', 111, 27, 2856, 415, 87, '2', '1945-1948, 1950, 1969, 1973, 1975-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (800, 'Molecular Autism', 20402392, 2.638, 'Q1', 56, 98, 7831, 1396, 183, '3', '2010-2020', 'Developmental Biology (Q1); Developmental Neuroscience (Q1); Molecular Biology (Q1); Psychiatry and Mental Health (Q1)'), (801, 'Stata Journal', 1536867, 2.637, 'Q1', 76, 54, 975, 586, 155, '5', '2005-2020', 'Mathematics (miscellaneous) (Q1)'), (802, 'Information Systems Journal', 13501917, 2.635, 'Q1', 89, 46, 4169, 1019, 112, '3', '1991-2020', 'Computer Networks and Communications (Q1); Information Systems (Q1); Software (Q1)'), (803, 'Clinical Gastroenterology and Hepatology', 15427714, 2.634, 'Q1', 169, 694, 14009, 6091, 1097, '3', '2003-2020', 'Gastroenterology (Q1); Hepatology (Q1)'), (804, 'Depression and Anxiety', 10914269, 2.634, 'Q1', 129, 124, 5845, 2113, 325, '2', '1996-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (805, 'Journal of Bone and Joint Surgery - Series A', 15351386, 2.634, 'Q1', 260, 441, 2841, 5003, 975, '2', '1946-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q1); Surgery (Q1)'), (806, 'Advanced Structural and Chemical Imaging', 21980926, 2.628, 'Q1', 17, 3, 112, 204, 32, '19', '2015-2020', 'Chemical Engineering (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Spectroscopy (Q1)'), (807, 'PLoS Computational Biology', 15537358, 2.628, 'Q1', 182, 767, 42757, 10337, 1789, '2', '2005-2020', 'Cellular and Molecular Neuroscience (Q1); Computational Theory and Mathematics (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Modeling and Simulation (Q1); Molec'), (808, 'American Journal of Surgical Pathology', 15320979, 2.625, 'Q1', 210, 208, 7162, 3719, 583, '2', '1977-2020', 'Anatomy (Q1); Pathology and Forensic Medicine (Q1); Surgery (Q1)'), (809, 'Journal of Internal Medicine', 9546820, 2.625, 'Q1', 160, 173, 9824, 2145, 274, '3', '1989-2020', 'Internal Medicine (Q1)'), (810, 'Atmospheric Chemistry and Physics', 16807324, 2.622, 'Q1', 206, 824, 62108, 16399, 2607, '5', '2001-2020', 'Atmospheric Science (Q1)'), (811, 'Autoimmunity Reviews', 15689972, 2.621, 'Q1', 122, 177, 12128, 3509, 408, '16', '2002-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (812, 'Circulation: Cardiovascular Interventions', 19417632, 2.621, 'Q1', 95, 179, 3355, 1951, 385, '2', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (813, 'International Journal of Plasticity', 7496419, 2.62, 'Q1', 141, 203, 14639, 3765, 471, '3', '1985-2020', 'Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (814, 'Molecular Ecology', 1365294, 2.619, 'Q1', 225, 410, 32391, 6685, 1181, '3', '1992-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (815, 'Accounting, Organizations and Society', 3613682, 2.617, 'Q1', 133, 51, 4275, 575, 109, '3', '1976-2020', 'Accounting (Q1); Applied Psychology (Q1); Information Systems and Management (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)'), (816, 'Journal of Virology', 10985514, 2.617, 'Q1', 292, 733, 40399, 12098, 2458, '2', '1967-2020', 'Immunology (Q1); Insect Science (Q1); Microbiology (Q1); Virology (Q1)'), (817, 'Epigenetics and Chromatin', 17568935, 2.616, 'Q1', 52, 49, 3369, 1048, 214, '3', '2009-2020', 'Genetics (Q1); Molecular Biology (Q1)'), (818, 'Journal of Experimental Botany', 14602431, 2.616, 'Q1', 242, 564, 41388, 9251, 1405, '3', '1950-2020', 'Physiology (Q1); Plant Science (Q1)'), (819, 'Progress in Quantum Electronics', 796727, 2.616, 'Q1', 66, 14, 2132, 330, 30, '3', '1969-1971, 1973-1977, 1979-1985, 1987-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Statistical and Nonlinear Physics (Q1)'), (820, 'Journal of Neuroinflammation', 17422094, 2.615, 'Q1', 112, 368, 25388, 6876, 879, '3', '2004-2020', 'Cellular and Molecular Neuroscience (Q1); Immunology (Q1); Neurology (Q1); Neuroscience (miscellaneous) (Q1)'), (821, 'Quarterly Reviews of Biophysics', 335835, 2.613, 'Q1', 97, 12, 2074, 175, 34, '3', '1968-1985, 1987-2020', 'Biophysics (Q1)'), (822, 'Journal of Business Logistics', 21581592, 2.611, 'Q1', 79, 25, 2224, 365, 50, '2', '2001-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management Science and Operations Research (Q1)'), (823, 'Pediatrics', 314005, 2.611, 'Q1', 345, 949, 22254, 11168, 1855, '2', '1948-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (824, 'Astronomical Journal', 46256, 2.61, 'Q1', 271, 520, 36828, 15298, 1493, '3', '1987, 1989-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (825, 'Geology', 917613, 2.609, 'Q1', 215, 253, 8455, 4350, 829, '2', '1973-2020', 'Geology (Q1)'), (826, 'American Journal of Clinical Nutrition', 19383207, 2.608, 'Q1', 336, 361, 14157, 6276, 842, '2', '1952-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (827, 'Journal of Vocational Behavior', 10959084, 2.607, 'Q1', 151, 96, 7640, 2051, 304, '2', '1971-2020', 'Applied Psychology (Q1); Education (Q1); Life-span and Life-course Studies (Q1); Organizational Behavior and Human Resource Management (Q1)'), (828, 'Journal of Interactive Marketing', 10949968, 2.605, 'Q1', 106, 31, 2663, 850, 95, '2', '1997-2021', 'Business and International Management (Q1); Marketing (Q1)'), (829, 'EBioMedicine', 23523964, 2.596, 'Q1', 63, 559, 22442, 9220, 1211, '16', '2014-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (830, 'Modern Pathology', 15300285, 2.596, 'Q1', 153, 306, 11130, 3806, 633, '3', '1988-2020', 'Pathology and Forensic Medicine (Q1)'), (831, 'Current Opinion in Virology', 18796265, 2.59, 'Q1', 71, 78, 5202, 1733, 270, '16', '2011-2021', 'Virology (Q1)'), (832, 'British Journal of Anaesthesia', 70912, 2.589, 'Q1', 181, 486, 12638, 5321, 684, '3', '1923-2020', 'Anesthesiology and Pain Medicine (Q1)'), (833, 'Bone and Joint Journal', 20494408, 2.587, 'Q1', 181, 303, 8833, 3921, 745, '3', '2013-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q1); Surgery (Q1)'), (834, 'Evidence-Based Medicine', 14736810, 2.587, 'Q1', 28, 0, 0, 320, 32, '3', '1996-2018', 'Medicine (miscellaneous) (Q1)'), (835, 'Circulation: Cardiovascular Imaging', 19420080, 2.584, 'Q1', 99, 202, 3405, 1958, 368, '2', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (836, 'Personality and Social Psychology Bulletin', 1461672, 2.584, 'Q1', 193, 154, 9061, 1462, 344, '2', '1976, 1988, 1995-2020', 'Social Psychology (Q1)'), (837, 'Environmental International', 18736750, 2.582, 'Q1', 191, 885, 57755, 16963, 1698, '3', '1976-2020', 'Environmental Science (miscellaneous) (Q1)'), (838, 'Journal of Consulting and Clinical Psychology', 22006, 2.582, 'Q1', 240, 86, 4074, 1650, 297, '2', '1968-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (839, 'Mathematical Models and Methods in Applied Sc', 2182025, 2.582, 'Q1', 85, 74, 3435, 1393, 233, '37', '1996-2020', 'Applied Mathematics (Q1); Modeling and Simulation (Q1)'), (840, 'Journal of Democracy', 10455736, 2.58, 'Q1', 86, 54, 1150, 786, 114, '2', '1996-2020', 'Sociology and Political Science (Q1)'), (841, 'European Heart Journal Cardiovascular Imaging', 20472412, 2.576, 'Q1', 92, 280, 4397, 2517, 517, '3', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (842, 'Cryosphere', 19940416, 2.574, 'Q1', 82, 259, 17397, 3505, 601, '5', '2007-2020', 'Earth-Surface Processes (Q1); Water Science and Technology (Q1)'), (843, 'Nous', 14680068, 2.574, 'Q1', 66, 70, 3591, 413, 138, '2', '1989, 1996-2020', 'Philosophy (Q1)'), (844, 'IEEE Journal of Solid-State Circuits', 1558173, 2.571, 'Q1', 215, 312, 8748, 5570, 864, '2', '1966-2020', 'Electrical and Electronic Engineering (Q1)'), (845, 'Life Science Alliance', 25751077, 2.57, 'Q1', 14, 144, 8466, 929, 230, '2', '2018-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Ecology (Q1); Health, Toxicology and Mutagenesis (Q1); Plant Science (Q1)'), (846, 'R Journal', 20734859, 2.567, 'Q1', 42, 39, 989, 1471, 196, '2', '2009-2019', 'Numerical Analysis (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (847, 'European Respiratory Review', 16000617, 2.565, 'Q1', 66, 93, 8142, 1607, 206, '19', '1992-2002, 2004-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (848, 'Scientific data', 20524463, 2.565, 'Q1', 64, 426, 17975, 6161, 572, '3', '2014-2020', 'Computer Science Applications (Q1); Education (Q1); Information Systems (Q1); Library and Information Sciences (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (849, 'Translational Neurodegeneration', 20479158, 2.565, 'Q1', 39, 43, 3936, 904, 103, '3', '2012-2020', 'Cellular and Molecular Neuroscience (Q1); Cognitive Neuroscience (Q1); Neurology (clinical) (Q1)'), (850, 'British Journal of Psychiatry', 71250, 2.564, 'Q1', 228, 170, 2912, 2426, 388, '3', '1963-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (851, 'Journal of Structural Biology', 10478477, 2.564, 'Q1', 146, 160, 8391, 1383, 403, '2', '1990-2020', 'Structural Biology (Q1)'), (852, 'Journal of Physical Chemistry Letters', 19487185, 2.563, 'Q1', 203, 1489, 65177, 22077, 3218, '2', '2010-2020', 'Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1); Physical and Theoretical Chemistry (Q1)'), (853, 'Biochemical Society Transactions', 14708752, 2.562, 'Q1', 144, 232, 21599, 2585, 451, '3', '1973-2020', 'Biochemistry (Q1)'), (854, 'Journal fur die Reine und Angewandte Mathemat', 754102, 2.562, 'Q1', 76, 130, 3785, 734, 232, '5', '1826-1921, 1923-1943, 1949-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (855, 'Journal of Cardiovascular Magnetic Resonance', 1532429, 2.558, 'Q1', 94, 86, 3620, 1596, 270, '3', '1999-2020', 'Cardiology and Cardiovascular Medicine (Q1); Family Practice (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (856, 'Brain, Behavior, and Immunity', 10902139, 2.557, 'Q1', 153, 459, 24510, 5906, 825, '2', '1987-2020', 'Behavioral Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Immunology (Q1)'), (857, 'Journal of European Public Policy', 14664429, 2.557, 'Q1', 107, 145, 6912, 1696, 278, '3', '1994-2020', 'Public Administration (Q1); Sociology and Political Science (Q1)'), (858, 'Cancer and Metastasis Reviews', 1677659, 2.555, 'Q1', 148, 87, 10312, 1457, 170, '16', '1982-2020', 'Cancer Research (Q1); Oncology (Q1)'), (859, 'Cognition and Instruction', 1532690, 2.555, 'Q1', 81, 23, 1800, 264, 52, '3', '1984-2020', 'Developmental and Educational Psychology (Q1); Education (Q1); Experimental and Cognitive Psychology (Q1); Psychology (miscellaneous) (Q1)'), (860, 'Human Resource Management Review', 10534822, 2.549, 'Q1', 92, 57, 6502, 1006, 119, '3', '1991-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)'), (861, 'JACC: Basic to Translational Science', 2452302, 2.549, 'Q1', 31, 149, 4866, 1319, 183, '2', '1970, 2016-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (862, 'Biosensors and Bioelectronics', 18734235, 2.546, 'Q1', 192, 701, 38330, 27420, 2718, '3', '1990-2020', 'Biomedical Engineering (Q1); Biophysics (Q1); Biotechnology (Q1); Electrochemistry (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)'), (863, 'IEEE Network', 8908044, 2.546, 'Q1', 129, 263, 3525, 4922, 375, '2', '1986-2020', 'Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)'), (864, 'Solar RRL', 2367198, 2.544, 'Q1', 37, 396, 27261, 3789, 485, '5', '2017-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Energy Engineering and Power Technology (Q1)'), (865, 'Advances in Physics: X', 23746149, 2.541, 'Q1', 26, 26, 3730, 1072, 110, '3', '2016-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (866, 'Emerging Infectious Diseases', 10806040, 2.54, 'Q1', 226, 629, 11212, 7091, 1082, '2', '1995-2020', 'Epidemiology (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1)'), (867, 'Neuropathology and Applied Neurobiology', 3051846, 2.538, 'Q1', 95, 72, 4388, 884, 129, '3', '1975-2020', 'Histology (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1); Physiology (medical) (Q1)'), (868, 'Nano Research', 19980124, 2.536, 'Q1', 125, 471, 27373, 10597, 1265, '1', '2009-2020', 'Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)'), (869, 'ACS applied materials &amp; interfaces', 19448252, 2.535, 'Q1', 228, 6250, 320045, 138043, 14970, '2', '2009-2020', 'Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)'), (870, 'Current Protocols in Bioinformatics', 19343396, 2.535, 'Q1', 57, 19, 542, 459, 59, '2', '2002-2020', 'Biochemistry (Q1); Medicine (miscellaneous) (Q1); Structural Biology (Q1)'), (871, 'Forum of Mathematics, Pi', 20505086, 2.533, 'Q1', 19, 15, 653, 102, 11, '3', '2013-2020', 'Algebra and Number Theory (Q1); Analysis (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1); Mathematical Physics (Q1); Statistics and Probability (Q1)'), (872, 'BMJ Quality and Safety', 20445423, 2.53, 'Q1', 145, 184, 6231, 2148, 360, '3', '2011-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1)'), (873, 'Computer Methods in Applied Mechanics and Eng', 457825, 2.53, 'Q1', 198, 685, 38081, 11793, 1512, '16', '1972-2020', 'Computational Mechanics (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (874, 'Chemical Engineering Journal', 13858947, 2.528, 'Q1', 223, 4171, 243289, 82831, 6586, '16', '1971, 1973-1977, 1979, 1983, 1988, 1992-2021', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Industrial and Manufacturing Engineering (Q1)'), (875, 'Cardiovascular Diabetology', 14752840, 2.527, 'Q1', 75, 209, 9938, 3701, 466, '3', '2002-2020', 'Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (876, 'Journal des Mathematiques Pures et Appliquees', 217824, 2.526, 'Q1', 70, 131, 4755, 1117, 283, '8', '1997-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (877, 'Pain', 18726623, 2.524, 'Q1', 258, 310, 6532, 5172, 808, '2', '1975-2020', 'Anesthesiology and Pain Medicine (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1)'), (878, 'Journal of Experimental Psychology: General', 963445, 2.521, 'Q1', 161, 131, 5724, 1675, 416, '2', '1975-2020', 'Developmental Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)'), (879, 'Neoplasia', 14765586, 2.52, 'Q1', 129, 72, 3572, 2245, 308, '2', '1999-2020', 'Cancer Research (Q1)'), (880, 'Journal of Economic Geography', 14682702, 2.518, 'Q1', 102, 30, 1841, 672, 136, '3', '2001-2020', 'Economics and Econometrics (Q1); Geography, Planning and Development (Q1)'), (881, 'Global Biogeochemical Cycles', 8866236, 2.512, 'Q1', 187, 119, 10248, 1679, 300, '2', '1987-2020', 'Atmospheric Science (Q1); Environmental Chemistry (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1)'), (882, 'Psychonomic Bulletin and Review', 10699384, 2.512, 'Q1', 151, 156, 8752, 2721, 567, '2', '1994-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1)'), (883, 'Biological Psychiatry: Cognitive Neuroscience', 24519022, 2.51, 'Q1', 30, 170, 9639, 1614, 264, '2', '2016-2020', 'Biological Psychiatry (Q1); Cognitive Neuroscience (Q1); Neurology (clinical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (884, 'Behaviour Research and Therapy', 57967, 2.506, 'Q1', 185, 143, 9189, 2304, 413, '3', '1963-2020', 'Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Psychiatry and Mental Health (Q1)'), (885, 'AIDS Patient Care and STDs', 15577449, 2.504, 'Q1', 85, 62, 2621, 734, 177, '2', '1996-2020', 'Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1)'), (886, 'Journal of Applied Ecology', 218901, 2.503, 'Q1', 181, 238, 14228, 4478, 698, '3', '1973-2020', 'Ecology (Q1)'), (887, 'Microbiology spectrum', 21650497, 2.502, 'Q1', 51, 6, 271, 2352, 331, '2', '2013-2020', 'Cell Biology (Q1); Ecology (Q1); Genetics (Q1); Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1); Physiology (Q1)'), (888, 'Cellular and Molecular Immunology', 20420226, 2.5, 'Q1', 81, 272, 12848, 2199, 291, '3', '2004-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1)'), (889, 'Energy Economics', 1409883, 2.5, 'Q1', 152, 378, 21992, 8195, 1072, '16', '1979-2019', 'Economics and Econometrics (Q1); Energy (miscellaneous) (Q1)'), (890, 'Omega', 3050483, 2.5, 'Q1', 142, 196, 10104, 2965, 361, '3', '1973-2020', 'Information Systems and Management (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (891, 'Alzheimer s and Dementia: Diagnosis, Assessme', 23528729, 2.497, 'Q1', 37, 124, 5328, 1439, 239, '16', '2015-2020', 'Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)'), (892, 'Environmental Science and Technology Letters', 23288930, 2.497, 'Q1', 58, 142, 6471, 2803, 335, '2', '2013-2020', 'Ecology (Q1); Environmental Chemistry (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)'), (893, 'Oncogenesis', 21579024, 2.497, 'Q1', 42, 103, 5223, 1665, 232, '2', '2012-2020', 'Cancer Research (Q1); Molecular Biology (Q1)'), (894, 'IEEE Transactions on Industrial Informatics', 15513203, 2.496, 'Q1', 135, 845, 24453, 17561, 1386, '2', '2005-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Information Systems (Q1)'), (895, 'Neurotherapeutics', 19337213, 2.496, 'Q1', 114, 191, 16419, 2063, 266, '2', '2007-2020', 'Neurology (clinical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (896, 'Journal of the American Heart Association', 20479980, 2.494, 'Q1', 85, 1052, 9051, 12969, 2437, '3', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (897, 'Mind', 264423, 2.494, 'Q1', 53, 27, 1204, 200, 100, '3', '1876-1901, 1903, 1908, 1911-1913, 1921-1951, 1959-1960, 1963-1965, 1967, 1970-2019', 'Philosophy (Q1)'), (898, 'npj Regenerative Medicine', 20573995, 2.491, 'Q1', 16, 24, 1882, 447, 51, '2', '2017-2020', 'Biomedical Engineering (Q1); Cell Biology (Q1); Developmental Biology (Q1); Medicine (miscellaneous) (Q1)'), (899, 'Alzheimer s and Dementia: Translational Resea', 23528737, 2.49, 'Q1', 30, 89, 4328, 1858, 251, '2', '2015-2020', 'Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)'), (900, 'Bioresource Technology', 9608524, 2.489, 'Q1', 294, 1597, 78013, 47449, 4907, '3', '1990-2021', 'Bioengineering (Q1); Environmental Engineering (Q1); Medicine (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1)'), (901, 'Journal of Educational Psychology', 19392176, 2.486, 'Q1', 209, 127, 6876, 1582, 242, '2', '1910-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (902, 'Cell Death and Disease', 20414889, 2.482, 'Q1', 111, 1041, 51140, 20936, 2641, '3', '2010-2020', 'Cancer Research (Q1); Cell Biology (Q1); Cellular and Molecular Neuroscience (Q1); Immunology (Q1); Medicine (miscellaneous) (Q1)'), (903, 'EcoSal Plus', 23246200, 2.482, 'Q1', 25, 10, 733, 206, 32, '2', '2004-2020', 'Microbiology (Q1)'), (904, 'Japanese Journal of Mathematics', 2892316, 2.481, 'Q1', 26, 4, 358, 65, 20, '6', '1975-1978, 1980-1986, 1989-2020', 'Mathematics (miscellaneous) (Q1)'), (905, 'Neurobiology of Stress', 23522895, 2.481, 'Q1', 33, 79, 6495, 932, 127, '16', '2015-2020', 'Biochemistry (Q1); Cellular and Molecular Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Endocrinology (Q1); Molecular Biology (Q1); Physiology (Q1)'), (906, 'Contemporary Educational Psychology', 361476, 2.479, 'Q1', 106, 79, 6298, 1146, 232, '2', '1976-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (907, 'Microbial genomics', 20575858, 2.476, 'Q1', 28, 154, 9916, 1200, 189, '3', '2015-2020', 'Epidemiology (Q1); Genetics (Q1); Microbiology (Q1); Molecular Biology (Q1)'), (908, 'Emerging Microbes and Infections', 22221751, 2.475, 'Q1', 53, 302, 10153, 2841, 414, '3', '2012-2020', 'Drug Discovery (Q1); Epidemiology (Q1); Immunology (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1); Parasitology (Q1); Virology (Q1)'), (909, 'International Journal of Cancer', 207136, 2.475, 'Q1', 234, 694, 29130, 10847, 1638, '2', '1966-2020', 'Cancer Research (Q1); Oncology (Q1)'), (910, 'Space Science Reviews', 15729672, 2.474, 'Q1', 160, 142, 21750, 3598, 337, '16', '1962-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (911, 'Food Hydrocolloids', 268005, 2.471, 'Q1', 159, 769, 37762, 15703, 1717, '16', '1986, 1995-2021', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Food Science (Q1)'), (912, 'Cancer Letters', 3043835, 2.47, 'Q1', 182, 430, 27650, 11608, 1409, '42', '1975-2020', 'Cancer Research (Q1); Oncology (Q1)'), (913, 'RNA Biology', 15558584, 2.47, 'Q1', 85, 210, 14373, 2809, 496, '2', '2004-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (914, 'American Journal of Respiratory Cell and Mole', 10441549, 2.469, 'Q1', 161, 242, 8341, 2348, 378, '2', '1989-2020', 'Cell Biology (Q1); Clinical Biochemistry (Q1); Molecular Biology (Q1); Pulmonary and Respiratory Medicine (Q1)'), (915, 'Cambridge Journal of Regions, Economy and Soc', 17521386, 2.468, 'Q1', 54, 32, 2392, 600, 78, '3', '2008-2020', 'Economics and Econometrics (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)'), (916, 'Resources, Conservation and Recycling', 18790658, 2.468, 'Q1', 130, 484, 30363, 12067, 1167, '16', '1988-2021', 'Economics and Econometrics (Q1); Waste Management and Disposal (Q1)'), (917, 'Tectonics', 2787407, 2.465, 'Q1', 134, 217, 23783, 2800, 551, '2', '1982-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (918, 'Organizational Psychology Review', 20413866, 2.464, 'Q1', 17, 15, 1738, 138, 31, '2', '2015-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Social Psychology (Q1)'), (919, 'American Society of Clinical Oncology educati', 15488756, 2.463, 'Q1', 35, 1, 0, 958, 190, '2', '2013-2018, 2020', 'Medicine (miscellaneous) (Q1)'), (920, 'Geotextiles and Geomembranes', 2661144, 2.463, 'Q1', 85, 105, 4987, 1340, 225, '16', '1984-1994, 1996-2020', 'Geotechnical Engineering and Engineering Geology (Q1); Materials Science (miscellaneous) (Q1)'), (921, 'Molecular Biology of the Cell', 10591524, 2.463, 'Q1', 225, 253, 14692, 3708, 903, '2', '1990-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (922, 'Bulletin of the World Health Organization', 15640604, 2.459, 'Q1', 168, 187, 3733, 2155, 275, '19', '1945, 1949-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (923, 'American Journal of Hematology', 3618609, 2.456, 'Q1', 105, 342, 8430, 4129, 554, '2', '1976-2020', 'Hematology (Q1)'), (924, 'International Journal of Urban and Regional R', 3091317, 2.456, 'Q1', 114, 85, 5243, 962, 184, '3', '1977-2020', 'Development (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)'), (925, 'Political Science Research and Methods', 20498470, 2.456, 'Q1', 11, 88, 3273, 335, 111, '3', '2018-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (926, 'Frontiers in Cell and Developmental Biology', 2296634, 2.452, 'Q1', 53, 1626, 140285, 3757, 570, '19', '2013-2020', 'Cell Biology (Q1); Developmental Biology (Q1)'), (927, 'Journal of Ecology', 220477, 2.452, 'Q1', 181, 210, 16936, 3184, 559, '3', '1976, 1979-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (928, 'Journal of Topology', 17538416, 2.447, 'Q1', 31, 50, 1540, 361, 102, '3', '2010-2020', 'Geometry and Topology (Q1)'), (929, 'European Stroke Journal', 23969881, 2.446, 'Q1', 16, 57, 1462, 484, 112, '2', '2016-2020', 'Cardiology and Cardiovascular Medicine (Q1); Neurology (clinical) (Q1)'), (930, 'Human Reproduction', 14602350, 2.446, 'Q1', 226, 301, 10877, 5042, 766, '3', '1986-2020', 'Obstetrics and Gynecology (Q1); Rehabilitation (Q1); Reproductive Medicine (Q1)'), (931, 'Diabetes, Obesity and Metabolism', 14631326, 2.445, 'Q1', 128, 301, 11144, 5621, 934, '3', '1999-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (932, 'Journal of Memory and Language', 10960821, 2.442, 'Q1', 145, 58, 4064, 908, 219, '2', '1985-2021', 'Artificial Intelligence (Q1); Experimental and Cognitive Psychology (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Neuropsychology and Physiological Psychology (Q1)'), (933, 'Engineering Geology', 137952, 2.441, 'Q1', 136, 425, 21738, 6177, 870, '16', '1965-2020', 'Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (934, 'Human Resource Management Journal', 9545395, 2.44, 'Q1', 77, 59, 4186, 779, 113, '2', '1990-2020', 'Organizational Behavior and Human Resource Management (Q1)'), (935, 'Journal of Medical Genetics', 222593, 2.439, 'Q1', 170, 178, 6427, 1887, 322, '3', '1965-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (936, 'Journal of Computational and Graphical Statis', 10618600, 2.436, 'Q1', 93, 94, 4030, 1099, 238, '3', '1992-2020', 'Discrete Mathematics and Combinatorics (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (937, 'Annales de l Institut Henri Poincare (C) Anal', 2941449, 2.434, 'Q1', 73, 65, 2088, 770, 208, '8', '1984-2020', 'Analysis (Q1); Applied Mathematics (Q1); Mathematical Physics (Q1)'), (938, 'National Science Review', 20955138, 2.433, 'Q1', 54, 241, 9062, 3325, 299, '3', '2014-2020', 'Multidisciplinary (Q1)'), (939, 'British Journal of Pharmacology', 14765381, 2.432, 'Q1', 211, 424, 32143, 7872, 967, '2', '1965-2020', 'Pharmacology (Q1)'), (940, 'Addiction', 13600443, 2.424, 'Q1', 193, 412, 15922, 4043, 604, '3', '1993-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (941, 'World Politics', 438871, 2.423, 'Q1', 110, 19, 1724, 177, 54, '3', '1948-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (942, 'Journal of Molecular Diagnostics', 15251578, 2.42, 'Q1', 95, 144, 5097, 1431, 269, '2', '1999-2020', 'Molecular Medicine (Q1); Pathology and Forensic Medicine (Q1)'), (943, 'Language Testing', 2655322, 2.419, 'Q1', 64, 38, 1811, 252, 77, '3', '1984-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)'), (944, 'Political Psychology', 162895, 2.419, 'Q1', 95, 86, 5990, 1165, 238, '3', '1996-2020', 'Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1); Philosophy (Q1); Political Science and International Relations (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)'), (945, 'Annual Review of Resource Economics', 19411359, 2.413, 'Q1', 35, 24, 2225, 391, 71, '2', '2010-2019', 'Economics and Econometrics (Q1)'), (946, 'Education Finance and Policy', 15573079, 2.413, 'Q1', 25, 22, 869, 184, 61, '2', '2011-2020', 'Education (Q1)'), (947, 'IEEE Vehicular Technology Magazine', 15566072, 2.413, 'Q1', 57, 73, 825, 1953, 155, '2', '2006-2020', 'Automotive Engineering (Q1)'), (948, 'Wiley Interdisciplinary Reviews: Water', 20491948, 2.413, 'Q1', 24, 48, 5671, 116, 12, '2', '2014, 2017-2018, 2020', 'Aquatic Science (Q1); Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Ocean Engineering (Q1); Oceanography (Q1); Water Science and Technology (Q1)'), (949, 'ChemSusChem', 1864564, 2.412, 'Q1', 157, 666, 46639, 13326, 1583, '5', '2008-2020', 'Chemical Engineering (miscellaneous) (Q1); Energy (miscellaneous) (Q1); Environmental Chemistry (Q1); Materials Science (miscellaneous) (Q1)'), (950, 'ESMO Open', 20597029, 2.409, 'Q1', 31, 223, 6446, 1372, 235, '3', '2016-2020', 'Cancer Research (Q1); Oncology (Q1)'), (951, 'British Journal of Management', 10453172, 2.407, 'Q1', 108, 75, 6340, 855, 141, '3', '1990-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (952, 'Clinical Oral Implants Research', 16000501, 2.407, 'Q1', 161, 119, 4625, 2743, 536, '25', '1990-2020', 'Oral Surgery (Q1)'), (953, 'International Journal of Production Economics', 9255273, 2.406, 'Q1', 185, 327, 21712, 8124, 881, '16', '1991-2021', 'Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1)'), (954, 'International Journal of Tryptophan Research', 11786469, 2.405, 'Q1', 23, 21, 2227, 274, 30, '41', '2008-2020', 'Biochemistry (Q1); Molecular Biology (Q1)'), (955, 'JCO Precision Oncology', 24734284, 2.405, 'Q1', 22, 103, 2993, 1865, 469, '2', '2017-2020', 'Cancer Research (Q1); Oncology (Q1)'), (956, 'Journal of Urology', 225347, 2.402, 'Q1', 256, 1194, 710, 5274, 1028, '2', '1945-2020', 'Urology (Q1)'), (957, 'Journal of Experimental Social Psychology', 221031, 2.401, 'Q1', 142, 110, 6624, 1800, 435, '2', '1965-2020', 'Social Psychology (Q1); Sociology and Political Science (Q1)'), (958, 'Bulletin of the London Mathematical Society', 14692120, 2.396, 'Q1', 48, 107, 2315, 675, 268, '3', '1969-2020', 'Mathematics (miscellaneous) (Q1)'), (959, 'International Journal of Computer-Supported C', 15561607, 2.394, 'Q1', 54, 21, 1185, 336, 52, '2', '2006-2020', 'Education (Q1); Human-Computer Interaction (Q1)'), (960, 'Current Opinion in Psychology', 2352250, 2.393, 'Q1', 44, 187, 9869, 3185, 514, '3', '2015-2021', 'Psychology (miscellaneous) (Q1)'), (961, 'IEEE Transactions on Industrial Electronics', 2780046, 2.393, 'Q1', 287, 1220, 31994, 29350, 2899, '2', '1969-1978, 1982-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (962, 'Remedial and Special Education', 15384756, 2.392, 'Q1', 64, 45, 2137, 447, 97, '2', '1984-2020', 'Education (Q1); Public Health, Environmental and Occupational Health (Q1)'), (963, 'Cancer Immunology, Immunotherapy', 14320851, 2.389, 'Q1', 115, 265, 11248, 3229, 489, '5', '1976-2020', 'Cancer Research (Q1); Immunology (Q1); Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)'), (964, 'World Development', 305750, 2.386, 'Q1', 175, 381, 22949, 5451, 911, '3', '1973-2021', 'Development (Q1); Economics and Econometrics (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)'), (965, 'Journal of Cell Science', 14779137, 2.384, 'Q1', 278, 463, 20197, 5753, 1222, '3', '1966-2020', 'Cell Biology (Q1)'), (966, 'Foundations and Trends in Econometrics', 15513076, 2.383, 'Q1', 12, 1, 212, 20, 3, '2', '2005-2006, 2009-2020', 'Economics and Econometrics (Q1)'), (967, 'Proceedings of the IEEE', 15582256, 2.383, 'Q1', 287, 128, 13575, 6686, 411, '2', '1927, 1963-2020', 'Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)'), (968, 'Breast Cancer Research', 1465542, 2.378, 'Q1', 149, 130, 5690, 2561, 424, '3', '1999-2020', 'Cancer Research (Q1); Oncology (Q1)'), (969, 'Journal of Industrial Ecology', 10881980, 2.377, 'Q1', 102, 143, 8644, 2700, 326, '2', '1997-2020', 'Economics and Econometrics (Q1); Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (970, 'Astrophysical Journal', 4637, 2.376, 'Q1', 489, 3025, 227933, 87582, 9176, '3', '1984-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (971, 'Communications Physics', 23993650, 2.375, 'Q1', 26, 221, 10734, 2075, 249, '2', '2018-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (972, 'International Journal of Stroke', 17474930, 2.375, 'Q1', 74, 173, 5317, 1654, 364, '3', '2006-2020', 'Neurology (Q1)'), (973, 'Biomolecular Detection and Quantification', 22147535, 2.373, 'Q1', 20, 0, 0, 272, 35, '5', '2014-2019', 'Biochemistry (Q1); Molecular Biology (Q1); Molecular Medicine (Q1); Structural Biology (Q1)'), (974, 'Journal of Quantitative Criminology', 7484518, 2.371, 'Q1', 81, 67, 5459, 539, 112, '2', '1985-2020', 'Law (Q1); Pathology and Forensic Medicine (Q1)'), (975, 'CIRP Annals - Manufacturing Technology', 78506, 2.37, 'Q1', 155, 144, 4478, 3073, 472, '2', '1969-2020', 'Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)'), (976, 'Environmental Research Letters', 17489326, 2.37, 'Q1', 124, 839, 50346, 10508, 1563, '3', '2006-2020', 'Environmental Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (977, 'Resuscitation', 18731570, 2.366, 'Q1', 134, 491, 12899, 3778, 872, '42', '1972-1976, 1978-2020', 'Cardiology and Cardiovascular Medicine (Q1); Emergency Medicine (Q1); Emergency Nursing (Q1)'), (978, 'Gastrointestinal Endoscopy', 10976779, 2.365, 'Q1', 200, 580, 10041, 5062, 963, '2', '1965-2020', 'Gastroenterology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (979, 'Advances in Nutrition', 21565376, 2.362, 'Q1', 90, 149, 10768, 2686, 281, '2', '2010-2020', 'Food Science (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (980, 'Journal of Biological Chemistry', 219258, 2.361, 'Q1', 513, 1542, 87795, 23938, 5138, '2', '1945-2020', 'Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)'), (981, 'DNA Repair', 15687864, 2.359, 'Q1', 116, 155, 11532, 1623, 369, '16', '2002-2020', 'Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)'), (982, 'Mathematical Programming', 14364646, 2.358, 'Q1', 131, 211, 7782, 2138, 330, '5', '1971-2020', 'Mathematics (miscellaneous) (Q1); Software (Q1)'), (983, 'Precambrian Research', 3019268, 2.358, 'Q1', 163, 347, 35628, 4292, 809, '16', '1974-2020', 'Geochemistry and Petrology (Q1); Geology (Q1)'), (984, 'Journal of Stroke', 22876391, 2.353, 'Q1', 32, 50, 1830, 770, 103, '13', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q1); Neurology (clinical) (Q1)'), (985, 'Human Genetics', 3406717, 2.351, 'Q1', 137, 129, 9191, 1609, 299, '5', '1964-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (986, 'Global Food Security', 22119124, 2.35, 'Q1', 46, 124, 8194, 1608, 177, '2', '2012-2020', 'Ecology (Q1); Food Science (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1)'), (987, 'Journal of Clinical Microbiology', 1098660, 2.349, 'Q1', 255, 453, 11127, 5625, 1069, '2', '1975-2020', 'Microbiology (medical) (Q1)'), (988, 'Journal of Economic History', 14716372, 2.346, 'Q1', 60, 27, 1767, 274, 99, '3', '1941-2020', 'Economics and Econometrics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1)'), (989, 'Lancet Digital Health, The', 25897500, 2.346, 'Q1', 14, 138, 2305, 319, 26, '3', '2019-2020', 'Decision Sciences (miscellaneous) (Q1); Health Informatics (Q1); Health Information Management (Q1); Medicine (miscellaneous) (Q1)'), (990, 'Emerging Contaminants', 24056650, 2.343, 'Q1', 18, 45, 2928, 480, 52, '1', '2015-2020', 'Health, Toxicology and Mutagenesis (Q1); Public Health, Environmental and Occupational Health (Q1); Toxicology (Q1)'), (991, 'Foundations and Trends in Systems and Control', 23256826, 2.343, 'Q1', 11, 3, 588, 67, 9, '2', '2014-2019', 'Control and Optimization (Q1); Control and Systems Engineering (Q1)'), (992, 'Proceedings of the Royal Society B: Biologica', 9628452, 2.342, 'Q1', 253, 617, 37087, 8585, 1751, '3', '1946-1947, 1949-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Immunology and Microbiology (m'), (993, 'Geochimica et Cosmochimica Acta', 167037, 2.337, 'Q1', 242, 476, 40978, 7458, 1471, '3', '1950-2020', 'Geochemistry and Petrology (Q1)'), (994, 'Journal of Catalysis', 10902694, 2.337, 'Q1', 242, 435, 24471, 10040, 1232, '2', '1962-2020', 'Catalysis (Q1); Physical and Theoretical Chemistry (Q1)'), (995, 'IMF Economic Review', 2041417, 2.334, 'Q1', 71, 25, 994, 192, 68, '3', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)'), (996, 'Molecular Oncology', 15747891, 2.332, 'Q1', 88, 239, 13048, 2983, 421, '16', '2007-2020', 'Cancer Research (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1); Oncology (Q1)'), (997, 'American Journal of Epidemiology', 29262, 2.33, 'Q1', 256, 214, 6536, 3855, 836, '3', '1921-2020', 'Epidemiology (Q1)'), (998, 'Investigative Radiology', 209996, 2.33, 'Q1', 114, 103, 4477, 1696, 287, '2', '1966-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (999, 'Journal of Gastroenterology', 9441174, 2.33, 'Q1', 114, 116, 5157, 2255, 340, '6', '1994-2020', 'Gastroenterology (Q1)'), (1000, 'Calculus of Variations and Partial Differenti', 14320835, 2.329, 'Q1', 76, 197, 6713, 1785, 553, '5', '1993-2020', 'Analysis (Q1); Applied Mathematics (Q1)'), (1001, 'Biofabrication', 17585082, 2.328, 'Q1', 80, 147, 8793, 2774, 266, '3', '2009-2020', 'Biochemistry (Q1); Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1)'), (1002, 'Health Psychology Review', 17437202, 2.328, 'Q1', 51, 50, 4134, 520, 66, '3', '2007, 2009-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1003, 'Neuroscientist', 10738584, 2.328, 'Q1', 125, 89, 7859, 980, 158, '2', '1995-2020', 'Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)'), (1004, 'Progress in Aerospace Sciences', 3760421, 2.328, 'Q1', 113, 35, 5975, 1463, 109, '3', '1961-1962, 1964-1968, 1970, 1972-1979, 1981, 1983-1992, 1994-2020', 'Aerospace Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (1005, 'DMM Disease Models and Mechanisms', 17548403, 2.327, 'Q1', 83, 159, 9257, 2494, 435, '3', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)'), (1006, 'Cladistics', 10960031, 2.323, 'Q1', 92, 44, 3856, 527, 99, '3', '1985-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (1007, 'IEEE Transactions on Medical Imaging', 2780062, 2.322, 'Q1', 224, 409, 14864, 9513, 734, '2', '1982-2020', 'Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Radiological and Ultrasound Technology (Q1); Software (Q1)'), (1008, 'Clinical and Translational Immunology', 20500068, 2.321, 'Q1', 34, 126, 7475, 541, 89, '3', '2015-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Nursing (miscellaneous) (Q1)'), (1009, 'Critical Reviews in Environmental Science and', 15476537, 2.321, 'Q1', 107, 162, 28388, 1607, 140, '3', '1993-2020', 'Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)'), (1010, 'International Journal of Hospitality Manageme', 2784319, 2.321, 'Q1', 122, 321, 25314, 4796, 490, '3', '1982-2020', 'Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (1011, 'Learning and Instruction', 9594752, 2.32, 'Q1', 116, 54, 3641, 1297, 233, '3', '1991-2021', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (1012, 'Review of Public Personnel Administration', 734371, 2.32, 'Q1', 44, 59, 4567, 399, 78, '2', '1980-2020', 'Organizational Behavior and Human Resource Management (Q1); Public Administration (Q1)'), (1013, 'Journal of Nuclear Medicine', 1615505, 2.319, 'Q1', 211, 416, 3116, 6168, 1062, '2', '1960-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1014, 'npj Biofilms and Microbiomes', 20555008, 2.319, 'Q1', 29, 60, 3774, 722, 95, '3', '2015-2020', 'Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Microbiology (Q1)'), (1015, 'Developmental Psychology', 19390599, 2.318, 'Q1', 213, 173, 6689, 2506, 596, '2', '1969-2020', 'Demography (Q1); Developmental and Educational Psychology (Q1); Life-span and Life-course Studies (Q1)'), (1016, 'Water Research X', 25899147, 2.317, 'Q1', 10, 33, 1764, 266, 30, '3', '2018-2020', 'Ecological Modeling (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)'), (1017, 'Journal of Management Inquiry', 15526542, 2.315, 'Q1', 62, 62, 3797, 450, 139, '2', '1992-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (1018, 'Energy Research and Social Science', 22146296, 2.313, 'Q1', 63, 419, 33308, 5449, 801, '3', '2014-2020', 'Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1); Social Sciences (miscellaneous) (Q1)'), (1019, 'European Journal of Nuclear Medicine and Mole', 16197089, 2.313, 'Q1', 163, 534, 15256, 5103, 735, '5', '1996-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1020, 'Sociological Science', 23306696, 2.311, 'Q1', 23, 14, 868, 377, 82, '2', '2014-2020', 'Social Sciences (miscellaneous) (Q1)'), (1021, 'Journal of Manufacturing Systems', 2786125, 2.31, 'Q1', 70, 155, 8906, 2949, 288, '16', '1982-2020', 'Control and Systems Engineering (Q1); Hardware and Architecture (Q1); Industrial and Manufacturing Engineering (Q1); Software (Q1)'), (1022, 'Journal of the American College of Surgeons', 18791190, 2.305, 'Q1', 177, 368, 6295, 2723, 563, '2', '1994-2020', 'Surgery (Q1)'), (1023, 'British Journal of Dermatology', 70963, 2.304, 'Q1', 179, 856, 15181, 6540, 832, '3', '1892, 1895-1896, 1898, 1901-1903, 1908, 1910-1912, 1916-2020', 'Dermatology (Q1); Medicine (miscellaneous) (Q1)'), (1024, 'Work and Occupations', 7308884, 2.302, 'Q1', 68, 24, 1613, 193, 45, '2', '1974-2020', 'Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)'), (1025, 'Biology of Blood and Marrow Transplantation', 15236536, 2.301, 'Q1', 120, 409, 14881, 4502, 978, '2', '1995-2020', 'Hematology (Q1); Transplantation (Q1)'), (1026, 'Technovation', 1664972, 2.3, 'Q1', 130, 53, 5179, 837, 93, '3', '1981-2020', 'Engineering (miscellaneous) (Q1); Management of Technology and Innovation (Q1)'), (1027, 'Biometrics', 6341, 2.298, 'Q1', 130, 240, 6690, 1199, 426, '3', '1946-1951, 1965-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1'), (1028, 'Immunology', 192805, 2.297, 'Q1', 133, 118, 7872, 2470, 399, '3', '1958-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (1029, 'Journal of Structural Biology: X', 25901524, 2.295, 'Q1', 5, 27, 1598, 34, 10, '2', '2019-2020', 'Structural Biology (Q1)'), (1030, 'Games and Economic Behavior', 10902473, 2.294, 'Q1', 97, 159, 6024, 805, 480, '2', '1989-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (1031, 'Publications of the Astronomical Society of t', 46280, 2.294, 'Q1', 172, 101, 7289, 3788, 406, '2', '1996-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (1032, 'Advanced healthcare materials', 21922640, 2.288, 'Q1', 90, 348, 27947, 8661, 977, '3', '2012-2020', 'Biomaterials (Q1); Biomedical Engineering (Q1); Pharmaceutical Science (Q1)'), (1033, 'American Journal of Preventive Medicine', 7493797, 2.287, 'Q1', 216, 287, 9980, 4351, 875, '2', '1985-2020', 'Epidemiology (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1034, 'Applied Materials Today', 23529407, 2.287, 'Q1', 44, 422, 29453, 4006, 380, '16', '2015-2020', 'Materials Science (miscellaneous) (Q1)'), (1035, 'Non-coding RNA', 2311553, 2.287, 'Q1', 19, 50, 4744, 834, 115, '19', '2015-2020', 'Biochemistry (Q1); Genetics (Q1); Molecular Biology (Q1)'), (1036, 'Progress in Photovoltaics: Research and Appli', 10627995, 2.286, 'Q1', 131, 123, 5493, 2259, 294, '3', '1993-2020', 'Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (1037, 'Bipolar Disorders', 13995618, 2.285, 'Q1', 129, 164, 5257, 1118, 196, '25', '1999-2020', 'Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)'), (1038, 'Clinical Psychology: Science and Practice', 14682850, 2.285, 'Q1', 105, 76, 3434, 369, 49, '2', '1994-2020', 'Clinical Psychology (Q1)'), (1039, 'Molecular Therapy - Methods and Clinical Deve', 23290501, 2.285, 'Q1', 32, 248, 12962, 1840, 322, '2', '2014-2020', 'Genetics (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)'), (1040, 'American Journal of Public Health', 900036, 2.284, 'Q1', 264, 558, 7975, 5758, 1138, '2', '1949-1963, 1971-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (1041, 'Journal of Literacy Research', 1086296, 2.283, 'Q1', 43, 21, 1103, 245, 73, '2', '1969-1972, 1974-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1042, 'TrAC - Trends in Analytical Chemistry', 1659936, 2.283, 'Q1', 167, 311, 35811, 9349, 805, '16', '1981-2020', 'Analytical Chemistry (Q1); Environmental Chemistry (Q1); Spectroscopy (Q1)'), (1043, 'Evidence-Based Mental Health', 1468960, 2.282, 'Q1', 34, 38, 696, 646, 90, '3', '1998-2020', 'Psychiatry and Mental Health (Q1)'), (1044, 'Advances in Mathematics', 10902082, 2.281, 'Q1', 113, 396, 13796, 4150, 1245, '2', '1961, 1964-1965, 1967-2020', 'Mathematics (miscellaneous) (Q1)'), (1045, 'Annals of Intensive Care', 21105820, 2.281, 'Q1', 49, 168, 5946, 2037, 358, '5', '2011-2020', 'Critical Care and Intensive Care Medicine (Q1)'), (1046, 'JACC: Clinical Electrophysiology', 24055018, 2.279, 'Q1', 33, 279, 5194, 2283, 469, '2', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q1)'), (1047, 'International Journal of Sports Physiology an', 15550265, 2.278, 'Q1', 66, 218, 6225, 2717, 629, '2', '2006-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (1048, 'Mayo Clinic Proceedings', 19425546, 2.278, 'Q1', 179, 490, 11864, 3774, 615, '3', '1945-2020', 'Medicine (miscellaneous) (Q1)'), (1049, 'Antioxidants and Redox Signaling', 15230864, 2.277, 'Q1', 190, 160, 18675, 4178, 548, '2', '1999-2020', 'Biochemistry (Q1); Cell Biology (Q1); Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Physiology (Q1)'), (1050, 'Arthroscopy - Journal of Arthroscopic and Rel', 7498063, 2.277, 'Q1', 161, 565, 12754, 4100, 886, '3', '1985-2020', 'Orthopedics and Sports Medicine (Q1); Sports Science (Q1)'), (1051, 'Mechanical Systems and Signal Processing', 8883270, 2.275, 'Q1', 167, 538, 23327, 16068, 2017, '2', '1987-2021', 'Aerospace Engineering (Q1); Civil and Structural Engineering (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Mechanical Engineering (Q1); Signal Processing (Q1)'), (1052, 'Advances in Colloid and Interface Science', 18686, 2.274, 'Q1', 183, 166, 28448, 4435, 346, '16', '1967-1972, 1974-2020', 'Colloid and Surface Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Surfaces and Interfaces (Q1)'), (1053, 'Journal of Education Policy', 2680939, 2.274, 'Q1', 77, 83, 5799, 595, 131, '3', '1986-2020', 'Education (Q1)'), (1054, 'Molecular Cancer Research', 15417786, 2.273, 'Q1', 135, 164, 7663, 3044, 542, '2', '2002-2020', 'Cancer Research (Q1); Molecular Biology (Q1); Oncology (Q1)'), (1055, 'European Journal of Immunology', 142980, 2.272, 'Q1', 201, 217, 8845, 2346, 495, '5', '1971-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (1056, 'Fertility and Sterility', 15565653, 2.272, 'Q1', 208, 502, 11976, 5714, 883, '2', '1950-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)'), (1057, 'Functional Ecology', 2698463, 2.272, 'Q1', 154, 223, 16902, 3494, 664, '3', '1987-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (1058, 'Journal of Financial Stability', 15723089, 2.272, 'Q1', 50, 51, 2695, 974, 211, '16', '2004-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q1)'), (1059, 'Therapeutic Advances in Medical Oncology', 17588340, 2.272, 'Q1', 49, 234, 12149, 1655, 232, '2', '2009-2020', 'Oncology (Q1)'), (1060, 'ACS Pharmacology and Translational Science', 25759108, 2.271, 'Q1', 10, 134, 8637, 224, 56, '2', '2018-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1)'), (1061, 'Review of International Organizations', 1559744, 2.271, 'Q1', 34, 44, 3449, 311, 66, '2', '2006-2020', 'Economics and Econometrics (Q1); Organizational Behavior and Human Resource Management (Q1); Political Science and International Relations (Q1)'), (1062, 'Journal of Behavioral Addictions', 20625871, 2.265, 'Q1', 47, 70, 4631, 2113, 298, '50', '2012-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (1063, 'Emotion', 19311516, 2.261, 'Q1', 140, 173, 4689, 1387, 327, '2', '2001-2020', 'Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)'), (1064, 'IEEE Transactions on Systems, Man, and Cybern', 21682216, 2.261, 'Q1', 64, 0, 0, 7437, 627, '2', '2011-2012, 2014-2019', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q1); Information Systems (Q1); Software (Q1)'), (1065, 'Cell Calcium', 15321991, 2.258, 'Q1', 115, 132, 7711, 1561, 260, '3', '1980-2020', 'Cell Biology (Q1); Molecular Biology (Q1); Physiology (Q1)'), (1066, 'Environmental Health Perspectives', 15529924, 2.257, 'Q1', 282, 185, 10324, 4824, 541, '2', '1972-2020', 'Health, Toxicology and Mutagenesis (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1067, 'Journal of Occupational and Organizational Ps', 20448325, 2.257, 'Q1', 114, 39, 3683, 514, 107, '2', '1992-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)'), (1068, 'Nucleic Acid Therapeutics', 21593345, 2.255, 'Q1', 67, 38, 1567, 594, 113, '2', '2011-2020', 'Biochemistry (Q1); Drug Discovery (Q1); Genetics (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)'), (1069, 'Advanced Electronic Materials', 2199160, 2.25, 'Q1', 56, 399, 19969, 5778, 818, '5', '2015-2020', 'Electronic, Optical and Magnetic Materials (Q1)'), (1070, 'Carbon', 86223, 2.25, 'Q1', 279, 980, 54801, 29188, 3169, '3', '1940, 1963-2021', 'Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (1071, 'Big Data and Society', 20539517, 2.244, 'Q1', 37, 84, 4657, 895, 111, '3', '2014-2020', 'Communication (Q1); Computer Science Applications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1)'), (1072, 'West European Politics', 1402382, 2.242, 'Q1', 80, 88, 4565, 792, 192, '3', '1978-2020', 'Political Science and International Relations (Q1)'), (1073, 'European Union Politics', 17412757, 2.241, 'Q1', 65, 34, 1735, 352, 96, '3', '2000-2020', 'Demography (Q1); Health (social science) (Q1); Political Science and International Relations (Q1)'), (1074, 'Retina', 15392864, 2.24, 'Q1', 120, 357, 171, 3757, 986, '2', '1976, 1981-2020', 'Medicine (miscellaneous) (Q1); Ophthalmology (Q1)'), (1075, 'Foundations and Trends in Communications and ', 15672190, 2.239, 'Q1', 28, 6, 1288, 78, 6, '2', '2004-2019', 'Applied Mathematics (Q1); Computer Networks and Communications (Q1)'), (1076, 'Trends in Parasitology', 14715007, 2.239, 'Q1', 145, 126, 6669, 2014, 322, '3', '2001-2020', 'Infectious Diseases (Q1); Parasitology (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (1077, 'Mathematische Annalen', 255831, 2.235, 'Q1', 75, 233, 7741, 1328, 458, '5', '1869-1941, 1943-1944, 1947, 1949-2020', 'Mathematics (miscellaneous) (Q1)'), (1078, 'Cancer Epidemiology Biomarkers and Prevention', 10559965, 2.234, 'Q1', 192, 297, 14037, 3175, 625, '2', '1983, 1986, 1991-2020', 'Epidemiology (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)'), (1079, 'Research and Politics', 20531680, 2.232, 'Q1', 20, 42, 1110, 579, 143, '3', '2014-2020', 'Political Science and International Relations (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (1080, 'Virus Evolution', 20571577, 2.231, 'Q1', 23, 83, 5014, 385, 88, '2', '2015-2020', 'Microbiology (Q1); Virology (Q1)'), (1081, 'Social Cognitive and Affective Neuroscience', 17495024, 2.229, 'Q1', 103, 128, 9546, 1908, 410, '3', '2006-2020', 'Cognitive Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1)'), (1082, 'Biological Conservation', 63207, 2.227, 'Q1', 199, 433, 29571, 7021, 1170, '16', '1968-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (1083, 'Technological Forecasting and Social Change', 401625, 2.226, 'Q1', 117, 448, 35581, 10127, 1061, '2', '1970-2020', 'Applied Psychology (Q1); Business and International Management (Q1); Management of Technology and Innovation (Q1)'), (1084, 'Cognitive Psychology', 10955623, 2.223, 'Q1', 120, 34, 2612, 364, 97, '2', '1970-2020', 'Artificial Intelligence (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Linguistics and Language (Q1); Neuropsychology and Physiological Psychology (Q1'), (1085, 'Sleep', 1618105, 2.222, 'Q1', 207, 246, 11814, 3530, 660, '2', '1978-2020', 'Neurology (clinical) (Q1); Physiology (medical) (Q1)'), (1086, 'Green Chemistry', 14639262, 2.221, 'Q1', 221, 768, 54414, 18357, 1819, '3', '1999-2020', 'Environmental Chemistry (Q1); Pollution (Q1)'), (1087, 'Academy of Management Learning and Education', 1537260, 2.218, 'Q1', 77, 41, 2980, 416, 83, '2', '2005-2019', 'Education (Q1); Organizational Behavior and Human Resource Management (Q1)'), (1088, 'Earthquake Engineering and Structural Dynamic', 10969845, 2.218, 'Q1', 127, 83, 3633, 1799, 373, '3', '1972-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (1089, 'Cytokine and Growth Factor Reviews', 18790305, 2.214, 'Q1', 158, 70, 7476, 1139, 152, '3', '1990-1992, 1994-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q1); Immunology (Q1); Immunology and Allergy (Q1)'), (1090, 'Numerische Mathematik', 9453245, 2.214, 'Q1', 90, 83, 2785, 1163, 281, '5', '1959-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1)'), (1091, 'Journal of Research on Educational Effectiven', 19345739, 2.212, 'Q1', 34, 41, 2326, 355, 86, '2', '2008-2020', 'Education (Q1)'), (1092, 'Chronic Stress', 24705470, 2.209, 'Q1', 14, 14, 1002, 312, 44, '2', '2020', 'Behavioral Neuroscience (Q1); Biological Psychiatry (Q1); Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1093, 'Journal of Business Ethics', 15730697, 2.209, 'Q1', 187, 532, 48694, 8098, 1241, '16', '1982-2020', 'Arts and Humanities (miscellaneous) (Q1); Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Law (Q1)'), (1094, 'Current Psychiatry Reports', 15351645, 2.208, 'Q1', 79, 87, 5992, 2337, 363, '2', '1996, 1999-2020', 'Psychiatry and Mental Health (Q1)'), (1095, 'Molecular Therapy - Nucleic Acids', 21622531, 2.208, 'Q1', 59, 384, 18962, 5334, 666, '2', '2012-2020', 'Drug Discovery (Q1); Molecular Medicine (Q1)'), (1096, 'Studies in Second Language Acquisition', 2722631, 2.207, 'Q1', 63, 65, 4186, 454, 119, '3', '1978-1996, 2005-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1097, 'Journal of Clinical Endocrinology and Metabol', 21972, 2.206, 'Q1', 353, 963, 37156, 9179, 1567, '2', '1944-2020', 'Biochemistry (Q1); Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)'), (1098, 'Neurobiology of Disease', 1095953, 2.205, 'Q1', 166, 330, 29350, 4074, 710, '2', '1994-2020', 'Neurology (Q1)'), (1099, 'Statistical Science', 8834237, 2.204, 'Q1', 108, 2, 115, 736, 130, '2', '1986-2019', 'Mathematics (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (1100, 'British Journal of Surgery', 71323, 2.202, 'Q1', 201, 696, 10295, 4068, 738, '3', '1913-2020', 'Surgery (Q1)'), (1101, 'Small Business Economics', 15730913, 2.202, 'Q1', 131, 240, 19048, 2366, 341, '16', '1989-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1)'), (1102, 'Educational Administration Quarterly', 13161, 2.201, 'Q1', 79, 34, 2781, 326, 74, '2', '1965-2020', 'Education (Q1); Public Administration (Q1)'), (1103, 'Conservation Biology', 15231739, 2.2, 'Q1', 222, 213, 10989, 2518, 420, '3', '1987-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Medicine (miscellaneous) (Q1); Nature and Landscape Conservation (Q1)'), (1104, 'JAMA Ophthalmology', 21686173, 2.2, 'Q1', 196, 344, 4688, 3049, 608, '2', '2013-2020', 'Ophthalmology (Q1)'), (1105, 'Bulletin of the Geological Society of America', 167606, 2.197, 'Q1', 151, 175, 18695, 1516, 311, '2', '1890-1892, 1894, 1896-1897, 1899-1904, 1906-1909, 1911-1916, 1918-2020', 'Geology (Q1)'), (1106, 'Composites Part B: Engineering', 13598368, 2.196, 'Q1', 146, 719, 38588, 26664, 2893, '3', '1996-2020', 'Ceramics and Composites (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (1107, 'Transactions of the Institute of British Geog', 202754, 2.196, 'Q1', 107, 80, 6102, 815, 162, '3', '1976-2020', 'Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)'), (1108, 'AIDS', 14735571, 2.195, 'Q1', 216, 323, 5175, 3458, 874, '2', '1987-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Infectious Diseases (Q1)'), (1109, 'Critical Reviews in Microbiology', 15497828, 2.192, 'Q1', 88, 44, 5983, 1107, 129, '3', '1971-2020', 'Applied Microbiology and Biotechnology (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1)'), (1110, 'Advanced Materials Technologies', 2365709, 2.184, 'Q1', 42, 366, 24242, 5543, 752, '2', '2016-2020', 'Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)'), (1111, 'Heart', 1468201, 2.184, 'Q1', 183, 413, 8913, 3933, 813, '3', '1942, 1971-1978, 1983-1984, 1986-1990, 1992-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (1112, 'Journal of Biomedical Science', 10217770, 2.182, 'Q1', 83, 101, 8474, 2214, 278, '3', '1993-2020', 'Biochemistry (medical) (Q1); Cell Biology (Q1); Clinical Biochemistry (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1); Pharmacology (medical) ('), (1113, 'Translational Research', 19315244, 2.179, 'Q1', 98, 91, 8375, 1913, 279, '2', '2006-2020', 'Biochemistry (medical) (Q1); Medicine (miscellaneous) (Q1); Physiology (medical) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1114, 'Transportation Research, Part A: Policy and P', 9658564, 2.178, 'Q1', 133, 349, 20410, 5663, 817, '3', '1982, 1992-2020', 'Civil and Structural Engineering (Q1); Management Science and Operations Research (Q1); Transportation (Q1)'), (1115, 'Antipode', 664812, 2.177, 'Q1', 98, 100, 7603, 1089, 233, '3', '1969-2020', 'Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)'), (1116, 'Metabolism: Clinical and Experimental', 260495, 2.177, 'Q1', 136, 179, 10421, 3529, 469, '3', '1952-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)'), (1117, 'Current Opinion in Behavioral Sciences', 23521546, 2.176, 'Q1', 44, 149, 9123, 2176, 427, '3', '2015-2021', 'Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Psychiatry and Mental Health (Q1)'), (1118, 'Oncologist', 1549490, 2.176, 'Q1', 164, 459, 12983, 4329, 788, '2', '1996-2020', 'Cancer Research (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)'), (1119, 'BioEssays', 2659247, 2.175, 'Q1', 184, 192, 14319, 1610, 380, '2', '1984-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (1120, 'Wiley Interdisciplinary Reviews: Nanomedicine', 19395116, 2.175, 'Q1', 72, 76, 10836, 1291, 127, '2', '2009-2020', 'Bioengineering (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)'), (1121, 'Business Horizons', 76813, 2.174, 'Q1', 87, 64, 2475, 2066, 227, '3', '1957-2020', 'Business and International Management (Q1); Marketing (Q1)'), (1122, 'npj Schizophrenia', 2334265, 2.173, 'Q1', 23, 39, 2581, 440, 76, '3', '2015-2020', 'Psychiatry and Mental Health (Q1)'), (1123, 'Bioactive Materials', 2452199, 2.172, 'Q1', 25, 104, 6800, 1508, 114, '16', '2016-2021', 'Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1)'), (1124, 'Tunnelling and Underground Space Technology', 8867798, 2.172, 'Q1', 98, 375, 16500, 6440, 942, '3', '1986-2020', 'Building and Construction (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (1125, 'Journal of Autoimmunity', 10959157, 2.169, 'Q1', 113, 126, 9556, 2597, 380, '2', '1988-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (1126, 'Journal of Higher Education', 15384640, 2.168, 'Q1', 87, 52, 3092, 360, 96, '2', '1994, 1996-2020', 'Education (Q1)'), (1127, 'Journal of Second Language Writing', 10603743, 2.168, 'Q1', 79, 32, 1749, 386, 70, '3', '1992-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1128, 'Journal of Cerebral Blood Flow and Metabolism', 271678, 2.167, 'Q1', 193, 273, 15893, 3714, 661, '2', '1981-2020', 'Cardiology and Cardiovascular Medicine (Q1); Neurology (Q1); Neurology (clinical) (Q1)'), (1129, 'Trauma, Violence, and Abuse', 15248380, 2.166, 'Q1', 85, 157, 12225, 1166, 164, '3', '2000-2020', 'Applied Psychology (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Social Work (Q1)'), (1130, 'Journal of acquired immune deficiency syndrom', 15254135, 2.162, 'Q1', 157, 288, 1690, 3188, 930, '2', '1988-1994, 1996-2020', 'Infectious Diseases (Q1); Pharmacology (medical) (Q1)'), (1131, 'Reading Research Quarterly', 340553, 2.162, 'Q1', 90, 86, 7175, 374, 69, '2', '1996-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (1132, 'European Journal of Operational Research', 3772217, 2.161, 'Q1', 260, 657, 32022, 13341, 2068, '16', '1977-2021', 'Computer Science (miscellaneous) (Q1); Information Systems and Management (Q1); Management Science and Operations Research (Q1); Modeling and Simulation (Q1)'), (1133, 'Annals of Tourism Research', 1607383, 2.159, 'Q1', 171, 230, 12904, 2483, 335, '3', '1973-2020', 'Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (1134, 'IEEE Transactions on Power Electronics', 8858993, 2.159, 'Q1', 266, 1148, 36909, 23521, 2747, '2', '1986-2020', 'Electrical and Electronic Engineering (Q1)'), (1135, 'Stem Cells', 10665099, 2.159, 'Q1', 229, 142, 7984, 3301, 509, '2', '1981-1982, 1993-2020', 'Cell Biology (Q1); Developmental Biology (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1)'), (1136, 'International Journal of Operations and Produ', 17586593, 2.158, 'Q1', 138, 69, 5756, 1851, 234, '3', '1985, 1995-2020', 'Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (1137, 'BJOG: An International Journal of Obstetrics ', 14700328, 2.157, 'Q1', 164, 461, 7451, 3266, 599, '3', '1902-1915, 1921-2020', 'Obstetrics and Gynecology (Q1)'), (1138, 'ACS Synthetic Biology', 21615063, 2.156, 'Q1', 66, 332, 16343, 4326, 823, '2', '2012-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)'), (1139, 'Justice Quarterly', 17459109, 2.156, 'Q1', 88, 93, 7578, 755, 166, '3', '1984-2020', 'Law (Q1); Pathology and Forensic Medicine (Q1)'), (1140, 'ACM Transactions on Graphics', 15577368, 2.153, 'Q1', 218, 272, 15935, 10582, 764, '2', '1982-2020', 'Computer Graphics and Computer-Aided Design (Q1)'), (1141, 'Acta Geotechnica', 18611125, 2.153, 'Q1', 50, 261, 12649, 1762, 307, '5', '2006-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (1142, 'Journal of Numerical Mathematics', 15702820, 2.151, 'Q1', 31, 18, 615, 204, 36, '5', '2001-2020', 'Computational Mathematics (Q1)'), (1143, 'Information and Management', 3787206, 2.147, 'Q1', 162, 130, 11385, 2482, 246, '16', '1977-2020', 'Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)'), (1144, 'Ecology', 129658, 2.144, 'Q1', 294, 304, 16952, 4260, 872, '2', '1973-1977, 1979-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (1145, 'International Journal of Rock Mechanics and M', 13651609, 2.143, 'Q1', 155, 285, 13190, 4833, 631, '3', '1969-2020', 'Geotechnical Engineering and Engineering Geology (Q1)'), (1146, 'Diabetes Technology and Therapeutics', 15209156, 2.142, 'Q1', 88, 145, 3852, 1811, 358, '2', '1999-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medical Laboratory Technology (Q1); Medicine (miscellaneous) (Q1)'), (1147, 'IEEE Transactions on Geoscience and Remote Se', 15580644, 2.141, 'Q1', 254, 823, 30841, 13865, 1908, '2', '1980-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)'), (1148, 'Molecular and Cellular Biology', 2707306, 2.14, 'Q1', 327, 103, 5831, 1752, 451, '2', '1981-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (1149, 'Rock Mechanics and Rock Engineering', 7232632, 2.14, 'Q1', 91, 345, 15857, 5394, 777, '28', '1983-2020', 'Civil and Structural Engineering (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (1150, 'Journalism Studies', 1461670, 2.139, 'Q1', 61, 115, 6815, 1434, 358, '3', '2001-2020', 'Communication (Q1)'), (1151, 'Journal of Power Sources', 3787753, 2.139, 'Q1', 302, 1356, 70605, 33068, 3757, '16', '1976-2021', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Physical and Theoretical Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (1152, 'Astronomy and Astrophysics', 46361, 2.137, 'Q1', 336, 2115, 155661, 48068, 5269, '8', '1982, 1984, 1986-1988, 1990-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (1153, 'Environmental Pollution', 2697491, 2.136, 'Q1', 227, 2109, 129684, 35383, 4169, '3', '1970-1980, 1986-2020', 'Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Pollution (Q1); Toxicology (Q1)'), (1154, 'Current HIV/AIDS Reports', 15483568, 2.135, 'Q1', 56, 61, 4964, 572, 124, '2', '2004-2020', 'Infectious Diseases (Q1); Virology (Q1)'), (1155, 'Future of Children', 15501558, 2.134, 'Q1', 85, 19, 1185, 163, 26, '2', '1994-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Sociology and Political Science (Q1)'), (1156, 'Journal of Animal Ecology', 218790, 2.134, 'Q1', 157, 253, 18722, 2098, 452, '3', '1979, 1982-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (1157, 'Journals of Gerontology - Series A Biological', 10795006, 2.134, 'Q1', 189, 344, 13150, 3991, 731, '3', '1995-2020', 'Aging (Q1); Geriatrics and Gerontology (Q1)'), (1158, 'Survey of Ophthalmology', 396257, 2.131, 'Q1', 132, 69, 6991, 1131, 199, '2', '1956-1970, 1972-2020', 'Ophthalmology (Q1)'), (1159, 'Advances in Biological Regulation', 22124934, 2.13, 'Q1', 60, 47, 3994, 776, 131, '3', '2012-2020', 'Cancer Research (Q1); Genetics (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)'), (1160, 'European Urology Focus', 24054569, 2.13, 'Q1', 26, 305, 7972, 1693, 349, '16', '2015-2020', 'Urology (Q1)'), (1161, 'JAMA Dermatology', 21686068, 2.128, 'Q1', 166, 292, 4731, 3261, 508, '2', '2013-2020', 'Dermatology (Q1); Medicine (miscellaneous) (Q1)'), (1162, 'Network Neuroscience', 24721751, 2.128, 'Q1', 18, 20, 1740, 593, 103, '2', '2017-2020', 'Applied Mathematics (Q1); Artificial Intelligence (Q1); Computer Science Applications (Q1); Neuroscience (miscellaneous) (Q1)'), (1163, 'Journal of Magnesium and Alloys', 22139567, 2.126, 'Q1', 39, 207, 12049, 1878, 157, '1', '2013-2020', 'Mechanics of Materials (Q1); Metals and Alloys (Q1)'), (1164, 'Retrovirology', 17424690, 2.126, 'Q1', 88, 37, 2159, 710, 174, '3', '2004-2020', 'Infectious Diseases (Q1); Virology (Q1)'), (1165, 'American Psychologist', 3066, 2.124, 'Q1', 230, 177, 5220, 2219, 422, '2', '1946-1954, 1965-2020', 'Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)'), (1166, 'Journal of Antimicrobial Chemotherapy', 3057453, 2.124, 'Q1', 194, 529, 15238, 8229, 1497, '3', '1975-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (1167, 'Business Strategy and the Environment', 10990836, 2.123, 'Q1', 105, 252, 20680, 3418, 323, '3', '1992-2020', 'Business and International Management (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Strategy and Management (Q1)'), (1168, 'Annales de l institut Henri Poincare (B) Prob', 2460203, 2.121, 'Q1', 53, 113, 3631, 710, 247, '16', '1997-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (1169, 'Government Information Quarterly', 740624, 2.121, 'Q1', 103, 76, 5894, 1946, 193, '3', '1984-2020', 'E-learning (Q1); Law (Q1); Library and Information Sciences (Q1); Sociology and Political Science (Q1)'), (1170, 'Quarterly Review of Biology', 15397718, 2.121, 'Q1', 75, 7, 1277, 132, 23, '2', '1945-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (1171, 'Burnout Research', 22130586, 2.12, 'Q1', 24, 0, 0, 176, 14, '16', '2014-2017', 'Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1172, 'Cancer Communications', 25233548, 2.119, 'Q1', 53, 75, 2866, 1359, 171, '3', '2017-2020', 'Cancer Research (Q1); Oncology (Q1)'), (1173, 'Europace', 10995129, 2.119, 'Q1', 102, 326, 6773, 3953, 879, '3', '1999-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q1)'), (1174, 'Journal of Controlled Release', 18734995, 2.119, 'Q1', 269, 542, 46989, 12990, 1397, '16', '1984-2020', 'Pharmaceutical Science (Q1)'), (1175, 'Analytical Chemistry', 15206882, 2.117, 'Q1', 332, 2041, 91418, 39161, 5717, '2', '1947-2020', 'Analytical Chemistry (Q1)'), (1176, 'International Journal of Radiation Oncology B', 3603016, 2.117, 'Q1', 248, 584, 14085, 6588, 1167, '2', '1975-2020', 'Cancer Research (Q1); Oncology (Q1); Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1177, 'BMJ Global Health', 20597908, 2.111, 'Q1', 32, 464, 19753, 3395, 655, '3', '2016-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1178, 'Dialogues in Clinical Neuroscience', 19585969, 2.11, 'Q1', 87, 31, 1870, 776, 113, '8', '2002-2020', 'Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)'), (1179, 'Clinical Child and Family Psychology Review', 15732827, 2.109, 'Q1', 101, 29, 3090, 459, 78, '2', '1998-2020', 'Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Education (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1)'), (1180, 'Computers in Human Behavior', 7475632, 2.108, 'Q1', 178, 385, 26867, 14501, 1573, '3', '1985-2021', 'Arts and Humanities (miscellaneous) (Q1); Human-Computer Interaction (Q1); Psychology (miscellaneous) (Q1)'), (1181, 'Quantitative Marketing and Economics', 15707156, 2.108, 'Q1', 33, 13, 520, 51, 36, '16', '2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Marketing (Q1)'), (1182, 'Journal of Positive Behavior Interventions', 10983007, 2.107, 'Q1', 61, 32, 1412, 245, 61, '2', '1999-2020', 'Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (1183, 'Biology and Fertility of Soils', 14320789, 2.106, 'Q1', 124, 95, 6165, 1421, 228, '5', '1985-2020', 'Agronomy and Crop Science (Q1); Microbiology (Q1); Soil Science (Q1)'), (1184, 'Gynecologic Oncology', 908258, 2.105, 'Q1', 162, 480, 15477, 5359, 1087, '2', '1972-2020', 'Obstetrics and Gynecology (Q1); Oncology (Q1)'), (1185, 'Global Sustainability', 20594798, 2.101, 'Q1', 10, 39, 2650, 177, 26, '3', '2018-2020', 'Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)'), (1186, 'Demography', 703370, 2.099, 'Q1', 129, 96, 5970, 1180, 295, '2', '1964-2020', 'Demography (Q1)'), (1187, 'Frontiers in Molecular Biosciences', 2296889, 2.098, 'Q1', 37, 420, 30884, 1774, 330, '19', '2014-2020', 'Biochemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Molecular Biology (Q1)'), (1188, 'Quantum Science and Technology', 20589565, 2.095, 'Q1', 40, 93, 4972, 2276, 263, '2', '2016-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (1189, 'APL Photonics', 23780967, 2.094, 'Q1', 34, 146, 6606, 2142, 316, '2', '2016-2020', 'Atomic and Molecular Physics, and Optics (Q1); Computer Networks and Communications (Q1)'), (1190, 'Energy Policy', 3014215, 2.093, 'Q1', 217, 679, 40582, 14111, 2135, '3', '1973-2020', 'Energy (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1)'), (1191, 'Physics Letters, Section B: Nuclear, Elementa', 3702693, 2.093, 'Q1', 283, 821, 39282, 20450, 2611, '16', '1967-2020', 'Nuclear and High Energy Physics (Q1)'), (1192, 'Food Policy', 3069192, 2.092, 'Q1', 102, 118, 6576, 1852, 333, '3', '1975-2020', 'Development (Q1); Economics and Econometrics (Q1); Food Science (Q1); Management, Monitoring, Policy and Law (Q1); Sociology and Political Science (Q1)'), (1193, 'Journal of Functional Analysis', 10960783, 2.091, 'Q1', 108, 278, 9126, 2167, 682, '2', '1967-2020', 'Analysis (Q1)'), (1194, 'Polymer Reviews', 15583724, 2.089, 'Q1', 90, 29, 4869, 688, 65, '2', '2006-2020', 'Biomedical Engineering (Q1); Chemistry (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Polymers and Plastic'), (1195, 'Urban Education', 420859, 2.089, 'Q1', 56, 130, 9018, 675, 185, '2', '1965-2020', 'Education (Q1); Urban Studies (Q1)'), (1196, 'Communications in Partial Differential Equati', 3605302, 2.087, 'Q1', 87, 74, 2229, 612, 181, '2', '1971, 1976-2020', 'Analysis (Q1); Applied Mathematics (Q1)'), (1197, 'Wiley Interdisciplinary Reviews: Systems Biol', 1939005, 2.087, 'Q1', 51, 43, 6551, 391, 70, '2', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (1198, 'Critical Reviews in Oncology/Hematology', 10408428, 2.084, 'Q1', 122, 188, 15644, 3437, 539, '42', '1983-2020', 'Geriatrics and Gerontology (Q1); Hematology (Q1); Oncology (Q1)'), (1199, 'Applied Psychological Measurement', 1466216, 2.083, 'Q1', 64, 40, 1208, 334, 128, '2', '1977-2020', 'Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (1200, 'Journal of Personality', 223506, 2.082, 'Q1', 144, 109, 7940, 974, 225, '3', '1932-2020', 'Social Psychology (Q1)'), (1201, 'Neurobiology of Aging', 1974580, 2.081, 'Q1', 186, 278, 15335, 4442, 931, '2', '1980-2020', 'Aging (Q1); Developmental Biology (Q1); Geriatrics and Gerontology (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)'), (1202, 'Chromosome Research', 15736849, 2.08, 'Q1', 81, 27, 2013, 310, 73, '16', '1993-2020', 'Genetics (Q1)'), (1203, 'Cognition', 18737838, 2.08, 'Q1', 187, 318, 20658, 2744, 700, '16', '1972-1974, 1976-2020', 'Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1204, 'Methods', 10462023, 2.08, 'Q1', 150, 219, 12913, 2617, 627, '2', '1990-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Molecular Biology (Q1)'), (1205, 'ACM Computing Surveys', 3600300, 2.079, 'Q1', 163, 112, 15859, 6978, 365, '2', '1969-2020', 'Computer Science (miscellaneous) (Q1); Theoretical Computer Science (Q1)'), (1206, 'International Journal of Contemporary Hospita', 9596119, 2.079, 'Q1', 86, 191, 14757, 4462, 574, '3', '1989-2020', 'Tourism, Leisure and Hospitality Management (Q1)'), (1207, 'Contributions to Mineralogy and Petrology', 107999, 2.078, 'Q1', 150, 112, 8710, 1163, 302, '5', '1966-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (1208, 'Journal of Innate Immunity', 16628128, 2.078, 'Q1', 64, 43, 2614, 791, 130, '19', '2008-2020', 'Immunology and Allergy (Q1)'), (1209, 'mAbs', 19420870, 2.078, 'Q1', 78, 115, 5449, 1844, 338, '2', '2009-2020', 'Immunology (Q1); Immunology and Allergy (Q1)'), (1210, 'IEEE Internet of Things Journal', 23274662, 2.075, 'Q1', 97, 1163, 40380, 20461, 1555, '2', '2014-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Information Systems and Management (Q1); Signal Processing (Q1)'), (1211, 'International Small Business Journal', 2662426, 2.075, 'Q1', 85, 53, 4497, 785, 124, '3', '1982-2020', 'Business and International Management (Q1)'), (1212, 'Antimicrobial Agents and Chemotherapy', 10986596, 2.07, 'Q1', 259, 747, 26789, 12822, 2505, '2', '1963-1970, 1972-2020', 'Infectious Diseases (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (1213, 'Current Opinion in Insect Science', 22145745, 2.068, 'Q1', 41, 98, 5510, 1636, 310, '16', '2014-2021', 'Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)'), (1214, 'Monthly Notices of the Royal Astronomical Soc', 17453925, 2.067, 'Q1', 122, 229, 9866, 5035, 610, '3', '2005-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (1215, 'Photonics Research', 23279125, 2.066, 'Q1', 56, 259, 11894, 4056, 555, '2', '2013-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (1216, 'SIAM Journal on Optimization', 10526234, 2.066, 'Q1', 136, 124, 5037, 2106, 348, '2', '1991, 1996-2020', 'Software (Q1); Theoretical Computer Science (Q1)'), (1217, 'Journal of General Physiology', 221295, 2.064, 'Q1', 127, 94, 3818, 1061, 281, '2', '1919, 1933, 1936, 1945-2020', 'Physiology (Q1)'), (1218, 'Lab on a Chip', 14730197, 2.064, 'Q1', 210, 455, 21774, 8268, 1151, '3', '2001-2020', 'Biochemistry (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Chemistry (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)'), (1219, 'Reviews in Medical Virology', 10529276, 2.06, 'Q1', 90, 91, 7264, 758, 120, '3', '1991-2020', 'Infectious Diseases (Q1); Virology (Q1)'), (1220, 'Redox Biology', 22132317, 2.059, 'Q1', 88, 434, 33975, 8400, 770, '16', '2013-2020', 'Biochemistry (Q1); Clinical Biochemistry (Q1); Organic Chemistry (Q1)'), (1221, 'IEEE Signal Processing Magazine', 10535888, 2.058, 'Q1', 188, 98, 2806, 3887, 238, '2', '1991-2020', 'Applied Mathematics (Q1); Electrical and Electronic Engineering (Q1); Music (Q1); Signal Processing (Q1)'), (1222, 'Monthly Notices of the Royal Astronomical Soc', 13652966, 2.058, 'Q1', 383, 3653, 273464, 99701, 10487, '3', '1986-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (1223, 'ACS Sensors', 23793694, 2.055, 'Q1', 57, 485, 23654, 7635, 983, '2', '2016-2020', 'Bioengineering (Q1); Fluid Flow and Transfer Processes (Q1); Instrumentation (Q1); Process Chemistry and Technology (Q1)'), (1224, 'Ecosystem Services', 22120416, 2.053, 'Q1', 69, 165, 11890, 3661, 503, '16', '2012-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1); Nature'), (1225, 'Antiviral Research', 1663542, 2.052, 'Q1', 124, 212, 10684, 4045, 683, '16', '1959, 1981-2020', 'Pharmacology (Q1); Virology (Q1)'), (1226, 'Foundations and Trends in Networking', 15540588, 2.05, 'Q1', 19, 0, 0, 129, 4, '2', '2006-2018', 'Computer Networks and Communications (Q1)'), (1227, 'Journal of Business Research', 1482963, 2.049, 'Q1', 195, 878, 73221, 11507, 1315, '2', '1973-2021', 'Marketing (Q1)'), (1228, 'Journal of Cystic Fibrosis', 15691993, 2.049, 'Q1', 77, 241, 6865, 1754, 375, '16', '2002-2020', 'Pediatrics, Perinatology and Child Health (Q1); Pulmonary and Respiratory Medicine (Q1)'), (1229, 'Evolution and Human Behavior', 10905138, 2.048, 'Q1', 114, 71, 5788, 877, 216, '2', '1997-2020', 'Arts and Humanities (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Experimental and Cognitive Psychology (Q1)'), (1230, 'International Journal of Coal Geology', 1665162, 2.048, 'Q1', 136, 178, 14573, 3772, 516, '16', '1980-2020', 'Economic Geology (Q1); Fuel Technology (Q1); Geology (Q1); Stratigraphy (Q1)'), (1231, 'Mobile DNA', 17598753, 2.047, 'Q1', 33, 31, 2084, 393, 107, '3', '2010-2020', 'Molecular Biology (Q1)'), (1232, 'Critical Perspectives on Accounting', 10452354, 2.042, 'Q1', 67, 74, 6901, 578, 124, '2', '1990-2020', 'Accounting (Q1); Finance (Q1); Information Systems and Management (Q1); Sociology and Political Science (Q1)'), (1233, 'Current Topics in Membranes', 10635823, 2.042, 'Q1', 40, 21, 2637, 196, 24, '2', '1991, 1994, 2000-2003, 2005-2020', 'Cell Biology (Q1); Molecular Biology (Q1)'), (1234, 'Journal of Industrial Information Integration', 2452414, 2.042, 'Q1', 24, 28, 2152, 1361, 83, '16', '2016-2020', 'Industrial and Manufacturing Engineering (Q1); Information Systems and Management (Q1)'), (1235, 'Transportation Research, Part E: Logistics an', 13665545, 2.042, 'Q1', 110, 233, 13126, 4018, 499, '3', '1997-2020', 'Business and International Management (Q1); Civil and Structural Engineering (Q1); Management Science and Operations Research (Q1); Transportation (Q1)'), (1236, 'Contraception', 107824, 2.04, 'Q1', 102, 162, 3573, 1387, 440, '2', '1970-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)'), (1237, 'Nanoscale', 20403372, 2.038, 'Q1', 224, 2459, 136561, 51894, 7147, '3', '2009-2020', 'Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1)'), (1238, 'Mutation Research - Reviews in Mutation Resea', 13882139, 2.037, 'Q1', 125, 29, 4390, 727, 104, '16', '1990-1995, 1997-2020', 'Genetics (Q1); Health, Toxicology and Mutagenesis (Q1)'), (1239, 'Frontiers in Neural Circuits', 16625110, 2.036, 'Q1', 61, 89, 6614, 1175, 302, '19', '2007-2020', 'Cellular and Molecular Neuroscience (Q1); Cognitive Neuroscience (Q1); Neuroscience (miscellaneous) (Q1); Sensory Systems (Q1)'), (1240, 'Journal of Clinical Child and Adolescent Psyc', 15374424, 2.036, 'Q1', 133, 120, 7696, 1424, 304, '2', '1999-2020', 'Clinical Psychology (Q1); Developmental and Educational Psychology (Q1)'), (1241, 'Journal of Periodontology', 223492, 2.036, 'Q1', 156, 270, 9767, 2824, 469, '2', '1945-1951, 1965-2020', 'Periodontics (Q1)'), (1242, 'Supply Chain Management', 13598546, 2.036, 'Q1', 115, 60, 5954, 1183, 129, '3', '1996-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1)'), (1243, 'Annals of the American Thoracic Society', 23256621, 2.035, 'Q1', 114, 289, 7926, 3364, 730, '2', '2013-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (1244, 'Cancer Science', 13497006, 2.035, 'Q1', 141, 436, 17616, 6322, 1032, '2', '2003-2020', 'Cancer Research (Q1); Medicine (miscellaneous) (Q1); Oncology (Q1)'), (1245, 'Mass Spectrometry Reviews', 10982787, 2.035, 'Q1', 126, 74, 10971, 820, 87, '2', '1982-2020', 'Analytical Chemistry (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Condensed Matter Physics (Q1); Spectroscopy (Q1)'), (1246, 'Journal of Hazardous Materials', 3043894, 2.034, 'Q1', 284, 2143, 126809, 31399, 2975, '16', '1975-2021', 'Environmental Chemistry (Q1); Environmental Engineering (Q1); Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Waste Management and Disposal (Q1)'), (1247, 'Journal of International Marketing', 15477215, 2.034, 'Q1', 89, 22, 1648, 381, 56, '2', '1996-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (1248, 'Arthritis Care and Research', 2151464, 2.032, 'Q1', 163, 273, 12244, 2945, 654, '2', '1988-2020', 'Rheumatology (Q1)'), (1249, 'Canadian Geotechnical Journal', 12086010, 2.032, 'Q1', 118, 154, 6962, 1845, 395, '9', '1968-1971, 1974, 1976-2020', 'Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (1250, 'Journal of Geotechnical and Geoenvironmental ', 10900241, 2.032, 'Q1', 154, 224, 9671, 2116, 504, '2', '1996-2020', 'Environmental Science (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (1251, 'Critical Reviews in Food Science and Nutritio', 15497852, 2.03, 'Q1', 155, 574, 77309, 8084, 745, '3', '1980-2020', 'Food Science (Q1); Industrial and Manufacturing Engineering (Q1); Medicine (miscellaneous) (Q1)'), (1252, 'Current Opinion in Environmental Sustainabili', 18773435, 2.029, 'Q1', 87, 89, 4890, 2032, 282, '16', '2009-2021', 'Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (1253, 'Climate of the Past', 18149332, 2.028, 'Q1', 76, 134, 11896, 1419, 331, '5', '2005-2020', 'Global and Planetary Change (Q1); Paleontology (Q1); Stratigraphy (Q1)'), (1254, 'IEEE Transactions on Robotics', 15523098, 2.027, 'Q1', 159, 144, 5409, 4344, 349, '2', '1992, 2004-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (1255, 'Scripta Materialia', 13596462, 2.027, 'Q1', 195, 615, 21249, 9464, 1574, '3', '1996-2021', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1); Nanoscience and Nanotechnology (Q1)'), (1256, 'Work, Employment and Society', 9500170, 2.027, 'Q1', 79, 104, 5449, 825, 179, '3', '1987-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1)'), (1257, 'Climate Dynamics', 14320894, 2.026, 'Q1', 163, 494, 31948, 7531, 1835, '5', '1986-2020', 'Atmospheric Science (Q1)'), (1258, 'American Journal of Clinical Dermatology', 11750561, 2.023, 'Q1', 89, 82, 5482, 1371, 217, '3', '2000-2020', 'Dermatology (Q1); Medicine (miscellaneous) (Q1)'), (1259, 'Epidemics', 17554365, 2.023, 'Q1', 41, 48, 2223, 786, 138, '16', '2009-2020', 'Epidemiology (Q1); Infectious Diseases (Q1); Microbiology (Q1); Parasitology (Q1); Public Health, Environmental and Occupational Health (Q1); Virology (Q1)'), (1260, 'Drugs', 126667, 2.022, 'Q1', 164, 171, 9864, 3813, 484, '3', '1971-2020', 'Pharmacology (medical) (Q1)'), (1261, 'Industrial Marketing Management', 198501, 2.022, 'Q1', 136, 314, 27989, 3787, 450, '2', '1971-2020', 'Marketing (Q1)'), (1262, 'European Journal of Psychology Applied to Leg', 19894007, 2.021, 'Q1', 21, 10, 607, 211, 31, '12', '2009-2020', 'Applied Psychology (Q1); Law (Q1)'), (1263, 'Journalism and Mass Communication Quarterly', 2161430, 2.02, 'Q1', 80, 79, 4605, 658, 151, '2', '1955-1974, 1976-1986, 1988-1990, 1992-1993, 1995-2020', 'Communication (Q1)'), (1264, 'Learning Disabilities Research and Practice', 15405826, 2.018, 'Q1', 21, 22, 847, 197, 60, '2', '2008, 2012-2020', 'Developmental and Educational Psychology (Q1); Education (Q1); Health (social science) (Q1)'), (1265, 'British Journal of Ophthalmology', 14682079, 2.016, 'Q1', 153, 482, 15057, 4124, 922, '3', '1941-2020', 'Cellular and Molecular Neuroscience (Q1); Ophthalmology (Q1); Sensory Systems (Q1)'), (1266, 'Age and Ageing', 20729, 2.014, 'Q1', 143, 164, 3832, 2489, 457, '3', '1972-2020', 'Aging (Q1); Geriatrics and Gerontology (Q1); Medicine (miscellaneous) (Q1)'), (1267, 'Journal of Differential Equations', 220396, 2.014, 'Q1', 123, 599, 19078, 4706, 1398, '2', '1965-2021', 'Analysis (Q1); Applied Mathematics (Q1)'), (1268, 'Elementa', 23251026, 2.011, 'Q1', 34, 22, 1922, 1108, 213, '2', '2013-2020', 'Atmospheric Science (Q1); Ecology (Q1); Environmental Engineering (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Oceanography (Q1)'), (1269, 'IEEE Transactions on Wireless Communications', 15361276, 2.01, 'Q1', 223, 644, 23133, 17040, 1619, '2', '2002-2020', 'Applied Mathematics (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1)'), (1270, 'Journal of Medicinal Chemistry', 222623, 2.01, 'Q1', 261, 909, 60881, 14452, 2110, '2', '1959-1961, 1963-2020', 'Drug Discovery (Q1); Molecular Medicine (Q1)'), (1271, 'Statistics and Computing', 9603174, 2.009, 'Q1', 77, 99, 4328, 1378, 253, '16', '1991-2020', 'Computational Theory and Mathematics (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1); Theoretical Computer Science (Q1)'), (1272, 'Geophysical Research Letters', 948276, 2.007, 'Q1', 273, 1613, 77050, 22851, 4428, '2', '1974-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geophysics (Q1)'), (1273, 'Human Brain Mapping', 10659471, 2.005, 'Q1', 191, 386, 29899, 6334, 1182, '2', '1993-2020', 'Anatomy (Q1); Neurology (Q1); Neurology (clinical) (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1274, 'Composites Science and Technology', 2663538, 2.003, 'Q1', 213, 444, 19625, 10505, 1276, '3', '1985-2020', 'Ceramics and Composites (Q1); Engineering (miscellaneous) (Q1)'), (1275, 'Human Communication Research', 3603989, 2.002, 'Q1', 89, 20, 945, 312, 67, '2', '1974-2020', 'Anthropology (Q1); Communication (Q1); Developmental and Educational Psychology (Q1); Linguistics and Language (Q1)'), (1276, 'Hydrology and Earth System Sciences', 10275606, 2.001, 'Q1', 133, 314, 21781, 5987, 1008, '5', '1997-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Water Science and Technology (Q1)'), (1277, 'Journal of Chemical Theory and Computation', 15499626, 2.001, 'Q1', 185, 637, 48509, 11977, 1702, '2', '2005-2020', 'Computer Science Applications (Q1); Physical and Theoretical Chemistry (Q1)'), (1278, 'eNeuro', 23732822, 2, 'Q1', 36, 343, 19526, 3301, 855, '2', '2014-2020', 'Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1)'), (1279, 'Prostate Cancer and Prostatic Diseases', 13657852, 2, 'Q1', 64, 137, 4636, 976, 204, '3', '1997-2020', 'Cancer Research (Q1); Oncology (Q1); Urology (Q1)'), (1280, 'Immunology and Cell Biology', 14401711, 1.999, 'Q1', 104, 93, 4410, 1259, 267, '2', '1987-2020', 'Cell Biology (Q1); Immunology (Q1); Immunology and Allergy (Q1)'), (1281, 'Academic Medicine', 10402446, 1.998, 'Q1', 152, 743, 9349, 3925, 995, '2', '1940-1941, 1945, 1953-1956, 1959, 1961, 1964-2020', 'Education (Q1); Medicine (miscellaneous) (Q1)'), (1282, 'Reviews in Aquaculture', 17535131, 1.998, 'Q1', 47, 144, 21510, 1426, 153, '11', '2009-2020', 'Aquatic Science (Q1); Ecology (Q1); Management, Monitoring, Policy and Law (Q1)'), (1283, 'Soft Robotics', 21695172, 1.998, 'Q1', 40, 64, 2670, 1521, 162, '2', '2014-2020', 'Artificial Intelligence (Q1); Biophysics (Q1); Control and Systems Engineering (Q1)'), (1284, 'Statistics in Medicine', 2776715, 1.996, 'Q1', 183, 307, 11191, 2804, 973, '3', '1982-2020', 'Epidemiology (Q1); Statistics and Probability (Q1)'), (1285, 'Gifted Child Quarterly', 169862, 1.995, 'Q1', 49, 21, 1522, 220, 67, '2', '1957-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (1286, 'AIDS and Behavior', 10907165, 1.994, 'Q1', 106, 396, 17771, 3963, 1088, '2', '1997-2020', 'Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1); Social Psychology (Q1)'), (1287, 'Journal of Special Education', 15384764, 1.994, 'Q1', 71, 37, 1444, 216, 62, '2', '1966-2020', 'Education (Q1); Rehabilitation (Q1)'), (1288, 'Macromolecules', 249297, 1.994, 'Q1', 313, 1070, 61493, 17662, 2956, '2', '1968-2020', 'Inorganic Chemistry (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)'), (1289, 'Sub-Cellular Biochemistry', 3060225, 1.993, 'Q1', 65, 30, 3210, 735, 53, '2', '1973-1976, 1978-1981, 1983-1985, 1988-2000, 2002, 2004-2008, 2010-2020', 'Biochemistry (Q1); Cancer Research (Q1); Cell Biology (Q1); Molecular Biology (Q1)'), (1290, 'Journal of Lipid Research', 15397262, 1.992, 'Q1', 192, 166, 9182, 3193, 614, '2', '1960-1961, 1963-2020', 'Biochemistry (Q1); Cell Biology (Q1); Endocrinology (Q1)'), (1291, 'Journal of the American Geriatrics Society', 28614, 1.992, 'Q1', 232, 626, 15112, 5421, 1092, '3', '1953-2020', 'Geriatrics and Gerontology (Q1)'), (1292, 'Surveys in Geophysics', 15730956, 1.991, 'Q1', 77, 55, 5556, 1023, 162, '16', '1986-1987, 1989-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (1293, 'PLoS Neglected Tropical Diseases', 19352727, 1.99, 'Q1', 135, 965, 46225, 11656, 2436, '2', '2007-2020', 'Infectious Diseases (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1294, 'Publication of the Astronomical Society of Ja', 2053051, 1.99, 'Q1', 110, 105, 5443, 3355, 446, '3', '1996-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (1295, 'Frontiers in Molecular Neuroscience', 16625099, 1.989, 'Q1', 63, 260, 22681, 6506, 1219, '19', '2008-2020', 'Cellular and Molecular Neuroscience (Q1); Molecular Biology (Q1)'), (1296, 'Lung Cancer', 1695002, 1.989, 'Q1', 129, 349, 10507, 4671, 845, '42', '1985-2020', 'Cancer Research (Q1); Oncology (Q1); Pulmonary and Respiratory Medicine (Q1)'), (1297, 'Palliative Medicine', 1477030, 1.989, 'Q1', 106, 134, 5627, 1847, 358, '3', '1987-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1)'), (1298, 'International Endodontic Journal', 13652591, 1.988, 'Q1', 119, 181, 7073, 2255, 466, '3', '1967-1972, 1974-2020', 'Dentistry (miscellaneous) (Q1)'), (1299, 'Journal of School Psychology', 224405, 1.988, 'Q1', 97, 35, 2883, 769, 162, '3', '1963-1968, 1970-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (1300, 'Brain Pathology', 10156305, 1.986, 'Q1', 132, 117, 5604, 1170, 229, '2', '1990-2020', 'Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1)'), (1301, 'Journal of Law, Economics, and Organization', 14657341, 1.986, 'Q1', 70, 10, 425, 98, 54, '3', '1985-2020', 'Economics and Econometrics (Q1); Law (Q1); Organizational Behavior and Human Resource Management (Q1)'), (1302, 'Journal of Travel Medicine', 11951982, 1.985, 'Q1', 59, 124, 2184, 1098, 262, '3', '1994-2020', 'Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1303, 'Journal of Geophysical Research: Solid Earth', 21699356, 1.983, 'Q1', 232, 621, 48642, 7998, 1848, '2', '1979-1980, 1985-1986, 1988, 1990, 1993-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1); Space and Planetary Science (Q1)'), (1304, 'Science Bulletin', 20959273, 1.983, 'Q1', 112, 365, 12806, 5639, 616, '16', '2015-2020', 'Multidisciplinary (Q1)'), (1305, 'FEBS Journal', 1742464, 1.981, 'Q1', 204, 463, 34896, 4485, 881, '3', '2005-2020', 'Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)'), (1306, 'Human Mutation', 10981004, 1.981, 'Q1', 162, 193, 8182, 2498, 564, '2', '1992-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (1307, 'Current Opinion in Electrochemistry', 24519103, 1.98, 'Q1', 34, 161, 8367, 2849, 423, '16', '2017-2020', 'Analytical Chemistry (Q1); Electrochemistry (Q1)'), (1308, 'Mathematical Finance', 9601627, 1.98, 'Q1', 81, 48, 1858, 395, 109, '3', '1991-2020', 'Accounting (Q1); Applied Mathematics (Q1); Economics and Econometrics (Q1); Finance (Q1); Social Sciences (miscellaneous) (Q1)'), (1309, 'Journal of Dental Research', 220345, 1.979, 'Q1', 182, 201, 7239, 3329, 543, '2', '1919-1924, 1927-1935, 1937-2020', 'Dentistry (miscellaneous) (Q1)'), (1310, 'Language Teaching', 2614448, 1.979, 'Q1', 58, 51, 3196, 445, 100, '3', '1969-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1311, 'Methodology', 16142241, 1.979, 'Q1', 29, 19, 602, 100, 55, '2', '2005-2020', 'Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (1312, 'Plant and Cell Physiology', 320781, 1.975, 'Q1', 152, 143, 8325, 3160, 660, '3', '1959-2020', 'Cell Biology (Q1); Medicine (miscellaneous) (Q1); Physiology (Q1); Plant Science (Q1)'), (1313, 'Journal of the American Psychoanalytic Associ', 19412460, 1.974, 'Q1', 49, 74, 1280, 92, 126, '2', '1953-2020', 'Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1)'), (1314, 'Osteoarthritis and Cartilage', 10634584, 1.974, 'Q1', 156, 178, 7535, 3599, 625, '3', '1993-2020', 'Biomedical Engineering (Q1); Orthopedics and Sports Medicine (Q1); Rheumatology (Q1)'), (1315, 'Journal of Pain', 15265900, 1.972, 'Q1', 127, 108, 6856, 2103, 414, '2', '2000-2020', 'Anesthesiology and Pain Medicine (Q1); Neurology (Q1); Neurology (clinical) (Q1)'), (1316, 'Nature Reviews Urology', 17594812, 1.972, 'Q1', 81, 138, 6510, 1805, 287, '3', '2009-2020', 'Urology (Q1)'), (1317, 'Computers and Geotechnics', 266352, 1.97, 'Q1', 100, 476, 22209, 4524, 825, '3', '1985-2020', 'Computer Science Applications (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (1318, 'Thrombosis and Haemostasis', 3406245, 1.97, 'Q1', 188, 206, 9184, 3116, 642, '5', '1976-2020', 'Hematology (Q1)'), (1319, 'Communications Chemistry', 23993669, 1.969, 'Q1', 18, 183, 7778, 1299, 219, '2', '2018-2020', 'Biochemistry (Q1); Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Materials Chemistry (Q1)'), (1320, 'Journal of Experimental Political Science', 20522630, 1.967, 'Q1', 14, 21, 538, 112, 54, '3', '2014-2020', 'Sociology and Political Science (Q1)'), (1321, 'ACS Macro Letters', 21611653, 1.966, 'Q1', 92, 267, 13589, 5174, 796, '2', '2012-2020', 'Inorganic Chemistry (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)'), (1322, 'Teaching and Teacher Education', 742051, 1.966, 'Q1', 123, 166, 11328, 2974, 657, '3', '1985-2020', 'Education (Q1)'), (1323, 'Journal of the American Academy of Dermatolog', 10976787, 1.965, 'Q1', 208, 1185, 16196, 7754, 1607, '2', '1979-2020', 'Dermatology (Q1)'), (1324, 'Transportation Science', 15265447, 1.965, 'Q1', 115, 87, 3580, 1195, 256, '2', '1969-1993, 1995-2020', 'Civil and Structural Engineering (Q1); Transportation (Q1)'), (1325, 'Expert Opinion on Therapeutic Targets', 14728222, 1.964, 'Q1', 89, 104, 12174, 1585, 255, '3', '1997-2020', 'Clinical Biochemistry (Q1); Drug Discovery (Q1); Molecular Medicine (Q1); Pharmacology (Q1)'), (1326, 'Inflammation and Regeneration', 18809693, 1.962, 'Q1', 19, 40, 1969, 466, 73, '3', '2016-2020', 'Cell Biology (Q1); Immunology (Q1); Immunology and Allergy (Q1)'), (1327, 'Energy', 18736785, 1.961, 'Q1', 193, 2315, 109602, 49084, 6476, '3', '1976-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Fuel Techn'), (1328, 'European Journal of Communication', 2673231, 1.96, 'Q1', 60, 42, 1841, 461, 98, '3', '1986-2020', 'Communication (Q1); Language and Linguistics (Q1)'), (1329, 'Psychological Assessment', 1939134, 1.96, 'Q1', 140, 85, 3979, 1820, 438, '2', '1989-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1330, 'Frontiers in Neuroanatomy', 16625129, 1.959, 'Q1', 62, 101, 6977, 1438, 348, '19', '2007-2020', 'Anatomy (Q1); Cellular and Molecular Neuroscience (Q1); Neuroscience (miscellaneous) (Q1)'), (1331, 'Cognitive Behaviour Therapy', 16512316, 1.958, 'Q1', 60, 40, 1924, 555, 102, '20', '2002-2020', 'Clinical Psychology (Q1)'), (1332, 'Nutrition Reviews', 296643, 1.958, 'Q1', 150, 109, 7894, 1640, 202, '2', '1942-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (1333, 'Archives of Disease in Childhood: Fetal and N', 13592998, 1.957, 'Q1', 116, 184, 4312, 1523, 292, '3', '1994-2020', 'Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (1334, 'Rheumatology', 14620324, 1.957, 'Q1', 173, 576, 15006, 4999, 893, '3', '1952-2020', 'Pharmacology (medical) (Q1); Rheumatology (Q1)'), (1335, 'Visual Neuroscience', 14698714, 1.957, 'Q1', 81, 9, 695, 154, 47, '3', '1988-2020', 'Physiology (Q1); Sensory Systems (Q1)'), (1336, 'IEEE Transactions on Control of Network Syste', 23255870, 1.956, 'Q1', 47, 186, 5915, 2216, 383, '2', '2014-2020', 'Computer Networks and Communications (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1); Signal Processing (Q1)'), (1337, 'Annales Scientifiques de l Ecole Normale Supe', 129593, 1.955, 'Q1', 65, 20, 801, 329, 101, '8', '1997-2020', 'Mathematics (miscellaneous) (Q1)'), (1338, 'Current Neuropharmacology', 18756190, 1.955, 'Q1', 73, 78, 11625, 1968, 261, '52', '2004-2020', 'Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)'), (1339, 'Journal of Energy Chemistry', 20954956, 1.955, 'Q1', 62, 488, 27027, 5171, 612, '16', '2013-2021', 'Electrochemistry (Q1); Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Fuel Technology (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (1340, 'Psychoneuroendocrinology', 3064530, 1.955, 'Q1', 175, 299, 15984, 4964, 986, '3', '1975-2020', 'Biological Psychiatry (Q1); Endocrine and Autonomic Systems (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Psychiatry and Mental Health (Q1)'), (1341, 'Seminars in Arthritis and Rheumatism', 490172, 1.955, 'Q1', 114, 235, 10077, 2096, 397, '3', '1971-2020', 'Anesthesiology and Pain Medicine (Q1); Rheumatology (Q1)'), (1342, 'American Naturalist', 30147, 1.954, 'Q1', 205, 163, 13469, 1673, 451, '2', '1946-1948, 1960-1961, 1973-1975, 1978-1979, 1981-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (1343, 'Environmental Microbiology', 14622912, 1.954, 'Q1', 188, 444, 31122, 5631, 1025, '3', '1992, 1999-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Microbiology (Q1)'), (1344, 'Transportation', 494488, 1.953, 'Q1', 88, 186, 9765, 1601, 269, '16', '1972-2020', 'Civil and Structural Engineering (Q1); Development (Q1); Transportation (Q1)'), (1345, 'Social Forces', 15347605, 1.952, 'Q1', 130, 57, 3955, 599, 187, '3', '1925-2020', 'Anthropology (Q1); History (Q1); Sociology and Political Science (Q1)'), (1346, 'Statistical Methods in Medical Research', 14770334, 1.952, 'Q1', 85, 246, 8345, 2082, 662, '3', '1992-2020', 'Epidemiology (Q1); Health Information Management (Q1); Statistics and Probability (Q1)'), (1347, 'Field Crops Research', 18726852, 1.951, 'Q1', 150, 191, 10669, 4752, 795, '16', '1978-2020', 'Agronomy and Crop Science (Q1); Soil Science (Q1)'), (1348, 'Journal of Investigative Dermatology', 22202, 1.951, 'Q1', 201, 419, 14296, 5516, 1090, '3', '1945-2020', 'Biochemistry (Q1); Cell Biology (Q1); Dermatology (Q1); Molecular Biology (Q1)'), (1349, 'Mathematics of Computation', 255718, 1.95, 'Q1', 103, 106, 3373, 1335, 347, '2', '1864, 1926, 1943-2020', 'Algebra and Number Theory (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1)'), (1350, 'American Journal of Agricultural Economics', 14678276, 1.949, 'Q1', 111, 103, 4684, 848, 218, '3', '1919-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q1)'), (1351, 'Finance and Stochastics', 14321122, 1.949, 'Q1', 50, 30, 1179, 352, 93, '5', '2004-2020', 'Finance (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (1352, 'Oxford Review of Economic Policy', 14602121, 1.948, 'Q1', 85, 50, 2501, 502, 114, '3', '1985-2020', 'Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)'), (1353, 'Assessment and Evaluation in Higher Education', 2602938, 1.947, 'Q1', 81, 146, 6717, 1369, 275, '3', '1981-2020', 'Education (Q1)'), (1354, 'Horticulture Research', 20527276, 1.947, 'Q1', 31, 210, 13396, 1494, 246, '3', '2014-2020', 'Biochemistry (Q1); Biotechnology (Q1); Genetics (Q1); Horticulture (Q1); Plant Science (Q1)'), (1355, 'Journal of Thrombosis and Haemostasis', 15387836, 1.947, 'Q1', 178, 448, 14428, 3573, 711, '3', '2003-2020', 'Hematology (Q1); Medicine (miscellaneous) (Q1)'), (1356, 'Journal of Financial Markets', 13864181, 1.946, 'Q1', 59, 56, 2868, 249, 92, '16', '1998-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (1357, 'Journal of Infection', 1634453, 1.946, 'Q1', 107, 464, 10609, 2048, 372, '3', '1979-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1)'), (1358, 'Chromosoma', 14320886, 1.945, 'Q1', 86, 20, 1583, 523, 136, '5', '1939, 1941, 1948, 1950-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (1359, 'Exercise and Sport Sciences Reviews', 15383008, 1.945, 'Q1', 99, 27, 1782, 596, 92, '2', '1973-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (1360, 'Molecular Plant Pathology', 13643703, 1.945, 'Q1', 103, 117, 7942, 2286, 425, '3', '2000-2020', 'Agronomy and Crop Science (Q1); Molecular Biology (Q1); Plant Science (Q1); Soil Science (Q1)'), (1361, 'Acta Biomaterialia', 17427061, 1.944, 'Q1', 190, 568, 41855, 16327, 1879, '16', '2005-2020', 'Biochemistry (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)'), (1362, 'Topics in Current Chemistry', 3401022, 1.944, 'Q1', 96, 47, 6300, 1236, 170, '5', '1974-1977, 1979-1983, 1987, 2004-2020', 'Chemistry (miscellaneous) (Q1)'), (1363, 'Language in Society', 14698013, 1.942, 'Q1', 64, 47, 2894, 302, 84, '3', '1972-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1)'), (1364, 'Clinical Pharmacology and Therapeutics', 15326535, 1.941, 'Q1', 188, 404, 13378, 4078, 685, '2', '1960-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1)'), (1365, 'Current Opinion in Neurology', 14736551, 1.941, 'Q1', 119, 103, 1530, 1700, 306, '2', '1993-2020', 'Neurology (Q1); Neurology (clinical) (Q1)'), (1366, 'Social Media and Society', 20563051, 1.941, 'Q1', 32, 178, 9288, 1338, 251, '3', '2015-2020', 'Communication (Q1); Computer Science Applications (Q1); Cultural Studies (Q1)'), (1367, 'Sociological Theory', 7352751, 1.941, 'Q1', 76, 17, 1649, 178, 55, '3', '1996-2020', 'Sociology and Political Science (Q1)'), (1368, 'npj Aging and Mechanisms of Disease', 20563973, 1.94, 'Q1', 19, 13, 633, 209, 34, '3', '2015-2020', 'Aging (Q1); Geriatrics and Gerontology (Q1)'), (1369, 'Organic Letters', 15237052, 1.94, 'Q1', 239, 1862, 97753, 31588, 5659, '2', '1999-2020', 'Biochemistry (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)'), (1370, 'Journal of Information Technology', 14664437, 1.939, 'Q1', 79, 32, 2629, 466, 58, '3', '1987-2020', 'Information Systems (Q1); Library and Information Sciences (Q1); Strategy and Management (Q1)'), (1371, 'Journal of Vascular Surgery', 10976809, 1.939, 'Q1', 193, 707, 15208, 5219, 1360, '2', '1984-2020', 'Cardiology and Cardiovascular Medicine (Q1); Surgery (Q1)'), (1372, 'European Physical Journal C', 14346052, 1.938, 'Q1', 198, 1170, 71677, 23072, 2840, '5', '1998-2020', 'Engineering (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (1373, 'Landscape and Urban Planning', 1692046, 1.938, 'Q1', 161, 180, 12061, 5148, 693, '16', '1986-2020', 'Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (1374, 'Journal of Cleaner Production', 9596526, 1.937, 'Q1', 200, 5126, 304498, 103295, 10577, '3', '1993-2021', 'Environmental Science (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1); Strategy and Management (Q1)'), (1375, 'IEEE/ASME Transactions on Mechatronics', 10834435, 1.935, 'Q1', 132, 408, 10937, 5667, 779, '2', '1996-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (1376, 'Investigative Ophthalmology and Visual Scienc', 1460404, 1.935, 'Q1', 218, 537, 26071, 8469, 1949, '2', '1976-2020', 'Cellular and Molecular Neuroscience (Q1); Ophthalmology (Q1); Sensory Systems (Q1)'), (1377, 'Nutrition Research Reviews', 9544224, 1.935, 'Q1', 83, 36, 5311, 527, 56, '3', '1988-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (1378, 'Photoacoustics', 22135979, 1.935, 'Q1', 32, 65, 3188, 677, 86, '5', '2013-2020', 'Atomic and Molecular Physics, and Optics (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1379, 'Inflammatory Bowel Diseases', 10780998, 1.932, 'Q1', 146, 332, 9613, 3591, 750, '2', '1995-2020', 'Gastroenterology (Q1); Immunology and Allergy (Q1)'), (1380, 'Weather and Climate Extremes', 22120947, 1.93, 'Q1', 37, 55, 3023, 591, 91, '16', '2013-2020', 'Atmospheric Science (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)'), (1381, 'Journal of Membrane Science', 3767388, 1.929, 'Q1', 249, 984, 53650, 22599, 2621, '16', '1976-2021', 'Biochemistry (Q1); Filtration and Separation (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)'), (1382, 'Journal of Research in Crime and Delinquency', 1552731, 1.929, 'Q1', 95, 26, 2472, 313, 77, '2', '1964-2020', 'Social Psychology (Q1)'), (1383, 'Progress in Cardiovascular Diseases', 18731740, 1.929, 'Q1', 100, 109, 6662, 1484, 227, '3', '1958-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (1384, 'Public Opinion Quarterly', 33362, 1.929, 'Q1', 105, 19, 840, 481, 125, '3', '1937-2019', 'Communication (Q1); History (Q1); History and Philosophy of Science (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (1385, 'Geochemistry, Geophysics, Geosystems', 15252027, 1.928, 'Q1', 136, 277, 23412, 3209, 849, '2', '2000-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (1386, 'Virulence', 21505594, 1.928, 'Q1', 68, 134, 8044, 2073, 299, '2', '2010-2020', 'Immunology (Q1); Infectious Diseases (Q1); Microbiology (Q1); Microbiology (medical) (Q1); Parasitology (Q1)'), (1387, 'Journal of Philosophy', 22362, 1.927, 'Q1', 50, 4, 157, 157, 71, '2', '1977, 1980, 1989-1990, 2002-2020', 'Philosophy (Q1)'), (1388, 'Paleoceanography and Paleoclimatology', 25724517, 1.927, 'Q1', 127, 126, 12226, 1041, 293, '2', '2018-2020', 'Atmospheric Science (Q1); Oceanography (Q1); Paleontology (Q1)'), (1389, 'Theory and Research in Social Education', 933104, 1.926, 'Q1', 36, 22, 1951, 187, 53, '3', '1973-2020', 'Education (Q1); Sociology and Political Science (Q1)'), (1390, 'Schizophrenia Research', 9209964, 1.923, 'Q1', 176, 576, 27806, 5380, 1164, '16', '1988-2020', 'Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)'), (1391, 'Theoretical And Applied Genetics', 14322242, 1.922, 'Q1', 179, 237, 16796, 3425, 624, '5', '1933, 1941, 1946, 1965, 1968-2020', 'Agronomy and Crop Science (Q1); Biotechnology (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1)'), (1392, 'Urban Studies', 420980, 1.922, 'Q1', 147, 287, 16797, 2709, 584, '3', '1964-2020', 'Environmental Science (miscellaneous) (Q1); Urban Studies (Q1)'), (1393, 'Annals of the International Communication Ass', 23808977, 1.921, 'Q1', 6, 29, 2106, 85, 16, '2', '2019-2020', 'Communication (Q1)'), (1394, 'Annals of Family Medicine', 15441717, 1.92, 'Q1', 113, 138, 2394, 1151, 306, '2', '2003-2020', 'Family Practice (Q1)'), (1395, 'European Political Science Review', 17557739, 1.92, 'Q1', 35, 30, 2056, 307, 84, '3', '2009-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (1396, 'BioDrugs', 11738804, 1.919, 'Q1', 67, 62, 4406, 942, 151, '3', '1997-2020', 'Biotechnology (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (1397, 'Diversity and Distributions', 13669516, 1.918, 'Q1', 118, 134, 10712, 2013, 409, '3', '1998-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (1398, 'Thyroid', 15579077, 1.918, 'Q1', 142, 224, 7608, 3381, 566, '2', '1990-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)'), (1399, 'Ecological Economics', 9218009, 1.917, 'Q1', 202, 268, 18938, 5742, 1001, '16', '1989-2021', 'Economics and Econometrics (Q1); Environmental Science (miscellaneous) (Q1)'), (1400, 'Journal of Educational Measurement', 220655, 1.917, 'Q1', 47, 38, 1150, 169, 88, '3', '1964-2020', 'Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Education (Q1); Psychology (miscellaneous) (Q1)'), (1401, 'Liver Cancer', 22351795, 1.916, 'Q1', 34, 70, 2363, 710, 94, '19', '2012-2020', 'Hepatology (Q1); Oncology (Q1)'), (1402, 'Reviews in Endocrine and Metabolic Disorders', 15732606, 1.916, 'Q1', 77, 74, 7402, 909, 106, '16', '2000-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)'), (1403, 'Clinical Nutrition', 15321983, 1.915, 'Q1', 140, 639, 28471, 6373, 867, '2', '1982-2020', 'Critical Care and Intensive Care Medicine (Q1); Nutrition and Dietetics (Q1)'), (1404, 'Communication Research', 936502, 1.915, 'Q1', 104, 79, 4925, 712, 156, '2', '1974-2020', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1405, 'EClinicalMedicine', 25895370, 1.915, 'Q1', 20, 415, 11195, 754, 127, '3', '2018-2020', 'Medicine (miscellaneous) (Q1)'), (1406, 'Journal de l Ecole Polytechnique - Mathematiq', 2270518, 1.914, 'Q1', 16, 34, 1155, 196, 61, '8', '2014-2020', 'Mathematics (miscellaneous) (Q1)'), (1407, 'Social Science and Medicine', 18735347, 1.913, 'Q1', 243, 692, 39274, 7601, 1526, '3', '1967-2020', 'Health (social science) (Q1); History and Philosophy of Science (Q1); Medicine (miscellaneous) (Q1)'), (1408, 'Acta Pharmaceutica Sinica B', 22113843, 1.912, 'Q1', 51, 202, 15419, 2616, 262, '16', '2012, 2014-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)'), (1409, 'Free Radical Biology and Medicine', 8915849, 1.912, 'Q1', 265, 408, 30137, 9138, 1312, '2', '1987-2020', 'Biochemistry (Q1); Physiology (medical) (Q1)'), (1410, 'Clinical Science', 14708736, 1.91, 'Q1', 138, 209, 17704, 3173, 530, '3', '1946-1949, 1951-1959, 1973, 1979-2020', 'Medicine (miscellaneous) (Q1)'), (1411, 'Landslides', 16125118, 1.91, 'Q1', 80, 225, 10744, 3091, 497, '5', '2004-2020', 'Geotechnical Engineering and Engineering Geology (Q1)'), (1412, 'Work and Stress', 2678373, 1.91, 'Q1', 94, 31, 2274, 380, 62, '3', '1987-2020', 'Applied Psychology (Q1)'), (1413, 'International Journal of Production Research', 207543, 1.909, 'Q1', 142, 682, 41160, 10178, 1240, '3', '1961, 1963-1968, 1970-2020', 'Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (1414, 'Breast Cancer Research and Treatment', 1676806, 1.908, 'Q1', 154, 470, 16871, 5683, 1271, '2', '1981-2020', 'Cancer Research (Q1); Oncology (Q1)'), (1415, 'Computational and Structural Biotechnology Jo', 20010370, 1.908, 'Q1', 45, 357, 28093, 2022, 255, '20', '2012-2020', 'Biochemistry (Q1); Biophysics (Q1); Biotechnology (Q1); Computer Science Applications (Q1); Genetics (Q1); Structural Biology (Q2)'), (1416, 'Liquid Crystals Reviews', 21680418, 1.908, 'Q1', 18, 3, 204, 171, 19, '2', '2013-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (1417, 'Organization', 13505084, 1.908, 'Q1', 99, 91, 7167, 585, 142, '3', '1994-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (1418, 'Auditing', 15587991, 1.907, 'Q1', 78, 33, 2416, 379, 112, '2', '1996-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (1419, 'British Journal of Haematology', 13652141, 1.907, 'Q1', 186, 851, 21348, 5078, 846, '3', '1955-2020', 'Hematology (Q1)'), (1420, 'Management Learning', 14617307, 1.906, 'Q1', 77, 43, 3228, 384, 94, '3', '1970-2020', 'Decision Sciences (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (1421, 'European Economic Review', 142921, 1.905, 'Q1', 128, 195, 10117, 1054, 411, '16', '1969-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (1422, 'Tissue Barriers', 21688370, 1.904, 'Q1', 31, 16, 988, 301, 51, '3', '2013-2020', 'Biochemistry (Q1); Cell Biology (Q1); Histology (Q1)'), (1423, 'Cellular Immunology', 10902163, 1.902, 'Q1', 92, 144, 9350, 1608, 343, '2', '1970-2020', 'Immunology (Q1)'), (1424, 'Current Opinion in HIV and AIDS', 1746630, 1.901, 'Q1', 64, 55, 2338, 890, 228, '2', '2007-2020', 'Hematology (Q1); Immunology (Q1); Infectious Diseases (Q1); Oncology (Q1); Oncology (nursing) (Q1); Virology (Q1)'), (1425, 'Epidemiology', 15315487, 1.901, 'Q1', 173, 197, 4245, 1805, 369, '2', '1990-2020', 'Epidemiology (Q1)'), (1426, 'Higher Education', 181560, 1.9, 'Q1', 99, 196, 11522, 1852, 349, '16', '1972-2020', 'Education (Q1); Law (Q1)'), (1427, 'ACS Chemical Biology', 15548937, 1.899, 'Q1', 111, 364, 15618, 4826, 1078, '2', '2006-2020', 'Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1)'), (1428, 'Autism', 14617005, 1.899, 'Q1', 96, 218, 12568, 2139, 361, '3', '1997-2020', 'Developmental and Educational Psychology (Q1)'), (1429, 'Green Energy and Environment', 24680257, 1.899, 'Q1', 26, 77, 3679, 1061, 122, '1', '2016-2020', 'Renewable Energy, Sustainability and the Environment (Q1)'), (1430, 'Health Reports', 12091367, 1.899, 'Q1', 60, 26, 575, 366, 79, '9', '1989-2020', 'Demography (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1431, 'Journal of Materials Chemistry C', 20507534, 1.899, 'Q1', 128, 1736, 102107, 32126, 4523, '3', '2013-2020', 'Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1)'), (1432, 'Labour Economics', 9275371, 1.899, 'Q1', 75, 116, 5741, 592, 267, '16', '1993-2020', 'Economics and Econometrics (Q1); Organizational Behavior and Human Resource Management (Q1)'), (1433, 'Lithos', 244937, 1.899, 'Q1', 166, 458, 38270, 4712, 1085, '16', '1968-2020', 'Geochemistry and Petrology (Q1); Geology (Q1)'), (1434, 'Neural Development', 17498104, 1.899, 'Q1', 51, 13, 1008, 188, 58, '3', '2006-2020', 'Developmental Neuroscience (Q1)'), (1435, 'Proceedings of the London Mathematical Societ', 246115, 1.899, 'Q1', 65, 76, 2776, 658, 225, '3', '1865-1866, 1869, 1871, 1873-1902, 1904-1905, 1907-1915, 1917-1918, 1920-1940, 1942, 1945-1946, 1948-', 'Mathematics (miscellaneous) (Q1)'), (1436, 'European Journal of Endocrinology', 1479683, 1.897, 'Q1', 148, 186, 7689, 3201, 529, '3', '1994-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)'), (1437, 'International Journal of Neuropsychopharmacol', 14611457, 1.897, 'Q1', 107, 52, 3134, 1580, 298, '3', '1998-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)'), (1438, 'International Studies Quarterly', 14682478, 1.897, 'Q1', 100, 88, 5772, 654, 225, '2', '1978, 1985, 1989-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (1439, 'Small GTPases', 21541256, 1.896, 'Q1', 39, 67, 4105, 536, 86, '2', '2010-2020', 'Biochemistry (Q1); Cell Biology (Q1)'), (1440, 'European Heart Journal - Cardiovascular Pharm', 20556837, 1.895, 'Q1', 26, 85, 1673, 389, 73, '3', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q1); Pharmacology (medical) (Q1)'), (1441, 'Party Politics', 13540688, 1.895, 'Q1', 73, 127, 6671, 663, 229, '3', '1995-2020', 'Sociology and Political Science (Q1)'), (1442, 'Journal of Corporate Finance', 9291199, 1.894, 'Q1', 101, 246, 16724, 1943, 391, '16', '1994-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Finance (Q1); Strategy and Management (Q1)'), (1443, 'Journal of Population Economics', 14321475, 1.894, 'Q1', 71, 54, 3004, 341, 119, '5', '1988-2020', 'Demography (Q1); Economics and Econometrics (Q1)'), (1444, 'Reviews in Physics', 24054283, 1.894, 'Q1', 19, 10, 1882, 254, 17, '16', '2016-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (1445, 'Behavior Therapy', 57894, 1.893, 'Q1', 107, 84, 4622, 1092, 248, '2', '1970-2020', 'Clinical Psychology (Q1)'), (1446, 'Sexually Transmitted Infections', 14723263, 1.893, 'Q1', 98, 173, 3352, 1214, 331, '3', '1940-1942, 1973-1975, 1980-1988, 1992-1994, 1996-2020', 'Dermatology (Q1); Infectious Diseases (Q1)'), (1447, 'American Journal of Physiology - Lung Cellula', 15221504, 1.892, 'Q1', 163, 255, 12297, 2713, 522, '2', '1989-2020', 'Cell Biology (Q1); Physiology (Q1); Physiology (medical) (Q1); Pulmonary and Respiratory Medicine (Q1)'), (1448, 'Endocrine-Related Cancer', 13510088, 1.892, 'Q1', 130, 102, 5974, 1939, 352, '3', '1994-2020', 'Cancer Research (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Oncology (Q1)'), (1449, 'Journal of Affective Disorders', 1650327, 1.892, 'Q1', 188, 1329, 66763, 12430, 2503, '16', '1979-2021', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1450, 'Radiotherapy and Oncology', 18790887, 1.892, 'Q1', 157, 470, 14846, 5131, 959, '42', '1983-2020', 'Hematology (Q1); Oncology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1451, 'American Journal of Health Economics', 23323493, 1.89, 'Q1', 12, 17, 820, 133, 55, '2', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1452, 'Combustion and Flame', 102180, 1.89, 'Q1', 177, 473, 22841, 6194, 1259, '2', '1957-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (1453, 'International Review of Cell and Molecular Bi', 19376448, 1.89, 'Q1', 115, 60, 12325, 898, 27, '2', '2008-2020', 'Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)'), (1454, 'Cell Division', 17471028, 1.889, 'Q1', 46, 10, 591, 124, 29, '3', '2006-2020', 'Biochemistry (Q1); Cell Biology (Q1); Molecular Biology (Q1)'), (1455, 'New Technology, Work and Employment', 2681072, 1.889, 'Q1', 45, 23, 1372, 274, 54, '3', '1986-2020', 'Human Factors and Ergonomics (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (1456, 'Human Resource Management', 904848, 1.888, 'Q1', 94, 54, 5220, 1005, 182, '2', '1961-2020', 'Applied Psychology (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (1457, 'Journal of World Prehistory', 15737802, 1.888, 'Q1', 53, 11, 1884, 134, 37, '2', '1987-2006, 2008-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q1)'), (1458, 'Physical Review D', 24700010, 1.887, 'Q1', 396, 3609, 222038, 92185, 10436, '2', '1989, 2001, 2004, 2015-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (1459, 'College and Research Libraries', 100870, 1.886, 'Q1', 52, 60, 2193, 380, 151, '2', '1946-1947, 1987-2020', 'Library and Information Sciences (Q1)'), (1460, 'Composites - Part A: Applied Science and Manu', 1359835, 1.884, 'Q1', 178, 375, 18428, 9139, 1149, '3', '1996-2020', 'Ceramics and Composites (Q1); Mechanics of Materials (Q1)'), (1461, 'Quaternary Science Reviews', 2773791, 1.884, 'Q1', 182, 448, 45294, 4945, 1108, '3', '1982-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Geology (Q1); Global and Planetary Change (Q1)'), (1462, 'Genes and Cancer', 19476027, 1.883, 'Q1', 71, 9, 579, 334, 66, '2', '2010-2020', 'Genetics (Q1); Cancer Research (Q2)'), (1463, 'GeroScience', 25092715, 1.883, 'Q1', 63, 178, 13606, 1110, 149, '19', '2017-2020', 'Aging (Q1); Cardiology and Cardiovascular Medicine (Q1); Complementary and Alternative Medicine (Q1); Geriatrics and Gerontology (Q1); Veterinary (miscellaneous) (Q1)'), (1464, 'Journal of Youth and Adolescence', 15736601, 1.883, 'Q1', 118, 173, 9938, 2149, 491, '2', '1972-2020', 'Developmental and Educational Psychology (Q1); Education (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1)'), (1465, 'Physical Review Applied', 23317019, 1.883, 'Q1', 75, 979, 47358, 12515, 1950, '2', '2014-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (1466, 'Journal of Bone and Mineral Research', 15234681, 1.882, 'Q1', 241, 276, 11819, 4133, 691, '2', '1986-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Orthopedics and Sports Medicine (Q1)'), (1467, 'Journal of Computational Physics', 10902716, 1.882, 'Q1', 256, 683, 33418, 11051, 2034, '2', '1966-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Computer Science Applications (Q1); Modeling and Simulation (Q1); Numerical Analysis (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (1468, 'Journal of Hand Surgery', 3635023, 1.882, 'Q1', 115, 289, 6386, 1666, 722, '3', '1976-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (1469, 'SIAM Journal on Mathematical Analysis', 361410, 1.882, 'Q1', 92, 187, 6618, 1744, 504, '2', '1976, 1993, 1996-2020', 'Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1)'), (1470, 'Environmental Science: Nano', 20518161, 1.881, 'Q1', 67, 288, 20301, 5829, 720, '3', '2014-2020', 'Environmental Science (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (1471, 'European Journal of Neurology', 14681331, 1.881, 'Q1', 124, 449, 11416, 2999, 599, '3', '1994-2020', 'Neurology (Q1); Neurology (clinical) (Q1)'), (1472, 'Journal of Pineal Research', 1600079, 1.881, 'Q1', 131, 70, 4164, 2605, 212, '3', '1984-2020', 'Endocrinology (Q1)'), (1473, 'Geosphere', 1553040, 1.879, 'Q1', 58, 68, 6967, 1064, 301, '2', '2005-2020', 'Geology (Q1); Stratigraphy (Q1)'), (1474, 'ACS Sustainable Chemistry and Engineering', 21680485, 1.878, 'Q1', 109, 1869, 100459, 42830, 5290, '2', '2013-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (1475, 'Annals of Applied Probability', 10505164, 1.878, 'Q1', 86, 86, 3043, 1140, 297, '2', '1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (1476, 'Frontiers in Cellular Neuroscience', 16625102, 1.877, 'Q2', 86, 467, 42457, 7586, 1485, '19', '2007-2020', 'Cellular and Molecular Neuroscience (Q2)'), (1477, 'Journal of the Association for Information Sy', 15583457, 1.877, 'Q1', 78, 61, 5525, 831, 126, '2', '2007-2020', 'Computer Science Applications (Q1); Information Systems (Q1)'), (1478, 'Transcription', 21541272, 1.876, 'Q1', 30, 21, 2019, 308, 80, '3', '2010-2020', 'Biochemistry (Q1); Biotechnology (Q1); Genetics (Q1)'), (1479, 'Journal of Psychiatric Research', 18791379, 1.875, 'Q1', 136, 357, 18469, 3624, 755, '3', '1961-1982, 1984-2020', 'Biological Psychiatry (Q1); Psychiatry and Mental Health (Q1)'), (1480, 'Anesthesiology', 15281175, 1.874, 'Q1', 234, 547, 9818, 3828, 772, '2', '1945-2020', 'Anesthesiology and Pain Medicine (Q1)'), (1481, 'Metacognition and Learning', 15561631, 1.874, 'Q1', 52, 25, 1494, 228, 52, '2', '2006-2020', 'Education (Q1)'), (1482, 'Seminars in Liver Disease', 10988971, 1.874, 'Q1', 126, 41, 4173, 624, 115, '2', '1981-2020', 'Hepatology (Q1)'), (1483, 'Liver International', 14783223, 1.873, 'Q1', 110, 413, 13524, 3989, 720, '3', '2003-2020', 'Hepatology (Q1)'), (1484, 'Clinical Epigenetics', 18687083, 1.871, 'Q1', 53, 180, 10306, 2914, 477, '3', '2010-2020', 'Developmental Biology (Q1); Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1)'), (1485, 'Science China Chemistry', 18691870, 1.87, 'Q1', 58, 244, 11918, 3810, 617, '1', '2010-2020', 'Chemistry (miscellaneous) (Q1)'), (1486, 'Frontiers in Synaptic Neuroscience', 16633563, 1.869, 'Q1', 38, 57, 5341, 299, 63, '19', '2009-2020', 'Cell Biology (Q1); Cellular and Molecular Neuroscience (Q2)'), (1487, 'Clinical Epidemiology', 11791349, 1.868, 'Q1', 58, 139, 4946, 1438, 315, '41', '2010-2020', 'Epidemiology (Q1)'), (1488, 'Current Opinion in Pharmacology', 14714973, 1.868, 'Q1', 132, 109, 6638, 1728, 306, '16', '2001-2021', 'Drug Discovery (Q1); Pharmacology (Q1)'), (1489, 'Radiographics', 15271323, 1.866, 'Q1', 172, 161, 8161, 2530, 381, '2', '1985-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1490, 'Ecological Applications', 19395582, 1.864, 'Q1', 213, 181, 13199, 2378, 510, '2', '1991-2020', 'Ecology (Q1)'), (1491, 'Expert Review of Vaccines', 14760584, 1.864, 'Q1', 86, 94, 8262, 1570, 289, '3', '2002-2020', 'Drug Discovery (Q1); Immunology (Q1); Molecular Medicine (Q1); Pharmacology (Q1)'), (1492, 'Personality Disorders: Theory, Research, and ', 19492723, 1.864, 'Q1', 48, 51, 1476, 645, 179, '2', '2010-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (1493, 'Social Psychiatry and Psychiatric Epidemiolog', 14339285, 1.863, 'Q1', 121, 210, 10255, 1997, 401, '5', '1988-2020', 'Epidemiology (Q1); Health (social science) (Q1); Psychiatry and Mental Health (Q1); Social Psychology (Q1)'), (1494, 'Water Resources Research', 19447973, 1.863, 'Q1', 217, 644, 44062, 9921, 1736, '2', '1965-2020', 'Water Science and Technology (Q1)'), (1495, 'Monthly Weather Review', 15200493, 1.862, 'Q1', 179, 256, 14537, 2878, 698, '2', '1939, 1960, 1973, 1976-1994, 1996-2020', 'Atmospheric Science (Q1)'), (1496, 'Amyloid : the international journal of experi', 13506129, 1.861, 'Q1', 60, 56, 1330, 623, 100, '3', '1994-2020', 'Internal Medicine (Q1); Medicine (miscellaneous) (Q1)'), (1497, 'Sociology of Religion', 10694404, 1.861, 'Q1', 47, 19, 1251, 186, 59, '2', '1964-1975, 1977-1978, 1980-1984, 1986-1994, 1996, 1998-2001, 2005-2020', 'Religious Studies (Q1); Social Sciences (miscellaneous) (Q1)'), (1498, 'International Immunology', 14602377, 1.86, 'Q1', 134, 53, 2931, 904, 192, '3', '1989-2020', 'Immunology (Q1); Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1)'), (1499, 'Geobiology', 14724677, 1.859, 'Q1', 72, 45, 3815, 635, 140, '3', '2003-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Environmental Science (miscellaneous) (Q1)'), (1500, 'Journal of Anxiety Disorders', 8876185, 1.859, 'Q1', 115, 106, 6248, 1161, 255, '3', '1987-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1501, 'Value in Health', 10983015, 1.859, 'Q1', 103, 211, 8179, 2291, 532, '3', '1998-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1502, 'Journal of the Mechanics and Physics of Solid', 225096, 1.857, 'Q1', 173, 315, 17008, 4551, 725, '3', '1952-2020', 'Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (1503, 'Materials Chemistry Frontiers', 20521537, 1.857, 'Q1', 46, 311, 22356, 5211, 819, '3', '2017-2020', 'Materials Chemistry (Q1); Materials Science (miscellaneous) (Q1)'), (1504, 'Molecular Microbiology', 13652958, 1.857, 'Q1', 247, 209, 13425, 2607, 699, '3', '1987-2020', 'Microbiology (Q1); Molecular Biology (Q1)'), (1505, 'Respirology', 14401843, 1.857, 'Q1', 85, 272, 7474, 2207, 430, '3', '1996-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (1506, 'Journal of Travel and Tourism Marketing', 10548408, 1.856, 'Q1', 73, 62, 5107, 1878, 250, '2', '1992-2020', 'Marketing (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (1507, 'British Journal of Social Psychology', 1446665, 1.855, 'Q1', 98, 69, 3969, 568, 135, '2', '1981-2020', 'Social Psychology (Q1)'), (1508, 'Journal of Comparative Neurology', 10969861, 1.855, 'Q1', 209, 197, 15754, 1686, 559, '2', '1911-2020', 'Neuroscience (miscellaneous) (Q1)'), (1509, 'Infectious Disease Clinics of North America', 15579824, 1.854, 'Q1', 96, 57, 4523, 1000, 168, '3', '1987-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1)'), (1510, 'Journals of the Atmospheric Sciences', 15200469, 1.853, 'Q1', 173, 222, 11742, 2266, 648, '2', '1969-1971, 1973-2020', 'Atmospheric Science (Q1)'), (1511, 'Journal of Endodontics', 992399, 1.85, 'Q1', 148, 273, 9419, 3664, 834, '2', '1975-2020', 'Dentistry (miscellaneous) (Q1)'), (1512, 'Pharmacological Research', 10436618, 1.85, 'Q1', 132, 602, 58732, 7205, 974, '2', '1989-2020', 'Pharmacology (Q1)'), (1513, 'Journal of Pathology: Clinical Research', 20564538, 1.849, 'Q1', 21, 33, 1093, 347, 71, '3', '2015-2020', 'Pathology and Forensic Medicine (Q1)'), (1514, 'Educational Studies in Mathematics', 15730816, 1.847, 'Q1', 65, 71, 3044, 487, 167, '16', '1968-2020', 'Education (Q1); Mathematics (miscellaneous) (Q1)'), (1515, 'Sociology', 380385, 1.847, 'Q1', 109, 81, 4795, 900, 203, '3', '1967-2020', 'Sociology and Political Science (Q1)'), (1516, 'Climate Risk Management', 22120963, 1.846, 'Q1', 30, 48, 2829, 813, 113, '16', '2014-2020', 'Atmospheric Science (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)'), (1517, 'Geoderma', 18726259, 1.846, 'Q1', 165, 543, 34310, 9006, 1460, '16', '1967-2021', 'Soil Science (Q1)'), (1518, 'Respiratory Research', 1465993, 1.846, 'Q1', 104, 325, 13167, 3798, 733, '3', '2000-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (1519, 'Agriculture, Ecosystems and Environment', 1678809, 1.844, 'Q1', 174, 316, 20756, 5842, 1012, '16', '1983-2020', 'Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Ecology (Q1)'), (1520, 'Molecular Medicine', 10761551, 1.844, 'Q1', 118, 119, 6371, 850, 156, '2', '1994-2020', 'Genetics (Q1); Genetics (clinical) (Q1); Molecular Biology (Q1); Molecular Medicine (Q1)'), (1521, 'Regional Studies', 13600591, 1.844, 'Q1', 120, 179, 9875, 2021, 411, '3', '1967-2020', 'Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (1522, 'Materials Today Energy', 24686069, 1.843, 'Q1', 32, 198, 11758, 2436, 358, '3', '2016-2020', 'Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Materials Science (miscellaneous) (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q'), (1523, 'Geoscience Frontiers', 16749871, 1.842, 'Q1', 57, 165, 15198, 2198, 382, '1', '2010-2021', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (1524, 'Materials and Design', 2641275, 1.842, 'Q1', 164, 938, 47964, 19966, 2510, '16', '1980-2020', 'Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (1525, 'Journal of Knowledge Management', 13673270, 1.841, 'Q1', 113, 165, 15913, 2816, 272, '3', '1997-2020', 'Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (1526, 'Mass Communication and Society', 15205436, 1.841, 'Q1', 38, 43, 2673, 374, 107, '3', '2008-2020', 'Communication (Q1)'), (1527, 'Plastic and Reconstructive Surgery', 15294242, 1.841, 'Q1', 179, 889, 16436, 6415, 1621, '2', '1946-2020', 'Surgery (Q1)'), (1528, 'European Psychiatry', 9249338, 1.84, 'Q1', 96, 106, 1280, 1798, 356, '3', '1991-2020', 'Psychiatry and Mental Health (Q1)'), (1529, 'Evolution; international journal of organic e', 15585646, 1.84, 'Q1', 199, 230, 14562, 2167, 610, '2', '1948-1949, 1971-1978, 1980, 1982-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)'), (1530, 'Journal of the American Medical Directors Ass', 15258610, 1.84, 'Q1', 91, 482, 15552, 3536, 612, '2', '2001-2020', 'Geriatrics and Gerontology (Q1); Health Policy (Q1); Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)'), (1531, 'Anaesthesia', 13652044, 1.839, 'Q1', 117, 355, 8635, 2689, 456, '3', '1947-2020', 'Anesthesiology and Pain Medicine (Q1)'), (1532, 'Solar Energy Materials and Solar Cells', 18790248, 1.839, 'Q1', 186, 438, 19993, 12025, 1676, '16', '1970, 1992-2021', 'Electronic, Optical and Magnetic Materials (Q1); Renewable Energy, Sustainability and the Environment (Q1); Surfaces, Coatings and Films (Q1)'), (1533, 'Clinical Research in Cardiology', 18610692, 1.838, 'Q1', 70, 237, 7069, 1662, 368, '5', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)'), (1534, 'Critical Reviews in Solid State and Materials', 15476561, 1.838, 'Q1', 59, 26, 4982, 441, 47, '3', '1977-1984, 1986-2020', 'Chemical Engineering (miscellaneous) (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Physical and Theoretical Chemistr'), (1535, 'Agricultural and Forest Meteorology', 1681923, 1.837, 'Q1', 165, 336, 22974, 6191, 1053, '16', '1984-2020', 'Agronomy and Crop Science (Q1); Atmospheric Science (Q1); Forestry (Q1); Global and Planetary Change (Q1)'), (1536, 'Automation in Construction', 9265805, 1.837, 'Q1', 121, 364, 20472, 7433, 778, '16', '1992-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Control and Systems Engineering (Q1)'), (1537, 'Chemical Communications', 1364548, 1.837, 'Q1', 333, 3306, 128810, 51641, 9231, '3', '1965-1968, 1996-2020', 'Catalysis (Q1); Ceramics and Composites (Q1); Chemistry (miscellaneous) (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1); Surfaces, Coatings and '), (1538, 'Community College Review', 915521, 1.837, 'Q1', 30, 18, 1174, 93, 49, '2', '1973-2020', 'Education (Q1)'), (1539, 'Population and Development Review', 17284457, 1.836, 'Q1', 96, 36, 1805, 440, 111, '3', '1976-2020', 'Demography (Q1); Development (Q1); Sociology and Political Science (Q1)'), (1540, 'Biogeochemistry', 1682563, 1.835, 'Q1', 146, 105, 8178, 1400, 308, '16', '1984-2020', 'Earth-Surface Processes (Q1); Environmental Chemistry (Q1); Water Science and Technology (Q1)'), (1541, 'Frontiers in Oncology', 2234943, 1.834, 'Q1', 83, 2914, 162276, 13569, 2284, '19', '2011-2020', 'Oncology (Q1); Cancer Research (Q2)'), (1542, 'IEEE Computational Intelligence Magazine', 1556603, 1.834, 'Q1', 56, 43, 1147, 1143, 77, '2', '2006-2020', 'Artificial Intelligence (Q1); Theoretical Computer Science (Q1)'), (1543, 'ACS Applied Energy Materials', 25740962, 1.833, 'Q1', 36, 1355, 68809, 10680, 1850, '2', '2018-2020', 'Chemical Engineering (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Electrochemistry (Q1); Energy Engineering and Power Technology (Q1); Materials Chemistry (Q1)'), (1544, 'Psychotherapy', 19391536, 1.833, 'Q1', 77, 58, 1961, 735, 160, '2', '1973-1978, 1980-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1545, 'Spine Journal', 15299430, 1.832, 'Q1', 108, 279, 9017, 2959, 715, '2', '2001-2020', 'Neurology (clinical) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (1546, 'BMJ, The', 9598146, 1.831, 'Q1', 429, 2967, 23532, 17767, 4187, '3', '1857-2020', 'Medicine (miscellaneous) (Q1)'), (1547, 'Cell and Bioscience', 20453701, 1.831, 'Q1', 47, 137, 10578, 1429, 219, '3', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (1548, 'Stroke and Vascular Neurology', 20598696, 1.829, 'Q1', 20, 75, 2532, 689, 107, '3', '2016-2020', 'Cardiology and Cardiovascular Medicine (Q1); Neurology (clinical) (Q1)'), (1549, 'Environmental Modelling and Software', 13648152, 1.828, 'Q1', 136, 223, 14218, 4373, 711, '16', '1997-2020', 'Ecological Modeling (Q1); Environmental Engineering (Q1); Software (Q1)'), (1550, 'Viruses', 19994915, 1.828, 'Q1', 85, 1483, 81472, 11738, 2297, '19', '2009-2020', 'Infectious Diseases (Q1); Virology (Q1)'), (1551, 'American Journal of Clinical and Experimental', 21647712, 1.827, 'Q1', 5, 0, 0, 8, 1, '2', '2014, 2016-2017', 'Immunology (Q1); Immunology and Allergy (Q1)'), (1552, 'Frontiers in Aging Neuroscience', 16634365, 1.827, 'Q1', 78, 493, 35712, 6471, 1129, '19', '2009-2020', 'Aging (Q1); Cognitive Neuroscience (Q1)'), (1553, 'British Journal of Sociology', 71315, 1.826, 'Q1', 92, 79, 4507, 699, 181, '3', '1965-1977, 1979-1984, 1987-2020', 'Sociology and Political Science (Q1)'), (1554, 'Cancer journal (Sudbury, Mass.)', 15289117, 1.825, 'Q1', 89, 76, 5317, 613, 161, '2', '1996-2020', 'Oncology (Q1); Cancer Research (Q2)'), (1555, 'Current Genetics', 1728083, 1.825, 'Q1', 81, 114, 7450, 1326, 387, '5', '1979-2020', 'Genetics (Q1); Medicine (miscellaneous) (Q1)'), (1556, 'Journal of Molecular Cell Biology', 17594685, 1.825, 'Q1', 62, 73, 3559, 887, 201, '2', '2009-2020', 'Cell Biology (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q1)'), (1557, 'Renewable Energy', 9601481, 1.825, 'Q1', 191, 2467, 116113, 29828, 3587, '3', '1991-2021', 'Renewable Energy, Sustainability and the Environment (Q1)'), (1558, 'Sustainable Energy and Fuels', 23984902, 1.825, 'Q1', 38, 543, 32689, 5085, 828, '3', '2017-2020', 'Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (1559, 'Annals of Clinical and Translational Neurolog', 23289503, 1.824, 'Q1', 42, 265, 9229, 1992, 482, '2', '2014-2020', 'Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)'), (1560, 'Educational Management Administration and Lea', 17411440, 1.824, 'Q1', 43, 144, 9134, 774, 159, '3', '1972-1993, 1995-1999, 2003-2020', 'Education (Q1); Strategy and Management (Q1)'), (1561, 'Journal of Algebraic Geometry', 10563911, 1.824, 'Q1', 50, 17, 611, 176, 63, '2', '1996-2020', 'Algebra and Number Theory (Q1); Geometry and Topology (Q1)'), (1562, 'BMC Medical Research Methodology', 14712288, 1.82, 'Q1', 121, 292, 11235, 2835, 594, '3', '2001-2020', 'Health Informatics (Q1); Epidemiology (Q2)'), (1563, 'Educational and Psychological Measurement', 131644, 1.819, 'Q1', 95, 69, 2857, 409, 155, '2', '1941-2020', 'Applied Mathematics (Q1); Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Education (Q1); Psychology (miscellaneous) (Q1)'), (1564, 'Journal of Leukocyte Biology', 7415400, 1.819, 'Q1', 191, 279, 21766, 3087, 669, '2', '1984-2020', 'Cell Biology (Q1); Immunology (Q1); Immunology and Allergy (Q1)'), (1565, 'Cancers', 20726694, 1.818, 'Q1', 76, 3848, 303195, 17435, 2691, '19', '2010-2020', 'Oncology (Q1); Cancer Research (Q2)'), (1566, 'Journal of Counseling Psychology', 220167, 1.818, 'Q1', 133, 63, 2710, 952, 198, '2', '1954-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Social Psychology (Q1)'), (1567, 'Perspectives on Sexual and Reproductive Healt', 15386341, 1.818, 'Q1', 93, 34, 1278, 266, 69, '2', '1996-2020', 'Obstetrics and Gynecology (Q1); Public Health, Environmental and Occupational Health (Q1); Sociology and Political Science (Q1)'), (1568, 'Journal of Comparative Economics', 10957227, 1.817, 'Q1', 82, 65, 3632, 600, 177, '2', '1977-2020', 'Economics and Econometrics (Q1)'), (1569, 'Accident Analysis and Prevention', 18792057, 1.816, 'Q1', 152, 385, 20484, 5984, 1034, '3', '1969-2020', 'Human Factors and Ergonomics (Q1); Law (Q1); Public Health, Environmental and Occupational Health (Q1); Safety, Risk, Reliability and Quality (Q1)'), (1570, 'Skeletal Muscle', 20445040, 1.816, 'Q1', 43, 36, 2088, 445, 97, '3', '2011-2020', 'Cell Biology (Q1); Molecular Biology (Q1); Orthopedics and Sports Medicine (Q1)'), (1571, 'Bernoulli', 13507265, 1.814, 'Q1', 72, 112, 3932, 1157, 378, '16', '1995-1996, 1998-2020', 'Statistics and Probability (Q1)'), (1572, 'Liver Transplantation', 15276465, 1.814, 'Q1', 150, 246, 5580, 2091, 410, '3', '2000-2020', 'Hepatology (Q1); Surgery (Q1); Transplantation (Q1)'), (1573, 'Frontiers in Cellular and Infection Microbiol', 22352988, 1.812, 'Q1', 75, 848, 62411, 7602, 1387, '19', '2011-2020', 'Immunology (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1); Microbiology (medical) (Q1)'), (1574, 'Seminars in Oncology', 937754, 1.812, 'Q1', 133, 51, 2969, 690, 124, '3', '1974-2020', 'Hematology (Q1); Oncology (Q1)'), (1575, 'Acta Orthopaedica', 17453682, 1.811, 'Q1', 114, 188, 4655, 1309, 337, '3', '1930, 1932-1945, 1948-1959, 1961-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (1576, 'Clinical Reviews in Allergy and Immunology', 10800549, 1.811, 'Q1', 76, 65, 7116, 1414, 190, '2', '1995-2020', 'Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1)'), (1577, 'Journal of Transport Geography', 9666923, 1.809, 'Q1', 108, 264, 15444, 2931, 514, '3', '1993-2020', 'Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Transportation (Q1)'), (1578, 'PharmacoEconomics', 11707690, 1.809, 'Q1', 100, 113, 4891, 1373, 316, '3', '1992-2020', 'Health Policy (Q1); Pharmacology (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1579, 'Aging and Disease', 21525250, 1.808, 'Q1', 54, 122, 10311, 1855, 265, '2', '2010-2020', 'Geriatrics and Gerontology (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)'), (1580, 'Biochimica et Biophysica Acta - Gene Regulato', 18749399, 1.808, 'Q1', 126, 102, 9877, 1306, 318, '16', '2008-2020', 'Biochemistry (Q1); Biophysics (Q1); Genetics (Q1); Molecular Biology (Q1); Structural Biology (Q2)'), (1581, 'Environmental Politics', 9644016, 1.808, 'Q1', 71, 101, 5770, 901, 163, '3', '1992-2020', 'Environmental Science (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (1582, 'Earth System Dynamics', 21904979, 1.807, 'Q1', 39, 69, 4911, 986, 199, '5', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (1583, 'Waste Management', 956053, 1.807, 'Q1', 161, 586, 32526, 14276, 1804, '3', '1983-2020', 'Waste Management and Disposal (Q1)'), (1584, 'California Management Review', 21628564, 1.806, 'Q1', 129, 27, 10, 664, 77, '2', '1970-2020', 'Strategy and Management (Q1)'), (1585, 'Corrosion Science', 10938, 1.806, 'Q1', 204, 695, 35550, 9694, 1259, '3', '1961-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (1586, 'Critical Finance Review', 21645760, 1.806, 'Q1', 7, 8, 374, 65, 60, '2', '2017-2019', 'Finance (Q1)'), (1587, 'Knee Surgery, Sports Traumatology, Arthroscop', 9422056, 1.806, 'Q1', 125, 715, 24628, 5772, 1447, '5', '1993-2020', 'Orthopedics and Sports Medicine (Q1); Sports Science (Q1); Surgery (Q1)'), (1588, 'Mathematical Programming Computation', 18672949, 1.806, 'Q1', 36, 29, 1223, 451, 54, '5', '2009-2020', 'Software (Q1); Theoretical Computer Science (Q1)'), (1589, 'iScience', 25890042, 1.805, 'Q1', 27, 1073, 65016, 3676, 717, '2', '2018-2020', 'Multidisciplinary (Q1)'), (1590, 'Journal of Immunotherapy', 15249557, 1.805, 'Q1', 92, 45, 1329, 697, 149, '2', '1991-2020', 'Immunology and Allergy (Q1); Pharmacology (Q1); Cancer Research (Q2); Immunology (Q2)'), (1591, 'Journal of Physiology', 223751, 1.802, 'Q1', 240, 530, 23318, 5964, 1360, '3', '1878-2020', 'Physiology (Q1); Sports Science (Q1)'), (1592, 'Reviews in Fish Biology and Fisheries', 9603166, 1.801, 'Q1', 99, 35, 3836, 694, 134, '16', '1991-2020', 'Aquatic Science (Q1)'), (1593, 'Research', 26395274, 1.8, 'Q1', 16, 143, 9969, 880, 129, '2', '2018-2020', 'Multidisciplinary (Q1)'), (1594, 'Foundations and Trends in Theoretical Compute', 15513068, 1.799, 'Q1', 27, 1, 158, 30, 5, '2', '2005-2007, 2009-2017, 2019-2020', 'Theoretical Computer Science (Q1)'), (1595, 'Emotion Review', 17540739, 1.798, 'Q1', 68, 40, 2594, 534, 116, '3', '2009-2020', 'Arts and Humanities (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q1); Social Psychology (Q1)'), (1596, 'Transactions of the American Mathematical Soc', 29947, 1.798, 'Q1', 100, 287, 9421, 3130, 1188, '2', '1900-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (1597, 'European Child and Adolescent Psychiatry', 10188827, 1.796, 'Q1', 93, 318, 16270, 1963, 398, '5', '1992-2020', 'Developmental and Educational Psychology (Q1); Medicine (miscellaneous) (Q1); Pediatrics, Perinatology and Child Health (Q1); Philosophy (Q1); Psychiatry and Mental Health (Q1)'), (1598, 'Shiyou Kantan Yu Kaifa/Petroleum Exploration ', 10000747, 1.796, 'Q1', 51, 120, 3988, 1192, 346, '1', '1998, 2001-2020', 'Energy Engineering and Power Technology (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (1599, 'Science of the Total Environment', 489697, 1.795, 'Q1', 244, 6929, 455970, 106837, 13125, '16', '1970, 1972-2021', 'Environmental Chemistry (Q1); Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1)'), (1600, 'Desalination', 119164, 1.794, 'Q1', 184, 399, 22879, 10121, 1084, '16', '1966-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Water Science and Technology (Q1)'), (1601, 'Early Childhood Research Quarterly', 8852006, 1.794, 'Q1', 98, 147, 10384, 1021, 254, '3', '1986-2021', 'Developmental and Educational Psychology (Q1); Education (Q1); Sociology and Political Science (Q1)'), (1602, 'Business Ethics Quarterly', 1052150, 1.793, 'Q1', 74, 24, 1497, 223, 57, '3', '1993, 1996-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Philosophy (Q1)'), (1603, 'Preslia', 327786, 1.792, 'Q1', 49, 12, 1054, 178, 38, '31', '1979, 1982-2020', 'Ecology (Q1); Plant Science (Q1)'), (1604, 'Archives of Pathology and Laboratory Medicine', 39985, 1.79, 'Q1', 117, 198, 6797, 2638, 523, '2', '1973-2020', 'Medical Laboratory Technology (Q1); Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1)'), (1605, 'British Journal of Educational Technology', 71013, 1.79, 'Q1', 95, 150, 6966, 2265, 369, '3', '1970-2020', 'Education (Q1); E-learning (Q1)'), (1606, 'Journal of Organization Design', 2245408, 1.789, 'Q1', 8, 25, 1345, 181, 48, '3', '2016-2020', 'Strategy and Management (Q1)'), (1607, 'Arthritis Research and Therapy', 14786354, 1.788, 'Q1', 150, 282, 10557, 4066, 825, '3', '2003-2020', 'Immunology and Allergy (Q1); Rheumatology (Q1); Immunology (Q2)'), (1608, 'Journal of Shoulder and Elbow Surgery', 15326500, 1.787, 'Q1', 141, 453, 13877, 3886, 1084, '2', '1992-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q1); Surgery (Q1)'), (1609, 'Cortex', 19738102, 1.786, 'Q1', 115, 331, 24473, 3286, 773, '7', '1964-1965, 1968-2020', 'Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Neurology (Q1); Neurology (clinical) (Q1); Neuropsychology and Physiological Psy'), (1610, 'International Journal of Robotics Research', 2783649, 1.786, 'Q1', 168, 108, 5741, 2873, 256, '2', '1982-2020', 'Applied Mathematics (Q1); Artificial Intelligence (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Modeling and Simulation (Q1); Software (Q1)'), (1611, 'International Journal of Eating Disorders', 1098108, 1.785, 'Q1', 138, 233, 9909, 2236, 473, '2', '1981-2020', 'Psychiatry and Mental Health (Q1)'), (1612, 'New Astronomy Reviews', 13876473, 1.785, 'Q1', 63, 11, 2986, 212, 29, '16', '1998-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (1613, 'Physics of Life Reviews', 18731457, 1.785, 'Q1', 65, 64, 1829, 668, 47, '16', '2004-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Artificial Intelligence (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (1614, 'Prevention Science', 13894986, 1.785, 'Q1', 85, 137, 6205, 1246, 306, '2', '2000-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (1615, 'Drug and Alcohol Dependence', 3768716, 1.783, 'Q1', 166, 542, 24733, 6169, 1399, '42', '1975-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Toxicology (Q1)'), (1616, 'Biology of Sex Differences', 20426410, 1.782, 'Q1', 39, 67, 5762, 765, 150, '3', '2010-2020', 'Endocrinology (Q1); Gender Studies (Q1)'), (1617, 'Body Image', 17401445, 1.781, 'Q1', 83, 115, 7301, 1497, 242, '16', '2004-2020', 'Applied Psychology (Q1); Psychology (miscellaneous) (Q1); Social Psychology (Q1)'), (1618, 'RMD Open', 20565933, 1.781, 'Q1', 36, 137, 4335, 1461, 312, '3', '2015-2020', 'Immunology and Allergy (Q1); Rheumatology (Q1); Immunology (Q2)'), (1619, 'Stem cells translational medicine', 21576564, 1.781, 'Q1', 71, 144, 8622, 3040, 428, '2', '2012-2020', 'Developmental Biology (Q1); Medicine (miscellaneous) (Q1); Cell Biology (Q2)'), (1620, 'Annual Reviews in Control', 13675788, 1.78, 'Q1', 80, 55, 5080, 1435, 132, '3', '1996-2020', 'Control and Systems Engineering (Q1); Software (Q1)'), (1621, 'Endoscopy', 14388812, 1.78, 'Q1', 143, 693, 6426, 2698, 616, '5', '1969-2020', 'Gastroenterology (Q1)'), (1622, 'International Journal of Computer Vision', 9205691, 1.78, 'Q1', 199, 155, 9609, 3752, 259, '16', '1987-2020', 'Artificial Intelligence (Q1); Computer Vision and Pattern Recognition (Q1); Software (Q1)'), (1623, 'Journal of Geodesy', 14321394, 1.78, 'Q1', 95, 112, 4606, 1536, 340, '5', '1995-2020', 'Computers in Earth Sciences (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1)'), (1624, 'Physical Review B', 24699950, 1.78, 'Q1', 465, 5035, 267935, 88026, 15592, '2', '1996, 2005, 2009, 2012-2020', 'Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (1625, 'Experimental Neurology', 144886, 1.779, 'Q1', 186, 283, 22752, 3200, 639, '2', '1959-2020', 'Developmental Neuroscience (Q1); Neurology (Q1)'), (1626, 'Drug Discovery Today', 18785832, 1.778, 'Q1', 175, 258, 19752, 5142, 630, '3', '1996-2020', 'Drug Discovery (Q1); Pharmacology (Q1)'), (1627, 'IEEE Transactions on Image Processing', 10577149, 1.778, 'Q1', 288, 701, 38286, 18352, 1355, '2', '1992-2020', 'Computer Graphics and Computer-Aided Design (Q1); Software (Q1)'), (1628, 'Evolutionary Applications', 17524563, 1.776, 'Q1', 68, 199, 17811, 1805, 385, '2', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)'), (1629, 'IEEE Transactions on Systems, Man, and Cybern', 10834427, 1.776, 'Q1', 129, 1235, 37868, 1234, 107, '2', '1996-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q1); Information Systems (Q1); Software (Q1)'), (1630, 'International Affairs', 14682346, 1.776, 'Q1', 79, 76, 6427, 1027, 176, '3', '1979-1986, 1988-1989, 1996-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (1631, 'Medical Education', 13652923, 1.776, 'Q1', 138, 344, 6198, 1616, 386, '3', '1966-2020', 'Education (Q1); Medicine (miscellaneous) (Q1)'), (1632, 'Nuclear Fusion', 17414326, 1.774, 'Q1', 120, 399, 17019, 5263, 1394, '3', '1969-2020', 'Condensed Matter Physics (Q1); Nuclear and High Energy Physics (Q1)'), (1633, 'BJU International', 14644096, 1.773, 'Q1', 148, 340, 7981, 3731, 768, '3', '1929-2020', 'Urology (Q1)'), (1634, 'International Business Review', 9695931, 1.773, 'Q1', 95, 96, 11145, 1923, 274, '3', '1993-2020', 'Business and International Management (Q1); Finance (Q1); Marketing (Q1)'), (1635, 'Policy Studies Journal', 190292, 1.773, 'Q1', 69, 74, 5257, 626, 138, '3', '1972-2020', 'Management, Monitoring, Policy and Law (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (1636, 'Food Chemistry', 18737072, 1.772, 'Q1', 262, 1858, 72063, 42304, 5714, '3', '1976-2021', 'Analytical Chemistry (Q1); Food Science (Q1); Medicine (miscellaneous) (Q1)'), (1637, 'NeuroImage: Clinical', 22131582, 1.772, 'Q1', 68, 419, 27271, 6246, 1226, '16', '2012-2020', 'Cognitive Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1638, 'Cities', 2642751, 1.771, 'Q1', 90, 419, 28409, 4866, 723, '3', '1983-2020', 'Development (Q1); Sociology and Political Science (Q1); Tourism, Leisure and Hospitality Management (Q1); Urban Studies (Q1)'), (1639, 'Proceedings of the Combustion Institute', 18732704, 1.771, 'Q1', 140, 682, 2050, 5074, 1138, '3', '2000, 2002, 2005, 2007, 2009, 2011, 2013, 2015, 2017, 2019-2020', 'Chemical Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1); Physical and Theoretical Chemistry (Q1)'), (1640, 'Current protocols in mouse biology', 21612617, 1.77, 'Q1', 15, 16, 407, 139, 42, '2', '2014-2020', 'Medicine (miscellaneous) (Q1)'), (1641, 'Dental Materials', 1095641, 1.77, 'Q1', 150, 193, 9135, 3368, 578, '3', '1985-2020', 'Dentistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)'), (1642, 'Developmental Biology', 1095564, 1.77, 'Q1', 225, 223, 13422, 2520, 775, '2', '1959-2020', 'Developmental Biology (Q1); Molecular Biology (Q1); Cell Biology (Q2)'), (1643, 'Biochimica et Biophysica Acta - Molecular and', 13881981, 1.769, 'Q2', 160, 195, 15507, 2373, 454, '16', '1977, 1985, 1998-2020', 'Cell Biology (Q2); Molecular Biology (Q2)'), (1644, 'Quaternary Geochronology', 18711014, 1.769, 'Q1', 63, 48, 2830, 677, 209, '16', '2006-2021', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geology (Q1); Stratigraphy (Q1)'), (1645, 'Synthetic Biology', 23977000, 1.769, 'Q1', 8, 20, 738, 107, 25, '3', '2018-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1)'), (1646, 'Journal of Technology Transfer', 8929912, 1.768, 'Q1', 79, 113, 9152, 1517, 228, '2', '1977-2020', 'Accounting (Q1); Business and International Management (Q1); Engineering (miscellaneous) (Q1)'), (1647, 'Hippocampus', 10981063, 1.767, 'Q1', 155, 98, 7135, 925, 246, '2', '1991-2020', 'Cognitive Neuroscience (Q1)'), (1648, 'Journal of Psychiatry and Neuroscience', 14882434, 1.767, 'Q1', 99, 52, 2773, 610, 129, '9', '1991-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)'), (1649, 'Biophysical Reviews', 18672469, 1.766, 'Q1', 39, 166, 9214, 1795, 272, '5', '2009-2020', 'Biophysics (Q1); Molecular Biology (Q2); Structural Biology (Q2)'), (1650, 'European heart journal. Quality of care &amp;', 20581742, 1.766, 'Q1', 18, 63, 1385, 414, 117, '3', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q1); Health Policy (Q1)'), (1651, 'Critical Reviews in Clinical Laboratory Scien', 10408363, 1.765, 'Q1', 72, 48, 5941, 597, 94, '3', '1970-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biochemistry (medical) (Q1); Clinical Biochemistry (Q1)'), (1652, 'Annals of Surgical Oncology', 10689265, 1.764, 'Q1', 173, 1204, 23041, 7200, 1684, '2', '1994-2020', 'Oncology (Q1); Surgery (Q1)'), (1653, 'Climate Policy', 14693062, 1.764, 'Q1', 66, 112, 7108, 1337, 288, '3', '2001-2020', 'Atmospheric Science (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)'), (1654, 'Current Opinion in Environmental Science and ', 24685844, 1.764, 'Q1', 20, 73, 4058, 1045, 126, '16', '2018-2020', 'Environmental Chemistry (Q1); Health, Toxicology and Mutagenesis (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1655, 'Punishment and Society', 17413095, 1.764, 'Q1', 58, 56, 3863, 287, 83, '3', '1999-2020', 'Law (Q1); Social Sciences (miscellaneous) (Q1)'), (1656, 'Journal of Money, Credit and Banking', 15384616, 1.763, 'Q1', 108, 95, 3699, 384, 196, '2', '1996-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (1657, 'Quantum Topology', 1664073, 1.763, 'Q1', 16, 14, 649, 140, 47, '19', '2013-2020', 'Geometry and Topology (Q1); Mathematical Physics (Q1)'), (1658, 'Development and Psychopathology', 9545794, 1.761, 'Q1', 171, 209, 18687, 1658, 419, '3', '1989-2020', 'Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1659, 'Reliability Engineering and System Safety', 18790836, 1.761, 'Q1', 146, 505, 23805, 6698, 926, '3', '1983, 1988-2021', 'Applied Mathematics (Q1); Industrial and Manufacturing Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)'), (1660, 'Seminars in Radiation Oncology', 10534296, 1.761, 'Q1', 93, 40, 2575, 654, 118, '3', '1991-2020', 'Oncology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Cancer Research (Q2)'), (1661, 'European Journal of International Relations', 13540661, 1.76, 'Q1', 87, 68, 5963, 501, 129, '3', '1995-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (1662, 'Neuropharmacology', 283908, 1.76, 'Q1', 167, 419, 35191, 6833, 1309, '3', '1962-2020', 'Pharmacology (Q1); Cellular and Molecular Neuroscience (Q2)'), (1663, 'Journal of Experimental Psychology: Learning ', 19391285, 1.758, 'Q1', 156, 100, 4654, 1245, 441, '2', '1975, 1982-2020', 'Experimental and Cognitive Psychology (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1664, 'Research on Language and Social Interaction', 8351813, 1.758, 'Q1', 60, 23, 1196, 207, 68, '2', '1987-1991, 1993-2020', 'Communication (Q1); Linguistics and Language (Q1); Social Psychology (Q1)'), (1665, 'Glycobiology', 9596658, 1.757, 'Q1', 128, 76, 3407, 1311, 299, '3', '1990-2020', 'Biochemistry (Q1)'), (1666, 'International Mathematics Research Notices', 10737928, 1.757, 'Q1', 76, 263, 7688, 1302, 570, '3', '1991-2020', 'Mathematics (miscellaneous) (Q1)'), (1667, 'Current Neurology and Neuroscience Reports', 15284042, 1.756, 'Q1', 72, 63, 5166, 1667, 310, '2', '2001-2020', 'Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)'), (1668, 'Genes Chromosomes and Cancer', 10982264, 1.754, 'Q1', 119, 88, 3415, 1063, 246, '2', '1989-2020', 'Genetics (Q1); Cancer Research (Q2)'), (1669, 'Frontiers in Plant Science', 1664462, 1.752, 'Q1', 125, 2184, 159006, 34568, 5783, '19', '2010-2020', 'Plant Science (Q1)'), (1670, 'npj Systems Biology and Applications', 20567189, 1.752, 'Q1', 21, 33, 1694, 496, 115, '3', '2015-2020', 'Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Computer Science Applications (Q1); Drug Discovery (Q1); Modeling and Simulation (Q1)'), (1671, 'Anthropological Theory', 14634996, 1.751, 'Q1', 52, 29, 1953, 151, 67, '3', '2001-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1)'), (1672, 'Journal of Neurochemistry', 14714159, 1.75, 'Q1', 229, 303, 25038, 3298, 665, '3', '1956-2020', 'Biochemistry (Q1); Cellular and Molecular Neuroscience (Q2)'), (1673, 'Journal of Archaeological Research', 15737756, 1.749, 'Q1', 54, 16, 4580, 121, 32, '2', '1993-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q1)'), (1674, 'Journal of Environmental Psychology', 2724944, 1.749, 'Q1', 137, 120, 7549, 1654, 280, '2', '1981-2020', 'Applied Psychology (Q1); Social Psychology (Q1)'), (1675, 'mSphere', 23795042, 1.749, 'Q1', 39, 484, 19091, 3302, 754, '2', '2016-2020', 'Microbiology (Q1); Molecular Biology (Q2)'), (1676, 'npj Clean Water', 20597037, 1.749, 'Q1', 15, 41, 2634, 391, 45, '2', '2018-2020', 'Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)'), (1677, 'Molecular Brain', 17566606, 1.748, 'Q2', 61, 164, 7593, 1163, 256, '3', '2008-2020', 'Cellular and Molecular Neuroscience (Q2); Molecular Biology (Q2)'), (1678, 'Particle and Fibre Toxicology', 17438977, 1.748, 'Q1', 98, 61, 4821, 1251, 143, '3', '2004-2020', 'Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Toxicology (Q1)'), (1679, 'Journal of Parkinson s Disease', 1877718, 1.747, 'Q1', 45, 184, 8237, 1375, 236, '16', '2011-2020', 'Neurology (clinical) (Q1); Cellular and Molecular Neuroscience (Q2)'), (1680, 'Theory, Culture and Society', 2632764, 1.747, 'Q1', 108, 84, 3785, 545, 176, '3', '1982-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (1681, 'Journal of General Internal Medicine', 15251497, 1.746, 'Q1', 180, 902, 19412, 3607, 1020, '2', '1986-2020', 'Internal Medicine (Q1)'), (1682, 'Language Policy', 15684555, 1.746, 'Q1', 32, 34, 2147, 187, 75, '16', '2004-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1)'), (1683, 'Biogeosciences', 17264189, 1.744, 'Q1', 127, 339, 29020, 4550, 1037, '5', '2004-2020', 'Earth-Surface Processes (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (1684, 'Quarterly Journal of the Royal Meteorological', 1477870, 1.744, 'Q1', 143, 236, 12736, 2788, 708, '2', '1873, 1875, 1877-2020', 'Atmospheric Science (Q1)'), (1685, 'Studies in Higher Education', 3075079, 1.744, 'Q1', 104, 295, 15908, 2386, 528, '3', '1976-2020', 'Education (Q1)'), (1686, 'Youth Violence and Juvenile Justice', 15412040, 1.744, 'Q1', 46, 22, 1609, 281, 69, '2', '2003-2020', 'Developmental and Educational Psychology (Q1); Health (social science) (Q1); Law (Q1)'), (1687, 'Influenza and other Respiratory Viruses', 17502640, 1.743, 'Q1', 57, 102, 2865, 1015, 221, '3', '2007-2020', 'Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1); Pulmonary and Respiratory Medicine (Q1); Epidemiology (Q2)'), (1688, 'Journal of Materials Science and Technology', 10050302, 1.743, 'Q1', 68, 572, 30108, 6659, 883, '16', '1993-2021', 'Ceramics and Composites (Q1); Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1); Polymers and Plastics (Q1)'), (1689, 'Sociological Review', 1467954, 1.743, 'Q1', 84, 89, 4554, 804, 220, '3', '1908-2020', 'Sociology and Political Science (Q1)'), (1690, 'International Journal of Physical Distributio', 9600035, 1.742, 'Q1', 111, 40, 2747, 1013, 149, '3', '1990-2020', 'Management of Technology and Innovation (Q1); Transportation (Q1)'), (1691, 'Accounting, Auditing and Accountability Journ', 9513574, 1.741, 'Q1', 99, 99, 8669, 1354, 275, '3', '1988-2020', 'Accounting (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)'), (1692, 'Environment and Planning A', 14723409, 1.74, 'Q1', 129, 136, 7757, 1619, 374, '3', '1973-2020', 'Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (1693, 'Journal of Clinical Immunology', 2719142, 1.739, 'Q1', 96, 155, 4367, 1285, 195, '2', '1981-2020', 'Immunology and Allergy (Q1); Immunology (Q2)'), (1694, 'Journal of Scleroderma and Related Disorders', 23971991, 1.738, 'Q1', 12, 40, 1587, 341, 110, '7', '2016-2020', 'Immunology and Allergy (Q1); Rheumatology (Q1); Immunology (Q2)'), (1695, 'American Review of Public Administration', 15523357, 1.737, 'Q1', 57, 85, 4109, 648, 183, '2', '1967-1983, 1987-2020', 'Marketing (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (1696, 'Energy and Buildings', 3787788, 1.737, 'Q1', 184, 705, 39338, 15832, 2394, '16', '1970, 1977-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1)'), (1697, 'Lithosphere', 19418264, 1.737, 'Q1', 43, 53, 5437, 572, 161, '2', '2009-2020', 'Geology (Q1)'), (1698, 'Socio-Economic Review', 14751461, 1.737, 'Q1', 54, 25, 1607, 369, 94, '3', '2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (1699, 'TESOL Quarterly', 398322, 1.737, 'Q1', 91, 50, 2505, 540, 158, '2', '1981-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1700, 'Building and Environment', 3601323, 1.736, 'Q1', 154, 754, 43938, 12000, 1687, '3', '1976-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Environmental Engineering (Q1); Geography, Planning and Development (Q1)'), (1701, 'IMA Fungus', 22106359, 1.736, 'Q1', 33, 24, 2153, 388, 86, '2', '2010-2012, 2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (1702, 'Journal of Materials Processing Technology', 9240136, 1.736, 'Q1', 190, 408, 11521, 8479, 1367, '16', '1990-2021', 'Ceramics and Composites (Q1); Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1); Metals and Alloys (Q1); Modeling and Simulation (Q1)'), (1703, 'Nutrition and Healthy Aging', 24519480, 1.735, 'Q1', 12, 6, 397, 255, 43, '16', '2017-2019', 'Biochemistry (Q1); Food Science (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (1704, 'Economics of Education Review', 2727757, 1.734, 'Q1', 85, 85, 3786, 646, 248, '3', '1981-1982, 1984-2020', 'Economics and Econometrics (Q1); Education (Q1)'), (1705, 'Journal of Sustainable Tourism', 9669582, 1.734, 'Q1', 103, 253, 20545, 2618, 326, '3', '1993-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (1706, 'Journal of Hydrometeorology', 1525755, 1.733, 'Q1', 123, 173, 10482, 1925, 413, '2', '2000-2020', 'Atmospheric Science (Q1)'), (1707, 'journal of prevention of Alzheimer s disease,', 24260266, 1.733, 'Q1', 13, 58, 1410, 358, 79, '19', '2017-2020', 'Neurology (clinical) (Q1); Psychiatry and Mental Health (Q1)'), (1708, 'Surgery for Obesity and Related Diseases', 15507289, 1.733, 'Q1', 86, 360, 9606, 3226, 780, '2', '2005-2020', 'Surgery (Q1)'), (1709, 'Biology', 20797737, 1.731, 'Q1', 42, 470, 35171, 1037, 185, '19', '2012-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q1)'), (1710, 'Journal of Allergy and Clinical Immunology: I', 22132198, 1.731, 'Q1', 58, 700, 19123, 4937, 1067, '2', '2013-2020', 'Immunology and Allergy (Q1)'), (1711, 'Multiple Sclerosis Journal', 13524585, 1.729, 'Q1', 131, 382, 10024, 3480, 655, '3', '1995-2020', 'Neurology (Q1); Neurology (clinical) (Q1)'), (1712, 'Legislative Studies Quarterly', 3629805, 1.728, 'Q1', 54, 54, 2848, 160, 68, '2', '1996-2020', 'Sociology and Political Science (Q1)'), (1713, 'Virtual and Physical Prototyping', 17452767, 1.727, 'Q1', 44, 41, 2702, 908, 92, '3', '2006-2020', 'Computer Graphics and Computer-Aided Design (Q1); Industrial and Manufacturing Engineering (Q1); Modeling and Simulation (Q1); Signal Processing (Q1)'), (1714, 'Nucleus', 19491042, 1.726, 'Q1', 44, 26, 2014, 410, 102, '2', '2010-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2)'), (1715, 'Current Issues in Tourism', 17477603, 1.725, 'Q1', 74, 415, 24083, 2859, 315, '3', '1998-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (1716, 'Scandinavian Journal of Economics', 14679442, 1.725, 'Q1', 64, 63, 2518, 246, 144, '3', '1977-1980, 1983, 1985, 1991-1993, 1995-2020', 'Economics and Econometrics (Q1)'), (1717, 'Journal of Mathematics Teacher Education', 13864416, 1.724, 'Q1', 38, 50, 2306, 193, 72, '16', '2005-2020', 'Education (Q1); Mathematics (miscellaneous) (Q1)'), (1718, 'Journal of Science and Medicine in Sport', 18781861, 1.724, 'Q1', 99, 244, 7533, 2840, 662, '16', '1998-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (1719, 'Journal of Neurosurgery: Spine', 15475646, 1.722, 'Q1', 100, 256, 6655, 2210, 600, '2', '2004-2020', 'Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1); Surgery (Q1)'), (1720, 'Journal of Endovascular Therapy', 15451550, 1.72, 'Q1', 100, 150, 3727, 1010, 303, '2', '2000-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Surgery (Q1)'), (1721, 'Journal of Fluid Mechanics', 14697645, 1.72, 'Q1', 226, 986, 48103, 12707, 2668, '3', '1956-2020', 'Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (1722, 'Journal of Innovation and Knowledge', 2444569, 1.72, 'Q1', 20, 37, 2498, 691, 70, '16', '2016-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Marketing (Q1)'), (1723, 'Journal of Neuroscience Research', 10974547, 1.72, 'Q2', 160, 207, 17357, 2413, 482, '2', '1975-2020', 'Cellular and Molecular Neuroscience (Q2)'), (1724, 'Epidemiology and Psychiatric Sciences', 20457979, 1.718, 'Q1', 48, 105, 4065, 1207, 267, '3', '2011-2020', 'Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2)'), (1725, 'Insect Biochemistry and Molecular Biology', 9651748, 1.718, 'Q1', 114, 137, 8264, 1547, 320, '3', '1992-2020', 'Biochemistry (Q1); Insect Science (Q1); Molecular Biology (Q2)'), (1726, 'Malaria Journal', 14752875, 1.718, 'Q1', 101, 441, 19553, 4374, 1410, '3', '2002-2020', 'Infectious Diseases (Q1); Parasitology (Q1)'), (1727, 'Developmental Neurobiology', 1932846, 1.716, 'Q1', 129, 48, 4420, 836, 231, '2', '2007-2020', 'Developmental Neuroscience (Q1); Cellular and Molecular Neuroscience (Q2)'), (1728, 'Environmental Science and Policy', 18736416, 1.716, 'Q1', 115, 262, 16755, 3655, 624, '16', '1998-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)'), (1729, 'Progress in Neuro-Psychopharmacology and Biol', 18784216, 1.716, 'Q1', 127, 254, 19836, 3615, 740, '2', '1982-2021', 'Pharmacology (Q1); Biological Psychiatry (Q2)'), (1730, 'Biochimica et Biophysica Acta - Molecular Cel', 18792596, 1.715, 'Q2', 173, 200, 15664, 2725, 568, '16', '1982-2020', 'Cell Biology (Q2); Molecular Biology (Q2)'), (1731, 'Nature and Science of Sleep', 11791608, 1.715, 'Q1', 34, 106, 5171, 618, 100, '41', '2009-2020', 'Applied Psychology (Q1); Behavioral Neuroscience (Q1)'), (1732, 'Applied Thermal Engineering', 13594311, 1.714, 'Q1', 158, 1389, 57927, 31148, 5460, '3', '1996-2020', 'Energy Engineering and Power Technology (Q1); Industrial and Manufacturing Engineering (Q1)'), (1733, 'Biophysical Journal', 15420086, 1.713, 'Q1', 269, 503, 27247, 5572, 1530, '2', '1960-2020', 'Biophysics (Q1)'), (1734, 'Critical Reviews in Plant Sciences', 15497836, 1.713, 'Q1', 116, 21, 4535, 322, 51, '3', '1983-2020', 'Plant Science (Q1)'), (1735, 'Current Forestry Reports', 21986436, 1.713, 'Q1', 23, 24, 2963, 384, 54, '19', '2015-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Forestry (Q1); Nature and Landscape Conservation (Q1)'), (1736, 'International Journal of Heat and Mass Transf', 179310, 1.713, 'Q1', 208, 1467, 61747, 29309, 5115, '3', '1960-2020', 'Condensed Matter Physics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1)'), (1737, 'Annals of the New York Academy of Sciences', 17496632, 1.712, 'Q1', 248, 210, 17016, 4002, 623, '2', '1879, 1882-1883, 1889-1890, 1892-1894, 1896-1901, 1904-1906, 1908-1909, 1911-1912, 1914-1916, 1918, ', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); History and Philosophy of Science (Q1); Neuroscience (miscellaneous) (Q1)'), (1738, 'Frontiers in Cardiovascular Medicine', 2297055, 1.711, 'Q1', 30, 32, 2801, 2286, 439, '19', '2014-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (1739, 'American Journal of Education', 15496511, 1.709, 'Q1', 55, 27, 1372, 139, 55, '2', '1995-2001, 2003-2020', 'Education (Q1)'), (1740, 'FASEB Journal', 15306860, 1.709, 'Q1', 277, 1158, 64840, 9923, 2153, '2', '1987-2020', 'Biochemistry (Q1); Biotechnology (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)'), (1741, 'Journal of Hospitality Marketing and Manageme', 19368631, 1.708, 'Q1', 53, 55, 4410, 959, 138, '2', '2010-2020', 'Management Information Systems (Q1); Marketing (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (1742, 'Journal of Molecular Medicine', 9462716, 1.708, 'Q1', 139, 139, 9431, 1791, 350, '5', '1976-1978, 1980-1981, 1995-2020', 'Drug Discovery (Q1); Genetics (clinical) (Q1); Molecular Medicine (Q1)'), (1743, 'Journal of Purchasing and Supply Management', 14784092, 1.708, 'Q1', 85, 34, 2985, 639, 101, '3', '2003-2020', 'Marketing (Q1); Strategy and Management (Q1)'), (1744, 'Soil and Tillage Research', 1671987, 1.708, 'Q1', 139, 247, 14745, 4237, 702, '16', '1980-2021', 'Agronomy and Crop Science (Q1); Earth-Surface Processes (Q1); Soil Science (Q1)'), (1745, 'Explorations in Economic History', 144983, 1.707, 'Q1', 44, 25, 1849, 158, 80, '2', '1969-2020', 'Economics and Econometrics (Q1); History (Q1)'), (1746, 'Journal of Business Venturing Insights', 23526734, 1.707, 'Q1', 19, 56, 3366, 422, 104, '2', '2014-2020', 'Business and International Management (Q1); Management of Technology and Innovation (Q1)'), (1747, 'Journal of Human Evolution', 472484, 1.707, 'Q1', 122, 130, 11619, 1210, 369, '2', '1972-2020', 'Anthropology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Education (Q1)'), (1748, 'Biochemical Journal', 14708728, 1.706, 'Q1', 265, 293, 19990, 3210, 747, '3', '1945-2020', 'Biochemistry (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (1749, 'Global and Planetary Change', 9218181, 1.706, 'Q1', 133, 204, 18775, 2726, 506, '16', '1989-2020', 'Global and Planetary Change (Q1); Oceanography (Q1)'), (1750, 'Health Services Research', 14756773, 1.706, 'Q1', 121, 129, 4794, 1561, 522, '3', '1966-2020', 'Health Policy (Q1)'), (1751, 'Journal of Abnormal Child Psychology', 15732835, 1.706, 'Q1', 142, 135, 8167, 1570, 411, '2', '1973-2020', 'Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1752, 'Journal of Physical Oceanography', 15200485, 1.706, 'Q1', 143, 187, 10001, 1763, 503, '2', '1969-2020', 'Oceanography (Q1)'), (1753, 'Journal of Teaching in Physical Education', 2735024, 1.706, 'Q1', 56, 58, 2835, 505, 102, '2', '1996-2020', 'Education (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (1754, 'Clinical Chemistry', 15308561, 1.705, 'Q1', 218, 270, 1465, 2931, 594, '2', '1955-2020', 'Biochemistry (medical) (Q1); Clinical Biochemistry (Q1)'), (1755, 'Weekly epidemiological record. Releve epidemi', 498114, 1.704, 'Q1', 77, 0, 0, 343, 83, '19', '1990-2018', 'Medicine (miscellaneous) (Q1)'), (1756, 'Australasian Journal of Philosophy', 14716828, 1.703, 'Q1', 44, 107, 3321, 257, 149, '3', '1947-2020', 'Philosophy (Q1)'), (1757, 'British Journal for the Philosophy of Science', 14643537, 1.703, 'Q1', 54, 27, 1224, 296, 107, '3', '1950-2019', 'History (Q1); History and Philosophy of Science (Q1); Philosophy (Q1)'), (1758, 'Journal of Destination Marketing and Manageme', 2212571, 1.703, 'Q1', 39, 90, 7390, 1757, 237, '3', '2012-2020', 'Business and International Management (Q1); Marketing (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (1759, 'Medicine and Science in Sports and Exercise', 15300315, 1.703, 'Q1', 224, 320, 11363, 4161, 888, '2', '1969-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (1760, 'Critical Reviews in Biotechnology', 15497801, 1.702, 'Q1', 92, 85, 10808, 1976, 222, '3', '1983-2020', 'Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1)'), (1761, 'Genome Biology and Evolution', 17596653, 1.702, 'Q1', 74, 209, 13757, 2923, 845, '3', '2010-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1)'), (1762, 'Journal of Fungi', 2309608, 1.702, 'Q1', 28, 377, 26689, 2032, 307, '19', '2015-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Microbiology (medical) (Q1); Plant Science (Q1)'), (1763, 'Annals of Behavioral Medicine', 15324796, 1.701, 'Q1', 133, 71, 3253, 1368, 290, '2', '1987-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)'), (1764, 'Frontiers in Microbiology', 1664302, 1.701, 'Q1', 135, 3464, 233856, 48641, 8458, '19', '2010-2020', 'Microbiology (Q1); Microbiology (medical) (Q1)'), (1765, 'Tectonophysics', 401951, 1.701, 'Q1', 168, 222, 17758, 3502, 921, '16', '1964-2020', 'Earth-Surface Processes (Q1); Geophysics (Q1)'), (1766, 'Journal of Biogeography', 13652699, 1.7, 'Q1', 158, 224, 16779, 2785, 680, '3', '1974, 1979-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (1767, 'Limnology and Oceanography', 243590, 1.7, 'Q1', 197, 251, 18542, 2805, 628, '2', '1956-2020', 'Aquatic Science (Q1); Oceanography (Q1)'), (1768, 'Philosophy and Phenomenological Research', 318205, 1.7, 'Q1', 39, 135, 6185, 399, 231, '2', '1970, 1988, 2006, 2008-2020', 'History and Philosophy of Science (Q1); Philosophy (Q1)'), (1769, 'Current environmental health reports', 21965412, 1.699, 'Q1', 39, 35, 3038, 952, 130, '19', '2014-2020', 'Health, Toxicology and Mutagenesis (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1770, 'Proteins: Structure, Function and Genetics', 10970134, 1.699, 'Q1', 191, 160, 8503, 1628, 462, '2', '1986-2020', 'Biochemistry (Q1); Molecular Biology (Q2); Structural Biology (Q2)'), (1771, 'Social and Personality Psychology Compass', 17519004, 1.699, 'Q1', 53, 50, 4063, 591, 162, '3', '2011-2020', 'Social Psychology (Q1)'), (1772, 'Cellular oncology (Dordrecht)', 22113436, 1.698, 'Q1', 40, 82, 5634, 996, 163, '16', '2011-2020', 'Medicine (miscellaneous) (Q1); Molecular Medicine (Q1); Oncology (Q1); Cancer Research (Q2)'), (1773, 'European Journal of Vascular and Endovascular', 15322165, 1.698, 'Q1', 119, 446, 6782, 2701, 659, '3', '1995-2020', 'Cardiology and Cardiovascular Medicine (Q1); Surgery (Q1)'), (1774, 'Journal of Materiomics', 23528478, 1.697, 'Q1', 33, 84, 4476, 1172, 161, '1', '2015-2020', 'Electronic, Optical and Magnetic Materials (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1)'), (1775, 'Targeted Oncology', 1776260, 1.697, 'Q1', 40, 75, 3250, 960, 214, '8', '2006-2020', 'Oncology (Q1); Pharmacology (medical) (Q1); Cancer Research (Q2)'), (1776, 'Magnetic Resonance in Medicine', 7403194, 1.696, 'Q1', 225, 456, 20190, 6669, 1526, '2', '1984-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (1777, 'Travel Behaviour and Society', 2214367, 1.695, 'Q1', 26, 94, 5331, 822, 151, '16', '2014-2021', 'Transportation (Q1)'), (1778, 'Agricultural Systems', 308521, 1.694, 'Q1', 107, 197, 12414, 3229, 503, '3', '1976-2020', 'Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1)'), (1779, 'Science and Technology of Advanced Materials', 14686996, 1.693, 'Q1', 94, 68, 4125, 1846, 248, '3', '2000-2020', 'Materials Science (miscellaneous) (Q1)'), (1780, 'Journal of Epidemiology and Community Health', 14702738, 1.692, 'Q1', 170, 192, 6400, 2026, 465, '3', '1978-2020', 'Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2)'), (1781, 'Public Health Reviews', 21076952, 1.692, 'Q1', 34, 31, 1891, 376, 65, '3', '1973-1980, 1982-2003, 2010-2020', 'Community and Home Care (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1782, 'Journal of Experimental Psychology: Human Per', 961523, 1.691, 'Q1', 148, 91, 3484, 1197, 404, '2', '1975-2020', 'Arts and Humanities (miscellaneous) (Q1); Behavioral Neuroscience (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1)'), (1783, 'Palaeontology', 14754983, 1.69, 'Q1', 63, 61, 5086, 611, 166, '3', '1979-1985, 1987, 1989-1994, 1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1)'), (1784, 'Biomacromolecules', 15264602, 1.689, 'Q1', 220, 485, 29437, 8746, 1302, '2', '2000-2020', 'Bioengineering (Q1); Biomaterials (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1)'), (1785, 'Carcinogenesis', 1433334, 1.688, 'Q1', 204, 170, 8037, 2139, 437, '3', '1980-2020', 'Medicine (miscellaneous) (Q1); Cancer Research (Q2)'), (1786, 'Chemistry - A European Journal', 15213765, 1.687, 'Q1', 242, 2090, 141248, 32352, 6700, '5', '1995-2020', 'Catalysis (Q1); Chemistry (miscellaneous) (Q1); Organic Chemistry (Q1)'), (1787, 'Transport Policy', 1879310, 1.687, 'Q1', 96, 201, 11238, 2674, 486, '3', '1993-2020', 'Geography, Planning and Development (Q1); Law (Q1); Transportation (Q1)'), (1788, 'Journal of Combinatorial Theory. Series B', 10960902, 1.686, 'Q1', 65, 90, 1935, 540, 232, '2', '1971-2021', 'Computational Theory and Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Theoretical Computer Science (Q1)'), (1789, 'Advances in Nano Research', 2287237, 1.685, 'Q1', 16, 25, 1480, 636, 75, '13', '2017-2020', 'Atomic and Molecular Physics, and Optics (Q1); Biotechnology (Q1); Catalysis (Q1); Ceramics and Composites (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials '), (1790, 'European Journal of Agronomy', 11610301, 1.684, 'Q1', 112, 128, 7627, 2005, 358, '16', '1993-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q1)'), (1791, 'Journal of Hydrology', 221694, 1.684, 'Q1', 226, 1336, 87508, 15250, 2563, '16', '1949, 1963-2020', 'Water Science and Technology (Q1)'), (1792, 'Therapeutic Advances in Neurological Disorder', 17562864, 1.684, 'Q1', 50, 70, 3450, 1018, 174, '3', '2008-2020', 'Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1)'), (1793, 'Journal of Small Business Management', 472778, 1.683, 'Q1', 112, 129, 12608, 1173, 209, '3', '1996-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (1794, 'Canadian Journal of Psychiatry', 14970015, 1.68, 'Q1', 117, 152, 5584, 1196, 268, '9', '1979-2020', 'Psychiatry and Mental Health (Q1)'), (1795, 'Current Opinion in Infectious Diseases', 9517375, 1.68, 'Q1', 103, 76, 1559, 1096, 245, '2', '1988-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1)'), (1796, 'Atmospheric Measurement Techniques', 18671381, 1.679, 'Q1', 88, 376, 21257, 4584, 1064, '5', '2009-2020', 'Atmospheric Science (Q1)'), (1797, 'Journal of Epidemiology', 13499092, 1.679, 'Q1', 74, 87, 2644, 983, 246, '6', '1991-2020', 'Medicine (miscellaneous) (Q1); Epidemiology (Q2)'), (1798, 'Physical Review C', 24699985, 1.679, 'Q1', 235, 944, 50252, 16093, 3057, '2', '2016-2020', 'Nuclear and High Energy Physics (Q1)'), (1799, 'IEEE Transactions on Control Systems Technolo', 10636536, 1.678, 'Q1', 162, 310, 8785, 4391, 630, '2', '1993-2020', 'Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (1800, 'Journal of Cataract and Refractive Surgery', 18734502, 1.678, 'Q1', 142, 442, 2026, 2072, 662, '2', '1986-2020', 'Ophthalmology (Q1); Sensory Systems (Q1); Surgery (Q1)'), (1801, 'Pediatric Diabetes', 13995448, 1.678, 'Q1', 75, 188, 7116, 2052, 488, '3', '2001-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (1802, 'Journal of Alzheimer s Disease', 13872877, 1.677, 'Q1', 139, 767, 42408, 10259, 2230, '16', '1998-2020', 'Clinical Psychology (Q1); Geriatrics and Gerontology (Q1); Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (1803, 'Journal of Clinical Psychiatry', 1606689, 1.677, 'Q1', 207, 180, 3509, 1919, 481, '2', '1978-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (1804, 'Lifetime Data Analysis', 15729249, 1.677, 'Q1', 46, 40, 1279, 159, 102, '16', '1995-2020', 'Applied Mathematics (Q1); Medicine (miscellaneous) (Q1)'), (1805, 'Biochimica et Biophysica Acta - Molecular Bas', 9254439, 1.676, 'Q1', 149, 312, 27257, 4951, 943, '16', '1990-2020', 'Molecular Medicine (Q1); Molecular Biology (Q2)'), (1806, 'Drug Discovery Today: Technologies', 17406749, 1.676, 'Q1', 51, 16, 1002, 521, 89, '3', '2004-2020', 'Biotechnology (Q1); Drug Discovery (Q1); Molecular Medicine (Q1)'), (1807, 'Journal of Research in Personality', 926566, 1.676, 'Q1', 112, 109, 6674, 1086, 299, '2', '1973-2020', 'Psychology (miscellaneous) (Q1); Social Psychology (Q1)'), (1808, 'Higher Education Research and Development', 14698366, 1.675, 'Q1', 70, 214, 8599, 1259, 301, '3', '1982-1995, 1997, 1999-2020', 'Education (Q1)'), (1809, 'Annals of Applied Statistics', 19417330, 1.674, 'Q1', 75, 97, 4431, 1023, 300, '2', '2008-2020', 'Modeling and Simulation (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (1810, 'Endocrinology', 137227, 1.674, 'Q1', 257, 222, 15741, 3924, 898, '2', '1932, 1945-2020', 'Endocrinology (Q1)'), (1811, 'Journal of Cardiac Failure', 10719164, 1.674, 'Q1', 105, 198, 4153, 1162, 311, '2', '1994-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (1812, 'Nonlinear Analysis, Theory, Methods and Appli', 362546, 1.674, 'Q1', 122, 369, 11356, 1679, 633, '3', '1976-2021', 'Analysis (Q1); Applied Mathematics (Q1)'), (1813, 'SIAM Journal of Scientific Computing', 10957197, 1.674, 'Q1', 147, 239, 10131, 2999, 686, '2', '1996-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1)'), (1814, 'Clinical and Translational Gastroenterology', 2155384, 1.673, 'Q1', 35, 172, 861, 824, 209, '3', '2010-2020', 'Gastroenterology (Q1)'), (1815, 'Entrepreneurship and Regional Development', 14645114, 1.673, 'Q1', 90, 50, 4428, 728, 131, '3', '1989-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1)'), (1816, 'Journal of Experimental Child Psychology', 220965, 1.673, 'Q1', 116, 175, 9349, 1604, 543, '2', '1964-2021', 'Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1)'), (1817, 'Media, Culture and Society', 1634437, 1.673, 'Q1', 69, 131, 5948, 874, 239, '3', '1979-2020', 'Communication (Q1); Sociology and Political Science (Q1)'), (1818, 'Economic Geology', 3610128, 1.672, 'Q1', 113, 75, 6020, 1017, 232, '2', '1905-2020', 'Economic Geology (Q1); Geochemistry and Petrology (Q1); Geology (Q1); Geophysics (Q1)'), (1819, 'IMA Journal of Numerical Analysis', 14643642, 1.672, 'Q1', 66, 73, 2620, 717, 204, '3', '1981-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (1820, 'Journal of Economics and Management Strategy', 15309134, 1.672, 'Q1', 68, 43, 1741, 256, 126, '3', '1992-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (1821, 'Journal of the ACM', 45411, 1.672, 'Q1', 134, 38, 1852, 876, 129, '2', '1954-2020', 'Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)'), (1822, 'Oikos', 16000706, 1.672, 'Q1', 179, 156, 11490, 1775, 487, '3', '1973-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (1823, 'Advanced Materials Interfaces', 21967350, 1.671, 'Q1', 65, 633, 38509, 8334, 1472, '3', '2014-2020', 'Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (1824, 'Communication Theory', 14682885, 1.671, 'Q1', 81, 13, 870, 218, 65, '2', '1991-2020', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1825, 'Agronomy for Sustainable Development', 17730155, 1.67, 'Q1', 102, 48, 4311, 1245, 184, '2', '2005-2020', 'Agronomy and Crop Science (Q1); Environmental Engineering (Q1)'), (1826, 'Journal of Geophysical Research', 1480227, 1.67, 'Q1', 298, 0, 0, 2273, 473, '2', '1956, 1959-2020', 'Aquatic Science (Q1); Atmospheric Science (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q1); Ecology (Q1); Forestry (Q1); Geochemistry and Petrology (Q1); Geophysic'), (1827, 'Cultural Anthropology', 8867356, 1.669, 'Q1', 75, 37, 1914, 322, 93, '2', '1986-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1)'), (1828, 'European Journal of Preventive Cardiology', 20474881, 1.669, 'Q1', 101, 663, 14541, 3264, 607, '3', '1999-2000, 2003-2020', 'Cardiology and Cardiovascular Medicine (Q1); Epidemiology (Q2)'), (1829, 'International Journal of Fatigue', 1421123, 1.669, 'Q1', 126, 510, 22295, 6617, 1175, '3', '1979-2021', 'Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)'), (1830, 'Journal of the Institute of Mathematics of Ju', 14747480, 1.669, 'Q1', 36, 90, 2630, 225, 114, '3', '2002-2020', 'Mathematics (miscellaneous) (Q1)'), (1831, 'Physical Education and Sport Pedagogy', 17408989, 1.669, 'Q1', 36, 81, 4239, 724, 132, '3', '2010-2020', 'Education (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (1832, 'Cancer Research and Treatment', 15982998, 1.668, 'Q1', 40, 118, 3049, 1814, 416, '13', '2001, 2011-2020', 'Oncology (Q1); Cancer Research (Q2)'), (1833, 'Land Use Policy', 2648377, 1.668, 'Q1', 115, 730, 48032, 9371, 1703, '3', '1984-2021', 'Forestry (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (1834, 'Race Ethnicity and Education', 1470109, 1.668, 'Q1', 48, 87, 5355, 546, 172, '3', '1998-2020', 'Cultural Studies (Q1); Demography (Q1); Education (Q1)'), (1835, 'Urban Geography', 2723638, 1.668, 'Q1', 68, 155, 8869, 1110, 239, '3', '1980-2020', 'Geography, Planning and Development (Q1); Urban Studies (Q1)'), (1836, 'Paediatric and Perinatal Epidemiology', 2695022, 1.667, 'Q1', 88, 110, 3728, 545, 161, '3', '1987-2020', 'Pediatrics, Perinatology and Child Health (Q1); Epidemiology (Q2)'), (1837, 'United European Gastroenterology Journal', 20506406, 1.667, 'Q1', 35, 194, 5391, 1831, 423, '2', '2013-2020', 'Gastroenterology (Q1); Oncology (Q1)'), (1838, 'Electronic Journal of Probability', 10836489, 1.666, 'Q1', 53, 142, 4746, 901, 364, '2', '1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (1839, 'British Journal of Industrial Relations', 14678543, 1.665, 'Q1', 70, 59, 3669, 278, 91, '3', '1963, 1965, 1967-1968, 1970-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1)'), (1840, 'European Sociological Review', 2667215, 1.665, 'Q1', 87, 49, 2770, 497, 159, '3', '1985-2020', 'Sociology and Political Science (Q1)'), (1841, 'Molecules and Cells', 2191032, 1.665, 'Q1', 79, 104, 3295, 1542, 316, '13', '1996-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (1842, 'Educational Policy', 8959048, 1.664, 'Q1', 52, 70, 4465, 350, 132, '2', '1987-2020', 'Education (Q1)'), (1843, 'International Journal of Obesity', 3070565, 1.663, 'Q1', 225, 254, 11651, 3429, 734, '3', '1977-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (1844, 'Language Teaching Research', 13621688, 1.663, 'Q1', 56, 136, 7521, 513, 143, '3', '1997-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1845, 'Communications in Mathematical Physics', 14320916, 1.662, 'Q1', 152, 381, 16001, 3647, 758, '5', '1965-2020', 'Mathematical Physics (Q1); Statistical and Nonlinear Physics (Q1)'), (1846, 'Construction and Building Materials', 9500618, 1.662, 'Q1', 170, 3583, 175521, 52599, 7705, '3', '1987-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1)'), (1847, 'Current Atherosclerosis Reports', 15346242, 1.662, 'Q1', 73, 76, 4771, 969, 175, '2', '1999-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (1848, 'Psychophysiology', 15405958, 1.661, 'Q1', 156, 218, 15114, 1922, 478, '3', '1964-2020', 'Cognitive Neuroscience (Q1); Developmental and Educational Psychology (Q1); Developmental Neuroscience (Q1); Endocrine and Autonomic Systems (Q1); Experimental and Cognitive Psychology (Q1); Neurology'), (1849, 'Australian and New Zealand Journal of Psychia', 48674, 1.66, 'Q1', 116, 252, 5546, 1420, 295, '3', '1967-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (1850, 'Current Opinion in Psychiatry', 14736578, 1.66, 'Q1', 90, 91, 2019, 989, 217, '2', '1988-2020', 'Psychiatry and Mental Health (Q1)'), (1851, 'Studia Historica Slovenica', 15808122, 1.66, 'Q1', 7, 24, 1014, 74, 102, '60', '2002-2003, 2006-2019', 'History (Q1); Social Sciences (miscellaneous) (Q1)'), (1852, 'Information and Inference', 20498772, 1.659, 'Q1', 26, 27, 991, 284, 53, '2', '2012-2020', 'Analysis (Q1); Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Numerical Analysis (Q1); Statistics and Probability (Q1)'), (1853, 'Journal of Advanced Research', 20901232, 1.659, 'Q1', 55, 162, 8514, 2177, 215, '32', '2010-2020', 'Multidisciplinary (Q1)'), (1854, 'Sustainability Science', 18624065, 1.659, 'Q1', 54, 127, 9780, 1761, 279, '6', '2006-2020', 'Ecology (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q1); Health (social science) (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation ('), (1855, 'Developmental Medicine and Child Neurology', 14698749, 1.658, 'Q1', 143, 337, 7337, 2368, 462, '2', '1958-2020', 'Developmental Neuroscience (Q1); Neurology (clinical) (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (1856, 'Nonlinear Analysis: Hybrid Systems', 1751570, 1.658, 'Q1', 56, 104, 4185, 1592, 253, '16', '2007-2021', 'Analysis (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1)'), (1857, 'Journal of Economic Surveys', 14676419, 1.657, 'Q1', 92, 50, 4701, 761, 173, '3', '1987-2020', 'Economics and Econometrics (Q1)'), (1858, 'Lancet Rheumatology, The', 26659913, 1.657, 'Q1', 14, 200, 3435, 144, 28, '3', '2019-2020', 'Immunology and Allergy (Q1); Rheumatology (Q1); Immunology (Q2)'), (1859, 'Spine', 3622436, 1.657, 'Q1', 254, 529, 7939, 4648, 1384, '2', '1976-2020', 'Neurology (clinical) (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q1)'), (1860, 'Autism Research', 19393792, 1.656, 'Q1', 66, 201, 12390, 2280, 440, '2', '2008-2020', 'Genetics (clinical) (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1)'), (1861, 'Journal of Inflammation Research', 11787031, 1.656, 'Q1', 33, 109, 6117, 595, 96, '41', '2010-2020', 'Immunology and Allergy (Q1); Immunology (Q2)'), (1862, 'Journal of the European Academy of Dermatolog', 9269959, 1.655, 'Q1', 107, 895, 19055, 5257, 890, '2', '1991-2020', 'Dermatology (Q1); Infectious Diseases (Q1)'), (1863, 'Journal of the Royal Society Interface', 17425689, 1.655, 'Q1', 139, 304, 15720, 4167, 822, '3', '2004-2020', 'Biochemistry (Q1); Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biophysics (Q1); Biotechnology (Q1)'), (1864, 'Nephrology Dialysis Transplantation', 14602385, 1.654, 'Q1', 168, 298, 10654, 3667, 888, '3', '1986-2020', 'Medicine (miscellaneous) (Q1); Nephrology (Q1); Transplantation (Q1)'), (1865, 'Journal of Adolescent Health', 1054139, 1.653, 'Q1', 161, 381, 10517, 3294, 725, '2', '1991-2020', 'Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)'), (1866, 'Journal of Neurotrauma', 15579042, 1.653, 'Q1', 149, 263, 15927, 4488, 947, '2', '1988-2020', 'Neurology (clinical) (Q1)'), (1867, 'IEEE Transactions on Antennas and Propagation', 15582221, 1.652, 'Q1', 200, 982, 28135, 14591, 2574, '2', '1963-2020', 'Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1)'), (1868, 'Journal of Bacteriology', 219193, 1.652, 'Q1', 246, 277, 16861, 2693, 813, '2', '1945-2020', 'Microbiology (Q1); Molecular Biology (Q2)'), (1869, 'Philosophical Topics', 2762080, 1.652, 'Q1', 10, 0, 0, 69, 29, '2', '2011-2018', 'Philosophy (Q1)'), (1870, 'Neurorehabilitation and Neural Repair', 15459683, 1.651, 'Q1', 106, 98, 5147, 1174, 254, '2', '1987-2020', 'Neurology (Q1); Neurology (clinical) (Q1); Rehabilitation (Q1)'), (1871, 'Frontiers in Systems Neuroscience', 16625137, 1.65, 'Q1', 75, 101, 8755, 882, 227, '19', '2007-2020', 'Cognitive Neuroscience (Q1); Developmental Neuroscience (Q1); Neuroscience (miscellaneous) (Q1); Cellular and Molecular Neuroscience (Q2)'), (1872, 'Clinical and Vaccine Immunology', 1556679, 1.649, 'Q1', 77, 0, 0, 431, 101, '2', '2006-2017', 'Clinical Biochemistry (Q1); Immunology and Allergy (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1); Immunology (Q2)'), (1873, 'International Journal of Drug Policy', 18734758, 1.649, 'Q1', 79, 322, 16752, 3372, 634, '16', '1998-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1)'), (1874, 'Journal of Health and Social Behavior', 221465, 1.649, 'Q1', 127, 37, 2109, 415, 107, '2', '1967-2020', 'Public Health, Environmental and Occupational Health (Q1); Social Psychology (Q1)'), (1875, 'Brain Structure and Function', 18632653, 1.648, 'Q1', 95, 178, 13603, 2688, 752, '5', '2007-2020', 'Anatomy (Q1); Histology (Q1); Neuroscience (miscellaneous) (Q1)'), (1876, 'Cell Proliferation', 9607722, 1.647, 'Q1', 74, 204, 12282, 2302, 341, '3', '1968-1982, 1984-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2)'), (1877, 'DNA Research', 17561663, 1.647, 'Q1', 98, 22, 1329, 658, 149, '3', '1994-2020', 'Genetics (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (1878, 'Financial Management', 463892, 1.647, 'Q1', 68, 50, 2284, 265, 100, '2', '1996-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (1879, 'International Journal of Biological Sciences', 14492288, 1.647, 'Q1', 89, 278, 16979, 3651, 585, '11', '2005-2020', 'Applied Microbiology and Biotechnology (Q1); Developmental Biology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (1880, 'Computer Science Review', 15740137, 1.646, 'Q1', 44, 54, 7789, 891, 61, '42', '2007-2020', 'Computer Science (miscellaneous) (Q1); Theoretical Computer Science (Q1)'), (1881, 'Journal of Management in Engineering - ASCE', 19435479, 1.646, 'Q1', 70, 129, 8935, 1747, 242, '2', '1985-2020', 'Engineering (miscellaneous) (Q1); Industrial Relations (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (1882, 'Journal of Molecular and Cellular Cardiology', 222828, 1.645, 'Q1', 159, 177, 10098, 2631, 568, '2', '1970-2020', 'Cardiology and Cardiovascular Medicine (Q1); Molecular Biology (Q2)'), (1883, 'Sustainable Cities and Society', 22106707, 1.645, 'Q1', 61, 705, 43818, 10974, 1284, '16', '2011-2020', 'Civil and Structural Engineering (Q1); Geography, Planning and Development (Q1); Renewable Energy, Sustainability and the Environment (Q1); Transportation (Q1)'), (1884, 'American Journal of Physiology - Gastrointest', 1931857, 1.644, 'Q1', 169, 172, 10159, 1811, 427, '2', '1980-2020', 'Gastroenterology (Q1); Hepatology (Q1); Physiology (Q1); Physiology (medical) (Q1)'), (1885, 'Annals of Epidemiology', 18732585, 1.644, 'Q2', 122, 118, 4406, 1286, 361, '2', '1990-2020', 'Epidemiology (Q2)'), (1886, 'Journal of Proteome Research', 15353893, 1.644, 'Q1', 161, 426, 23883, 5219, 1200, '2', '2002-2020', 'Biochemistry (Q1); Chemistry (miscellaneous) (Q1)'), (1887, 'Nano Convergence', 21965404, 1.644, 'Q1', 25, 40, 3327, 768, 109, '3', '2016-2020', 'Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (1888, 'Nano Futures', 23991984, 1.644, 'Q1', 13, 25, 2301, 269, 17, '3', '2017-2020', 'Atomic and Molecular Physics, and Optics (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Chemistry (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscella'), (1889, 'Structural Safety', 1674730, 1.644, 'Q1', 93, 72, 3445, 990, 169, '16', '1982-2021', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)'), (1890, 'Technometrics', 15372723, 1.644, 'Q1', 82, 70, 2320, 464, 127, '3', '1959-2020', 'Applied Mathematics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1)'), (1891, 'Ecosystems', 14329840, 1.643, 'Q1', 148, 170, 11989, 1471, 356, '2', '1998-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Environmental Chemistry (Q1)'), (1892, 'European Journal of Work and Organizational P', 1359432, 1.643, 'Q1', 65, 95, 9086, 891, 190, '3', '2005-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1)'), (1893, 'GIScience and Remote Sensing', 15481603, 1.643, 'Q1', 44, 70, 4564, 941, 142, '3', '2004-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (1894, 'International Journal of Educational Technolo', 23659440, 1.642, 'Q1', 29, 55, 3578, 1003, 128, '16', '2016-2020', 'Computer Science Applications (Q1); Education (Q1); E-learning (Q1)'), (1895, 'Group and Organization Management', 10596011, 1.641, 'Q1', 84, 30, 2860, 360, 87, '2', '1976-2020', 'Applied Psychology (Q1); Arts and Humanities (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q1)'), (1896, 'IEEE Reviews in Biomedical Engineering', 19373333, 1.641, 'Q1', 46, 31, 3008, 614, 63, '2', '2008-2020', 'Biomedical Engineering (Q1)'), (1897, 'Cell and Tissue Research', 14320878, 1.64, 'Q1', 137, 190, 12414, 2600, 575, '5', '1924-1943, 1945, 1948-2020', 'Histology (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)'), (1898, 'Marketing Theory', 14705931, 1.64, 'Q1', 65, 36, 2242, 365, 78, '3', '2001-2020', 'Marketing (Q1)'), (1899, 'Bone and Joint Research', 20463758, 1.639, 'Q1', 31, 107, 4540, 1154, 220, '3', '2012-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (1900, 'Carbohydrate Polymers', 18791344, 1.639, 'Q1', 208, 1448, 78352, 33899, 3787, '3', '1981-2021', 'Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)'), (1901, 'Energy Strategy Reviews', 2211467, 1.639, 'Q1', 33, 98, 6273, 1645, 245, '16', '2012-2020', 'Energy (miscellaneous) (Q1)'), (1902, 'Ophthalmologica', 303755, 1.639, 'Q1', 60, 52, 1497, 620, 185, '19', '1899-2020', 'Medicine (miscellaneous) (Q1); Ophthalmology (Q1); Sensory Systems (Q1)'), (1903, 'IEEE Transactions on Signal Processing', 19410476, 1.638, 'Q1', 270, 418, 18642, 10818, 1346, '2', '1991-2020', 'Electrical and Electronic Engineering (Q1); Signal Processing (Q1)'), (1904, 'Journal of Criminal Justice', 472352, 1.638, 'Q1', 80, 59, 4697, 750, 189, '3', '1973-2020', 'Applied Psychology (Q1); Law (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)'), (1905, 'Nous-Supplement: Philosophical Issues', 15336077, 1.638, 'Q1', 18, 21, 871, 116, 69, '5', '2011-2020', 'Philosophy (Q1)'), (1906, 'Seminars in Hematology', 371963, 1.638, 'Q1', 94, 30, 2371, 429, 102, '3', '1964-2020', 'Hematology (Q1)'), (1907, 'Oncology Reviews', 19705557, 1.637, 'Q1', 21, 27, 1972, 295, 51, '7', '2007-2020', 'Oncology (Q1); Cancer Research (Q2)'), (1908, 'Catalysis Science and Technology', 20444761, 1.635, 'Q1', 115, 748, 47364, 11310, 1807, '3', '2011-2020', 'Catalysis (Q1)'), (1909, 'Forum of Mathematics, Sigma', 20505094, 1.635, 'Q1', 23, 67, 2482, 266, 77, '3', '2013-2020', 'Algebra and Number Theory (Q1); Analysis (Q1); Computational Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1); Mathematical Physics (Q1); Statistics and Probab'), (1910, 'International Journal of Geomechanics', 15323641, 1.635, 'Q1', 63, 348, 14727, 3287, 784, '2', '2001-2020', 'Geotechnical Engineering and Engineering Geology (Q1); Soil Science (Q1)'), (1911, 'Journal of Learning Disabilities', 15384780, 1.635, 'Q1', 91, 53, 3104, 478, 142, '2', '1973-2020', 'Education (Q1); Health Professions (miscellaneous) (Q1); Health (social science) (Q1)'), (1912, 'Developmental Dynamics', 10588388, 1.634, 'Q1', 141, 120, 8270, 947, 274, '2', '1992-2020', 'Developmental Biology (Q1)'), (1913, 'Ultrasonics Sonochemistry', 13504177, 1.634, 'Q1', 128, 439, 22166, 11742, 1518, '16', '1994-2021', 'Acoustics and Ultrasonics (Q1); Chemical Engineering (miscellaneous) (Q1); Environmental Chemistry (Q1); Inorganic Chemistry (Q1); Organic Chemistry (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1914, 'Biomarker Research', 20507771, 1.633, 'Q1', 26, 73, 5114, 613, 92, '3', '2013-2020', 'Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Molecular Medicine (Q1)'), (1915, 'Human Gene Therapy', 10430342, 1.633, 'Q1', 149, 157, 5962, 1672, 344, '2', '1990-2020', 'Genetics (Q1); Molecular Medicine (Q1); Molecular Biology (Q2)'), (1916, 'Chemosphere', 456535, 1.632, 'Q1', 248, 3039, 173496, 46391, 6428, '3', '1972-2021', 'Chemistry (miscellaneous) (Q1); Environmental Chemistry (Q1); Environmental Engineering (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Pollution (Q1); Public Health, Env'), (1917, 'Medical Care', 15371948, 1.632, 'Q1', 178, 181, 5185, 1634, 540, '2', '1963-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (1918, 'Swiss Political Science Review', 14247755, 1.632, 'Q1', 30, 26, 1759, 288, 66, '2', '1995-2020', 'Political Science and International Relations (Q1)'), (1919, 'Annals of the American Association of Geograp', 24694460, 1.631, 'Q1', 116, 213, 15202, 1503, 321, '3', '2016-2020', 'Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)'), (1920, 'Composite Structures', 2638223, 1.63, 'Q1', 157, 1123, 47662, 21527, 3634, '16', '1983-2021', 'Ceramics and Composites (Q1); Civil and Structural Engineering (Q1)'), (1921, 'Food and Environmental Virology', 18670334, 1.63, 'Q1', 32, 42, 1807, 428, 141, '2', '2009-2020', 'Food Science (Q1); Health, Toxicology and Mutagenesis (Q1); Epidemiology (Q2); Virology (Q2)'), (1922, 'Journal of Agrarian Change', 14710366, 1.63, 'Q1', 56, 32, 2484, 367, 125, '3', '2001-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Global and Planetary Change (Q1)'), (1923, 'Journal of Hepato-Biliary-Pancreatic Sciences', 18686982, 1.63, 'Q1', 60, 155, 4020, 904, 180, '2', '1994, 2010-2019', 'Hepatology (Q1); Surgery (Q1)'), (1924, 'Journal of Hospitality and Tourism Research', 10963480, 1.63, 'Q1', 70, 109, 7077, 945, 164, '2', '1976-1981, 1983-1985, 1987-2020', 'Education (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (1925, 'Gender and Society', 8912432, 1.629, 'Q1', 103, 38, 1994, 387, 98, '2', '1987-2020', 'Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Sociology and Political Science (Q1)'), (1926, 'Journal of Nanobiotechnology', 14773155, 1.629, 'Q1', 76, 173, 9891, 2936, 313, '3', '2003-2020', 'Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1); Nanoscience and Nanotechnology (Q1); Pharmaceutic'), (1927, 'Preventive Medicine', 10960260, 1.628, 'Q1', 169, 307, 12343, 4091, 971, '2', '1946, 1972-2020', 'Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2)'), (1928, 'Histopathology', 13652559, 1.626, 'Q1', 124, 249, 7689, 2792, 607, '3', '1977-2020', 'Histology (Q1); Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1)'), (1929, 'Microsystems and Nanoengineering', 20557434, 1.625, 'Q1', 30, 114, 5899, 940, 144, '3', '2015-2020', 'Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneou'), (1930, 'Journal of Nonlinear Science', 9388974, 1.624, 'Q1', 60, 100, 4438, 946, 219, '2', '1991-2020', 'Applied Mathematics (Q1); Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1)'), (1931, 'International Journal of Applied Earth Observ', 15698432, 1.623, 'Q1', 98, 16, 1076, 3348, 520, '16', '1998-2020', 'Computers in Earth Sciences (Q1); Earth-Surface Processes (Q1); Global and Planetary Change (Q1); Management, Monitoring, Policy and Law (Q1)'), (1932, 'Oral Oncology', 18790593, 1.623, 'Q1', 115, 454, 13444, 3682, 727, '3', '1996-2020', 'Oncology (Q1); Oral Surgery (Q1); Cancer Research (Q2)'), (1933, 'Regional Anesthesia and Pain Medicine', 10987339, 1.623, 'Q1', 109, 285, 5223, 1950, 347, '2', '1998-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1)'), (1934, 'Seminars in Nephrology', 15584488, 1.623, 'Q1', 86, 62, 4414, 741, 161, '3', '1981-2020', 'Nephrology (Q1)'), (1935, 'Best Practice and Research in Clinical Obstet', 15216934, 1.622, 'Q1', 84, 109, 6327, 1397, 251, '3', '1999-2020', 'Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)'), (1936, 'Public Management Review', 14719037, 1.622, 'Q1', 68, 158, 12333, 1429, 243, '3', '2001-2020', 'Management Information Systems (Q1); Management of Technology and Innovation (Q1); Public Administration (Q1)'), (1937, 'Scandinavian Journal of Work, Environment and', 3553140, 1.621, 'Q1', 103, 75, 3128, 915, 192, '38', '1975-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (1938, 'Selecta Mathematica, New Series', 10221824, 1.621, 'Q1', 49, 80, 2885, 740, 267, '19', '1995-2002, 2005-2020', 'Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (1939, 'Psychosomatic Medicine', 333174, 1.62, 'Q1', 187, 112, 4517, 1250, 326, '2', '1945-2020', 'Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Psychiatry and Mental Health (Q1)'), (1940, 'Mathematics of Operations Research', 15265471, 1.619, 'Q1', 83, 67, 2312, 783, 190, '2', '1976-1989, 1995-2020', 'Computer Science Applications (Q1); Management Science and Operations Research (Q1); Mathematics (miscellaneous) (Q1)'), (1941, 'Cell Communication and Signaling', 1478811, 1.618, 'Q1', 63, 185, 12697, 1673, 319, '3', '2003-2020', 'Biochemistry (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (1942, 'Current Protocols in Immunology', 19343671, 1.618, 'Q1', 43, 24, 969, 181, 63, '2', '2001-2020', 'Medicine (miscellaneous) (Q1); Immunology (Q2)'), (1943, 'Geosynthetics International', 10726349, 1.618, 'Q1', 52, 52, 2323, 495, 135, '3', '1994-2020', 'Geotechnical Engineering and Engineering Geology (Q1)'), (1944, 'Journal of Social Issues', 224537, 1.618, 'Q1', 122, 47, 3193, 615, 144, '3', '1945-2020', 'Social Sciences (miscellaneous) (Q1)'), (1945, 'Pigment Cell and Melanoma Research', 1755148, 1.618, 'Q1', 105, 97, 4643, 685, 163, '3', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Dermatology (Q1); Oncology (Q1)'), (1946, 'International Journal of Retina and Vitreous', 20569920, 1.617, 'Q1', 19, 63, 1782, 359, 128, '3', '2015-2020', 'Ophthalmology (Q1)'), (1947, 'Journal of Phonetics', 954470, 1.615, 'Q1', 82, 24, 1682, 519, 158, '2', '1995-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Speech and Hearing (Q1)'), (1948, 'Journal of Physiotherapy', 18369553, 1.615, 'Q1', 68, 93, 1700, 621, 93, '11', '2010-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1)'), (1949, 'Computer Assisted Language Learning', 17443210, 1.614, 'Q1', 48, 105, 6168, 759, 161, '3', '1990-1997, 2004-2020', 'Computer Science Applications (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (1950, 'Genes and Diseases', 23523042, 1.614, 'Q1', 35, 159, 10156, 817, 124, '16', '2014-2020', 'Biochemistry (Q1); Genetics (clinical) (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (1951, 'Journal of the American Medical Informatics A', 1527974, 1.614, 'Q1', 150, 264, 9454, 3360, 580, '2', '1994-2020', 'Health Informatics (Q1)'), (1952, 'IEEE Transactions on Information Forensics an', 15566013, 1.613, 'Q1', 133, 285, 12518, 7218, 702, '2', '2006-2021', 'Computer Networks and Communications (Q1); Safety, Risk, Reliability and Quality (Q1)'), (1953, 'International Journal of Nursing Studies', 1873491, 1.613, 'Q1', 109, 240, 11882, 2781, 509, '3', '1963-2020', 'Nursing (miscellaneous) (Q1)'), (1954, 'Molecular Phylogenetics and Evolution', 10959513, 1.612, 'Q1', 159, 208, 16985, 3802, 968, '2', '1992-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q1); Molecular Biology (Q2)'), (1955, 'Annales de l Institut Fourier', 3730956, 1.611, 'Q1', 57, 61, 1924, 405, 186, '8', '1996-2020', 'Algebra and Number Theory (Q1); Geometry and Topology (Q1)'), (1956, 'Chemical Record', 15278999, 1.61, 'Q1', 78, 92, 11183, 1942, 331, '2', '2001-2020', 'Biochemistry (Q1); Biochemistry (medical) (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Medicine (miscellaneous) (Q1)'), (1957, 'Industrial Relations', 198676, 1.61, 'Q1', 57, 17, 1154, 125, 63, '3', '1961-2020', 'Industrial Relations (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (1958, 'Bone Marrow Transplantation', 2683369, 1.609, 'Q1', 127, 455, 11016, 2549, 580, '3', '1986-2020', 'Hematology (Q1); Transplantation (Q1)'), (1959, 'European Journal of Social Psychology', 10990992, 1.609, 'Q1', 111, 98, 7606, 863, 257, '3', '1971-2020', 'Social Psychology (Q1)'), (1960, 'Psychiatry and Clinical Neurosciences', 14401819, 1.609, 'Q1', 74, 158, 4574, 1139, 227, '3', '1933, 1947-2020', 'Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (1961, 'Social Studies of Science', 14603659, 1.609, 'Q1', 89, 48, 3004, 579, 117, '3', '1971-2020', 'History (Q1); History and Philosophy of Science (Q1); Social Sciences (miscellaneous) (Q1)'), (1962, 'Health Policy and Planning', 14602237, 1.608, 'Q1', 92, 133, 6715, 1472, 429, '3', '1986-2020', 'Health Policy (Q1)'), (1963, 'Journal of Causal Inference', 21933685, 1.607, 'Q1', 9, 16, 550, 121, 25, '5', '2018-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (1964, 'Perspectives in Ecology and Conservation', 25300644, 1.607, 'Q1', 31, 38, 2304, 530, 108, '14', '2017-2020', 'Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (1965, 'Advances in Anatomic Pathology', 10724109, 1.606, 'Q1', 76, 37, 3527, 521, 108, '2', '1994, 1996-2020', 'Anatomy (Q1); Pathology and Forensic Medicine (Q1)'), (1966, 'European Radiology', 9387994, 1.606, 'Q1', 149, 916, 29913, 9015, 1878, '5', '1991-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (1967, 'GSA Today', 10525173, 1.606, 'Q1', 76, 26, 449, 179, 43, '2', '1991-2020', 'Geology (Q1)'), (1968, 'Diabetes Research and Clinical Practice', 1688227, 1.605, 'Q1', 114, 460, 16162, 5665, 1030, '42', '1985-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1)'), (1969, 'Handbook of Experimental Pharmacology', 1712004, 1.605, 'Q1', 90, 104, 10866, 1279, 30, '5', '2004-2020', 'Biochemistry (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)'), (1970, 'Journal of Informetrics', 17511577, 1.605, 'Q1', 76, 79, 3786, 1696, 245, '16', '2007-2020', 'Applied Mathematics (Q1); Computer Science Applications (Q1); Library and Information Sciences (Q1); Management Science and Operations Research (Q1); Modeling and Simulation (Q1); Statistics and Proba'), (1971, 'Biomaterials Research', 20557124, 1.604, 'Q1', 24, 23, 1246, 736, 87, '3', '2014-2020', 'Biomaterials (Q1); Biomedical Engineering (Q1); Ceramics and Composites (Q1); Medicine (miscellaneous) (Q1)'), (1972, 'Foot and Ankle International', 10711007, 1.604, 'Q1', 108, 248, 6459, 1946, 622, '2', '1980-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (1973, 'Commentarii Mathematici Helvetici', 102571, 1.603, 'Q1', 46, 25, 661, 165, 74, '19', '1929-1937, 1939-1956, 1958-2020', 'Mathematics (miscellaneous) (Q1)'), (1974, 'European Neuropsychopharmacology', 924977, 1.603, 'Q1', 112, 154, 9717, 1610, 371, '16', '1990-2020', 'Neurology (Q1); Neurology (clinical) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)'), (1975, 'Foundations and Trends in Entrepreneurship', 15513114, 1.603, 'Q1', 30, 6, 1110, 81, 18, '2', '2005-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1)'), (1976, 'IEEE Journal on Selected Topics in Signal Pro', 19324553, 1.603, 'Q1', 120, 98, 4753, 3617, 326, '2', '2007-2020', 'Electrical and Electronic Engineering (Q1); Signal Processing (Q1)'), (1977, 'Sensors and Actuators, B: Chemical', 9254005, 1.601, 'Q1', 197, 1444, 66816, 46369, 6556, '16', '1970, 1990-2021', 'Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Instrumentation (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1); Surf'), (1978, 'Criminology and Public Policy', 17459133, 1.6, 'Q1', 33, 59, 4004, 571, 146, '3', '2012-2020', 'Law (Q1); Literature and Literary Theory (Q1); Public Administration (Q1)'), (1979, 'Transportation Research, Part D: Transport an', 13619209, 1.6, 'Q1', 99, 370, 21008, 5627, 821, '3', '1996-2020', 'Civil and Structural Engineering (Q1); Environmental Science (miscellaneous) (Q1); Transportation (Q1)'), (1980, 'Social Networks', 3788733, 1.599, 'Q1', 98, 69, 4527, 825, 193, '16', '1978-2021', 'Anthropology (Q1); Psychology (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (1981, 'Stem Cell Research and Therapy', 17576512, 1.599, 'Q1', 76, 520, 27042, 6539, 1030, '3', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q1); Cell Biology (Q2)'), (1982, 'Trends in Cardiovascular Medicine', 10501738, 1.599, 'Q1', 98, 171, 6786, 732, 144, '2', '1991-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (1983, 'Journal of Structural Engineering', 7339445, 1.598, 'Q1', 146, 384, 14496, 2789, 776, '2', '1955, 1975, 1977-1979, 1982-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (1984, 'Chinese Journal of Catalysis', 18722067, 1.597, 'Q1', 64, 221, 13097, 4621, 611, '1', '1996-2021', 'Catalysis (Q1); Chemistry (miscellaneous) (Q1)'), (1985, 'Journal of Cognitive Neuroscience', 898929, 1.597, 'Q1', 214, 140, 10784, 1521, 500, '2', '1989-2020', 'Cognitive Neuroscience (Q1)'), (1986, 'Basic Research in Cardiology', 3008428, 1.596, 'Q1', 95, 77, 4668, 1745, 151, '5', '1973-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (Q1); Physiology (medical) (Q1)'), (1987, 'Biology Letters', 17449561, 1.596, 'Q1', 110, 207, 8890, 2117, 600, '3', '2005-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (1988, 'Journal of Archaeological Method and Theory', 10725369, 1.596, 'Q1', 56, 57, 5887, 440, 135, '2', '1994-2002, 2005-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (1989, 'Biochemical Pharmacology', 18732968, 1.595, 'Q1', 198, 513, 40185, 5594, 983, '2', '1958-2020', 'Biochemistry (Q1); Pharmacology (Q1)'), (1990, 'Current Oncology Reports', 15346269, 1.595, 'Q1', 60, 124, 9091, 1389, 299, '2', '1999-2020', 'Oncology (Q1)'), (1991, 'International Journal of STEM Education', 21967822, 1.594, 'Q1', 22, 59, 3508, 708, 120, '3', '2014-2020', 'Education (Q1)'), (1992, 'Journal of Neural Engineering', 17412560, 1.594, 'Q1', 111, 322, 19076, 3772, 587, '3', '2004-2020', 'Biomedical Engineering (Q1); Cellular and Molecular Neuroscience (Q2)'), (1993, 'Post-Soviet Affairs', 1060586, 1.594, 'Q1', 44, 29, 1822, 228, 77, '3', '1992-2020', 'Economics and Econometrics (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (1994, 'FEBS Letters', 145793, 1.593, 'Q1', 257, 338, 23785, 3471, 956, '2', '1968-2020', 'Biochemistry (Q1); Biophysics (Q1); Genetics (Q1); Cell Biology (Q2); Molecular Biology (Q2); Structural Biology (Q2)'), (1995, 'American Politics Research', 15523373, 1.592, 'Q1', 51, 64, 2971, 325, 129, '2', '1973-2020', 'Sociology and Political Science (Q1)'), (1996, 'EuroIntervention', 1774024, 1.592, 'Q1', 78, 196, 3033, 2159, 717, '8', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)'), (1997, 'Acta Physiologica', 17481716, 1.591, 'Q1', 116, 163, 10071, 1786, 325, '3', '2006-2020', 'Physiology (Q1)'), (1998, 'Gene Expression', 15553884, 1.591, 'Q1', 46, 13, 805, 268, 53, '2', '1991-2020', 'Genetics (Q1); Molecular Biology (Q2)'), (1999, 'IEEE Transactions on Intelligent Transportati', 15580016, 1.591, 'Q1', 153, 595, 20731, 9523, 1015, '2', '2000-2020', 'Automotive Engineering (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1)'), (2000, 'Assessment', 10731911, 1.59, 'Q1', 87, 220, 13870, 1141, 285, '2', '1994-2020', 'Applied Psychology (Q1); Clinical Psychology (Q1)'), (2001, 'Biochimica et Biophysica Acta - Bioenergetics', 52728, 1.59, 'Q1', 171, 119, 8359, 1335, 318, '16', '1967-2021', 'Biochemistry (Q1); Biophysics (Q1); Cell Biology (Q2)'), (2002, 'Myrmecological News', 19973500, 1.59, 'Q1', 33, 12, 1137, 196, 55, '28', '2009-2019', 'Insect Science (Q1)'), (2003, 'American Journal of Pathology', 29440, 1.589, 'Q1', 277, 208, 10520, 2712, 672, '2', '1946-2020', 'Pathology and Forensic Medicine (Q1)'), (2004, 'EFORT Open Reviews', 20585241, 1.588, 'Q1', 22, 90, 5004, 1036, 209, '3', '2016-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (2005, 'European Journal of Human Genetics', 10184813, 1.587, 'Q1', 125, 239, 7286, 2289, 625, '3', '1993-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (2006, 'Geography Compass', 17498198, 1.587, 'Q1', 65, 51, 5431, 564, 120, '3', '2008-2020', 'Atmospheric Science (Q1); Computers in Earth Sciences (Q1); Earth-Surface Processes (Q1); Social Sciences (miscellaneous) (Q1); Water Science and Technology (Q1)'), (2007, 'Knowledge-Based Systems', 9507051, 1.587, 'Q1', 121, 716, 36777, 11094, 1181, '16', '1987-2020', 'Artificial Intelligence (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Software (Q1)'), (2008, 'Structural Control and Health Monitoring', 15452263, 1.587, 'Q1', 62, 169, 7620, 2709, 550, '3', '2004-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanics of Materials (Q1)'), (2009, 'Aggression and Violent Behavior', 13591789, 1.586, 'Q1', 102, 120, 9710, 1410, 281, '3', '1996-2020', 'Clinical Psychology (Q1); Pathology and Forensic Medicine (Q1); Psychiatry and Mental Health (Q1)'), (2010, 'Language Learning and Technology', 10943501, 1.585, 'Q1', 73, 16, 635, 352, 87, '2', '1997-1998, 2000-2020', 'Computer Science Applications (Q1); Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2011, 'Vaccine', 264410, 1.585, 'Q1', 184, 1148, 42289, 10913, 2957, '16', '1983-2020', 'Immunology and Microbiology (miscellaneous) (Q1); Infectious Diseases (Q1); Molecular Medicine (Q1); Public Health, Environmental and Occupational Health (Q1); Veterinary (miscellaneous) (Q1)'), (2012, 'Geoforum', 167185, 1.584, 'Q1', 116, 284, 20662, 3032, 725, '3', '1970-2020', 'Sociology and Political Science (Q1)'), (2013, 'New Journal of Physics', 13672630, 1.584, 'Q1', 190, 693, 37699, 10586, 1890, '3', '1998-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (2014, 'Journal of Computer Assisted Learning', 13652729, 1.583, 'Q1', 93, 86, 5369, 996, 199, '3', '1985-2020', 'Computer Science Applications (Q1); Education (Q1); E-learning (Q1)'), (2015, 'Current Opinion in Colloid and Interface Scie', 13590294, 1.582, 'Q1', 147, 73, 5755, 1653, 221, '3', '1996-2020', 'Colloid and Surface Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Polymers and Plastics (Q1); Surfaces and Interfaces (Q1)'), (2016, 'Fluids and Barriers of the CNS', 20458118, 1.582, 'Q1', 48, 72, 5556, 585, 104, '3', '2011-2020', 'Medicine (miscellaneous) (Q1); Neurology (Q1); Cellular and Molecular Neuroscience (Q2); Developmental Neuroscience (Q2)'), (2017, 'BMJ Open Respiratory Research', 20524439, 1.581, 'Q1', 24, 119, 3666, 664, 183, '3', '2014-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (2018, 'Journal of Global Health', 20472986, 1.581, 'Q1', 34, 348, 8536, 1455, 379, '3', '2011-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2019, 'International Journal of Climatology', 10970088, 1.58, 'Q1', 166, 418, 24187, 6432, 1353, '3', '1989-2020', 'Atmospheric Science (Q1)'), (2020, 'Journal of Banking and Finance', 3784266, 1.58, 'Q1', 161, 228, 12077, 2307, 613, '16', '1977-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (2021, 'Tissue Engineering - Part B: Reviews', 19373368, 1.579, 'Q1', 91, 48, 5432, 870, 115, '2', '2008-2020', 'Biochemistry (Q1); Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1)'), (2022, 'International Journal of Clinical and Health ', 16972600, 1.578, 'Q1', 42, 30, 1295, 446, 90, '12', '2005-2020', 'Clinical Psychology (Q1)'), (2023, 'Journal of Marriage and Family', 17413737, 1.578, 'Q1', 159, 103, 8576, 899, 237, '3', '1973-1978, 1980-1981, 1985, 1996-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1)'), (2024, 'Journals of Gerontology - Series B Psychologi', 10795014, 1.578, 'Q1', 150, 247, 11544, 1891, 440, '2', '1995-2020', 'Clinical Psychology (Q1); Geriatrics and Gerontology (Q1); Gerontology (Q1); Health (social science) (Q1); Life-span and Life-course Studies (Q1); Medicine (miscellaneous) (Q1); Social Psychology (Q1)'), (2025, 'Ear and Hearing', 15384667, 1.577, 'Q1', 109, 180, 7707, 1315, 403, '2', '1980-2020', 'Otorhinolaryngology (Q1); Speech and Hearing (Q1)'), (2026, 'Energy for Sustainable Development', 9730826, 1.577, 'Q1', 62, 103, 5183, 1339, 242, '16', '1994-1997, 2000-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (2027, 'HPB', 14772574, 1.577, 'Q1', 74, 279, 8755, 1793, 500, '3', '2000-2020', 'Gastroenterology (Q1); Hepatology (Q1)'), (2028, 'Journal of Rheumatology', 14992752, 1.577, 'Q1', 178, 309, 7914, 2458, 654, '9', '1974-2020', 'Rheumatology (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (2029, 'Current Diabetes Reports', 15344827, 1.576, 'Q1', 77, 82, 6533, 2013, 439, '2', '2001-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (2030, 'Current Opinion in Systems Biology', 24523100, 1.576, 'Q1', 21, 43, 2736, 800, 239, '3', '2017-2020', 'Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Computer Science Applications (Q1); Drug Discovery (Q1); Modeling and Simulation (Q1)'), (2031, 'Journal of Time Series Analysis', 1439782, 1.576, 'Q1', 54, 58, 1969, 289, 139, '2', '1980-2020', 'Applied Mathematics (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (2032, 'Journal of Translational Medicine', 14795876, 1.576, 'Q1', 109, 459, 23111, 5461, 1033, '3', '2003-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (2033, 'Diseases of the Colon and Rectum', 123706, 1.575, 'Q1', 162, 295, 6081, 2261, 554, '2', '1958-2020', 'Gastroenterology (Q1); Medicine (miscellaneous) (Q1)'), (2034, 'Reviews in Environmental Science and Biotechn', 15691705, 1.575, 'Q1', 79, 36, 5076, 815, 102, '16', '2002-2020', 'Applied Microbiology and Biotechnology (Q1); Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1)'), (2035, 'Scandinavian Journal of Medicine and Science ', 16000838, 1.575, 'Q1', 115, 277, 11342, 2923, 707, '25', '1991-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (2036, 'Mammal Review', 3051838, 1.574, 'Q1', 76, 41, 2875, 372, 83, '3', '1970-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (2037, 'Materials Science &amp; Engineering A: Struct', 9215093, 1.574, 'Q1', 237, 1386, 61298, 23031, 4173, '16', '1988-2021', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Nanoscience and Nanotechnology (Q1)'), (2038, 'Journal of Guidance, Control, and Dynamics', 15333884, 1.573, 'Q1', 143, 223, 6675, 2494, 717, '2', '1979-2020', 'Aerospace Engineering (Q1); Applied Mathematics (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Space and Planetary Science (Q1)'), (2039, 'Journal of Hydrology: Regional Studies', 22145818, 1.573, 'Q1', 36, 120, 7250, 1351, 235, '16', '2014-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Water Science and Technology (Q1)'), (2040, 'Economic Theory', 14320479, 1.572, 'Q1', 58, 133, 5132, 291, 213, '5', '1991-2020', 'Economics and Econometrics (Q1)'), (2041, 'Environment and Behavior', 1552390, 1.572, 'Q1', 114, 68, 4763, 794, 129, '3', '1969-2020', 'Environmental Science (miscellaneous) (Q1)'), (2042, 'Journal of Archaeological Science', 3054403, 1.572, 'Q1', 126, 137, 10414, 1239, 362, '2', '1974-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)'), (2043, 'Journal of Sex Research', 224499, 1.572, 'Q1', 107, 140, 9233, 1375, 287, '3', '1965-2020', 'Gender Studies (Q1); History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (2044, 'APL Materials', 2166532, 1.571, 'Q1', 60, 230, 14770, 2976, 568, '2', '2013-2020', 'Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (2045, 'Ergodic Theory and Dynamical Systems', 14694417, 1.571, 'Q1', 61, 201, 5489, 789, 367, '3', '1981-2021', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (2046, 'JAMA Otolaryngology - Head and Neck Surgery', 2168619, 1.571, 'Q1', 128, 312, 4936, 1965, 469, '2', '2013-2020', 'Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1); Surgery (Q1)'), (2047, 'Nonlinearity', 9517715, 1.571, 'Q1', 90, 253, 9159, 1845, 584, '3', '1988-2020', 'Applied Mathematics (Q1); Mathematical Physics (Q1); Physics and Astronomy (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)'), (2048, 'Public Relations Review', 3638111, 1.571, 'Q1', 82, 84, 6213, 1152, 282, '16', '1975-2020', 'Communication (Q1); Marketing (Q1); Organizational Behavior and Human Resource Management (Q1)'), (2049, 'Advances in Cancer Research', 65230, 1.57, 'Q1', 92, 34, 4898, 606, 13, '2', '1953-1956, 1958, 1961-1965, 1967-2020', 'Oncology (Q1); Cancer Research (Q2)'), (2050, 'Cephalalgia', 14682982, 1.57, 'Q1', 125, 201, 6294, 2747, 516, '3', '1981-2020', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1)'), (2051, 'IEEE Journal of Emerging and Selected Topics ', 21686785, 1.57, 'Q1', 72, 473, 12711, 3954, 569, '2', '2013-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (2052, 'IEEE Transactions on Power Delivery', 19374208, 1.57, 'Q1', 188, 397, 8168, 5173, 859, '2', '1985-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (2053, 'Advances in Calculus of Variations', 18648266, 1.569, 'Q1', 23, 42, 1315, 193, 71, '5', '2008-2020', 'Analysis (Q1); Applied Mathematics (Q1)'), (2054, 'Journal of Strength and Conditioning Research', 10648011, 1.569, 'Q1', 128, 427, 1053, 3685, 1234, '2', '1987-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (2055, 'Molecular Neurobiology', 8937648, 1.569, 'Q1', 111, 379, 28657, 9867, 1963, '2', '1987-2020', 'Neurology (Q1); Neuroscience (miscellaneous) (Q1); Cellular and Molecular Neuroscience (Q2)'), (2056, 'Revista Matematica Iberoamericana', 2132230, 1.569, 'Q1', 52, 80, 2265, 442, 179, '12', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (2057, 'Borderline Personality Disorder and Emotion D', 20516673, 1.568, 'Q1', 17, 25, 1502, 225, 61, '3', '2014-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)'), (2058, 'Exposure and Health', 24519766, 1.568, 'Q1', 24, 80, 4674, 635, 67, '16', '2015-2020', 'Health, Toxicology and Mutagenesis (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1); Water Science and Technology (Q1)'), (2059, 'Journal of Retailing and Consumer Services', 9696989, 1.568, 'Q1', 89, 346, 27784, 4555, 550, '3', '1994-2021', 'Marketing (Q1)'), (2060, 'Trends in Environmental Analytical Chemistry', 22141588, 1.568, 'Q1', 25, 31, 3236, 287, 31, '16', '2014-2020', 'Analytical Chemistry (Q1); Environmental Chemistry (Q1)'), (2061, 'Annals of Botany', 3057364, 1.567, 'Q1', 176, 185, 13580, 2643, 605, '3', '1887-2020', 'Plant Science (Q1)'), (2062, 'BMC Bioinformatics', 14712105, 1.567, 'Q1', 208, 575, 21640, 7607, 1842, '3', '2000-2020', 'Applied Mathematics (Q1); Biochemistry (Q1); Computer Science Applications (Q1); Molecular Biology (Q2); Structural Biology (Q2)'), (2063, 'Engineering Structures', 18737323, 1.567, 'Q1', 141, 1262, 55358, 16421, 3259, '3', '1970, 1978-2020', 'Civil and Structural Engineering (Q1)'), (2064, 'Telematics and Informatics', 7365853, 1.567, 'Q1', 66, 96, 6939, 3832, 438, '3', '1984-2020', 'Communication (Q1); Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1); Law (Q1)'), (2065, 'Earth Surface Dynamics', 2196632, 1.566, 'Q1', 28, 60, 4331, 809, 170, '5', '2013-2020', 'Earth-Surface Processes (Q1); Geophysics (Q1)'), (2066, 'Sport Management Review', 14413523, 1.566, 'Q1', 56, 91, 6769, 888, 139, '16', '1998-2020', 'Business and International Management (Q1); Management Science and Operations Research (Q1); Marketing (Q1); Organizational Behavior and Human Resource Management (Q1); Sports Science (Q1); Strategy a'), (2067, 'CNS Drugs', 11791934, 1.565, 'Q1', 108, 88, 7328, 1350, 257, '3', '1994-2020', 'Neurology (clinical) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)'), (2068, 'Journalism', 14648849, 1.565, 'Q1', 63, 202, 10723, 1116, 363, '3', '2000-2020', 'Arts and Humanities (miscellaneous) (Q1); Communication (Q1)'), (2069, 'Molecular Plant-Microbe Interactions', 8940282, 1.565, 'Q1', 153, 154, 8429, 1495, 363, '2', '1988-2020', 'Agronomy and Crop Science (Q1); Medicine (miscellaneous) (Q1); Physiology (Q1)'), (2070, 'Ambio', 16547209, 1.564, 'Q1', 127, 175, 10670, 1826, 327, '16', '1973-2020', 'Ecology (Q1); Environmental Chemistry (Q1); Geography, Planning and Development (Q1); Medicine (miscellaneous) (Q1)'), (2071, 'Decision Support Systems', 1679236, 1.564, 'Q1', 151, 115, 7152, 2672, 338, '16', '1985-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1)'), (2072, 'Journal of Neurosurgery', 19330693, 1.564, 'Q1', 210, 543, 14462, 5314, 1277, '2', '1945-2020', 'Neurology (clinical) (Q1); Surgery (Q1)'), (2073, 'Algebraic Geometry', 23131691, 1.563, 'Q1', 20, 26, 1011, 218, 83, '19', '2014-2020', 'Algebra and Number Theory (Q1); Geometry and Topology (Q1)'), (2074, 'Breast', 15323080, 1.563, 'Q1', 78, 183, 6239, 2032, 493, '2', '1992-2020', 'Medicine (miscellaneous) (Q1); Oncology (Q1); Surgery (Q1); Cancer Research (Q2)'), (2075, 'Journal of Magnetic Resonance Imaging', 15222586, 1.563, 'Q1', 160, 488, 19727, 5008, 1060, '2', '1991-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (2076, 'Milbank Quarterly', 887378, 1.563, 'Q1', 101, 55, 2499, 391, 132, '3', '1986-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2077, 'Rice', 19398425, 1.562, 'Q1', 50, 81, 4489, 989, 214, '2', '2008-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q1)'), (2078, 'American Statistician', 31305, 1.561, 'Q1', 83, 76, 1923, 1494, 189, '3', '1947-2020', 'Mathematics (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (2079, 'Robotics and Computer-Integrated Manufacturin', 7365845, 1.561, 'Q1', 93, 139, 6448, 2949, 400, '3', '1984-1994, 1996-2021', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mathematics (miscellaneous) (Q1); Software (Q1)'), (2080, 'Fuel', 162361, 1.56, 'Q1', 213, 2396, 119785, 35895, 5139, '16', '1922, 1970-2021', 'Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Organic Chemistry (Q1)'), (2081, 'African Affairs', 19909, 1.559, 'Q1', 70, 23, 1874, 269, 96, '3', '1901-2020', 'Geography, Planning and Development (Q1); Sociology and Political Science (Q1)'), (2082, 'Clinical Trials', 17407753, 1.559, 'Q1', 63, 94, 2248, 537, 214, '3', '2004-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (Q1)'), (2083, 'Coastal Engineering', 3783839, 1.559, 'Q1', 110, 119, 6170, 1945, 375, '16', '1973-1974, 1977-2020', 'Environmental Engineering (Q1); Ocean Engineering (Q1)'), (2084, 'Journal of Headache and Pain', 11292377, 1.559, 'Q1', 63, 135, 6466, 1944, 335, '7', '2001-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1)'), (2085, 'Frontiers in Marine Science', 22967745, 1.558, 'Q1', 49, 1143, 87725, 7886, 1668, '19', '2014-2020', 'Aquatic Science (Q1); Environmental Science (miscellaneous) (Q1); Global and Planetary Change (Q1); Ocean Engineering (Q1); Oceanography (Q1); Water Science and Technology (Q1)'), (2086, 'Plant Reproduction', 21947961, 1.558, 'Q1', 59, 17, 956, 266, 76, '5', '2013-2020', 'Plant Science (Q1); Cell Biology (Q2)'), (2087, 'British Journal of Educational Psychology', 70998, 1.557, 'Q1', 95, 96, 5567, 526, 125, '2', '1931-1951, 1956-1958, 1960, 1962-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (2088, 'Exercise Immunology Review', 10775552, 1.557, 'Q1', 56, 8, 0, 120, 17, '2', '1996-2020', 'Sports Science (Q1); Immunology (Q2)'), (2089, 'Journal of Family Business Strategy', 18778585, 1.557, 'Q1', 44, 32, 3324, 391, 66, '3', '2010-2020', 'Economics and Econometrics (Q1); Strategy and Management (Q1)'), (2090, 'Research in Higher Education', 1573188, 1.557, 'Q1', 86, 56, 3700, 439, 131, '16', '1973-2020', 'Education (Q1)'), (2091, 'Cell Death Discovery', 20587716, 1.556, 'Q2', 28, 135, 7276, 1513, 299, '3', '2015-2020', 'Cancer Research (Q2); Cell Biology (Q2); Cellular and Molecular Neuroscience (Q2); Immunology (Q2)'), (2092, 'Global Environmental Politics', 15263800, 1.555, 'Q1', 56, 40, 1917, 319, 83, '2', '2006-2020', 'Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1); Renewable Energy, Sustainability and the Environment (Q1); Global and Planetary Change (Q2)'), (2093, 'Journal of Oncology Practice', 15547477, 1.555, 'Q1', 60, 67, 1663, 1976, 626, '2', '2007-2020', 'Health Policy (Q1); Oncology (Q1); Oncology (nursing) (Q1)'), (2094, 'American Journal of Geriatric Psychiatry', 15457214, 1.554, 'Q1', 122, 265, 6431, 1453, 337, '2', '1993-2020', 'Geriatrics and Gerontology (Q1); Psychiatry and Mental Health (Q1)'), (2095, 'Atherosclerosis', 219150, 1.554, 'Q1', 171, 349, 14352, 4545, 1006, '42', '1970-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (2096, 'Applied and Environmental Microbiology', 992240, 1.552, 'Q1', 324, 619, 34929, 8341, 1725, '2', '1976-2020', 'Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Ecology (Q1); Food Science (Q1)'), (2097, 'Child Abuse and Neglect', 1452134, 1.552, 'Q1', 144, 401, 22211, 3737, 870, '3', '1977-2020', 'Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Social Work (Q1)'), (2098, 'Esophagus', 16129067, 1.552, 'Q1', 23, 70, 1785, 552, 132, '6', '2003-2020', 'Gastroenterology (Q1)'), (2099, 'Systematic Entomology', 13653113, 1.552, 'Q1', 66, 61, 5061, 586, 157, '3', '1976-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)'), (2100, 'World Journal of Urology', 7244983, 1.552, 'Q1', 83, 672, 18565, 2979, 782, '5', '1983-2020', 'Urology (Q1)'), (2101, 'International Reviews of Immunology', 15635244, 1.551, 'Q2', 67, 50, 6239, 381, 70, '3', '1986-2020', 'Immunology (Q2); Immunology and Allergy (Q2)'), (2102, 'Climate Services', 24058807, 1.55, 'Q1', 21, 37, 1715, 474, 75, '16', '2016-2020', 'Atmospheric Science (Q1); Global and Planetary Change (Q2)'), (2103, 'Health Economics (United Kingdom)', 10579230, 1.55, 'Q1', 109, 138, 5337, 1249, 435, '3', '1992-2020', 'Health Policy (Q1)'), (2104, 'Journal of General Virology', 221317, 1.55, 'Q2', 167, 128, 5438, 2515, 654, '3', '1967-2020', 'Virology (Q2)'), (2105, 'Clinical Pharmacokinetics', 11791926, 1.549, 'Q1', 164, 130, 6801, 1831, 330, '3', '1976-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1)'), (2106, 'Computers, Environment and Urban Systems', 1989715, 1.549, 'Q1', 92, 85, 4842, 2135, 324, '3', '1980-1986, 1988-2020', 'Ecological Modeling (Q1); Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)'), (2107, 'Journal of Gambling Studies', 10505350, 1.549, 'Q1', 79, 112, 5469, 974, 247, '2', '1990-2020', 'Psychology (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (2108, 'Translational Stroke Research', 18684483, 1.549, 'Q1', 49, 143, 8140, 1138, 181, '2', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q2)'), (2109, 'World Journal of Emergency Surgery', 17497922, 1.549, 'Q1', 46, 59, 2834, 899, 161, '3', '2006-2020', 'Emergency Medicine (Q1); Surgery (Q1)'), (2110, 'Health Psychology', 19307810, 1.548, 'Q1', 164, 101, 3955, 1538, 397, '2', '1984-2020', 'Applied Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (2111, 'Journal of Dynamics and Differential Equation', 10407294, 1.548, 'Q1', 48, 174, 5319, 601, 240, '2', '1989-2002, 2005-2020', 'Analysis (Q1)'), (2112, 'Marine Pollution Bulletin', 25326, 1.548, 'Q1', 179, 1039, 62770, 14671, 2512, '3', '1970-2020', 'Aquatic Science (Q1); Oceanography (Q1); Pollution (Q1)'), (2113, 'BMC Genomics', 14712164, 1.547, 'Q1', 167, 886, 54366, 12279, 2953, '3', '2000-2020', 'Biotechnology (Q1); Genetics (Q1)'), (2114, 'Lupus Science and Medicine', 20538790, 1.547, 'Q1', 25, 43, 1451, 371, 108, '3', '2014-2020', 'Medicine (miscellaneous) (Q1); Immunology (Q2)'), (2115, 'Materials Today Advances', 25900498, 1.547, 'Q1', 7, 77, 8527, 117, 19, '3', '2019-2020', 'Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1)'), (2116, 'Climatic Change', 15731480, 1.546, 'Q1', 188, 398, 21955, 3412, 698, '16', '1977-2020', 'Atmospheric Science (Q1); Global and Planetary Change (Q2)'), (2117, 'European Journal of Teacher Education', 14695928, 1.546, 'Q1', 42, 89, 4732, 458, 120, '3', '1982-2020', 'Education (Q1)'), (2118, 'Open Forum Infectious Diseases', 23288957, 1.546, 'Q1', 35, 566, 15761, 3334, 1078, '2', '2014-2020', 'Neurology (clinical) (Q1); Oncology (Q1)'), (2119, 'International Journal of Multilingualism', 14790718, 1.545, 'Q1', 34, 66, 3156, 326, 101, '3', '2004-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2120, 'IEEE Transactions on Energy Conversion', 8858969, 1.544, 'Q1', 178, 285, 6837, 3438, 552, '2', '1986-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (2121, 'Suicide and Life-Threatening Behavior', 3630234, 1.544, 'Q1', 90, 115, 5172, 1104, 265, '2', '1971-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2122, 'Biology of the Cell', 2484900, 1.543, 'Q1', 85, 30, 2004, 316, 75, '2', '1981-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2)'), (2123, 'Clinical Genetics', 99163, 1.543, 'Q1', 102, 203, 7449, 2330, 551, '3', '1970-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (2124, 'Cellular Microbiology', 14625814, 1.542, 'Q1', 138, 135, 8436, 1347, 361, '3', '1999-2020', 'Microbiology (Q1); Immunology (Q2); Virology (Q2)'), (2125, 'Habitat International', 1973975, 1.542, 'Q1', 78, 117, 8006, 2114, 361, '3', '1970, 1976-2020', 'Nature and Landscape Conservation (Q1); Urban Studies (Q1)'), (2126, 'Laboratory Investigation', 15300307, 1.542, 'Q1', 150, 173, 6118, 2101, 471, '3', '1952-2020', 'Pathology and Forensic Medicine (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (2127, 'World Bank Economic Review', 1564698, 1.542, 'Q1', 89, 55, 1799, 291, 124, '3', '1986-2020', 'Accounting (Q1); Development (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (2128, 'Advanced Synthesis and Catalysis', 16154169, 1.541, 'Q1', 155, 553, 44230, 9108, 1727, '5', '1996-2020', 'Catalysis (Q1); Organic Chemistry (Q1)'), (2129, 'International Soil and Water Conservation Res', 20956339, 1.541, 'Q1', 29, 47, 2487, 775, 113, '16', '2013-2020', 'Agronomy and Crop Science (Q1); Nature and Landscape Conservation (Q1); Soil Science (Q1); Water Science and Technology (Q1)'), (2130, 'Journal of Neurology', 3405354, 1.541, 'Q1', 136, 616, 22527, 4537, 1008, '5', '1974-2020', 'Neurology (Q1); Neurology (clinical) (Q1)'), (2131, 'Behavioral Disorders', 1987429, 1.54, 'Q1', 44, 35, 1969, 180, 60, '2', '1996-2011, 2013-2020', 'Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Education (Q1)'), (2132, 'Chemical Geology', 92541, 1.54, 'Q1', 202, 376, 30375, 4857, 1191, '16', '1966-2020', 'Geochemistry and Petrology (Q1); Geology (Q1)'), (2133, 'Journal of Applied Volcanology', 21915040, 1.54, 'Q1', 22, 9, 721, 151, 35, '19', '2012-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1); Safety Research (Q1)'), (2134, 'Journal of Atherosclerosis and Thrombosis', 18803873, 1.54, 'Q1', 73, 122, 4616, 1335, 303, '6', '1994-1998, 2000-2020', 'Biochemistry (medical) (Q1); Cardiology and Cardiovascular Medicine (Q1); Internal Medicine (Q1)'), (2135, 'Journal of Common Market Studies', 14685965, 1.54, 'Q1', 90, 141, 7506, 1048, 295, '3', '1962-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q1); Political Science and International Relations (Q1)'), (2136, 'Journal of Composites for Construction', 10900268, 1.54, 'Q1', 102, 106, 4335, 1082, 256, '2', '1997-2020', 'Building and Construction (Q1); Ceramics and Composites (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (2137, 'Neuroscience Bulletin', 16737067, 1.54, 'Q1', 47, 172, 8036, 1372, 302, '1', '2005-2020', 'Medicine (miscellaneous) (Q1); Physiology (Q1); Neuroscience (miscellaneous) (Q2)'), (2138, 'Trends in hearing', 23312165, 1.54, 'Q1', 49, 49, 2612, 697, 203, '2', '2013-2020', 'Otorhinolaryngology (Q1); Speech and Hearing (Q1)'), (2139, 'Cognitive Development', 8852014, 1.539, 'Q1', 77, 100, 6223, 518, 189, '3', '1986-2020', 'Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (2140, 'Journal of Colloid and Interface Science', 10957103, 1.538, 'Q1', 236, 1205, 63488, 30261, 3900, '2', '1965-2021', 'Biomaterials (Q1); Colloid and Surface Chemistry (Q1); Electronic, Optical and Magnetic Materials (Q1); Surfaces, Coatings and Films (Q1)'), (2141, 'British Journal of Psychology', 20448295, 1.536, 'Q1', 92, 60, 3569, 519, 129, '2', '1949, 1953-2020', 'Psychology (miscellaneous) (Q1)'), (2142, 'Cancer Gene Therapy', 14765500, 1.535, 'Q1', 86, 159, 7774, 685, 130, '3', '1994-2020', 'Molecular Medicine (Q1); Cancer Research (Q2); Molecular Biology (Q2)'), (2143, 'Group Processes and Intergroup Relations', 14617188, 1.535, 'Q1', 73, 134, 8476, 602, 190, '3', '1998-2020', 'Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Cultural Studies (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)'), (2144, 'Acta Ophthalmologica', 1755375, 1.534, 'Q1', 87, 460, 14239, 2732, 738, '3', '1923-1994, 2008-2020', 'Medicine (miscellaneous) (Q1); Ophthalmology (Q1)'), (2145, 'Electrochimica Acta', 134686, 1.534, 'Q1', 236, 1707, 89070, 41988, 6504, '3', '1959-2020', 'Chemical Engineering (miscellaneous) (Q1); Electrochemistry (Q1)'), (2146, 'International Journal of Impact Engineering', 734743, 1.534, 'Q1', 123, 222, 8662, 3082, 618, '3', '1983-2020', 'Aerospace Engineering (Q1); Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Ocean Engineering (Q1); Safety, Risk, Reliabil'), (2147, 'Mechanisms of Ageing and Development', 18726216, 1.534, 'Q1', 117, 144, 14363, 1383, 269, '42', '1972-2020', 'Aging (Q1); Developmental Biology (Q2)'), (2148, 'Parkinsonism and Related Disorders', 18735126, 1.534, 'Q1', 98, 360, 8747, 3599, 779, '16', '1995-2020', 'Geriatrics and Gerontology (Q1); Neurology (Q1); Neurology (clinical) (Q1)'), (2149, 'BMC Evolutionary Biology', 14712148, 1.533, 'Q1', 122, 162, 11939, 2453, 700, '3', '2001-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (2150, 'Current Protocols in Molecular Biology', 19343639, 1.533, 'Q1', 42, 20, 815, 188, 74, '2', '2001-2020', 'Medicine (miscellaneous) (Q1); Molecular Biology (Q2)'), (2151, 'Journal of Structural Geology', 1918141, 1.533, 'Q1', 127, 233, 19319, 1884, 473, '3', '1979-2020', 'Geology (Q1)'), (2152, 'SIAM Journal on Computing', 975397, 1.533, 'Q1', 122, 62, 2814, 1101, 194, '2', '1984-2020', 'Computer Science (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1)'), (2153, 'Economica', 130427, 1.532, 'Q1', 65, 39, 1616, 217, 98, '3', '1937, 1958, 1962, 1974-1976, 1978, 1980-2020', 'Economics and Econometrics (Q1)'), (2154, 'Surgery', 15327361, 1.532, 'Q1', 162, 487, 10740, 4267, 1108, '2', '1937-2020', 'Surgery (Q1)'), (2155, 'Journal of CO2 Utilization', 22129820, 1.531, 'Q1', 53, 325, 19090, 5613, 770, '3', '2013-2020', 'Chemical Engineering (miscellaneous) (Q1); Process Chemistry and Technology (Q1); Waste Management and Disposal (Q1)'), (2156, 'CPT: Pharmacometrics and Systems Pharmacology', 21638306, 1.53, 'Q1', 37, 78, 2284, 1020, 256, '2', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q1); Modeling and Simulation (Q1); Pharmacology (medical) (Q1)'), (2157, 'HIV Medicine', 14681293, 1.53, 'Q1', 79, 107, 3969, 832, 279, '3', '1999-2020', 'Health Policy (Q1); Infectious Diseases (Q1); Pharmacology (medical) (Q1)'), (2158, 'Journal of Scientific Computing', 8857474, 1.53, 'Q1', 80, 261, 10037, 3051, 837, '2', '1986-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Engineering (miscellaneous) (Q1); Numerical Analysis (Q1); Software (Q1); Theoretical Computer Scie'), (2159, 'Journal of Cellular Physiology', 10974652, 1.529, 'Q1', 174, 849, 45612, 18859, 3232, '2', '1945-1958, 1963-2020', 'Clinical Biochemistry (Q1); Physiology (Q1); Cell Biology (Q2)'), (2160, 'Journal of Clinical Sleep Medicine', 15509397, 1.529, 'Q1', 92, 358, 9151, 2736, 611, '2', '2005-2020', 'Neurology (Q1); Neurology (clinical) (Q1); Pulmonary and Respiratory Medicine (Q1)'), (2161, 'Seminars in Perinatology', 1558075, 1.529, 'Q1', 90, 83, 3959, 937, 215, '3', '1977-2020', 'Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (2162, 'Studies in Family Planning', 17284465, 1.529, 'Q1', 68, 22, 970, 235, 62, '3', '1970-2020', 'Demography (Q1); Social Sciences (miscellaneous) (Q1)'), (2163, 'Aesthetic Surgery Journal', 1090820, 1.528, 'Q1', 58, 321, 6855, 1701, 488, '2', '1995-2020', 'Medicine (miscellaneous) (Q1); Surgery (Q1)'), (2164, 'Classical and Quantum Gravity', 13616382, 1.528, 'Q1', 189, 424, 22650, 7486, 1182, '3', '1984-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (2165, 'Ecology and Society', 17083087, 1.528, 'Q1', 141, 135, 10144, 2277, 487, '9', '1997-2020', 'Ecology (Q1)'), (2166, 'Immune Network', 15982629, 1.528, 'Q1', 23, 51, 3628, 694, 133, '13', '2016-2020', 'Infectious Diseases (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (2167, 'Political Geography', 9626298, 1.527, 'Q1', 97, 136, 10265, 1175, 294, '3', '1983, 1992-2020', 'Geography, Planning and Development (Q1); History (Q1); Sociology and Political Science (Q1)'), (2168, 'Wiley Interdisciplinary Reviews: Cognitive Sc', 19395086, 1.526, 'Q1', 49, 23, 3080, 340, 81, '2', '2010-2020', 'Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2)'), (2169, 'Icarus', 10902643, 1.525, 'Q1', 159, 364, 22238, 5336, 1207, '2', '1962-2021', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (2170, 'International Journal of Hygiene and Environm', 14384639, 1.525, 'Q1', 92, 193, 10570, 2410, 393, '5', '2000-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (2171, 'Organic Geochemistry', 1466380, 1.525, 'Q1', 134, 93, 6855, 1558, 409, '3', '1977-2020', 'Geochemistry and Petrology (Q1)'), (2172, 'American Journal of Physiology - Heart and Ci', 3636135, 1.524, 'Q1', 197, 277, 14150, 3236, 767, '2', '1977-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (Q1); Physiology (medical) (Q1)'), (2173, 'Biochimie Open', 22140085, 1.524, 'Q1', 12, 0, 0, 144, 25, '16', '2015-2018', 'Biochemistry (Q1)'), (2174, 'Extreme Mechanics Letters', 23524316, 1.524, 'Q1', 42, 232, 10358, 1693, 297, '3', '2014-2020', 'Bioengineering (Q1); Chemical Engineering (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (2175, 'Gerontologist, The', 17585341, 1.524, 'Q1', 138, 222, 9851, 2470, 568, '2', '1961-2020', 'Geriatrics and Gerontology (Q1); Gerontology (Q1); Medicine (miscellaneous) (Q1)'), (2176, 'Information Sciences', 200255, 1.524, 'Q1', 184, 928, 40007, 17554, 2168, '2', '1968-2021', 'Artificial Intelligence (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Information Systems and Management (Q1); Software (Q1); Theoretical Computer Science (Q1)'), (2177, 'Journal of Cancer Survivorship', 19322267, 1.524, 'Q1', 63, 119, 5161, 1030, 245, '2', '2007-2020', 'Oncology (Q1); Oncology (nursing) (Q1)'), (2178, 'Optics Letters', 1469592, 1.524, 'Q1', 272, 1680, 39505, 19715, 4465, '2', '1977-2020', 'Atomic and Molecular Physics, and Optics (Q1)'), (2179, 'Basin Research', 950091, 1.522, 'Q1', 83, 94, 7856, 878, 214, '3', '1988-1989, 1991-1992, 1994-2020', 'Geology (Q1)'), (2180, 'Environment and Urbanization', 9562478, 1.522, 'Q1', 73, 46, 2319, 413, 98, '3', '1989-2020', 'Environmental Science (miscellaneous) (Q1); Urban Studies (Q1)'), (2181, 'Energy Conversion and Management: X', 25901745, 1.521, 'Q1', 7, 34, 2375, 82, 13, '3', '2019-2020', 'Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Nuclear Energy and Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (2182, 'Financial Analysts Journal', 15198, 1.521, 'Q1', 78, 32, 416, 222, 85, '2', '1996-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (2183, 'Materials Today Chemistry', 24685194, 1.521, 'Q1', 23, 160, 12307, 1409, 198, '3', '2016-2020', 'Biomaterials (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1); Catalysis (Q2); Colloid and Surface Chemistry (Q2)'), (2184, 'Addictive Behaviors', 3064603, 1.52, 'Q1', 127, 345, 16254, 4787, 1148, '3', '1975-2021', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Toxicology (Q1)'), (2185, 'Computing and Visualization in Science', 14329360, 1.519, 'Q1', 44, 17, 674, 138, 42, '5', '1997-2013, 2015-2020', 'Computational Theory and Mathematics (Q1); Computer Vision and Pattern Recognition (Q1); Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1); Software (Q1); Theoretical Computer Science (Q1'), (2186, 'Corporate Social Responsibility and Environme', 15353958, 1.519, 'Q1', 73, 230, 18613, 2401, 280, '3', '2003-2020', 'Development (Q1); Management, Monitoring, Policy and Law (Q1); Strategy and Management (Q1)'), (2187, 'Molecular and Cellular Neurosciences', 10959327, 1.519, 'Q2', 136, 66, 6932, 1090, 279, '2', '1990-2020', 'Cell Biology (Q2); Cellular and Molecular Neuroscience (Q2); Molecular Biology (Q2)'), (2188, 'Review of General Psychology', 10892680, 1.519, 'Q1', 98, 29, 2743, 376, 98, '2', '1997-2020', 'Psychology (miscellaneous) (Q1)'), (2189, 'Frontiers in Endocrinology', 16642392, 1.518, 'Q1', 68, 1032, 72398, 9494, 1854, '19', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q1)'), (2190, 'School Psychology Review', 2796015, 1.518, 'Q1', 90, 85, 5255, 282, 85, '2', '1988, 1996-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (2191, 'Cancer Biology and Medicine', 20953941, 1.517, 'Q1', 42, 77, 5146, 862, 160, '1', '2012-2020', 'Oncology (Q1); Cancer Research (Q2)'), (2192, 'Harvard Educational Review', 178055, 1.517, 'Q1', 80, 0, 0, 18, 5, '2', '1979, 1989, 1996-2017', 'Education (Q1)'), (2193, 'Ophthalmology Retina', 24686530, 1.517, 'Q1', 18, 254, 4819, 1327, 394, '2', '2017-2020', 'Ophthalmology (Q1)'), (2194, 'Psychiatric Services', 15579700, 1.517, 'Q1', 145, 268, 5180, 1915, 624, '2', '1995-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (2195, 'Genes and Nutrition', 15558932, 1.516, 'Q1', 52, 20, 1474, 505, 94, '3', '2007-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Genetics (Q1)'), (2196, 'Biology Direct', 17456150, 1.515, 'Q1', 68, 29, 1818, 338, 78, '3', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1'), (2197, 'Epigenetics', 15592308, 1.515, 'Q1', 92, 176, 10369, 1285, 281, '2', '2006-2020', 'Medicine (miscellaneous) (Q1); Cancer Research (Q2); Molecular Biology (Q2)'), (2198, 'Acta Pharmacologica Sinica', 16714083, 1.514, 'Q1', 90, 240, 13463, 2900, 496, '3', '1980-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (2199, 'Aldrichimica Acta', 25100, 1.514, 'Q1', 59, 4, 165, 39, 13, '2', '1990-2020', 'Organic Chemistry (Q1)'), (2200, 'Palliative Care', 11782242, 1.514, 'Q1', 7, 0, 0, 60, 14, '41', '2012-2018', 'Advanced and Specialized Nursing (Q1); Medicine (miscellaneous) (Q1)'), (2201, 'Emerging Themes in Epidemiology', 17427622, 1.513, 'Q2', 35, 3, 48, 119, 31, '3', '2004-2020', 'Epidemiology (Q2)'), (2202, 'Journal of International Money and Finance', 2615606, 1.513, 'Q1', 96, 110, 4860, 1168, 358, '3', '1982-2021', 'Economics and Econometrics (Q1); Finance (Q1)'), (2203, 'Journal of Toxicology and Environmental Healt', 10937404, 1.513, 'Q1', 83, 16, 2147, 340, 49, '3', '1998-2020', 'Health, Toxicology and Mutagenesis (Q1); Toxicology (Q1)'), (2204, 'Journal of Pest Science', 16124758, 1.512, 'Q1', 52, 137, 8042, 1830, 352, '5', '1925-1944, 1948-1972, 2004-2020', 'Agronomy and Crop Science (Q1)'), (2205, 'Biomedicines', 22279059, 1.511, 'Q1', 28, 626, 48013, 1533, 265, '19', '2013-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (2206, 'BMB Reports', 1976670, 1.511, 'Q1', 77, 95, 4049, 1349, 322, '13', '2008-2020', 'Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)'), (2207, 'European Eating Disorders Review', 10990968, 1.511, 'Q1', 67, 85, 4172, 854, 193, '3', '1993-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (2208, 'Industrial and Corporate Change', 14643650, 1.511, 'Q1', 110, 32, 1873, 590, 183, '3', '1992-2020', 'Economics and Econometrics (Q1)'), (2209, 'Mineralium Deposita', 264598, 1.51, 'Q1', 89, 109, 9063, 840, 192, '5', '1966-2020', 'Economic Geology (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1)'), (2210, 'IEEE Communications Standards Magazine', 24712825, 1.509, 'Q1', 18, 47, 451, 782, 97, '2', '2017-2020', 'Computer Networks and Communications (Q1); Law (Q1); Management of Technology and Innovation (Q1); Safety, Risk, Reliability and Quality (Q1)'), (2211, 'Mindfulness', 18688535, 1.509, 'Q1', 56, 262, 13969, 2284, 543, '5', '2010-2020', 'Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Health (social science) (Q1); Social Psychology (Q1)'), (2212, 'Seismological Research Letters', 8950695, 1.509, 'Q1', 79, 296, 11637, 1870, 544, '2', '1984-1985, 1987-1993, 1995-2020', 'Geophysics (Q1)'), (2213, 'Sex Roles', 3600025, 1.509, 'Q1', 118, 136, 9745, 1456, 341, '2', '1975-2020', 'Developmental and Educational Psychology (Q1); Gender Studies (Q1); Social Psychology (Q1)'), (2214, 'Infection and Immunity', 10985522, 1.508, 'Q1', 220, 270, 16854, 3205, 915, '2', '1971-2020', 'Infectious Diseases (Q1); Microbiology (Q1); Parasitology (Q1); Immunology (Q2)'), (2215, 'Plant Science', 1689452, 1.508, 'Q1', 150, 317, 22030, 3411, 727, '42', '1983, 1985-2020', 'Agronomy and Crop Science (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1)'), (2216, 'Translational Vision Science and Technology', 21642591, 1.508, 'Q1', 21, 449, 17772, 1274, 425, '2', '2013-2020', 'Biomedical Engineering (Q1); Ophthalmology (Q1)'), (2217, 'American Journal of Physiology - Endocrinolog', 1931849, 1.507, 'Q1', 201, 211, 10995, 1997, 489, '2', '1980-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Physiology (Q1); Physiology (medical) (Q1)'), (2218, 'European Archives of Psychiatry and Clinical ', 14338491, 1.507, 'Q1', 98, 165, 8601, 1025, 251, '5', '1990-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)'), (2219, 'European Journal of Psychotraumatology', 20008066, 1.507, 'Q1', 42, 147, 7848, 1092, 236, '20', '2012, 2015-2020', 'Psychiatry and Mental Health (Q1)'), (2220, 'Sexually Transmitted Diseases', 15374521, 1.507, 'Q1', 105, 175, 3939, 1093, 475, '2', '1977-2020', 'Dermatology (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2221, 'Clinical Lung Cancer', 19380690, 1.506, 'Q1', 60, 217, 7086, 1955, 464, '2', '2000-2020', 'Oncology (Q1); Pulmonary and Respiratory Medicine (Q1); Cancer Research (Q2)'), (2222, 'Computers and Operations Research', 3050548, 1.506, 'Q1', 152, 210, 9383, 3837, 746, '3', '1974-2021', 'Computer Science (miscellaneous) (Q1); Management Science and Operations Research (Q1); Modeling and Simulation (Q1)'), (2223, 'Wiley Interdisciplinary Reviews: Data Mining ', 19424795, 1.506, 'Q1', 47, 52, 4054, 1347, 106, '2', '2011-2020', 'Computer Science (miscellaneous) (Q1)'), (2224, 'Journal of Ethnic and Migration Studies', 14699451, 1.505, 'Q1', 89, 405, 23225, 2148, 523, '3', '1971-2020', 'Arts and Humanities (miscellaneous) (Q1); Demography (Q1)'), (2225, 'Nonlinear Analysis: Real World Applications', 14681218, 1.505, 'Q1', 89, 141, 4641, 1474, 495, '16', '2000-2021', 'Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (2226, 'Reproductive Health', 17424755, 1.505, 'Q1', 52, 193, 7037, 2060, 567, '3', '2004-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)'), (2227, 'Contemporary Physics', 107514, 1.504, 'Q1', 61, 10, 827, 269, 43, '3', '1959-1971, 1973-1978, 1980-1990, 1992-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (2228, 'Journal of Dentistry', 3005712, 1.504, 'Q1', 114, 182, 7822, 2268, 511, '16', '1972-2020', 'Dentistry (miscellaneous) (Q1)'), (2229, 'Science China Materials', 21994501, 1.504, 'Q1', 33, 246, 14404, 2843, 431, '1', '2016-2020', 'Materials Science (miscellaneous) (Q1)'), (2230, 'International Forum of Allergy and Rhinology', 20426976, 1.503, 'Q1', 46, 235, 5902, 1760, 497, '2', '2011-2020', 'Otorhinolaryngology (Q1); Immunology and Allergy (Q2)'), (2231, 'Digestive Endoscopy', 9155635, 1.5, 'Q1', 56, 311, 6740, 1395, 271, '3', '1989-2020', 'Gastroenterology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (2232, 'Advanced Sustainable Systems', 23667486, 1.499, 'Q1', 24, 100, 7087, 967, 188, '2', '2019-2020', 'Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (2233, 'Frontiers in Neuroscience', 1662453, 1.499, 'Q2', 102, 1405, 100610, 13939, 2898, '19', '2007-2020', 'Neuroscience (miscellaneous) (Q2)'), (2234, 'New Political Economy', 14699923, 1.499, 'Q1', 56, 105, 8031, 580, 141, '3', '1996-2020', 'Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (2235, 'Cognitive Science', 3640213, 1.498, 'Q1', 114, 103, 6981, 1148, 394, '2', '1977-2020', 'Artificial Intelligence (Q1); Cognitive Neuroscience (Q1); Experimental and Cognitive Psychology (Q1)'), (2236, 'JARO - Journal of the Association for Researc', 14387573, 1.498, 'Q1', 72, 34, 1832, 390, 142, '2', '2000-2020', 'Otorhinolaryngology (Q1); Sensory Systems (Q1)'), (2237, 'Journal of Endocrinology', 14796805, 1.498, 'Q1', 146, 137, 8338, 1939, 428, '3', '1946-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)'), (2238, 'Applied Psychology', 269994, 1.497, 'Q1', 88, 95, 7255, 370, 77, '3', '1955, 1961-1992, 1996-2020', 'Applied Psychology (Q1); Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1)'), (2239, 'ChemCatChem', 18673880, 1.497, 'Q1', 106, 710, 45156, 10227, 1930, '5', '2009-2020', 'Inorganic Chemistry (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Catalysis (Q2)'), (2240, 'Fuel Processing Technology', 3783820, 1.497, 'Q1', 146, 274, 16062, 7159, 1062, '16', '1977-2021', 'Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1)'), (2241, 'International Journal of Refrigeration', 1407007, 1.497, 'Q1', 116, 371, 12895, 4287, 1061, '3', '1978-2020', 'Building and Construction (Q1); Mechanical Engineering (Q1)'), (2242, 'Journal of Rural Studies', 7430167, 1.497, 'Q1', 104, 280, 20744, 2862, 557, '3', '1985-2020', 'Development (Q1); Forestry (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)'), (2243, 'Journal of Quality Technology', 224065, 1.496, 'Q1', 88, 52, 1594, 281, 91, '2', '1969-1979, 1982-1984, 1994-2020', 'Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Safety, Risk, Reliability and Quality (Q1); Strategy and Management (Q1)'), (2244, 'Progress in Planning', 3059006, 1.496, 'Q1', 48, 14, 2739, 138, 28, '3', '1969, 1973-2020', 'Geography, Planning and Development (Q1)'), (2245, 'Fungal Biology Reviews', 17494613, 1.495, 'Q1', 52, 18, 1851, 319, 51, '16', '2007-2020', 'Microbiology (Q1); Plant Science (Q1)'), (2246, 'GPS Solutions', 10805370, 1.495, 'Q1', 73, 115, 3524, 2021, 402, '5', '1995, 1998-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (2247, 'Molecular Nutrition and Food Research', 16134133, 1.495, 'Q1', 131, 195, 11283, 5052, 831, '5', '1995, 2004-2020', 'Biotechnology (Q1); Food Science (Q1)'), (2248, 'International Journal for Educational Integri', 18332595, 1.494, 'Q1', 10, 12, 495, 117, 34, '3', '2015-2020', 'Education (Q1); Social Sciences (miscellaneous) (Q1)'), (2249, 'Oxidative Medicine and Cellular Longevity', 19420994, 1.494, 'Q1', 93, 858, 60540, 13088, 2034, '2', '2008-2020', 'Biochemistry (Q1); Medicine (miscellaneous) (Q1); Aging (Q2); Cell Biology (Q2)'), (2250, 'Sedimentology', 370746, 1.494, 'Q1', 108, 155, 15887, 1207, 288, '3', '1962-2020', 'Geology (Q1); Stratigraphy (Q1)'), (2251, 'Agricultural Water Management', 3783774, 1.493, 'Q1', 128, 429, 24976, 6257, 1201, '16', '1976-1977, 1979-2021', 'Agronomy and Crop Science (Q1); Earth-Surface Processes (Q1); Soil Science (Q1); Water Science and Technology (Q1)'), (2252, 'La Rivista del Nuovo Cimento', 393697, 1.493, 'Q1', 49, 11, 2082, 245, 37, '7', '1969-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (2253, 'Neuroendocrinology', 283835, 1.493, 'Q1', 101, 112, 5508, 959, 196, '19', '1965, 1967-2020', 'Endocrine and Autonomic Systems (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Cellular and Molecular Neuroscience (Q2)'), (2254, 'Journal of Applied Research in Memory and Cog', 22113681, 1.492, 'Q1', 34, 72, 3320, 638, 127, '16', '2012-2020', 'Applied Psychology (Q1); Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1)'), (2255, 'Pattern Recognition', 313203, 1.492, 'Q1', 210, 412, 19522, 12476, 1168, '3', '1968-2021', 'Artificial Intelligence (Q1); Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1); Software (Q1)'), (2256, 'Journal of Educational Administration', 9578234, 1.491, 'Q1', 57, 43, 2645, 435, 133, '3', '1963-2020', 'Education (Q1); Public Administration (Q1)'), (2257, 'Sleep Health', 23527218, 1.491, 'Q1', 26, 123, 5287, 1085, 227, '2', '2015-2020', 'Behavioral Neuroscience (Q1); Health (social science) (Q1); Neuropsychology and Physiological Psychology (Q1); Social Sciences (miscellaneous) (Q1)'), (2258, 'Allergology International', 14401592, 1.49, 'Q1', 58, 111, 3571, 1245, 201, '6', '1996-2020', 'Medicine (miscellaneous) (Q1); Immunology and Allergy (Q2)'), (2259, 'Probability Surveys', 15495787, 1.49, 'Q1', 43, 6, 670, 89, 17, '2', '2004-2020', 'Statistics and Probability (Q1)'), (2260, 'Cognitive, Affective and Behavioral Neuroscie', 15307026, 1.489, 'Q1', 100, 94, 7317, 897, 280, '2', '2001-2020', 'Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1)'), (2261, 'Neurogastroenterology and Motility', 13652982, 1.489, 'Q1', 105, 265, 11411, 2399, 664, '3', '1989-2020', 'Gastroenterology (Q1); Physiology (Q1); Endocrine and Autonomic Systems (Q2)'), (2262, 'Atmospheric Research', 1698095, 1.488, 'Q1', 106, 365, 23226, 4864, 874, '16', '1986-2021', 'Atmospheric Science (Q1)'), (2263, 'Progress in Oceanography', 796611, 1.487, 'Q1', 132, 161, 13330, 1822, 441, '3', '1963-1965, 1969, 1973, 1976-2020', 'Aquatic Science (Q1); Geology (Q1)'), (2264, 'Cellular Physiology and Biochemistry', 14219778, 1.486, 'Q1', 87, 84, 4854, 12824, 2380, '19', '1987, 1991-2020', 'Physiology (Q1)'), (2265, 'SIAM Journal on Control and Optimization', 10957138, 1.486, 'Q1', 116, 144, 4922, 1916, 498, '2', '1976-2020', 'Applied Mathematics (Q1); Control and Optimization (Q1)'), (2266, 'Clinical Neurosurgery', 148396, 1.485, 'Q1', 34, 0, 0, 1474, 367, '2', '1953-1959, 1962-1966, 1968-1983, 1985-1986, 1988-1997, 1999-2019', 'Neurology (clinical) (Q1); Surgery (Q1)'), (2267, 'Physics of the Dark Universe', 22126864, 1.485, 'Q1', 45, 181, 11386, 1540, 191, '16', '2012-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (2268, 'Journal of Biological Rhythms', 15524531, 1.484, 'Q1', 101, 58, 2989, 575, 149, '2', '1985-2020', 'Physiology (Q1); Physiology (medical) (Q1)'), (2269, 'Journal of Oral Microbiology', 20002297, 1.484, 'Q1', 38, 56, 2989, 606, 115, '3', '2009-2020', 'Dentistry (miscellaneous) (Q1); Infectious Diseases (Q1); Microbiology (medical) (Q1)'), (2270, 'Journal of Positive Psychology', 17439760, 1.484, 'Q1', 73, 149, 7500, 1057, 191, '3', '2006-2020', 'Psychology (miscellaneous) (Q1)'), (2271, 'Studies in Science Education', 19408412, 1.484, 'Q1', 45, 10, 1297, 100, 19, '3', '1974-2020', 'Education (Q1)'), (2272, 'Journal of Dairy Science', 15253198, 1.483, 'Q1', 191, 1042, 47550, 12522, 2938, '2', '1917-2020', 'Animal Science and Zoology (Q1); Food Science (Q1); Genetics (Q1)'), (2273, 'Electronic Journal of Statistics', 19357524, 1.482, 'Q1', 54, 104, 3957, 1099, 430, '2', '2007-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (2274, 'Expert Review of Molecular Diagnostics', 17448352, 1.482, 'Q1', 73, 123, 9734, 1359, 271, '3', '2001-2020', 'Genetics (Q1); Molecular Medicine (Q1); Pathology and Forensic Medicine (Q1); Molecular Biology (Q2)'), (2275, 'IEEE Power and Energy Magazine', 15407977, 1.482, 'Q1', 72, 61, 262, 738, 171, '2', '2003-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (2276, 'International Journal for Parasitology', 18790135, 1.482, 'Q1', 142, 112, 7431, 1308, 311, '3', '1971-2020', 'Infectious Diseases (Q1); Parasitology (Q1)'), (2277, 'Qualitative Research in Sport, Exercise and H', 21596778, 1.482, 'Q1', 35, 87, 5156, 768, 130, '3', '2011-2020', 'Health (social science) (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Social Psychology (Q1); Sports Science (Q1)'), (2278, 'Diabetes and Metabolism', 12623636, 1.48, 'Q1', 89, 114, 3549, 938, 181, '8', '1996-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1)'), (2279, 'Journal of Urban Technology', 10630732, 1.48, 'Q1', 41, 31, 1618, 492, 64, '3', '1992-2020', 'Urban Studies (Q1)'), (2280, 'British Journal of Clinical Psychology', 1446657, 1.479, 'Q1', 92, 32, 1744, 349, 88, '2', '1962-1966, 1968, 1970, 1981-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1)'), (2281, 'Food Research International', 9639969, 1.479, 'Q1', 163, 989, 61001, 14029, 2176, '3', '1992-2020', 'Food Science (Q1)'), (2282, 'Gastroenterology Clinics of North America', 8898553, 1.479, 'Q1', 82, 62, 3410, 735, 153, '3', '1987-2020', 'Gastroenterology (Q1)'), (2283, 'Metabolic Engineering Communications', 22140301, 1.479, 'Q1', 23, 47, 2747, 279, 53, '16', '2014-2020', 'Biomedical Engineering (Q1); Endocrinology, Diabetes and Metabolism (Q1)'), (2284, 'Vascular Pharmacology', 18793649, 1.479, 'Q1', 95, 48, 2358, 1033, 203, '2', '2002-2020', 'Molecular Medicine (Q1); Pharmacology (Q1); Physiology (Q1)'), (2285, 'Clinical Neurophysiology', 13882457, 1.478, 'Q1', 183, 389, 16568, 3272, 750, '42', '1999-2020', 'Neurology (Q1); Neurology (clinical) (Q1); Physiology (medical) (Q1); Sensory Systems (Q1)'), (2286, 'Stochastic Processes and their Applications', 3044149, 1.478, 'Q1', 81, 260, 8035, 1248, 492, '16', '1973-2020', 'Applied Mathematics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1)'), (2287, 'Dermatologic Clinics', 7338635, 1.477, 'Q1', 69, 61, 2938, 683, 168, '3', '1983-2020', 'Dermatology (Q1)'), (2288, 'Algebra and Number Theory', 19370652, 1.476, 'Q1', 34, 76, 2334, 447, 210, '2', '2007-2020', 'Algebra and Number Theory (Q1)'), (2289, 'Diabetic Medicine', 14645491, 1.474, 'Q1', 145, 330, 9178, 2365, 603, '3', '1984-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (2290, 'Obesity Surgery', 9608923, 1.474, 'Q1', 138, 782, 21735, 5357, 1486, '2', '1991-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Nutrition and Dietetics (Q1); Surgery (Q1)'), (2291, 'Translational Lung Cancer Research', 22264477, 1.474, 'Q1', 41, 298, 11492, 1536, 310, '35', '2012-2020', 'Oncology (Q1)'), (2292, 'Aging', 19454589, 1.473, 'Q2', 90, 1631, 67158, 6370, 1143, '2', '2009-2020', 'Aging (Q2); Cell Biology (Q2)'), (2293, 'Medical Physics', 942405, 1.473, 'Q1', 180, 624, 25211, 7201, 1640, '2', '1974-2020', 'Biophysics (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (2294, 'Political Research Quarterly', 1938274, 1.473, 'Q1', 79, 137, 8429, 535, 204, '2', '1948, 1950-1952, 1954-1955, 1957-1967, 1969-1977, 1979-1986, 1988-2020', 'Sociology and Political Science (Q1)'), (2295, 'Current Osteoporosis Reports', 15442241, 1.472, 'Q1', 57, 81, 7042, 1130, 207, '2', '2003-2020', 'Endocrinology, Diabetes and Metabolism (Q1)'), (2296, 'Globalization and Health', 17448603, 1.472, 'Q1', 53, 115, 5307, 1149, 278, '3', '2005-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2297, 'Interpreting', 13846647, 1.472, 'Q1', 29, 12, 642, 58, 32, '16', '1996-2000, 2004-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2298, 'Bilingualism: Language and Cognition', 14691841, 1.471, 'Q1', 60, 116, 6918, 695, 249, '3', '2005-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2299, 'Journal of Rock Mechanics and Geotechnical En', 16747755, 1.47, 'Q1', 46, 115, 5820, 1614, 298, '1', '2013-2020', 'Geotechnical Engineering and Engineering Geology (Q1)'), (2300, 'Journal of the American Planning Association', 1944363, 1.47, 'Q1', 97, 76, 3589, 419, 72, '3', '1935-2020', 'Development (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)'), (2301, 'Fortschritte der Physik', 15213978, 1.469, 'Q1', 71, 38, 2255, 1470, 187, '5', '1953-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (2302, 'Molecular Pharmacology', 15210111, 1.469, 'Q1', 198, 118, 6604, 1537, 397, '2', '1965-2020', 'Molecular Medicine (Q1); Pharmacology (Q1)'), (2303, 'G3: Genes, Genomes, Genetics', 21601836, 1.468, 'Q1', 66, 414, 24347, 3379, 1072, '2', '2011-2020', 'Genetics (Q1); Genetics (clinical) (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)'), (2304, 'IEEE Transactions on Communications', 906778, 1.468, 'Q1', 214, 584, 22352, 11163, 1482, '2', '1963-1964, 1970-2020', 'Electrical and Electronic Engineering (Q1)'), (2305, 'Journal of Substance Abuse Treatment', 18736483, 1.468, 'Q1', 104, 166, 7350, 1547, 436, '2', '1984-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatric Mental Health (Q1); Psychiatry and Mental Health (Q1)'), (2306, 'Psychology and Aging', 8827974, 1.468, 'Q1', 151, 89, 4882, 808, 262, '2', '1986-2020', 'Geriatrics and Gerontology (Q1); Social Psychology (Q1); Aging (Q2)'), (2307, 'Sociological Methods and Research', 491241, 1.468, 'Q1', 76, 67, 4382, 619, 153, '2', '1972-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (2308, 'Journal of Empirical Finance', 9275398, 1.467, 'Q1', 73, 61, 3241, 621, 202, '16', '1993-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (2309, 'Classroom Discourse', 19463014, 1.466, 'Q1', 11, 30, 1573, 131, 51, '3', '2015-2020', 'Education (Q1)'), (2310, 'Experimental Economics', 15736938, 1.464, 'Q1', 54, 70, 3757, 260, 123, '2', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (2311, 'Infectious Diseases of Poverty', 20499957, 1.464, 'Q1', 39, 168, 5813, 1561, 377, '3', '2012-2020', 'Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2312, 'Journal of Linguistic Anthropology', 10551360, 1.463, 'Q1', 49, 20, 1433, 122, 66, '2', '1991-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2313, 'Journal of Nutrition', 15416100, 1.463, 'Q1', 265, 419, 18206, 3545, 759, '2', '1945-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (2314, 'Clinical and Experimental Allergy', 9547894, 1.462, 'Q2', 154, 181, 6018, 2029, 441, '3', '1971-2020', 'Immunology (Q2); Immunology and Allergy (Q2)'), (2315, 'Journal of Inherited Metabolic Disease', 1418955, 1.462, 'Q1', 102, 156, 6088, 1487, 309, '16', '1978-2020', 'Genetics (Q1); Genetics (clinical) (Q1)'), (2316, 'Management International Review', 9388249, 1.462, 'Q1', 57, 30, 3322, 386, 102, '5', '2005-2020', 'Business and International Management (Q1); Strategy and Management (Q1)'), (2317, 'Computational Mechanics', 14320924, 1.461, 'Q1', 104, 161, 8854, 1838, 406, '5', '1986-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Computational Mechanics (Q1); Computational Theory and Mathematics (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1)'), (2318, 'Environmental Research', 10960953, 1.46, 'Q1', 136, 1355, 80881, 11076, 1650, '2', '1967-2020', 'Biochemistry (Q1); Environmental Science (miscellaneous) (Q1)'), (2319, 'Governance', 9521895, 1.46, 'Q1', 76, 71, 4348, 441, 119, '3', '1988-2020', 'Marketing (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (2320, 'Intelligence', 1602896, 1.46, 'Q1', 93, 49, 3210, 640, 217, '3', '1977-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1)'), (2321, 'Swarm and Evolutionary Computation', 22106502, 1.46, 'Q1', 65, 100, 6271, 3354, 368, '16', '2011-2021', 'Computer Science (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1)'), (2322, 'Stochastics and Partial Differential Equation', 2194041, 1.459, 'Q1', 17, 37, 1060, 190, 60, '2', '2013-2020', 'Applied Mathematics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q1)'), (2323, 'Journal of Reproductive Immunology', 18727603, 1.458, 'Q1', 87, 105, 5176, 757, 154, '42', '1979-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (2324, 'Journal of Thoracic and Cardiovascular Surger', 225223, 1.458, 'Q1', 192, 2323, 27610, 5063, 1179, '2', '1959-2020', 'Cardiology and Cardiovascular Medicine (Q1); Pulmonary and Respiratory Medicine (Q1); Surgery (Q1)'), (2325, 'Occupational and Environmental Medicine', 14707926, 1.458, 'Q1', 141, 168, 5067, 1581, 367, '3', '1994-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (2326, 'Current Treatment Options in Oncology', 15346277, 1.457, 'Q1', 53, 98, 6619, 1137, 240, '2', '2000-2020', 'Oncology (Q1); Pharmacology (medical) (Q1)'), (2327, 'Surgical Endoscopy and Other Interventional T', 14322218, 1.457, 'Q1', 152, 1143, 33164, 7185, 1770, '2', '1987-2020', 'Surgery (Q1)'), (2328, 'Antimicrobial Resistance and Infection Contro', 20472994, 1.456, 'Q1', 37, 199, 7753, 2306, 474, '3', '2012-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1); Pharmacology (medical) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2329, 'Distance Education', 14750198, 1.456, 'Q1', 52, 36, 1736, 362, 87, '3', '1980-2020', 'Education (Q1); E-learning (Q1)'), (2330, 'Milan Journal of Mathematics', 14249294, 1.456, 'Q1', 28, 19, 631, 87, 42, '19', '2002, 2005-2020', 'Mathematics (miscellaneous) (Q1)'), (2331, 'International Journal of Molecular Sciences', 14220067, 1.455, 'Q1', 162, 9786, 833161, 77153, 13098, '19', '2000-2020', 'Computer Science Applications (Q1); Inorganic Chemistry (Q1); Medicine (miscellaneous) (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Spectroscopy (Q1); Catalysis (Q2); Molecul'), (2332, 'Neurosurgery', 15244040, 1.455, 'Q1', 198, 654, 15623, 3032, 715, '2', '1977-2020', 'Neurology (clinical) (Q1); Surgery (Q1)'), (2333, 'Radiocarbon', 338222, 1.455, 'Q1', 79, 117, 5247, 863, 384, '2', '1980, 1982, 1989-2020', 'Archeology (arts and humanities) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1)'), (2334, 'International Journal of Antimicrobial Agents', 9248579, 1.454, 'Q1', 130, 330, 11732, 3619, 715, '16', '1991-2020', 'Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1); Pharmacology (medical) (Q1)'), (2335, 'Journal of Family Theory and Review', 17562589, 1.454, 'Q1', 17, 29, 2474, 436, 97, '3', '2016-2020', 'Health (social science) (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1)'), (2336, 'Materials Today Bio', 25900064, 1.454, 'Q1', 7, 44, 4268, 186, 24, '16', '2019-2020', 'Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (2337, 'Project Management Journal', 19389507, 1.454, 'Q1', 43, 47, 3442, 550, 129, '2', '1986, 2010-2020', 'Business and International Management (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (2338, 'Tourism Management Perspectives', 22119736, 1.454, 'Q1', 43, 140, 12102, 1824, 274, '2', '2012-2020', 'Tourism, Leisure and Hospitality Management (Q1)'), (2339, 'Current Opinion in Rheumatology', 15316963, 1.452, 'Q1', 112, 84, 3171, 1301, 276, '2', '1989-2020', 'Rheumatology (Q1)'), (2340, 'Journal of Molecular Endocrinology', 14796813, 1.452, 'Q1', 97, 56, 3627, 1104, 240, '3', '1988-2020', 'Endocrinology (Q1); Molecular Biology (Q2)'), (2341, 'Foundations of Computational Mathematics', 16153383, 1.451, 'Q1', 65, 58, 2565, 733, 121, '2', '2001-2020', 'Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1)'), (2342, 'Neurology: Neuroimmunology and NeuroInflammat', 23327812, 1.451, 'Q1', 45, 182, 66, 1298, 252, '2', '2014-2020', 'Neurology (Q1); Neurology (clinical) (Q1)'), (2343, 'Computers and Structures', 457949, 1.45, 'Q1', 138, 135, 6688, 2256, 465, '3', '1971-2021', 'Civil and Structural Engineering (Q1); Computer Science Applications (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Modeling and Simulation (Q1)'), (2344, 'Teachers and Teaching: Theory and Practice', 13540602, 1.45, 'Q1', 56, 33, 1750, 577, 167, '3', '1995-2020', 'Arts and Humanities (miscellaneous) (Q1); Education (Q1)'), (2345, 'Transplantation', 15346080, 1.45, 'Q1', 204, 451, 12493, 4141, 1135, '2', '1963-2020', 'Transplantation (Q1)'), (2346, 'Best Practice and Research in Clinical Rheuma', 15216942, 1.449, 'Q1', 100, 70, 5685, 872, 185, '3', '1995, 1999-2020', 'Medicine (miscellaneous) (Q1); Rheumatology (Q1)'), (2347, 'Educational Technology and Society', 11763647, 1.448, 'Q1', 88, 30, 1665, 967, 205, '22', '1998-2020', 'Education (Q1); E-learning (Q1); Engineering (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (2348, 'European Spine Journal', 9406719, 1.448, 'Q1', 136, 441, 11620, 3672, 1112, '5', '1992-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (2349, 'Plant Molecular Biology', 15735028, 1.448, 'Q1', 174, 136, 8269, 1464, 367, '16', '1981-2020', 'Agronomy and Crop Science (Q1); Genetics (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1)'), (2350, 'Progress in the chemistry of organic natural ', 21917043, 1.448, 'Q1', 31, 6, 0, 235, 27, '5', '2012-2020', 'Medicine (miscellaneous) (Q1)'), (2351, 'SOIL', 21993971, 1.448, 'Q1', 30, 41, 2861, 333, 62, '5', '2015-2020', 'Soil Science (Q1)'), (2352, 'Journal of Nutritional Biochemistry', 9552863, 1.447, 'Q1', 133, 162, 10277, 3465, 588, '2', '1990-2020', 'Biochemistry (Q1); Clinical Biochemistry (Q1); Endocrinology, Diabetes and Metabolism (Q1); Nutrition and Dietetics (Q1); Molecular Biology (Q2)'), (2353, 'Policy Sciences', 322687, 1.447, 'Q1', 58, 36, 2748, 378, 95, '16', '1970-2020', 'Development (Q1); Management, Monitoring, Policy and Law (Q1); Public Administration (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (2354, 'Eye', 950222, 1.446, 'Q1', 98, 600, 14817, 2580, 684, '3', '1987-2020', 'Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Ophthalmology (Q1); Sensory Systems (Q1)'), (2355, 'Journal of Medical Internet Research', 14394456, 1.446, 'Q1', 142, 1324, 62299, 11538, 2026, '9', '1999-2020', 'Health Informatics (Q1)'), (2356, 'Media Psychology', 1532785, 1.446, 'Q1', 74, 57, 3552, 383, 105, '2', '1999-2020', 'Applied Psychology (Q1); Communication (Q1); Social Psychology (Q1)'), (2357, 'Addiction Biology', 13556215, 1.445, 'Q1', 78, 209, 11240, 1489, 363, '2', '1996-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (Q1); Psychiatry and Mental Health (Q1)'), (2358, 'Differential and Integral Equations', 8934983, 1.445, 'Q1', 28, 24, 597, 249, 108, '2', '1988-1995, 2009-2014, 2016-2020', 'Analysis (Q1); Applied Mathematics (Q1)'), (2359, 'European Journal of Anaesthesiology', 2650215, 1.445, 'Q1', 76, 190, 3311, 1231, 296, '3', '1984-2020', 'Anesthesiology and Pain Medicine (Q1)'), (2360, 'Annali della Scuola normale superiore di Pisa', 391173, 1.444, 'Q1', 37, 0, 0, 260, 119, '7', '2002-2019', 'Mathematics (miscellaneous) (Q1); Theoretical Computer Science (Q1)'), (2361, 'Collabra: Psychology', 24747394, 1.444, 'Q1', 10, 0, 0, 294, 96, '2', '2017-2019', 'Psychology (miscellaneous) (Q1)'), (2362, 'Journal of Refractive Surgery', 19382391, 1.444, 'Q1', 96, 115, 2876, 1091, 328, '2', '1995-2020', 'Ophthalmology (Q1); Surgery (Q1)'), (2363, 'Soil Dynamics and Earthquake Engineering', 2677261, 1.444, 'Q1', 97, 445, 20153, 4916, 1193, '3', '1984-2020', 'Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Soil Science (Q1)'), (2364, 'Industry and Innovation', 13662716, 1.443, 'Q1', 61, 73, 5950, 584, 127, '3', '1997-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1)'), (2365, 'IEEE Transactions on Computational Imaging', 23339403, 1.442, 'Q1', 9, 67, 3269, 51, 5, '2', '2015-2017, 2020', 'Computational Mathematics (Q1); Computer Science Applications (Q1); Signal Processing (Q1)'), (2366, 'Medical Clinics of North America', 15579859, 1.442, 'Q1', 84, 97, 4178, 1256, 235, '3', '1945-2020', 'Medicine (miscellaneous) (Q1)'), (2367, 'Heredity', 18067, 1.441, 'Q2', 118, 96, 6527, 1267, 338, '3', '1947-2020', 'Genetics (Q2); Genetics (clinical) (Q2)'), (2368, 'Journal of Environmental Management', 10958630, 1.441, 'Q1', 179, 1438, 87268, 27155, 3798, '2', '1970, 1973, 1975, 1977-2021', 'Environmental Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Medicine (miscellaneous) (Q1); Waste Management and Disposal (Q1)'), (2369, 'Journal of Neuropathology and Experimental Ne', 15546578, 1.441, 'Q1', 164, 119, 4823, 1129, 315, '3', '1942-2020', 'Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1); Cellular and Molecular Neuroscience (Q2)'), (2370, 'Journal of the London Mathematical Society', 246107, 1.441, 'Q1', 62, 118, 3441, 474, 220, '3', '1926-1969, 1972-1978, 1980-2020', 'Mathematics (miscellaneous) (Q1)'), (2371, 'Biotechnology for Biofuels', 17546834, 1.44, 'Q1', 93, 203, 11959, 5728, 927, '3', '2008-2020', 'Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Energy (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (2372, 'Catena', 3418162, 1.44, 'Q1', 128, 516, 34869, 7175, 1270, '16', '1973, 1975-2021', 'Earth-Surface Processes (Q1)'), (2373, 'Journal of Cellular and Molecular Medicine', 15821838, 1.44, 'Q1', 130, 1250, 55784, 8637, 1664, '3', '2000-2020', 'Molecular Medicine (Q1); Cell Biology (Q2)'), (2374, 'Applied Mathematics Letters', 8939659, 1.439, 'Q1', 93, 434, 7820, 3928, 925, '3', '1988-2021', 'Applied Mathematics (Q1)'), (2375, 'Journal of Rural Health', 890765, 1.439, 'Q1', 57, 115, 4423, 579, 161, '2', '1985-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (2376, 'Neuropsychologia', 18733514, 1.439, 'Q1', 206, 333, 27141, 3257, 1023, '3', '1963-2020', 'Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q1); Experimental and Cognitive Psychology (Q1)'), (2377, 'One Health', 23527714, 1.439, 'Q1', 22, 76, 2829, 339, 67, '16', '2015-2020', 'Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2378, 'Physical Review Materials', 24759953, 1.439, 'Q1', 42, 711, 37985, 8765, 1797, '2', '2017-2020', 'Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (2379, 'Journal of Constructional Steel Research', 143974, 1.438, 'Q1', 100, 502, 18901, 4648, 1140, '16', '1980-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)'), (2380, 'Journal of Pain and Symptom Management', 18736513, 1.438, 'Q1', 140, 420, 14144, 2796, 758, '2', '1986-2020', 'Anesthesiology and Pain Medicine (Q1); Neurology (clinical) (Q1); Nursing (miscellaneous) (Q1)'), (2381, 'Obesity', 19307381, 1.438, 'Q1', 199, 349, 12316, 3193, 762, '2', '2006-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (2382, 'BMC Psychiatry', 1471244, 1.437, 'Q1', 97, 569, 29395, 4906, 1224, '3', '2001-2020', 'Psychiatry and Mental Health (Q1)'), (2383, 'Crop Journal', 20955421, 1.437, 'Q1', 29, 127, 6703, 1024, 202, '1', '1970, 2013-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1)'), (2384, 'Science and Medicine in Football', 24733938, 1.437, 'Q1', 12, 84, 3054, 392, 131, '3', '2017-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (2385, 'International Review of Research in Open and ', 14923831, 1.436, 'Q1', 68, 57, 2158, 1006, 253, '9', '2000-2020', 'Education (Q1); E-learning (Q1)'), (2386, 'Journal of Tissue Engineering', 20417314, 1.436, 'Q1', 30, 47, 3241, 769, 113, '3', '2010-2020', 'Biomaterials (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1)'), (2387, 'Cellular Signalling', 18733913, 1.435, 'Q2', 150, 299, 22930, 2493, 627, '2', '1989-2020', 'Cell Biology (Q2)'), (2388, 'Current Hypertension Reports', 15226417, 1.434, 'Q1', 75, 104, 7917, 1436, 298, '2', '1999-2020', 'Internal Medicine (Q1)'), (2389, 'International Public Management Journal', 15593169, 1.434, 'Q1', 45, 75, 5283, 299, 91, '3', '1998-2020', 'Business and International Management (Q1); Public Administration (Q1)'), (2390, 'Critical Social Policy', 2610183, 1.433, 'Q1', 66, 48, 2495, 380, 94, '3', '1981-2020', 'Political Science and International Relations (Q1)'), (2391, 'EURO Journal on Transportation and Logistics', 21924384, 1.433, 'Q1', 20, 17, 619, 167, 57, '5', '2013-2020', 'Management Science and Operations Research (Q1); Modeling and Simulation (Q1); Transportation (Q1)'), (2392, 'Lung Cancer: Targets and Therapy', 11792728, 1.433, 'Q1', 16, 11, 594, 238, 55, '41', '2010-2020', 'Oncology (Q1)'), (2393, 'Medical Care Research and Review', 15526801, 1.433, 'Q1', 85, 100, 4361, 358, 123, '2', '1944-1954, 1963-1971, 1974-1975, 1978-1990, 1993-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1)'), (2394, 'Review of Communication Research', 22554165, 1.433, 'Q1', 4, 4, 371, 36, 9, '12', '2017-2020', 'Communication (Q1)'), (2395, 'American Journal of Physiology - Cell Physiol', 15221563, 1.432, 'Q1', 181, 221, 14753, 1877, 455, '2', '1977-2020', 'Physiology (Q1); Cell Biology (Q2)'), (2396, 'Computers in Industry', 1663615, 1.432, 'Q1', 100, 115, 6926, 3165, 319, '16', '1979-2020', 'Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)'), (2397, 'Law and Human Behavior', 1477307, 1.432, 'Q1', 95, 36, 1202, 449, 132, '2', '1977-2020', 'Arts and Humanities (miscellaneous) (Q1); Law (Q1); Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)'), (2398, 'Communications in Analysis and Geometry', 10198385, 1.431, 'Q1', 46, 36, 1117, 173, 124, '2', '1996-2020', 'Analysis (Q1); Geometry and Topology (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (2399, 'Crime and Delinquency', 1552387, 1.431, 'Q1', 73, 134, 9178, 776, 232, '2', '1955-2020', 'Law (Q1); Pathology and Forensic Medicine (Q1)'), (2400, 'Journal of Neurodevelopmental Disorders', 18661947, 1.431, 'Q1', 45, 43, 2777, 485, 120, '3', '2009, 2012-2020', 'Cognitive Neuroscience (Q1); Neurology (clinical) (Q1); Pathology and Forensic Medicine (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (2401, 'Biochemistry', 15204995, 1.43, 'Q1', 253, 490, 24328, 5616, 1907, '2', '1962-2020', 'Biochemistry (Q1)'), (2402, 'Current Reviews in Musculoskeletal Medicine', 19359748, 1.43, 'Q1', 40, 86, 4915, 929, 211, '2', '2008-2020', 'Orthopedics and Sports Medicine (Q1)'), (2403, 'Interpreter and Translator Trainer, The', 1750399, 1.43, 'Q1', 19, 24, 1142, 141, 66, '3', '2007-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2404, 'Journal of Clinical Virology', 13866532, 1.43, 'Q1', 107, 301, 6885, 1395, 461, '16', '1998-2020', 'Infectious Diseases (Q1); Virology (Q2)'), (2405, 'Journal of Experimental Criminology', 15733750, 1.43, 'Q1', 50, 76, 4596, 303, 89, '16', '2005-2020', 'Law (Q1)'), (2406, 'Bailliere s Best Practice and Research in Cli', 15216918, 1.429, 'Q1', 92, 35, 2487, 621, 144, '3', '1999-2020', 'Gastroenterology (Q1)'), (2407, 'Journal of Applied Crystallography', 218898, 1.429, 'Q1', 162, 175, 6558, 2014, 552, '3', '1969-1971, 1983-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1)'), (2408, 'Journal of European Social Policy', 14617269, 1.429, 'Q1', 72, 49, 2424, 348, 110, '3', '1991-2020', 'Management, Monitoring, Policy and Law (Q1); Social Sciences (miscellaneous) (Q1)'), (2409, 'Journal of International Management', 10754253, 1.429, 'Q1', 69, 48, 4848, 443, 90, '2', '1998-2020', 'Business and International Management (Q1); Finance (Q1); Strategy and Management (Q1)'), (2410, 'Journal of the Geological Society', 2041479, 1.429, 'Q1', 114, 51, 4943, 911, 267, '3', '1845-1931, 1933-2020', 'Geology (Q1)'), (2411, 'Algebraic and Geometric Topology', 14722747, 1.428, 'Q1', 32, 93, 2411, 679, 325, '2', '2007-2020', 'Geometry and Topology (Q1)'), (2412, 'Journal of Developmental Biology', 22213759, 1.428, 'Q2', 16, 30, 3065, 218, 65, '19', '2013-2020', 'Cell Biology (Q2); Developmental Biology (Q2); Molecular Biology (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (2413, 'Pflugers Archiv European Journal of Physiolog', 316768, 1.428, 'Q1', 129, 147, 11084, 1490, 394, '5', '1950-1959, 1968-2020', 'Clinical Biochemistry (Q1); Physiology (Q1); Physiology (medical) (Q1)'), (2414, 'Annual Review of Linguistics', 23339683, 1.427, 'Q1', 18, 23, 2255, 214, 60, '2', '2015-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2415, 'Evolution, Medicine and Public Health', 20506201, 1.427, 'Q1', 22, 36, 1493, 137, 36, '3', '2013-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1)'), (2416, 'Mycosphere', 20777019, 1.427, 'Q1', 21, 11, 3589, 598, 188, '1', '2014-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (2417, 'World Journal of Gastroenterology', 10079327, 1.427, 'Q1', 155, 570, 32338, 9440, 1936, '1', '1998-2020', 'Gastroenterology (Q1); Medicine (miscellaneous) (Q1)'), (2418, 'European Journal of Information Systems', 960085, 1.426, 'Q1', 108, 62, 5339, 629, 102, '3', '1995-2020', 'Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1); Management Information Systems (Q1)'), (2419, 'Health Technology Assessment', 20464924, 1.426, 'Q1', 126, 75, 10499, 910, 226, '3', '1994-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1)'), (2420, 'Review of Managerial Science', 18636683, 1.426, 'Q1', 25, 96, 9266, 685, 119, '5', '2009-2020', 'Business, Management and Accounting (miscellaneous) (Q1)'), (2421, 'Journal of Social Policy', 14697823, 1.425, 'Q1', 64, 63, 3414, 365, 109, '3', '1976, 1978-1984, 1986-2020', 'Management, Monitoring, Policy and Law (Q1); Public Administration (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1)'), (2422, 'Meat Science', 3091740, 1.425, 'Q1', 165, 247, 11833, 4116, 773, '16', '1977-2021', 'Food Science (Q1)'), (2423, 'Journal of Sport Management', 1543270, 1.424, 'Q1', 67, 50, 3306, 482, 102, '2', '1996-2020', 'Decision Sciences (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Spor'), (2424, 'Molecular Therapy - Oncolytics', 23727705, 1.424, 'Q1', 23, 157, 7644, 867, 150, '3', '2014-2020', 'Molecular Medicine (Q1); Oncology (Q1); Pharmacology (medical) (Q1); Cancer Research (Q2)'), (2425, 'American Mineralogist', 3004, 1.423, 'Q1', 138, 175, 11547, 1805, 582, '2', '1968-1970, 1974, 1979, 1981-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (2426, 'Biomaterials Science', 20474849, 1.422, 'Q1', 64, 573, 36783, 6329, 994, '3', '2013-2020', 'Biomedical Engineering (Q1); Materials Science (miscellaneous) (Q1)'), (2427, 'Econometric Reviews', 7474938, 1.422, 'Q1', 55, 69, 2641, 324, 158, '2', '1982-1987, 1989-2020', 'Economics and Econometrics (Q1)'), (2428, 'System', 346251, 1.422, 'Q1', 77, 121, 6865, 1173, 301, '3', '1973-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2429, 'IEEE Transactions on Cognitive Communications', 23327731, 1.421, 'Q1', 25, 127, 4299, 1571, 162, '2', '2015-2020', 'Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Hardware and Architecture (Q1)'), (2430, 'Inorganic Chemistry Frontiers', 20521545, 1.421, 'Q1', 55, 412, 26651, 5955, 1001, '3', '2014-2020', 'Inorganic Chemistry (Q1)'), (2431, 'International Journal for Numerical Methods i', 295981, 1.421, 'Q1', 168, 265, 12139, 2846, 717, '3', '1969-2020', 'Applied Mathematics (Q1); Engineering (miscellaneous) (Q1); Numerical Analysis (Q1)'), (2432, 'Pharmaceutical Statistics', 15391612, 1.421, 'Q1', 38, 85, 2054, 340, 140, '3', '2004-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1); Statistics and Probability (Q1)'), (2433, 'Clinical and Molecular Hepatology', 22872728, 1.42, 'Q1', 38, 106, 5040, 598, 112, '13', '2012-2020', 'Medicine (miscellaneous) (Q1); Hepatology (Q2); Molecular Biology (Q2)'), (2434, 'European Heart Journal: Acute Cardiovascular ', 20488734, 1.42, 'Q1', 33, 6, 0, 627, 184, '3', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q1); Critical Care and Intensive Care Medicine (Q1); Medicine (miscellaneous) (Q1)'), (2435, 'Journal of Law and Economics', 15375285, 1.42, 'Q1', 81, 18, 883, 152, 72, '2', '1978-1989, 1996-2020', 'Economics and Econometrics (Q1); Law (Q1)'), (2436, 'South European Society and Politics', 13608746, 1.42, 'Q1', 39, 22, 1358, 272, 73, '3', '1996-2020', 'Sociology and Political Science (Q1)'), (2437, 'American Journal of Medical Genetics, Part C:', 15524876, 1.419, 'Q2', 101, 93, 6205, 898, 152, '2', '1977-1996, 1999-2020', 'Genetics (Q2); Genetics (clinical) (Q2)'), (2438, 'Environmental and Experimental Botany', 988472, 1.419, 'Q1', 131, 275, 20151, 4061, 735, '16', '1976-2020', 'Agronomy and Crop Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (2439, 'International Journal for Numerical and Analy', 3639061, 1.419, 'Q1', 91, 122, 5941, 1382, 327, '3', '1977-2020', 'Computational Mechanics (Q1); Geotechnical Engineering and Engineering Geology (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)'), (2440, 'Philosophers Imprint', 1533628, 1.419, 'Q1', 18, 33, 2065, 133, 98, '2', '2012-2020', 'Philosophy (Q1)'), (2441, 'Applied Mechanics Reviews', 36900, 1.418, 'Q1', 110, 12, 2777, 427, 55, '2', '1965, 1969-2011, 2013-2020', 'Mechanical Engineering (Q1)'), (2442, 'Astrodynamics', 25220098, 1.418, 'Q1', 7, 28, 761, 105, 27, '37', '2019-2020', 'Aerospace Engineering (Q1); Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (2443, 'Cerebellum', 14734230, 1.418, 'Q1', 72, 110, 6154, 1019, 277, '2', '2002-2020', 'Medicine (miscellaneous) (Q1); Neurology (Q1); Neurology (clinical) (Q1)'), (2444, 'Nutrients', 20726643, 1.418, 'Q1', 115, 3921, 251461, 37296, 6322, '19', '2009-2020', 'Food Science (Q1); Nutrition and Dietetics (Q1)'), (2445, 'Proceedings of the Nutrition Society', 296651, 1.418, 'Q1', 126, 162, 6566, 1038, 168, '3', '1944-1947, 1953, 1955-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (2446, 'Archives of Computational Methods in Engineer', 18861784, 1.417, 'Q1', 65, 166, 20050, 1060, 139, '16', '1994-2020', 'Applied Mathematics (Q1); Computer Science Applications (Q1)'), (2447, 'Regulation and Governance', 17485983, 1.417, 'Q1', 45, 119, 10004, 398, 103, '3', '2008-2020', 'Law (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (2448, 'LGBT Health', 23258306, 1.416, 'Q1', 32, 62, 2115, 691, 164, '2', '2014-2020', 'Dermatology (Q1); Obstetrics and Gynecology (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1); Urology (Q1)'), (2449, 'Psychology of Women Quarterly', 14716402, 1.416, 'Q1', 93, 35, 2654, 405, 98, '3', '1976-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Gender Studies (Q1); Psychology (miscellaneous) (Q1)'), (2450, 'American Journal of Drug and Alcohol Abuse', 10979891, 1.415, 'Q1', 72, 104, 4908, 845, 214, '2', '1974-1982, 1984-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (2451, 'Structural Dynamics', 23297778, 1.415, 'Q1', 29, 47, 2704, 574, 152, '2', '2014-2020', 'Condensed Matter Physics (Q1); Instrumentation (Q1); Radiation (Q1); Spectroscopy (Q1)'), (2452, 'BMC Geriatrics', 14712318, 1.414, 'Q1', 69, 533, 24303, 4204, 985, '3', '2001-2020', 'Geriatrics and Gerontology (Q1)'), (2453, 'Human Genomics', 14739542, 1.414, 'Q1', 55, 44, 2229, 598, 149, '3', '2003-2006, 2008-2020', 'Drug Discovery (Q1); Genetics (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)'), (2454, 'International Journal of Qualitative Methods,', 16094069, 1.414, 'Q1', 29, 135, 6574, 1333, 227, '2', '2012-2020', 'Education (Q1)'), (2455, 'Non-coding RNA Research', 24680540, 1.414, 'Q1', 15, 29, 1830, 341, 58, '1', '2016-2020', 'Biochemistry (Q1); Biochemistry (medical) (Q1); Genetics (Q2); Molecular Biology (Q2)'), (2456, 'Tree Physiology', 829318, 1.414, 'Q1', 130, 106, 6997, 1814, 458, '3', '1990-2020', 'Physiology (Q1); Plant Science (Q1)'), (2457, 'Frontiers in Genetics', 16648021, 1.413, 'Q2', 81, 1732, 104509, 9305, 2066, '19', '2010-2020', 'Genetics (Q2); Genetics (clinical) (Q2); Molecular Medicine (Q2)'), (2458, 'Ore Geology Reviews', 1691368, 1.413, 'Q1', 97, 558, 52477, 5534, 1297, '16', '1986-2020', 'Economic Geology (Q1); Geochemistry and Petrology (Q1); Geology (Q1)'), (2459, 'Psychology of Sport and Exercise', 14690292, 1.413, 'Q1', 91, 159, 9050, 1843, 401, '16', '2000-2020', 'Applied Psychology (Q1); Sports Science (Q1)'), (2460, 'Cognition and Emotion', 2699931, 1.412, 'Q1', 128, 153, 7066, 1267, 453, '3', '1987-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1)'), (2461, 'Current Opinion in Lipidology', 14736535, 1.412, 'Q1', 124, 62, 728, 816, 191, '2', '1990-2020', 'Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q1); Nutrition and Dietetics (Q1); Cell Biology (Q2); Genetics (Q2); Molecular Biology (Q2)'), (2462, 'Neurosurgical Focus', 10920684, 1.412, 'Q1', 97, 212, 6189, 2279, 590, '2', '2000-2020', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Surgery (Q1)'), (2463, 'Expert Opinion on Investigational Drugs', 13543784, 1.41, 'Q1', 104, 140, 11558, 1610, 321, '3', '1994-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (2464, 'Psycho-Oncology', 10579249, 1.41, 'Q1', 137, 283, 9485, 3411, 950, '3', '1992-2020', 'Experimental and Cognitive Psychology (Q1); Oncology (Q1); Psychiatry and Mental Health (Q1)'), (2465, 'Review of International Political Economy', 9692290, 1.41, 'Q1', 70, 152, 13607, 544, 132, '3', '1994-2020', 'Economics and Econometrics (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (2466, 'Current Protocols in Protein Science', 19343655, 1.409, 'Q1', 32, 15, 451, 209, 66, '2', '2001-2020', 'Biochemistry (Q1); Medicine (miscellaneous) (Q1); Structural Biology (Q2)'), (2467, 'Immunity and Ageing', 17424933, 1.409, 'Q2', 44, 39, 2685, 417, 82, '3', '2004-2020', 'Aging (Q2); Immunology (Q2)'), (2468, 'Bulletin of Mathematical Sciences', 16643607, 1.407, 'Q1', 21, 29, 890, 200, 46, '19', '2011-2020', 'Mathematics (miscellaneous) (Q1)'), (2469, 'Cellular and Molecular Biology Letters', 16891392, 1.407, 'Q1', 50, 43, 2850, 850, 161, '3', '1996-2020', 'Biochemistry (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (2470, 'Neurobiology of Sleep and Circadian Rhythms', 24519944, 1.407, 'Q1', 10, 11, 736, 181, 41, '2', '2016-2020', 'Behavioral Neuroscience (Q1); Neurology (Q1); Neurology (clinical) (Q1); Pulmonary and Respiratory Medicine (Q1)'), (2471, 'Thinking and Reasoning', 14640708, 1.407, 'Q1', 45, 30, 1911, 200, 65, '3', '1995, 2000-2020', 'Experimental and Cognitive Psychology (Q1); Philosophy (Q1); Psychology (miscellaneous) (Q1)'), (2472, 'Work, Aging and Retirement', 20544650, 1.407, 'Q1', 23, 27, 1432, 246, 79, '2', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Geriatrics and Gerontology (Q1); Industrial Relations (Q1); Life-span and Life-course Studies (Q1); Organizational Behavior and Human Resource'), (2473, 'Database : the journal of biological database', 17580463, 1.406, 'Q1', 62, 131, 4862, 1334, 394, '3', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Information Systems (Q1); Medicine (miscellaneous) (Q1)'), (2474, 'International Journal of Cardiology', 18741754, 1.406, 'Q1', 121, 890, 20275, 9848, 2780, '42', '1880, 1882, 1980-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (2475, 'Political Studies', 323217, 1.406, 'Q1', 83, 121, 7595, 549, 180, '3', '1953-2020', 'Sociology and Political Science (Q1)'), (2476, 'Psychological Inquiry', 15327965, 1.406, 'Q1', 84, 44, 2691, 232, 45, '2', '1990-1996, 1998-2020', 'Psychology (miscellaneous) (Q1)'), (2477, 'Insights into Imaging', 18694101, 1.405, 'Q1', 39, 128, 5862, 1456, 259, '5', '2012-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (2478, 'International Journal of Oncology', 17912423, 1.405, 'Q2', 122, 239, 15013, 5589, 1113, '39', '1993-2020', 'Cancer Research (Q2); Oncology (Q2)'), (2479, 'Neuromuscular Disorders', 18732364, 1.405, 'Q1', 99, 134, 4042, 1460, 431, '3', '1991-2020', 'Neurology (Q1); Neurology (clinical) (Q1); Pediatrics, Perinatology and Child Health (Q1); Genetics (clinical) (Q2)'), (2480, 'Anesthesia and Analgesia', 15267598, 1.404, 'Q1', 201, 769, 17223, 5550, 1370, '2', '1927, 1952, 1957-2020', 'Anesthesiology and Pain Medicine (Q1)'), (2481, 'British Journal of Criminology', 70955, 1.404, 'Q1', 94, 61, 3612, 691, 205, '3', '1960-2020', 'Arts and Humanities (miscellaneous) (Q1); Law (Q1); Pathology and Forensic Medicine (Q1); Social Psychology (Q1)'), (2482, 'Parasites and Vectors', 17563305, 1.404, 'Q1', 81, 618, 32711, 7361, 1902, '3', '2008-2020', 'Infectious Diseases (Q1); Parasitology (Q1)'), (2483, 'Seminars in Fetal and Neonatal Medicine', 18780946, 1.404, 'Q1', 88, 73, 4239, 832, 187, '3', '2004-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (2484, 'Analytica Chimica Acta', 32670, 1.403, 'Q1', 203, 897, 45034, 14014, 2228, '16', '1947-2020', 'Analytical Chemistry (Q1); Biochemistry (Q1); Environmental Chemistry (Q1); Spectroscopy (Q1)'), (2485, 'Cancer Medicine', 20457634, 1.403, 'Q1', 53, 878, 33659, 6949, 1604, '3', '2012-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Cancer Research (Q2); Oncology (Q2)'), (2486, 'CNS Neuroscience and Therapeutics', 17555949, 1.403, 'Q1', 69, 133, 6105, 1643, 329, '3', '2008-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1); Physiology (medical) (Q1); Psychiatry and Mental Health (Q1)'), (2487, 'INFORMS Journal on Computing', 10919856, 1.403, 'Q1', 80, 72, 2666, 411, 137, '2', '1996-2001, 2003-2020', 'Computer Science Applications (Q1); Information Systems (Q1); Management Science and Operations Research (Q1); Software (Q1)'), (2488, 'Land Degradation and Development', 1099145, 1.403, 'Q1', 81, 259, 15769, 3925, 805, '3', '1989-1990, 1992-2020', 'Development (Q1); Environmental Chemistry (Q1); Environmental Science (miscellaneous) (Q1); Soil Science (Q1)'), (2489, 'Nutrition and Diabetes', 20444052, 1.403, 'Q1', 38, 37, 1564, 711, 148, '3', '2011-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (2490, 'Plant Genome', 19403372, 1.403, 'Q1', 41, 63, 3804, 690, 161, '2', '2012-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1); Genetics (Q2)'), (2491, 'Polymer Chemistry', 17599954, 1.403, 'Q1', 117, 735, 41505, 10368, 1973, '3', '2010-2020', 'Biochemistry (Q1); Bioengineering (Q1); Biomedical Engineering (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)'), (2492, 'Clinical Colorectal Cancer', 15330028, 1.402, 'Q1', 49, 91, 2634, 1065, 274, '2', '2001-2020', 'Gastroenterology (Q1); Oncology (Q2)'), (2493, 'Structural and Multidisciplinary Optimization', 16151488, 1.402, 'Q1', 117, 336, 15234, 4120, 838, '5', '2000-2020', 'Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1); Software (Q1)'), (2494, 'Synthetic and Systems Biotechnology', 2405805, 1.402, 'Q1', 22, 46, 2828, 539, 96, '1', '2016-2020', 'Applied Microbiology and Biotechnology (Q1); Biomedical Engineering (Q1); Genetics (Q2); Structural Biology (Q2)'), (2495, 'Acta Obstetricia et Gynecologica Scandinavica', 16000412, 1.401, 'Q1', 102, 278, 7307, 1810, 491, '3', '1921-2020', 'Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)'), (2496, 'American Antiquity', 27316, 1.401, 'Q1', 76, 34, 2385, 301, 128, '2', '1935-2020', 'Archeology (Q1); Arts and Humanities (miscellaneous) (Q1); History (Q1); Museology (Q1)'), (2497, 'Evolutionary Anthropology', 15206505, 1.401, 'Q1', 85, 37, 2253, 294, 79, '2', '1992-2020', 'Anthropology (Q1); Medicine (miscellaneous) (Q1)'), (2498, 'Journal of Physical Chemistry C', 19327447, 1.401, 'Q1', 289, 2850, 153993, 41452, 9782, '2', '2007-2020', 'Electronic, Optical and Magnetic Materials (Q1); Energy (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q1); Physical and Theoretical Chemistry (Q1); Surfaces, Coatings and Films (Q1)'), (2499, 'Tribology International', 301679, 1.401, 'Q1', 120, 590, 23591, 7491, 1481, '3', '1972, 1974-2021', 'Mechanical Engineering (Q1); Mechanics of Materials (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)'), (2500, 'Applied Economic Perspectives and Policy', 20405804, 1.4, 'Q1', 49, 96, 4721, 334, 96, '3', '2010-2020', 'Development (Q1); Economics and Econometrics (Q1)'), (2501, 'Atmospheric Environment', 13522310, 1.4, 'Q1', 240, 609, 35523, 10479, 2034, '3', '1968-1989, 1994-2021', 'Atmospheric Science (Q1); Environmental Science (miscellaneous) (Q1)'), (2502, 'European Review of Agricultural Economics', 14643618, 1.4, 'Q1', 60, 56, 3204, 347, 91, '3', '1981-1982, 1986-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q1)'), (2503, 'Journal of Neurodegenerative Diseases', 20908601, 1.4, 'Q1', 3, 0, 0, 8, 1, '2', '2013-2014, 2016-2017', 'Neurology (clinical) (Q1); Neurology (Q2)'), (2504, 'Nurse Education Today', 15322793, 1.4, 'Q1', 78, 302, 10891, 3124, 732, '3', '1981-2020', 'Education (Q1); Nursing (miscellaneous) (Q1)'), (2505, 'Infectious Diseases and Therapy', 21938229, 1.399, 'Q1', 28, 76, 2704, 579, 125, '2', '2012-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1)'), (2506, 'Journal of Planning Literature', 8854122, 1.399, 'Q1', 57, 18, 2342, 182, 37, '2', '1985-2020', 'Geography, Planning and Development (Q1)'), (2507, 'Neonatology', 16617800, 1.399, 'Q1', 84, 84, 1889, 1167, 312, '19', '1959-1997, 2007-2020', 'Pediatrics, Perinatology and Child Health (Q1); Developmental Biology (Q2)'), (2508, 'Research and Practice for Persons with Severe', 15407969, 1.399, 'Q1', 46, 25, 698, 155, 56, '2', '1975-1980, 1986, 1988, 1992-2020', 'Health Professions (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Social Psychology (Q1)'), (2509, 'Review of Higher Education', 1625748, 1.399, 'Q1', 64, 27, 1758, 292, 125, '2', '1996-2020', 'Education (Q1)'), (2510, 'Fish and Shellfish Immunology', 10959947, 1.398, 'Q1', 122, 769, 43022, 10419, 2262, '2', '1991-2020', 'Aquatic Science (Q1); Environmental Chemistry (Q1); Medicine (miscellaneous) (Q1); Immunology (Q2); Immunology and Microbiology (miscellaneous) (Q2)'), (2511, 'Global Spine Journal', 21925682, 1.398, 'Q1', 26, 389, 12525, 1398, 379, '2', '2014-2020', 'Neurology (clinical) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (2512, 'Journal of Personal Selling and Sales Managem', 15577813, 1.398, 'Q1', 66, 30, 2382, 298, 64, '3', '1981-2020', 'Business and International Management (Q1); Human Factors and Ergonomics (Q1); Management of Technology and Innovation (Q1); Marketing (Q1)'), (2513, 'Obesity Facts', 16624025, 1.398, 'Q1', 45, 64, 2624, 862, 165, '19', '2008-2020', 'Health (social science) (Q1); Physiology (medical) (Q1)'), (2514, 'Population, Space and Place', 15448444, 1.398, 'Q1', 68, 116, 7509, 893, 234, '3', '2004-2020', 'Demography (Q1); Geography, Planning and Development (Q1)'), (2515, 'Australasian Journal of Educational Technolog', 14495554, 1.397, 'Q1', 48, 54, 2660, 782, 177, '11', '2008-2020', 'Education (Q1); E-learning (Q1)'), (2516, 'Catalysis Today', 9205861, 1.397, 'Q1', 211, 1163, 59962, 10740, 1638, '16', '1986-2020', 'Chemistry (miscellaneous) (Q1); Catalysis (Q2)'), (2517, 'Communications in Contemporary Mathematics', 17936683, 1.397, 'Q1', 48, 146, 4090, 568, 233, '37', '1999-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (2518, 'Fractional Calculus and Applied Analysis', 13110454, 1.397, 'Q1', 51, 88, 2739, 995, 229, '5', '2011-2020', 'Analysis (Q1); Applied Mathematics (Q1)'), (2519, 'Gerontology', 14230003, 1.397, 'Q1', 94, 73, 3145, 859, 186, '19', '1957-2020', 'Geriatrics and Gerontology (Q1); Aging (Q2)'), (2520, 'Journal of Educational Change', 13892843, 1.397, 'Q1', 35, 44, 2618, 217, 63, '16', '2005-2020', 'Education (Q1)'), (2521, 'Learning and Individual Differences', 18733425, 1.397, 'Q1', 81, 85, 6152, 1240, 363, '3', '1989-2000, 2002-2020', 'Developmental and Educational Psychology (Q1); Education (Q1); Social Psychology (Q1)'), (2522, 'Mitochondrion', 15677249, 1.397, 'Q2', 88, 122, 8724, 1088, 270, '16', '2001-2020', 'Cell Biology (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)'), (2523, 'Postharvest Biology and Technology', 9255214, 1.397, 'Q1', 140, 253, 12005, 3558, 628, '16', '1991-2021', 'Agronomy and Crop Science (Q1); Food Science (Q1); Horticulture (Q1)'), (2524, 'Research in Sports Medicine', 15438635, 1.397, 'Q1', 35, 74, 2657, 496, 136, '3', '2003-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (2525, 'Human Resources for Health', 14784491, 1.396, 'Q1', 60, 97, 4406, 884, 255, '3', '2003-2020', 'Public Administration (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2526, 'Neural Networks', 8936080, 1.396, 'Q1', 148, 373, 19774, 6106, 575, '3', '1988-2020', 'Artificial Intelligence (Q1); Cognitive Neuroscience (Q1)'), (2527, 'Addiction science &amp; clinical practice', 19400632, 1.395, 'Q1', 36, 32, 1359, 355, 102, '3', '2007-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (2528, 'Canadian Journal of Cardiology', 19167075, 1.395, 'Q1', 90, 342, 9052, 2482, 691, '9', '1985-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (2529, 'European Journal of Surgical Oncology', 15322157, 1.395, 'Q1', 99, 427, 13118, 3645, 897, '3', '1985-2020', 'Medicine (miscellaneous) (Q1); Surgery (Q1); Oncology (Q2)'), (2530, 'Focus on Autism and Other Developmental Disab', 10883576, 1.395, 'Q1', 68, 25, 902, 250, 75, '2', '1986-2020', 'Neurology (clinical) (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Cognitive Neuroscience (Q2); Neurology (Q2)'), (2531, 'International journal of oral science', 20493169, 1.395, 'Q1', 45, 38, 2742, 535, 95, '1', '2009-2020', 'Dentistry (miscellaneous) (Q1)'), (2532, 'School Psychology', 25784226, 1.395, 'Q1', 69, 41, 1424, 528, 154, '2', '2019-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (2533, 'American Journal of Cardiology', 29149, 1.394, 'Q1', 219, 663, 13423, 4980, 1853, '2', '1958-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (2534, 'American Journal of Nephrology', 14219670, 1.394, 'Q1', 85, 112, 3610, 1187, 351, '19', '1981-2020', 'Nephrology (Q1)'), (2535, 'International Journal of COPD', 11782005, 1.394, 'Q1', 67, 319, 12559, 3357, 1003, '41', '2006-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Pulmonary and Respiratory Medicine (Q1)'), (2536, 'Optics Express', 10944087, 1.394, 'Q1', 271, 3225, 116829, 42429, 9377, '2', '1997-2020', 'Atomic and Molecular Physics, and Optics (Q1)'), (2537, 'American Journal of Medical Genetics, Part B:', 15524841, 1.393, 'Q1', 126, 50, 3023, 685, 196, '2', '1993, 1995-2020', 'Psychiatry and Mental Health (Q1); Cellular and Molecular Neuroscience (Q2); Genetics (clinical) (Q2)'), (2538, 'Current Rheumatology Reports', 15346307, 1.393, 'Q1', 68, 88, 6971, 1076, 242, '2', '1999-2020', 'Rheumatology (Q1)'), (2539, 'European Urban and Regional Studies', 9697764, 1.393, 'Q1', 62, 32, 2039, 344, 83, '3', '1994-2020', 'Environmental Science (miscellaneous) (Q1); Urban Studies (Q1)'), (2540, 'Medical Decision Making', 1552681, 1.393, 'Q1', 103, 91, 3651, 709, 271, '2', '1981-2020', 'Health Policy (Q1)'), (2541, 'Weather and Forecasting', 15200434, 1.393, 'Q1', 106, 141, 7190, 1138, 320, '2', '1992-2020', 'Atmospheric Science (Q1)'), (2542, 'Aquatic Toxicology', 166445, 1.392, 'Q1', 140, 222, 13957, 3994, 791, '16', '1981-2020', 'Aquatic Science (Q1); Health, Toxicology and Mutagenesis (Q1)'), (2543, 'EPJ Quantum Technology', 21960763, 1.392, 'Q1', 24, 13, 645, 143, 22, '5', '2014-2020', 'Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (2544, 'Transboundary and Emerging Diseases', 18651674, 1.392, 'Q1', 63, 614, 26307, 3971, 825, '3', '2008-2020', 'Medicine (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q2)'), (2545, 'American Journal of Neuroradiology', 1956108, 1.391, 'Q1', 177, 457, 11193, 4312, 1090, '2', '1980-2020', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (2546, 'International Journal of Industrial Organizat', 1677187, 1.391, 'Q1', 84, 73, 2869, 409, 216, '2', '1983-2020', 'Aerospace Engineering (Q1); Economics and Econometrics (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Industrial Relations (Q1); Strateg'), (2547, 'Journal of Genetics and Genomics', 16738527, 1.391, 'Q2', 58, 73, 4288, 710, 143, '1', '2007-2020', 'Genetics (Q2); Molecular Biology (Q2)'), (2548, 'Physical Review A', 24699934, 1.391, 'Q1', 283, 2393, 120283, 35357, 7765, '2', '2015-2020', 'Atomic and Molecular Physics, and Optics (Q1)'), (2549, 'Hearing Research', 18785891, 1.389, 'Q2', 116, 142, 10348, 1914, 559, '16', '1978-2020', 'Sensory Systems (Q2)'), (2550, 'International Reviews in Physical Chemistry', 144235, 1.389, 'Q1', 85, 14, 2294, 195, 32, '3', '1981-1983, 1985-2020', 'Physical and Theoretical Chemistry (Q1)'), (2551, 'Virology', 426822, 1.389, 'Q2', 176, 163, 7807, 3052, 902, '2', '1944, 1955-2020', 'Virology (Q2)'), (2552, 'Frontiers in Medicine', 2296858, 1.388, 'Q1', 39, 997, 48238, 3988, 824, '19', '2014-2020', 'Medicine (miscellaneous) (Q1)'), (2553, 'Journal of Physics G: Nuclear and Particle Ph', 13616471, 1.388, 'Q1', 113, 197, 15012, 2334, 486, '3', '1980, 1989-2020', 'Nuclear and High Energy Physics (Q1)'), (2554, 'Philosophy and Public Affairs', 10884963, 1.388, 'Q1', 68, 17, 0, 74, 33, '3', '1973-1982, 1984-1986, 1988-2001, 2003-2020', 'History and Philosophy of Science (Q1); Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1)'), (2555, 'Indoor Air', 9056947, 1.387, 'Q1', 99, 117, 7177, 1752, 285, '25', '1991-2020', 'Building and Construction (Q1); Environmental Engineering (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2556, 'Journal of Animal Science and Biotechnology', 16749782, 1.387, 'Q1', 43, 108, 6523, 1500, 269, '3', '2012-2020', 'Animal Science and Zoology (Q1); Biochemistry (Q1); Biotechnology (Q1); Food Science (Q1)'), (2557, 'Journal of Manufacturing Processes', 15266125, 1.387, 'Q1', 53, 718, 28001, 6481, 1156, '16', '1999-2020', 'Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (2558, 'Therapeutic Advances in Musculoskeletal Disea', 1759720, 1.387, 'Q1', 35, 83, 5298, 365, 63, '2', '2009-2020', 'Orthopedics and Sports Medicine (Q1); Rheumatology (Q2)'), (2559, 'Best Practice and Research in Clinical Endocr', 1521690, 1.386, 'Q1', 109, 67, 5464, 837, 173, '3', '1999-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1)'), (2560, 'Experimental Hematology', 301472, 1.386, 'Q1', 119, 94, 5219, 818, 279, '2', '1973-2020', 'Hematology (Q1); Cancer Research (Q2); Cell Biology (Q2); Genetics (Q2); Molecular Biology (Q2)'), (2561, 'Journal of Sport and Health Science', 22132961, 1.386, 'Q1', 36, 138, 7126, 1155, 179, '16', '2012-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)'), (2562, 'Plant Cell Reports', 7217714, 1.386, 'Q1', 108, 144, 8497, 1866, 402, '5', '1981-2020', 'Agronomy and Crop Science (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1)'), (2563, 'Frontiers in Pharmacology', 16639812, 1.384, 'Q1', 86, 2224, 146755, 21508, 3857, '19', '2010-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1)'), (2564, 'Biofuel Research Journal', 22928782, 1.383, 'Q1', 28, 16, 1207, 400, 51, '9', '2014-2020', 'Biotechnology (Q1); Fuel Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (2565, 'British Journal of Sociology of Education', 14653346, 1.383, 'Q1', 74, 90, 4481, 609, 227, '3', '1980-2020', 'Education (Q1); Sociology and Political Science (Q1)'), (2566, 'Internet Research', 10662243, 1.382, 'Q1', 89, 88, 7827, 1495, 221, '3', '1991-2020', 'Communication (Q1); Economics and Econometrics (Q1); Sociology and Political Science (Q1)'), (2567, 'Journal of Cardiovascular Computed Tomography', 19345925, 1.382, 'Q1', 52, 193, 3086, 832, 225, '2', '2007-2020', 'Cardiology and Cardiovascular Medicine (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (2568, 'Phytobiomes Journal', 24712906, 1.382, 'Q1', 12, 33, 2646, 310, 71, '2', '2017-2020', 'Agronomy and Crop Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Molecular Biology (Q2)'), (2569, 'Mathematische Zeitschrift', 14328232, 1.38, 'Q1', 66, 284, 7554, 1026, 557, '5', '1918-1940, 1942-1944, 1947-2020', 'Mathematics (miscellaneous) (Q1)'), (2570, 'Ocean Modelling', 14635003, 1.38, 'Q1', 84, 81, 4981, 1000, 279, '16', '1988, 1994, 1999-2020', 'Atmospheric Science (Q1); Computer Science (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1); Oceanography (Q1)'), (2571, 'Science Communication', 15528545, 1.38, 'Q1', 58, 35, 1993, 419, 91, '2', '1979-2020', 'Sociology and Political Science (Q1)'), (2572, 'ACS Applied Electronic Materials', 26376113, 1.379, 'Q1', 4, 305, 15078, 24, 3, '2', '2020', 'Electrochemistry (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1)'), (2573, 'BMC Plant Biology', 14712229, 1.378, 'Q1', 114, 560, 34463, 5495, 1228, '3', '2001-2020', 'Plant Science (Q1)'), (2574, 'GCB Bioenergy', 17571693, 1.378, 'Q1', 63, 76, 4761, 1405, 277, '5', '2009-2020', 'Agronomy and Crop Science (Q1); Forestry (Q1); Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1)'), (2575, 'International Journal of Human Resource Manag', 9585192, 1.378, 'Q1', 114, 192, 16411, 2074, 451, '3', '1990-2020', 'Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (2576, 'Psychopharmacology', 333158, 1.378, 'Q1', 196, 307, 18421, 3364, 854, '5', '1959-2020', 'Pharmacology (Q1)'), (2577, 'Drug Safety', 1145916, 1.377, 'Q1', 124, 127, 5207, 1399, 314, '3', '1990-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1); Toxicology (Q1)'), (2578, 'Ecotoxicology and Environmental Safety', 1476513, 1.377, 'Q1', 129, 1312, 76306, 19395, 3079, '2', '1977-2021', 'Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Pollution (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2579, 'FEMS Microbiology Ecology', 1686496, 1.377, 'Q1', 155, 217, 16345, 2892, 645, '3', '1985-2020', 'Applied Microbiology and Biotechnology (Q1); Ecology (Q1); Microbiology (Q1)'), (2580, 'Innovation: Management, Policy and Practice', 14479338, 1.377, 'Q1', 30, 38, 2698, 300, 82, '3', '2008-2020', 'Management of Technology and Innovation (Q1)'), (2581, 'Organic Chemistry Frontiers', 20524110, 1.377, 'Q1', 56, 408, 27962, 6325, 1388, '3', '2014-2020', 'Organic Chemistry (Q1)'), (2582, 'Engineering', 20958099, 1.376, 'Q1', 45, 186, 9769, 3152, 324, '3', '2015-2020', 'Chemical Engineering (miscellaneous) (Q1); Computer Science (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Engineering (miscellaneous) (Q1); Environmental Engineering (Q1); Materi'), (2583, 'IEEE Transactions on Learning Technologies', 19391382, 1.376, 'Q1', 47, 68, 3888, 709, 124, '2', '2008-2020', 'Computer Science Applications (Q1); Education (Q1); E-learning (Q1); Engineering (miscellaneous) (Q1)'), (2584, 'International Journal of Neural Systems', 1290657, 1.376, 'Q1', 63, 86, 4800, 1031, 163, '37', '1993-1997, 1999-2020', 'Computer Networks and Communications (Q1); Medicine (miscellaneous) (Q1)'), (2585, 'Harm Reduction Journal', 14777517, 1.375, 'Q1', 50, 96, 4233, 900, 206, '3', '2004-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2586, 'Journal of Autism and Developmental Disorders', 15733432, 1.374, 'Q1', 175, 574, 30209, 4664, 1103, '2', '1979-2020', 'Developmental and Educational Psychology (Q1)'), (2587, 'Oncotarget', 19492553, 1.373, 'Q2', 127, 394, 16993, 50992, 12319, '2', '2010-2020', 'Oncology (Q2)'), (2588, 'Basic and Applied Ecology', 16180089, 1.372, 'Q1', 79, 65, 3982, 725, 190, '5', '2000-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (2589, 'IEEE Geoscience and Remote Sensing Letters', 1545598, 1.372, 'Q1', 114, 555, 8440, 6540, 1234, '2', '2004-2020', 'Electrical and Electronic Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (2590, 'IEEE Transactions on Microwave Theory and Tec', 15579670, 1.372, 'Q1', 190, 468, 14440, 6839, 1514, '2', '1963-2020', 'Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Radiation (Q1)'), (2591, 'Current Opinion in Ophthalmology', 10408738, 1.371, 'Q1', 86, 83, 2167, 986, 259, '2', '1990-2020', 'Medicine (miscellaneous) (Q1); Ophthalmology (Q1)'), (2592, 'Food Control', 9567135, 1.371, 'Q1', 125, 553, 24935, 9417, 1681, '16', '1990-2021', 'Biotechnology (Q1); Food Science (Q1)'), (2593, 'International Data Privacy Law', 20443994, 1.371, 'Q1', 20, 26, 1200, 285, 55, '2', '2011-2020', 'Law (Q1)'), (2594, 'Mediators of Inflammation', 9629351, 1.37, 'Q2', 97, 344, 16826, 4329, 903, '2', '1992-2020', 'Cell Biology (Q2); Immunology (Q2)'), (2595, 'Expert Systems with Applications', 9574174, 1.368, 'Q1', 207, 770, 42314, 17345, 1943, '3', '1990-2021', 'Artificial Intelligence (Q1); Computer Science Applications (Q1); Engineering (miscellaneous) (Q1)'), (2596, 'Nonlinear Differential Equations and Applicat', 10219722, 1.368, 'Q1', 42, 55, 1676, 393, 179, '19', '1994-2020', 'Analysis (Q1); Applied Mathematics (Q1)'), (2597, 'International Journal for Equity in Health', 14759276, 1.367, 'Q1', 55, 219, 10409, 2041, 601, '3', '2002-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2598, 'Journal of Experimental Biology', 14779145, 1.367, 'Q1', 185, 608, 17162, 4857, 1559, '3', '1945-1951, 1962-2020', 'Animal Science and Zoology (Q1); Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Medicine (miscellaneous) (Q1); Physiology (Q1); Molecular Biology (Q2)'), (2599, 'Journal of Orthopaedic and Sports Physical Th', 19381344, 1.367, 'Q1', 121, 113, 3023, 1308, 330, '2', '1979-2020', 'Medicine (miscellaneous) (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (2600, 'Biology of Reproduction', 63363, 1.366, 'Q1', 180, 247, 13593, 2449, 616, '2', '1969-2020', 'Medicine (miscellaneous) (Q1); Reproductive Medicine (Q1); Cell Biology (Q2)'), (2601, 'Innovative Food Science and Emerging Technolo', 14668564, 1.366, 'Q1', 110, 229, 11534, 3396, 561, '16', '2000-2020', 'Chemistry (miscellaneous) (Q1); Food Science (Q1); Industrial and Manufacturing Engineering (Q1)'), (2602, 'Journal of Manufacturing Science and Engineer', 10871357, 1.366, 'Q1', 98, 52, 3147, 2122, 595, '2', '1960-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)'), (2603, 'Journal of Neuromuscular Diseases', 22143599, 1.366, 'Q1', 23, 56, 2256, 563, 137, '16', '2014-2020', 'Neurology (clinical) (Q1); Neurology (Q2)'), (2604, 'European Management Journal', 2632373, 1.365, 'Q1', 102, 103, 9317, 1147, 208, '3', '1982-2020', 'Strategy and Management (Q1)'), (2605, 'IEEE Transactions on Vehicular Technology', 189545, 1.365, 'Q1', 178, 1427, 49867, 23276, 3060, '2', '1967-2020', 'Aerospace Engineering (Q1); Applied Mathematics (Q1); Automotive Engineering (Q1); Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1)'), (2606, 'Critical Studies in Education', 17508495, 1.364, 'Q1', 34, 62, 3307, 313, 100, '3', '2008-2020', 'Education (Q1)'), (2607, 'Biological Psychology', 19493, 1.363, 'Q1', 121, 122, 8061, 1620, 487, '16', '1973-2020', 'Neuropsychology and Physiological Psychology (Q1); Neuroscience (miscellaneous) (Q2)'), (2608, 'Conflict Management and Peace Science', 7388942, 1.363, 'Q1', 41, 52, 3477, 194, 104, '2', '1973, 1975-1986, 1988-1996, 1998-2020', 'Economics and Econometrics (Q1); Political Science and International Relations (Q1)'), (2609, 'Food Microbiology', 7400020, 1.363, 'Q1', 119, 238, 12365, 3713, 671, '2', '1984-2021', 'Food Science (Q1); Microbiology (Q1)'), (2610, 'Frontiers in Psychiatry', 16640640, 1.363, 'Q1', 67, 1556, 93982, 7267, 1740, '19', '2010-2020', 'Psychiatry and Mental Health (Q1)'), (2611, 'Journal of Cross-Cultural Psychology', 220221, 1.363, 'Q1', 109, 45, 2592, 655, 235, '2', '1970-2020', 'Anthropology (Q1); Cultural Studies (Q1); Social Psychology (Q1)'), (2612, 'Women s Health', 17455065, 1.363, 'Q1', 39, 47, 1948, 149, 38, '3', '2006-2020', 'Medicine (miscellaneous) (Q1)'), (2613, 'Biomedical Optics Express', 21567085, 1.362, 'Q1', 86, 497, 20950, 6105, 1362, '2', '2010-2020', 'Atomic and Molecular Physics, and Optics (Q1); Biotechnology (Q1)'), (2614, 'China Economic Review', 1043951, 1.361, 'Q1', 76, 184, 8316, 1318, 311, '16', '1989-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (2615, 'Infancy', 15327078, 1.361, 'Q1', 69, 49, 3024, 350, 142, '2', '2000-2020', 'Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (2616, 'International Journal of Robust and Nonlinear', 10498923, 1.361, 'Q1', 106, 488, 19069, 4590, 987, '3', '1991-2020', 'Aerospace Engineering (Q1); Biomedical Engineering (Q1); Chemical Engineering (miscellaneous) (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Industrial and Man'), (2617, 'IEEE Transactions on Knowledge and Data Engin', 10414347, 1.36, 'Q1', 174, 289, 8600, 5221, 540, '2', '1989-2020', 'Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Information Systems (Q1)'), (2618, 'Scandinavian Journal of Statistics', 14679469, 1.359, 'Q1', 65, 92, 3450, 252, 146, '3', '1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (2619, 'BMC Cancer', 14712407, 1.358, 'Q2', 129, 1205, 45155, 14037, 3423, '3', '2001-2020', 'Cancer Research (Q2); Genetics (Q2); Oncology (Q2)'), (2620, 'Journal of Gynecologic Oncology', 20050399, 1.358, 'Q1', 37, 95, 2438, 1077, 257, '13', '2009-2020', 'Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Oncology (Q2)'), (2621, 'Management Accounting Research', 10445005, 1.358, 'Q1', 88, 16, 1030, 191, 54, '2', '1990-2020', 'Accounting (Q1); Finance (Q1); Information Systems and Management (Q1)'), (2622, 'Statistics Surveys', 19357516, 1.358, 'Q1', 23, 3, 254, 54, 10, '2', '2007-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (2623, 'Allergy, Asthma and Immunology Research', 20927355, 1.356, 'Q1', 45, 151, 5101, 912, 205, '13', '2009-2020', 'Pulmonary and Respiratory Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (2624, 'Animal Nutrition', 24056383, 1.356, 'Q1', 28, 63, 3858, 1093, 180, '1', '2015-2020', 'Animal Science and Zoology (Q1); Food Animals (Q1)'), (2625, 'Genetics Selection Evolution', 999193, 1.356, 'Q1', 73, 68, 3921, 1016, 234, '3', '1989-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Medicine (miscellaneous) (Q1); Genetics (Q2)'), (2626, 'JMIR mHealth and uHealth', 22915222, 1.356, 'Q1', 50, 552, 25976, 5040, 899, '9', '2017-2020', 'Health Informatics (Q1)'), (2627, 'Journal of Veterinary Internal Medicine', 19391676, 1.356, 'Q1', 103, 301, 10974, 2170, 722, '2', '1987-2020', 'Medicine (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1)'), (2628, 'Caries Research', 86568, 1.355, 'Q1', 100, 51, 1657, 695, 195, '19', '1967-2020', 'Dentistry (miscellaneous) (Q1)'), (2629, 'Learning, Media and Technology', 17439892, 1.355, 'Q1', 44, 37, 1985, 416, 100, '3', '2005-2020', 'Education (Q1); Media Technology (Q1)'), (2630, 'Marine Policy', 308597, 1.355, 'Q1', 95, 477, 28589, 4368, 1095, '3', '1977-2020', 'Aquatic Science (Q1); Economics and Econometrics (Q1); Environmental Science (miscellaneous) (Q1); Law (Q1); Management, Monitoring, Policy and Law (Q1)'), (2631, 'Medical Teacher', 142159, 1.355, 'Q1', 109, 425, 8878, 2064, 624, '3', '1979-2020', 'Education (Q1); Medicine (miscellaneous) (Q1)'), (2632, 'Molecular Systems Design and Engineering', 20589689, 1.355, 'Q1', 23, 141, 9197, 1075, 225, '3', '2016-2020', 'Biomedical Engineering (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Industrial and Manufacturing Engineering (Q1); Mat'), (2633, 'Heart Failure Reviews', 15737322, 1.353, 'Q1', 80, 185, 13121, 1003, 230, '16', '1996-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (2634, 'Terra Nova', 13653121, 1.353, 'Q1', 89, 60, 2909, 447, 152, '3', '1989-2020', 'Geology (Q1)'), (2635, 'Toxicological Sciences', 10960929, 1.352, 'Q1', 183, 196, 11031, 3573, 789, '3', '1981-2020', 'Toxicology (Q1)'), (2636, 'Physiologia Plantarum', 319317, 1.351, 'Q1', 146, 243, 17077, 1761, 405, '3', '1948-2020', 'Medicine (miscellaneous) (Q1); Physiology (Q1); Plant Science (Q1); Cell Biology (Q2); Genetics (Q2)'), (2637, 'Genes and Immunity', 14664879, 1.35, 'Q2', 100, 42, 2610, 245, 95, '3', '1999-2017, 2019-2020', 'Genetics (Q2); Genetics (clinical) (Q2); Immunology (Q2)'), (2638, 'Journal of Cheminformatics', 17582946, 1.35, 'Q1', 55, 71, 4232, 1361, 201, '3', '2009-2020', 'Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1); Library and Information Sciences (Q1); Physical and Theoretical Chemistry (Q1)'), (2639, 'Neurobiology of Pain', 2452073, 1.35, 'Q1', 9, 17, 1553, 143, 35, '16', '2017-2020', 'Anesthesiology and Pain Medicine (Q1); Neurology (clinical) (Q1); Neuroscience (miscellaneous) (Q2)'), (2640, 'Plant Methods', 17464811, 1.35, 'Q1', 70, 146, 7422, 2061, 383, '3', '2005-2020', 'Biotechnology (Q1); Plant Science (Q1); Genetics (Q2)'), (2641, 'Materials and Structures/Materiaux et Constru', 13595997, 1.349, 'Q1', 100, 147, 5767, 1929, 519, '16', '1985-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)'), (2642, 'ICES Journal of Marine Science', 10959289, 1.348, 'Q1', 117, 250, 15388, 2169, 673, '3', '1903-1915, 1918, 1920, 1922-1939, 1947-1976, 1978-2020', 'Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Oceanography (Q1)'), (2643, 'Inorganic Chemistry', 201669, 1.348, 'Q1', 233, 1879, 111423, 25170, 5146, '2', '1962-2020', 'Chemistry (miscellaneous) (Q1); Inorganic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)'), (2644, 'Macromolecular Rapid Communications', 10221336, 1.348, 'Q1', 154, 300, 15578, 4161, 836, '5', '1994-2020', 'Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)'), (2645, 'BMJ Open Diabetes Research and Care', 20524897, 1.347, 'Q1', 28, 383, 13253, 960, 250, '3', '2015-2020', 'Endocrinology, Diabetes and Metabolism (Q1)'), (2646, 'Engineering Applications of Computational Flu', 1997003, 1.347, 'Q1', 34, 101, 4154, 1425, 171, '3', '2009, 2011-2020', 'Computer Science (miscellaneous) (Q1); Modeling and Simulation (Q1)'), (2647, 'Bone', 87563282, 1.346, 'Q1', 200, 420, 24005, 4238, 910, '2', '1985-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Histology (Q1); Physiology (Q1)'), (2648, 'Educational Technology Research and Developme', 10421629, 1.346, 'Q1', 90, 162, 11281, 926, 209, '2', '1957, 1989-2020', 'Education (Q1)'), (2649, 'European Journal of Neuroscience', 14609568, 1.346, 'Q2', 206, 453, 37330, 2653, 817, '3', '1989-2020', 'Neuroscience (miscellaneous) (Q2)'), (2650, 'Geomorphology', 169555, 1.346, 'Q1', 159, 398, 33022, 5052, 1105, '16', '1984, 1987-2020', 'Earth-Surface Processes (Q1)'), (2651, 'Journal of Biomolecular NMR', 15735001, 1.346, 'Q1', 106, 60, 3146, 533, 202, '16', '1991-2020', 'Biochemistry (Q1); Spectroscopy (Q1)'), (2652, 'Journal of Lightwave Technology', 15582213, 1.346, 'Q1', 200, 843, 25682, 11223, 2075, '2', '1983-2020', 'Atomic and Molecular Physics, and Optics (Q1)'), (2653, 'Maturitas', 3785122, 1.346, 'Q1', 105, 146, 5638, 2319, 475, '42', '1978-2021', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)'), (2654, 'Psychology of Violence', 21520828, 1.346, 'Q1', 42, 44, 1909, 827, 215, '2', '2010-2020', 'Applied Psychology (Q1); Health (social science) (Q1); Social Psychology (Q1)'), (2655, 'Elements', 18115209, 1.345, 'Q1', 85, 48, 700, 455, 120, '2', '1973, 2006-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geochemistry and Petrology (Q1)'), (2656, 'JNCI Cancer Spectrum', 25155091, 1.345, 'Q2', 10, 76, 2575, 249, 86, '2', '2017-2020', 'Cancer Research (Q2); Oncology (Q2)'), (2657, 'Journal of Neurogastroenterology and Motility', 20930887, 1.345, 'Q1', 42, 71, 2413, 810, 187, '13', '2011-2020', 'Gastroenterology (Q1); Neurology (clinical) (Q1)'), (2658, 'Business Ethics', 9628770, 1.343, 'Q1', 35, 68, 5667, 579, 92, '3', '1992-1995, 1997, 1999, 2001, 2008, 2010-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1)'), (2659, 'European Journal of General Practice', 13814788, 1.343, 'Q1', 30, 35, 774, 458, 103, '3', '1995-2020', 'Family Practice (Q1); Medicine (miscellaneous) (Q1)'), (2660, 'Journal of the American Academy of Orthopaedi', 19405480, 1.343, 'Q1', 111, 282, 1360, 1682, 552, '2', '1998-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (2661, 'Regional Science and Urban Economics', 18792308, 1.343, 'Q1', 79, 84, 3483, 606, 235, '16', '1973-2020', 'Economics and Econometrics (Q1); Urban Studies (Q1)'), (2662, 'Translational Oncology', 19365233, 1.343, 'Q2', 52, 178, 8645, 1835, 449, '2', '2008-2020', 'Cancer Research (Q2); Oncology (Q2)'), (2663, 'Journal of Research on Adolescence', 10508392, 1.342, 'Q1', 95, 111, 7054, 556, 193, '3', '1993, 1996-2020', 'Behavioral Neuroscience (Q1); Cultural Studies (Q1); Developmental and Educational Psychology (Q1); Social Sciences (miscellaneous) (Q1)'), (2664, 'Publications of the Astronomical Society of A', 13233580, 1.342, 'Q1', 74, 54, 4455, 679, 77, '3', '1996-2020', 'Astronomy and Astrophysics (Q1); Space and Planetary Science (Q1)'), (2665, 'Health and Place', 13538292, 1.341, 'Q1', 109, 174, 10877, 2110, 444, '3', '1995-2020', 'Geography, Planning and Development (Q1); Health (social science) (Q1); Life-span and Life-course Studies (Q1); Public Health, Environmental and Occupational Health (Q1); Sociology and Political Scien'), (2666, 'Journal of the International Society of Sport', 15502783, 1.341, 'Q1', 49, 61, 2823, 918, 163, '3', '2007-2020', 'Food Science (Q1); Nutrition and Dietetics (Q1); Sports Science (Q1)'), (2667, 'ESAIM: Mathematical Modelling and Numerical A', 764583, 1.34, 'Q1', 73, 76, 3076, 677, 243, '8', '1996-2020', 'Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1); Modeling and Simulation (Q1); Numerical Analysis (Q1)'), (2668, 'Minerva Urologica e Nefrologica', 18271758, 1.34, 'Q1', 29, 91, 3024, 677, 219, '7', '1984-2020', 'Nephrology (Q1); Urology (Q1)'), (2669, 'Environmental Evidence', 20472382, 1.339, 'Q1', 28, 30, 1607, 356, 94, '3', '2011-2020', 'Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1)'), (2670, 'Finance Research Letters', 15446131, 1.339, 'Q1', 39, 442, 11373, 2909, 566, '16', '2004-2020', 'Finance (Q1)'), (2671, 'International Journal of Central Banking', 18154654, 1.339, 'Q1', 32, 39, 2029, 210, 126, '5', '2010-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (2672, 'Policy and Politics', 3055736, 1.339, 'Q1', 54, 35, 2416, 432, 104, '3', '1979-2020', 'Management, Monitoring, Policy and Law (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (2673, 'Clinical Implant Dentistry and Related Resear', 15230899, 1.338, 'Q1', 85, 87, 3224, 1402, 395, '2', '1999-2020', 'Dentistry (miscellaneous) (Q1); Oral Surgery (Q1)'), (2674, 'IEEE Transactions on Transportation Electrifi', 23327782, 1.338, 'Q1', 43, 221, 5940, 2100, 273, '2', '2015-2020', 'Automotive Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Transportation (Q1)'), (2675, 'International Entrepreneurship and Management', 15547191, 1.338, 'Q1', 55, 108, 9940, 1098, 172, '2', '2006-2020', 'Management Information Systems (Q1); Management of Technology and Innovation (Q1)'), (2676, 'Journal of Cancer Research and Clinical Oncol', 1715216, 1.338, 'Q1', 94, 314, 13265, 3200, 761, '5', '1979-2020', 'Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)'), (2677, 'Nicotine and Tobacco Research', 1469994, 1.338, 'Q1', 113, 301, 10880, 2369, 672, '3', '1999-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (2678, 'Genes', 20734425, 1.337, 'Q2', 51, 1533, 106545, 8524, 2049, '19', '2010-2020', 'Genetics (Q2); Genetics (clinical) (Q2)'), (2679, 'Hernia : the journal of hernias and abdominal', 12654906, 1.337, 'Q1', 72, 300, 6699, 1268, 366, '8', '1999-2020', 'Surgery (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (2680, 'IEEE Electron Device Letters', 7413106, 1.337, 'Q1', 154, 420, 9773, 5830, 1281, '2', '1980-2020', 'Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (2681, 'Solar Energy', 38092, 1.337, 'Q1', 181, 1161, 59226, 17672, 2963, '3', '1957-2020', 'Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (2682, 'Accounting and Business Research', 21594260, 1.336, 'Q1', 55, 46, 2764, 387, 104, '3', '1970-2020', 'Accounting (Q1)'), (2683, 'Clinical and Translational Radiation Oncology', 24056308, 1.336, 'Q1', 15, 102, 3233, 766, 188, '42', '2016-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (2684, 'Marine and Petroleum Geology', 2648172, 1.336, 'Q1', 116, 624, 49950, 5823, 1229, '16', '1984-2020', 'Economic Geology (Q1); Geology (Q1); Geophysics (Q1); Oceanography (Q1); Stratigraphy (Q1)'), (2685, 'American Journal of Physiology - Renal Physio', 1931857, 1.335, 'Q1', 169, 249, 12529, 2794, 820, '2', '1992-2020', 'Physiology (Q1); Urology (Q1)'), (2686, 'Pathology', 14653931, 1.335, 'Q1', 64, 163, 4678, 1151, 237, '2', '1900, 1969-2020', 'Pathology and Forensic Medicine (Q1)'), (2687, 'Sleep Medicine', 18785506, 1.335, 'Q1', 122, 466, 17844, 3251, 838, '16', '2000-2020', 'Medicine (miscellaneous) (Q1)'), (2688, 'Environmental Chemistry Letters', 16103653, 1.334, 'Q1', 64, 186, 18403, 2740, 321, '5', '2003-2020', 'Environmental Chemistry (Q1)'), (2689, 'Journal of Psychopharmacology', 14617285, 1.333, 'Q1', 114, 153, 10164, 1721, 429, '3', '1987-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)'), (2690, 'Gene Therapy', 9697128, 1.332, 'Q2', 159, 94, 4050, 845, 195, '3', '1994-2020', 'Genetics (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)'), (2691, 'Infectious Disease Modelling', 24680427, 1.332, 'Q1', 17, 74, 2343, 427, 73, '1', '2016-2020', 'Applied Mathematics (Q1); Health Policy (Q1); Infectious Diseases (Q1)'), (2692, 'Global Health Action', 16549716, 1.331, 'Q1', 47, 143, 5965, 1304, 419, '3', '2009-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2693, 'Gut and Liver', 19762283, 1.331, 'Q1', 44, 105, 3940, 1084, 255, '13', '2009-2020', 'Gastroenterology (Q1); Hepatology (Q2)'), (2694, 'Production Planning and Control', 9537287, 1.331, 'Q1', 76, 219, 19945, 2095, 278, '3', '1990-2020', 'Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1)'), (2695, 'Thin-Walled Structures', 2638231, 1.331, 'Q1', 92, 589, 26347, 7091, 1426, '3', '1983-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanical Engineering (Q1)'), (2696, 'Advances in Clinical Chemistry', 652423, 1.33, 'Q1', 46, 59, 10307, 495, 18, '2', '1958-1973, 1975-1978, 1980-1981, 1983, 1985-1987, 1989-1990, 1992-1994, 1996, 1998-2001, 2003-2020', 'Chemistry (miscellaneous) (Q1); Clinical Biochemistry (Q1)'), (2697, 'Archives of Orthopaedic and Trauma Surgery', 14343916, 1.33, 'Q1', 78, 373, 12383, 1907, 635, '5', '1989-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (2698, 'CBE Life Sciences Education', 19317913, 1.33, 'Q1', 67, 83, 5010, 960, 247, '2', '2006-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Education (Q1)'), (2699, 'International Journal of Mechanical Sciences', 207403, 1.33, 'Q1', 111, 621, 30326, 9388, 1675, '3', '1960-2020', 'Civil and Structural Engineering (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (2700, 'Journal of Mathematical Behavior', 7323123, 1.33, 'Q1', 45, 53, 2818, 288, 166, '2', '1994-2020', 'Applied Mathematics (Q1); Applied Psychology (Q1); Education (Q1)'), (2701, 'Papillomavirus Research', 24058521, 1.33, 'Q1', 19, 18, 616, 513, 134, '16', '2015-2020', 'Infectious Diseases (Q1); Virology (Q2)'), (2702, 'Theoretical Criminology', 14617439, 1.33, 'Q1', 73, 55, 3943, 275, 93, '3', '1997-2020', 'Law (Q1); Pathology and Forensic Medicine (Q1); Sociology and Political Science (Q1)'), (2703, 'Clinical and Experimental Immunology', 99104, 1.329, 'Q2', 135, 130, 6847, 1892, 453, '3', '1966-2020', 'Immunology (Q2); Immunology and Allergy (Q2)'), (2704, 'European Journal of Cell Biology', 16181298, 1.329, 'Q1', 97, 37, 3368, 488, 134, '5', '1979-2020', 'Histology (Q1); Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)'), (2705, 'Geothermics', 3756505, 1.329, 'Q1', 71, 175, 9029, 1823, 387, '3', '1970, 1972-1975, 1977-2021', 'Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (2706, 'International Communications in Heat and Mass', 7351933, 1.329, 'Q1', 110, 494, 19727, 3246, 600, '3', '1983-2020', 'Atomic and Molecular Physics, and Optics (Q1); Chemical Engineering (miscellaneous) (Q1); Condensed Matter Physics (Q1)'), (2707, 'Journal of Cell Communication and Signaling', 1873961, 1.329, 'Q1', 44, 45, 2106, 667, 159, '16', '2007-2020', 'Biochemistry (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (2708, 'Journal of Clinical Lipidology', 19332874, 1.329, 'Q1', 56, 109, 2996, 1564, 431, '16', '1970, 2007-2020', 'Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Nutrition and Dietetics (Q1)'), (2709, 'Journal of Viral Hepatitis', 13520504, 1.329, 'Q1', 100, 177, 5777, 1730, 505, '3', '1994-2020', 'Infectious Diseases (Q1); Hepatology (Q2); Virology (Q2)'), (2710, 'Methods in Cell Biology', 91679, 1.329, 'Q2', 79, 109, 4470, 517, 75, '2', '1964, 1966, 1969-1970, 1972-1978, 1980-1982, 1986-1991, 1993-2004, 2007-2020', 'Cell Biology (Q2)'), (2711, 'Molecular Genetics and Metabolism', 10967206, 1.329, 'Q1', 106, 127, 5531, 1842, 417, '2', '1998-2020', 'Biochemistry (Q1); Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Genetics (Q2); Molecular Biology (Q2)'), (2712, 'Movement Ecology', 20513933, 1.329, 'Q1', 31, 45, 3383, 313, 87, '3', '2013-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (2713, 'Orthopaedic Journal of Sports Medicine', 23259671, 1.329, 'Q1', 35, 426, 14481, 2751, 931, '2', '2013-2020', 'Orthopedics and Sports Medicine (Q1)'), (2714, 'Research in Microbiology', 9232508, 1.329, 'Q1', 103, 44, 1971, 916, 209, '8', '1987-2020', 'Medicine (miscellaneous) (Q1); Microbiology (Q1); Molecular Biology (Q2)'), (2715, 'IEEE Antennas and Wireless Propagation Letter', 15361225, 1.328, 'Q1', 117, 515, 10688, 9531, 1916, '2', '2002-2020', 'Electrical and Electronic Engineering (Q1)'), (2716, 'Integrative and Comparative Biology', 15577023, 1.328, 'Q1', 123, 122, 9160, 1114, 376, '3', '1961-2020', 'Animal Science and Zoology (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1)'), (2717, 'Journal of Choice Modelling', 17555345, 1.328, 'Q1', 26, 26, 1282, 290, 87, '16', '2008-2020', 'Modeling and Simulation (Q1); Statistics, Probability and Uncertainty (Q1)'), (2718, 'Journal of the Energy Institute', 17460220, 1.328, 'Q1', 41, 233, 11001, 2374, 382, '3', '2004-2020', 'Condensed Matter Physics (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Renewable Energy, S'), (2719, 'Oecologia', 298519, 1.328, 'Q1', 195, 239, 16373, 2414, 797, '5', '1968-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (2720, 'Personality and Individual Differences', 1918869, 1.328, 'Q1', 167, 493, 23103, 5776, 1782, '3', '1980-2021', 'Psychology (miscellaneous) (Q1)'), (2721, 'Planning Theory and Practice', 14649357, 1.328, 'Q1', 44, 47, 2286, 282, 84, '3', '2000-2020', 'Geography, Planning and Development (Q1)'), (2722, 'Plasma Physics and Controlled Fusion', 13616587, 1.328, 'Q1', 111, 316, 13592, 2717, 870, '3', '1974, 1984-2020', 'Condensed Matter Physics (Q1); Nuclear Energy and Engineering (Q1)'), (2723, 'Journal of Bridge Engineering', 10840702, 1.326, 'Q1', 71, 141, 5056, 1695, 512, '2', '1996-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1)'), (2724, 'Assessing Writing', 10752935, 1.325, 'Q1', 36, 34, 1338, 210, 76, '3', '1994-2000, 2002-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2725, 'International Journal of Medical Microbiology', 14384221, 1.325, 'Q1', 94, 56, 3412, 894, 251, '5', '2000-2020', 'Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q1); Microbiology (medical) (Q1)'), (2726, 'Women s Health Issues', 10493867, 1.325, 'Q1', 58, 68, 2785, 761, 250, '2', '1990-2020', 'Health (social science) (Q1); Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2727, 'Academic Pediatrics', 18762859, 1.324, 'Q1', 75, 225, 6023, 1340, 381, '2', '2009-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (2728, 'ACS Infectious Diseases', 23738227, 1.324, 'Q1', 39, 317, 14931, 2185, 477, '2', '2015-2020', 'Infectious Diseases (Q1)'), (2729, 'Finite Fields and Their Applications', 10715797, 1.324, 'Q1', 49, 117, 2404, 812, 319, '2', '1995-2020', 'Algebra and Number Theory (Q1); Applied Mathematics (Q1); Engineering (miscellaneous) (Q1); Theoretical Computer Science (Q1)'), (2730, 'Memory and Cognition', 90502, 1.324, 'Q1', 124, 135, 7019, 701, 313, '2', '1973-2020', 'Arts and Humanities (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1); Neuropsychology and Physiological Psychology (Q1)'), (2731, 'Nuclear Materials and Energy', 23521791, 1.324, 'Q1', 25, 134, 4562, 1412, 569, '3', '2015-2020', 'Materials Science (miscellaneous) (Q1); Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1)'), (2732, 'Psychotherapy Research', 10503307, 1.324, 'Q1', 74, 126, 7295, 694, 211, '2', '1975, 1988, 1991-2020', 'Clinical Psychology (Q1)'), (2733, 'Second Language Research', 14770326, 1.324, 'Q1', 58, 72, 3365, 208, 74, '3', '1985-2020', 'Education (Q1); Linguistics and Language (Q1)'), (2734, 'Biomedicine and Pharmacotherapy', 7533322, 1.323, 'Q1', 92, 1311, 81223, 28759, 4836, '8', '1982-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (Q1)'), (2735, 'Microbial Cell Factories', 14752859, 1.323, 'Q1', 99, 217, 12305, 3468, 639, '3', '2002-2020', 'Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biotechnology (Q1)'), (2736, 'Population Health Metrics', 14787954, 1.323, 'Q1', 54, 30, 1126, 298, 80, '3', '2003-2020', 'Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2)'), (2737, 'Security Studies', 15561852, 1.323, 'Q1', 48, 32, 167, 175, 80, '3', '1991-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (2738, 'Cancer Cell International', 14752867, 1.322, 'Q2', 56, 579, 25698, 3415, 675, '3', '2001-2020', 'Cancer Research (Q2); Genetics (Q2); Oncology (Q2)'), (2739, 'Cognitive Therapy and Research', 1475916, 1.322, 'Q1', 99, 126, 7453, 696, 243, '2', '1977-2020', 'Clinical Psychology (Q1); Experimental and Cognitive Psychology (Q1)'), (2740, 'Electoral Studies', 2613794, 1.322, 'Q1', 68, 88, 4981, 609, 276, '3', '1982-2020', 'Political Science and International Relations (Q1)'), (2741, 'Molecular Diagnosis and Therapy', 11771062, 1.322, 'Q1', 42, 62, 4016, 713, 183, '3', '2001, 2004, 2006-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (Q1); Genetics (Q2); Molecular Medicine (Q2)'), (2742, 'European Journal of Nutrition', 14366215, 1.321, 'Q1', 96, 391, 20138, 4003, 763, '5', '1996-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (2743, 'Hematology / the Education Program of the Ame', 15204383, 1.321, 'Q1', 91, 93, 3982, 839, 257, '2', '2001-2019', 'Hematology (Q1)'), (2744, 'Journal of Intelligent Transportation Systems', 15472450, 1.321, 'Q1', 47, 77, 3347, 632, 129, '3', '2004-2020', 'Aerospace Engineering (Q1); Applied Mathematics (Q1); Automotive Engineering (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Information Systems (Q1); Software (Q1)'), (2745, 'Judgment and Decision Making', 19302975, 1.321, 'Q1', 56, 74, 3677, 420, 169, '2', '2008-2020', 'Applied Psychology (Q1); Decision Sciences (miscellaneous) (Q1); Economics and Econometrics (Q1)'), (2746, 'Ocean Engineering', 298018, 1.321, 'Q1', 100, 1216, 51177, 10979, 2469, '3', '1968-2020', 'Environmental Engineering (Q1); Ocean Engineering (Q1)'), (2747, 'Cell Cycle', 15384101, 1.32, 'Q1', 150, 288, 13336, 3077, 700, '2', '2002-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2); Developmental Biology (Q2); Molecular Biology (Q2)'), (2748, 'Frontiers in Physiology', 1664042, 1.32, 'Q2', 102, 1767, 122217, 19350, 4334, '19', '2010-2020', 'Physiology (Q2); Physiology (medical) (Q2)'), (2749, 'Meteorological Monographs', 659401, 1.32, 'Q1', 3, 0, 0, 26, 7, '2', '2018', 'Atmospheric Science (Q1); Oceanography (Q1)'), (2750, 'Cochrane Database of Systematic Reviews', 13616137, 1.319, 'Q1', 273, 914, 95728, 11693, 3289, '3', '1998-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)'), (2751, 'Computer Physics Communications', 104655, 1.319, 'Q1', 195, 262, 12990, 5077, 812, '16', '1969-2021', 'Hardware and Architecture (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (2752, 'Apoptosis : an international journal on progr', 13608185, 1.318, 'Q1', 110, 68, 3690, 1222, 251, '16', '1996-2020', 'Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Pharmaceutical Science (Q1); Pharmacology (Q1); Cancer Research (Q2); Cell Biology (Q2)'), (2753, 'Journal of Pediatric Orthopaedics', 15392570, 1.318, 'Q1', 96, 255, 4624, 1459, 724, '2', '1981-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (2754, 'Population Studies', 82805, 1.318, 'Q1', 62, 35, 2260, 165, 80, '2', '1947-2020', 'Demography (Q1); History (Q1)'), (2755, 'Psychoanalytic Quarterly', 332828, 1.318, 'Q1', 39, 33, 1091, 46, 76, '3', '1945-2020', 'Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (2756, 'Frontiers in Ecology and Evolution', 2296701, 1.317, 'Q1', 33, 474, 38532, 2830, 816, '19', '2013-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (2757, 'Indiana University Mathematics Journal', 222518, 1.317, 'Q1', 69, 68, 1925, 358, 185, '2', '1970-1972, 1974-1978, 1980, 1995-2020', 'Mathematics (miscellaneous) (Q1)'), (2758, 'Journal of Asian Earth Sciences', 18785786, 1.317, 'Q1', 125, 347, 30668, 4424, 1177, '3', '1997-2020', 'Earth-Surface Processes (Q1); Geology (Q1)'), (2759, 'Journal of International Financial Markets, I', 10424431, 1.317, 'Q1', 58, 62, 3630, 1167, 260, '16', '1997-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (2760, 'Cytometry. Part A : the journal of the Intern', 15524922, 1.316, 'Q1', 90, 167, 6288, 1220, 303, '2', '2003-2020', 'Histology (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2)'), (2761, 'Expert Opinion on Drug Discovery', 1746045, 1.316, 'Q1', 61, 130, 13242, 1685, 266, '3', '2006-2020', 'Drug Discovery (Q1)'), (2762, 'Journal of Environmental Sciences', 10010742, 1.316, 'Q1', 99, 329, 17571, 5975, 1001, '1', '1970, 1972-1973, 1978-1985, 1993, 1995-2021', 'Environmental Chemistry (Q1); Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (2763, 'Journal of Materials Chemistry B', 2050750, 1.316, 'Q1', 101, 1014, 63314, 14164, 2430, '3', '2013-2020', 'Biomedical Engineering (Q1); Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (2764, 'Respiratory Medicine', 9546111, 1.316, 'Q1', 120, 249, 9077, 2528, 721, '3', '1989-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (2765, 'Vaccine: X', 25901362, 1.316, 'Q1', 6, 21, 729, 109, 37, '3', '2019-2020', 'Infectious Diseases (Q1); Public Health, Environmental and Occupational Health (Q1); Veterinary (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q2); Molecular Medicine (Q2)'), (2766, 'Clinical Psychology and Psychotherapy', 10633995, 1.315, 'Q1', 76, 116, 7335, 973, 288, '3', '1993-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1)'), (2767, 'Computers and Industrial Engineering', 3608352, 1.315, 'Q1', 128, 641, 31833, 9597, 1557, '3', '1976-2020', 'Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)'), (2768, 'Ecological Indicators', 1470160, 1.315, 'Q1', 127, 1074, 74155, 12850, 2408, '16', '2001-2021', 'Decision Sciences (miscellaneous) (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (2769, 'Genes, Brain and Behavior', 1601183, 1.315, 'Q1', 91, 83, 6388, 725, 226, '3', '2002-2020', 'Behavioral Neuroscience (Q1); Genetics (Q2); Neurology (Q2)'), (2770, 'International Journal of Surgery', 17439191, 1.315, 'Q1', 61, 698, 12301, 4685, 959, '16', '2003-2020', 'Medicine (miscellaneous) (Q1); Surgery (Q1)'), (2771, 'Journal of Immunology Research', 23147156, 1.315, 'Q1', 83, 291, 16112, 3462, 775, '32', '2014-2020', 'Medicine (miscellaneous) (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (2772, 'Journal of Sound and Vibration', 10958568, 1.315, 'Q1', 181, 512, 19998, 7540, 1714, '2', '1964-2020', 'Acoustics and Ultrasonics (Q1); Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (2773, 'Advances in Water Resources', 3091708, 1.314, 'Q1', 138, 233, 14553, 3413, 699, '3', '1977-2020', 'Water Science and Technology (Q1)'), (2774, 'Health Expectations', 13696513, 1.314, 'Q1', 74, 174, 7953, 1520, 388, '3', '1999-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (2775, 'IEEE Transactions on Automation Science and E', 15455955, 1.314, 'Q1', 87, 249, 7126, 3014, 464, '2', '2004-2020', 'Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (2776, 'Random Structures and Algorithms', 10429832, 1.314, 'Q1', 69, 93, 2613, 440, 174, '3', '1990-2020', 'Applied Mathematics (Q1); Computer Graphics and Computer-Aided Design (Q1); Mathematics (miscellaneous) (Q1); Software (Q1)'), (2777, 'Journal of Personality Assessment', 15327752, 1.313, 'Q1', 99, 121, 6583, 572, 186, '2', '1971-2020', 'Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Health, Toxicology and Mutagenesis (Q1); Psychiatry and Mental Health (Q1)'), (2778, 'Public Administration', 14679299, 1.313, 'Q1', 93, 89, 5445, 599, 190, '3', '1923-2020', 'Public Administration (Q1); Sociology and Political Science (Q1)'), (2779, 'Sustainable Materials and Technologies', 22149937, 1.313, 'Q1', 23, 99, 7476, 771, 98, '16', '2014-2020', 'Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1); Waste Management and Disposal (Q1)'), (2780, 'Current Nutrition Reports', 21613311, 1.312, 'Q1', 28, 41, 2920, 506, 110, '2', '2012-2020', 'Food Science (Q1); Nutrition and Dietetics (Q1)'), (2781, 'Government and Opposition', 17257, 1.312, 'Q1', 49, 60, 3877, 232, 87, '3', '1965-2020', 'Public Administration (Q1); Sociology and Political Science (Q1)'), (2782, 'International Journal of Advertising', 17593948, 1.312, 'Q1', 62, 114, 7723, 851, 155, '3', '1982-2020', 'Communication (Q1); Marketing (Q1)'), (2783, 'Physics in Medicine and Biology', 319155, 1.312, 'Q1', 191, 535, 24194, 6940, 1787, '3', '1956-2020', 'Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (2784, 'Advanced Nonlinear Studies', 21690375, 1.311, 'Q1', 36, 53, 1591, 262, 130, '5', '2001-2020', 'Mathematics (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)'), (2785, 'Behavioral Research in Accounting', 15588009, 1.311, 'Q1', 24, 16, 1024, 93, 45, '2', '2009-2020', 'Accounting (Q1); Organizational Behavior and Human Resource Management (Q1)'), (2786, 'European Financial Management', 13547798, 1.311, 'Q1', 64, 60, 3461, 229, 107, '3', '1995-2020', 'Accounting (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)'), (2787, 'International Journal of Food Microbiology', 18793460, 1.31, 'Q1', 190, 291, 15192, 5017, 921, '16', '1984-2020', 'Food Science (Q1); Medicine (miscellaneous) (Q1); Safety, Risk, Reliability and Quality (Q1); Microbiology (Q2)'), (2788, 'Journal of Hospitality and Tourism Management', 18395260, 1.31, 'Q1', 34, 153, 12127, 1119, 190, '3', '2006-2020', 'Tourism, Leisure and Hospitality Management (Q1)'), (2789, 'Journal of Periodontal Research', 16000765, 1.31, 'Q2', 83, 101, 4665, 1192, 289, '25', '1946-1951, 1966-2020', 'Periodontics (Q2)'), (2790, 'Nanotheranostics', 22067418, 1.31, 'Q1', 16, 22, 1065, 483, 88, '11', '2017-2020', 'Biomedical Engineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)'), (2791, 'Pain Physician', 21501149, 1.31, 'Q1', 99, 173, 7390, 1976, 412, '2', '1999-2020', 'Anesthesiology and Pain Medicine (Q1)'), (2792, 'AIDS Education and Prevention', 19432755, 1.309, 'Q1', 73, 36, 1543, 273, 125, '2', '1989-2020', 'Health (social science) (Q1); Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2793, 'CIRP Journal of Manufacturing Science and Tec', 17555817, 1.309, 'Q1', 49, 112, 4537, 720, 144, '16', '2008-2020', 'Industrial and Manufacturing Engineering (Q1)'), (2794, 'Earth Interactions', 10873562, 1.309, 'Q1', 38, 8, 377, 111, 39, '2', '2004-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (2795, 'IEEE Transactions on Affective Computing', 19493045, 1.309, 'Q1', 67, 142, 3313, 1553, 163, '2', '2010-2020', 'Human-Computer Interaction (Q1); Software (Q1)'), (2796, 'Marine Structures', 9518339, 1.309, 'Q1', 66, 122, 4778, 1326, 320, '16', '1988-2021', 'Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Ocean Engineering (Q1)'), (2797, 'Mathematics and Mechanics of Complex Systems', 23253444, 1.309, 'Q1', 15, 15, 521, 240, 45, '2', '2013-2020', 'Civil and Structural Engineering (Q1); Computational Mathematics (Q1); Numerical Analysis (Q1)'), (2798, 'Annals of Gastroenterological Surgery', 24750328, 1.308, 'Q1', 15, 105, 4136, 533, 120, '3', '2017-2020', 'Gastroenterology (Q1); Surgery (Q1)'), (2799, 'Progress in molecular and subcellular biology', 796484, 1.308, 'Q1', 44, 0, 0, 114, 51, '5', '1994, 1996-2007, 2009-2013, 2017-2019', 'Medicine (miscellaneous) (Q1)'), (2800, 'Psicothema', 2149915, 1.308, 'Q1', 64, 73, 3076, 878, 213, '12', '1996-2020', 'Psychology (miscellaneous) (Q1)'), (2801, 'Advances in Health Sciences Education', 15731677, 1.307, 'Q1', 64, 90, 4729, 625, 198, '16', '1996-2020', 'Education (Q1); Medicine (miscellaneous) (Q1)'), (2802, 'Current Protocols in Neuroscience', 19348584, 1.307, 'Q1', 40, 24, 1201, 146, 58, '2', '2001-2020', 'Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2)'), (2803, 'Diabetes/Metabolism Research and Reviews', 15207552, 1.307, 'Q1', 110, 174, 8822, 1382, 314, '3', '1999-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1)'), (2804, 'Experimental Thermal and Fluid Science', 8941777, 1.307, 'Q1', 111, 213, 8116, 4203, 1074, '2', '1988-2021', 'Aerospace Engineering (Q1); Chemical Engineering (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Nuclear Energy and Engineering (Q1)'), (2805, 'Journal of Management Accounting Research', 15588033, 1.307, 'Q1', 23, 33, 1932, 166, 78, '2', '2009-2020', 'Accounting (Q1); Business and International Management (Q1)'), (2806, 'Business History Review', 76805, 1.306, 'Q1', 30, 29, 1696, 91, 64, '3', '1926-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); History (Q1)'), (2807, 'Archives of Physical Medicine and Rehabilitat', 1532821, 1.305, 'Q1', 188, 289, 11172, 3351, 829, '3', '1945-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Sports Science (Q1)'), (2808, 'Brain Connectivity', 21580014, 1.305, 'Q2', 52, 59, 3100, 619, 182, '2', '2011, 2013-2020', 'Neuroscience (miscellaneous) (Q2)'), (2809, 'Comprehensive Psychiatry', 10440, 1.305, 'Q1', 106, 71, 3671, 1422, 382, '3', '1960-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (2810, 'European Journal of Pain', 10903801, 1.305, 'Q1', 109, 170, 7816, 1816, 476, '2', '1997-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1)'), (2811, 'Planning Theory', 14730952, 1.305, 'Q1', 51, 38, 2379, 248, 76, '3', '2002-2020', 'Geography, Planning and Development (Q1)'), (2812, 'Sleep Disorders', 20903545, 1.305, 'Q1', 4, 0, 0, 2, 1, '32', '2015-2017', 'Behavioral Neuroscience (Q1); Clinical Psychology (Q1); Psychiatry and Mental Health (Q1); Cognitive Neuroscience (Q2)'), (2813, 'Hepatology International', 19360533, 1.304, 'Q2', 45, 112, 4258, 1224, 203, '4', '2008-2020', 'Hepatology (Q2)'), (2814, 'Landscape Ecology', 15729761, 1.304, 'Q1', 130, 195, 14632, 1985, 478, '16', '1987-2020', 'Ecology (Q1); Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1)'), (2815, 'Studies in Second Language Learning and Teach', 20835205, 1.304, 'Q1', 14, 32, 1804, 255, 82, '17', '2016-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2816, 'Clinical and Translational Science', 17528062, 1.303, 'Q1', 44, 174, 5945, 815, 193, '3', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2)'), (2817, 'European Journal of Cardio-thoracic Surgery', 1873734, 1.303, 'Q1', 133, 457, 9268, 3549, 1077, '3', '1987-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Pulmonary and Respiratory Medicine (Q1); Surgery (Q1)'), (2818, 'Potential Analysis', 9262601, 1.303, 'Q1', 45, 127, 3536, 325, 155, '16', '1992-2020', 'Analysis (Q1)'), (2819, 'Qualitative Health Research', 15527557, 1.303, 'Q1', 113, 178, 10134, 1926, 521, '2', '1991-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (2820, 'Accounting Horizons', 8887993, 1.302, 'Q1', 74, 37, 2287, 257, 97, '2', '1996-2020', 'Accounting (Q1)'), (2821, 'Amyotrophic Lateral Sclerosis and Frontotempo', 21679223, 1.302, 'Q1', 75, 146, 4953, 994, 314, '3', '2013-2020', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Neurology (Q2)'), (2822, 'Geophysical Journal International', 956540, 1.302, 'Q1', 168, 531, 30241, 4356, 1517, '3', '1922-1943, 1945, 1947-1957, 1988-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (2823, 'Journal of Neurophysiology', 15221598, 1.302, 'Q2', 245, 361, 23159, 3520, 1337, '2', '1945-2020', 'Neuroscience (miscellaneous) (Q2); Physiology (Q2)'), (2824, 'European Journal of Political Economy', 1762680, 1.301, 'Q1', 82, 90, 5334, 605, 229, '16', '1985-2020', 'Economics and Econometrics (Q1); Political Science and International Relations (Q1)'), (2825, 'Genetic Epidemiology', 7410395, 1.301, 'Q2', 98, 68, 2503, 449, 203, '2', '1984-2020', 'Epidemiology (Q2); Genetics (clinical) (Q2)'), (2826, 'Geochemical Perspectives', 22237755, 1.301, 'Q1', 12, 1, 353, 20, 4, '16', '2012-2018', 'Environmental Chemistry (Q1); Geochemistry and Petrology (Q1); Geology (Q1)'), (2827, 'SSM - Population Health', 23528273, 1.301, 'Q1', 23, 193, 10405, 1245, 375, '3', '2015-2020', 'Health Policy (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2828, 'Clinical and Experimental Ophthalmology', 14429071, 1.3, 'Q1', 74, 220, 4765, 1058, 332, '3', '1979-1984, 1999-2020', 'Medicine (miscellaneous) (Q1); Ophthalmology (Q1)'), (2829, 'Social Science Computer Review', 15528286, 1.3, 'Q1', 73, 95, 5062, 710, 168, '2', '1983-2020', 'Computer Science Applications (Q1); Law (Q1); Library and Information Sciences (Q1); Social Sciences (miscellaneous) (Q1)'), (2830, 'BMC Pregnancy and Childbirth', 14712393, 1.299, 'Q1', 82, 763, 28817, 4922, 1483, '3', '2001-2020', 'Obstetrics and Gynecology (Q1)'), (2831, 'Current Hematologic Malignancy Reports', 15588211, 1.299, 'Q1', 35, 46, 3300, 635, 192, '2', '2006-2020', 'Hematology (Q1); Cancer Research (Q2); Oncology (Q2)'), (2832, 'Experimental Neurobiology', 12262560, 1.299, 'Q1', 17, 36, 2005, 452, 152, '13', '2015-2020', 'Neurology (clinical) (Q1); Cellular and Molecular Neuroscience (Q2)'), (2833, 'Pediatric Critical Care Medicine', 15297535, 1.299, 'Q1', 87, 426, 9886, 2127, 625, '2', '2000-2020', 'Critical Care and Intensive Care Medicine (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (2834, 'School Effectiveness and School Improvement', 9243453, 1.299, 'Q1', 55, 42, 2751, 266, 85, '3', '1990-2020', 'Education (Q1)'), (2835, 'Comparative Education Review', 104086, 1.298, 'Q1', 54, 41, 1752, 239, 85, '2', '1976-1977, 1980-1982, 1984, 1994, 1996-2020', 'Education (Q1)'), (2836, 'Criminal Justice and Behavior', 15523594, 1.298, 'Q1', 94, 105, 6147, 771, 266, '2', '1974-2020', 'Law (Q1); Pathology and Forensic Medicine (Q1); Psychology (miscellaneous) (Q1)'), (2837, 'Crystallography Reviews', 889311, 1.298, 'Q1', 29, 12, 799, 72, 21, '3', '1987-1996, 1998-2000, 2002-2020', 'Biochemistry (Q1); Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Structural Biology (Q2)'), (2838, 'Emerging Markets Review', 18736173, 1.298, 'Q1', 50, 80, 5011, 783, 157, '16', '2000-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1)'), (2839, 'IEEE Industrial Electronics Magazine', 19324529, 1.298, 'Q1', 70, 51, 1873, 747, 83, '2', '2007-2020', 'Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1)'), (2840, 'Vehicular Communications', 22142096, 1.298, 'Q1', 32, 48, 2859, 965, 112, '2', '2014-2020', 'Automotive Engineering (Q1); Communication (Q1); Electrical and Electronic Engineering (Q1)'), (2841, 'Wellcome Open Research', 2398502, 1.298, 'Q1', 21, 219, 8468, 1415, 527, '3', '2016-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (2842, 'Current Opinion in Food Science', 22147993, 1.297, 'Q1', 38, 89, 5095, 1714, 286, '16', '2015-2021', 'Applied Microbiology and Biotechnology (Q1); Food Science (Q1)'), (2843, 'Current Opinion in Oncology', 1531703, 1.297, 'Q2', 95, 95, 1821, 739, 210, '2', '1989-2020', 'Cancer Research (Q2); Oncology (Q2)'), (2844, 'Freshwater Biology', 13652427, 1.297, 'Q1', 156, 173, 13309, 1683, 455, '3', '1971-2020', 'Aquatic Science (Q1)'), (2845, 'Frontiers in Zoology', 17429994, 1.297, 'Q1', 60, 36, 2986, 444, 154, '3', '2004-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (2846, 'Journal of Sleep Research', 13652869, 1.297, 'Q1', 117, 232, 8692, 1439, 368, '3', '1992-2020', 'Behavioral Neuroscience (Q1); Medicine (miscellaneous) (Q1); Cognitive Neuroscience (Q2)'), (2847, 'Neuroscience', 3064522, 1.297, 'Q2', 220, 598, 40229, 6615, 1887, '3', '1976-2020', 'Neuroscience (miscellaneous) (Q2)'), (2848, 'Molecular and Cellular Endocrinology', 3037207, 1.296, 'Q1', 144, 293, 23629, 3543, 858, '42', '1974-2020', 'Biochemistry (Q1); Endocrinology (Q1); Molecular Biology (Q2)'), (2849, 'Neurology and Therapy', 21938253, 1.296, 'Q1', 19, 56, 2443, 463, 86, '2', '2012-2020', 'Neurology (clinical) (Q1); Neurology (Q2)'), (2850, 'Neuromodulation', 15251403, 1.296, 'Q1', 60, 253, 9647, 1477, 335, '3', '1998-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q1); Neurology (Q2)'), (2851, 'Pest Management Science', 15264998, 1.296, 'Q1', 125, 488, 24672, 4349, 986, '3', '2000-2020', 'Agronomy and Crop Science (Q1); Insect Science (Q1); Medicine (miscellaneous) (Q1)'), (2852, 'Vaccines', 2076393, 1.296, 'Q1', 37, 780, 49148, 1485, 332, '19', '2013-2020', 'Drug Discovery (Q1); Infectious Diseases (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Immunology (Q2)'), (2853, 'Adolescent Research Review', 23638354, 1.295, 'Q1', 14, 30, 2699, 259, 64, '19', '2016-2020', 'Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Social Sciences (miscellaneous) (Q1)'), (2854, 'Applied Surface Science', 1694332, 1.295, 'Q1', 188, 3364, 166895, 64298, 9989, '16', '1984-2021', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Physics and Astronomy (miscellaneous) (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)'), (2855, 'Current Opinion in Hematology', 15317048, 1.295, 'Q1', 97, 62, 2406, 708, 215, '2', '1994-2020', 'Hematology (Q1)'), (2856, 'Palaeogeography, Palaeoclimatology, Palaeoeco', 310182, 1.295, 'Q1', 154, 455, 42622, 4529, 1309, '16', '1965-2020', 'Earth-Surface Processes (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Oceanography (Q1); Paleontology (Q1)'), (2857, 'Pharmaceuticals', 14248247, 1.295, 'Q1', 59, 482, 37477, 2273, 403, '19', '2009-2020', 'Drug Discovery (Q1); Pharmaceutical Science (Q1); Molecular Medicine (Q2)'), (2858, 'Prostate', 10970045, 1.295, 'Q1', 123, 138, 5771, 1655, 474, '2', '1980-2020', 'Urology (Q1); Oncology (Q2)'), (2859, 'American Journal of Roentgenology', 361803, 1.294, 'Q1', 196, 486, 14120, 4694, 1270, '2', '1973-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (2860, 'Current Anthropology', 113204, 1.294, 'Q1', 110, 70, 5830, 701, 207, '2', '1962, 1971, 1974, 1978-1988, 1992, 1994, 1996-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)'), (2861, 'Earth Surface Processes and Landforms', 1979337, 1.294, 'Q1', 127, 275, 19978, 2798, 614, '3', '1981-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)'), (2862, 'International Journal of Geographical Informa', 13658816, 1.294, 'Q1', 114, 144, 7433, 1754, 336, '3', '1997-2020', 'Geography, Planning and Development (Q1); Information Systems (Q1); Library and Information Sciences (Q1)'), (2863, 'International Journal of Health Policy and Ma', 23225939, 1.294, 'Q1', 30, 105, 2815, 1009, 229, '15', '2013-2020', 'Health Information Management (Q1); Health Policy (Q1); Health (social science) (Q1); Leadership and Management (Q1); Management, Monitoring, Policy and Law (Q1)'), (2864, 'Large-Scale Assessments in Education', 21960739, 1.294, 'Q1', 12, 15, 842, 139, 43, '2', '2013-2020', 'Education (Q1)'), (2865, 'Quest', 15432750, 1.294, 'Q1', 53, 30, 1758, 381, 100, '3', '1963-2020', 'Education (Q1); Sports Science (Q1)'), (2866, 'IEEE Journal of Biomedical and Health Informa', 21682208, 1.293, 'Q1', 125, 417, 15291, 5019, 638, '2', '2013-2020', 'Biotechnology (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Health Information Management (Q1)'), (2867, 'Measurement', 15366367, 1.293, 'Q1', 15, 16, 535, 67, 43, '3', '2010-2020', 'Applied Mathematics (Q1); Education (Q1); Statistics and Probability (Q1)'), (2868, 'Bulletin of Earthquake Engineering', 1570761, 1.292, 'Q1', 64, 265, 12928, 2502, 711, '16', '2003-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Geophysics (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (2869, 'Language Variation and Change', 9543945, 1.292, 'Q1', 45, 15, 922, 66, 41, '3', '1989-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2870, 'International Journal of Intelligent Systems', 1098111, 1.291, 'Q1', 87, 83, 4008, 2439, 314, '3', '1986-2020', 'Artificial Intelligence (Q1); Human-Computer Interaction (Q1); Software (Q1); Theoretical Computer Science (Q1)'), (2871, 'Journal of Food Engineering', 2608774, 1.291, 'Q1', 179, 305, 12780, 5672, 1048, '3', '1982-2021', 'Food Science (Q1)'), (2872, 'Molecular Immunology', 1615890, 1.291, 'Q2', 128, 267, 13330, 3371, 793, '3', '1973-2020', 'Immunology (Q2); Molecular Biology (Q2)'), (2873, 'Psychology of Addictive Behaviors', 893164, 1.291, 'Q1', 107, 97, 2964, 930, 287, '2', '1993-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (2874, 'Agricultural Economics (United Kingdom)', 15740862, 1.29, 'Q1', 82, 60, 3057, 557, 200, '3', '1986-2020', 'Agronomy and Crop Science (Q1); Economics and Econometrics (Q1)'), (2875, 'Animal Cognition', 14359448, 1.29, 'Q1', 77, 119, 7363, 809, 268, '5', '1998-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Experimental and Cognitive Psychology (Q1)'), (2876, 'Applied Soft Computing Journal', 15684946, 1.29, 'Q1', 143, 831, 45163, 15975, 2003, '16', '2001-2020', 'Software (Q1)'), (2877, 'Cancer cytopathology', 1934662, 1.29, 'Q2', 57, 156, 4005, 1165, 268, '2', '2008-2020', 'Cancer Research (Q2); Oncology (Q2)'), (2878, 'Journal of Manufacturing Technology Managemen', 1741038, 1.29, 'Q1', 70, 82, 6206, 1476, 198, '3', '2004-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Software (Q1); Strategy and Management (Q1)'), (2879, 'Ultramicroscopy', 3043991, 1.29, 'Q1', 124, 166, 6238, 1954, 635, '16', '1975-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1); Instrumentation (Q1)'), (2880, 'Democratization', 13510347, 1.289, 'Q1', 53, 80, 4810, 569, 216, '3', '1994-2020', 'Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (2881, 'Discrete and Continuous Dynamical Systems', 15535231, 1.289, 'Q1', 70, 292, 8335, 1689, 850, '2', '1996-2020', 'Analysis (Q1); Applied Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1)'), (2882, 'Journal of Evolutionary Biology', 1010061, 1.289, 'Q1', 128, 159, 11450, 1201, 467, '3', '1988-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (2883, 'Systems and Control Letters', 1676911, 1.289, 'Q1', 137, 154, 4380, 1490, 406, '16', '1981-2020', 'Computer Science (miscellaneous) (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1)'), (2884, 'Archives of Sexual Behavior', 15732800, 1.288, 'Q1', 111, 313, 17371, 2236, 558, '2', '1971-2020', 'Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)'), (2885, 'Forest Ecology and Management', 3781127, 1.288, 'Q1', 176, 686, 50149, 7143, 1944, '16', '1909, 1976, 1978-2021', 'Forestry (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (2886, 'Neural Plasticity', 16875443, 1.288, 'Q1', 68, 197, 11029, 1905, 480, '2', '1998-2005, 2007-2020', 'Neurology (clinical) (Q1); Neurology (Q2)'), (2887, 'Coral Reefs', 7224028, 1.287, 'Q1', 109, 147, 9860, 1290, 327, '5', '1982-2020', 'Aquatic Science (Q1)'), (2888, 'Journal of Ginseng Research', 20934947, 1.287, 'Q1', 43, 109, 5282, 1303, 232, '16', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biotechnology (Q1); Complementary and Alternative Medicine (Q1); Plant Science (Q1)'), (2889, 'Microbial Biotechnology', 17517915, 1.287, 'Q1', 74, 202, 12026, 2280, 407, '3', '2008-2020', 'Applied Microbiology and Biotechnology (Q1); Biochemistry (Q1); Bioengineering (Q1); Biotechnology (Q1)'), (2890, 'Sport, Education and Society', 14701243, 1.287, 'Q1', 63, 130, 7132, 862, 204, '3', '1996-2020', 'Education (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1)'), (2891, 'Journal of Pharmacology and Experimental Ther', 15210103, 1.286, 'Q1', 225, 184, 9818, 2624, 666, '2', '1945-2020', 'Pharmacology (Q1); Molecular Medicine (Q2)'), (2892, 'Journal of Human Capital', 19328664, 1.285, 'Q1', 21, 17, 966, 92, 55, '2', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (2893, 'Qualitative Research', 14687941, 1.285, 'Q1', 74, 113, 5313, 468, 128, '3', '2001-2020', 'History and Philosophy of Science (Q1); Social Sciences (miscellaneous) (Q1)'), (2894, 'Remote Sensing', 20724292, 1.285, 'Q1', 124, 4126, 243155, 35223, 6036, '19', '1992, 2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (2895, 'Cancer Prevention Research', 19406207, 1.283, 'Q1', 91, 140, 4963, 927, 254, '2', '2008-2020', 'Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)'), (2896, 'Environmental Reviews', 12086053, 1.283, 'Q1', 68, 44, 5454, 513, 103, '9', '1993-2020', 'Environmental Science (miscellaneous) (Q1)'), (2897, 'Journal of Multivariate Analysis', 47259, 1.283, 'Q1', 80, 84, 2742, 786, 378, '2', '1971-2021', 'Numerical Analysis (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (2898, 'Current Protocols in Human Genetics', 19348266, 1.282, 'Q1', 30, 12, 611, 146, 59, '2', '2001-2020', 'Medicine (miscellaneous) (Q1); Genetics (Q2); Genetics (clinical) (Q2)'), (2899, 'Journal of Business Finance and Accounting', 306686, 1.282, 'Q1', 77, 74, 4982, 417, 136, '3', '1974-2020', 'Accounting (Q1); Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1)'), (2900, 'Journal of Computing in Higher Education', 10421726, 1.282, 'Q1', 36, 33, 1720, 412, 88, '2', '1989-2020', 'Education (Q1)'), (2901, 'Mycological Progress', 1617416, 1.282, 'Q1', 36, 107, 6268, 727, 279, '5', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (2902, 'Water Security', 24683124, 1.282, 'Q1', 10, 27, 2177, 185, 37, '16', '2017-2020', 'Management, Monitoring, Policy and Law (Q1); Oceanography (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)'), (2903, 'BJPsych Open', 20564724, 1.281, 'Q1', 19, 40, 1610, 466, 142, '3', '2015-2020', 'Psychiatry and Mental Health (Q1)'), (2904, 'Policy and Internet', 19442866, 1.281, 'Q1', 26, 26, 1765, 286, 59, '3', '2012-2020', 'Computer Science Applications (Q1); Health Policy (Q1); Health (social science) (Q1); Public Administration (Q1)'), (2905, 'Vehicle System Dynamics', 423114, 1.281, 'Q1', 90, 206, 6956, 1311, 255, '3', '1972-2020', 'Automotive Engineering (Q1); Mechanical Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)'), (2906, 'Chinese Journal of Chemistry', 16147065, 1.28, 'Q1', 41, 232, 14762, 2213, 555, '2', '1990-2020', 'Chemistry (miscellaneous) (Q1)'), (2907, 'Critical Care Clinics', 7490704, 1.28, 'Q1', 73, 64, 4102, 609, 145, '3', '1985-2020', 'Critical Care and Intensive Care Medicine (Q1); Medicine (miscellaneous) (Q1)'), (2908, 'International Journal of Geriatric Psychiatry', 10991166, 1.28, 'Q1', 129, 189, 7492, 2154, 610, '3', '1986-2020', 'Geriatrics and Gerontology (Q1); Psychiatry and Mental Health (Q1)'), (2909, 'Journal of Biochemistry', 21924, 1.28, 'Q1', 115, 113, 4638, 977, 310, '3', '1922-1942, 1944, 1950-2020', 'Biochemistry (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)'), (2910, 'Osteoporosis International', 937941, 1.28, 'Q1', 170, 318, 10896, 3803, 905, '3', '1990-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1)'), (2911, 'Plant and Soil', 15735036, 1.28, 'Q1', 190, 438, 30508, 5154, 1252, '16', '1948-2020', 'Plant Science (Q1); Soil Science (Q1)'), (2912, 'Quality of Life Research', 15732649, 1.28, 'Q1', 145, 328, 14207, 3316, 898, '16', '1992-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (2913, 'Regional Environmental Change', 14363798, 1.28, 'Q2', 62, 134, 8524, 2324, 571, '5', '2005-2020', 'Global and Planetary Change (Q2)'), (2914, 'Bioconjugate Chemistry', 15204812, 1.279, 'Q1', 172, 279, 16082, 4943, 1053, '2', '1990-2020', 'Bioengineering (Q1); Biomedical Engineering (Q1); Biotechnology (Q1); Organic Chemistry (Q1); Pharmaceutical Science (Q1); Pharmacology (Q1)'), (2915, 'Biology of Sport', 860021, 1.279, 'Q1', 27, 56, 2204, 436, 144, '17', '1996-2021', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q1); Physiology (medical) (Q2)'), (2916, 'Psychology of Aesthetics, Creativity, and the', 1931390, 1.279, 'Q1', 51, 71, 1639, 535, 134, '2', '2007-2020', 'Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Visual Arts and Performing Arts (Q1)'), (2917, 'Separation and Purification Technology', 13835866, 1.279, 'Q1', 164, 1462, 73897, 18888, 2635, '16', '1997-2021', 'Analytical Chemistry (Q1); Filtration and Separation (Q1)'), (2918, 'BMC Infectious Diseases', 14712334, 1.278, 'Q1', 104, 942, 31552, 8348, 2570, '3', '2001-2020', 'Infectious Diseases (Q1)'), (2919, 'International Journal of Infectious Diseases', 12019712, 1.278, 'Q1', 89, 902, 23916, 3172, 880, '16', '1996-2020', 'Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Microbiology (medical) (Q1)'), (2920, 'NMR in Biomedicine', 10991492, 1.278, 'Q1', 114, 194, 10851, 1798, 475, '3', '1988-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Spectroscopy (Q1); Molecular Medicine (Q2)'), (2921, 'Thrapeutic Advances in Gastroenterology', 1756283, 1.278, 'Q1', 51, 129, 6502, 942, 242, '3', '2008-2020', 'Gastroenterology (Q1)'), (2922, 'Aerospace Science and Technology', 12709638, 1.277, 'Q1', 80, 714, 28901, 9398, 1687, '8', '1997-2020', 'Aerospace Engineering (Q1)'), (2923, 'IEEE/CAA Journal of Automatica Sinica', 23299266, 1.277, 'Q1', 41, 158, 6021, 2584, 350, '2', '2014-2020', 'Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Information Systems (Q1)'), (2924, 'Journal of Food and Drug Analysis', 10219498, 1.277, 'Q1', 54, 51, 3112, 2328, 348, '22', '1994-2020', 'Food Science (Q1); Pharmacology (Q1)'), (2925, 'Applied Psychology: Health and Well-Being', 17580854, 1.276, 'Q1', 31, 62, 3185, 263, 69, '2', '2012-2020', 'Applied Psychology (Q1)'), (2926, 'IEEE Transactions on Mobile Computing', 15361233, 1.276, 'Q1', 140, 271, 8734, 4581, 665, '2', '2002-2020', 'Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1); Software (Q1)'), (2927, 'Resources Policy', 3014207, 1.276, 'Q1', 69, 309, 18973, 3147, 543, '3', '1974-2020', 'Economics and Econometrics (Q1); Law (Q1); Management, Monitoring, Policy and Law (Q1); Sociology and Political Science (Q1)'), (2928, 'International Journal of Methods in Psychiatr', 10498931, 1.275, 'Q1', 73, 47, 2403, 625, 170, '2', '1996-2020', 'Psychiatry and Mental Health (Q1)'), (2929, 'ITL - International Journal of Applied Lingui', 17831490, 1.275, 'Q1', 8, 11, 677, 36, 18, '24', '2011-2012, 2014-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2930, 'Rhinology', 3000729, 1.275, 'Q1', 57, 96, 2364, 668, 166, '16', '1973-2020', 'Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1)'), (2931, 'Cornea', 15364798, 1.274, 'Q1', 117, 319, 2376, 2121, 897, '2', '1982-2020', 'Ophthalmology (Q1)'), (2932, 'IEEE Transactions on Dependable and Secure Co', 15455971, 1.274, 'Q1', 79, 173, 3678, 1769, 239, '2', '2004-2020', 'Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)'), (2933, 'Orphanet Journal of Rare Diseases', 17501172, 1.274, 'Q1', 110, 341, 13087, 2811, 704, '3', '2006-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Genetics (clinical) (Q2)'), (2934, 'International journal of oral implantology (N', 26316420, 1.273, 'Q1', 47, 31, 587, 350, 120, '2', '2019-2020', 'Medicine (miscellaneous) (Q1); Oral Surgery (Q1)'), (2935, 'Journal of Mathematical Psychology', 10960880, 1.273, 'Q1', 69, 73, 3746, 553, 164, '2', '1964-2020', 'Applied Mathematics (Q1); Psychology (miscellaneous) (Q1)'), (2936, 'Foundations and Trends in Programming Languag', 23251107, 1.272, 'Q1', 9, 2, 154, 98, 4, '2', '2014-2020', 'Computer Science Applications (Q1); Software (Q1); Theoretical Computer Science (Q1)'), (2937, 'Research Involvement and Engagement', 20567529, 1.272, 'Q1', 22, 67, 2676, 470, 94, '3', '2015-2020', 'Health Professions (miscellaneous) (Q1); Health (social science) (Q1)'), (2938, 'Sexual Abuse: Journal of Research and Treatme', 10790632, 1.272, 'Q1', 76, 66, 4310, 410, 124, '2', '1988-1993, 1995-2020', 'Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)'), (2939, 'Journal of Intelligent Manufacturing', 15728145, 1.271, 'Q1', 79, 208, 10514, 2671, 424, '16', '1990-2020', 'Artificial Intelligence (Q1); Industrial and Manufacturing Engineering (Q1); Software (Q1)'), (2940, 'Yale Journal of Biology and Medicine', 15514056, 1.271, 'Q1', 53, 83, 4155, 706, 176, '2', '1945-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (2941, 'Bladder Cancer', 23523735, 1.27, 'Q1', 19, 58, 2176, 253, 90, '16', '2015-2020', 'Urology (Q1); Oncology (Q2)'), (2942, 'Environmental and Resource Economics', 9246460, 1.27, 'Q1', 92, 127, 6695, 926, 386, '16', '1991-2020', 'Aerospace Engineering (Q1); Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1)'), (2943, 'International Review of Financial Analysis', 10575219, 1.27, 'Q1', 59, 164, 10333, 1661, 323, '2', '1992-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (2944, 'Resources and Energy Economics', 9287655, 1.27, 'Q1', 70, 48, 2315, 296, 118, '16', '1993-2020', 'Economics and Econometrics (Q1)'), (2945, 'Clinical and Experimental Metastasis', 2620898, 1.269, 'Q1', 100, 65, 2795, 642, 152, '16', '1983-2020', 'Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)'), (2946, 'Health Research Policy and Systems', 14784505, 1.269, 'Q1', 49, 134, 6972, 1091, 321, '3', '2003-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (2947, 'International Journal of Bilingual Education ', 13670050, 1.269, 'Q1', 46, 205, 10625, 777, 236, '3', '2005-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2948, 'Journal of the Pediatric Infectious Diseases ', 20487207, 1.269, 'Q1', 31, 109, 2052, 890, 329, '2', '2012-2020', 'Infectious Diseases (Q1); Medicine (miscellaneous) (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (2949, 'Marine Chemistry', 3044203, 1.269, 'Q1', 130, 88, 6437, 988, 271, '16', '1972-2020', 'Chemistry (miscellaneous) (Q1); Oceanography (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2)'), (2950, 'Pancreatology', 14243911, 1.269, 'Q1', 74, 260, 9319, 1661, 414, '16', '2001-2020', 'Endocrinology (Q1); Endocrinology, Diabetes and Metabolism (Q1); Gastroenterology (Q1); Hepatology (Q2)'), (2951, 'Patient', 11781653, 1.269, 'Q1', 33, 75, 2834, 631, 168, '2', '2009-2020', 'Nursing (miscellaneous) (Q1)'), (2952, 'Pediatric Allergy and Immunology', 13993038, 1.269, 'Q1', 89, 202, 5450, 1372, 248, '3', '1990-2020', 'Pediatrics, Perinatology and Child Health (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (2953, 'European Journal of Population', 15729885, 1.268, 'Q1', 49, 41, 2581, 270, 97, '16', '1985-2020', 'Demography (Q1)'), (2954, 'Human Microbiome Journal', 24522317, 1.268, 'Q1', 13, 12, 693, 204, 47, '3', '2016-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1)'), (2955, 'International Journal of Forecasting', 1692070, 1.268, 'Q1', 96, 142, 5578, 1254, 261, '16', '1985-2020', 'Business and International Management (Q1)'), (2956, 'Science and Technology of Welding and Joining', 13621718, 1.268, 'Q1', 76, 96, 2465, 963, 234, '3', '1996-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (2957, 'SIAM Journal on Matrix Analysis and Applicati', 10957162, 1.268, 'Q1', 101, 71, 2669, 776, 210, '2', '1996-2020', 'Analysis (Q1)'), (2958, 'Alcoholism: Clinical and Experimental Researc', 1456008, 1.267, 'Q1', 153, 254, 13877, 2257, 675, '2', '1977-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Toxicology (Q1)'), (2959, 'Development and Change', 14677660, 1.267, 'Q1', 93, 71, 4495, 582, 206, '3', '1970-2020', 'Development (Q1)'), (2960, 'Oncology Research', 9650407, 1.267, 'Q1', 57, 38, 1483, 2056, 435, '2', '1992-2000, 2002-2020', 'Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)'), (2961, 'American Journal of Physiology - Regulatory I', 15221490, 1.266, 'Q2', 175, 196, 10280, 1858, 553, '2', '1977-2020', 'Physiology (Q2); Physiology (medical) (Q2)'), (2962, 'Applied Catalysis A: General', 926860, 1.265, 'Q1', 214, 394, 22712, 6934, 1177, '16', '1991-2020', 'Process Chemistry and Technology (Q1); Catalysis (Q2)'), (2963, 'Epigenomics', 1750192, 1.265, 'Q2', 60, 154, 9073, 1506, 349, '3', '2009-2020', 'Cancer Research (Q2); Genetics (Q2)'), (2964, 'Archives of Toxicology', 14320738, 1.264, 'Q1', 111, 294, 19945, 3996, 723, '5', '1930-1940, 1943-1944, 1972-2020', 'Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Toxicology (Q1)'), (2965, 'Journal of Accounting and Public Policy', 2784254, 1.264, 'Q1', 75, 47, 2792, 277, 79, '2', '1982-2020', 'Accounting (Q1); Sociology and Political Science (Q1)'), (2966, 'Journal of Addiction Medicine', 19320620, 1.264, 'Q1', 42, 165, 865, 760, 234, '2', '2007-2020', 'Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)'), (2967, 'Phytopathology', 19437684, 1.264, 'Q1', 131, 211, 11751, 2006, 551, '2', '1946-1948, 1965-1971, 1974-1975, 1977-1989, 1993-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1)'), (2968, 'Respiration', 14230356, 1.264, 'Q1', 81, 106, 3339, 1137, 337, '19', '1944-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (2969, 'Clinical Cardiology', 19328737, 1.263, 'Q1', 72, 211, 7212, 1497, 573, '2', '1978-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1)'), (2970, 'Environmental Health: A Global Access Science', 1476069, 1.263, 'Q1', 90, 123, 6238, 1809, 330, '3', '2002-2020', 'Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (2971, 'European Journal of Social Theory', 13684310, 1.263, 'Q1', 58, 43, 3022, 215, 86, '3', '1998-2020', 'Sociology and Political Science (Q1)'), (2972, 'Nanomedicine: Nanotechnology, Biology, and Me', 15499634, 1.263, 'Q1', 125, 191, 10362, 4177, 689, '2', '2005-2020', 'Bioengineering (Q1); Biomedical Engineering (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Pharmaceutical Science (Q1); Molecular Medicine (Q2); Nanoscience and Nanotechn'), (2973, 'Drugs in Context', 17404398, 1.262, 'Q1', 18, 61, 2847, 561, 107, '3', '2006-2008, 2012-2020', 'Pharmacology (Q1); Molecular Medicine (Q2)'), (2974, 'Future Generation Computer Systems', 167739, 1.262, 'Q1', 119, 798, 36054, 16877, 1868, '16', '1984-2021', 'Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Software (Q1)'), (2975, 'Neurology: Genetics', 23767839, 1.262, 'Q1', 24, 111, 2334, 500, 181, '2', '2015-2020', 'Neurology (clinical) (Q1); Genetics (clinical) (Q2)'), (2976, 'Animal Behaviour', 33472, 1.261, 'Q1', 166, 237, 16019, 2235, 819, '2', '1958-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (2977, 'Cambridge Journal of Economics', 14643545, 1.261, 'Q1', 83, 59, 2886, 466, 209, '3', '1977-2020', 'Economics and Econometrics (Q1)'), (2978, 'Frontiers in Behavioral Neuroscience', 16625153, 1.26, 'Q1', 73, 265, 19364, 2971, 843, '19', '2007-2020', 'Behavioral Neuroscience (Q1); Neuropsychology and Physiological Psychology (Q1); Cognitive Neuroscience (Q2)'), (2979, 'International Orthopaedics', 14325195, 1.26, 'Q1', 90, 422, 11368, 3169, 1018, '5', '1977-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (2980, 'Proteomics', 16159861, 1.26, 'Q1', 167, 141, 6865, 2093, 590, '5', '2001-2020', 'Biochemistry (Q1); Molecular Biology (Q2)'), (2981, 'Assessment in Education: Principles, Policy a', 969594, 1.259, 'Q1', 43, 38, 1961, 258, 76, '2', '1994-2020', 'Education (Q1)'), (2982, 'International Psychogeriatrics', 1741203, 1.259, 'Q1', 96, 284, 8932, 2003, 526, '3', '1989-2020', 'Clinical Psychology (Q1); Geriatrics and Gerontology (Q1); Gerontology (Q1); Psychiatry and Mental Health (Q1)'), (2983, 'Journal of Adolescence', 10959254, 1.259, 'Q1', 115, 139, 7558, 1671, 419, '2', '1978-2020', 'Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q1); Social Psychology (Q1)'), (2984, 'Journal of Traumatic Stress', 15736598, 1.259, 'Q1', 134, 148, 6846, 912, 269, '2', '1988-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (2985, 'Placenta', 1434004, 1.259, 'Q1', 124, 216, 10391, 1843, 508, '3', '1970, 1977, 1980-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Developmental Biology (Q2)'), (2986, 'Bulletin of the Seismological Society of Amer', 371106, 1.258, 'Q1', 151, 219, 10733, 1952, 643, '2', '1969-1971, 1974, 1985-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (2987, 'Engineering Fracture Mechanics', 137944, 1.258, 'Q1', 130, 506, 23642, 6230, 1340, '16', '1968-2020', 'Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (2988, 'Foreign Language Annals', 15718, 1.258, 'Q1', 49, 55, 2120, 284, 132, '2', '1967-2020', 'Linguistics and Language (Q1)'), (2989, 'International Journal of Public Opinion Resea', 14716909, 1.258, 'Q1', 54, 19, 772, 257, 102, '3', '1989-2019', 'Sociology and Political Science (Q1)'), (2990, 'Journal of Intellectual Capital', 14691930, 1.258, 'Q1', 89, 98, 9263, 1145, 134, '3', '2000-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Education (Q1)'), (2991, 'Journal of the Electrochemical Society', 134651, 1.258, 'Q1', 271, 1670, 87856, 20119, 4684, '2', '1948-1960, 1963-2020', 'Condensed Matter Physics (Q1); Electrochemistry (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Renewable Energy, Sustainability and the Environment (Q1); Surfaces, Co'), (2992, 'LWT - Food Science and Technology', 10961127, 1.258, 'Q1', 133, 1410, 53599, 14715, 2863, '2', '1973, 1984-1989, 1991-2021', 'Food Science (Q1)'), (2993, 'Across Languages and Cultures', 15882519, 1.257, 'Q1', 14, 12, 487, 60, 38, '50', '2007-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (2994, 'Applied and Computational Mathematics', 16833511, 1.257, 'Q1', 16, 1, 52, 18, 2, '92', '2008-2016, 2019', 'Applied Mathematics (Q1); Computational Mathematics (Q1)'), (2995, 'Advances in Chronic Kidney Disease', 15485595, 1.256, 'Q1', 65, 76, 3688, 621, 159, '3', '2004-2020', 'Nephrology (Q1)'), (2996, 'Journal of Economic Behavior and Organization', 1672681, 1.256, 'Q1', 115, 429, 22092, 1556, 786, '16', '1980-2020', 'Economics and Econometrics (Q1); Organizational Behavior and Human Resource Management (Q1)'), (2997, 'Journal of Neuro-Oncology', 15737373, 1.256, 'Q2', 114, 282, 10646, 3971, 983, '16', '1983-2020', 'Cancer Research (Q2); Neurology (Q2); Neurology (clinical) (Q2); Oncology (Q2)'), (2998, 'Metroeconomica', 261386, 1.256, 'Q1', 29, 48, 2245, 191, 118, '2', '1949-1986, 1988-2020', 'Economics and Econometrics (Q1)'), (2999, 'Science China Earth Sciences', 16747313, 1.256, 'Q1', 91, 152, 12495, 2029, 447, '1', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (3000, 'Cellular and Molecular Neurobiology', 2724340, 1.255, 'Q1', 90, 235, 17397, 1501, 355, '2', '1981-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2); Cellular and Molecular Neuroscience (Q2)'), (3001, 'Ecosphere', 21508925, 1.255, 'Q1', 57, 307, 21752, 3838, 1246, '2', '2010-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3002, 'Faraday Discussions', 13645498, 1.255, 'Q1', 110, 78, 4088, 2734, 716, '3', '1947, 1950-1951, 1962, 1969, 1991-2020', 'Medicine (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)'), (3003, 'Journal of Environmental Policy and Planning', 15227200, 1.255, 'Q1', 50, 71, 4652, 633, 157, '3', '1999-2020', 'Management, Monitoring, Policy and Law (Q1)'), (3004, 'Journal of Evolution Equations', 14243199, 1.255, 'Q1', 39, 131, 4124, 401, 170, '19', '2001-2020', 'Mathematics (miscellaneous) (Q1)'), (3005, 'Journal of Race, Ethnicity and Politics', 20566085, 1.255, 'Q1', 8, 16, 1028, 103, 46, '3', '2016-2020', 'Anthropology (Q1); Sociology and Political Science (Q1)'), (3006, 'Big Earth Data', 20964471, 1.254, 'Q1', 13, 31, 1592, 299, 53, '3', '2017-2020', 'Computer Science Applications (Q1); Computers in Earth Sciences (Q1)'), (3007, 'Biochimie', 3009084, 1.254, 'Q1', 135, 231, 15941, 2787, 674, '16', '1971-2020', 'Biochemistry (Q1); Medicine (miscellaneous) (Q1)'), (3008, 'Hormones and Behavior', 18506, 1.254, 'Q1', 142, 187, 15297, 1687, 454, '2', '1969-2020', 'Behavioral Neuroscience (Q1); Endocrinology (Q1); Endocrine and Autonomic Systems (Q2)'), (3009, 'International Journal of Sustainable Transpor', 15568334, 1.254, 'Q1', 41, 139, 7774, 882, 191, '3', '2007-2020', 'Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Environmental Engineering (Q1); Geography, Planning and Development (Q1); Renewable Energy, Sustainability and the Environment (Q1);'), (3010, 'Investigational New Drugs', 1676997, 1.254, 'Q1', 87, 196, 6445, 1308, 364, '16', '1983-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1); Oncology (Q2)'), (3011, 'Journal of Personalized Medicine', 20754426, 1.254, 'Q1', 27, 291, 18787, 583, 109, '19', '2011-2020', 'Medicine (miscellaneous) (Q1)'), (3012, 'Microbiological Research', 9445013, 1.254, 'Q2', 84, 157, 10630, 2058, 360, '5', '1994-2020', 'Microbiology (Q2)'), (3013, 'Molecular Carcinogenesis', 10982744, 1.254, 'Q2', 97, 123, 6288, 2556, 588, '2', '1988-2020', 'Cancer Research (Q2); Molecular Biology (Q2)'), (3014, 'Space Weather', 15427390, 1.254, 'Q1', 56, 126, 6002, 1944, 361, '2', '2005-2020', 'Atmospheric Science (Q1)'), (3015, 'Feminist Criminology', 15570851, 1.253, 'Q1', 35, 30, 2288, 230, 70, '3', '2006-2020', 'Gender Studies (Q1); Law (Q1)'), (3016, 'Food and Energy Security', 20483694, 1.253, 'Q1', 25, 60, 4039, 395, 60, '3', '2012-2020', 'Agronomy and Crop Science (Q1); Food Science (Q1); Forestry (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (3017, 'Journal of Applied Physiology', 87507587, 1.253, 'Q1', 229, 370, 16070, 3595, 1051, '2', '1948-1976, 1985-2020', 'Medicine (miscellaneous) (Q1); Physiology (Q2); Physiology (medical) (Q2); Sports Science (Q2)'), (3018, 'Planta', 14322048, 1.253, 'Q1', 158, 220, 16109, 2766, 675, '5', '1925-1945, 1947-2020', 'Plant Science (Q1); Genetics (Q2)'), (3019, 'Plasmid', 147619, 1.253, 'Q2', 60, 20, 902, 367, 116, '2', '1977-2020', 'Molecular Biology (Q2)'), (3020, 'R and D Management', 14679310, 1.253, 'Q1', 102, 47, 3288, 690, 149, '3', '1970-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (3021, 'Documenta Mathematica', 14310635, 1.252, 'Q1', 32, 20, 610, 321, 166, '5', '2002-2020', 'Mathematics (miscellaneous) (Q1)'), (3022, 'European Journal of Orthodontics', 14602210, 1.252, 'Q1', 84, 74, 2760, 715, 255, '3', '1979-2020', 'Orthodontics (Q1)'), (3023, 'European Journal of Sport Science', 17461391, 1.252, 'Q1', 55, 282, 11110, 1742, 450, '3', '2001-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)'), (3024, 'Journal of Anthropological Archaeology', 2784165, 1.252, 'Q1', 68, 74, 8590, 469, 187, '2', '1982-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Human Factors and Ergonomics (Q1)'), (3025, 'Nonlinear Dynamics', 924090, 1.252, 'Q1', 118, 781, 35530, 11984, 2231, '16', '1990-2020', 'Aerospace Engineering (Q1); Applied Mathematics (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1)'), (3026, 'Philosophical Studies', 318116, 1.252, 'Q1', 69, 295, 10250, 720, 491, '16', '1950-2020', 'Philosophy (Q1)'), (3027, 'Television and New Media', 15274764, 1.252, 'Q1', 35, 91, 3977, 404, 158, '2', '2000-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)'), (3028, 'European Journal of Industrial Relations', 14617129, 1.251, 'Q1', 43, 38, 1764, 145, 73, '3', '1995-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (3029, 'International Review of Social Psychology', 23978570, 1.251, 'Q1', 18, 16, 797, 183, 46, '3', '2016-2020', 'Social Psychology (Q1)'), (3030, 'Journal of Social and Personal Relationships', 2654075, 1.251, 'Q1', 84, 180, 9094, 931, 321, '3', '1984-2020', 'Communication (Q1); Developmental and Educational Psychology (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)'), (3031, 'SIAM Journal on Financial Mathematics', 1945497, 1.251, 'Q1', 33, 41, 1484, 306, 105, '2', '2010-2020', 'Applied Mathematics (Q1); Finance (Q1); Numerical Analysis (Q1)'), (3032, 'Journal of Trauma and Acute Care Surgery', 21630755, 1.25, 'Q1', 187, 457, 10381, 3234, 1055, '2', '2012-2020', 'Critical Care and Intensive Care Medicine (Q1); Surgery (Q1)'), (3033, 'Perspectives in Plant Ecology, Evolution and ', 14338319, 1.25, 'Q1', 78, 32, 3024, 478, 143, '5', '1998-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (3034, 'Building Research and Information', 9613218, 1.249, 'Q1', 86, 81, 5119, 1025, 171, '3', '1991-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1)'), (3035, 'Journal of Hypertension', 14735598, 1.249, 'Q1', 172, 381, 6853, 2787, 779, '2', '1983-2020', 'Cardiology and Cardiovascular Medicine (Q1); Internal Medicine (Q1); Physiology (Q2)'), (3036, 'Journal of Industrial Relations', 221856, 1.249, 'Q1', 29, 40, 2413, 216, 97, '2', '1959-2020', 'Business and International Management (Q1); Industrial Relations (Q1)'), (3037, 'Journal of Systematics and Evolution', 17596831, 1.249, 'Q1', 46, 131, 10633, 621, 149, '2', '2008-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (3038, 'Quarterly Journal of Experimental Psychology', 17470218, 1.249, 'Q1', 76, 172, 8843, 1360, 617, '3', '2006-2020', 'Experimental and Cognitive Psychology (Q1); Medicine (miscellaneous) (Q1); Neuropsychology and Physiological Psychology (Q1); Psychology (miscellaneous) (Q1); Physiology (Q2); Physiology (medical) (Q2'), (3039, 'Environmental Sciences Europe', 21904707, 1.248, 'Q1', 35, 148, 8953, 935, 155, '5', '2011-2020', 'Pollution (Q1)'), (3040, 'Epilepsia Open', 24709239, 1.247, 'Q2', 16, 63, 2389, 693, 185, '2', '2016-2020', 'Neurology (Q2); Neurology (clinical) (Q2)'), (3041, 'Journal of Sustainable Cement-Based Materials', 21650373, 1.247, 'Q1', 19, 35, 2076, 258, 62, '3', '2012-2020', 'Ceramics and Composites (Q1); Waste Management and Disposal (Q1)'), (3042, 'Stem Cell Reviews and Reports', 26293269, 1.247, 'Q2', 73, 149, 12137, 1078, 204, '2', '2009-2020', 'Cancer Research (Q2); Cell Biology (Q2)'), (3043, 'Biological Chemistry', 14316730, 1.246, 'Q1', 118, 116, 9475, 1337, 335, '5', '1881, 1975, 1996-2020', 'Biochemistry (Q1); Clinical Biochemistry (Q1); Molecular Biology (Q2)'), (3044, 'IEEE Journal of Selected Topics in Applied Ea', 21511535, 1.246, 'Q1', 88, 521, 24726, 6143, 1323, '2', '2008-2020', 'Computers in Earth Sciences (Q1); Atmospheric Science (Q2)'), (3045, 'Brain and Cognition', 10902147, 1.245, 'Q1', 127, 79, 5855, 846, 282, '2', '1982-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q1); Neuropsychology and Physiological Psychology (Q1); Cognitive Neuros'), (3046, 'Clinical Autonomic Research', 9599851, 1.245, 'Q1', 58, 105, 2877, 512, 134, '5', '1991-2020', 'Medicine (miscellaneous) (Q1); Endocrine and Autonomic Systems (Q2); Neurology (clinical) (Q2)'), (3047, 'International Journal of Nanomedicine', 11782013, 1.245, 'Q1', 128, 681, 40894, 12698, 1913, '41', '2006-2020', 'Bioengineering (Q1); Biomaterials (Q1); Biophysics (Q1); Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Organic Chemistry (Q1); Pharmaceutical Science (Q1); Nanoscience and Nanotechnology (Q2)'), (3048, 'Energy Journal', 1956574, 1.244, 'Q1', 77, 51, 2433, 466, 189, '2', '1994-2021', 'Economics and Econometrics (Q1); Energy (miscellaneous) (Q1)'), (3049, 'European Journal of Soil Science', 13510754, 1.244, 'Q1', 111, 146, 8676, 1229, 285, '3', '1994-2020', 'Soil Science (Q1)'), (3050, 'Physical Review Fluids', 2469990, 1.244, 'Q1', 37, 588, 27697, 5433, 1519, '2', '2016-2020', 'Computational Mechanics (Q1); Fluid Flow and Transfer Processes (Q1); Modeling and Simulation (Q1)'), (3051, 'Applied Soil Ecology', 9291393, 1.243, 'Q1', 117, 292, 19126, 3621, 799, '16', '1994-2021', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology (Q1); Soil Science (Q1)'), (3052, 'Clinics in Liver Disease', 10893261, 1.243, 'Q2', 81, 60, 3745, 731, 157, '3', '1997-2020', 'Hepatology (Q2)'), (3053, 'Infection Control and Hospital Epidemiology', 15596834, 1.243, 'Q1', 138, 573, 9267, 2010, 712, '3', '1988-2020', 'Infectious Diseases (Q1); Microbiology (medical) (Q1); Epidemiology (Q2)'), (3054, 'Active Learning in Higher Education', 14697874, 1.242, 'Q1', 48, 30, 1236, 301, 61, '3', '2000-2020', 'Education (Q1)'), (3055, 'Harvard Review of Psychiatry', 14657309, 1.242, 'Q1', 78, 36, 3426, 448, 102, '2', '1993-2020', 'Psychiatry and Mental Health (Q1)'), (3056, 'Transgender Health', 2380193, 1.242, 'Q1', 20, 33, 1343, 377, 79, '2', '2016-2020', 'Gender Studies (Q1); Medicine (miscellaneous) (Q1)'), (3057, 'Annals of Emergency Medicine', 1960644, 1.241, 'Q1', 153, 392, 6283, 2154, 703, '2', '1980-2020', 'Emergency Medicine (Q1)'), (3058, 'International Journal of Biochemistry and Cel', 13572725, 1.241, 'Q2', 185, 130, 7316, 2347, 548, '3', '1975-1976, 1982-1983, 1985-1988, 1993, 1995-2020', 'Biochemistry (Q2); Cell Biology (Q2)'), (3059, 'International Journal of Entrepreneurial Beha', 13552554, 1.241, 'Q1', 67, 81, 7576, 1265, 236, '3', '1995-2020', 'Business, Management and Accounting (miscellaneous) (Q1)'), (3060, 'Journal of Functional Biomaterials', 20794983, 1.241, 'Q1', 16, 80, 4857, 874, 117, '19', '2010, 2015, 2017-2020', 'Biomaterials (Q1); Biomedical Engineering (Q1)'), (3061, 'Microbial Cell', 23112638, 1.241, 'Q1', 24, 34, 1695, 513, 147, '28', '2014-2020', 'Applied Microbiology and Biotechnology (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Parasitology (Q1); Cell Biology (Q2); Genetics (Q2); Microbiology (Q2); Molecular Biolog'), (3062, 'Neurochemistry International', 18729754, 1.241, 'Q2', 120, 186, 13567, 2549, 603, '3', '1980-2020', 'Cell Biology (Q2); Cellular and Molecular Neuroscience (Q2)'), (3063, 'Policing and Society', 10439463, 1.241, 'Q1', 41, 116, 7754, 546, 182, '3', '1990-2003, 2005-2020', 'Law (Q1); Sociology and Political Science (Q1)'), (3064, 'BMJ Open Gastroenterology', 20544774, 1.24, 'Q1', 21, 76, 2620, 424, 132, '3', '2014-2020', 'Gastroenterology (Q1)'), (3065, 'Frontiers of Medicine', 20950225, 1.24, 'Q1', 40, 88, 5928, 876, 200, '1', '2011-2020', 'Medicine (miscellaneous) (Q1)'), (3066, 'Journal of Chemical Information and Modeling', 1549960, 1.24, 'Q1', 160, 605, 32563, 5272, 991, '2', '2005-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Computer Science Applications (Q1); Library and Information Sciences (Q1)'), (3067, 'Journal of Machine Learning Research', 15337928, 1.24, 'Q1', 230, 252, 13524, 5322, 543, '2', '2001-2020', 'Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Software (Q1); Statistics and Probability (Q1)'), (3068, 'Scientific Reports', 20452322, 1.24, 'Q1', 213, 21801, 1033089, 282734, 61524, '3', '2011-2020', 'Multidisciplinary (Q1)'), (3069, 'Statistica Sinica', 10170405, 1.24, 'Q1', 77, 90, 3005, 495, 276, '22', '1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (3070, 'Brain Imaging and Behavior', 19317565, 1.239, 'Q1', 50, 376, 24028, 1779, 480, '2', '2007-2020', 'Behavioral Neuroscience (Q1); Psychiatry and Mental Health (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Cellular and Molecular Neuroscience (Q2); Cognitive Neuroscience (Q2); Neurology (Q2); Ne'), (3071, 'Journal of International Economic Law', 14643758, 1.239, 'Q1', 48, 46, 2303, 154, 101, '3', '1998-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Law (Q1)'), (3072, 'Decision Sciences', 117315, 1.238, 'Q1', 108, 94, 6259, 407, 115, '3', '1970-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Information Systems and Management (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (3073, 'Advances in Differential Equations', 10799389, 1.236, 'Q1', 57, 0, 0, 116, 64, '2', '1996-2019', 'Analysis (Q1); Applied Mathematics (Q1)'), (3074, 'Clinical Immunology', 15217035, 1.236, 'Q2', 124, 229, 11004, 1864, 495, '2', '1999-2020', 'Immunology (Q2); Immunology and Allergy (Q2)'), (3075, 'Electronic Communications in Probability', 1083589, 1.236, 'Q1', 38, 79, 1275, 399, 247, '2', '1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (3076, 'Marine Geology', 253227, 1.236, 'Q1', 134, 217, 17180, 1843, 479, '16', '1964-2020', 'Geochemistry and Petrology (Q1); Geology (Q1); Oceanography (Q1)'), (3077, 'Educational Psychology', 14695820, 1.235, 'Q1', 69, 107, 5819, 678, 213, '3', '1981-2020', 'Developmental and Educational Psychology (Q1); Education (Q1); Experimental and Cognitive Psychology (Q1)'), (3078, 'Expert Review of Clinical Immunology', 1744666, 1.235, 'Q2', 55, 109, 9518, 1444, 305, '3', '2006-2020', 'Immunology (Q2); Immunology and Allergy (Q2)'), (3079, 'Langenbeck s Archives of Surgery', 14352451, 1.235, 'Q1', 80, 160, 5575, 1081, 345, '5', '1996-2020', 'Surgery (Q1)'), (3080, 'Neural Computation', 8997667, 1.235, 'Q1', 169, 78, 3149, 1492, 103, '2', '1995-2020', 'Arts and Humanities (miscellaneous) (Q1); Cognitive Neuroscience (Q2)'), (3081, 'Astrobiology', 15578070, 1.234, 'Q1', 90, 107, 8241, 1537, 296, '2', '2001-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Space and Planetary Science (Q2)'), (3082, 'BBA Clinical', 22146474, 1.234, 'Q1', 23, 0, 0, 142, 30, '16', '2014-2017', 'Pathology and Forensic Medicine (Q1); Molecular Medicine (Q2); Physiology (medical) (Q2)'), (3083, 'Cancer Genomics and Proteomics', 17906245, 1.234, 'Q1', 40, 76, 3972, 650, 149, '39', '2004-2020', 'Medicine (miscellaneous) (Q1); Biochemistry (Q2); Cancer Research (Q2); Genetics (Q2); Molecular Biology (Q2)'), (3084, 'Diabetes and Metabolism Journal', 22336087, 1.234, 'Q1', 46, 113, 4038, 797, 198, '13', '2011-2020', 'Endocrinology, Diabetes and Metabolism (Q1)'), (3085, 'Equity and Excellence in Education', 10665684, 1.234, 'Q1', 42, 42, 2208, 180, 96, '3', '1963-1982, 1984, 1986-1988, 1991, 1993-2020', 'Education (Q1)'), (3086, 'Materials Science and Engineering C', 9284931, 1.234, 'Q1', 130, 1078, 63976, 22401, 3282, '16', '1993-2021', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (3087, 'Neuroscience Research', 18728111, 1.234, 'Q1', 99, 174, 9582, 840, 281, '42', '1984-2020', 'Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2)'), (3088, 'Sedimentary Geology', 370738, 1.234, 'Q1', 113, 127, 11792, 1466, 401, '16', '1967-2020', 'Geology (Q1); Stratigraphy (Q1)'), (3089, 'Birth', 1523536, 1.233, 'Q1', 83, 64, 2394, 563, 167, '3', '1973-2020', 'Obstetrics and Gynecology (Q1)'), (3090, 'Current Opinion in Green and Sustainable Chem', 24522236, 1.233, 'Q1', 29, 105, 5229, 1593, 238, '16', '2016-2020', 'Chemistry (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Process Chemistry and Technology (Q1); Waste Management and Disposal (Q1); Catalysis (Q2)'), (3091, 'Journal of Prosthetic Dentistry', 223913, 1.233, 'Q1', 127, 528, 15452, 3015, 840, '2', '1951-2020', 'Medicine (miscellaneous) (Q1); Oral Surgery (Q1)'), (3092, 'Test', 11330686, 1.233, 'Q1', 44, 82, 2618, 330, 123, '2', '1988, 1992-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (3093, 'AAPG Bulletin', 1491423, 1.232, 'Q1', 133, 95, 7036, 1215, 295, '2', '1968-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Fuel Technology (Q1); Geochemistry and Petrology (Q1); Geology (Q1)'), (3094, 'Endocrinology and Metabolism Clinics of North', 8898529, 1.232, 'Q1', 102, 60, 3351, 804, 170, '3', '1987-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Endocrinology (Q2)'), (3095, 'European Physical Journal A', 1434601, 1.232, 'Q1', 106, 300, 18530, 3080, 690, '2', '1998-2020', 'Nuclear and High Energy Physics (Q1)'), (3096, 'Human Development', 14230054, 1.232, 'Q1', 60, 22, 820, 174, 56, '19', '1958-2020', 'Developmental and Educational Psychology (Q1)'), (3097, 'Otolaryngology - Head and Neck Surgery', 10976817, 1.232, 'Q1', 121, 516, 13087, 2975, 994, '2', '1978-2020', 'Otorhinolaryngology (Q1); Surgery (Q1)'), (3098, 'Statistical Modelling', 1471082, 1.232, 'Q1', 43, 48, 1804, 172, 80, '3', '2001-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (3099, 'Ticks and Tick-borne Diseases', 18779603, 1.232, 'Q1', 46, 211, 10034, 1968, 538, '5', '2010-2020', 'Infectious Diseases (Q1); Insect Science (Q1); Parasitology (Q1); Microbiology (Q2)'), (3100, 'Organometallics', 15206041, 1.231, 'Q1', 172, 517, 31183, 5764, 1638, '2', '1982-2020', 'Inorganic Chemistry (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)'), (3101, 'Transportation Research Part F: Traffic Psych', 13698478, 1.231, 'Q1', 94, 218, 11675, 3204, 778, '3', '1998-2020', 'Applied Psychology (Q1); Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Transportation (Q1)'), (3102, 'BMC Public Health', 14712458, 1.23, 'Q1', 143, 1871, 83739, 14428, 4066, '3', '2001-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (3103, 'BMC Pulmonary Medicine', 14712466, 1.23, 'Q1', 59, 318, 9663, 2201, 673, '3', '2001-2020', 'Pulmonary and Respiratory Medicine (Q1)'), (3104, 'European Thyroid Journal', 22350640, 1.23, 'Q1', 10, 74, 2565, 478, 91, '19', '2017-2020', 'Endocrinology, Diabetes and Metabolism (Q1)'), (3105, 'Frontiers in Neurology', 16642295, 1.23, 'Q2', 67, 1791, 94841, 11543, 2998, '19', '2010-2020', 'Neurology (Q2); Neurology (clinical) (Q2)'), (3106, 'IEEE Wireless Communications Letters', 21622345, 1.23, 'Q1', 72, 522, 6907, 6003, 900, '2', '2012-2020', 'Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3107, 'IET Nanodielectrics', 25143255, 1.23, 'Q1', 9, 0, 0, 138, 20, '3', '2018-2019', 'Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1)'), (3108, 'Journal of Personality Disorders', 885579, 1.23, 'Q1', 93, 79, 4189, 414, 160, '2', '1987-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (3109, 'NDT and E International', 9638695, 1.23, 'Q1', 91, 115, 3918, 1595, 367, '3', '1990-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1)'), (3110, 'Statistical Papers', 9325026, 1.23, 'Q1', 36, 170, 5626, 485, 256, '2', '1988-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (3111, 'Clinical Genitourinary Cancer', 15587673, 1.229, 'Q1', 45, 191, 5870, 1936, 704, '2', '2005-2020', 'Urology (Q1); Oncology (Q2)'), (3112, 'Environmental Microbiology Reports', 17582229, 1.229, 'Q1', 69, 80, 3992, 855, 265, '2', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3113, 'Frontiers in Nutrition', 2296861, 1.229, 'Q1', 33, 320, 21969, 2250, 374, '19', '2014-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Food Science (Q1); Nutrition and Dietetics (Q1)'), (3114, 'International Journal of Solids and Structure', 207683, 1.229, 'Q1', 169, 465, 21812, 4355, 1054, '3', '1965-2020', 'Applied Mathematics (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)'), (3115, 'Journal of Services Marketing', 8876045, 1.229, 'Q1', 102, 101, 8086, 1155, 214, '3', '1987-2020', 'Marketing (Q1)'), (3116, 'Organization and Environment', 15527417, 1.229, 'Q1', 60, 41, 3257, 325, 74, '2', '1987-2020', 'Environmental Science (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q1)'), (3117, 'Progress in Brain Research', 18757855, 1.229, 'Q2', 144, 112, 13311, 729, 9, '16', '1963-1980, 1982-2020', 'Neuroscience (miscellaneous) (Q2)'), (3118, 'Chinese Journal of International Politics', 17508924, 1.228, 'Q1', 28, 17, 2060, 150, 49, '3', '2006-2020', 'Political Science and International Relations (Q1)'), (3119, 'Food Reviews International', 87559129, 1.228, 'Q1', 72, 117, 15076, 584, 100, '2', '1985-2020', 'Chemical Engineering (miscellaneous) (Q1); Food Science (Q1)'), (3120, 'Journal of Oncology', 16878450, 1.228, 'Q2', 54, 214, 9700, 1182, 294, '2', '2009-2020', 'Oncology (Q2)'), (3121, 'Learning and Memory', 10720502, 1.228, 'Q1', 136, 59, 3288, 558, 208, '2', '1994-2020', 'Neuropsychology and Physiological Psychology (Q1); Cellular and Molecular Neuroscience (Q2); Cognitive Neuroscience (Q2)'), (3122, 'ACS Applied Nano Materials', 25740970, 1.227, 'Q1', 29, 1200, 65848, 7925, 1630, '2', '2018-2020', 'Materials Science (miscellaneous) (Q1)'), (3123, 'Biogerontology', 15736768, 1.227, 'Q1', 74, 59, 4221, 771, 162, '16', '2000-2020', 'Geriatrics and Gerontology (Q1); Gerontology (Q1); Aging (Q2)'), (3124, 'Journal of Pediatrics', 223476, 1.227, 'Q1', 205, 809, 17242, 6724, 2111, '2', '1932-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (3125, 'Journal of Prosthodontic Research', 22124632, 1.227, 'Q1', 38, 80, 2515, 873, 209, '16', '2009-2020', 'Dentistry (miscellaneous) (Q1); Oral Surgery (Q1)'), (3126, 'Pharmacotherapy', 18759114, 1.227, 'Q1', 109, 122, 5264, 1562, 389, '2', '1981-2020', 'Pharmacology (medical) (Q1)'), (3127, 'Psychological science in the public interest ', 21600031, 1.227, 'Q1', 1, 1, 0, 26, 8, '2', '2015-2020', 'Medicine (miscellaneous) (Q1)'), (3128, 'Structural Health Monitoring', 14759217, 1.227, 'Q1', 62, 245, 11364, 1585, 291, '3', '2002-2020', 'Biophysics (Q1); Mechanical Engineering (Q1)'), (3129, 'Pediatric obesity', 20476302, 1.226, 'Q1', 69, 131, 6072, 1053, 283, '3', '2012-2020', 'Health Policy (Q1); Nutrition and Dietetics (Q1); Pediatrics, Perinatology and Child Health (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3130, 'Virchows Archiv', 9456317, 1.226, 'Q1', 99, 238, 7358, 1775, 497, '5', '1947-1948, 1950-1959, 1994-2020', 'Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (3131, 'Frontiers in Environmental Science', 2296665, 1.225, 'Q1', 37, 264, 17953, 1830, 404, '19', '2013-2020', 'Environmental Science (miscellaneous) (Q1)'), (3132, 'Kidney International Reports', 24680249, 1.225, 'Q1', 22, 352, 8465, 1584, 479, '2', '2016-2020', 'Nephrology (Q1)'), (3133, 'Library and Information Science Research', 7408188, 1.225, 'Q1', 57, 37, 2143, 305, 98, '3', '1987-2020', 'Information Systems (Q1); Library and Information Sciences (Q1)'), (3134, 'BMC Immunology', 14712172, 1.224, 'Q2', 59, 60, 2551, 547, 144, '3', '2000-2020', 'Immunology (Q2)'), (3135, 'Cooperation and Conflict', 108367, 1.224, 'Q1', 40, 40, 2768, 300, 88, '3', '1965, 1967-2020', 'Development (Q1); Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1); Strategy and Management (Q1)'), (3136, 'Dermatology', 10188665, 1.224, 'Q1', 92, 127, 4316, 715, 193, '19', '1893, 1895-2020', 'Dermatology (Q1)'), (3137, 'Psychiatry Research', 1651781, 1.224, 'Q1', 134, 799, 31304, 7924, 2425, '42', '1979-2020', 'Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)'), (3138, 'Security Dialogue', 9670106, 1.224, 'Q1', 69, 51, 3585, 326, 92, '3', '1970-1972, 1976-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (3139, 'Aggressive Behavior', 10982337, 1.223, 'Q1', 92, 52, 2846, 488, 174, '2', '1974-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Psychology (miscellaneous) (Q1)'), (3140, 'Animal Health Research Reviews', 14662523, 1.223, 'Q1', 57, 33, 1684, 267, 52, '3', '1996, 2000-2020', 'Animal Science and Zoology (Q1)'), (3141, 'British Accounting Review', 10958347, 1.223, 'Q1', 67, 44, 3565, 648, 112, '2', '1988-2020', 'Accounting (Q1)'), (3142, 'Consciousness and Cognition', 10538100, 1.223, 'Q1', 108, 124, 8371, 1256, 458, '2', '1992-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Experimental and Cognitive Psychology (Q2)'), (3143, 'Electrochemistry Communications', 13882481, 1.223, 'Q1', 192, 181, 5511, 3321, 735, '2', '1999-2020', 'Electrochemistry (Q1)'), (3144, 'Experimental Hematology and Oncology', 21623619, 1.223, 'Q1', 26, 37, 2219, 371, 95, '3', '2012-2020', 'Hematology (Q1); Cancer Research (Q2); Oncology (Q2)'), (3145, 'International Multilingual Research Journal', 19313160, 1.223, 'Q1', 21, 26, 1370, 140, 54, '3', '2010-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3146, 'Journal of Microbiology, Immunology and Infec', 19959133, 1.223, 'Q1', 57, 237, 6848, 1406, 367, '22', '1998-2020', 'Medicine (miscellaneous) (Q1); Immunology and Allergy (Q2); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Microbiology (medical) (Q2)'), (3147, 'Hydrological Processes', 10991085, 1.222, 'Q1', 161, 385, 24108, 3253, 849, '3', '1986-2020', 'Water Science and Technology (Q1)'), (3148, 'Academic Emergency Medicine', 15532712, 1.221, 'Q1', 124, 281, 5052, 1340, 425, '2', '1994-2020', 'Emergency Medicine (Q1); Medicine (miscellaneous) (Q1)'), (3149, 'Cerebrovascular Diseases', 14219786, 1.221, 'Q1', 104, 113, 2721, 637, 215, '19', '1987-1988, 1991-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Neurology (Q2); Neurology (clinical) (Q2)'), (3150, 'Clinical Simulation in Nursing', 18761399, 1.221, 'Q1', 41, 113, 2731, 633, 239, '2', '2008-2009, 2011, 2014, 2016-2020', 'Education (Q1); Modeling and Simulation (Q1); Nursing (miscellaneous) (Q1)'), (3151, 'Friction', 22237704, 1.221, 'Q1', 30, 135, 6689, 810, 119, '1', '2013-2020', 'Mechanical Engineering (Q1); Surfaces, Coatings and Films (Q1)'), (3152, 'Journal of Orthopaedic Trauma', 8905339, 1.221, 'Q1', 121, 252, 2029, 1893, 817, '2', '1987-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1); Sports Science (Q2)'), (3153, 'Briefings in Functional Genomics', 20412649, 1.22, 'Q1', 67, 30, 2578, 501, 132, '3', '2010-2020', 'Medicine (miscellaneous) (Q1); Biochemistry (Q2); Genetics (Q2); Molecular Biology (Q2)'), (3154, 'Cells', 20734409, 1.22, 'Q1', 22, 2644, 0, 3937, 905, '19', '2019-2020', 'Medicine (miscellaneous) (Q1)'), (3155, 'Journal of Air Transport Management', 9696997, 1.22, 'Q1', 75, 142, 7377, 1612, 349, '3', '1994-1995, 1997-2020', 'Law (Q1); Management, Monitoring, Policy and Law (Q1); Strategy and Management (Q1); Transportation (Q1)'), (3156, 'Journal of Language, Identity and Education', 15327701, 1.219, 'Q1', 21, 71, 3729, 224, 83, '3', '2010-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3157, 'Journal of NeuroImmune Pharmacology', 15571890, 1.219, 'Q1', 70, 94, 8120, 599, 150, '2', '2006-2020', 'Pharmacology (Q1); Immunology (Q2); Immunology and Allergy (Q2); Neuroscience (miscellaneous) (Q2)'), (3158, 'Progress in Crystal Growth and Characterizati', 9608974, 1.219, 'Q1', 47, 6, 849, 145, 21, '3', '1990-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (3159, 'American Journal of Botany', 15372197, 1.218, 'Q1', 151, 151, 9240, 1525, 476, '2', '1946-1949, 1965-1970, 1974, 1977, 1980-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Genetics (Q2)'), (3160, 'Engineering Studies', 19378629, 1.218, 'Q1', 20, 13, 578, 59, 30, '3', '2009-2020', 'Education (Q1); Engineering (miscellaneous) (Q1); History and Philosophy of Science (Q1)'), (3161, 'IEEE Transactions on Information Theory', 189448, 1.218, 'Q1', 286, 493, 17430, 7343, 1439, '2', '1963-2020', 'Computer Science Applications (Q1); Information Systems (Q1); Library and Information Sciences (Q1)'), (3162, 'IEEE Transactions on Multimedia', 15209210, 1.218, 'Q1', 129, 364, 13375, 6481, 722, '2', '1999-2020', 'Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Media Technology (Q1); Signal Processing (Q1)'), (3163, 'Mikrochimica Acta', 14365073, 1.218, 'Q1', 87, 675, 26419, 10392, 1955, '28', '1926-1944, 1947-2020', 'Analytical Chemistry (Q1)'), (3164, 'SIAM Journal on Applied Dynamical Systems', 15360040, 1.218, 'Q1', 61, 90, 4159, 991, 228, '2', '2002-2020', 'Analysis (Q1); Modeling and Simulation (Q1)'), (3165, 'Communications in Computational Physics', 18152406, 1.217, 'Q1', 56, 149, 6335, 536, 177, '3', '2007-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (3166, 'Comunicar', 11343478, 1.217, 'Q1', 40, 40, 1743, 643, 120, '12', '2008-2020', 'Communication (Q1); Cultural Studies (Q1); Education (Q1)'), (3167, 'Economic Development and Cultural Change', 130079, 1.217, 'Q1', 71, 43, 2079, 146, 83, '2', '1978-1979, 1982-2020', 'Development (Q1); Economics and Econometrics (Q1)'), (3168, 'Experimental Eye Research', 144835, 1.217, 'Q1', 125, 336, 18717, 2740, 773, '2', '1961-2020', 'Ophthalmology (Q1); Sensory Systems (Q2); Cellular and Molecular Neuroscience (Q3)'), (3169, 'Neuroepidemiology', 2515350, 1.217, 'Q2', 87, 58, 2310, 520, 140, '19', '1982-2020', 'Epidemiology (Q2); Neurology (clinical) (Q2)'), (3170, 'Transfer', 10242589, 1.217, 'Q1', 23, 36, 1122, 228, 73, '3', '1995-1997, 2010-2020', 'Industrial Relations (Q1); Organizational Behavior and Human Resource Management (Q1)'), (3171, 'British Journal of Clinical Pharmacology', 13652125, 1.216, 'Q1', 146, 366, 14447, 3232, 796, '3', '1974-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1)'), (3172, 'Global Bioethics', 11287462, 1.216, 'Q1', 6, 14, 525, 40, 10, '2', '1996-2009, 2011, 2014-2016, 2018-2020', 'Health Policy (Q1); Health (social science) (Q1); Philosophy (Q1)'), (3173, 'Lung Cancer International', 20903200, 1.216, 'Q1', 3, 0, 0, 7, 1, '32', '2015-2017', 'Pulmonary and Respiratory Medicine (Q1); Oncology (Q2)'), (3174, 'Capitalism, Nature, Socialism', 10455752, 1.215, 'Q1', 31, 60, 2720, 223, 82, '3', '1988-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1)'), (3175, 'Biomolecular Concepts', 1868503, 1.214, 'Q1', 32, 20, 964, 308, 64, '5', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Cellular and Molecular Neuroscience (Q3)'), (3176, 'European Planning Studies', 9654313, 1.214, 'Q1', 81, 176, 11065, 1315, 353, '3', '1993-2020', 'Geography, Planning and Development (Q1)'), (3177, 'Health Policy', 18726054, 1.214, 'Q1', 92, 175, 8315, 1526, 499, '42', '1984-2020', 'Health Policy (Q1)'), (3178, 'Journal of Gastroenterology and Hepatology (A', 14401746, 1.214, 'Q1', 130, 479, 14015, 2906, 839, '3', '1986-2020', 'Gastroenterology (Q1); Hepatology (Q2)'), (3179, 'Research in Science Education', 15731898, 1.214, 'Q1', 53, 169, 10128, 969, 270, '16', '1971-2020', 'Education (Q1)'), (3180, 'Restoration Ecology', 1526100, 1.214, 'Q1', 100, 248, 14538, 1644, 455, '3', '1993-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (3181, 'Alzheimer Disease and Associated Disorders', 8930341, 1.213, 'Q1', 95, 58, 1659, 480, 183, '2', '1987-2020', 'Clinical Psychology (Q1); Geriatrics and Gerontology (Q1); Gerontology (Q1); Psychiatry and Mental Health (Q1)'), (3182, 'European Journal of Mechanics, A/Solids', 9977538, 1.213, 'Q1', 89, 159, 6761, 2270, 508, '16', '1990-1992, 1995-2021', 'Materials Science (miscellaneous) (Q1); Mathematical Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3183, 'Haemophilia', 13518216, 1.213, 'Q1', 92, 250, 5389, 1396, 441, '3', '1995-2020', 'Hematology (Q1); Medicine (miscellaneous) (Q1); Genetics (clinical) (Q2)'), (3184, 'Human Pathology', 15328392, 1.213, 'Q1', 139, 137, 5725, 2727, 838, '3', '1970-2020', 'Pathology and Forensic Medicine (Q1)'), (3185, 'Journal of Behavioral Medicine', 15733521, 1.213, 'Q1', 94, 106, 5395, 850, 262, '2', '1978-2020', 'Psychiatry and Mental Health (Q1); Psychology (miscellaneous) (Q1)'), (3186, 'Anthropocene', 22133054, 1.212, 'Q1', 33, 37, 2623, 377, 85, '3', '2013-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Ecology (Q1); Global and Planetary Change (Q2)'), (3187, 'Clinics in Perinatology', 955108, 1.212, 'Q1', 78, 71, 3616, 656, 160, '3', '1974-2020', 'Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (3188, 'Current Opinion in Critical Care', 15317072, 1.212, 'Q1', 88, 96, 940, 902, 264, '2', '1996-2020', 'Critical Care and Intensive Care Medicine (Q1)'), (3189, 'Dialogues in Human Geography', 20438206, 1.212, 'Q1', 30, 75, 1670, 251, 45, '2', '2011-2020', 'Geography, Planning and Development (Q1)'), (3190, 'International Journal of Hydrogen Energy', 3603199, 1.212, 'Q1', 215, 3124, 168963, 45807, 8065, '3', '1976-2020', 'Condensed Matter Physics (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (3191, 'Journal of Inflammation', 14769255, 1.212, 'Q1', 54, 34, 1571, 325, 83, '3', '2004-2020', 'Clinical Biochemistry (Q1); Cell Biology (Q2)'), (3192, 'Sports Health', 19410921, 1.212, 'Q1', 44, 93, 2907, 697, 194, '2', '2013-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)'), (3193, 'Expert Review of Anti-Infective Therapy', 14787210, 1.211, 'Q2', 77, 169, 14948, 1234, 258, '3', '2003-2020', 'Infectious Diseases (Q2); Microbiology (Q2); Microbiology (medical) (Q2); Virology (Q2)'), (3194, 'General Hospital Psychiatry', 1638343, 1.211, 'Q1', 103, 144, 5691, 818, 239, '2', '1979-2020', 'Psychiatry and Mental Health (Q1)'), (3195, 'Journal of Studies in International Education', 10283153, 1.211, 'Q1', 61, 54, 2329, 281, 90, '2', '1997-2020', 'Education (Q1)'), (3196, 'Journal of Urban Health', 10993460, 1.211, 'Q1', 92, 92, 4228, 781, 243, '5', '1988, 1998-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Urban Studies (Q1)'), (3197, 'Plant Direct', 24754455, 1.211, 'Q1', 11, 103, 6484, 465, 165, '2', '2017-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (3198, 'Proceedings of the Japan Academy Series B: Ph', 13492896, 1.211, 'Q1', 55, 36, 2343, 592, 117, '6', '1977-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Multidisciplinary (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3199, 'Applied Ocean Research', 1411187, 1.21, 'Q1', 67, 355, 14050, 2364, 641, '3', '1979-2020', 'Ocean Engineering (Q1)'), (3200, 'Current Opinion in Clinical Nutrition and Met', 13631950, 1.21, 'Q1', 111, 76, 1695, 1024, 225, '2', '1998-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (3201, 'Futures', 163287, 1.21, 'Q1', 79, 90, 5966, 1163, 297, '3', '1968-2020', 'Business and International Management (Q1); Development (Q1); Sociology and Political Science (Q1)'), (3202, 'Seminars in Diagnostic Pathology', 19301111, 1.21, 'Q1', 69, 48, 3121, 537, 141, '3', '1984-2020', 'Pathology and Forensic Medicine (Q1)'), (3203, 'Expert Review of Anticancer Therapy', 14737140, 1.209, 'Q1', 69, 119, 8810, 1312, 312, '3', '2001-2020', 'Pharmacology (medical) (Q1); Oncology (Q2)'), (3204, 'Psychology and Health', 8870446, 1.209, 'Q1', 90, 161, 8816, 868, 238, '3', '1987-2020', 'Applied Psychology (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3205, 'Travel Medicine and Infectious Disease', 18730442, 1.209, 'Q1', 48, 322, 7001, 973, 219, '2', '2003-2020', 'Public Health, Environmental and Occupational Health (Q1); Infectious Diseases (Q2)'), (3206, 'Computers and Electronics in Agriculture', 1681699, 1.208, 'Q1', 115, 648, 28725, 9479, 1298, '16', '1985-2020', 'Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Computer Science Applications (Q1); Forestry (Q1); Horticulture (Q1)'), (3207, 'International Journal of Thermal Sciences', 12900729, 1.208, 'Q1', 119, 331, 13507, 4983, 1267, '8', '1973-1978, 1987, 1999-2021', 'Condensed Matter Physics (Q1); Engineering (miscellaneous) (Q1)'), (3208, 'Journal of Clinical Neurology (Korea', 17386586, 1.208, 'Q2', 45, 122, 2846, 664, 178, '13', '2008-2020', 'Neurology (Q2); Neurology (clinical) (Q2)'), (3209, 'Journal of Sports Sciences', 1466447, 1.208, 'Q1', 137, 357, 15837, 3137, 1013, '3', '1983-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)'), (3210, 'Reproduction', 17417899, 1.208, 'Q1', 136, 188, 12359, 1885, 464, '3', '1996-2020', 'Embryology (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Cell Biology (Q2); Endocrinology (Q2)'), (3211, 'Reproductive BioMedicine Online', 14726483, 1.208, 'Q1', 111, 256, 9510, 2029, 523, '3', '2000-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Developmental Biology (Q2)'), (3212, 'Alcohol research : current reviews', 21694796, 1.207, 'Q1', 95, 0, 0, 314, 74, '2', '2012-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (3213, 'Chinese Physics C', 16741137, 1.207, 'Q1', 46, 204, 11433, 2344, 585, '3', '2008-2020', 'Instrumentation (Q1); Nuclear and High Energy Physics (Q1); Astronomy and Astrophysics (Q2)'), (3214, 'Comprehensive Results in Social Psychology', 23743611, 1.207, 'Q1', 8, 10, 611, 73, 27, '3', '2016-2018, 2020', 'Social Psychology (Q1)'), (3215, 'English for Specific Purposes', 8894906, 1.207, 'Q1', 72, 32, 1589, 293, 80, '3', '1980-1981, 1986-2021', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3216, 'IEEE Transactions on Services Computing', 19391374, 1.207, 'Q1', 70, 141, 3692, 1950, 261, '2', '2008-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Information Systems and Management (Q1)'), (3217, 'Helicobacter', 10834389, 1.206, 'Q1', 79, 88, 3648, 1161, 254, '3', '1996-2020', 'Gastroenterology (Q1); Medicine (miscellaneous) (Q1); Infectious Diseases (Q2)'), (3218, 'Journal of Pediatric Gastroenterology and Nut', 2772116, 1.206, 'Q1', 131, 410, 2644, 3052, 1016, '2', '1982-2020', 'Gastroenterology (Q1); Pediatrics, Perinatology and Child Health (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (3219, 'Current Infectious Disease Reports', 15343146, 1.205, 'Q2', 47, 34, 2354, 553, 153, '2', '1999-2020', 'Infectious Diseases (Q2)'), (3220, 'Journal of the Royal Statistical Society. Ser', 359254, 1.205, 'Q1', 72, 56, 2534, 471, 200, '3', '1981, 1983-1991, 1993, 1996-2020', 'Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q1)'), (3221, 'Neurobiology of Learning and Memory', 10959564, 1.205, 'Q1', 121, 153, 11125, 1525, 525, '2', '1995-2020', 'Behavioral Neuroscience (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)'), (3222, 'Stem Cells International', 16879678, 1.205, 'Q2', 64, 229, 14503, 4574, 940, '2', '2010-2020', 'Cell Biology (Q2); Molecular Biology (Q2)'), (3223, 'Wear', 431648, 1.205, 'Q1', 160, 317, 12826, 5539, 1268, '16', '1957-2020', 'Condensed Matter Physics (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)'), (3224, 'Biochimica et Biophysica Acta - General Subje', 18728006, 1.204, 'Q1', 158, 212, 13411, 3217, 837, '16', '1947-2020', 'Biophysics (Q1); Biochemistry (Q2); Molecular Biology (Q2)'), (3225, 'BioFactors', 9516433, 1.204, 'Q1', 94, 98, 6413, 1215, 212, '2', '1988-1995, 1997-2020', 'Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Biochemistry (Q2); Molecular Medicine (Q2)'), (3226, 'Instructional Science', 204277, 1.204, 'Q1', 75, 28, 1827, 351, 108, '16', '1972-1992, 1994-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (3227, 'Journal of the European Ceramic Society', 1873619, 1.204, 'Q1', 150, 740, 30934, 9836, 1912, '16', '1989-2020', 'Ceramics and Composites (Q1); Materials Chemistry (Q1)'), (3228, 'Research in the Teaching of English', 34527, 1.204, 'Q1', 37, 19, 867, 116, 54, '2', '1996-2001, 2004-2019', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3229, 'Veterinary Research', 9284249, 1.204, 'Q1', 104, 138, 6511, 1284, 316, '3', '1993-2020', 'Veterinary (miscellaneous) (Q1)'), (3230, 'Zoologica Scripta', 14636409, 1.204, 'Q1', 64, 57, 4111, 527, 173, '3', '1971-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2); Molecular Biology (Q2)'), (3231, 'Aeolian Research', 18759637, 1.203, 'Q1', 43, 42, 2465, 596, 160, '3', '2009-2020', 'Earth-Surface Processes (Q1); Geology (Q1)'), (3232, 'Behavioral Ecology and Sociobiology', 3405443, 1.203, 'Q1', 120, 152, 10919, 1373, 525, '5', '1976-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3233, 'Current Gastroenterology Reports', 15228037, 1.203, 'Q1', 63, 62, 4180, 773, 194, '2', '1999-2020', 'Medicine (miscellaneous) (Q1); Gastroenterology (Q2)'), (3234, 'Entomologia Generalis', 1718177, 1.203, 'Q1', 24, 30, 1875, 433, 87, '5', '1994-2002, 2004-2020', 'Insect Science (Q1)'), (3235, 'Journal of Agricultural and Food Chemistry', 15205118, 1.203, 'Q1', 297, 1522, 74834, 21746, 4155, '2', '1908, 1953-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)'), (3236, 'Journal of Hydrology X', 25899155, 1.203, 'Q1', 7, 20, 1163, 119, 30, '16', '2019-2020', 'Water Science and Technology (Q1)'), (3237, 'Water Resources and Industry', 22123717, 1.203, 'Q1', 34, 18, 877, 300, 45, '16', '2013-2020', 'Geography, Planning and Development (Q1); Water Science and Technology (Q1)'), (3238, 'International Journal of Housing Policy', 19491247, 1.202, 'Q1', 33, 49, 2443, 312, 77, '3', '2014-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)'), (3239, 'International Marketing Review', 2651335, 1.202, 'Q1', 89, 46, 4029, 832, 169, '3', '1983-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (3240, 'Mechanism and Machine Theory', 3741052, 1.202, 'Q1', 110, 327, 13195, 3831, 831, '3', '1972-2021', 'Bioengineering (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (3241, 'Police Quarterly', 10986111, 1.202, 'Q1', 50, 28, 1884, 214, 59, '2', '1998-2020', 'Law (Q1); Social Sciences (miscellaneous) (Q1)'), (3242, 'Public Health Reports', 333549, 1.202, 'Q1', 92, 134, 4163, 729, 289, '2', '1945-1970, 1974-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (3243, 'Journal of Surgical Oncology', 10969098, 1.201, 'Q1', 111, 426, 11576, 3265, 967, '2', '1969-2020', 'Medicine (miscellaneous) (Q1); Surgery (Q1); Oncology (Q2)'), (3244, 'Journal of the Academy of Nutrition and Diete', 22122672, 1.201, 'Q1', 171, 198, 9193, 1995, 548, '2', '2012-2020', 'Food Science (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (3245, 'Island Studies Journal', 17152593, 1.2, 'Q1', 21, 35, 2058, 316, 85, '9', '2010-2020', 'Geography, Planning and Development (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (3246, 'Journal of Early Childhood Literacy', 14687984, 1.2, 'Q1', 37, 50, 2979, 251, 79, '3', '2001-2020', 'Education (Q1)'), (3247, 'Journal of Environmental Informatics', 17262135, 1.2, 'Q1', 31, 22, 1150, 240, 57, '9', '2007-2020', 'Computer Science Applications (Q1); Decision Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)'), (3248, 'Journal of Organic Chemistry', 15206904, 1.2, 'Q1', 228, 1520, 82942, 18524, 4598, '2', '1936-2020', 'Organic Chemistry (Q1)'), (3249, 'Current Opinion in Endocrinology, Diabetes an', 1752296, 1.199, 'Q1', 67, 68, 1240, 644, 169, '2', '2007-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Endocrinology (Q2)'), (3250, 'Cyberpsychology, Behavior, and Social Network', 21522715, 1.199, 'Q1', 143, 150, 4604, 1464, 334, '2', '2010-2020', 'Applied Psychology (Q1); Communication (Q1); Computer Science Applications (Q1); Human-Computer Interaction (Q1); Medicine (miscellaneous) (Q1); Social Psychology (Q1)'), (3251, 'Energy Reports', 23524847, 1.199, 'Q1', 33, 983, 28463, 1788, 239, '3', '2015-2020', 'Energy (miscellaneous) (Q1)'), (3252, 'European Journal of Marketing', 3090566, 1.199, 'Q1', 100, 170, 14682, 1601, 331, '3', '1967-1990, 2001, 2005-2020', 'Marketing (Q1)'), (3253, 'Journal of Glaciology', 221430, 1.199, 'Q1', 100, 75, 4819, 843, 264, '3', '1979-1985, 1988-2020', 'Earth-Surface Processes (Q1)'), (3254, 'Advances in dental research', 8959374, 1.198, 'Q1', 63, 0, 0, 184, 44, '2', '1987-2003, 2005-2006, 2008-2016, 2018-2019', 'Medicine (miscellaneous) (Q1)'), (3255, 'Journal of Happiness Studies', 13894978, 1.198, 'Q1', 73, 193, 13421, 1343, 345, '16', '2001, 2005-2020', 'Social Sciences (miscellaneous) (Q1)'), (3256, 'Experimental Cell Research', 10902422, 1.197, 'Q2', 188, 426, 21154, 4596, 1190, '2', '1950-2020', 'Cell Biology (Q2)'), (3257, 'Graefe s Archive for Clinical and Experimenta', 721832, 1.196, 'Q1', 101, 426, 12390, 2617, 836, '5', '1870-1944, 1947-1965, 1982-2020', 'Ophthalmology (Q1); Sensory Systems (Q2); Cellular and Molecular Neuroscience (Q3)'), (3258, 'Journal of English for Academic Purposes', 14751585, 1.196, 'Q1', 56, 58, 3028, 462, 149, '3', '2002-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3259, 'Therapeutic Advances in Drug Safety', 20420986, 1.196, 'Q1', 32, 34, 1478, 426, 94, '3', '2010-2020', 'Pharmacology (medical) (Q1)'), (3260, 'ZDM - International Journal on Mathematics Ed', 18639704, 1.196, 'Q1', 44, 118, 5746, 624, 264, '5', '1997-2020', 'Education (Q1); Mathematics (miscellaneous) (Q1)'), (3261, 'Artificial Intelligence Review', 2692821, 1.195, 'Q1', 78, 203, 20177, 1833, 187, '16', '1986-2020', 'Artificial Intelligence (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3262, 'Journal of Women s Health', 15409996, 1.195, 'Q1', 98, 220, 7917, 1428, 565, '2', '1997-2020', 'Medicine (miscellaneous) (Q1)'), (3263, 'Urban Review, The', 15731960, 1.195, 'Q1', 39, 64, 4391, 248, 124, '16', '1967-1976, 1978-2020', 'Education (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)'), (3264, 'Annals of Clinical Microbiology and Antimicro', 14760711, 1.194, 'Q1', 53, 60, 2842, 696, 164, '3', '2002-2020', 'Medicine (miscellaneous) (Q1); Infectious Diseases (Q2); Microbiology (medical) (Q2)'), (3265, 'Materials Characterization', 10445803, 1.194, 'Q1', 97, 599, 25469, 6577, 1511, '2', '1970, 1990-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (3266, 'Solid Earth', 18699510, 1.194, 'Q1', 44, 123, 11213, 912, 264, '5', '2010-2020', 'Earth-Surface Processes (Q1); Geochemistry and Petrology (Q1); Geology (Q1); Geophysics (Q1); Paleontology (Q1); Soil Science (Q1); Stratigraphy (Q1)'), (3267, 'International Journal of Logistics Management', 17586550, 1.193, 'Q1', 77, 63, 5113, 1073, 178, '3', '1990-2020', 'Business and International Management (Q1); Transportation (Q1)'), (3268, 'Journal of Cardiovascular Electrophysiology', 15408167, 1.193, 'Q1', 138, 519, 9862, 1896, 747, '3', '1990-2020', 'Cardiology and Cardiovascular Medicine (Q1); Physiology (medical) (Q2)'), (3269, 'Personality and Mental Health', 19328621, 1.193, 'Q1', 22, 32, 1743, 247, 77, '3', '2009-2020', 'Health Policy (Q1); Psychiatric Mental Health (Q1); Psychiatry and Mental Health (Q1)'), (3270, 'State Politics and Policy Quarterly', 15324400, 1.193, 'Q1', 38, 28, 1845, 105, 59, '2', '2001-2020', 'Arts and Humanities (miscellaneous) (Q1); Political Science and International Relations (Q1)'), (3271, 'Cytotherapy', 14772566, 1.192, 'Q1', 86, 96, 4116, 1588, 355, '2', '1999-2020', 'Transplantation (Q1); Cancer Research (Q2); Cell Biology (Q2); Genetics (clinical) (Q2); Immunology (Q2); Immunology and Allergy (Q2); Oncology (Q2)'), (3272, 'Journalism &amp; communication monographs', 15226379, 1.192, 'Q1', 20, 15, 775, 30, 12, '2', '1999-2020', 'Communication (Q1)'), (3273, 'Journal of Telemedicine and Telecare', 1357633, 1.192, 'Q1', 76, 164, 5284, 1317, 282, '3', '1995-2020', 'Health Informatics (Q1)'), (3274, 'Behavior Modification', 1454455, 1.191, 'Q1', 79, 68, 3378, 478, 129, '2', '1977-2020', 'Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Developmental and Educational Psychology (Q1)'), (3275, 'Biomedical Journal', 23202890, 1.191, 'Q1', 32, 75, 3732, 667, 131, '16', '2012-2020', 'Medicine (miscellaneous) (Q1)'), (3276, 'Remote Sensing in Ecology and Conservation', 20563485, 1.191, 'Q1', 21, 57, 3708, 409, 73, '3', '2015-2020', 'Computers in Earth Sciences (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (3277, 'Topics in Cognitive Science', 17568765, 1.191, 'Q1', 56, 80, 4546, 421, 137, '2', '2009-2020', 'Artificial Intelligence (Q1); Human-Computer Interaction (Q1); Linguistics and Language (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)'), (3278, 'Breast Cancer: Targets and Therapy', 11791314, 1.19, 'Q2', 27, 27, 1276, 527, 113, '41', '2010-2020', 'Oncology (Q2)'), (3279, 'IEEE Transactions on Industry Applications', 939994, 1.19, 'Q1', 195, 680, 19879, 10265, 1963, '2', '1970-2020', 'Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1)'), (3280, 'Journal of Cancer', 18379664, 1.19, 'Q2', 56, 770, 33780, 7137, 1725, '11', '2010-2020', 'Oncology (Q2)'), (3281, 'MRS Bulletin', 8837694, 1.19, 'Q1', 153, 180, 6173, 1540, 372, '3', '1980, 1982-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)'), (3282, 'Cell Adhesion and Migration', 19336918, 1.189, 'Q2', 59, 19, 1063, 430, 117, '2', '2007-2020', 'Cell Biology (Q2); Cellular and Molecular Neuroscience (Q3)'), (3283, 'Drug Delivery', 10717544, 1.189, 'Q1', 65, 154, 8018, 3107, 501, '3', '1993, 1995-2020', 'Medicine (miscellaneous) (Q1); Pharmaceutical Science (Q1)'), (3284, 'Journal d Analyse Mathematique', 217670, 1.189, 'Q1', 53, 67, 1999, 373, 191, '2', '1951-1954, 1956, 1958-2020', 'Analysis (Q1); Mathematics (miscellaneous) (Q1)'), (3285, 'Ophthalmology and Therapy', 21936528, 1.189, 'Q1', 17, 91, 3684, 445, 138, '3', '2014-2020', 'Ophthalmology (Q1)'), (3286, 'International Geology Review', 206814, 1.188, 'Q1', 88, 205, 21100, 1151, 334, '3', '1959-2020', 'Geology (Q1)'), (3287, 'JCO clinical cancer informatics', 24734276, 1.188, 'Q1', 12, 74, 2647, 681, 246, '2', '2017-2020', 'Health Informatics (Q1); Cancer Research (Q2); Oncology (Q2)'), (3288, 'Journal of Athletic Training', 10626050, 1.188, 'Q1', 108, 156, 5503, 1375, 429, '2', '1996-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)'), (3289, 'Physics of Fluids', 10706631, 1.188, 'Q1', 180, 1212, 58762, 8387, 2160, '2', '1958-1988, 1994-2020', 'Computational Mechanics (Q1); Condensed Matter Physics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (3290, 'Advances in Atmospheric Sciences', 18619533, 1.187, 'Q2', 66, 113, 4957, 1021, 344, '1', '1984-2020', 'Atmospheric Science (Q2)'), (3291, 'Expert Review of Neurotherapeutics', 14737175, 1.187, 'Q1', 79, 124, 10841, 1212, 271, '3', '2001-2020', 'Pharmacology (medical) (Q1); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2)'), (3292, 'Invertebrate Systematics', 14472600, 1.187, 'Q1', 49, 33, 2228, 324, 129, '11', '1987-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (3293, 'Journal of Combinatorial Theory - Series A', 973165, 1.187, 'Q1', 56, 121, 2992, 799, 345, '2', '1971-2021', 'Computational Theory and Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Theoretical Computer Science (Q1)'), (3294, 'Journal of Financial Econometrics', 14798409, 1.187, 'Q1', 40, 27, 995, 152, 53, '3', '2005-2020', 'Economics and Econometrics (Q1); Finance (Q1)'), (3295, 'Journal of Analytical and Applied Pyrolysis', 1652370, 1.186, 'Q1', 133, 191, 9978, 4452, 818, '16', '1970, 1979-2020', 'Analytical Chemistry (Q1); Fuel Technology (Q1)'), (3296, 'Mammalian Genome', 14321777, 1.186, 'Q2', 99, 28, 1612, 440, 146, '2', '1991-2020', 'Genetics (Q2)'), (3297, 'Advances in Applied Microbiology', 652164, 1.185, 'Q1', 72, 21, 3821, 271, 21, '2', '1959-1984, 1986-1993, 1995-1997, 2000-2020', 'Applied Microbiology and Biotechnology (Q1)'), (3298, 'Child Maltreatment', 10775595, 1.185, 'Q1', 83, 76, 3678, 404, 117, '2', '1996-2020', 'Developmental and Educational Psychology (Q1); Pediatrics, Perinatology and Child Health (Q1); Social Work (Q1)'), (3299, 'Journal of Geriatric Physical Therapy', 15398412, 1.185, 'Q1', 36, 38, 1244, 447, 133, '2', '2005-2020', 'Geriatrics and Gerontology (Q1); Rehabilitation (Q1)'), (3300, 'Social Psychology', 18649335, 1.185, 'Q1', 36, 36, 1917, 200, 91, '5', '2008-2020', 'Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)'), (3301, 'Clinical and Experimental Rheumatology', 392856, 1.184, 'Q2', 95, 325, 5277, 2650, 829, '7', '1983-2020', 'Immunology (Q2); Immunology and Allergy (Q2); Rheumatology (Q2)'), (3302, 'Clinical Interventions in Aging', 11781998, 1.184, 'Q1', 76, 233, 9978, 3141, 695, '41', '2006-2020', 'Geriatrics and Gerontology (Q1); Medicine (miscellaneous) (Q1)'), (3303, 'Electronic Commerce Research and Applications', 15674223, 1.184, 'Q1', 74, 108, 6016, 1347, 188, '16', '2002-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Management of Technology and Innovation (Q1); Marketing (Q1)'), (3304, 'International Review of Psychiatry', 13691627, 1.184, 'Q1', 80, 93, 4309, 591, 151, '3', '1989-2020', 'Psychiatry and Mental Health (Q1)'), (3305, 'Pharmacology Biochemistry and Behavior', 913057, 1.184, 'Q1', 135, 152, 11624, 1232, 361, '2', '1973-2020', 'Clinical Biochemistry (Q1); Pharmacology (Q1); Toxicology (Q1); Behavioral Neuroscience (Q2); Biochemistry (Q2); Biological Psychiatry (Q2)'), (3306, 'Reviews in Fisheries Science and Aquaculture', 23308249, 1.184, 'Q1', 61, 51, 7062, 425, 77, '3', '2014-2020', 'Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q1)'), (3307, 'Thrombosis Research', 493848, 1.184, 'Q1', 112, 474, 14821, 2851, 759, '3', '1972-2020', 'Hematology (Q1)'), (3308, 'American Journal of Orthodontics and Dentofac', 10976752, 1.183, 'Q1', 121, 319, 6895, 1368, 547, '2', '1986-2020', 'Orthodontics (Q1)'), (3309, 'International Journal of Paediatric Dentistry', 1365263, 1.183, 'Q1', 62, 137, 4276, 739, 218, '3', '1991-2020', 'Dentistry (miscellaneous) (Q1)'), (3310, 'Journal of African Business', 15228916, 1.183, 'Q1', 29, 63, 3968, 541, 83, '2', '2000-2020', 'Development (Q1); Geography, Planning and Development (Q1)'), (3311, 'Applied Physics Letters', 10773118, 1.182, 'Q1', 442, 1862, 64886, 28588, 6936, '2', '1962-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (3312, 'ChemElectroChem', 21960216, 1.182, 'Q1', 59, 584, 31982, 6885, 1639, '3', '2014-2020', 'Electrochemistry (Q1); Catalysis (Q2)'), (3313, 'Online Learning Journal', 24725730, 1.182, 'Q1', 49, 59, 2483, 543, 169, '2', '2015-2020', 'Computer Networks and Communications (Q1); Education (Q1)'), (3314, 'Dermatology and Therapy', 21938210, 1.181, 'Q1', 27, 115, 4047, 653, 169, '5', '2011-2020', 'Dermatology (Q1)'), (3315, 'International Journal of Mining Science and T', 20952686, 1.181, 'Q1', 46, 109, 3499, 1763, 384, '16', '2012-2020', 'Energy Engineering and Power Technology (Q1); Geochemistry and Petrology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (3316, 'International Journal of Precision Engineerin', 21980810, 1.181, 'Q1', 33, 138, 5425, 1116, 195, '2', '2014-2020', 'Industrial and Manufacturing Engineering (Q1); Management of Technology and Innovation (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Renewable Energy, Sustainability and t'), (3317, 'Journal of Economic Dynamics and Control', 1651889, 1.181, 'Q1', 90, 136, 6309, 769, 380, '16', '1979-2020', 'Applied Mathematics (Q1); Control and Optimization (Q1); Economics and Econometrics (Q1)'), (3318, 'Laryngoscope', 15314995, 1.181, 'Q1', 148, 915, 24160, 4875, 1596, '2', '1896-2020', 'Otorhinolaryngology (Q1)'), (3319, 'Maternal and Child Nutrition', 17408695, 1.181, 'Q1', 63, 179, 7987, 1767, 523, '3', '2005-2020', 'Nutrition and Dietetics (Q1); Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3320, 'Policy and Society', 14494035, 1.181, 'Q1', 34, 38, 2358, 410, 92, '3', '2002-2003, 2008-2020', 'Political Science and International Relations (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (3321, 'Social Cognition', 278016, 1.181, 'Q1', 76, 38, 2652, 176, 91, '2', '1996-2020', 'Developmental and Educational Psychology (Q1); Social Psychology (Q1)'), (3322, 'Talanta', 399140, 1.181, 'Q1', 161, 1091, 47844, 18312, 3276, '16', '1958-2021', 'Analytical Chemistry (Q1); Spectroscopy (Q1); Biochemistry (Q2)'), (3323, 'Advances in Urology', 16876377, 1.18, 'Q1', 30, 11, 226, 155, 49, '2', '2009-2020', 'Obstetrics and Gynecology (Q1); Urology (Q1)'), (3324, 'Chemistry - An Asian Journal', 18614728, 1.18, 'Q1', 106, 496, 35886, 6009, 1485, '3', '2006-2020', 'Chemistry (miscellaneous) (Q1); Organic Chemistry (Q1); Biochemistry (Q2)'), (3325, 'International Journal of Strategic Communicat', 1553118, 1.18, 'Q1', 21, 20, 1398, 259, 85, '2', '2010-2020', 'Communication (Q1); Sociology and Political Science (Q1)'), (3326, 'Journal of Dermatological Science', 9231811, 1.18, 'Q1', 93, 134, 3732, 1499, 325, '42', '1990-2020', 'Dermatology (Q1); Biochemistry (Q2); Molecular Biology (Q2)'), (3327, 'Molecular Oral Microbiology', 20411006, 1.18, 'Q1', 77, 27, 1332, 383, 101, '2', '2010-2020', 'Dentistry (miscellaneous) (Q1); Immunology (Q2); Microbiology (Q2); Microbiology (medical) (Q2)'), (3328, 'Archives of Women s Mental Health', 14341816, 1.179, 'Q1', 76, 100, 4228, 892, 255, '28', '1998-2020', 'Obstetrics and Gynecology (Q1); Psychiatry and Mental Health (Q1)'), (3329, 'Social Problems', 15338533, 1.179, 'Q1', 95, 20, 1296, 240, 87, '2', '1973, 1975, 1977-1979, 1982, 1984, 1989-1990, 1993, 1995-2020', 'Sociology and Political Science (Q1)'), (3330, 'Clinical Orthopaedics and Related Research', 15281132, 1.178, 'Q1', 204, 495, 4543, 2801, 1180, '2', '1963-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1); Sports Science (Q2)'), (3331, 'Geophysics', 168033, 1.178, 'Q1', 172, 286, 9572, 3486, 1163, '2', '1936-2020', 'Energy (miscellaneous) (Q1); Geochemistry and Petrology (Q1); Geophysics (Q1)'), (3332, 'Safety Science', 9257535, 1.178, 'Q1', 111, 451, 26276, 5909, 1020, '16', '1991-2020', 'Public Health, Environmental and Occupational Health (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1)'), (3333, 'Teachers College Record', 1614681, 1.178, 'Q1', 89, 94, 6771, 604, 341, '2', '1976, 1980-1981, 1985, 1988, 1996-2014, 2016, 2019-2020', 'Education (Q1)'), (3334, 'Current Pathobiology Reports', 2167485, 1.177, 'Q1', 24, 13, 1495, 210, 78, '2', '2013-2020', 'Pathology and Forensic Medicine (Q1); Cancer Research (Q2); Cell Biology (Q2); Molecular Biology (Q2)'), (3335, 'Discrete Analysis', 23973129, 1.177, 'Q1', 12, 0, 0, 90, 33, '3', '2016-2019', 'Algebra and Number Theory (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1)'), (3336, 'Environmental Education Research', 14695871, 1.177, 'Q1', 71, 133, 8090, 1138, 292, '3', '1995-2020', 'Education (Q1)'), (3337, 'EPMA Journal', 18785077, 1.177, 'Q1', 34, 39, 4020, 658, 106, '3', '2010-2020', 'Biochemistry (medical) (Q1); Drug Discovery (Q1); Health Policy (Q1)'), (3338, 'European Journal of Medicinal Chemistry', 2235234, 1.177, 'Q1', 162, 838, 56099, 17278, 2851, '8', '1974-2020', 'Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Organic Chemistry (Q1); Pharmacology (Q1)'), (3339, 'Journal of Intensive Care', 20520492, 1.177, 'Q1', 32, 92, 2969, 769, 199, '19', '2013-2020', 'Critical Care and Intensive Care Medicine (Q1)'), (3340, 'Journal of Mammary Gland Biology and Neoplasi', 10833021, 1.177, 'Q2', 99, 33, 2699, 227, 68, '2', '1996-2020', 'Cancer Research (Q2); Oncology (Q2)'), (3341, 'Mathematical Research Letters', 10732780, 1.177, 'Q1', 60, 55, 1237, 385, 239, '2', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (3342, 'Orthopedic Clinics of North America', 305898, 1.177, 'Q1', 86, 61, 2288, 437, 153, '3', '1970-2020', 'Orthopedics and Sports Medicine (Q1)'), (3343, 'Service Industries Journal', 17439507, 1.177, 'Q1', 66, 64, 5864, 845, 170, '3', '1983-2020', 'Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (3344, 'Journalism Practice', 17512786, 1.176, 'Q1', 47, 170, 9926, 625, 245, '3', '2007-2013, 2015-2020', 'Communication (Q1)'), (3345, 'Journal of Sedimentary Research', 19383681, 1.176, 'Q1', 105, 83, 7613, 708, 227, '2', '1959, 1981, 1987-1988, 1990, 1996-2020', 'Geology (Q1)'), (3346, 'Nanotoxicology', 17435390, 1.176, 'Q1', 87, 92, 5547, 1590, 257, '3', '2007-2020', 'Biomedical Engineering (Q1); Toxicology (Q1); Nanoscience and Nanotechnology (Q2)'), (3347, 'Control Engineering Practice', 9670661, 1.175, 'Q1', 119, 196, 8010, 2779, 611, '3', '1993-2020', 'Applied Mathematics (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (3348, 'Virus Research', 1681702, 1.175, 'Q2', 121, 268, 15115, 2493, 760, '16', '1984-2020', 'Cancer Research (Q2); Infectious Diseases (Q2); Virology (Q2)'), (3349, 'Acta Oncologica', 1651226, 1.174, 'Q1', 98, 238, 7587, 2478, 646, '3', '1963-1966, 1968-2020', 'Hematology (Q1); Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (3350, 'Current Allergy and Asthma Reports', 15297322, 1.174, 'Q1', 65, 78, 5327, 968, 219, '2', '2001-2020', 'Pulmonary and Respiratory Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (3351, 'Pharmacopsychiatry', 14390795, 1.174, 'Q1', 77, 37, 1496, 389, 91, '5', '1984-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Psychiatry and Mental Health (Q1)'), (3352, 'Social Movement Studies', 14742837, 1.174, 'Q1', 31, 62, 3454, 381, 150, '3', '2010-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q1)'), (3353, 'Experimental Gerontology', 5315565, 1.173, 'Q2', 135, 265, 17052, 3216, 795, '2', '1964-2020', 'Aging (Q2); Biochemistry (Q2); Cell Biology (Q2); Endocrinology (Q2); Genetics (Q2); Molecular Biology (Q2)'), (3354, 'Process Safety and Environmental Protection', 17443598, 1.173, 'Q1', 76, 417, 20761, 6888, 1071, '3', '1990-2021', 'Chemical Engineering (miscellaneous) (Q1); Environmental Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Environmental Chemistry (Q2)'), (3355, 'Deep-Sea Research Part II: Topical Studies in', 9670645, 1.172, 'Q1', 140, 175, 11835, 1706, 548, '3', '1993-2020', 'Oceanography (Q1)'), (3356, 'International Journal of Multiphase Flow', 3019322, 1.172, 'Q1', 122, 236, 11304, 2510, 659, '3', '1973-2020', 'Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3357, 'International Journal of Urology', 14422042, 1.172, 'Q1', 67, 258, 5193, 1234, 416, '3', '1994-2020', 'Urology (Q1)'), (3358, 'Journal of Mixed Methods Research', 15586898, 1.172, 'Q1', 47, 37, 1841, 346, 72, '2', '2007-2020', 'Education (Q1); Social Sciences (miscellaneous) (Q1); Statistics, Probability and Uncertainty (Q1)'), (3359, 'Journal of Synchrotron Radiation', 16005775, 1.172, 'Q1', 99, 207, 7227, 1778, 609, '3', '1996-2020', 'Instrumentation (Q1); Nuclear and High Energy Physics (Q1); Radiation (Q1)'), (3360, 'MycoKeys', 13144057, 1.172, 'Q1', 16, 76, 4714, 538, 218, '61', '2015-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (3361, 'Population and Environment', 15737810, 1.172, 'Q1', 50, 29, 1688, 191, 64, '16', '1980-1985, 1987-2020', 'Demography (Q1); Environmental Science (miscellaneous) (Q1)'), (3362, 'Reviews in the Neurosciences', 21910200, 1.172, 'Q2', 75, 47, 5856, 750, 183, '5', '1986-1990, 1992-2020', 'Neuroscience (miscellaneous) (Q2)'), (3363, 'British Educational Research Journal', 14693518, 1.171, 'Q1', 89, 107, 5664, 564, 182, '3', '1978-2020', 'Education (Q1)'), (3364, 'International Journal of Electronic Commerce', 10864415, 1.171, 'Q1', 82, 22, 1561, 308, 62, '2', '1996-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1)'), (3365, 'Journal of Regional Science', 14679787, 1.171, 'Q1', 79, 48, 2588, 327, 117, '3', '1958-2020', 'Development (Q1); Environmental Science (miscellaneous) (Q1)'), (3366, 'Preventing chronic disease', 15451151, 1.171, 'Q1', 77, 167, 3637, 1239, 450, '2', '2004-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3367, 'Reproductive Biology and Endocrinology', 14777827, 1.171, 'Q1', 88, 123, 6127, 1559, 324, '3', '2003-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Developmental Biology (Q2); Endocrinology (Q2)'), (3368, 'World Journal of Biological Psychiatry', 18141412, 1.171, 'Q1', 70, 126, 7404, 676, 192, '3', '2000-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2)'), (3369, 'Aging and Mental Health', 13646915, 1.17, 'Q1', 89, 466, 22849, 2029, 563, '3', '1997-2020', 'Geriatrics and Gerontology (Q1); Gerontology (Q1); Psychiatric Mental Health (Q1); Psychiatry and Mental Health (Q1)'), (3370, 'Cognitive Research: Principles and Implicatio', 23657464, 1.17, 'Q2', 18, 64, 4575, 540, 144, '3', '2016-2020', 'Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)'), (3371, 'Ecology and Evolution', 20457758, 1.17, 'Q1', 63, 1125, 78227, 8828, 3044, '3', '2011-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (3372, 'European Psychologist', 1878531, 1.17, 'Q1', 57, 32, 2253, 332, 77, '2', '2003-2020', 'Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)'), (3373, 'Plant Physiology and Biochemistry', 9819428, 1.17, 'Q1', 124, 543, 32755, 5702, 1203, '8', '1989, 1991-2020', 'Plant Science (Q1); Genetics (Q2); Physiology (Q2)'), (3374, 'Journal of Evidence-Based Dental Practice', 15323382, 1.169, 'Q1', 29, 65, 1487, 305, 67, '2', '2001-2020', 'Dentistry (miscellaneous) (Q1)'), (3375, 'Representation Theory', 10884165, 1.169, 'Q1', 37, 18, 490, 78, 42, '2', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (3376, 'BMC Neuroscience', 14712202, 1.168, 'Q2', 98, 53, 2493, 744, 223, '3', '2000-2020', 'Neuroscience (miscellaneous) (Q2); Cellular and Molecular Neuroscience (Q3)'), (3377, 'Israel Journal of Mathematics', 212172, 1.168, 'Q1', 63, 124, 3250, 951, 512, '2', '1963-2020', 'Mathematics (miscellaneous) (Q1)'), (3378, 'Journal of Gastrointestinal Surgery', 1091255, 1.168, 'Q1', 126, 524, 13283, 2424, 870, '2', '1997-2020', 'Surgery (Q1); Gastroenterology (Q2)'), (3379, 'OpenNano', 23529520, 1.168, 'Q1', 12, 0, 0, 185, 20, '2', '2016-2019', 'Biotechnology (Q1); Internal Medicine (Q1); Pharmaceutical Science (Q1); Pharmacology (medical) (Q1)'), (3380, 'Biological Invasions', 15731464, 1.167, 'Q1', 109, 249, 17005, 2569, 783, '16', '1999-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3381, 'International Journal of Management Education', 14728117, 1.167, 'Q1', 28, 47, 2652, 579, 146, '16', '1970, 2012-2020', 'Education (Q1); Strategy and Management (Q1)'), (3382, 'Cancer Biology and Therapy', 15384047, 1.166, 'Q1', 113, 147, 5437, 1748, 423, '2', '2002-2020', 'Pharmacology (Q1); Cancer Research (Q2); Molecular Medicine (Q2); Oncology (Q2)'), (3383, 'Cognitive Neuroscience', 17588928, 1.166, 'Q2', 30, 53, 1932, 167, 46, '3', '2010-2020', 'Cognitive Neuroscience (Q2)'), (3384, 'Journal of Service Theory and Practice', 20556225, 1.166, 'Q1', 85, 32, 2877, 613, 120, '3', '2015-2020', 'Strategy and Management (Q1)'), (3385, 'Public Health Nutrition', 14752727, 1.166, 'Q1', 137, 702, 32852, 3855, 1036, '3', '1998-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3386, 'Regenerative Biomaterials', 20563418, 1.166, 'Q1', 25, 40, 1870, 651, 117, '3', '2014-2020', 'Biomaterials (Q1)'), (3387, 'Review of Keynesian Economics', 20495331, 1.166, 'Q1', 14, 32, 1284, 128, 94, '3', '2012-2020', 'Economics and Econometrics (Q1)'), (3388, 'Applied Geography', 1436228, 1.165, 'Q1', 99, 156, 10019, 2353, 495, '16', '1980-2020', 'Environmental Science (miscellaneous) (Q1); Forestry (Q1); Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (3389, 'Current Opinion in Gastroenterology', 2671379, 1.165, 'Q2', 83, 87, 2563, 732, 208, '2', '1990-2020', 'Gastroenterology (Q2)'), (3390, 'Journal of Consumer Culture', 14695405, 1.165, 'Q1', 55, 52, 2861, 378, 123, '3', '2001-2020', 'Arts and Humanities (miscellaneous) (Q1); Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)'), (3391, 'Journal of Risk and Uncertainty', 15730476, 1.165, 'Q1', 73, 24, 1241, 142, 68, '16', '1988-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (3392, 'European Journal of Clinical Investigation', 142972, 1.164, 'Q1', 107, 203, 6581, 1374, 343, '3', '1970-2020', 'Clinical Biochemistry (Q1); Medicine (miscellaneous) (Q1); Biochemistry (Q2)'), (3393, 'Journal of Graph Theory', 3649024, 1.164, 'Q1', 54, 105, 1910, 544, 311, '2', '1977-2020', 'Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1)'), (3394, 'Obstetrics and Gynecology Clinics of North Am', 8898545, 1.164, 'Q1', 61, 59, 2877, 495, 158, '3', '1987-2020', 'Obstetrics and Gynecology (Q1)'), (3395, 'PPAR Research', 16874757, 1.164, 'Q1', 49, 29, 2019, 251, 56, '2', '2006-2020', 'Drug Discovery (Q1); Pharmacology (medical) (Q1)'), (3396, 'Shiyou Xuebao/Acta Petrolei Sinica', 2532697, 1.164, 'Q1', 60, 152, 6156, 1318, 437, '1', '1985-1988, 1990-1992, 2001-2019', 'Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1)'), (3397, 'Studies in Applied Mathematics', 14679590, 1.164, 'Q1', 46, 46, 1851, 507, 115, '3', '1969-2020', 'Applied Mathematics (Q1)'), (3398, 'Therapeutic Advances in Cardiovascular Diseas', 17539455, 1.164, 'Q1', 33, 17, 587, 278, 77, '3', '2007-2020', 'Cardiology and Cardiovascular Medicine (Q1); Pharmacology (medical) (Q1)'), (3399, 'Asia-Pacific Journal of Ophthalmology', 21620989, 1.163, 'Q1', 20, 86, 1656, 688, 213, '2', '2013, 2015-2020', 'Medicine (miscellaneous) (Q1); Ophthalmology (Q1)'), (3400, 'Body and Society', 1357034, 1.163, 'Q1', 63, 21, 1429, 138, 55, '3', '1995-2020', 'Cultural Studies (Q1); Health (social science) (Q1); Social Psychology (Q1)'), (3401, 'New Biotechnology', 18716784, 1.163, 'Q1', 85, 69, 3779, 1497, 262, '16', '2008-2021', 'Bioengineering (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1); Molecular Biology (Q2)'), (3402, 'Teacher Education and Special Education', 8884064, 1.163, 'Q1', 12, 27, 1454, 138, 48, '3', '2015-2020', 'Education (Q1)'), (3403, 'Urban Forestry and Urban Greening', 16188667, 1.163, 'Q1', 74, 280, 18007, 3276, 651, '5', '2002-2020', 'Ecology (Q1); Forestry (Q1); Soil Science (Q1)'), (3404, 'Behavioral Ecology', 14657279, 1.162, 'Q1', 118, 129, 8100, 1138, 466, '3', '1990-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3405, 'Harmful Algae', 15689883, 1.162, 'Q1', 91, 148, 12555, 1511, 338, '16', '2002-2020', 'Aquatic Science (Q1); Plant Science (Q1)'), (3406, 'Journal of Asthma and Allergy', 11786965, 1.162, 'Q1', 30, 76, 3379, 424, 99, '41', '2008-2020', 'Pulmonary and Respiratory Medicine (Q1); Immunology and Allergy (Q2)'), (3407, 'Journal of Public Policy and Marketing', 7439156, 1.162, 'Q1', 74, 39, 2716, 274, 86, '2', '1996-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (3408, 'China Quarterly', 3057410, 1.161, 'Q1', 84, 52, 2461, 433, 150, '3', '1960-2020', 'Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (3409, 'International Journal of Disaster Risk Reduct', 22124209, 1.161, 'Q1', 45, 562, 35838, 4363, 844, '3', '2012-2020', 'Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Safety Research (Q1)'), (3410, 'Journal of Analytical Toxicology', 19452403, 1.161, 'Q1', 76, 106, 2853, 1010, 299, '2', '1977-2020', 'Analytical Chemistry (Q1); Chemical Health and Safety (Q1); Health, Toxicology and Mutagenesis (Q1); Toxicology (Q1); Environmental Chemistry (Q2)'), (3411, 'Microbial Ecology', 953628, 1.161, 'Q1', 128, 191, 12865, 2207, 528, '2', '1974-1977, 1979-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Soil Science (Q1)'), (3412, 'Applied and Computational Harmonic Analysis', 1096603, 1.16, 'Q1', 91, 87, 3162, 861, 141, '2', '1993-2021', 'Applied Mathematics (Q1)'), (3413, 'Journal of Information Technology and Politic', 19331681, 1.16, 'Q1', 39, 38, 2109, 220, 68, '2', '2008-2020', 'Computer Science (miscellaneous) (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (3414, 'Annals of Nuclear Energy', 3064549, 1.159, 'Q1', 67, 755, 21726, 3459, 1777, '3', '1975-2021', 'Nuclear Energy and Engineering (Q1)'), (3415, 'Communications in Nonlinear Science and Numer', 10075704, 1.159, 'Q1', 113, 403, 16332, 5118, 1055, '16', '1996-2021', 'Applied Mathematics (Q1); Modeling and Simulation (Q1); Numerical Analysis (Q1)'), (3416, 'Gender, Work and Organization', 14680432, 1.159, 'Q1', 73, 144, 7604, 632, 182, '3', '1994-2020', 'Gender Studies (Q1); Organizational Behavior and Human Resource Management (Q1)'), (3417, 'IEEE Transactions on Ultrasonics, Ferroelectr', 15258955, 1.159, 'Q1', 136, 315, 10727, 2149, 580, '2', '1986-2020', 'Acoustics and Ultrasonics (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1)'), (3418, 'Psychosocial Intervention', 11320559, 1.159, 'Q1', 21, 18, 1105, 255, 57, '12', '2011-2020', 'Applied Psychology (Q1); Developmental and Educational Psychology (Q1); Social Psychology (Q1)'), (3419, 'ACS Chemical Neuroscience', 19487193, 1.158, 'Q1', 69, 460, 24992, 4453, 1077, '2', '2010-2020', 'Medicine (miscellaneous) (Q1); Biochemistry (Q2); Cell Biology (Q2); Cognitive Neuroscience (Q2); Physiology (Q2)'), (3420, 'Brain and Language', 10902155, 1.158, 'Q1', 123, 69, 5080, 676, 240, '2', '1974-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Speech and Hearing (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)'), (3421, 'Convergence', 17487382, 1.158, 'Q1', 39, 96, 5287, 369, 142, '2', '1995-2020', 'Arts and Humanities (miscellaneous) (Q1); Communication (Q1)'), (3422, 'Current Opinion in Nephrology and Hypertensio', 14736543, 1.158, 'Q1', 95, 94, 3620, 693, 227, '2', '1992-2020', 'Internal Medicine (Q1); Nephrology (Q1)'), (3423, 'Educational Measurement: Issues and Practice', 17453992, 1.158, 'Q1', 52, 91, 2046, 155, 90, '3', '1982-2020', 'Education (Q1)'), (3424, 'Health Care Management Review', 15505030, 1.158, 'Q1', 56, 45, 717, 266, 101, '2', '1976-2020', 'Health Policy (Q1); Leadership and Management (Q1); Strategy and Management (Q1)'), (3425, 'Photosynthesis Research', 15735079, 1.158, 'Q1', 113, 119, 7894, 1150, 355, '16', '1980-2020', 'Medicine (miscellaneous) (Q1); Plant Science (Q1); Biochemistry (Q2); Cell Biology (Q2)'), (3426, 'Sbornik Mathematics', 14684802, 1.158, 'Q1', 27, 66, 1926, 282, 227, '3', '1993-2020', 'Algebra and Number Theory (Q1); Mathematics (miscellaneous) (Q1)'), (3427, 'Seizure : the journal of the British Epilepsy', 10591311, 1.158, 'Q1', 85, 317, 11029, 2457, 718, '3', '1992-2020', 'Medicine (miscellaneous) (Q1); Neurology (Q2); Neurology (clinical) (Q2)'), (3428, 'Transformation Groups', 1531586, 1.158, 'Q1', 38, 97, 2829, 216, 138, '2', '1997-2020', 'Algebra and Number Theory (Q1); Geometry and Topology (Q1)'), (3429, 'Wiley Interdisciplinary Reviews: Energy and E', 20418396, 1.158, 'Q1', 35, 21, 1564, 481, 111, '3', '2012-2020', 'Environmental Science (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (3430, 'Acta Astronomica', 15237, 1.157, 'Q2', 67, 13, 593, 274, 68, '17', '1996-2020', 'Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)'), (3431, 'Journal of Agricultural Economics', 14779552, 1.157, 'Q1', 61, 56, 2843, 451, 132, '2', '1928-1931, 1933-1938, 1940, 1946-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q1)'), (3432, 'Nuclear Physics B', 5503213, 1.157, 'Q1', 274, 327, 18154, 4466, 858, '16', '1967-2020', 'Nuclear and High Energy Physics (Q1)'), (3433, 'Cancer Epidemiology', 18777821, 1.156, 'Q2', 75, 163, 5517, 1241, 449, '16', '2009-2020', 'Cancer Research (Q2); Epidemiology (Q2); Oncology (Q2)'), (3434, 'Cannabis and Cannabinoid Research', 23788763, 1.156, 'Q1', 17, 39, 1733, 274, 57, '2', '2016-2020', 'Complementary and Alternative Medicine (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (3435, 'Journal of Broadcasting and Electronic Media', 8838151, 1.156, 'Q1', 68, 40, 1940, 311, 111, '3', '1985-1996, 1998-2001, 2005-2020', 'Communication (Q1)'), (3436, 'Journal of Geometric Analysis', 10506926, 1.156, 'Q1', 47, 303, 8322, 750, 429, '2', '1991-2020', 'Geometry and Topology (Q1)'), (3437, 'International Journal of Tourism Research', 10992340, 1.155, 'Q1', 58, 91, 6842, 949, 213, '3', '2008-2020', 'Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1); Tourism, Leisure and Hospitality Management (Q1); Transportation (Q1)'), (3438, 'Journal of Exposure Science and Environmental', 1559064, 1.155, 'Q1', 92, 115, 5126, 1030, 227, '3', '2006-2020', 'Pollution (Q1); Public Health, Environmental and Occupational Health (Q1); Toxicology (Q1); Epidemiology (Q2)'), (3439, 'Teaching and Learning in Medicine', 10401334, 1.155, 'Q1', 48, 92, 3748, 369, 148, '2', '1989-2020', 'Education (Q1); Medicine (miscellaneous) (Q1)'), (3440, 'Veterinary Microbiology', 3781135, 1.155, 'Q1', 128, 322, 11668, 3667, 1028, '16', '1976-2020', 'Medicine (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1); Microbiology (Q2)'), (3441, 'BMC Cell Biology', 14712121, 1.154, 'Q2', 68, 0, 0, 256, 63, '3', '2000-2018', 'Cell Biology (Q2)'), (3442, 'Ethnic and Racial Studies', 1419870, 1.154, 'Q1', 93, 227, 10699, 1274, 527, '3', '1978-2020', 'Anthropology (Q1); Cultural Studies (Q1); Sociology and Political Science (Q1)'), (3443, 'European Journal of Clinical Microbiology and', 9349723, 1.154, 'Q1', 106, 312, 10505, 2722, 857, '5', '1988-2020', 'Medicine (miscellaneous) (Q1); Infectious Diseases (Q2); Microbiology (medical) (Q2)'), (3444, 'IEEE Control Systems Letters', 24751456, 1.154, 'Q1', 21, 216, 4045, 1412, 386, '2', '2017-2021', 'Control and Optimization (Q1); Control and Systems Engineering (Q1)'), (3445, 'International Journal of Sport Nutrition and ', 1526484, 1.154, 'Q1', 75, 54, 1912, 876, 229, '2', '1996-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1); Orthopedics and Sports Medicine (Q1); Sports Science (Q2)'), (3446, 'Journal of Algebra', 218693, 1.154, 'Q1', 80, 479, 10647, 2316, 1390, '2', '1964-2021', 'Algebra and Number Theory (Q1)'), (3447, 'Journal of Ovarian Research', 17572215, 1.154, 'Q1', 44, 140, 5834, 1225, 301, '3', '2009-2020', 'Obstetrics and Gynecology (Q1); Oncology (Q2)'), (3448, 'Advanced Biosystems', 23667478, 1.153, 'Q1', 18, 158, 9893, 1090, 292, '5', '2017-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Biomaterials (Q1); Biomedical Engineering (Q1)'), (3449, 'Food and Waterborne Parasitology', 24056766, 1.153, 'Q1', 13, 22, 908, 217, 46, '2', '2015-2020', 'Food Science (Q1); Parasitology (Q1); Epidemiology (Q2)'), (3450, 'International Journal of Pharmaceutics', 18733476, 1.153, 'Q1', 217, 1056, 58542, 14707, 2532, '16', '1978-2020', 'Pharmaceutical Science (Q1)'), (3451, 'Journal of Steroid Biochemistry and Molecular', 9600760, 1.153, 'Q1', 127, 189, 10413, 3003, 753, '3', '1990-2020', 'Clinical Biochemistry (Q1); Endocrinology, Diabetes and Metabolism (Q1); Biochemistry (Q2); Cell Biology (Q2); Endocrinology (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)'), (3452, 'Gastroenterology and Hepatology', 15547914, 1.152, 'Q2', 40, 79, 1989, 459, 96, '2', '2006-2020', 'Gastroenterology (Q2); Hepatology (Q2)'), (3453, 'Immunology Letters', 1652478, 1.152, 'Q2', 93, 138, 9269, 1539, 412, '16', '1979-2020', 'Immunology (Q2); Immunology and Allergy (Q2)'), (3454, 'International Immunopharmacology', 18781705, 1.152, 'Q1', 112, 996, 50138, 7199, 1529, '16', '2001-2020', 'Pharmacology (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (3455, 'Journal of Behavior Therapy and Experimental ', 18737943, 1.152, 'Q1', 75, 75, 3885, 585, 246, '3', '1970-2021', 'Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Psychiatry and Mental Health (Q1); Experimental and Cognitive Psychology (Q2)'), (3456, 'Journal of Field Robotics', 15564967, 1.152, 'Q1', 96, 71, 3352, 1453, 203, '2', '2006-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1)'), (3457, 'Kidney Research and Clinical Practice', 22119132, 1.152, 'Q1', 20, 61, 1806, 466, 134, '13', '2012-2020', 'Nephrology (Q1); Urology (Q1)'), (3458, 'Reading and Writing', 9224777, 1.152, 'Q1', 75, 123, 7862, 755, 279, '16', '1989-2020', 'Education (Q1); Linguistics and Language (Q1); Neuropsychology and Physiological Psychology (Q1); Speech and Hearing (Q1)'), (3459, 'Attention, Perception, and Psychophysics', 1943393, 1.151, 'Q1', 116, 312, 16766, 1140, 575, '2', '2009-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Experimental and Cognitive Psychology (Q2); Sensory Systems (Q2)'), (3460, 'BMC Palliative Care', 1472684, 1.151, 'Q1', 39, 187, 8295, 1064, 328, '3', '2002-2020', 'Medicine (miscellaneous) (Q1)'), (3461, 'Cell Structure and Function', 13473700, 1.151, 'Q1', 61, 14, 668, 126, 48, '6', '1975-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2); Molecular Biology (Q2); Physiology (Q2)'), (3462, 'Food Chemistry: X', 25901575, 1.151, 'Q1', 7, 28, 1076, 180, 33, '3', '2019-2020', 'Analytical Chemistry (Q1); Food Science (Q1)'), (3463, 'Marine Ecology - Progress Series', 1718630, 1.151, 'Q1', 188, 372, 27921, 3223, 1186, '5', '1985-1988, 1990-2020', 'Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3464, 'Set-Valued and Variational Analysis', 18770541, 1.151, 'Q1', 44, 50, 1736, 308, 130, '5', '2009-2020', 'Analysis (Q1); Applied Mathematics (Q1); Geometry and Topology (Q1); Numerical Analysis (Q1); Statistics and Probability (Q1)'), (3465, 'Urban Climate', 22120955, 1.151, 'Q1', 43, 165, 9544, 1563, 264, '16', '2012-2020', 'Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1); Atmospheric Science (Q2)'), (3466, 'Annals of Medicine', 7853890, 1.15, 'Q1', 112, 50, 2883, 798, 186, '3', '1961, 1973, 1989-2020', 'Medicine (miscellaneous) (Q1)'), (3467, 'Clinical Rehabilitation', 14770873, 1.15, 'Q1', 110, 180, 5627, 1780, 498, '3', '1987-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1)'), (3468, 'Sports Medicine - Open', 21989761, 1.15, 'Q1', 23, 59, 3744, 651, 151, '3', '2015-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)'), (3469, 'Urologic Oncology: Seminars and Original Inve', 10781439, 1.15, 'Q1', 69, 364, 12472, 2344, 779, '2', '1995-2020', 'Urology (Q1); Oncology (Q2)'), (3470, 'Current Protocols in Cell Biology', 19342616, 1.149, 'Q1', 38, 18, 446, 125, 76, '2', '2001-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2)'), (3471, 'International Journal of Damage Mechanics', 10567895, 1.149, 'Q1', 45, 79, 3440, 824, 195, '3', '1992-2020', 'Computational Mechanics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (3472, 'Journal of Critical Care', 15578615, 1.149, 'Q1', 83, 300, 9042, 2889, 847, '16', '1986-2020', 'Critical Care and Intensive Care Medicine (Q1)'), (3473, 'Carbon Balance and Management', 17500680, 1.148, 'Q1', 34, 27, 1641, 277, 64, '3', '2006-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Global and Planetary Change (Q2)'), (3474, 'Cold Regions Science and Technology', 18727441, 1.148, 'Q1', 74, 181, 7823, 2040, 524, '16', '1979-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (3475, 'Creativity and Innovation Management', 9631690, 1.148, 'Q1', 60, 57, 4438, 490, 117, '3', '1992-2020', 'Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (3476, 'IEEE Transactions on Biomedical Engineering', 189294, 1.148, 'Q1', 200, 389, 14641, 5464, 915, '2', '1963-2020', 'Biomedical Engineering (Q1)'), (3477, 'Perspectives on Medical Education', 22122761, 1.148, 'Q1', 23, 74, 1956, 491, 161, '16', '2012-2020', 'Education (Q1); Medicine (miscellaneous) (Q1)'), (3478, 'Zoological Journal of the Linnean Society', 10963642, 1.148, 'Q1', 83, 153, 12446, 926, 320, '3', '1866-1916, 1918-1937, 1939-1941, 1943, 1947, 1949-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3479, 'Brain Topography', 15736792, 1.147, 'Q1', 72, 64, 3557, 694, 215, '2', '1988-2020', 'Anatomy (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Neurology (Q2); Neurology (clinical) (Q2)'), (3480, 'Food and Bioprocess Technology', 19355149, 1.147, 'Q1', 85, 178, 9282, 2558, 556, '2', '2008-2020', 'Food Science (Q1); Industrial and Manufacturing Engineering (Q1); Process Chemistry and Technology (Q1); Safety, Risk, Reliability and Quality (Q1)'), (3481, 'International Review for the Sociology of Spo', 10126902, 1.147, 'Q1', 59, 110, 6569, 495, 152, '3', '1966-2002, 2004-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Sports Science (Q2)'), (3482, 'ISA Transactions', 190578, 1.147, 'Q1', 79, 559, 22562, 5669, 884, '2', '1968-2020', 'Applied Mathematics (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1)'), (3483, 'Nuclear Engineering and Design', 295493, 1.147, 'Q1', 100, 449, 14271, 2808, 1310, '16', '1965-2020', 'Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Waste Manage'), (3484, 'Ophthalmic and Physiological Optics', 2755408, 1.147, 'Q1', 66, 80, 3787, 515, 157, '3', '1981-2020', 'Ophthalmology (Q1); Optometry (Q1); Sensory Systems (Q2)'), (3485, 'Otology and Neurotology', 15374505, 1.147, 'Q1', 104, 420, 8270, 2328, 1021, '2', '1982, 1988-1989, 1992-1993, 2001-2020', 'Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1); Neurology (clinical) (Q2); Sensory Systems (Q2)'), (3486, 'American Journal of Physical Anthropology', 10968644, 1.146, 'Q1', 119, 195, 15887, 1553, 590, '2', '1918-2020', 'Anatomy (Q1); Anthropology (Q1)'), (3487, 'Communications in Number Theory and Physics', 19314523, 1.146, 'Q1', 34, 13, 513, 279, 58, '2', '2007-2020', 'Algebra and Number Theory (Q1); Mathematical Physics (Q1); Physics and Astronomy (miscellaneous) (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (3488, 'Current Problems in Cancer', 1470272, 1.146, 'Q2', 37, 84, 2697, 534, 159, '2', '1976-2020', 'Cancer Research (Q2); Oncology (Q2)'), (3489, 'Sociology of Health and Illness', 1419889, 1.146, 'Q1', 97, 141, 7733, 977, 294, '3', '1979-2020', 'Health Policy (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3490, 'Thermal Science and Engineering Progress', 24519049, 1.146, 'Q1', 27, 285, 12153, 1999, 396, '3', '2017-2020', 'Fluid Flow and Transfer Processes (Q1)'), (3491, 'Bulletin of the Chemical Society of Japan', 92673, 1.145, 'Q1', 99, 180, 10747, 2369, 576, '6', '1965-2020', 'Chemistry (miscellaneous) (Q1)'), (3492, 'FlatChem', 24522627, 1.145, 'Q1', 20, 42, 3056, 560, 112, '16', '2017-2020', 'Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1)'), (3493, 'Food and Function', 20426496, 1.145, 'Q1', 76, 893, 48379, 9614, 1811, '3', '2010-2020', 'Food Science (Q1); Medicine (miscellaneous) (Q1)'), (3494, 'Journal of Network and Computer Applications', 10958592, 1.145, 'Q1', 105, 187, 13916, 5998, 701, '2', '1996-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1)'), (3495, 'Biotechnology Journal', 18607314, 1.144, 'Q1', 84, 149, 9745, 2545, 564, '5', '2006-2020', 'Applied Microbiology and Biotechnology (Q1); Medicine (miscellaneous) (Q1); Molecular Medicine (Q2)'), (3496, 'Forensic Science International: Genetics', 18724973, 1.144, 'Q1', 75, 173, 6439, 2288, 449, '42', '2007-2020', 'Pathology and Forensic Medicine (Q1); Genetics (Q2)'), (3497, 'Frontiers in Neuroinformatics', 16625196, 1.144, 'Q1', 62, 61, 3203, 1093, 239, '19', '2007-2020', 'Biomedical Engineering (Q1); Computer Science Applications (Q1); Neuroscience (miscellaneous) (Q2)'), (3498, 'Fungal Genetics and Biology', 10960937, 1.144, 'Q2', 108, 97, 6010, 951, 265, '2', '1996-2020', 'Genetics (Q2); Microbiology (Q2)'), (3499, 'Journal of Accounting Literature', 7374607, 1.143, 'Q1', 18, 0, 0, 157, 34, '3', '2013-2019', 'Accounting (Q1)'), (3500, 'Molecular Human Reproduction', 14602407, 1.143, 'Q1', 122, 75, 4528, 731, 192, '3', '1995-2020', 'Embryology (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Cell Biology (Q2); Developmental Biology (Q2); Genetics (Q2); Molecular Biology (Q2)'), (3501, 'Optics and Lasers in Engineering', 1438166, 1.143, 'Q1', 94, 407, 15275, 4306, 753, '3', '1980-1986, 1988-2021', 'Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Mechanical Engineering (Q1)'), (3502, 'Science China Life Sciences', 16747305, 1.143, 'Q1', 52, 271, 14646, 1930, 509, '1', '2010-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)'), (3503, 'Transfusion Medicine Reviews', 15329496, 1.143, 'Q1', 74, 38, 2058, 353, 88, '3', '1987-2020', 'Biochemistry (medical) (Q1); Clinical Biochemistry (Q1); Hematology (Q1)'), (3504, 'Journal of Hospital Infection', 15322939, 1.142, 'Q1', 118, 391, 8819, 2298, 614, '3', '1980-2020', 'Medicine (miscellaneous) (Q1); Infectious Diseases (Q2); Microbiology (medical) (Q2)'), (3505, 'Journal of Neural Transmission', 3009564, 1.142, 'Q1', 110, 165, 11649, 1784, 462, '5', '1972-2020', 'Psychiatry and Mental Health (Q1); Biological Psychiatry (Q2); Neurology (Q2); Neurology (clinical) (Q2)'), (3506, 'Journal of Quaternary Science', 2678179, 1.142, 'Q1', 94, 90, 6059, 575, 211, '3', '1986-2020', 'Arts and Humanities (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Paleontology (Q1)'), (3507, 'Practical Radiation Oncology', 18798500, 1.142, 'Q1', 35, 150, 3580, 1179, 402, '16', '2011-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (3508, 'Transplantation Reviews', 955470, 1.142, 'Q1', 46, 37, 2120, 308, 88, '3', '1987-2020', 'Transplantation (Q1)'), (3509, 'Acta Diabetologica', 14325233, 1.141, 'Q1', 67, 197, 5670, 1619, 423, '7', '1991-2020', 'Endocrinology, Diabetes and Metabolism (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1); Endocrinology (Q2)'), (3510, 'Aquaculture, Economics and Management', 13657305, 1.141, 'Q1', 34, 38, 2025, 300, 70, '3', '1997-2020', 'Aquatic Science (Q1); Ecology (Q1); Geography, Planning and Development (Q1)'), (3511, 'Journal of Clinical Gastroenterology', 15392031, 1.141, 'Q2', 112, 176, 6837, 1387, 490, '2', '1979-2020', 'Gastroenterology (Q2)'), (3512, 'Digestive Diseases and Sciences', 1632116, 1.14, 'Q2', 124, 771, 24544, 3573, 1151, '2', '1979-2020', 'Gastroenterology (Q2); Physiology (Q2)'), (3513, 'Headache', 178748, 1.14, 'Q2', 119, 314, 9280, 1955, 484, '3', '1961-2020', 'Neurology (Q2); Neurology (clinical) (Q2)'), (3514, 'International Journal for Academic Developmen', 1360144, 1.14, 'Q1', 24, 47, 1476, 234, 86, '2', '2010-2020', 'Education (Q1)'), (3515, 'International Journal of Biological Macromole', 1418130, 1.14, 'Q1', 128, 3724, 207303, 45629, 6734, '16', '1979-2020', 'Economics and Econometrics (Q1); Energy (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Biochemistry (Q2); Molecular Biology (Q2); Structural Biology (Q2)'), (3516, 'Road Materials and Pavement Design', 14680629, 1.14, 'Q1', 46, 270, 10722, 1856, 505, '3', '2000-2020', 'Civil and Structural Engineering (Q1)'), (3517, 'Advances in Climate Change Research', 16749278, 1.139, 'Q1', 25, 43, 2145, 386, 87, '1', '2010-2020', 'Management, Monitoring, Policy and Law (Q1); Atmospheric Science (Q2); Global and Planetary Change (Q2)'), (3518, 'Attachment and Human Development', 14616734, 1.139, 'Q1', 69, 85, 4518, 359, 100, '2', '1999-2020', 'Developmental and Educational Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q1)'), (3519, 'Cryptogamie, Mycologie', 1811584, 1.139, 'Q1', 27, 13, 563, 107, 52, '8', '1990-1993, 1995-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (3520, 'Insurance: Mathematics and Economics', 1676687, 1.139, 'Q1', 75, 110, 4264, 802, 298, '16', '1982-2020', 'Economics and Econometrics (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q2)'), (3521, 'Physical Review Physics Education Research', 24699896, 1.139, 'Q1', 26, 88, 4693, 904, 245, '2', '2016-2020', 'Education (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3522, 'BMC Rheumatology', 25201026, 1.138, 'Q2', 8, 63, 2346, 275, 92, '3', '2017-2020', 'Rheumatology (Q2)'), (3523, 'Environmental Impact Assessment Review', 1959255, 1.138, 'Q1', 92, 106, 6584, 1214, 251, '2', '1980-1983, 1985-2020', 'Ecology (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)'), (3524, 'International Journal of Social Research Meth', 14645300, 1.138, 'Q1', 58, 104, 4255, 680, 155, '3', '1998-2020', 'Social Sciences (miscellaneous) (Q1)'), (3525, 'Journal of Family Psychology', 8933200, 1.138, 'Q1', 120, 112, 3320, 956, 352, '2', '1990-2020', 'Psychology (miscellaneous) (Q1)'), (3526, 'Progress in Earth and Planetary Science', 21974284, 1.138, 'Q1', 27, 72, 3881, 646, 190, '3', '2014-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (3527, 'IEEE Transactions on Aerospace and Electronic', 189251, 1.137, 'Q1', 144, 377, 11382, 3667, 719, '2', '1965-2020', 'Aerospace Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (3528, 'Physical Biology', 14783967, 1.137, 'Q1', 68, 61, 3905, 525, 193, '3', '2004-2020', 'Biophysics (Q1); Cell Biology (Q2); Molecular Biology (Q2); Structural Biology (Q2)'), (3529, 'Sport, Exercise, and Performance Psychology', 21573913, 1.137, 'Q1', 20, 51, 1979, 299, 72, '2', '2013-2020', 'Applied Psychology (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Social Psychology (Q1)'), (3530, 'Advances in Engineering Software', 18735339, 1.136, 'Q1', 80, 102, 5085, 2608, 360, '3', '1980-1986, 1992-2020', 'Engineering (miscellaneous) (Q1); Software (Q1)'), (3531, 'Biotechnology and Bioengineering', 63592, 1.136, 'Q1', 189, 330, 16822, 3784, 890, '5', '1962-2020', 'Applied Microbiology and Biotechnology (Q1); Bioengineering (Q1); Biotechnology (Q1)'), (3532, 'Computability', 22113576, 1.136, 'Q1', 12, 18, 395, 72, 50, '16', '2012-2020', 'Artificial Intelligence (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Theoretical Computer Science (Q1)'), (3533, 'International Journal of Women s Health', 11791411, 1.136, 'Q1', 45, 131, 5192, 845, 248, '41', '2009-2020', 'Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q1); Oncology (Q2)'), (3534, 'Journal of Behavioral Decision Making', 8943257, 1.136, 'Q1', 76, 61, 3548, 438, 188, '3', '1988-2020', 'Applied Psychology (Q1); Arts and Humanities (miscellaneous) (Q1); Decision Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Strategy and Management (Q1)'), (3535, 'Journal of Wind Engineering and Industrial Ae', 1676105, 1.136, 'Q1', 107, 304, 12784, 3551, 741, '16', '1975, 1977-2020', 'Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Renewable Energy, Sustainability and the Environment (Q1)'), (3536, 'Social Psychology of Education', 15731928, 1.136, 'Q1', 48, 74, 5337, 437, 165, '16', '1996-2020', 'Developmental and Educational Psychology (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)'), (3537, 'Ethics', 1539297, 1.135, 'Q1', 72, 21, 132, 112, 67, '2', '1973-1990, 1992-1993, 1996-2020', 'Philosophy (Q1)'), (3538, 'Food Quality and Preference', 9503293, 1.135, 'Q1', 120, 227, 12290, 3000, 548, '3', '1988-1991, 1993-2021', 'Food Science (Q1); Nutrition and Dietetics (Q1)'), (3539, 'IEEE Transactions on Emerging Topics in Compu', 2471285, 1.135, 'Q1', 21, 90, 3184, 937, 116, '2', '2017-2020', 'Artificial Intelligence (Q1); Computational Mathematics (Q1); Computer Science Applications (Q1); Control and Optimization (Q1)'), (3540, 'Palliative Care and Social Practice', 26323524, 1.135, 'Q1', 4, 12, 653, 53, 11, '3', '2019-2020', 'Advanced and Specialized Nursing (Q1)'), (3541, 'Acta Astronautica', 945765, 1.134, 'Q1', 83, 588, 21194, 5267, 1600, '3', '1974-2021', 'Aerospace Engineering (Q1)'), (3542, 'Earthquake Spectra', 87552930, 1.134, 'Q1', 92, 148, 6625, 786, 274, '2', '1984-1990, 1992-1993, 1996-2020', 'Geophysics (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (3543, 'Laryngoscope investigative otolaryngology', 23788039, 1.134, 'Q1', 11, 0, 0, 193, 54, '2', '2017-2019', 'Otorhinolaryngology (Q1); Surgery (Q1)'), (3544, 'Global Ecology and Conservation', 23519894, 1.133, 'Q1', 36, 578, 37400, 1918, 508, '16', '2014-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (3545, 'Information Society', 1972243, 1.133, 'Q1', 75, 25, 1511, 264, 67, '3', '1981-1990, 1992-2020', 'Cultural Studies (Q1); Information Systems (Q1); Management Information Systems (Q1); Political Science and International Relations (Q1)'), (3546, 'Intermetallics', 9669795, 1.133, 'Q1', 111, 257, 11080, 2816, 718, '3', '1993-2020', 'Chemistry (miscellaneous) (Q1); Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)'), (3547, 'International Journal of Mental Health System', 17524458, 1.133, 'Q1', 37, 87, 4329, 700, 215, '3', '2007-2020', 'Health Policy (Q1); Psychiatric Mental Health (Q1); Psychiatry and Mental Health (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3548, 'International Journal of Transportation Scien', 20460430, 1.133, 'Q1', 18, 50, 1779, 384, 85, '16', '2012-2020', 'Automotive Engineering (Q1); Civil and Structural Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Transportation (Q1)'), (3549, 'Marketing Letters', 1573059, 1.133, 'Q1', 70, 43, 1328, 324, 107, '2', '1989-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Marketing (Q1)'), (3550, 'School Leadership and Management', 13632434, 1.133, 'Q1', 43, 36, 1809, 260, 76, '3', '1996-2020', 'Arts and Humanities (miscellaneous) (Q1); Education (Q1); Strategy and Management (Q1)'), (3551, 'Supportive Care in Cancer', 14337339, 1.133, 'Q2', 112, 753, 26111, 4511, 1334, '5', '1993-2020', 'Oncology (Q2)'), (3552, 'American Journal of Medicine', 29343, 1.132, 'Q1', 229, 624, 9318, 2897, 839, '2', '1946-2020', 'Medicine (miscellaneous) (Q1)'), (3553, 'BMJ Open', 20446055, 1.132, 'Q1', 103, 3588, 128677, 26797, 9337, '3', '2011-2020', 'Medicine (miscellaneous) (Q1)'), (3554, 'Clinical Biochemist Reviews', 1598090, 1.132, 'Q1', 28, 6, 417, 148, 26, '11', '2005, 2011-2019', 'Clinical Biochemistry (Q1)'), (3555, 'Demographic Research', 14359871, 1.132, 'Q1', 66, 89, 4805, 738, 334, '5', '1999-2000, 2002-2020', 'Demography (Q1)'), (3556, 'Forest Policy and Economics', 13899341, 1.132, 'Q1', 68, 222, 14345, 1918, 477, '16', '2000-2020', 'Economics and Econometrics (Q1); Forestry (Q1); Management, Monitoring, Policy and Law (Q1); Sociology and Political Science (Q1)'), (3557, 'IUBMB Life', 15216543, 1.132, 'Q1', 113, 229, 14042, 1572, 405, '2', '1999-2020', 'Clinical Biochemistry (Q1); Biochemistry (Q2); Cell Biology (Q2); Genetics (Q2); Molecular Biology (Q2)'), (3558, 'Journal of Policy Modeling', 1618938, 1.132, 'Q1', 53, 94, 3986, 611, 211, '16', '1979-2020', 'Economics and Econometrics (Q1)'), (3559, 'Reaction Chemistry and Engineering', 20589883, 1.132, 'Q1', 29, 177, 11631, 1671, 383, '3', '2016-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1); Process Chemistry and Technology (Q1); Catalysis (Q2)'), (3560, 'Appetite', 1956663, 1.131, 'Q1', 144, 296, 16509, 5112, 1229, '2', '1970, 1980-2021', 'Nutrition and Dietetics (Q1); Psychology (miscellaneous) (Q1)'), (3561, 'Biochimica et Biophysica Acta - Biomembranes', 52736, 1.131, 'Q1', 182, 283, 21216, 2665, 704, '16', '1967-2021', 'Biophysics (Q1); Biochemistry (Q2); Cell Biology (Q2)'), (3562, 'Breast Cancer', 13406868, 1.131, 'Q1', 51, 142, 4413, 994, 280, '6', '1994-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (3563, 'Climate and Development', 17565529, 1.131, 'Q1', 35, 123, 8561, 701, 186, '3', '2009-2020', 'Development (Q1); Geography, Planning and Development (Q1); Global and Planetary Change (Q2)'), (3564, 'Critical Inquiry in Language Studies', 15427595, 1.131, 'Q1', 15, 22, 1275, 76, 40, '3', '2010-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3565, 'IEEE Journal of Selected Topics in Quantum El', 1077260, 1.131, 'Q1', 159, 162, 6431, 3243, 766, '2', '1995-2021', 'Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1)'), (3566, 'International Journal of Bipolar Disorders', 21947511, 1.131, 'Q1', 23, 40, 2207, 316, 83, '5', '2013-2020', 'Psychiatry and Mental Health (Q1); Biological Psychiatry (Q3)'), (3567, 'Life Sciences', 18790631, 1.131, 'Q1', 164, 1283, 79494, 8645, 1883, '2', '1962-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)'), (3568, 'Oxford Bulletin of Economics and Statistics', 3059049, 1.131, 'Q1', 73, 58, 2526, 297, 158, '3', '1973-2020', 'Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q2)'), (3569, 'Paleobiology', 948373, 1.131, 'Q1', 93, 33, 2799, 310, 118, '3', '1975-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1)'), (3570, 'Quality Technology and Quantitative Managemen', 16843703, 1.131, 'Q1', 18, 40, 1465, 307, 115, '3', '2011-2020', 'Business and International Management (Q1); Industrial Relations (Q1); Information Systems and Management (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research'), (3571, 'Annals of Thoracic Surgery', 15526259, 1.13, 'Q1', 197, 1111, 15218, 6373, 2269, '2', '1965-2020', 'Cardiology and Cardiovascular Medicine (Q1); Pulmonary and Respiratory Medicine (Q1); Surgery (Q1)'), (3572, 'Best Practice and Research in Clinical Haemat', 15321924, 1.13, 'Q1', 75, 48, 3011, 443, 141, '3', '1999-2020', 'Clinical Biochemistry (Q1); Oncology (Q2)'), (3573, 'ChemPhotoChem', 23670932, 1.13, 'Q1', 18, 134, 7475, 1157, 341, '5', '2017-2020', 'Analytical Chemistry (Q1); Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)'), (3574, 'Deep-Sea Research Part I: Oceanographic Resea', 9670637, 1.13, 'Q1', 122, 144, 10846, 1249, 390, '3', '1989, 1992-2020', 'Aquatic Science (Q1); Oceanography (Q1)'), (3575, 'Frontiers in Astronomy and Space Sciences', 2296987, 1.13, 'Q2', 22, 9, 662, 1061, 188, '19', '2014-2020', 'Astronomy and Astrophysics (Q2)'), (3576, 'Journal of Health Politics, Policy and Law', 15271927, 1.13, 'Q1', 52, 60, 2430, 280, 111, '2', '1976-2020', 'Health Policy (Q1)'), (3577, 'Molecular Pharmaceutics', 15438384, 1.13, 'Q1', 127, 408, 22045, 7084, 1430, '2', '2004-2020', 'Drug Discovery (Q1); Pharmaceutical Science (Q1); Molecular Medicine (Q2)'), (3578, 'Mycoses', 9337407, 1.13, 'Q1', 69, 153, 6492, 1473, 384, '3', '1957-2020', 'Dermatology (Q1); Medicine (miscellaneous) (Q1); Infectious Diseases (Q2)'), (3579, 'Neuropsychology', 8944105, 1.13, 'Q2', 130, 57, 2237, 876, 294, '2', '1990-2020', 'Neuropsychology and Physiological Psychology (Q2)'), (3580, 'Neuroscience of Consciousness', 20572107, 1.13, 'Q1', 6, 26, 1743, 52, 17, '3', '2017, 2019-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1); Experimental and Cognitive Psychology (Q2); Neurology (Q2); Neurology (clinical) (Q2)'), (3581, 'Review of Development Finance', 18799337, 1.13, 'Q1', 21, 4, 218, 184, 37, '27', '2011-2018', 'Economics and Econometrics (Q1); Finance (Q1)'), (3582, 'Astroparticle Physics', 9276505, 1.129, 'Q2', 120, 48, 1975, 908, 207, '16', '1992-2021', 'Astronomy and Astrophysics (Q2)'), (3583, 'ILAR Journal', 19306180, 1.129, 'Q1', 75, 13, 2318, 275, 87, '3', '1997-2019', 'Animal Science and Zoology (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (3584, 'Journal of Psychosomatic Research', 18791360, 1.129, 'Q1', 156, 213, 9930, 1769, 522, '2', '1956-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q1)'), (3585, 'Environmental Sciences: Processes and Impacts', 20507887, 1.128, 'Q1', 98, 185, 13251, 1820, 487, '3', '2012-2020', 'Management, Monitoring, Policy and Law (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Environmental Chemistry (Q2)'), (3586, 'Frontiers in Human Neuroscience', 16625161, 1.128, 'Q1', 114, 579, 37142, 5657, 1548, '19', '2008-2020', 'Psychiatry and Mental Health (Q1); Behavioral Neuroscience (Q2); Neurology (Q2); Neuropsychology and Physiological Psychology (Q2); Biological Psychiatry (Q3)'), (3587, 'International Political Sociology', 17495687, 1.128, 'Q1', 41, 24, 1956, 202, 70, '3', '2008-2020', 'Sociology and Political Science (Q1)'), (3588, 'Journal of Hospital Medicine', 15535606, 1.128, 'Q1', 65, 261, 2564, 972, 393, '2', '2006-2020', 'Assessment and Diagnosis (Q1); Care Planning (Q1); Fundamentals and Skills (Q1); Health Policy (Q1); Internal Medicine (Q1); Leadership and Management (Q1); Medicine (miscellaneous) (Q1)'), (3589, 'Journal of Orthopaedic Translation', 2214031, 1.128, 'Q1', 26, 127, 5042, 718, 132, '37', '2013-2020', 'Orthopedics and Sports Medicine (Q1)'), (3590, 'Language, Cognition and Neuroscience', 23273801, 1.128, 'Q1', 79, 129, 8547, 538, 253, '2', '2013-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)'), (3591, 'Biological Research', 7176287, 1.127, 'Q1', 55, 54, 2740, 824, 159, '3', '1992-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1)'), (3592, 'Current Chemical Genomics and Translational M', 22139885, 1.127, 'Q2', 8, 0, 0, 35, 7, '16', '2014-2015, 2017-2018', 'Biochemistry (Q2); Genetics (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)'), (3593, 'Immunotherapy', 1750743, 1.127, 'Q2', 48, 134, 5441, 1293, 387, '3', '2009-2020', 'Immunology (Q2); Immunology and Allergy (Q2); Oncology (Q2)'), (3594, 'Nutrition, Metabolism and Cardiovascular Dise', 15903729, 1.127, 'Q1', 97, 287, 11750, 1817, 439, '16', '1996-2020', 'Cardiology and Cardiovascular Medicine (Q1); Endocrinology, Diabetes and Metabolism (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q1)'), (3595, 'Vision Research', 18785646, 1.127, 'Q1', 164, 112, 6062, 1226, 404, '3', '1961-2020', 'Ophthalmology (Q1); Sensory Systems (Q2)'), (3596, 'Anatomical Sciences Education', 19359772, 1.126, 'Q1', 51, 116, 7443, 969, 176, '2', '2008-2020', 'Anatomy (Q1); Embryology (Q1); Histology (Q1); Medicine (miscellaneous) (Q1)'), (3597, 'European Sport Management Quarterly', 1746031, 1.126, 'Q1', 34, 87, 5814, 419, 96, '3', '2010-2020', 'Strategy and Management (Q1); Tourism, Leisure and Hospitality Management (Q1); Sports Science (Q2)'), (3598, 'Journal of managed care &amp; specialty pharm', 23761032, 1.126, 'Q1', 63, 222, 4966, 1234, 430, '2', '2014-2020', 'Health Policy (Q1); Pharmaceutical Science (Q1); Pharmacy (Q1)'), (3599, 'Journal of Vision', 15347362, 1.126, 'Q1', 113, 209, 10922, 1409, 675, '2', '2001-2020', 'Ophthalmology (Q1); Sensory Systems (Q2)'), (3600, 'Ultraschall in der Medizin', 1724614, 1.126, 'Q1', 55, 153, 3016, 778, 179, '5', '1980-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (3601, 'Biomolecules', 2218273, 1.125, 'Q2', 52, 1709, 140623, 5416, 1151, '19', '2011-2020', 'Biochemistry (Q2); Molecular Biology (Q2)'), (3602, 'International Journal of Medical Informatics', 18728243, 1.124, 'Q1', 106, 210, 9073, 3102, 572, '42', '1996-2020', 'Health Informatics (Q1)'), (3603, 'Journal of Clinical Psychology', 219762, 1.124, 'Q1', 119, 173, 8384, 1269, 430, '2', '1945-2020', 'Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1)'), (3604, 'Journal of Orthopaedics and Traumatology', 15909921, 1.124, 'Q1', 38, 22, 942, 345, 97, '7', '2002-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (3605, 'Cytokine', 10960023, 1.123, 'Q1', 115, 377, 19215, 3315, 884, '2', '1989-2020', 'Hematology (Q1); Biochemistry (Q2); Immunology (Q2); Immunology and Allergy (Q2); Molecular Biology (Q2)'), (3606, 'Hepatology Research', 13866346, 1.123, 'Q2', 75, 130, 4974, 1712, 470, '3', '1997-2020', 'Hepatology (Q2); Infectious Diseases (Q2)'), (3607, 'IEEE Robotics and Automation Letters', 23773766, 1.123, 'Q1', 56, 894, 26057, 9565, 1419, '2', '2016-2020', 'Artificial Intelligence (Q1); Biomedical Engineering (Q1); Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Control and Optimization (Q1); Control and Systems Engineer'), (3608, 'Journal of Applied Developmental Psychology', 1933973, 1.123, 'Q1', 85, 83, 6169, 543, 201, '3', '1980-2020', 'Developmental and Educational Psychology (Q1)'), (3609, 'Journal of Nuclear Materials', 223115, 1.123, 'Q1', 141, 555, 25132, 5611, 1843, '16', '1959-2021', 'Materials Science (miscellaneous) (Q1); Nuclear and High Energy Physics (Q1); Nuclear Energy and Engineering (Q1)'), (3610, 'Revista Mexicana de Astronomia y Astrofisica', 1851101, 1.123, 'Q2', 34, 24, 980, 456, 108, '30', '1996-2020', 'Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)'), (3611, 'Expert Reviews in Molecular Medicine', 14623994, 1.122, 'Q2', 82, 4, 431, 139, 12, '3', '1997-2020', 'Molecular Biology (Q2); Molecular Medicine (Q2)'), (3612, 'Journal of Psychopathology and Behavioral Ass', 8822689, 1.122, 'Q1', 71, 82, 4797, 535, 188, '2', '1985-2020', 'Clinical Psychology (Q1)'), (3613, 'Natural Hazards and Earth System Sciences', 16849981, 1.122, 'Q1', 99, 204, 12592, 2235, 542, '5', '2001-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (3614, 'Expert Opinion on Therapeutic Patents', 13543776, 1.121, 'Q1', 71, 73, 6838, 1413, 243, '3', '1991-2020', 'Drug Discovery (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1)'), (3615, 'Inflammation Research', 1420908, 1.121, 'Q1', 89, 116, 6165, 1216, 289, '19', '1995-2020', 'Pharmacology (Q1); Immunology (Q2)'), (3616, 'Integral Equations and Operator Theory', 14208989, 1.121, 'Q1', 48, 52, 1324, 361, 206, '19', '1978-2020', 'Algebra and Number Theory (Q1); Analysis (Q1)'), (3617, 'Journal of Endourology', 1557900, 1.121, 'Q1', 92, 243, 4525, 1577, 565, '2', '1993-2020', 'Medicine (miscellaneous) (Q1); Urology (Q1)'), (3618, 'Annales Henri Poincare', 14240637, 1.119, 'Q1', 52, 112, 4221, 996, 334, '19', '2000-2020', 'Mathematical Physics (Q1); Nuclear and High Energy Physics (Q1); Statistical and Nonlinear Physics (Q1)'), (3619, 'Science and Justice - Journal of the Forensic', 13550306, 1.119, 'Q1', 42, 66, 2748, 494, 191, '3', '1995-2020', 'Pathology and Forensic Medicine (Q1)'), (3620, 'Bioprinting', 24058866, 1.118, 'Q1', 16, 47, 3190, 372, 50, '16', '2016-2020', 'Biomedical Engineering (Q1); Biotechnology (Q1); Computer Science Applications (Q1)'), (3621, 'City', 13604813, 1.118, 'Q1', 50, 63, 2489, 372, 128, '3', '2005-2020', 'Geography, Planning and Development (Q1); Urban Studies (Q1)'), (3622, 'Composites Communications', 24522139, 1.118, 'Q1', 24, 244, 8758, 1449, 244, '3', '2016-2020', 'Ceramics and Composites (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1)'), (3623, 'Journal of Vestibular Research: Equilibrium a', 9574271, 1.118, 'Q1', 53, 44, 1777, 324, 81, '16', '1990, 1992-2020', 'Otorhinolaryngology (Q1); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2); Sensory Systems (Q2)'), (3624, 'Frontiers in Bioscience - Landmark', 10934715, 1.117, 'Q1', 143, 95, 8187, 1285, 327, '2', '1996-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q2)'), (3625, 'International Journal of Systems Science: Ope', 23302674, 1.117, 'Q1', 21, 52, 2422, 392, 80, '3', '2014-2020', 'Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Management Science and Operations Research (Q1)'), (3626, 'Neurophotonics', 2329423, 1.117, 'Q1', 32, 37, 2141, 690, 193, '2', '2014-2020', 'Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Neuroscience (miscellaneous) (Q2)'), (3627, 'Psychological Research', 14302772, 1.117, 'Q1', 76, 328, 18950, 783, 323, '5', '1974-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q1); Medicine (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q2)'), (3628, 'Self and Identity', 15298868, 1.117, 'Q1', 44, 81, 5306, 337, 125, '3', '2006-2020', 'Psychology (miscellaneous) (Q1)'), (3629, 'Sexual Health', 14498987, 1.117, 'Q1', 43, 88, 2475, 657, 273, '11', '2004-2020', 'Public Health, Environmental and Occupational Health (Q1); Infectious Diseases (Q2)'), (3630, 'AIDS Care - Psychological and Socio-Medical A', 13600451, 1.116, 'Q1', 97, 359, 12083, 1577, 724, '3', '1989-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Social Psychology (Q1)'), (3631, 'Angle Orthodontist', 33219, 1.116, 'Q1', 86, 126, 2787, 777, 336, '2', '1945, 1950-1951, 1960-1961, 1965-2020', 'Medicine (miscellaneous) (Q1); Orthodontics (Q1)'), (3632, 'European Journal of Health Economics', 16187598, 1.116, 'Q1', 53, 113, 4966, 990, 293, '5', '2002-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q1)'), (3633, 'Pediatric Blood and Cancer', 15455017, 1.116, 'Q1', 105, 656, 17845, 3733, 1324, '2', '2004-2020', 'Medicine (miscellaneous) (Q1); Pediatrics, Perinatology and Child Health (Q1); Hematology (Q2); Oncology (Q2)'), (3634, 'Public Understanding of Science', 9636625, 1.116, 'Q1', 77, 63, 2820, 617, 200, '3', '1992-2020', 'Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Developmental and Educational Psychology (Q1)'), (3635, 'Seminars in Thrombosis and Hemostasis', 10989064, 1.116, 'Q1', 99, 121, 7931, 961, 274, '2', '1974-2020', 'Cardiology and Cardiovascular Medicine (Q1); Hematology (Q1)'), (3636, 'Diseases of the Esophagus', 11208694, 1.115, 'Q1', 63, 138, 3801, 1341, 437, '3', '1988-2020', 'Medicine (miscellaneous) (Q1); Gastroenterology (Q2)'), (3637, 'Language', 15350665, 1.115, 'Q1', 76, 43, 3505, 240, 128, '2', '1996-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3638, 'Sustainable Development', 10991719, 1.115, 'Q1', 64, 152, 9850, 1214, 213, '3', '1993-2020', 'Development (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (3639, 'Therapeutic Advances in Urology', 17562872, 1.115, 'Q1', 30, 28, 919, 277, 103, '2', '2009-2020', 'Urology (Q1)'), (3640, 'World Journal of Surgery', 3642313, 1.115, 'Q1', 148, 587, 15306, 3777, 1242, '2', '1976-2020', 'Surgery (Q1)'), (3641, 'Beneficial microbes', 18762891, 1.114, 'Q2', 40, 64, 2046, 1100, 242, '16', '2010-2020', 'Microbiology (Q2); Microbiology (medical) (Q2)'), (3642, 'Journal of Economic Psychology', 1674870, 1.114, 'Q1', 97, 64, 3541, 564, 214, '16', '1981-2020', 'Applied Psychology (Q1); Economics and Econometrics (Q1); Sociology and Political Science (Q1)'), (3643, 'American Journal of Community Psychology', 910562, 1.113, 'Q1', 112, 87, 5392, 749, 241, '2', '1973-2020', 'Applied Psychology (Q1); Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1); Social Work (Q1)'), (3644, 'ASTIN Bulletin', 5150361, 1.113, 'Q1', 43, 35, 1159, 205, 103, '3', '1958-1969, 1971-1975, 1977-1982, 1984-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (3645, 'Behavioural Brain Research', 18727549, 1.113, 'Q2', 171, 498, 31984, 5652, 1749, '16', '1980-2021', 'Behavioral Neuroscience (Q2)'), (3646, 'BMC Medical Genomics', 17558794, 1.113, 'Q2', 62, 195, 8656, 1229, 398, '3', '2009-2020', 'Genetics (Q2); Genetics (clinical) (Q2)'), (3647, 'Clinical and Experimental Gastroenterology', 11787023, 1.113, 'Q2', 30, 56, 2722, 425, 118, '41', '2010-2020', 'Gastroenterology (Q2)'), (3648, 'Journal of Fluency Disorders', 94730, 1.113, 'Q1', 54, 20, 1518, 194, 73, '2', '1974, 1977-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); LPN and LVN (Q1); Speech and Hearing (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)'), (3649, 'Pain Reports', 24712531, 1.113, 'Q1', 15, 22, 1091, 539, 160, '2', '2016-2019', 'Anesthesiology and Pain Medicine (Q1)'), (3650, 'Cancer Chemotherapy and Pharmacology', 14320843, 1.112, 'Q1', 111, 198, 6622, 2309, 733, '5', '1978-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q1); Toxicology (Q1); Cancer Research (Q2); Oncology (Q2)'), (3651, 'Developments in Ophthalmology', 2503751, 1.112, 'Q1', 34, 0, 0, 153, 48, '19', '1981-1985, 1987, 1989, 1991-1994, 1997, 1999, 2002-2003, 2005, 2007-2017', 'Medicine (miscellaneous) (Q1); Ophthalmology (Q1)'), (3652, 'Journal of Alloys and Compounds', 9258388, 1.112, 'Q1', 172, 4224, 199866, 67971, 13336, '16', '1991-2021', 'Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)'), (3653, 'Journal of Experimental Education', 19400683, 1.112, 'Q1', 57, 90, 5155, 287, 118, '2', '1932-2020', 'Developmental and Educational Psychology (Q1); Education (Q1)'), (3654, 'Journal of Specialised Translation', 1740357, 1.112, 'Q1', 22, 21, 958, 153, 81, '3', '2004-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3655, 'Animal Conservation', 13679430, 1.111, 'Q1', 85, 123, 6959, 519, 157, '2', '1998-2020', 'Ecology (Q1); Nature and Landscape Conservation (Q1)'), (3656, 'Comparative Education', 13600486, 1.111, 'Q1', 56, 41, 2442, 228, 80, '3', '1964-2020', 'Education (Q1)'), (3657, 'Journal of Environmental Education', 19401892, 1.111, 'Q1', 56, 37, 2246, 287, 89, '3', '1971-2020', 'Education (Q1); Environmental Science (miscellaneous) (Q1)'), (3658, 'Journal of Glaucoma', 10570829, 1.11, 'Q1', 88, 269, 6522, 1779, 726, '2', '1992-2020', 'Ophthalmology (Q1)'), (3659, 'Nutrition and Metabolism', 17437075, 1.11, 'Q1', 84, 102, 4906, 1033, 253, '3', '2004-2020', 'Medicine (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)'), (3660, 'AAPS Journal', 15507416, 1.109, 'Q1', 112, 139, 5759, 1515, 370, '2', '1999-2020', 'Pharmaceutical Science (Q1)'), (3661, 'Clinical Journal of Pain', 15365409, 1.109, 'Q1', 126, 117, 6065, 1304, 373, '2', '1985-2020', 'Anesthesiology and Pain Medicine (Q1); Neurology (clinical) (Q2)'), (3662, 'Environment and Planning C: Politics and Spac', 23996552, 1.109, 'Q1', 69, 133, 8157, 789, 245, '3', '2017-2020', 'Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Public Administration (Q1)'), (3663, 'Epidemiology and health', 20927193, 1.109, 'Q1', 19, 40, 849, 599, 165, '13', '2015-2020', 'Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2)'), (3664, 'International Journal of Oral and Maxillofaci', 8822786, 1.109, 'Q1', 141, 142, 5434, 1344, 500, '2', '1986-2020', 'Medicine (miscellaneous) (Q1); Oral Surgery (Q1)'), (3665, 'International Migration Review', 1979183, 1.109, 'Q1', 95, 58, 4468, 292, 118, '2', '1972, 1974, 1977-2020', 'Arts and Humanities (miscellaneous) (Q1); Demography (Q1)'), (3666, 'Journal of Applied Communication Research', 14795752, 1.109, 'Q1', 57, 38, 2062, 239, 108, '3', '1973-2020', 'Communication (Q1); Language and Linguistics (Q1)'), (3667, 'Journal of Optimization Theory and Applicatio', 223239, 1.109, 'Q1', 91, 197, 6018, 1524, 581, '2', '1967-2020', 'Applied Mathematics (Q1); Control and Optimization (Q1); Management Science and Operations Research (Q1)'), (3668, 'Metabolites', 22181989, 1.109, 'Q2', 39, 519, 34396, 2234, 458, '19', '2010-2020', 'Biochemistry (Q2); Endocrinology, Diabetes and Metabolism (Q2); Molecular Biology (Q2)'), (3669, 'Politics and Society', 323292, 1.109, 'Q1', 71, 31, 0, 187, 65, '2', '1970-1990, 1992-2020', 'Political Science and International Relations (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (3670, 'Atomic Data and Nuclear Data Tables', 10902090, 1.108, 'Q1', 64, 25, 1086, 226, 78, '2', '1969-2020', 'Atomic and Molecular Physics, and Optics (Q1); Nuclear and High Energy Physics (Q1)'), (3671, 'Biometrical Journal', 3233847, 1.108, 'Q1', 63, 128, 4130, 556, 263, '5', '1977-1982, 1984-2020', 'Medicine (miscellaneous) (Q1); Statistics and Probability (Q1); Statistics, Probability and Uncertainty (Q2)'), (3672, 'BMC Microbiology', 14712180, 1.108, 'Q2', 111, 367, 18275, 2947, 759, '3', '2001-2020', 'Microbiology (Q2); Microbiology (medical) (Q2)'), (3673, 'Cardiovascular Drugs and Therapy', 15737241, 1.108, 'Q1', 69, 157, 7808, 779, 189, '16', '1987-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1)'), (3674, 'Experimental Dermatology', 16000625, 1.108, 'Q1', 96, 178, 10484, 2281, 555, '3', '1992-2020', 'Dermatology (Q1); Biochemistry (Q2); Molecular Biology (Q2)'), (3675, 'Advanced Engineering Informatics', 14740346, 1.107, 'Q1', 81, 146, 8184, 1973, 289, '3', '2002-2020', 'Artificial Intelligence (Q1); Information Systems (Q1)'), (3676, 'Boundary-Layer Meteorology', 68314, 1.107, 'Q2', 111, 83, 6230, 957, 277, '16', '1970-2020', 'Atmospheric Science (Q2)'), (3677, 'Histochemistry and Cell Biology', 1432119, 1.107, 'Q1', 98, 100, 4767, 1068, 291, '5', '1995-2020', 'Histology (Q1); Medical Laboratory Technology (Q1); Cell Biology (Q2); Molecular Biology (Q2)'), (3678, 'Journal of Fixed Point Theory and Application', 16617738, 1.107, 'Q1', 29, 99, 2691, 948, 412, '19', '2007-2020', 'Applied Mathematics (Q1); Geometry and Topology (Q1); Modeling and Simulation (Q1)'), (3679, 'Professional Development in Education', 19415257, 1.107, 'Q1', 34, 126, 6625, 485, 179, '3', '2009-2020', 'Education (Q1)'), (3680, 'Separation and Purification Reviews', 15422119, 1.107, 'Q1', 53, 28, 3839, 360, 51, '2', '1972-1995, 2003-2020', 'Analytical Chemistry (Q1); Filtration and Separation (Q1)'), (3681, 'Systematic Reviews', 20464053, 1.107, 'Q1', 57, 293, 12674, 2432, 838, '3', '2002, 2005-2010, 2012-2020', 'Medicine (miscellaneous) (Q1)'), (3682, 'Audiology and Neuro-Otology', 14203030, 1.106, 'Q1', 78, 56, 1804, 333, 132, '19', '1996-2020', 'Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1); Speech and Hearing (Q1); Physiology (Q2); Sensory Systems (Q2)'), (3683, 'Combinatorica', 2099683, 1.106, 'Q1', 58, 39, 901, 390, 180, '5', '1981-2020', 'Computational Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1)'), (3684, 'Engineering Applications of Artificial Intell', 9521976, 1.106, 'Q1', 104, 358, 19889, 4555, 634, '3', '1988-2020', 'Artificial Intelligence (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (3685, 'International Journal of Inflammation', 20420099, 1.106, 'Q2', 33, 12, 383, 215, 40, '2', '2012-2020', 'Immunology and Allergy (Q2)'), (3686, 'Nanoscale Advances', 25160230, 1.106, 'Q1', 21, 557, 34477, 2201, 501, '3', '2019-2020', 'Atomic and Molecular Physics, and Optics (Q1); Bioengineering (Q1); Chemistry (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (3687, 'Forensic Toxicology', 18608965, 1.105, 'Q1', 35, 53, 1726, 508, 139, '6', '2006-2020', 'Biochemistry (medical) (Q1); Pathology and Forensic Medicine (Q1); Toxicology (Q1)'), (3688, 'npj Primary Care Respiratory Medicine', 20551010, 1.105, 'Q1', 27, 53, 2226, 482, 155, '3', '2014-2020', 'Family Practice (Q1); Public Health, Environmental and Occupational Health (Q1); Pulmonary and Respiratory Medicine (Q1)'), (3689, 'Frontiers in Earth Science', 22966463, 1.104, 'Q1', 30, 607, 40814, 2283, 641, '19', '2013-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (3690, 'Journal of Hand Surgery: European Volume', 15322211, 1.104, 'Q1', 79, 265, 4142, 868, 417, '3', '1999, 2007-2020', 'Surgery (Q1)'), (3691, 'Precision Engineering', 1416359, 1.104, 'Q1', 84, 185, 5687, 2211, 602, '2', '1979-2020', 'Engineering (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q2)'), (3692, 'Pregnancy Hypertension', 22107797, 1.104, 'Q1', 24, 131, 4297, 924, 355, '16', '2011-2020', 'Internal Medicine (Q1); Obstetrics and Gynecology (Q1)'), (3693, 'Review of International Studies', 14699044, 1.104, 'Q1', 72, 44, 3949, 306, 138, '3', '1976, 1981-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (3694, 'Addictive Behaviors Reports', 23528532, 1.103, 'Q1', 20, 79, 3908, 647, 164, '3', '2015-2020', 'Psychiatry and Mental Health (Q1)'), (3695, 'Anthropocene Review', 20530196, 1.103, 'Q1', 25, 23, 2109, 201, 52, '2', '2014-2020', 'Ecology (Q1); Geology (Q1); Global and Planetary Change (Q2)'), (3696, 'European Journal of Pharmaceutics and Biophar', 18733441, 1.103, 'Q1', 158, 259, 14522, 4755, 844, '16', '1991-2020', 'Biotechnology (Q1); Medicine (miscellaneous) (Q1); Pharmaceutical Science (Q1)'), (3697, 'International Biodeterioration and Biodegrada', 9648305, 1.103, 'Q1', 103, 146, 8545, 3620, 734, '3', '1992-2020', 'Biomaterials (Q1); Waste Management and Disposal (Q1); Microbiology (Q2)'), (3698, 'International Journal of Tuberculosis and Lun', 18157920, 1.103, 'Q1', 110, 288, 6293, 1407, 594, '8', '1997-2020', 'Medicine (miscellaneous) (Q1); Pulmonary and Respiratory Medicine (Q1); Infectious Diseases (Q2)'), (3699, 'Journal of Industrial and Engineering Chemist', 1226086, 1.103, 'Q1', 97, 466, 26628, 9810, 1684, '13', '1996-2020', 'Chemical Engineering (miscellaneous) (Q1)'), (3700, 'Journal of the Royal Statistical Society. Ser', 9641998, 1.103, 'Q1', 84, 82, 3764, 547, 171, '3', '1988-2020', 'Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (3701, 'AIDS Research and Therapy', 17426405, 1.102, 'Q1', 40, 67, 2733, 332, 127, '3', '2004-2020', 'Pharmacology (medical) (Q1); Molecular Medicine (Q2); Virology (Q2)'), (3702, 'Journal of Process Control', 9591524, 1.102, 'Q1', 114, 136, 5639, 1820, 408, '3', '1991-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Modeling and Simulation (Q1)'), (3703, 'Journal of the Medical Library Association : ', 15365050, 1.102, 'Q1', 58, 87, 1673, 534, 188, '2', '1999-2020', 'Health Informatics (Q1); Library and Information Sciences (Q1); Medicine (miscellaneous) (Q1)'), (3704, 'Neurochemical Research', 3643190, 1.102, 'Q1', 116, 256, 16198, 3082, 793, '2', '1976-2020', 'Medicine (miscellaneous) (Q1); Biochemistry (Q2); Cellular and Molecular Neuroscience (Q3)'), (3705, 'Psychology and Psychotherapy: Theory, Researc', 20448341, 1.102, 'Q1', 62, 84, 4812, 387, 108, '2', '1920-1939, 1996-2020', 'Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Developmental and Educational Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)'), (3706, 'International Journal of Language and Communi', 13682822, 1.101, 'Q1', 67, 68, 3226, 654, 213, '2', '1966-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Speech and Hearing (Q1)'), (3707, 'Oceanography', 10428275, 1.101, 'Q1', 90, 73, 2208, 501, 164, '2', '1992, 1996-2020', 'Oceanography (Q1)'), (3708, 'Environmental Toxicology and Chemistry', 15528618, 1.1, 'Q1', 171, 250, 12811, 3028, 897, '2', '1982-2020', 'Health, Toxicology and Mutagenesis (Q1); Environmental Chemistry (Q2)'), (3709, 'Interface Focus', 20428898, 1.1, 'Q1', 49, 61, 4088, 929, 224, '3', '2011-2020', 'Bioengineering (Q1); Biomaterials (Q1); Biomedical Engineering (Q1); Biophysics (Q1); Biotechnology (Q1); Biochemistry (Q2)'), (3710, 'Journal of Applied Behavior Analysis', 19383703, 1.1, 'Q1', 76, 184, 6095, 698, 218, '2', '1968-2020', 'Applied Psychology (Q1); Philosophy (Q1); Sociology and Political Science (Q1)'), (3711, 'Journal of Clinical Pathology', 219746, 1.1, 'Q1', 127, 243, 6601, 1397, 457, '3', '1948-2020', 'Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1)'), (3712, 'Journal of Vegetation Science', 11009233, 1.1, 'Q1', 115, 103, 7170, 914, 320, '2', '1990-2020', 'Ecology (Q1); Plant Science (Q1)'), (3713, 'Language Awareness', 9658416, 1.1, 'Q1', 37, 26, 1277, 93, 56, '3', '1992-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3714, 'Applied Health Economics and Health Policy', 11755652, 1.099, 'Q1', 40, 88, 3654, 626, 202, '19', '2002-2006, 2008-2020', 'Economics and Econometrics (Q1); Health Policy (Q1); Medicine (miscellaneous) (Q1)'), (3715, 'Expert Review of Proteomics', 14789450, 1.099, 'Q2', 59, 68, 6957, 887, 231, '3', '2004-2020', 'Biochemistry (Q2); Molecular Biology (Q2)'), (3716, 'F1000Research', 20461402, 1.099, 'Q1', 60, 634, 29738, 6835, 2435, '3', '2012-2020', 'Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscella'), (3717, 'Journal of Professions and Organization', 20518811, 1.099, 'Q1', 18, 13, 944, 137, 56, '2', '2014-2020', 'Business and International Management (Q1); Organizational Behavior and Human Resource Management (Q1); Strategy and Management (Q1)'), (3718, 'Physics of the Earth and Planetary Interiors', 319201, 1.099, 'Q1', 115, 127, 8272, 818, 316, '16', '1967-2020', 'Geophysics (Q1); Physics and Astronomy (miscellaneous) (Q1); Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)'), (3719, 'Survey Research Methods', 18643361, 1.099, 'Q1', 27, 46, 1469, 155, 60, '3', '2007-2020', 'Education (Q1)'), (3720, 'BMC Health Services Research', 14726963, 1.098, 'Q1', 110, 1114, 47117, 8083, 2829, '3', '2001-2020', 'Health Policy (Q1)'), (3721, 'Clinical and Experimental Medicine', 15918890, 1.098, 'Q1', 45, 68, 3102, 637, 178, '7', '2001-2020', 'Medicine (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (3722, 'European Journal of Women s Studies', 13505068, 1.098, 'Q1', 45, 57, 2250, 242, 77, '3', '1994-2020', 'Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1)'), (3723, 'Food Packaging and Shelf Life', 22142894, 1.098, 'Q1', 34, 171, 8057, 1955, 321, '16', '2014-2020', 'Biomaterials (Q1); Food Science (Q1); Polymers and Plastics (Q1); Safety, Risk, Reliability and Quality (Q1); Microbiology (medical) (Q2)'), (3724, 'Journal of High Energy Astrophysics', 22144048, 1.098, 'Q1', 20, 28, 1369, 172, 29, '16', '2014-2020', 'Nuclear and High Energy Physics (Q1); Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)'), (3725, 'Journal of Rheology', 1486055, 1.098, 'Q1', 107, 107, 6105, 1160, 276, '6', '1957-1970, 1978-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (3726, 'Mathematical Thinking and Learning', 15327833, 1.098, 'Q1', 23, 36, 1884, 92, 40, '2', '2009-2020', 'Developmental and Educational Psychology (Q1); Education (Q1); Mathematics (miscellaneous) (Q1)'), (3727, 'NeuroMolecular Medicine', 15351084, 1.098, 'Q2', 73, 62, 3470, 469, 136, '2', '2002-2020', 'Molecular Medicine (Q2); Neurology (Q2); Cellular and Molecular Neuroscience (Q3)'), (3728, 'Nonprofit and Voluntary Sector Quarterly', 15527395, 1.098, 'Q1', 84, 83, 4542, 617, 193, '2', '1972-2020', 'Social Sciences (miscellaneous) (Q1)'), (3729, 'Patient Education and Counseling', 18735134, 1.098, 'Q1', 139, 404, 17175, 2785, 821, '42', '1983-2020', 'Medicine (miscellaneous) (Q1)'), (3730, 'Advances in Therapy', 741238, 1.097, 'Q1', 62, 375, 15133, 2540, 623, '19', '1984-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)'), (3731, 'Archives of Biochemistry and Biophysics', 39861, 1.097, 'Q1', 170, 312, 17517, 2878, 739, '2', '1951-2020', 'Biophysics (Q1); Biochemistry (Q2); Molecular Biology (Q2)'), (3732, 'Brain Research Bulletin', 3619230, 1.097, 'Q2', 131, 261, 15307, 2585, 675, '2', '1976-2020', 'Neuroscience (miscellaneous) (Q2)'), (3733, 'Internet Interventions', 22147829, 1.097, 'Q1', 31, 61, 3208, 693, 158, '16', '2014-2020', 'Health Informatics (Q1)'), (3734, 'Language, Speech, and Hearing Services in Sch', 1611461, 1.097, 'Q1', 69, 87, 5012, 419, 147, '2', '1996-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Speech and Hearing (Q1)'), (3735, 'Applied Vegetation Science', 1654109, 1.096, 'Q1', 64, 59, 3781, 558, 172, '2', '1998-2020', 'Ecology (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (3736, 'Ecological Engineering', 9258574, 1.096, 'Q1', 128, 299, 18691, 5332, 1216, '16', '1992-2020', 'Environmental Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (3737, 'European radiology experimental', 25099280, 1.096, 'Q1', 13, 66, 2175, 521, 119, '3', '2017-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (3738, 'Computational Methods in Applied Mathematics', 16094840, 1.095, 'Q1', 29, 56, 1630, 281, 131, '5', '2001-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Numerical Analysis (Q1)'), (3739, 'Journal of Agronomy and Crop Science', 1439037, 1.095, 'Q1', 74, 73, 3872, 635, 161, '3', '1973, 1978, 1986-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1)'), (3740, 'Journal of Pre-College Engineering Education ', 21579288, 1.095, 'Q1', 10, 12, 627, 74, 33, '2', '2014-2020', 'Education (Q1); Engineering (miscellaneous) (Q1)'), (3741, 'Mycorrhiza', 14321890, 1.095, 'Q1', 89, 64, 4166, 722, 192, '5', '1991-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1); Genetics (Q2); Molecular Biology (Q2)'), (3742, 'Philosophical Quarterly', 318094, 1.095, 'Q1', 45, 37, 1372, 121, 98, '3', '1950-1978, 1980-1994, 1996-2020', 'Philosophy (Q1)'), (3743, 'Shock', 10732322, 1.095, 'Q1', 117, 208, 4130, 1719, 584, '2', '1994-2020', 'Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1)'), (3744, 'Foot and Ankle Surgery', 14609584, 1.094, 'Q1', 39, 256, 7537, 778, 295, '3', '1994, 1996-2020', 'Orthopedics and Sports Medicine (Q1)'), (3745, 'Journal of NeuroEngineering and Rehabilitatio', 17430003, 1.094, 'Q1', 94, 156, 8488, 1955, 399, '3', '2004-2020', 'Health Informatics (Q1); Rehabilitation (Q1)'), (3746, 'Oncology Reports', 1021335, 1.094, 'Q1', 96, 448, 20577, 8626, 2138, '39', '1994-2020', 'Medicine (miscellaneous) (Q1); Cancer Research (Q2); Oncology (Q2)'), (3747, 'Rice Science', 16726308, 1.094, 'Q1', 27, 54, 2919, 533, 114, '16', '2007-2020', 'Agronomy and Crop Science (Q1); Biotechnology (Q1); Plant Science (Q1)'), (3748, 'Science Technology and Human Values', 1622439, 1.094, 'Q1', 73, 76, 4428, 429, 125, '2', '1976-2020', 'Anthropology (Q1); Economics and Econometrics (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q1); Philosophy (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Sc'), (3749, 'SIAM-ASA Journal on Uncertainty Quantificatio', 21662525, 1.094, 'Q1', 29, 48, 2170, 567, 137, '2', '2015-2020', 'Applied Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Modeling and Simulation (Q1); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (3750, 'ACM Transactions on Algorithms', 15496325, 1.093, 'Q1', 57, 39, 1546, 612, 159, '2', '2005-2020', 'Mathematics (miscellaneous) (Q1)'), (3751, 'Applied Ergonomics', 18729126, 1.093, 'Q1', 98, 232, 11314, 2995, 675, '3', '1969-2021', 'Engineering (miscellaneous) (Q1); Human Factors and Ergonomics (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Safety, Risk, Reliability and Quality (Q1)'), (3752, 'Computational Statistics and Data Analysis', 1679473, 1.093, 'Q1', 115, 168, 6401, 1122, 495, '16', '1983-2021', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Statistics and Probability (Q2)'), (3753, 'European Business Review', 955534, 1.093, 'Q1', 42, 73, 6897, 800, 119, '3', '1970, 1989-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1)'), (3754, 'Genesis', 1526954, 1.093, 'Q1', 110, 39, 1714, 370, 169, '2', '2000-2020', 'Medicine (miscellaneous) (Q1); Cell Biology (Q2); Endocrinology (Q2); Genetics (Q2)'), (3755, 'IEEE Transactions on Green Communications and', 24732400, 1.093, 'Q1', 26, 94, 3741, 1433, 230, '2', '2017-2020', 'Computer Networks and Communications (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (3756, 'IEEE Transactions on Neural Systems and Rehab', 15344320, 1.093, 'Q1', 140, 326, 14338, 4245, 730, '2', '2001-2020', 'Biomedical Engineering (Q1); Computer Science Applications (Q1); Internal Medicine (Q1); Medicine (miscellaneous) (Q1); Rehabilitation (Q1); Neuroscience (miscellaneous) (Q2)'), (3757, 'International Journal of Life Cycle Assessmen', 9483349, 1.093, 'Q1', 105, 173, 9252, 1942, 485, '5', '1996-2020', 'Environmental Science (miscellaneous) (Q1)'), (3758, 'Radiation Oncology', 1748717, 1.093, 'Q1', 71, 267, 9593, 2417, 695, '3', '2005-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (3759, 'Revista Matematica Complutense', 19882807, 1.093, 'Q1', 24, 61, 1798, 182, 97, '7', '2008-2020', 'Mathematics (miscellaneous) (Q1)'), (3760, 'Critical Reviews in Toxicology', 15476898, 1.092, 'Q1', 111, 53, 5867, 578, 124, '3', '1971-2020', 'Toxicology (Q1)'), (3761, 'International Journal of Science Education', 9500693, 1.092, 'Q1', 108, 148, 8281, 976, 368, '3', '1987-2020', 'Education (Q1)'), (3762, 'Minerals Engineering', 8926875, 1.092, 'Q1', 108, 409, 16406, 4768, 954, '3', '1988-2020', 'Chemistry (miscellaneous) (Q1); Control and Systems Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Mechanical Engineering (Q1)'), (3763, 'npj Microgravity', 23738065, 1.092, 'Q1', 18, 35, 1621, 368, 81, '3', '2015-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1); Biochemistry, Genetics and'), (3764, 'User Modeling and User-Adapted Interaction', 15731391, 1.092, 'Q1', 74, 35, 2157, 427, 45, '16', '1991-2020', 'Computer Science Applications (Q1); Education (Q1); Human-Computer Interaction (Q1)'), (3765, 'Journal of Eating Disorders', 20502974, 1.091, 'Q2', 29, 77, 3954, 533, 129, '3', '2013-2020', 'Behavioral Neuroscience (Q2); Nutrition and Dietetics (Q2); Psychiatry and Mental Health (Q2)'), (3766, 'Canadian Journal of Fisheries and Aquatic Sci', 706652, 1.09, 'Q1', 153, 161, 10590, 1460, 560, '9', '1980-2020', 'Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3767, 'Journal of Bioenergetics and Biomembranes', 15736881, 1.09, 'Q2', 97, 44, 2098, 393, 118, '2', '1976-2020', 'Cell Biology (Q2); Physiology (Q2)'), (3768, 'Journal of Materials in Civil Engineering', 19435533, 1.09, 'Q1', 103, 505, 21155, 4312, 1220, '2', '1989-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)'), (3769, 'Meteoritics and Planetary Science', 10869379, 1.09, 'Q1', 100, 158, 9983, 1142, 464, '2', '1996-2020', 'Geophysics (Q1); Space and Planetary Science (Q2)'), (3770, 'Scandinavian Journal of Primary Health Care', 2813432, 1.09, 'Q1', 55, 60, 1817, 437, 155, '3', '1983-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (3771, 'Water Economics and Policy', 2382624, 1.09, 'Q1', 10, 27, 994, 93, 80, '37', '2015-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Management, Monitoring, Policy and Law (Q1); Water Science and Technology (Q1)'), (3772, 'ChemBioEng Reviews', 21969744, 1.089, 'Q1', 22, 15, 1287, 369, 62, '3', '2017-2020', 'Bioengineering (Q1); Chemical Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Process Chemistry and Technology (Q1); Biochemistry (Q2); Filtration and Separation (Q2)'), (3773, 'Clinical Proteomics', 15426416, 1.089, 'Q1', 33, 40, 2399, 453, 126, '3', '2004, 2006-2020', 'Clinical Biochemistry (Q1); Molecular Biology (Q2); Molecular Medicine (Q2)'), (3774, 'Journal of Diabetes Investigation', 20401116, 1.089, 'Q1', 50, 301, 9942, 1644, 430, '11', '2010-2020', 'Internal Medicine (Q1); Medicine (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q2)'), (3775, 'Journal of Volcanology and Geothermal Researc', 3770273, 1.089, 'Q1', 118, 281, 21249, 1994, 698, '16', '1976-2020', 'Geochemistry and Petrology (Q1); Geophysics (Q1)'), (3776, 'Social and Cultural Geography', 14701197, 1.089, 'Q1', 74, 110, 7131, 556, 200, '3', '2000-2020', 'Cultural Studies (Q1); Geography, Planning and Development (Q1)'), (3777, 'Clinical Oral Investigations', 14326981, 1.088, 'Q1', 82, 592, 24223, 3596, 1082, '5', '1997-2020', 'Dentistry (miscellaneous) (Q1)'), (3778, 'Current Opinion in Physiology', 24688681, 1.088, 'Q2', 14, 138, 9338, 509, 207, '3', '2018-2021', 'Physiology (Q2); Physiology (medical) (Q2)'), (3779, 'Expert Opinion on Biological Therapy', 14712598, 1.088, 'Q1', 86, 176, 13843, 1577, 394, '3', '2001-2020', 'Clinical Biochemistry (Q1); Drug Discovery (Q1); Pharmacology (Q1)'), (3780, 'Housing, Theory and Society', 16512278, 1.088, 'Q1', 42, 69, 3741, 261, 67, '3', '1996-2020', 'Development (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)'), (3781, 'Journal of Energy Storage', 2352152, 1.088, 'Q1', 42, 860, 44642, 5383, 828, '16', '2015-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (3782, 'Mobile Media and Communication', 20501579, 1.088, 'Q1', 26, 37, 2230, 239, 65, '2', '2013-2020', 'Communication (Q1); Computer Networks and Communications (Q1); Media Technology (Q1)'), (3783, 'Motivation and Emotion', 15736644, 1.088, 'Q1', 85, 62, 4141, 531, 204, '2', '1977-2020', 'Social Psychology (Q1); Experimental and Cognitive Psychology (Q2)'), (3784, 'Early Intervention in Psychiatry', 17517885, 1.087, 'Q1', 45, 216, 9976, 1137, 408, '3', '2007-2020', 'Psychiatric Mental Health (Q1); Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)'), (3785, 'IEEE Transactions on Terahertz Science and Te', 2156342, 1.087, 'Q1', 56, 88, 2516, 1004, 257, '2', '2011-2020', 'Electrical and Electronic Engineering (Q1); Radiation (Q1)'), (3786, 'Orthopaedics and Traumatology: Surgery and Re', 18770568, 1.087, 'Q1', 56, 306, 8416, 2064, 753, '8', '2009-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (3787, 'Child and Adolescent Psychiatry and Mental He', 17532000, 1.086, 'Q1', 44, 44, 2131, 524, 159, '3', '2007-2020', 'Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q2)'), (3788, 'Expert Opinion on Drug Safety', 14740338, 1.086, 'Q1', 73, 159, 11055, 1459, 365, '3', '2002-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)'), (3789, 'Information Systems Frontiers', 15729419, 1.086, 'Q1', 66, 171, 12792, 1569, 253, '16', '1999-2020', 'Computer Networks and Communications (Q1); Information Systems (Q1); Software (Q1); Theoretical Computer Science (Q1)'), (3790, 'International Breastfeeding Journal', 17464358, 1.086, 'Q1', 41, 98, 3997, 530, 150, '3', '2006-2020', 'Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1)'), (3791, 'Menopause', 10723714, 1.086, 'Q1', 103, 271, 2708, 1383, 518, '2', '1994-2020', 'Obstetrics and Gynecology (Q1)'), (3792, 'Ocean Science', 18120792, 1.086, 'Q1', 55, 91, 5570, 837, 267, '5', '2005-2020', 'Oceanography (Q1); Paleontology (Q1)'), (3793, 'Global health, science and practice', 2169575, 1.085, 'Q1', 28, 67, 2395, 489, 195, '2', '2013-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3794, 'Infection, Genetics and Evolution', 15677257, 1.085, 'Q1', 89, 472, 24532, 3432, 1033, '16', '2001-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2); Infectious Diseases (Q2); Microbiology (Q2); Microbiology (medical) (Q2); Molecular Biology (Q2)'), (3795, 'Journal of Early Adolescence', 15525449, 1.085, 'Q1', 69, 77, 4707, 417, 157, '2', '1981-2020', 'Life-span and Life-course Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Developmental and Educational Psychology (Q2)'), (3796, 'Neurocomputing', 9252312, 1.085, 'Q1', 143, 1653, 78823, 25554, 3535, '16', '1989-2020', 'Artificial Intelligence (Q1); Computer Science Applications (Q1); Cognitive Neuroscience (Q2)'), (3797, 'Virology Journal', 1743422, 1.085, 'Q2', 81, 189, 7953, 2133, 593, '3', '2004-2020', 'Infectious Diseases (Q2); Virology (Q2)'), (3798, 'Current Opinion in Biomedical Engineering', 24684511, 1.084, 'Q1', 19, 58, 2895, 732, 171, '16', '2017-2020', 'Bioengineering (Q1); Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1); Biomaterials (Q2)'), (3799, 'Expert Opinion on Drug Delivery', 17425247, 1.084, 'Q1', 107, 152, 14474, 1821, 291, '3', '2004-2020', 'Pharmaceutical Science (Q1)'), (3800, 'Health and Quality of Life Outcomes', 14777525, 1.084, 'Q1', 112, 370, 15833, 2319, 673, '3', '2003-2020', 'Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3801, 'Journal of Gastrointestinal Oncology', 20786891, 1.084, 'Q2', 39, 139, 5066, 1226, 431, '35', '2012-2020', 'Gastroenterology (Q2); Oncology (Q2)'), (3802, 'Journal of Learning Analytics', 19297750, 1.084, 'Q1', 7, 19, 1062, 128, 29, '11', '2019-2020', 'Computer Science Applications (Q1); Education (Q1)'), (3803, 'Pedosphere', 10020160, 1.084, 'Q1', 61, 83, 5035, 1213, 243, '1', '1996-2020', 'Soil Science (Q1)'), (3804, 'Annals of Cardiothoracic Surgery', 23041021, 1.083, 'Q1', 23, 508, 13836, 1047, 300, '1', '2016-2020', 'Cardiology and Cardiovascular Medicine (Q1); Surgery (Q1)'), (3805, 'Environment and Society: Advances in Research', 21506779, 1.083, 'Q1', 10, 9, 709, 94, 28, '2', '2015-2019', 'Anthropology (Q1); Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q1); Global and Planetary Change (Q2)'), (3806, 'Extremes', 13861999, 1.083, 'Q1', 35, 33, 1016, 193, 94, '16', '2004-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Statistics and Probability (Q2)'), (3807, 'International Journal of Integrated Care', 15684156, 1.083, 'Q1', 32, 70, 2774, 410, 138, '16', '2007-2020', 'Health Policy (Q1); Health (social science) (Q1); Sociology and Political Science (Q1)'), (3808, 'Rural Sociology', 360112, 1.083, 'Q1', 65, 47, 3068, 287, 83, '2', '1978-2020', 'Sociology and Political Science (Q1)'), (3809, 'ACS Biomaterials Science and Engineering', 23739878, 1.082, 'Q1', 50, 628, 38551, 6394, 1379, '2', '2015-2020', 'Biomedical Engineering (Q1); Biomaterials (Q2)'), (3810, 'Digital Communications and Networks', 23528648, 1.082, 'Q1', 26, 77, 3226, 881, 96, '1', '2015-2020', 'Communication (Q1); Computer Networks and Communications (Q1); Hardware and Architecture (Q1)'), (3811, 'International Interactions', 3050629, 1.082, 'Q1', 42, 43, 2859, 196, 109, '3', '1974-2020', 'Political Science and International Relations (Q1)'), (3812, 'Tourism Geographies', 14701340, 1.082, 'Q1', 61, 137, 8697, 800, 149, '3', '1999-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (3813, 'European Physical Education Review', 1356336, 1.081, 'Q1', 44, 83, 4552, 490, 133, '3', '1995-2020', 'Education (Q1); Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)'), (3814, 'Frontiers in Bioengineering and Biotechnology', 22964185, 1.081, 'Q1', 44, 1458, 102472, 3844, 678, '19', '2013-2020', 'Biomedical Engineering (Q1); Biotechnology (Q1); Histology (Q1); Bioengineering (Q2)'), (3815, 'Journal of Huntington s disease', 18796400, 1.081, 'Q2', 24, 34, 1559, 247, 109, '16', '2012-2020', 'Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q3)'), (3816, 'Molecular Pain', 17448069, 1.081, 'Q1', 83, 78, 4256, 934, 298, '3', '2005-2020', 'Anesthesiology and Pain Medicine (Q1); Molecular Medicine (Q2); Cellular and Molecular Neuroscience (Q3)'), (3817, 'British Medical Bulletin', 71420, 1.08, 'Q1', 112, 36, 2183, 591, 128, '3', '1943-2020', 'Medicine (miscellaneous) (Q1)'), (3818, 'Environmental Science: Water Research and Tec', 20531400, 1.08, 'Q1', 37, 271, 17224, 2104, 463, '3', '2015-2020', 'Environmental Engineering (Q1); Water Science and Technology (Q1)'), (3819, 'Korean Journal of Radiology', 12296929, 1.08, 'Q1', 57, 159, 4703, 1512, 368, '13', '2000-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (3820, 'Molecular Astrophysics', 24056758, 1.08, 'Q1', 11, 9, 673, 184, 35, '16', '2015-2020', 'Physical and Theoretical Chemistry (Q1); Spectroscopy (Q1); Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)'), (3821, 'Annals of Hematology', 14320584, 1.079, 'Q1', 80, 433, 11131, 2244, 673, '5', '1991-2020', 'Medicine (miscellaneous) (Q1); Hematology (Q2)'), (3822, 'Computers and Mathematics with Applications', 8981221, 1.079, 'Q1', 128, 416, 16755, 5143, 1367, '3', '1975-2020', 'Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Modeling and Simulation (Q1)'), (3823, 'Fixed Point Theory', 15835022, 1.079, 'Q1', 23, 28, 813, 280, 139, '43', '2008-2020', 'Analysis (Q1); Applied Mathematics (Q1); Computational Mathematics (Q1)'), (3824, 'Journal of Advanced Ceramics', 22278508, 1.079, 'Q1', 29, 72, 3447, 725, 133, '1', '2012-2020', 'Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (3825, 'Journal of Applied Meteorology and Climatolog', 15588424, 1.079, 'Q2', 134, 125, 6973, 1468, 497, '2', '2006-2020', 'Atmospheric Science (Q2)'), (3826, 'Journal of Natural Gas Science and Engineerin', 18755100, 1.079, 'Q1', 68, 542, 31172, 5865, 1066, '16', '2009-2020', 'Energy Engineering and Power Technology (Q1); Fuel Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (3827, 'Microporous and Mesoporous Materials', 13871811, 1.079, 'Q1', 161, 752, 37307, 9090, 1758, '16', '1998-2021', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1); Nanoscience and Nanotechnology (Q2)'), (3828, 'Powder Technology', 1873328, 1.079, 'Q1', 137, 1100, 49721, 14082, 2706, '16', '1967-2021', 'Chemical Engineering (miscellaneous) (Q1)'), (3829, 'BMC Family Practice', 14712296, 1.078, 'Q1', 69, 269, 10885, 1361, 492, '3', '2000-2020', 'Family Practice (Q1)'), (3830, 'Calcified Tissue International', 14320827, 1.078, 'Q1', 117, 136, 6491, 1595, 390, '2', '1973-2020', 'Orthopedics and Sports Medicine (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (3831, 'Clinical Breast Cancer', 15268209, 1.078, 'Q2', 69, 195, 6805, 1501, 475, '2', '2000-2020', 'Oncology (Q2); Cancer Research (Q3)'), (3832, 'Current Treatment Options in Neurology', 10928480, 1.078, 'Q2', 45, 46, 3829, 603, 166, '2', '1999-2000, 2003-2020', 'Neurology (clinical) (Q2)'), (3833, 'EvoDevo', 20419139, 1.078, 'Q1', 36, 24, 1840, 179, 81, '3', '2010-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Developmental Biology (Q2); Genetics (Q2)'), (3834, 'Journal of Education for Teaching', 13600540, 1.078, 'Q1', 36, 71, 1842, 361, 135, '3', '1981-1998, 2001-2003, 2005-2020', 'Education (Q1)'), (3835, 'Journal of Modern Power Systems and Clean Ene', 21965420, 1.078, 'Q1', 40, 126, 4408, 1848, 346, '5', '2013-2020', 'Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (3836, 'Physiological Genomics', 15312267, 1.078, 'Q2', 112, 54, 3135, 734, 238, '2', '1999-2020', 'Genetics (Q2); Physiology (Q2)'), (3837, 'Social Development', 14679507, 1.078, 'Q1', 91, 91, 5759, 423, 190, '3', '1992-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Developmental and Educational Psychology (Q2)'), (3838, 'Auk', 48038, 1.077, 'Q1', 94, 46, 3156, 437, 206, '2', '1982-1987, 1993-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (3839, 'Communications on Pure and Applied Analysis', 15340392, 1.077, 'Q1', 42, 227, 6505, 835, 401, '2', '2004-2020', 'Analysis (Q1); Applied Mathematics (Q1)'), (3840, 'International Journal of Health Geographics', 1476072, 1.077, 'Q1', 76, 56, 3031, 507, 119, '3', '2002-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Computer Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3841, 'Journal of Clinical Anesthesia', 18734529, 1.077, 'Q1', 69, 497, 5279, 1830, 310, '2', '1988-2020', 'Anesthesiology and Pain Medicine (Q1)'), (3842, 'Journal of Research in Reading', 14679817, 1.077, 'Q1', 51, 36, 1932, 335, 120, '3', '1978-2020', 'Education (Q1); Psychology (miscellaneous) (Q1); Developmental and Educational Psychology (Q2)'), (3843, 'EFSA Journal', 18314732, 1.076, 'Q1', 97, 420, 17426, 2817, 834, '3', '2003-2020', 'Animal Science and Zoology (Q1); Food Science (Q1); Parasitology (Q1); Plant Science (Q1); Veterinary (miscellaneous) (Q1); Microbiology (Q2)'), (3844, 'Journal of Attention Disorders', 10870547, 1.076, 'Q1', 72, 291, 14434, 1316, 440, '2', '1996-2020', 'Clinical Psychology (Q1); Developmental and Educational Psychology (Q2)'), (3845, 'Biomarker Insights', 11772719, 1.075, 'Q1', 31, 17, 1317, 270, 58, '41', '2008-2020', 'Biochemistry (medical) (Q1); Pharmacology (Q1); Molecular Medicine (Q2)'), (3846, 'BMC Medical Ethics', 14726939, 1.075, 'Q1', 45, 123, 5865, 920, 277, '3', '2000-2020', 'Health Policy (Q1); Health (social science) (Q1); Issues, Ethics and Legal Aspects (Q1)'), (3847, 'Competition and Change', 10245294, 1.075, 'Q1', 17, 35, 2983, 207, 72, '3', '2013-2020', 'Business, Management and Accounting (miscellaneous) (Q1)'), (3848, 'IEEE Transactions on Cloud Computing', 21687161, 1.075, 'Q1', 49, 173, 3991, 1406, 223, '2', '2013-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)'), (3849, 'Journal of Pure and Applied Algebra', 224049, 1.075, 'Q1', 66, 252, 5776, 994, 643, '16', '1971-2021', 'Algebra and Number Theory (Q1)'), (3850, 'Annals of General Psychiatry', 1744859, 1.074, 'Q2', 46, 64, 3025, 445, 120, '3', '2002-2003, 2005-2020', 'Psychiatry and Mental Health (Q2)'), (3851, 'Applied Microbiology and Biotechnology', 14320614, 1.074, 'Q1', 221, 785, 52936, 10623, 2298, '5', '1984-2020', 'Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1); Medicine (miscellaneous) (Q1)'), (3852, 'Cambridge Archaeological Journal', 9597743, 1.074, 'Q1', 48, 46, 3784, 183, 109, '3', '1991-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1)'), (3853, 'International Journal of Science and Mathemat', 15710068, 1.074, 'Q1', 40, 137, 6524, 744, 264, '16', '2003-2020', 'Education (Q1); Mathematics (miscellaneous) (Q1)'), (3854, 'Journal of the International Neuropsychologic', 13556177, 1.074, 'Q1', 127, 126, 7107, 946, 300, '3', '1995-2020', 'Clinical Psychology (Q1); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (3855, 'Philosophical transactions. Series A, Mathema', 14712962, 1.074, 'Q1', 169, 372, 20073, 4724, 1009, '3', '1947, 1969-1971, 1974-1975, 1977-1988, 1991-2020', 'Engineering (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3856, 'Progress in Solid State Chemistry', 796786, 1.074, 'Q1', 50, 12, 1850, 130, 26, '3', '1964-1965, 1967, 1971-1973, 1975-1976, 1978-1991, 1993, 1995-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)'), (3857, 'Tomography (Ann Arbor, Mich.)', 2379139, 1.074, 'Q1', 9, 45, 1788, 291, 94, '2', '2017-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (3858, 'Advances in Microbial Physiology', 652911, 1.073, 'Q2', 64, 8, 1339, 228, 18, '2', '1967-1969, 1971-2020', 'Microbiology (Q2); Physiology (Q2)'), (3859, 'British Journal of Nutrition', 71145, 1.073, 'Q1', 188, 447, 23462, 3386, 855, '3', '1947-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q2)'), (3860, 'Cancer Causes and Control', 15737225, 1.073, 'Q2', 134, 108, 4734, 996, 393, '16', '1990-2020', 'Oncology (Q2); Cancer Research (Q3)'), (3861, 'Current Pollution Reports', 21986592, 1.073, 'Q1', 23, 34, 3893, 441, 76, '19', '2015-2020', 'Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1)'), (3862, 'Global Qualitative Nursing Research', 23333936, 1.073, 'Q1', 12, 22, 1097, 224, 57, '2', '2014-2020', 'Nursing (miscellaneous) (Q1)'), (3863, 'Nuclear Science and Engineering', 295639, 1.073, 'Q1', 58, 94, 2536, 360, 244, '2', '1969-2020', 'Nuclear Energy and Engineering (Q1)'), (3864, 'Anaerobe', 10759964, 1.072, 'Q2', 77, 153, 5623, 1436, 432, '2', '1995-2020', 'Infectious Diseases (Q2); Microbiology (Q2)'), (3865, 'Current Opinion in Chemical Engineering', 22113398, 1.072, 'Q1', 47, 72, 3801, 1088, 213, '16', '2011-2020', 'Energy (miscellaneous) (Q1)'), (3866, 'Eurasian Mining', 20720823, 1.072, 'Q1', 14, 29, 666, 140, 75, '10', '2013-2020', 'Business and International Management (Q1); Economic Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Industrial and Manufacturing Engineering (Q1); Management of Technology and In'), (3867, 'Journal of Leadership and Organizational Stud', 19397089, 1.072, 'Q1', 41, 31, 2809, 348, 101, '2', '1996-1999, 2008-2020', 'Business and International Management (Q1); Management Science and Operations Research (Q1); Organizational Behavior and Human Resource Management (Q1); Sociology and Political Science (Q1); Strategy '), (3868, 'Manufacturing Letters', 22138463, 1.072, 'Q1', 26, 84, 1707, 646, 122, '2', '2013-2020', 'Industrial and Manufacturing Engineering (Q1); Mechanics of Materials (Q1)'), (3869, 'Melanoma Research', 14735636, 1.072, 'Q1', 73, 91, 2295, 915, 283, '2', '1991-2020', 'Dermatology (Q1); Oncology (Q2); Cancer Research (Q3)'), (3870, 'Poultry Science', 15253171, 1.072, 'Q1', 141, 773, 33681, 6073, 1796, '2', '1965-2020', 'Animal Science and Zoology (Q1); Medicine (miscellaneous) (Q1)'), (3871, 'American Journal of Reproductive Immunology', 10467408, 1.071, 'Q1', 97, 140, 8056, 1378, 387, '3', '1980-1984, 1989-2020', 'Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (3872, 'Annals of Allergy, Asthma and Immunology', 15344436, 1.071, 'Q1', 109, 328, 8233, 2485, 843, '2', '1995-2020', 'Pulmonary and Respiratory Medicine (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (3873, 'Geographical Journal', 167398, 1.071, 'Q1', 64, 37, 1909, 364, 110, '3', '1973, 1975-1976, 1978-1994, 1996-2020', 'Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)'), (3874, 'Hematology/Oncology Clinics of North America', 15581977, 1.071, 'Q2', 81, 98, 5505, 760, 227, '3', '1987-2020', 'Hematology (Q2); Oncology (Q2)'), (3875, 'International Journal for Parasitology: Drugs', 22113207, 1.071, 'Q1', 34, 52, 3156, 657, 160, '16', '2011-2020', 'Parasitology (Q1); Pharmacology (Q1); Pharmacology (medical) (Q1); Infectious Diseases (Q2)'), (3876, 'International Journal of Sustainable Built En', 22126090, 1.071, 'Q1', 37, 0, 0, 460, 64, '16', '2012-2017', 'Ecological Modeling (Q1); Environmental Engineering (Q1); Urban Studies (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (3877, 'Journal of Chemical Physics', 10897690, 1.071, 'Q1', 357, 2016, 118684, 23477, 6173, '2', '1933-2020', 'Medicine (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3878, 'Asia Pacific Journal of Management', 2174561, 1.07, 'Q1', 78, 87, 8222, 633, 150, '2', '1983-2020', 'Business and International Management (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Strategy and Management (Q1)'), (3879, 'Interventional Neurology', 16645545, 1.07, 'Q1', 5, 26, 729, 61, 29, '19', '2016, 2018, 2020', 'Cardiology and Cardiovascular Medicine (Q1); Surgery (Q1); Neurology (clinical) (Q2)'), (3880, 'Journal of Career Assessment', 10690727, 1.07, 'Q1', 59, 45, 2959, 464, 134, '2', '1993-2020', 'Applied Psychology (Q1); Organizational Behavior and Human Resource Management (Q1); Psychology (miscellaneous) (Q1)'), (3881, 'Gates Open Research', 25724754, 1.069, 'Q1', 9, 73, 2648, 315, 107, '2', '2017-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbio'), (3882, 'IEEE Transactions on Signal and Information P', 2373776, 1.069, 'Q1', 30, 57, 2680, 859, 169, '2', '2015-2020', 'Computer Networks and Communications (Q1); Information Systems (Q1); Signal Processing (Q1)'), (3883, 'Lupus', 9612033, 1.069, 'Q2', 103, 250, 7767, 1821, 704, '3', '1991-2020', 'Rheumatology (Q2)'), (3884, 'Advanced Theory and Simulations', 25130390, 1.068, 'Q1', 17, 142, 8618, 1009, 262, '5', '2018-2020', 'Modeling and Simulation (Q1); Multidisciplinary (Q1); Numerical Analysis (Q2); Statistics and Probability (Q2)'), (3885, 'Annals of Operations Research', 2545330, 1.068, 'Q1', 105, 645, 29980, 4256, 1023, '16', '1984-2020', 'Decision Sciences (miscellaneous) (Q1); Management Science and Operations Research (Q1)'), (3886, 'Acta Politica', 16810, 1.067, 'Q1', 35, 59, 3354, 175, 83, '3', '2006-2020', 'Political Science and International Relations (Q1)'), (3887, 'Antioxidants', 20763921, 1.067, 'Q2', 46, 1305, 107354, 5833, 918, '19', '2012-2020', 'Biochemistry (Q2); Cell Biology (Q2); Clinical Biochemistry (Q2); Molecular Biology (Q2); Physiology (Q2)'), (3888, 'Contemporary Clinical Trials', 15592030, 1.067, 'Q1', 60, 207, 11272, 1147, 521, '2', '2005-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q2)'), (3889, 'Cornell Hospitality Quarterly', 19389655, 1.067, 'Q1', 75, 62, 4402, 343, 95, '2', '2008-2020', 'Tourism, Leisure and Hospitality Management (Q1)'), (3890, 'Journal of Eukaryotic Microbiology', 10665234, 1.067, 'Q2', 77, 65, 3200, 708, 239, '3', '1993-2020', 'Microbiology (Q2)'), (3891, 'Journal of Proteomics', 18743919, 1.067, 'Q1', 105, 282, 16918, 3191, 823, '16', '2008-2021', 'Biophysics (Q1); Biochemistry (Q2)'), (3892, 'Language Learning and Development', 15475441, 1.067, 'Q1', 25, 30, 1711, 118, 64, '3', '2010-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3893, 'Toxicology', 300483, 1.067, 'Q1', 160, 155, 8548, 2248, 495, '42', '1959, 1973-2020', 'Toxicology (Q1)'), (3894, 'Trials', 17456215, 1.067, 'Q1', 78, 1003, 34838, 4799, 2065, '3', '2006-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q1)'), (3895, 'Aquaculture', 448486, 1.066, 'Q1', 176, 1084, 61237, 9000, 2099, '16', '1972-2021', 'Aquatic Science (Q1)'), (3896, 'European Cells and Materials', 14732262, 1.066, 'Q1', 83, 33, 2226, 579, 129, '19', '2001-2020', 'Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1); Biochemistry (Q2); Bioengineering (Q2); Biomaterials (Q2); Cell Biology (Q2)'), (3897, 'Experimental and Clinical Psychopharmacology', 19362293, 1.066, 'Q1', 92, 108, 3458, 501, 192, '2', '1993-2020', 'Pharmacology (Q1); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2)'), (3898, 'Industrial Crops and Products', 9266690, 1.066, 'Q1', 129, 988, 52718, 15080, 2660, '16', '1992-2020', 'Agronomy and Crop Science (Q1)'), (3899, 'Proteomes', 22277382, 1.066, 'Q2', 18, 35, 2172, 323, 105, '19', '2013-2020', 'Biochemistry (Q2); Clinical Biochemistry (Q2); Molecular Biology (Q2); Structural Biology (Q2)'), (3900, 'Psoriasis: Targets and Therapy', 2230326, 1.066, 'Q1', 4, 0, 0, 4, 1, '41', '2014-2017', 'Dermatology (Q1); Rheumatology (Q2)'), (3901, 'ACS Medicinal Chemistry Letters', 19485875, 1.065, 'Q1', 66, 383, 10498, 2917, 727, '2', '2010-2020', 'Drug Discovery (Q1); Organic Chemistry (Q1); Biochemistry (Q2)'), (3902, 'Agriculture and Human Values', 15728366, 1.065, 'Q1', 76, 164, 7397, 635, 181, '16', '1984-2020', 'Agronomy and Crop Science (Q1)'), (3903, 'Drug Testing and Analysis', 19427611, 1.065, 'Q1', 54, 186, 6239, 1701, 533, '3', '2009-2020', 'Analytical Chemistry (Q1); Pharmaceutical Science (Q1); Spectroscopy (Q1); Environmental Chemistry (Q2)'), (3904, 'International Journal of Earth Sciences', 14373254, 1.065, 'Q1', 93, 152, 13728, 1211, 446, '5', '1996-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (3905, 'American Journal of Medical Genetics, Part A', 15524833, 1.064, 'Q2', 112, 454, 10284, 2763, 1078, '2', '1996-1999, 2001, 2003-2020', 'Genetics (Q2); Genetics (clinical) (Q2)'), (3906, 'GM crops &amp; food', 21645701, 1.064, 'Q1', 27, 19, 852, 198, 46, '2', '2012-2021', 'Agronomy and Crop Science (Q1); Biotechnology (Q1); Food Science (Q1)'), (3907, 'Purinergic Signalling', 15739538, 1.064, 'Q2', 59, 59, 2825, 469, 134, '16', '2004-2020', 'Cell Biology (Q2); Molecular Biology (Q2); Cellular and Molecular Neuroscience (Q3)'), (3908, 'Real Estate Economics', 15406229, 1.064, 'Q1', 61, 51, 2131, 214, 109, '3', '1973-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (3909, 'Technology, Pedagogy and Education', 17475139, 1.064, 'Q1', 34, 48, 2749, 390, 116, '3', '2003-2020', 'Communication (Q1); Computer Science Applications (Q1); Education (Q1); Information Systems (Q1)'), (3910, 'American Journal of Cardiovascular Drugs', 11753277, 1.063, 'Q1', 50, 79, 3582, 423, 148, '3', '2001-2020', 'Cardiology and Cardiovascular Medicine (Q1); Medicine (miscellaneous) (Q1); Pharmacology (medical) (Q2)'), (3911, 'Egyptian Journal of Remote Sensing and Space ', 11109823, 1.063, 'Q1', 34, 57, 1989, 697, 116, '32', '2003, 2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (3912, 'Journal of Child Language', 3050009, 1.063, 'Q1', 73, 97, 5904, 379, 190, '3', '1974-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Psychology (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)'), (3913, 'Journal of Spectral Theory', 1664039, 1.063, 'Q1', 19, 35, 1127, 334, 132, '19', '2011-2020', 'Geometry and Topology (Q1); Mathematical Physics (Q1); Statistical and Nonlinear Physics (Q1)'), (3914, 'Neurosurgical Review', 3445607, 1.063, 'Q1', 60, 343, 14846, 914, 293, '5', '1978-2020', 'Medicine (miscellaneous) (Q1); Surgery (Q1); Neurology (clinical) (Q2)'), (3915, 'Sexual Medicine Reviews', 20500521, 1.063, 'Q1', 23, 87, 5476, 819, 168, '2', '2013-2020', 'Dermatology (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Urology (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (3916, 'Applied Clay Science', 1691317, 1.062, 'Q1', 131, 403, 22339, 7335, 1324, '16', '1984-2020', 'Geology (Q1); Geochemistry and Petrology (Q2)'), (3917, 'British Journal of Developmental Psychology', 2044835, 1.062, 'Q2', 75, 45, 2121, 277, 127, '2', '1996-2020', 'Developmental and Educational Psychology (Q2); Developmental Neuroscience (Q2)'), (3918, 'Georisk', 17499518, 1.062, 'Q1', 27, 48, 2391, 273, 76, '3', '2007-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Safety, Risk, Reliability and Quality (Q1)'), (3919, 'Journal of Computational Physics: X', 25900552, 1.062, 'Q1', 7, 22, 1057, 116, 32, '2', '2019-2020', 'Computer Science Applications (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3920, 'Journal of Developmental and Life-Course Crim', 21994641, 1.062, 'Q1', 13, 30, 1909, 159, 73, '19', '2015-2020', 'Applied Psychology (Q1); Law (Q1); Life-span and Life-course Studies (Q1)'), (3921, 'Journal of ECT', 10950680, 1.062, 'Q1', 59, 86, 1819, 474, 152, '2', '1998-2020', 'Medicine (miscellaneous) (Q1); Neuroscience (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (3922, 'Journal of Neuroendocrinology', 13652826, 1.062, 'Q2', 116, 106, 8142, 948, 298, '3', '1989-2020', 'Endocrine and Autonomic Systems (Q2); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Cellular and Molecular Neuroscience (Q3)'), (3923, 'ReCALL', 9583440, 1.062, 'Q1', 52, 23, 975, 171, 57, '3', '1989-2020', 'Computer Science Applications (Q1); Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (3924, 'SPE Journal', 1086055, 1.062, 'Q1', 101, 162, 7773, 2107, 452, '2', '1969-1973, 1996-2020', 'Energy Engineering and Power Technology (Q1); Energy (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (3925, 'Urban Affairs Review', 10780874, 1.062, 'Q1', 70, 111, 7345, 427, 144, '2', '1965-2020', 'Sociology and Political Science (Q1); Urban Studies (Q1)'), (3926, 'Angiogenesis', 15737209, 1.061, 'Q2', 88, 57, 3365, 1392, 149, '16', '1997-1999, 2001-2020', 'Clinical Biochemistry (Q2); Physiology (Q2); Cancer Research (Q3)'), (3927, 'Community Dentistry and Oral Epidemiology', 3015661, 1.061, 'Q1', 101, 90, 3441, 641, 205, '25', '1973-2020', 'Dentistry (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3928, 'Computers and Fluids', 457930, 1.061, 'Q1', 107, 257, 12687, 3518, 1005, '3', '1973-2020', 'Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)'), (3929, 'Information Processing and Management', 18735371, 1.061, 'Q1', 101, 250, 14602, 2449, 298, '3', '1975-2020', 'Computer Science Applications (Q1); Information Systems (Q1); Library and Information Sciences (Q1); Management Science and Operations Research (Q1); Media Technology (Q1)'), (3930, 'Insect Conservation and Diversity', 17524598, 1.061, 'Q1', 39, 68, 4848, 411, 142, '3', '2009-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1)'), (3931, 'International Journal of Dairy Technology', 14710307, 1.061, 'Q1', 53, 88, 3374, 1019, 280, '2', '1947-1995, 1997-1998, 2000-2020', 'Food Science (Q1); Process Chemistry and Technology (Q1); Bioengineering (Q2)'), (3932, 'Pancreas', 15364828, 1.061, 'Q2', 104, 255, 5752, 1706, 570, '2', '1986-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Hepatology (Q2); Internal Medicine (Q2)'), (3933, 'Pulmonary Pharmacology and Therapeutics', 10945539, 1.061, 'Q1', 72, 74, 2752, 879, 261, '2', '1996-2020', 'Medicine (miscellaneous) (Q1); Biochemistry (medical) (Q2); Pharmacology (medical) (Q2); Pulmonary and Respiratory Medicine (Q2)'), (3934, 'Scandinavian Actuarial Journal', 3461238, 1.061, 'Q1', 37, 58, 1882, 297, 132, '3', '1918-2020', 'Economics and Econometrics (Q1); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (3935, 'Sustainable Environment Research', 24682039, 1.061, 'Q1', 29, 30, 1307, 854, 136, '22', '2010-2020', 'Environmental Engineering (Q1); Pollution (Q1); Waste Management and Disposal (Q1); Water Science and Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (3936, 'Water Resources and Rural Development', 22126082, 1.061, 'Q1', 12, 0, 0, 54, 10, '16', '2013-2017', 'Development (Q1); Geography, Planning and Development (Q1); Water Science and Technology (Q1)'), (3937, 'Discourse', 1596306, 1.06, 'Q1', 50, 131, 6211, 519, 204, '3', '1980-2020', 'Education (Q1); Linguistics and Language (Q1); Social Sciences (miscellaneous) (Q1)'), (3938, 'Immunology and Allergy Clinics of North Ameri', 8898561, 1.06, 'Q2', 65, 63, 3315, 499, 147, '3', '1987-2020', 'Immunology (Q2); Immunology and Allergy (Q2)'), (3939, 'International Journal of Clinical Oncology', 13419625, 1.06, 'Q1', 62, 252, 7827, 1454, 474, '6', '1996-2020', 'Medicine (miscellaneous) (Q1); Surgery (Q1); Hematology (Q2); Oncology (Q2)'), (3940, 'Journal of Neuroimmunology', 18728421, 1.06, 'Q2', 140, 232, 9860, 1970, 576, '16', '1981-2020', 'Immunology (Q2); Immunology and Allergy (Q2); Neurology (Q2); Neurology (clinical) (Q2)'), (3941, 'Learned Publishing', 9531513, 1.06, 'Q1', 34, 57, 1461, 319, 119, '2', '1996-2020', 'Communication (Q1)'), (3942, 'NeuroToxicology', 18729711, 1.06, 'Q1', 115, 166, 8829, 1897, 455, '16', '1979-2020', 'Toxicology (Q1); Neuroscience (miscellaneous) (Q2)'), (3943, 'IET Control Theory and Applications', 17518644, 1.059, 'Q1', 108, 368, 14372, 4148, 984, '3', '2007-2020', 'Computer Science Applications (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Human-Computer Interaction (Q1)'), (3944, 'Prostaglandins Leukotrienes and Essential Fat', 9523278, 1.059, 'Q2', 106, 84, 5191, 907, 234, '2', '1988-2020', 'Clinical Biochemistry (Q2); Cell Biology (Q3)'), (3945, 'Psychological Trauma: Theory, Research, Pract', 1942969, 1.059, 'Q1', 48, 258, 2021, 1137, 375, '2', '2009-2020', 'Clinical Psychology (Q1); Social Psychology (Q1)'), (3946, 'Journal of Cardiology', 18764738, 1.058, 'Q1', 48, 223, 6788, 1434, 523, '6', '1987-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (3947, 'Women and Birth', 18715192, 1.058, 'Q1', 39, 245, 10160, 1123, 344, '16', '2006-2020', 'Maternity and Midwifery (Q1); Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)'), (3948, 'Atmospheric Environment: X', 25901621, 1.057, 'Q1', 8, 45, 2614, 178, 49, '3', '2019-2020', 'Environmental Science (miscellaneous) (Q1); Atmospheric Science (Q2)'), (3949, 'Izvestiya Mathematics', 10645632, 1.057, 'Q1', 24, 45, 1333, 158, 140, '3', '1993-2020', 'Mathematics (miscellaneous) (Q1)'), (3950, 'Journal of Biomedical Informatics', 15320480, 1.057, 'Q1', 103, 203, 9904, 3884, 527, '2', '2001-2020', 'Computer Science Applications (Q1); Health Informatics (Q1)'), (3951, 'Journal of Geographical Sciences', 1009637, 1.057, 'Q1', 51, 115, 5554, 1273, 327, '1', '2001, 2006-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (3952, 'Psychiatry (New York)', 332747, 1.057, 'Q1', 59, 50, 1192, 205, 85, '3', '1938-2020', 'Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)'), (3953, 'Sexuality Research and Social Policy', 15536610, 1.057, 'Q1', 36, 122, 7639, 449, 129, '2', '2005-2006, 2009-2020', 'Gender Studies (Q1); Health (social science) (Q1); Sociology and Political Science (Q1)'), (3954, 'European Journal of Public Health', 1464360, 1.056, 'Q1', 91, 252, 6870, 1879, 665, '3', '1991-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (3955, 'Feminism and Psychology', 14647161, 1.056, 'Q1', 53, 41, 2202, 249, 75, '3', '1991-2020', 'Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Psychology (miscellaneous) (Q1)'), (3956, 'Journal of Applied Research in Intellectual D', 14683148, 1.056, 'Q1', 63, 154, 7553, 1024, 374, '3', '1996-2020', 'Education (Q1); Developmental and Educational Psychology (Q2)'), (3957, 'Pediatric Research', 313998, 1.056, 'Q1', 150, 634, 21489, 2539, 767, '2', '1967-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (3958, 'Pituitary', 15737403, 1.056, 'Q2', 67, 87, 3828, 917, 222, '16', '1998-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (3959, 'Teaching in Higher Education', 14701294, 1.056, 'Q1', 57, 153, 7546, 691, 217, '3', '2005-2020', 'Education (Q1)'), (3960, 'Tropical Medicine and International Health', 13602276, 1.056, 'Q1', 114, 163, 6169, 1163, 422, '3', '1996-2020', 'Parasitology (Q1); Public Health, Environmental and Occupational Health (Q1); Infectious Diseases (Q2)'), (3961, 'Clinical Endocrinology', 13652265, 1.055, 'Q2', 147, 178, 5594, 2154, 629, '3', '1972-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (3962, 'Comments on Inorganic Chemistry', 2603594, 1.055, 'Q1', 42, 14, 1159, 90, 20, '3', '1981-2020', 'Inorganic Chemistry (Q1)'), (3963, 'Developmental Psychobiology', 121630, 1.055, 'Q2', 93, 141, 9431, 795, 287, '2', '1968-2020', 'Behavioral Neuroscience (Q2); Developmental and Educational Psychology (Q2); Developmental Biology (Q2); Developmental Neuroscience (Q2)'), (3964, 'International Journal of Qualitative Studies ', 9518398, 1.055, 'Q1', 58, 128, 6158, 442, 204, '3', '1988-2020', 'Education (Q1)'), (3965, 'Journal of College Student Development', 8975264, 1.055, 'Q1', 76, 65, 2362, 423, 172, '2', '1996-2020', 'Education (Q1)'), (3966, 'Journal of Digital Imaging', 1618727, 1.055, 'Q1', 58, 152, 5068, 1791, 305, '2', '1988-2020', 'Computer Science Applications (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (3967, 'Journal of Human Genetics', 1435232, 1.055, 'Q2', 82, 151, 4623, 1263, 447, '3', '1961, 1996, 1998-2020', 'Genetics (Q2); Genetics (clinical) (Q2)'), (3968, 'Journal of Risk and Insurance', 15396975, 1.055, 'Q1', 63, 51, 2338, 264, 122, '3', '1978-1979, 1996-2020', 'Accounting (Q1); Economics and Econometrics (Q1); Finance (Q1)'), (3969, 'Management Communication Quarterly', 8933189, 1.055, 'Q1', 63, 26, 1320, 190, 90, '2', '1987-2020', 'Communication (Q1); Strategy and Management (Q1)'), (3970, 'Mobilities', 17450101, 1.055, 'Q1', 53, 65, 4226, 471, 174, '3', '2006-2020', 'Demography (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1)'), (3971, 'Tumor Biology', 14230380, 1.055, 'Q1', 84, 39, 2082, 2971, 810, '2', '1985-2020', 'Medicine (miscellaneous) (Q1); Cancer Research (Q3)'), (3972, 'Journal of Pediatric Psychology', 1468693, 1.054, 'Q1', 121, 112, 4534, 927, 314, '3', '1976-2020', 'Pediatrics, Perinatology and Child Health (Q1); Developmental and Educational Psychology (Q2)'), (3973, 'OncoTargets and Therapy', 11786930, 1.054, 'Q2', 60, 1122, 45214, 9545, 2472, '41', '2009-2020', 'Oncology (Q2); Pharmacology (medical) (Q2)'), (3974, 'Pharmaceutics', 19994923, 1.054, 'Q1', 50, 1239, 86742, 6540, 1021, '19', '2010-2020', 'Pharmaceutical Science (Q1)'), (3975, 'Phytochemistry Reviews', 15687767, 1.054, 'Q1', 83, 74, 9897, 953, 169, '16', '2002-2020', 'Biotechnology (Q1); Plant Science (Q1)'), (3976, 'Bioresources and Bioprocessing', 21974365, 1.053, 'Q1', 24, 63, 3794, 914, 157, '5', '2014-2020', 'Biomedical Engineering (Q1); Biotechnology (Q1); Food Science (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (3977, 'Current Oncology', 11980052, 1.053, 'Q2', 51, 159, 4997, 1257, 410, '9', '1998-2020', 'Oncology (Q2)'), (3978, 'Journal of the Saudi Society of Agricultural ', 1658077, 1.053, 'Q1', 34, 71, 2705, 1083, 173, '29', '2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (3979, 'Journal of Virus Eradication', 20556659, 1.053, 'Q1', 8, 35, 1140, 108, 46, '3', '2018-2020', 'Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2); Immunology (Q2); Infectious Diseases (Q2); Virology (Q2)'), (3980, 'Physical Chemistry Chemical Physics', 14639084, 1.053, 'Q1', 239, 2837, 161946, 33220, 9244, '3', '1999-2020', 'Physical and Theoretical Chemistry (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (3981, 'Career Development International', 13620436, 1.052, 'Q1', 60, 34, 2501, 476, 129, '3', '1996-2020', 'Organizational Behavior and Human Resource Management (Q1); Social Sciences (miscellaneous) (Q1)'), (3982, 'International Gambling Studies', 14794276, 1.052, 'Q1', 30, 41, 1943, 280, 90, '3', '2010-2020', 'Applied Psychology (Q1)'), (3983, 'Journal of rheumatology. Supplement, The', 3800903, 1.052, 'Q1', 7, 0, 0, 54, 23, '9', '1974, 1977-1983, 1988-1998, 2000-2012, 2014-2015, 2018-2020', 'Medicine (miscellaneous) (Q1)'), (3984, 'SIAM Journal on Applied Algebra and Geometry', 24706566, 1.052, 'Q1', 15, 17, 560, 405, 87, '2', '2017-2020', 'Algebra and Number Theory (Q1); Applied Mathematics (Q1); Geometry and Topology (Q1)'), (3985, 'Worldviews on Evidence-Based Nursing', 1545102, 1.052, 'Q1', 49, 59, 1598, 515, 169, '3', '2004-2020', 'Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)'), (3986, 'Xenotransplantation', 13993089, 1.052, 'Q2', 61, 92, 3866, 563, 182, '3', '1994-2020', 'Immunology (Q2); Transplantation (Q2)'), (3987, 'Conflict and Health', 17521505, 1.051, 'Q1', 30, 79, 3277, 384, 142, '3', '2010-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (3988, 'International Statistical Review', 3067734, 1.051, 'Q2', 54, 73, 3023, 310, 92, '2', '1982, 1985, 1987, 1990, 1992-1994, 1996-2020', 'Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (3989, 'Nanotechnology, Science and Applications', 11778903, 1.051, 'Q1', 28, 10, 577, 152, 22, '41', '2010-2012, 2014-2020', 'Biomedical Engineering (Q1); Pharmaceutical Science (Q1); Bioengineering (Q2); Nanoscience and Nanotechnology (Q2)'), (3990, 'Pediatric Rheumatology', 15460096, 1.051, 'Q1', 39, 90, 2587, 739, 240, '3', '2007-2020', 'Pediatrics, Perinatology and Child Health (Q1); Immunology and Allergy (Q2); Rheumatology (Q2)'), (3991, 'Brain, Behavior and Evolution', 14219743, 1.05, 'Q2', 77, 25, 1537, 193, 96, '19', '1968-2020', 'Behavioral Neuroscience (Q2); Developmental Neuroscience (Q2)'), (3992, 'British Journal of Health Psychology', 1359107, 1.05, 'Q1', 88, 86, 3937, 555, 158, '2', '1996-2020', 'Applied Psychology (Q1); Medicine (miscellaneous) (Q1)'), (3993, 'ChemBioChem', 14394227, 1.05, 'Q1', 126, 504, 28303, 3008, 1031, '5', '2000-2020', 'Organic Chemistry (Q1); Biochemistry (Q2); Molecular Biology (Q2); Molecular Medicine (Q2)'), (3994, 'European Journal of Applied Physiology', 14396319, 1.05, 'Q1', 133, 247, 12216, 2091, 708, '5', '1973-1974, 1996-2020', 'Medicine (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q1); Public Health, Environmental and Occupational Health (Q1); Physiology (medical) (Q2); Sports Science (Q2)'), (3995, 'Groups, Geometry, and Dynamics', 16617207, 1.05, 'Q1', 25, 45, 1179, 212, 146, '19', '2009-2019', 'Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q1)'), (3996, 'International Journal of Electrical Power and', 1420615, 1.05, 'Q1', 130, 839, 30866, 7494, 1355, '3', '1970, 1979-2021', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (3997, 'Journal of Educational Computing Research', 15414140, 1.05, 'Q1', 60, 83, 5087, 682, 181, '2', '1990, 1995-2020', 'Computer Science Applications (Q1); Education (Q1)'), (3998, 'Journal of Productivity Analysis', 895562, 1.05, 'Q1', 78, 32, 1500, 193, 73, '16', '1989-2020', 'Business and International Management (Q1); Economics and Econometrics (Q1); Social Sciences (miscellaneous) (Q1)'), (3999, 'Journal of Transport and Land Use', 19387849, 1.05, 'Q1', 27, 11, 528, 464, 155, '2', '2012-2020', 'Geography, Planning and Development (Q1); Transportation (Q1); Urban Studies (Q1)'), (4000, 'Open Heart', 20533624, 1.05, 'Q1', 28, 157, 4301, 855, 333, '3', '2014-2020', 'Cardiology and Cardiovascular Medicine (Q1)'), (4001, 'British Journal of Politics and International', 13691481, 1.049, 'Q1', 41, 72, 4500, 411, 148, '3', '2005-2020', 'Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1)'), (4002, 'Cultural Diversity and Ethnic Minority Psycho', 10999809, 1.049, 'Q1', 77, 37, 58, 576, 208, '2', '1999-2020', 'Social Psychology (Q1); Sociology and Political Science (Q1)'), (4003, 'Economic Modelling', 2649993, 1.049, 'Q2', 77, 374, 18849, 2604, 751, '16', '1984-2020', 'Economics and Econometrics (Q2)'), (4004, 'Foundations and Trends in Databases', 19317883, 1.049, 'Q1', 18, 2, 270, 44, 5, '2', '2007, 2009-2013, 2015-2018, 2020', 'Computer Science (miscellaneous) (Q1)'), (4005, 'Journal of Flood Risk Management', 1753318, 1.049, 'Q1', 36, 96, 4642, 1028, 252, '25', '2009-2020', 'Environmental Engineering (Q1); Geography, Planning and Development (Q1); Safety, Risk, Reliability and Quality (Q1); Water Science and Technology (Q1)'), (4006, 'Lipids in Health and Disease', 1476511, 1.049, 'Q2', 71, 247, 11165, 3051, 774, '3', '2002-2020', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (4007, 'CALICO Journal', 20569017, 1.048, 'Q1', 34, 18, 553, 106, 48, '2', '1983-1996, 1998-2020', 'Computer Science Applications (Q1); Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4008, 'International Journal of Molecular Medicine', 1791244, 1.048, 'Q1', 90, 372, 18706, 6153, 1558, '39', '1998-2020', 'Medicine (miscellaneous) (Q1); Genetics (Q2)'), (4009, 'Microbes and Environments', 13426311, 1.048, 'Q1', 50, 61, 2847, 564, 178, '6', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Medicine (miscellaneous) (Q1); Plant Science (Q1); Soil Science (Q1)'), (4010, 'Seminars in Neurology', 10989021, 1.048, 'Q2', 71, 82, 6149, 700, 216, '2', '1984, 1986-2020', 'Neurology (Q2); Neurology (clinical) (Q2)'), (4011, 'Steel and Composite Structures', 12299367, 1.048, 'Q1', 54, 197, 9440, 2978, 630, '13', '2004-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Metals and Alloys (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (4012, 'Anxiety, Stress and Coping', 10615806, 1.047, 'Q1', 67, 65, 3690, 471, 161, '2', '1992-2020', 'Arts and Humanities (miscellaneous) (Q1); Clinical Psychology (Q1); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4013, 'International Journal of Naval Architecture a', 20926790, 1.047, 'Q1', 26, 81, 2016, 658, 207, '13', '2009-2020', 'Control and Systems Engineering (Q1); Ocean Engineering (Q1)'), (4014, 'Journal of the Mathematical Society of Japan', 255645, 1.047, 'Q1', 36, 48, 1157, 274, 178, '6', '1948-2020', 'Mathematics (miscellaneous) (Q1)'), (4015, 'Schizophrenia Research: Cognition', 22150013, 1.047, 'Q2', 18, 36, 2089, 133, 51, '2', '2014-2021', 'Cognitive Neuroscience (Q2); Psychiatry and Mental Health (Q2)'), (4016, 'Toxins', 20726651, 1.047, 'Q1', 78, 813, 43255, 7233, 1671, '19', '2009-2020', 'Health, Toxicology and Mutagenesis (Q1); Toxicology (Q1)'), (4017, 'European Journal of Pharmacology', 142999, 1.046, 'Q1', 180, 668, 39724, 7175, 1779, '16', '1967-2020', 'Pharmacology (Q1)'), (4018, 'Journal of Neurologic Physical Therapy', 15570584, 1.046, 'Q1', 52, 38, 1387, 327, 114, '2', '2004-2020', 'Medicine (miscellaneous) (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Geriatrics and Gerontology (Q2); Neurology (clinical) (Q2)'), (4019, 'Journal of the Endocrine Society', 24721972, 1.046, 'Q2', 20, 185, 7761, 1433, 469, '2', '2017-2020', 'Endocrinology, Diabetes and Metabolism (Q2)'), (4020, 'Maritime Policy and Management', 3088839, 1.046, 'Q1', 57, 113, 4973, 705, 181, '3', '1976-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Ocean Engineering (Q1); Transportation (Q1)'), (4021, 'Dynamics of Partial Differential Equations', 1548159, 1.045, 'Q1', 21, 16, 440, 86, 48, '2', '2007-2020', 'Analysis (Q1); Applied Mathematics (Q1)'), (4022, 'NanoImpact', 24520748, 1.045, 'Q1', 25, 79, 5039, 843, 144, '16', '2016-2020', 'Materials Science (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1)'), (4023, 'Phytomedicine', 9447113, 1.045, 'Q1', 120, 239, 12447, 4556, 904, '5', '1994-2020', 'Complementary and Alternative Medicine (Q1); Drug Discovery (Q1); Pharmaceutical Science (Q1); Pharmacology (Q1); Molecular Medicine (Q2)'), (4024, 'Transfusion', 411132, 1.045, 'Q2', 132, 511, 13218, 3111, 1177, '3', '1958-2020', 'Hematology (Q2); Immunology (Q2); Immunology and Allergy (Q2)'), (4025, 'Algal Research', 22119264, 1.044, 'Q1', 64, 402, 23378, 4781, 988, '16', '2012-2020', 'Agronomy and Crop Science (Q1)'), (4026, 'American Journal of Bioethics', 15265161, 1.044, 'Q1', 60, 405, 5657, 773, 112, '3', '2001-2020', 'Health Policy (Q1); Issues, Ethics and Legal Aspects (Q1)'), (4027, 'Journal of Nephrology', 17246059, 1.044, 'Q1', 68, 223, 8635, 1010, 291, '7', '1989-2020', 'Nephrology (Q1)'), (4028, 'Journal of Surgical Education', 19317204, 1.044, 'Q1', 54, 322, 7758, 1768, 658, '2', '2007-2020', 'Education (Q1); Surgery (Q1)'), (4029, 'Cell Transplantation', 9636897, 1.043, 'Q1', 100, 196, 8347, 1977, 471, '2', '1992-2020', 'Biomedical Engineering (Q1); Medicine (miscellaneous) (Q1); Transplantation (Q2); Cell Biology (Q3)'), (4030, 'Chaos, Solitons and Fractals', 9600779, 1.043, 'Q1', 139, 886, 35752, 6805, 1208, '3', '1991-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)'), (4031, 'Human Vaccines and Immunotherapeutics', 21645515, 1.043, 'Q1', 58, 539, 21736, 3625, 1022, '2', '2012-2020', 'Medicine (miscellaneous) (Q1); Pharmacology (Q1); Immunology (Q2); Immunology and Allergy (Q2)'), (4032, 'Nutrition Journal', 14752891, 1.043, 'Q1', 90, 135, 6478, 1132, 287, '3', '2002-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q2)'), (4033, 'Russian Journal of Mathematical Physics', 15556638, 1.043, 'Q1', 37, 51, 1012, 265, 146, '10', '1996-2020', 'Mathematical Physics (Q1); Statistical and Nonlinear Physics (Q1)'), (4034, 'Child Psychiatry and Human Development', 15733327, 1.042, 'Q1', 59, 160, 9566, 685, 269, '2', '1970-2020', 'Pediatrics, Perinatology and Child Health (Q1); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4035, 'Expert Review of Gastroenterology and Hepatol', 17474132, 1.042, 'Q2', 48, 140, 10549, 1294, 326, '3', '2007-2020', 'Gastroenterology (Q2); Hepatology (Q2)'), (4036, 'International Journal of Coal Science and Tec', 21987823, 1.042, 'Q1', 26, 87, 3628, 526, 125, '19', '2014-2020', 'Energy Engineering and Power Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (4037, 'Journal of Clinical and Translational Hepatol', 23108819, 1.042, 'Q2', 29, 62, 2953, 675, 159, '2', '2013-2020', 'Hepatology (Q2)'), (4038, 'Journal of Community and Applied Social Psych', 10529284, 1.042, 'Q1', 63, 46, 2190, 265, 107, '3', '1991-2020', 'Social Psychology (Q1); Sociology and Political Science (Q1)'), (4039, 'Langmuir', 15205827, 1.042, 'Q1', 333, 1632, 84527, 19958, 5135, '2', '1985-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Spectroscopy (Q1); Surfaces and Interfaces (Q1); Electrochemistry (Q2)'), (4040, 'Social Science Research', 10960317, 1.042, 'Q1', 89, 80, 5842, 1123, 398, '2', '1972-2020', 'Education (Q1); Sociology and Political Science (Q1)'), (4041, 'Tropical Medicine and Infectious Disease', 24146366, 1.042, 'Q1', 16, 160, 7724, 925, 302, '19', '2016-2020', 'Public Health, Environmental and Occupational Health (Q1); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2)'), (4042, 'Clinics in Chest Medicine', 2725231, 1.041, 'Q2', 83, 70, 5127, 667, 189, '3', '1980-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (4043, 'Environmental Conservation', 3768929, 1.041, 'Q1', 87, 43, 2252, 429, 129, '3', '1974-2020', 'Health, Toxicology and Mutagenesis (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Pollution (Q1); Water Science and Technology (Q1)'), (4044, 'Food and Nutrition Research', 1654661, 1.041, 'Q1', 37, 42, 1745, 993, 197, '3', '2008-2020', 'Food Science (Q1); Public Health, Environmental and Occupational Health (Q1); Nutrition and Dietetics (Q2)'), (4045, 'Journal of Aging and Health', 15526887, 1.041, 'Q1', 75, 164, 8214, 742, 248, '2', '1989-2020', 'Community and Home Care (Q1); Gerontology (Q1); Health (social science) (Q1); Life-span and Life-course Studies (Q1); Sociology and Political Science (Q1); Geriatrics and Gerontology (Q2)'), (4046, 'Journal of Cognition and Development', 15327647, 1.041, 'Q2', 57, 38, 2006, 181, 99, '2', '2000-2020', 'Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4047, 'Journal of experimental psychology. Animal le', 23298464, 1.041, 'Q1', 71, 35, 1680, 208, 97, '2', '2014-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Experimental and Cognitive Psychology (Q2)'), (4048, 'Journal of Orthopaedic Research', 1554527, 1.041, 'Q1', 155, 418, 17828, 3335, 944, '2', '1983-2020', 'Orthopedics and Sports Medicine (Q1)'), (4049, 'Journal of Reconstructive Microsurgery', 743684, 1.041, 'Q1', 57, 126, 3832, 673, 287, '2', '1984-2020', 'Surgery (Q1)'), (4050, 'Marine Environmental Research', 18790291, 1.041, 'Q1', 96, 295, 22600, 2102, 568, '16', '1978-2020', 'Aquatic Science (Q1); Medicine (miscellaneous) (Q1); Oceanography (Q1); Pollution (Q1)'), (4051, 'World Allergy Organization Journal', 19394551, 1.041, 'Q2', 37, 94, 4921, 610, 146, '3', '2010-2020', 'Immunology (Q2); Immunology and Allergy (Q2); Pulmonary and Respiratory Medicine (Q2)'), (4052, 'Conservation and Society', 9724923, 1.04, 'Q1', 35, 34, 2373, 324, 115, '4', '2007-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (4053, 'Interpreters Newsletter', 15914127, 1.04, 'Q1', 8, 0, 0, 15, 13, '7', '2010-2018', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4054, 'Nitric Oxide - Biology and Chemistry', 10898611, 1.04, 'Q2', 94, 75, 5012, 1366, 324, '2', '1997-2020', 'Biochemistry (Q2); Clinical Biochemistry (Q2); Physiology (Q2); Cancer Research (Q3)'), (4055, 'Philosophy of Science', 1539767, 1.04, 'Q1', 70, 74, 2361, 340, 223, '2', '1949, 1980, 1996-2020', 'History (Q1); History and Philosophy of Science (Q1); Philosophy (Q1)'), (4056, 'Research in Autism Spectrum Disorders', 17509467, 1.04, 'Q1', 74, 142, 8392, 732, 239, '16', '2007-2020', 'Clinical Psychology (Q1); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4057, 'Sustainable Energy Technologies and Assessmen', 22131388, 1.04, 'Q1', 39, 270, 13311, 1833, 331, '3', '2013-2020', 'Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (4058, 'Trends in Neuroscience and Education', 22119493, 1.04, 'Q1', 22, 21, 1207, 119, 41, '5', '2012-2020', 'Education (Q1); Behavioral Neuroscience (Q2); Cognitive Neuroscience (Q2); Neuroscience (miscellaneous) (Q2)'), (4059, 'ASN Neuro', 17590914, 1.039, 'Q2', 45, 30, 2274, 204, 59, '3', '2009-2020', 'Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2)'), (4060, 'Chronic Obstructive Pulmonary Diseases', 2372952, 1.039, 'Q2', 9, 46, 1930, 178, 68, '2', '2018-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (4061, 'Epigenetics Insights', 25168657, 1.039, 'Q2', 4, 18, 1488, 41, 9, '3', '2018-2020', 'Biochemistry (Q2); Genetics (Q2)'), (4062, 'Fungal Ecology', 17545048, 1.039, 'Q1', 55, 82, 5806, 912, 272, '16', '2008-2020', 'Ecological Modeling (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (4063, 'International Journal of Approximate Reasonin', 888613, 1.039, 'Q1', 97, 129, 6026, 2071, 475, '2', '1974, 1987-2020', 'Applied Mathematics (Q1); Artificial Intelligence (Q1); Software (Q1); Theoretical Computer Science (Q1)'), (4064, 'Journal of diabetes science and technology', 19322968, 1.039, 'Q1', 75, 299, 6918, 1610, 427, '2', '2007-2020', 'Biomedical Engineering (Q1); Bioengineering (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (4065, 'Japanese Dental Science Review', 18827616, 1.038, 'Q1', 24, 25, 1860, 284, 58, '16', '2008-2020', 'Dentistry (miscellaneous) (Q1)'), (4066, 'Qualitative Psychology', 23263601, 1.038, 'Q1', 14, 28, 1238, 188, 78, '2', '2014-2020', 'Psychology (miscellaneous) (Q1)'), (4067, 'Science and Education', 9267220, 1.038, 'Q1', 46, 70, 5295, 296, 123, '16', '1992-2020', 'Education (Q1)'), (4068, 'Archives of Disease in Childhood', 39888, 1.037, 'Q1', 146, 451, 7705, 1970, 672, '3', '1930, 1932-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (4069, 'Biomass and Bioenergy', 9619534, 1.037, 'Q1', 180, 348, 19701, 4355, 880, '3', '1991-2020', 'Agronomy and Crop Science (Q1); Forestry (Q1); Waste Management and Disposal (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (4070, 'Brain Research', 18726240, 1.037, 'Q2', 204, 442, 29689, 3970, 1281, '16', '1966-2020', 'Developmental Biology (Q2); Molecular Biology (Q2); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2)'), (4071, 'Clinical Oncology', 14332981, 1.037, 'Q1', 76, 180, 5806, 1127, 304, '3', '1975, 1984-1985, 1989-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (4072, 'Diagnostic and interventional imaging', 22115684, 1.037, 'Q1', 36, 131, 3184, 929, 266, '8', '2012-2020', 'Medicine (miscellaneous) (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (4073, 'Geostandards and Geoanalytical Research', 16394488, 1.037, 'Q1', 73, 51, 3023, 480, 129, '2', '2004-2020', 'Geology (Q1); Geochemistry and Petrology (Q2)'), (4074, 'International Journal of Public Health', 16618564, 1.037, 'Q1', 65, 204, 6415, 1105, 356, '19', '1997, 2007-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (4075, 'Journal of Noncommutative Geometry', 16616960, 1.037, 'Q1', 26, 40, 1253, 187, 129, '19', '2007-2019', 'Algebra and Number Theory (Q1); Geometry and Topology (Q1); Mathematical Physics (Q1)'), (4076, 'Journal of the American Board of Family Medic', 15572625, 1.037, 'Q1', 80, 169, 4403, 749, 340, '2', '2001-2002, 2004, 2006-2020', 'Family Practice (Q1); Public Health, Environmental and Occupational Health (Q1)'), (4077, 'Medical Oncology', 13570560, 1.037, 'Q1', 73, 118, 4656, 1465, 435, '2', '1994-2020', 'Medicine (miscellaneous) (Q1); Hematology (Q2); Oncology (Q2); Cancer Research (Q3)'), (4078, 'Multiscale Modeling and Simulation', 15403459, 1.037, 'Q1', 70, 57, 2499, 589, 174, '2', '2003-2020', 'Chemistry (miscellaneous) (Q1); Computer Science Applications (Q1); Ecological Modeling (Q1); Modeling and Simulation (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (4079, 'Psychology, Public Policy, and Law', 10768971, 1.037, 'Q1', 62, 27, 1908, 293, 110, '2', '1995-2020', 'Law (Q1); Social Psychology (Q1); Sociology and Political Science (Q1)'), (4080, 'Zeitschrift fur Psychologie / Journal of Psyc', 443409, 1.037, 'Q1', 24, 36, 1408, 179, 80, '5', '1954-1972, 1974-2020', 'Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1)'), (4081, 'Cold Spring Harbor molecular case studies', 23732873, 1.036, 'Q2', 13, 65, 2149, 435, 171, '2', '2016-2020', 'Biochemistry (Q2); Genetics (Q2); Genetics (clinical) (Q2); Molecular Medicine (Q2)'), (4082, 'Current Heart Failure Reports', 15469530, 1.036, 'Q1', 39, 45, 3411, 487, 137, '2', '2004-2020', 'Cardiology and Cardiovascular Medicine (Q1); Emergency Medicine (Q1); Physiology (medical) (Q2)'), (4083, 'Early Education and Development', 15566935, 1.036, 'Q1', 63, 107, 7241, 459, 179, '3', '1989-2020', 'Education (Q1); Developmental and Educational Psychology (Q2)'), (4084, 'Neurospine', 25866583, 1.036, 'Q1', 12, 143, 4085, 440, 120, '13', '2018-2020', 'Surgery (Q1); Neurology (clinical) (Q2)'), (4085, 'Vadose Zone Journal', 15391663, 1.036, 'Q1', 81, 77, 4012, 1049, 346, '2', '2002-2020', 'Soil Science (Q1)'), (4086, 'City, Culture and Society', 18779174, 1.035, 'Q1', 27, 30, 1618, 335, 82, '3', '2010-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Urban Studies (Q1)'), (4087, 'Frontiers in Integrative Neuroscience', 16625145, 1.035, 'Q2', 60, 63, 4224, 469, 166, '19', '2007-2020', 'Cognitive Neuroscience (Q2); Sensory Systems (Q2); Cellular and Molecular Neuroscience (Q3)'), (4088, 'International Theory', 17529727, 1.035, 'Q1', 28, 36, 3234, 103, 45, '3', '2009-2020', 'Law (Q1); Philosophy (Q1); Political Science and International Relations (Q1)'), (4089, 'Psychology and Marketing', 7426046, 1.035, 'Q1', 116, 125, 9258, 990, 239, '2', '1984-2020', 'Applied Psychology (Q1); Marketing (Q1)'), (4090, 'Economy and Society', 3085147, 1.034, 'Q1', 92, 29, 1923, 198, 79, '3', '1972-2020', 'Business and International Management (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1); Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (4091, 'Journal of Diabetes Research', 23146745, 1.034, 'Q2', 50, 298, 13813, 2701, 699, '32', '2013-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (4092, 'Journal of Endocrinological Investigation', 3914097, 1.034, 'Q2', 84, 292, 10961, 1784, 477, '19', '1978-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (4093, 'Biodiversity and Conservation', 15729710, 1.033, 'Q1', 131, 211, 15952, 2036, 587, '16', '1992-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (4094, 'China Journal', 18358535, 1.033, 'Q1', 48, 11, 0, 107, 36, '11', '1995-2020', 'Geography, Planning and Development (Q1); Sociology and Political Science (Q1)'), (4095, 'CKJ: Clinical Kidney Journal', 20488505, 1.033, 'Q1', 40, 104, 3650, 1082, 367, '3', '2009, 2012-2019', 'Nephrology (Q1); Transplantation (Q2)'), (4096, 'Computerized Medical Imaging and Graphics', 18790771, 1.033, 'Q1', 76, 72, 3036, 1316, 188, '3', '1988-2020', 'Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1); Health Informatics (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Im'), (4097, 'Infection and Drug Resistance', 11786973, 1.033, 'Q1', 39, 463, 20129, 2850, 690, '41', '2009-2020', 'Pharmacology (Q1); Infectious Diseases (Q2); Pharmacology (medical) (Q2)'), (4098, 'Journal of Multilingual and Multicultural Dev', 1434632, 1.033, 'Q1', 45, 172, 9308, 511, 198, '3', '1980-2020', 'Cultural Studies (Q1); Education (Q1); Linguistics and Language (Q1)'), (4099, 'Soils and Foundations', 380806, 1.033, 'Q1', 79, 111, 4164, 1073, 367, '6', '1960-1972, 1975-2020', 'Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (4100, 'Superconductor Science and Technology', 9532048, 1.033, 'Q1', 105, 277, 10930, 2775, 738, '3', '1988-2020', 'Ceramics and Composites (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1)'), (4101, 'Virologica Sinica', 10035125, 1.033, 'Q2', 28, 143, 4952, 587, 164, '1', '2006-2020', 'Immunology (Q2); Molecular Medicine (Q2); Virology (Q2)'), (4102, 'Current Alzheimer Research', 15672050, 1.032, 'Q2', 88, 122, 8158, 1385, 361, '52', '2004-2020', 'Neurology (Q2); Neurology (clinical) (Q2)'), (4103, 'IEEE Transactions on Reliability', 15581721, 1.032, 'Q1', 102, 114, 4569, 1485, 279, '2', '1963-2020', 'Electrical and Electronic Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)'), (4104, 'International Transactions in Operational Res', 9696016, 1.032, 'Q1', 52, 197, 8543, 1115, 294, '25', '1994-2021', 'Business and International Management (Q1); Computer Science Applications (Q1); Management of Technology and Innovation (Q1); Management Science and Operations Research (Q1); Strategy and Management ('), (4105, 'Journal of Geriatric Oncology', 18794068, 1.032, 'Q2', 36, 270, 9142, 1040, 309, '3', '2010-2020', 'Geriatrics and Gerontology (Q2); Oncology (Q2)'), (4106, 'Journal of Plant Physiology', 1761617, 1.032, 'Q1', 130, 146, 8244, 2039, 565, '5', '1979, 1984-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1); Physiology (Q2)'), (4107, 'Nutrient Cycling in Agroecosystems', 13851314, 1.032, 'Q1', 97, 76, 4066, 729, 210, '16', '1996-2020', 'Agronomy and Crop Science (Q1); Soil Science (Q1)'), (4108, 'Chemical Research in Toxicology', 15205010, 1.031, 'Q1', 156, 297, 17847, 2238, 597, '2', '1988-2020', 'Medicine (miscellaneous) (Q1); Toxicology (Q1)'), (4109, 'Evolutionary Biology', 19342845, 1.031, 'Q1', 41, 30, 1945, 242, 101, '5', '1993, 1995, 2007-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (4110, 'Expert Opinion on Drug Metabolism and Toxicol', 17425255, 1.031, 'Q1', 82, 101, 11570, 1293, 299, '3', '2005-2020', 'Medicine (miscellaneous) (Q1); Toxicology (Q1); Pharmacology (Q2)'), (4111, 'Geoscience Letters', 21964092, 1.031, 'Q1', 17, 20, 886, 250, 41, '3', '2014-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (4112, 'Journal of Big Data', 21961115, 1.031, 'Q1', 35, 103, 5538, 2143, 212, '3', '2014-2020', 'Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Information Systems and Management (Q1)'), (4113, 'Journal of Interferon and Cytokine Research', 15577465, 1.031, 'Q1', 94, 72, 2947, 529, 205, '2', '1995-2020', 'Medicine (miscellaneous) (Q1); Virology (Q2); Cell Biology (Q3); Immunology (Q3)'), (4114, 'Microsurgery', 10982752, 1.031, 'Q1', 63, 156, 3466, 781, 336, '2', '1979-2020', 'Surgery (Q1)'), (4115, 'Differentiation', 14320436, 1.03, 'Q2', 98, 44, 2419, 386, 115, '16', '1973-2020', 'Developmental Biology (Q2); Molecular Biology (Q2); Cancer Research (Q3); Cell Biology (Q3)'), (4116, 'Psychiatry Research - Neuroimaging', 18727506, 1.03, 'Q1', 108, 105, 6003, 1046, 386, '42', '1990-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Neuroscience (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (4117, 'Animal Feed Science and Technology', 3778401, 1.029, 'Q1', 119, 286, 14451, 2133, 617, '16', '1976-2020', 'Animal Science and Zoology (Q1)'), (4118, 'Colorectal Disease', 14628910, 1.029, 'Q2', 89, 556, 9183, 1576, 533, '3', '1999-2020', 'Gastroenterology (Q2)'), (4119, 'Expositiones Mathematicae', 7230869, 1.029, 'Q1', 28, 41, 1022, 154, 68, '5', '2004-2020', 'Mathematics (miscellaneous) (Q1)'), (4120, 'Asia-Pacific Journal of Teacher Education', 14692945, 1.028, 'Q1', 35, 70, 3199, 208, 97, '3', '2006-2020', 'Education (Q1)'), (4121, 'Chinese Journal of Communication', 17544769, 1.028, 'Q1', 21, 39, 2118, 200, 73, '3', '2010-2020', 'Communication (Q1)'), (4122, 'Computational Optimization and Applications', 15732894, 1.028, 'Q1', 78, 95, 3579, 816, 262, '16', '1992-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Control and Optimization (Q1)'), (4123, 'Journal of Cardiovascular Translational Resea', 19375395, 1.028, 'Q1', 51, 166, 7896, 575, 154, '2', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q1); Pharmaceutical Science (Q1); Genetics (Q2); Genetics (clinical) (Q2); Molecular Medicine (Q2)'), (4124, 'Journal of Cellular Biochemistry', 7302312, 1.028, 'Q2', 165, 447, 17801, 13145, 3281, '2', '1982-2020', 'Biochemistry (Q2); Molecular Biology (Q2); Cell Biology (Q3)'), (4125, 'Medical and Veterinary Entomology', 269283, 1.028, 'Q1', 82, 81, 3125, 494, 180, '3', '1987-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Veterinary (miscellaneous) (Q1); Parasitology (Q2)'), (4126, 'Pediatric Infectious Disease Journal', 8913668, 1.028, 'Q1', 140, 456, 9493, 2081, 909, '2', '1982-2020', 'Pediatrics, Perinatology and Child Health (Q1); Infectious Diseases (Q2); Microbiology (medical) (Q2)'), (4127, 'Stress', 16078888, 1.028, 'Q2', 81, 107, 5859, 710, 202, '3', '1996-2020', 'Behavioral Neuroscience (Q2); Endocrine and Autonomic Systems (Q2); Neuropsychology and Physiological Psychology (Q2); Physiology (Q2); Psychiatry and Mental Health (Q2)'), (4128, 'American Journal of Translational Research', 19438141, 1.027, 'Q1', 58, 582, 24023, 5441, 1381, '2', '2009-2020', 'Medicine (miscellaneous) (Q1); Clinical Biochemistry (Q2); Molecular Medicine (Q2); Cancer Research (Q3)'), (4129, 'Diagnostic Microbiology and Infectious Diseas', 18790070, 1.027, 'Q1', 95, 192, 4910, 1788, 677, '2', '1983-2020', 'Medicine (miscellaneous) (Q1); Infectious Diseases (Q2); Microbiology (medical) (Q2)'), (4130, 'Frontiers in Chemistry', 22962646, 1.027, 'Q1', 52, 1189, 69603, 7663, 1588, '19', '2013-2020', 'Chemistry (miscellaneous) (Q1)'), (4131, 'Inflammation', 3603997, 1.027, 'Q2', 59, 215, 8235, 2353, 614, '2', '1975-2005, 2007-2020', 'Immunology and Allergy (Q2); Immunology (Q3)'), (4132, 'Journal of Science Education and Technology', 10590145, 1.027, 'Q1', 61, 72, 3926, 483, 138, '16', '1992-2002, 2004-2020', 'Education (Q1); Engineering (miscellaneous) (Q1)'), (4133, 'Journal of Space Weather and Space Climate', 21157251, 1.027, 'Q2', 32, 64, 3595, 467, 118, '8', '2011-2020', 'Atmospheric Science (Q2); Space and Planetary Science (Q2)'), (4134, 'Progress in Physical Geography', 14770296, 1.027, 'Q1', 101, 70, 5434, 526, 131, '3', '1977-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (4135, 'Psychiatric Clinics of North America', 15583147, 1.027, 'Q2', 95, 57, 3627, 511, 160, '3', '1978-2020', 'Psychiatry and Mental Health (Q2)'), (4136, 'Substance Abuse: Research and Treatment', 11782218, 1.027, 'Q2', 22, 41, 2135, 201, 63, '41', '2009-2020', 'Psychiatry and Mental Health (Q2)'), (4137, 'Therapeutic Advances in Chronic Disease', 20406231, 1.027, 'Q1', 35, 87, 4505, 415, 89, '2', '2010-2020', 'Medicine (miscellaneous) (Q1)'), (4138, 'Dementia and Geriatric Cognitive Disorders', 14219824, 1.026, 'Q2', 110, 65, 2688, 507, 174, '19', '1990-1992, 1994-2020', 'Cognitive Neuroscience (Q2); Geriatrics and Gerontology (Q2); Psychiatry and Mental Health (Q2)'), (4139, 'Gut Pathogens', 17574749, 1.026, 'Q2', 41, 54, 2408, 715, 186, '3', '2009, 2014-2020', 'Gastroenterology (Q2); Infectious Diseases (Q2); Microbiology (Q2); Parasitology (Q2); Virology (Q2)'), (4140, 'Health Communication', 10410236, 1.026, 'Q1', 68, 409, 19157, 1733, 553, '3', '1989-2020', 'Communication (Q1); Health (social science) (Q1)'), (4141, 'Journal of Studies on Alcohol and Drugs', 19371888, 1.026, 'Q1', 125, 106, 4039, 739, 285, '2', '2007-2020', 'Health (social science) (Q1); Toxicology (Q1); Psychiatry and Mental Health (Q2)'), (4142, 'Solar Physics', 380938, 1.026, 'Q2', 123, 175, 8443, 1979, 522, '16', '1967-2020', 'Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)'), (4143, 'Zeitschrift fur Medizinische Physik', 9393889, 1.026, 'Q1', 34, 49, 1851, 390, 90, '5', '2000-2020', 'Biophysics (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (4144, 'American Journal of Chinese Medicine', 192415, 1.025, 'Q1', 63, 97, 5371, 1230, 288, '37', '1974-1977, 1979-2020', 'Complementary and Alternative Medicine (Q1); Medicine (miscellaneous) (Q1)'), (4145, 'Clinical Ophthalmology', 11775467, 1.025, 'Q2', 56, 499, 16440, 2157, 890, '41', '2009-2020', 'Ophthalmology (Q2)'), (4146, 'Drug Metabolism and Disposition', 909556, 1.025, 'Q1', 175, 144, 6847, 1751, 507, '2', '1973-2020', 'Pharmaceutical Science (Q1); Pharmacology (Q2)'), (4147, 'European Journal of Radiology', 18727727, 1.025, 'Q1', 115, 518, 15691, 3680, 1082, '42', '1981-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (4148, 'International Journal of Greenhouse Gas Contr', 17505836, 1.025, 'Q1', 114, 220, 11850, 3310, 787, '16', '2007-2020', 'Energy (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1)'), (4149, 'Muscle and Nerve', 10974598, 1.025, 'Q2', 145, 300, 9073, 2412, 866, '2', '1978-2020', 'Neurology (clinical) (Q2); Physiology (Q2); Physiology (medical) (Q2); Cellular and Molecular Neuroscience (Q3)'), (4150, 'Political Science Quarterly', 323195, 1.025, 'Q1', 49, 20, 0, 150, 59, '2', '1968, 1980, 1996-2020', 'Sociology and Political Science (Q1)'), (4151, 'Antonie van Leeuwenhoek', 36072, 1.024, 'Q1', 107, 179, 8781, 1646, 525, '16', '1934-1939, 1941-1944, 1946-2020', 'Medicine (miscellaneous) (Q1); Microbiology (Q2); Molecular Biology (Q2)'), (4152, 'Cancer Management and Research', 11791322, 1.024, 'Q2', 40, 1211, 44445, 5999, 1650, '41', '2010-2020', 'Oncology (Q2)'), (4153, 'Drugs and Aging', 1170229, 1.024, 'Q2', 94, 89, 4229, 997, 277, '3', '1991-2020', 'Geriatrics and Gerontology (Q2); Pharmacology (medical) (Q2)'), (4154, 'European Journal of Clinical Nutrition', 9543007, 1.024, 'Q1', 157, 299, 10568, 2504, 666, '3', '1988-2020', 'Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q2)'), (4155, 'European Research on Management and Business ', 24448834, 1.024, 'Q1', 18, 22, 1231, 427, 63, '12', '2016-2020', 'Business and International Management (Q1); Marketing (Q1); Strategy and Management (Q1); Economics and Econometrics (Q2)'), (4156, 'Research in Developmental Disabilities', 18733379, 1.024, 'Q1', 89, 193, 10137, 1671, 512, '2', '1987-2020', 'Clinical Psychology (Q1); Developmental and Educational Psychology (Q2)'), (4157, 'Review of Income and Wealth', 346586, 1.024, 'Q2', 57, 62, 2996, 322, 161, '3', '1951-1953, 1955, 1957-1959, 1961-2020', 'Economics and Econometrics (Q2)'), (4158, 'Drug Metabolism Reviews', 10979883, 1.023, 'Q1', 97, 32, 4547, 423, 78, '2', '1972-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacology (medical) (Q2)'), (4159, 'IEEE Journal of Photovoltaics', 21563381, 1.023, 'Q1', 72, 238, 8041, 3050, 749, '2', '2011-2020', 'Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (4160, 'Journal of Biological Engineering', 17541611, 1.023, 'Q1', 40, 26, 1396, 767, 177, '3', '2007-2020', 'Biomedical Engineering (Q1); Environmental Engineering (Q1); Molecular Biology (Q2); Cell Biology (Q3)'), (4161, 'NJAS - Wageningen Journal of Life Sciences', 15735214, 1.023, 'Q1', 43, 25, 1259, 392, 85, '16', '1988, 1996-2003, 2005-2020', 'Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Development (Q1); Food Science (Q1); Plant Science (Q1)'), (4162, 'Pharmacoepidemiology and Drug Safety', 10991557, 1.023, 'Q2', 96, 216, 7284, 1473, 526, '3', '1992-2020', 'Epidemiology (Q2); Pharmacology (medical) (Q2)'), (4163, 'Precision Agriculture', 15731618, 1.023, 'Q1', 63, 103, 4847, 1054, 188, '16', '1999-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (4164, 'Business and Information Systems Engineering', 18670202, 1.022, 'Q1', 44, 57, 3006, 1069, 108, '5', '2009-2020', 'Information Systems (Q1)'), (4165, 'Chemical Engineering Science', 92509, 1.022, 'Q1', 186, 629, 31186, 9203, 2073, '3', '1951-2021', 'Applied Mathematics (Q1); Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1)'), (4166, 'Economic Systems Research', 9535314, 1.022, 'Q2', 54, 59, 2715, 243, 87, '3', '1989-2020', 'Economics and Econometrics (Q2)'), (4167, 'Hypertension Research', 13484214, 1.022, 'Q1', 89, 210, 7469, 1466, 409, '3', '1992-2020', 'Cardiology and Cardiovascular Medicine (Q1); Internal Medicine (Q2); Physiology (Q2)'), (4168, 'IEEE/ACM Transactions on Networking', 10636692, 1.022, 'Q1', 174, 187, 6994, 3573, 652, '2', '1993-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Software (Q1)'), (4169, 'Journal of Avian Biology', 1600048, 1.022, 'Q1', 76, 96, 6544, 802, 360, '3', '1994-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (4170, 'Journal of Diabetes and its Complications', 10568727, 1.022, 'Q2', 85, 170, 6774, 1774, 572, '2', '1992-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (4171, 'Journal of the American College of Radiology', 1558349, 1.022, 'Q1', 59, 397, 8331, 3013, 1041, '16', '2004-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (4172, 'Therapeutic Advances in Respiratory Disease', 17534658, 1.022, 'Q2', 37, 91, 3371, 504, 134, '3', '2007-2020', 'Pharmacology (medical) (Q2); Pulmonary and Respiratory Medicine (Q2)'), (4173, 'Zoological Letters', 2056306, 1.022, 'Q1', 9, 15, 909, 216, 90, '3', '2016-2020', 'Animal Science and Zoology (Q1)'), (4174, 'Asian Journal of Pharmaceutical Sciences', 18180876, 1.021, 'Q1', 39, 70, 5123, 1087, 188, '1', '2009-2020', 'Pharmaceutical Science (Q1); Pharmacology (Q2)'), (4175, 'Digestive and Liver Disease', 15908658, 1.021, 'Q2', 92, 380, 9149, 2189, 716, '16', '2000-2020', 'Gastroenterology (Q2); Hepatology (Q2)'), (4176, 'Leadership', 17427150, 1.021, 'Q1', 44, 56, 3340, 252, 110, '3', '2005-2020', 'Sociology and Political Science (Q1); Strategy and Management (Q1)'), (4177, 'Behavioral Sleep Medicine', 15402010, 1.02, 'Q1', 49, 102, 5211, 453, 148, '2', '2003-2020', 'Medicine (miscellaneous) (Q1); Psychology (miscellaneous) (Q1); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2)'), (4178, 'Dairy Science and Technology', 19585594, 1.02, 'Q1', 43, 0, 0, 39, 7, '2', '2007-2017', 'Food Science (Q1); Biochemistry (Q2)'), (4179, 'IEEE Transactions on Biomedical Circuits and ', 19324545, 1.02, 'Q1', 73, 124, 4985, 2031, 408, '2', '2007-2020', 'Electrical and Electronic Engineering (Q1); Biomedical Engineering (Q2)'), (4180, 'International Journal of Oral and Maxillofaci', 9015027, 1.02, 'Q1', 99, 313, 8464, 1774, 659, '2', '1986-2020', 'Oral Surgery (Q1); Otorhinolaryngology (Q1); Surgery (Q1)'), (4181, 'Journal of Occupational Rehabilitation', 15733688, 1.02, 'Q1', 72, 77, 3740, 538, 187, '2', '1991-2020', 'Occupational Therapy (Q1); Rehabilitation (Q1)'), (4182, 'Numerical Linear Algebra with Applications', 10705325, 1.02, 'Q1', 53, 62, 2118, 546, 178, '3', '1994-2020', 'Algebra and Number Theory (Q1); Applied Mathematics (Q1)'), (4183, 'School Mental Health', 18662625, 1.02, 'Q1', 33, 61, 3716, 384, 125, '2', '2009-2010, 2013-2020', 'Education (Q1); Developmental and Educational Psychology (Q2)'), (4184, 'Socio-Economic Planning Sciences', 380121, 1.02, 'Q1', 52, 200, 11441, 706, 137, '3', '1967-2020', 'Geography, Planning and Development (Q1); Management Science and Operations Research (Q1); Strategy and Management (Q1); Economics and Econometrics (Q2); Statistics, Probability and Uncertainty (Q2)'), (4185, 'BMC Ecology', 14726785, 1.019, 'Q1', 47, 68, 3869, 465, 156, '3', '2001-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Environmental Science (miscellaneous) (Q1)'), (4186, 'Health promotion and chronic disease preventi', 2368738, 1.019, 'Q1', 19, 45, 1428, 392, 119, '9', '2015-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2)'), (4187, 'Journal of Gender Studies', 14653869, 1.019, 'Q1', 34, 114, 4839, 504, 190, '3', '1991-2020', 'Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Social Sciences (miscellaneous) (Q1)'), (4188, 'Microbiology', 13500872, 1.019, 'Q2', 179, 123, 6105, 1218, 444, '3', '1994-2020', 'Microbiology (Q2)'), (4189, 'Phytotherapy Research', 10991573, 1.019, 'Q2', 129, 339, 24548, 3850, 717, '3', '1987-2020', 'Pharmacology (Q2)'), (4190, 'Research in Transportation Economics', 7398859, 1.019, 'Q1', 46, 160, 7437, 694, 205, '2', '1994, 1996, 1999, 2001, 2004-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Transportation (Q1)'), (4191, 'Sustainable Production and Consumption', 23525509, 1.019, 'Q1', 26, 91, 6098, 1058, 194, '16', '2015-2021', 'Environmental Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Environmental Chemistry (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (4192, 'Vegetation History and Archaeobotany', 16176278, 1.019, 'Q1', 62, 66, 5595, 386, 148, '2', '1992-2020', 'Archeology (arts and humanities) (Q1); Paleontology (Q1); Plant Science (Q1)'), (4193, 'American Health and Drug Benefits', 19422962, 1.018, 'Q1', 28, 23, 442, 213, 81, '2', '2009-2020', 'Health Policy (Q1); Strategy and Management (Q1)'), (4194, 'Drug and Alcohol Review', 14653362, 1.018, 'Q1', 74, 157, 5899, 983, 325, '2', '1989-2020', 'Health (social science) (Q1); Medicine (miscellaneous) (Q1)'), (4195, 'Oil and Gas Geology', 2539985, 1.018, 'Q1', 27, 120, 4507, 828, 375, '1', '2013-2020', 'Geology (Q1)'), (4196, 'BMC Women s Health', 14726874, 1.017, 'Q1', 47, 265, 9717, 1526, 510, '3', '2001-2020', 'Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1)'), (4197, 'Cancer Imaging', 17405025, 1.017, 'Q1', 48, 87, 2988, 601, 171, '3', '2000-2020', 'Medicine (miscellaneous) (Q1); Radiological and Ultrasound Technology (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (4198, 'Computers and Chemical Engineering', 981354, 1.017, 'Q1', 139, 399, 19037, 4474, 1001, '3', '1977-2020', 'Chemical Engineering (miscellaneous) (Q1); Computer Science Applications (Q1)'), (4199, 'ESAIM - Control, Optimisation and Calculus of', 12623377, 1.017, 'Q1', 62, 128, 4303, 481, 198, '8', '1996-2020', 'Computational Mathematics (Q1); Control and Optimization (Q1); Control and Systems Engineering (Q1)'), (4200, 'Eye and Brain', 11792744, 1.017, 'Q2', 15, 14, 954, 71, 18, '41', '2014-2020', 'Ophthalmology (Q2); Cellular and Molecular Neuroscience (Q3); Sensory Systems (Q3)'), (4201, 'Language and Education', 9500782, 1.017, 'Q1', 46, 55, 2706, 240, 94, '3', '1987-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4202, 'Toxicology and Applied Pharmacology', 10960333, 1.017, 'Q1', 170, 302, 16368, 3701, 928, '2', '1959-2020', 'Toxicology (Q1); Pharmacology (Q2)'), (4203, 'ChemPhysChem', 14394235, 1.016, 'Q1', 140, 342, 18517, 4024, 1199, '5', '2000-2020', 'Atomic and Molecular Physics, and Optics (Q1); Physical and Theoretical Chemistry (Q1)'), (4204, 'European Accounting Review', 9638180, 1.016, 'Q1', 74, 73, 5689, 318, 100, '3', '1992-2020', 'Accounting (Q1); Aerospace Engineering (Q1); Automotive Engineering (Q1); Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics '), (4205, 'Fisheries Oceanography', 10546006, 1.016, 'Q1', 80, 55, 3611, 369, 145, '3', '1992-2020', 'Aquatic Science (Q1); Oceanography (Q1)'), (4206, 'HSS Journal', 15563324, 1.016, 'Q1', 36, 130, 3573, 308, 139, '2', '2006-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (4207, 'Physica D: Nonlinear Phenomena', 1672789, 1.016, 'Q1', 138, 236, 10278, 931, 303, '16', '1980-2020', 'Applied Mathematics (Q1); Condensed Matter Physics (Q1); Mathematical Physics (Q1); Statistical and Nonlinear Physics (Q1)'), (4208, 'Tellus, Series A: Dynamic Meteorology and Oce', 16000870, 1.016, 'Q1', 77, 50, 2263, 283, 110, '3', '1983-2020', 'Oceanography (Q1); Atmospheric Science (Q2)'), (4209, 'Thinking Skills and Creativity', 18711871, 1.016, 'Q1', 40, 108, 7337, 919, 207, '16', '2006-2020', 'Education (Q1)'), (4210, 'American Journal of Tropical Medicine and Hyg', 14761645, 1.015, 'Q1', 151, 765, 21768, 3966, 1640, '2', '1945-2020', 'Medicine (miscellaneous) (Q1); Infectious Diseases (Q2); Parasitology (Q2); Virology (Q2)'), (4211, 'Applied Geochemistry', 8832927, 1.015, 'Q1', 130, 262, 17035, 2526, 696, '3', '1986-2020', 'Pollution (Q1); Environmental Chemistry (Q2); Geochemistry and Petrology (Q2)'), (4212, 'Cerebrovascular Diseases Extra', 16645456, 1.015, 'Q1', 13, 21, 517, 138, 47, '19', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q1); Neurology (Q2); Neurology (clinical) (Q2)'), (4213, 'Journal of Bone Oncology', 22121374, 1.015, 'Q2', 24, 53, 2179, 511, 139, '5', '2012-2020', 'Oncology (Q2)'), (4214, 'Portal', 15307131, 1.015, 'Q1', 38, 38, 1429, 144, 118, '2', '2001-2020', 'Development (Q1); Library and Information Sciences (Q1)'), (4215, 'Economic History Review', 130117, 1.014, 'Q1', 49, 54, 4186, 212, 140, '3', '1927-2020', 'History (Q1); Economics and Econometrics (Q2)'), (4216, 'Expert Review of Clinical Pharmacology', 17512433, 1.014, 'Q1', 41, 125, 10841, 1334, 317, '3', '2008-2020', 'Medicine (miscellaneous) (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacology (medical) (Q2)'), (4217, 'Expert Review of Respiratory Medicine', 17469902, 1.014, 'Q1', 42, 142, 10228, 984, 277, '3', '2007-2020', 'Public Health, Environmental and Occupational Health (Q1); Immunology and Allergy (Q2); Pulmonary and Respiratory Medicine (Q2)'), (4218, 'International Journal of Bioprinting', 24248002, 1.014, 'Q1', 24, 38, 2065, 343, 61, '37', '2015-2020', 'Biotechnology (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1)'), (4219, 'Journal of the National Cancer Institute. Mon', 10526773, 1.014, 'Q1', 85, 16, 514, 153, 38, '2', '1992-2001, 2003-2008, 2010-2015, 2017, 2019-2020', 'Medicine (miscellaneous) (Q1); Oncology (Q2); Cancer Research (Q3)'), (4220, 'Weather, Climate, and Society', 19488335, 1.014, 'Q1', 35, 63, 3942, 519, 177, '2', '2009-2020', 'Social Sciences (miscellaneous) (Q1); Atmospheric Science (Q2); Global and Planetary Change (Q2)'), (4221, 'British Journal of General Practice', 14785242, 1.013, 'Q1', 101, 503, 5332, 1649, 586, '3', '1990-2020', 'Family Practice (Q1); Medicine (miscellaneous) (Q1)'), (4222, 'Fly', 19336934, 1.013, 'Q1', 30, 7, 338, 124, 45, '2', '2007-2020', 'Insect Science (Q1)'), (4223, 'Journal of Contemporary Asia', 472336, 1.013, 'Q1', 38, 56, 3432, 293, 104, '3', '1970-2020', 'Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1)'), (4224, 'Toxicology Reports', 22147500, 1.013, 'Q1', 37, 197, 10461, 1977, 382, '42', '2014-2020', 'Health, Toxicology and Mutagenesis (Q1); Toxicology (Q1)'), (4225, 'Experimental Biology and Medicine', 15353699, 1.012, 'Q1', 146, 176, 11199, 1719, 486, '2', '1996-2020', 'Medicine (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (4226, 'Global Heart', 22118179, 1.012, 'Q1', 37, 75, 2953, 289, 115, '3', '2011-2020', 'Community and Home Care (Q1); Cardiology and Cardiovascular Medicine (Q2); Epidemiology (Q2)'), (4227, 'Head and Neck', 10970347, 1.012, 'Q1', 127, 461, 13767, 3464, 1161, '2', '1989-2020', 'Otorhinolaryngology (Q1)'), (4228, 'International Journal of Sports Medicine', 1724622, 1.012, 'Q1', 105, 186, 8439, 1139, 399, '5', '1980-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)'), (4229, 'Knee', 18735800, 1.012, 'Q1', 77, 270, 7940, 1342, 529, '16', '1994-2020', 'Orthopedics and Sports Medicine (Q1); Sports Science (Q2)'), (4230, 'Metallomics', 1756591, 1.012, 'Q1', 75, 185, 11565, 2111, 514, '3', '2009-2020', 'Biophysics (Q1); Chemistry (miscellaneous) (Q1); Metals and Alloys (Q1); Biochemistry (Q2); Biomaterials (Q2)'), (4231, 'Applied Mathematical Modelling', 307904, 1.011, 'Q1', 112, 578, 24985, 7948, 1602, '2', '1976-2021', 'Applied Mathematics (Q1); Modeling and Simulation (Q1)'), (4232, 'Archivum Immunologiae et Therapiae Experiment', 16614917, 1.011, 'Q1', 60, 36, 2067, 474, 128, '19', '1954-1957, 1959-2020', 'Medicine (miscellaneous) (Q1); Immunology and Allergy (Q2); Immunology (Q3)'), (4233, 'BMC Zoology', 20563132, 1.011, 'Q1', 10, 15, 950, 95, 38, '3', '2016-2020', 'Animal Science and Zoology (Q1)'), (4234, 'Family Process', 15455300, 1.011, 'Q1', 74, 171, 8605, 602, 178, '3', '1962-2020', 'Clinical Psychology (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1)'), (4235, 'Groundwater for Sustainable Development', 2352801, 1.011, 'Q1', 22, 205, 10531, 1256, 241, '16', '2015-2020', 'Environmental Engineering (Q1); Geography, Planning and Development (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2)'), (4236, 'Journal of Chromatography A', 219673, 1.011, 'Q1', 229, 954, 40299, 10136, 2350, '16', '1958-2020', 'Analytical Chemistry (Q1); Medicine (miscellaneous) (Q1); Organic Chemistry (Q1); Biochemistry (Q2)'), (4237, 'Journal of Geology', 221376, 1.011, 'Q1', 102, 23, 2126, 283, 109, '2', '1973, 1976-1977, 1979-2020', 'Geology (Q1)'), (4238, 'Multinational Business Review', 1525383, 1.011, 'Q1', 29, 29, 2760, 266, 66, '3', '2003-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1)'), (4239, 'Advanced Modeling and Simulation in Engineeri', 22137467, 1.01, 'Q1', 18, 46, 1966, 147, 49, '3', '2014-2020', 'Applied Mathematics (Q1); Computer Science Applications (Q1); Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1)'), (4240, 'Experiments in Fluids', 14321114, 1.01, 'Q1', 122, 247, 9305, 1619, 522, '5', '1983-2020', 'Computational Mechanics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (4241, 'Parliamentary Affairs', 14602482, 1.01, 'Q1', 43, 64, 2353, 249, 153, '3', '1947-2020', 'Law (Q1); Sociology and Political Science (Q1)'), (4242, 'American Journal of Hypertension', 8957061, 1.009, 'Q2', 136, 168, 5343, 1233, 439, '3', '1954, 1988-2020', 'Internal Medicine (Q2)'), (4243, 'Annalen der Physik', 33804, 1.009, 'Q1', 68, 158, 9203, 1928, 454, '5', '1799-1943, 1947-1950, 1952, 1957-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (4244, 'Avian Conservation and Ecology', 17126568, 1.009, 'Q1', 23, 47, 3164, 320, 114, '9', '2009-2020', 'Animal Science and Zoology (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (4245, 'BioData Mining', 17560381, 1.009, 'Q1', 30, 20, 877, 353, 86, '3', '2009-2020', 'Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Biochemistry (Q2); Genetics (Q2); Molecular Biology (Q2)'), (4246, 'IEEE Transactions on Sustainable Computing', 23773782, 1.009, 'Q1', 21, 67, 1516, 546, 83, '2', '2016-2020', 'Computational Theory and Mathematics (Q1); Control and Optimization (Q1); Hardware and Architecture (Q1); Software (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (4247, 'Journal of Nursing Scholarship', 15475069, 1.009, 'Q1', 80, 83, 2915, 811, 218, '3', '1996-2020', 'Nursing (miscellaneous) (Q1)'), (4248, 'Journal of Pathology Informatics', 22295089, 1.009, 'Q1', 17, 15, 333, 412, 121, '4', '2012, 2016-2020', 'Computer Science Applications (Q1); Health Informatics (Q1); Pathology and Forensic Medicine (Q1)'), (4249, 'Stress and Health', 15323005, 1.009, 'Q1', 61, 99, 6054, 738, 199, '2', '2001-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Applied Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4250, 'Arrhythmia and Electrophysiology Review', 20503377, 1.008, 'Q2', 18, 31, 1498, 355, 104, '3', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q2); Physiology (medical) (Q2)'), (4251, 'Eating and Weight Disorders', 11244909, 1.008, 'Q1', 45, 329, 13969, 1296, 304, '19', '1998-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q2)'), (4252, 'Holocene', 14770911, 1.008, 'Q1', 117, 150, 12531, 1202, 455, '3', '1991-2020', 'Archeology (arts and humanities) (Q1); Earth-Surface Processes (Q1); Ecology (Q1); Paleontology (Q1); Global and Planetary Change (Q2)'), (4253, 'Scientific Online Letters on the Atmosphere', 13496476, 1.008, 'Q2', 32, 46, 1186, 248, 116, '6', '2005-2020', 'Atmospheric Science (Q2)'), (4254, 'Channels', 19336969, 1.007, 'Q1', 43, 38, 2071, 361, 130, '2', '2007-2020', 'Biophysics (Q1); Medicine (miscellaneous) (Q1); Biochemistry (Q2)'), (4255, 'Journal of Contingencies and Crisis Managemen', 14685973, 1.007, 'Q1', 51, 54, 2970, 506, 122, '3', '1993-2020', 'Management Information Systems (Q1); Management, Monitoring, Policy and Law (Q1)'), (4256, 'Journal of Hispanic Higher Education', 15381927, 1.007, 'Q1', 32, 49, 1868, 135, 80, '2', '2002-2020', 'Education (Q1)'), (4257, 'Toxicology Letters', 3784274, 1.007, 'Q1', 145, 303, 14151, 3425, 821, '16', '1977-2020', 'Medicine (miscellaneous) (Q1); Toxicology (Q1)'), (4258, 'AAC: Augmentative and Alternative Communicati', 14773848, 1.006, 'Q1', 54, 24, 1171, 230, 72, '3', '1985-2020', 'Medicine (miscellaneous) (Q1); Rehabilitation (Q1); Speech and Hearing (Q1)'), (4259, 'Ecosystems and People', 26395908, 1.006, 'Q1', 30, 33, 2408, 343, 84, '3', '2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1)'), (4260, 'Journal of Contextual Behavioral Science', 22121447, 1.006, 'Q1', 25, 110, 6286, 651, 180, '16', '2012-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Health (social science) (Q1); Organizational Behavior and Human Resource Management (Q1); Applied Psychology (Q2); Behavioral Neuroscience (Q2)'), (4261, 'Matter and Radiation at Extremes', 24682047, 1.006, 'Q1', 18, 44, 2410, 359, 92, '2', '2016-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Nuclear Energy and Engineering (Q1); Nuclear and High Energy Physics (Q2)'), (4262, 'IEEE Transactions on Visualization and Comput', 10772626, 1.005, 'Q1', 144, 345, 16984, 6613, 776, '2', '1995-2020', 'Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1); Software (Q1)'), (4263, 'IET Renewable Power Generation', 17521416, 1.005, 'Q2', 76, 374, 13497, 4058, 758, '3', '2007-2020', 'Renewable Energy, Sustainability and the Environment (Q2)'), (4264, 'Journal of Fluids and Structures', 10958622, 1.005, 'Q1', 103, 180, 7867, 1957, 562, '2', '1987-2020', 'Mechanical Engineering (Q1)'), (4265, 'Journal of the Franklin Institute', 160032, 1.005, 'Q1', 84, 651, 26737, 6737, 1397, '3', '1826-2020', 'Applied Mathematics (Q1); Computer Networks and Communications (Q1); Control and Systems Engineering (Q1); Signal Processing (Q1)'), (4266, 'Psychology of Men and Masculinity', 1939151, 1.005, 'Q1', 60, 67, 2900, 428, 148, '2', '2000-2020', 'Gender Studies (Q1); Life-span and Life-course Studies (Q1); Social Psychology (Q1); Applied Psychology (Q2)'), (4267, 'Reproductive Medicine and Biology', 14455781, 1.005, 'Q1', 22, 50, 2559, 588, 164, '6', '2004-2014, 2017-2020', 'Reproductive Medicine (Q1); Cell Biology (Q3)'), (4268, 'Sociologia Ruralis', 14679523, 1.005, 'Q1', 84, 46, 3192, 425, 126, '3', '1960, 1962-2020', 'Sociology and Political Science (Q1)'), (4269, 'Theoretical and Applied Fracture Mechanics', 1678442, 1.005, 'Q1', 60, 372, 16743, 2470, 595, '16', '1984-2020', 'Applied Mathematics (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1)'), (4270, 'American Journal of Infection Control', 15273296, 1.004, 'Q1', 107, 410, 9122, 2575, 879, '2', '1980-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q2); Infectious Diseases (Q2)'), (4271, 'Journal of Experimental Psychology: Applied', 19392192, 1.004, 'Q2', 84, 42, 1592, 329, 138, '2', '1995-2020', 'Experimental and Cognitive Psychology (Q2)'), (4272, 'Journal of Mathematical Fluid Mechanics', 14226928, 1.004, 'Q1', 34, 62, 1977, 332, 190, '19', '2004-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Condensed Matter Physics (Q1); Mathematical Physics (Q1)'), (4273, 'Medical Mycology', 13693786, 1.004, 'Q1', 86, 114, 4087, 1442, 444, '3', '1962-2020', 'Medicine (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (4274, 'Mental Health and Physical Activity', 18780199, 1.004, 'Q2', 33, 44, 2629, 346, 104, '16', '2008-2020', 'Applied Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4275, 'Thrombosis Journal', 14779560, 1.004, 'Q2', 39, 37, 1366, 293, 84, '3', '2003-2020', 'Hematology (Q2)'), (4276, 'Advances in Computational Mathematics', 10197168, 1.003, 'Q1', 61, 83, 3003, 732, 259, '16', '1993-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1)'), (4277, 'Immunogenetics', 937711, 1.003, 'Q2', 91, 50, 2177, 468, 182, '5', '1974-2020', 'Genetics (Q2); Immunology (Q3)'), (4278, 'Inverse Problems', 2665611, 1.003, 'Q1', 119, 237, 9677, 1991, 502, '3', '1985-2020', 'Applied Mathematics (Q1); Computer Science Applications (Q1); Mathematical Physics (Q1); Signal Processing (Q1); Theoretical Computer Science (Q1)'), (4279, 'Clinics in Orthopedic Surgery', 20054408, 1.002, 'Q1', 34, 79, 1884, 605, 215, '13', '2009-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (4280, 'Endocrine', 969711, 1.002, 'Q2', 81, 398, 14109, 3153, 854, '2', '1993-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (4281, 'International Journal of Wildland Fire', 14485516, 1.002, 'Q1', 86, 96, 5676, 848, 255, '11', '1991-2020', 'Ecology (Q1); Forestry (Q1)'), (4282, 'Journal of global oncology', 23789506, 1.002, 'Q2', 17, 67, 2136, 981, 446, '2', '2017-2020', 'Oncology (Q2); Cancer Research (Q3)'), (4283, 'Nutrition', 18731244, 1.002, 'Q2', 142, 298, 13055, 3059, 729, '2', '1987-2021', 'Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)'), (4284, 'SLAS Discovery', 24725552, 1.002, 'Q1', 17, 114, 5013, 853, 297, '2', '2017-2020', 'Analytical Chemistry (Q1); Biotechnology (Q1); Biochemistry (Q2); Molecular Medicine (Q2)'), (4285, 'Current Urology Reports', 15346285, 1.001, 'Q1', 43, 63, 2846, 836, 296, '2', '2000-2020', 'Medicine (miscellaneous) (Q1); Urology (Q1)'), (4286, 'Forest Ecosystems', 21975620, 1.001, 'Q1', 19, 64, 4084, 397, 120, '5', '2014-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Forestry (Q1); Nature and Landscape Conservation (Q1)'), (4287, 'Archives of Medical Science', 17341922, 1, 'Q1', 46, 171, 5762, 1635, 517, '17', '2006-2020', 'Medicine (miscellaneous) (Q1)'), (4288, 'Environmental and Molecular Mutagenesis', 10982280, 1, 'Q1', 87, 76, 5499, 746, 194, '2', '1987-2020', 'Health, Toxicology and Mutagenesis (Q1); Genetics (clinical) (Q2); Epidemiology (Q3)'), (4289, 'International Journal of Water Resources Deve', 13600648, 1, 'Q1', 54, 94, 5094, 609, 167, '3', '1983-1985, 1987-2020', 'Development (Q1); Water Science and Technology (Q1)'), (4290, 'Journal of Breast Cancer', 17386756, 1, 'Q2', 36, 62, 1654, 509, 166, '13', '2008-2020', 'Oncology (Q2); Cancer Research (Q3)'), (4291, 'Journal of English as a Lingua Franca', 21919216, 1, 'Q1', 8, 14, 539, 55, 41, '5', '2016-2019', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4292, 'Journal of Sociolinguistics', 13606441, 1, 'Q1', 51, 39, 2193, 150, 75, '3', '2004-2020', 'History and Philosophy of Science (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1); Sociology and Political Science (Q1)'), (4293, 'Journal of the Peripheral Nervous System', 10859489, 1, 'Q1', 67, 58, 2048, 372, 132, '3', '1996-2020', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q2)'), (4294, 'Maternal and Child Health Journal', 10927875, 1, 'Q1', 85, 225, 7540, 1604, 642, '2', '1997-2020', 'Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1); Public Health, Environmental and Occupational Health (Q1); Epidemiology (Q3)'), (4295, 'Medical Education Online', 10872981, 1, 'Q1', 29, 103, 2002, 468, 145, '3', '2009-2020', 'Education (Q1); Medicine (miscellaneous) (Q1)'), (4296, 'Tourism Review', 17598451, 1, 'Q1', 32, 92, 5595, 1038, 217, '3', '2001-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (4297, 'Extractive Industries and Society', 2214790, 0.999, 'Q1', 29, 206, 12767, 1173, 313, '16', '2014-2020', 'Development (Q1); Economic Geology (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)'), (4298, 'IEEE Transactions on Intelligent Vehicles', 23798858, 0.999, 'Q1', 27, 90, 2450, 1005, 132, '2', '2016-2020', 'Artificial Intelligence (Q1); Automotive Engineering (Q1); Control and Optimization (Q1)'), (4299, 'Preventive Medicine Reports', 22113355, 0.999, 'Q1', 31, 237, 9360, 1847, 640, '16', '2014-2020', 'Health Informatics (Q1); Public Health, Environmental and Occupational Health (Q1)'), (4300, 'Scientometrics', 15882861, 0.999, 'Q1', 116, 438, 21217, 3775, 985, '16', '1978-2020', 'Computer Science Applications (Q1); Library and Information Sciences (Q1); Social Sciences (miscellaneous) (Q1)'), (4301, 'Analyst, The', 32654, 0.998, 'Q1', 153, 899, 42467, 8572, 2054, '3', '1876-2020', 'Analytical Chemistry (Q1); Spectroscopy (Q1); Biochemistry (Q2); Electrochemistry (Q2); Environmental Chemistry (Q2)'), (4302, 'AoB PLANTS', 20412851, 0.998, 'Q1', 39, 57, 4203, 678, 229, '3', '2009, 2011-2020', 'Plant Science (Q1)'), (4303, 'Arthropod Structure and Development', 14678039, 0.998, 'Q1', 62, 46, 3040, 350, 170, '3', '2000-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Medicine (miscellaneous) (Q1); Developmental Biology (Q2)'), (4304, 'Biochemical and Biophysical Research Communic', 6291, 0.998, 'Q1', 263, 1943, 58869, 21713, 6438, '2', '1959-2020', 'Biophysics (Q1); Biochemistry (Q2); Molecular Biology (Q2); Cell Biology (Q3)'), (4305, 'Evaluation', 13563890, 0.998, 'Q1', 49, 39, 1843, 204, 78, '3', '1995-2020', 'Development (Q1); Sociology and Political Science (Q1)'), (4306, 'Gender, Place, and Culture', 966369, 0.998, 'Q1', 65, 163, 8740, 705, 329, '3', '1994-2020', 'Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Demography (Q1); Gender Studies (Q1)'), (4307, 'Journal of High Energy Physics', 10298479, 0.998, 'Q2', 261, 2289, 150198, 48733, 6356, '5', '1997-2020', 'Nuclear and High Energy Physics (Q2)'), (4308, 'Physical Therapy', 319023, 0.998, 'Q1', 150, 217, 8774, 1108, 364, '2', '1964-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1)'), (4309, 'Population Health Management', 19427905, 0.998, 'Q1', 40, 79, 1839, 507, 210, '2', '2008-2020', 'Health Policy (Q1); Leadership and Management (Q1); Public Health, Environmental and Occupational Health (Q1)'), (4310, 'Transplant International', 9340874, 0.998, 'Q2', 82, 218, 6613, 995, 344, '3', '1988-2020', 'Transplantation (Q2)'), (4311, 'American Journal on Addictions', 10550496, 0.997, 'Q1', 76, 65, 1711, 578, 231, '2', '1992-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Psychiatry and Mental Health (Q2)'), (4312, 'Biological Control', 10902112, 0.997, 'Q1', 98, 196, 11830, 2007, 560, '2', '1991-2021', 'Agronomy and Crop Science (Q1); Insect Science (Q1)'), (4313, 'Critical Reviews in Immunology', 10408401, 0.997, 'Q2', 75, 51, 3433, 188, 78, '2', '1980-2020', 'Immunology and Allergy (Q2); Immunology (Q3)'), (4314, 'Journal of Professional Capital and Community', 20569548, 0.996, 'Q1', 5, 42, 1617, 87, 44, '3', '2018-2020', 'Communication (Q1); Education (Q1); Social Psychology (Q1)'), (4315, 'Microbes and Infection', 1769714, 0.996, 'Q2', 141, 107, 4386, 579, 206, '2', '1989, 1999-2020', 'Infectious Diseases (Q2); Microbiology (Q2); Immunology (Q3)'), (4316, 'Paediatric Respiratory Reviews', 15260550, 0.996, 'Q1', 63, 90, 4165, 520, 181, '3', '2000-2020', 'Pediatrics, Perinatology and Child Health (Q1); Pulmonary and Respiratory Medicine (Q2)'), (4317, 'BRQ Business Research Quarterly', 23409444, 0.995, 'Q1', 26, 55, 4549, 364, 74, '16', '2014-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1); Economics and Econometrics (Q2)'), (4318, 'Revista espanola de cardiologia (English ed.)', 18855857, 0.995, 'Q1', 6, 10, 0, 119, 35, '12', '2012-2020', 'Medicine (miscellaneous) (Q1)'), (4319, 'Cell Stress and Chaperones', 14661268, 0.994, 'Q2', 87, 102, 5346, 1010, 294, '16', '1996-2020', 'Biochemistry (Q2); Cell Biology (Q3)'), (4320, 'Industrial Management and Data Systems', 2635577, 0.994, 'Q1', 103, 133, 9268, 1927, 345, '3', '1980-2020', 'Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1); Industrial Relations (Q1); Management Information Systems (Q1); Strategy and Management (Q1)'), (4321, 'Journal of Functional Foods', 17564646, 0.994, 'Q1', 84, 574, 33883, 7823, 1737, '3', '2009-2020', 'Food Science (Q1); Medicine (miscellaneous) (Q1); Nutrition and Dietetics (Q2)'), (4322, 'Journal of Geochemical Exploration', 3756742, 0.994, 'Q1', 87, 146, 10243, 2522, 586, '16', '1972-2020', 'Economic Geology (Q1); Geochemistry and Petrology (Q2)'), (4323, 'Learning Disability Quarterly', 7319487, 0.994, 'Q1', 48, 50, 2537, 121, 61, '2', '1978-2020', 'Education (Q1); Health Professions (miscellaneous) (Q1); Behavioral Neuroscience (Q2)'), (4324, 'Mitigation and Adaptation Strategies for Glob', 15731596, 0.994, 'Q1', 71, 77, 4028, 649, 190, '16', '1996-2020', 'Ecology (Q1); Global and Planetary Change (Q2)'), (4325, 'Professional Geographer', 14679272, 0.994, 'Q1', 75, 54, 2898, 530, 184, '3', '1949-2020', 'Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)'), (4326, 'AIDS Research and Human Retroviruses', 19318405, 0.993, 'Q2', 92, 153, 4812, 889, 488, '2', '1987-2020', 'Infectious Diseases (Q2); Immunology (Q3); Virology (Q3)'), (4327, 'American Journal of Speech-Language Pathology', 10580360, 0.993, 'Q1', 72, 160, 9958, 928, 340, '2', '1996-2020', 'Linguistics and Language (Q1); Medicine (miscellaneous) (Q1); Otorhinolaryngology (Q1); Speech and Hearing (Q1); Developmental and Educational Psychology (Q2)'), (4328, 'Criminal Justice Policy Review', 8874034, 0.993, 'Q1', 32, 72, 4881, 315, 141, '2', '1986-1987, 1989-1992, 1995, 1997-1999, 2004-2020', 'Law (Q1)'), (4329, 'Epilepsy and Behavior', 15255050, 0.993, 'Q2', 104, 674, 24446, 4031, 1363, '2', '2000-2020', 'Behavioral Neuroscience (Q2); Neurology (Q2); Neurology (clinical) (Q2)'), (4330, 'Epidemiology and Infection', 14694409, 0.992, 'Q2', 109, 314, 9113, 2365, 970, '3', '1970, 1987-2020', 'Infectious Diseases (Q2); Epidemiology (Q3)'), (4331, 'Journal of Neurosurgery: Pediatrics', 19330707, 0.992, 'Q1', 67, 198, 5415, 1364, 543, '2', '2008-2020', 'Medicine (miscellaneous) (Q1); Pediatrics, Perinatology and Child Health (Q1); Surgery (Q1); Neurology (clinical) (Q2)'), (4332, 'Critical care and resuscitation : journal of ', 14412772, 0.991, 'Q1', 34, 45, 13, 246, 138, '11', '1999, 2002, 2004-2020', 'Anesthesiology and Pain Medicine (Q1); Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1)'), (4333, 'FEMS Yeast Research', 15671364, 0.991, 'Q1', 92, 63, 4041, 988, 310, '3', '2001-2020', 'Applied Microbiology and Biotechnology (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q2)'), (4334, 'Insect Science', 17447917, 0.991, 'Q1', 45, 196, 11963, 887, 277, '3', '1994-2020', 'Agronomy and Crop Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (4335, 'International Journal of Psychophysiology', 18727697, 0.991, 'Q2', 125, 191, 13249, 1335, 447, '16', '1983-2020', 'Neuropsychology and Physiological Psychology (Q2); Neuroscience (miscellaneous) (Q2); Physiology (medical) (Q2)'), (4336, 'Journal of Oral Rehabilitation', 13652842, 0.991, 'Q1', 93, 197, 8044, 1310, 351, '3', '1974-2020', 'Dentistry (miscellaneous) (Q1)'), (4337, 'Journal of the Taiwan Institute of Chemical E', 18761070, 0.991, 'Q1', 80, 334, 16787, 7521, 1361, '22', '2009-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)'), (4338, 'Wind Energy Science', 23667451, 0.991, 'Q1', 18, 106, 4294, 696, 141, '5', '2016-2020', 'Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (4339, 'Annali di Matematica Pura ed Applicata', 3733114, 0.99, 'Q1', 42, 146, 3855, 524, 300, '5', '1858-1861, 1863-1865, 1867-1871, 1873, 1875, 1877-1878, 1880, 1882-1883, 1885-1919, 1921-1922, 1924-', 'Applied Mathematics (Q1)'), (4340, 'Clinical Journal of Sport Medicine', 15363724, 0.99, 'Q1', 102, 125, 798, 684, 225, '2', '1993-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)'), (4341, 'Coastal Engineering Journal', 5785634, 0.99, 'Q1', 40, 42, 1664, 315, 101, '3', '1975-1977, 1984-1986, 1988, 1991, 1995-1996, 1998-2020', 'Civil and Structural Engineering (Q1); Modeling and Simulation (Q1); Ocean Engineering (Q1)'), (4342, 'Endocrine Pathology', 15590097, 0.99, 'Q1', 49, 56, 2001, 516, 138, '2', '1990-2020', 'Medicine (miscellaneous) (Q1); Pathology and Forensic Medicine (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (4343, 'International Journal of Behavioral Developme', 1650254, 0.99, 'Q1', 91, 73, 3797, 503, 211, '3', '1978-2020', 'Education (Q1); Life-span and Life-course Studies (Q1); Social Psychology (Q1); Social Sciences (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Developmental Neuroscience (Q2)'), (4344, 'Journal of Heredity', 14657333, 0.99, 'Q1', 92, 58, 4213, 618, 240, '3', '1905-2020', 'Biotechnology (Q1); Genetics (Q2); Genetics (clinical) (Q2); Molecular Biology (Q2)'), (4345, 'PLoS ONE', 19326203, 0.99, 'Q1', 332, 16168, 767689, 185483, 54129, '2', '2001, 2006-2020', 'Multidisciplinary (Q1)'), (4346, 'Publicacions Matematiques', 2141493, 0.99, 'Q1', 27, 38, 791, 140, 71, '12', '2002-2020', 'Mathematics (miscellaneous) (Q1)'), (4347, 'Soft Matter', 17446848, 0.99, 'Q1', 170, 1135, 57269, 11351, 2983, '3', '2005-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1)'), (4348, 'Stem Cells and Development', 15473287, 0.99, 'Q2', 114, 141, 7904, 1500, 432, '2', '2004-2020', 'Developmental Biology (Q2); Hematology (Q2); Cell Biology (Q3)'), (4349, 'Tribology Letters', 15732711, 0.99, 'Q1', 92, 130, 5227, 1422, 439, '2', '1995-2020', 'Mechanical Engineering (Q1); Mechanics of Materials (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)'), (4350, 'Advances in Radiation Oncology', 24521094, 0.989, 'Q1', 19, 211, 5221, 746, 264, '2', '2016-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (4351, 'CONTINUUM Lifelong Learning in Neurology', 10802371, 0.989, 'Q1', 35, 113, 3114, 804, 272, '2', '2006-2020', 'Medicine (miscellaneous) (Q1); Genetics (clinical) (Q2); Neurology (clinical) (Q2)'), (4352, 'Dysphagia', 179051, 0.989, 'Q1', 83, 169, 6104, 844, 239, '2', '1986-2020', 'Otorhinolaryngology (Q1); Speech and Hearing (Q1); Gastroenterology (Q2)'), (4353, 'Food Security', 18764517, 0.989, 'Q1', 49, 121, 5860, 900, 276, '16', '2010-2020', 'Agronomy and Crop Science (Q1); Development (Q1); Food Science (Q1)'), (4354, 'Policy Insights from the Behavioral and Brain', 23727330, 0.989, 'Q1', 21, 25, 1623, 187, 76, '2', '2014-2020', 'Public Administration (Q1); Social Psychology (Q1)'), (4355, 'Sleep Medicine Clinics', 1556407, 0.989, 'Q1', 39, 58, 3875, 513, 147, '3', '2006-2020', 'Clinical Psychology (Q1); Medicine (miscellaneous) (Q1); Neurology (clinical) (Q2); Neuropsychology and Physiological Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4356, 'Surgical Oncology', 9607404, 0.989, 'Q1', 64, 215, 6844, 1015, 315, '16', '1992-2020', 'Surgery (Q1); Oncology (Q2)'), (4357, 'ACM Transactions on Database Systems', 15574644, 0.988, 'Q1', 84, 20, 1057, 428, 53, '2', '1976-2020', 'Information Systems (Q1)'), (4358, 'American Journal of Primatology', 2752565, 0.988, 'Q1', 81, 124, 8486, 712, 326, '2', '1981-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (4359, 'Applied Psycholinguistics', 14691817, 0.988, 'Q1', 83, 64, 4247, 313, 158, '3', '1980-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Psychology (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q2)'), (4360, 'Catheterization and Cardiovascular Interventi', 1522726, 0.988, 'Q1', 116, 830, 15562, 2858, 1169, '2', '1999-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Cardiology and Cardiovascular Medicine (Q2)'), (4361, 'Chemie der Erde', 92819, 0.988, 'Q1', 53, 96, 7626, 371, 118, '5', '1978-1990, 1993-2020', 'Geophysics (Q1); Geochemistry and Petrology (Q2)'), (4362, 'Current Addiction Reports', 21962952, 0.988, 'Q1', 26, 51, 4158, 504, 153, '19', '2014-2020', 'Clinical Psychology (Q1); Psychiatry and Mental Health (Q2)'), (4363, 'EJNMMI Physics', 21977364, 0.988, 'Q1', 19, 75, 2540, 311, 97, '19', '2014-2020', 'Instrumentation (Q1); Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Biomedical Engineering (Q2)'), (4364, 'Journal of Writing Research', 22943307, 0.988, 'Q1', 20, 18, 1231, 92, 44, '24', '2008-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (4365, 'Zeitschrift fur Angewandte Mathematik und Phy', 14209039, 0.988, 'Q1', 59, 200, 6465, 1100, 471, '19', '1950-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (4366, 'Environmental Policy and Governance', 1756932, 0.987, 'Q1', 48, 44, 2852, 321, 110, '3', '2009-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1)'), (4367, 'International Journal of Lightweight Material', 25888404, 0.987, 'Q1', 11, 46, 1393, 310, 74, '1', '2018-2021', 'Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)'), (4368, 'Journal of Nutrition, Health and Aging', 17604788, 0.987, 'Q1', 82, 209, 7280, 1806, 491, '8', '1997-2020', 'Medicine (miscellaneous) (Q1); Geriatrics and Gerontology (Q2); Nutrition and Dietetics (Q2)'), (4369, 'Kinetic and Related Models', 19375093, 0.987, 'Q1', 28, 44, 1420, 358, 145, '2', '2010-2020', 'Modeling and Simulation (Q1); Numerical Analysis (Q2)'), (4370, 'Oncology', 302414, 0.987, 'Q1', 98, 113, 3298, 929, 313, '19', '1948-2020', 'Medicine (miscellaneous) (Q1); Oncology (Q2); Cancer Research (Q3)'), (4371, 'Scandinavian Journal of Rheumatology', 15027732, 0.987, 'Q1', 77, 131, 2765, 526, 192, '3', '1959-1962, 1964, 1972-2020', 'Medicine (miscellaneous) (Q1); Immunology and Allergy (Q2); Rheumatology (Q2); Immunology (Q3)'), (4372, 'Academic Radiology', 10766332, 0.986, 'Q1', 96, 554, 14349, 1978, 631, '2', '1994-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (4373, 'Economics and Human Biology', 18736130, 0.986, 'Q1', 57, 98, 5151, 515, 203, '16', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Health (social science) (Q1)'), (4374, 'Journal of Palliative Medicine', 10966218, 0.986, 'Q1', 90, 372, 6465, 1808, 791, '2', '1999-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)'), (4375, 'Archives of Gerontology and Geriatrics', 1674943, 0.985, 'Q1', 75, 255, 10881, 1788, 539, '42', '1982-2020', 'Gerontology (Q1); Health (social science) (Q1); Aging (Q2); Geriatrics and Gerontology (Q2)'), (4376, 'Journal of Pharmacological Sciences', 13478648, 0.985, 'Q2', 83, 101, 3788, 1246, 362, '6', '1996-2020', 'Molecular Medicine (Q2); Pharmacology (Q2)'), (4377, 'Urban Ecosystems', 15731642, 0.985, 'Q1', 56, 161, 11806, 1002, 313, '2', '2001, 2005-2020', 'Ecology (Q1); Urban Studies (Q1)'), (4378, 'Applied Developmental Science', 1532480, 0.984, 'Q1', 70, 58, 3733, 252, 86, '2', '1997-2020', 'Life-span and Life-course Studies (Q1); Applied Psychology (Q2); Developmental and Educational Psychology (Q2)'), (4379, 'Applied Spectroscopy Reviews', 5704928, 0.984, 'Q1', 65, 57, 6137, 633, 103, '2', '1967-1989, 1991-2020', 'Instrumentation (Q1); Spectroscopy (Q1)'), (4380, 'Atmospheric Pollution Research', 13091042, 0.984, 'Q1', 45, 249, 14109, 2090, 455, '16', '2010-2020', 'Pollution (Q1); Waste Management and Disposal (Q1); Atmospheric Science (Q2)'), (4381, 'Comptes Rendus Physique', 18781535, 0.984, 'Q1', 73, 15, 562, 764, 166, '8', '2002-2019', 'Physics and Astronomy (miscellaneous) (Q1)'), (4382, 'European Journal of Pediatrics', 3406199, 0.984, 'Q1', 93, 258, 7783, 1822, 584, '5', '1975-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (4383, 'Health and Social Care in the Community', 9660410, 0.984, 'Q1', 68, 369, 17442, 1639, 533, '3', '1993-2020', 'Health Policy (Q1); Public Health, Environmental and Occupational Health (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1); Sociology and Political Science (Q1)'), (4384, 'Journal of Knee Surgery', 19382480, 0.984, 'Q1', 59, 299, 9449, 1058, 449, '5', '2002-2020', 'Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (4385, 'Pathogens', 20760817, 0.984, 'Q2', 38, 1072, 69176, 1664, 461, '19', '2011-2020', 'Immunology and Allergy (Q2); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Microbiology (medical) (Q2); Molecular Biology (Q3)'), (4386, 'Seminars in Nuclear Medicine', 15584623, 0.984, 'Q1', 88, 56, 4218, 562, 142, '3', '1971-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (4387, 'Transportation Geotechnics', 22143912, 0.984, 'Q1', 27, 110, 5263, 696, 183, '16', '2014-2020', 'Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Transportation (Q2)'), (4388, 'Globalisation, Societies and Education', 14767724, 0.983, 'Q1', 28, 59, 3179, 307, 130, '3', '2010-2020', 'Education (Q1)'), (4389, 'Infection', 3008126, 0.983, 'Q1', 74, 150, 4034, 1080, 364, '5', '1973-2020', 'Medicine (miscellaneous) (Q1); Infectious Diseases (Q2); Microbiology (medical) (Q2)'), (4390, 'Journal of Infection and Public Health', 18760341, 0.983, 'Q1', 35, 336, 10571, 1684, 441, '16', '2008-2020', 'Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1); Infectious Diseases (Q2)'), (4391, 'Journal of Nonverbal Behavior', 1915886, 0.983, 'Q1', 64, 25, 1975, 201, 68, '2', '1979-2020', 'Social Psychology (Q1)'), (4392, 'Networks and Spatial Economics', 1566113, 0.983, 'Q1', 48, 38, 1889, 391, 145, '16', '2005-2020', 'Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Software (Q1)'), (4393, 'Pathogens and Disease', 2049632, 0.983, 'Q1', 105, 62, 3680, 808, 291, '3', '2013-2020', 'Medicine (miscellaneous) (Q1); Immunology and Allergy (Q2); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Microbiology (medical) (Q2)'), (4394, 'Psychology of Music', 17413087, 0.983, 'Q1', 55, 130, 6494, 443, 192, '3', '1973-2020', 'Music (Q1); Psychology (miscellaneous) (Q1)'), (4395, 'Acta Dermato-Venereologica', 16512057, 0.982, 'Q1', 83, 355, 9594, 1836, 549, '20', '1945-1946, 1948-2020', 'Dermatology (Q1); Medicine (miscellaneous) (Q1)'), (4396, 'Administration and Society', 953997, 0.982, 'Q1', 60, 74, 4746, 528, 175, '2', '1969-2020', 'Marketing (Q1); Public Administration (Q1); Sociology and Political Science (Q1)'), (4397, 'BMJ Open Ophthalmology', 23973269, 0.982, 'Q2', 11, 64, 2252, 324, 128, '3', '2016-2020', 'Ophthalmology (Q2)'), (4398, 'Ecohydrology', 19360584, 0.982, 'Q1', 54, 90, 6146, 1074, 350, '3', '2009-2020', 'Aquatic Science (Q1); Earth-Surface Processes (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (4399, 'Journal of Curriculum Studies', 13665839, 0.982, 'Q1', 58, 67, 4007, 310, 138, '3', '1968-1977, 1981-2020', 'Education (Q1)'), (4400, 'Journal of Food Composition and Analysis', 10960481, 0.982, 'Q1', 114, 235, 10272, 2446, 522, '2', '1987-2020', 'Food Science (Q1)'), (4401, 'Journal of Product and Brand Management', 10610421, 0.982, 'Q1', 81, 133, 12912, 917, 183, '3', '1992-2020', 'Management of Technology and Innovation (Q1); Marketing (Q1); Strategy and Management (Q1)'), (4402, 'Measurement in Physical Education and Exercis', 15327841, 0.982, 'Q1', 40, 41, 1609, 256, 93, '2', '1999-2020', 'Orthopedics and Sports Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Sports Science (Q2)'), (4403, 'Autonomic Neuroscience: Basic and Clinical', 15660702, 0.981, 'Q2', 82, 70, 3364, 688, 240, '16', '2000-2020', 'Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q3); Endocrine and Autonomic Systems (Q3)'), (4404, 'Hormones and Cancer', 18688500, 0.981, 'Q2', 36, 23, 1296, 304, 91, '2', '2010-2020', 'Endocrine and Autonomic Systems (Q2); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Oncology (Q2); Cancer Research (Q3)'), (4405, 'International Studies Review', 15219488, 0.981, 'Q1', 58, 43, 4457, 219, 98, '2', '1999-2020', 'Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (4406, 'Journal of Neuroscience Methods', 1872678, 0.981, 'Q2', 151, 318, 17231, 2158, 783, '16', '1979-2020', 'Neuroscience (miscellaneous) (Q2)'), (4407, 'Numerical Algorithms', 10171398, 0.981, 'Q1', 64, 283, 9307, 1578, 535, '16', '1991-2020', 'Applied Mathematics (Q1)'), (4408, 'Structure and Infrastructure Engineering', 17448980, 0.981, 'Q1', 48, 228, 11112, 1255, 348, '3', '2007-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1); Safety, Risk, Reliabi'), (4409, 'Temperature', 23328940, 0.981, 'Q2', 23, 36, 3333, 266, 58, '3', '2014-2020', 'Physiology (Q2); Physiology (medical) (Q2)'), (4410, 'Veterinary Clinics of North America - Food An', 7490720, 0.981, 'Q1', 70, 55, 3226, 314, 104, '3', '1971-1978, 1985-2020', 'Food Animals (Q1); Medicine (miscellaneous) (Q1)'), (4411, 'Artificial Intelligence in Medicine', 9333657, 0.98, 'Q1', 87, 165, 9065, 1746, 237, '16', '1989-2020', 'Artificial Intelligence (Q1); Medicine (miscellaneous) (Q1)'), (4412, 'Australian Educational Researcher', 3116999, 0.98, 'Q1', 30, 63, 3114, 250, 106, '16', '1985-1996, 2003-2020', 'Education (Q1)'), (4413, 'Dalton Transactions', 14779226, 0.98, 'Q1', 184, 1946, 106846, 23061, 5876, '3', '2002-2020', 'Inorganic Chemistry (Q1)'), (4414, 'Economics of Energy and Environmental Policy', 21605890, 0.98, 'Q1', 23, 34, 1482, 131, 52, '2', '2012-2020', 'Energy (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1); Economics and Econometrics (Q2)'), (4415, 'Journal of the American Society of Hypertensi', 19331711, 0.98, 'Q2', 47, 0, 0, 540, 189, '42', '2007-2018', 'Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)'), (4416, 'Neurodegenerative Diseases', 16602862, 0.98, 'Q2', 57, 24, 1095, 199, 73, '19', '2004-2020', 'Neurology (Q2); Neurology (clinical) (Q2)'), (4417, 'Prehospital Emergency Care', 15450066, 0.98, 'Q1', 63, 183, 4721, 791, 318, '3', '1997-2020', 'Emergency Medicine (Q1); Emergency Nursing (Q1)'), (4418, 'Psychology of Sexual Orientation and Gender D', 23290382, 0.98, 'Q1', 28, 63, 1927, 400, 123, '2', '2014-2020', 'Gender Studies (Q1); Psychology (miscellaneous) (Q1)'), (4419, 'Clinical and Translational Allergy', 20457022, 0.979, 'Q2', 37, 59, 2750, 644, 150, '3', '2011-2020', 'Immunology and Allergy (Q2); Pulmonary and Respiratory Medicine (Q2); Immunology (Q3)'), (4420, 'Foreign Policy Analysis', 17438594, 0.979, 'Q1', 23, 34, 2649, 138, 80, '2', '2011-2020', 'Political Science and International Relations (Q1)'), (4421, 'Journal of Urban Affairs', 7352166, 0.979, 'Q1', 59, 137, 10082, 550, 193, '3', '1979-2020', 'Sociology and Political Science (Q1); Urban Studies (Q1)'), (4422, 'Journal of Vascular and Interventional Radiol', 10510443, 0.979, 'Q1', 133, 401, 6771, 2111, 715, '2', '1990-2020', 'Medicine (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Cardiology and Cardiovascular Medicine (Q2)'), (4423, 'RSF', 23778253, 0.979, 'Q1', 17, 29, 2087, 358, 141, '2', '2015-2020', 'Social Sciences (miscellaneous) (Q1)'), (4424, 'Biotechnology and Genetic Engineering Reviews', 2648725, 0.978, 'Q1', 42, 4, 553, 159, 35, '3', '1984-1994, 1996-2010, 2012-2020', 'Biotechnology (Q1); Bioengineering (Q2); Molecular Biology (Q3)'), (4425, 'Crime Science', 21937680, 0.978, 'Q1', 20, 26, 1533, 160, 43, '3', '2013-2020', 'Cultural Studies (Q1); Law (Q1); Safety Research (Q1); Urban Studies (Q1)'), (4426, 'Journal of Communication Management', 1363254, 0.978, 'Q1', 38, 29, 1748, 231, 84, '3', '1995-2020', 'Communication (Q1); Strategy and Management (Q1)'), (4427, 'Religion, Brain and Behavior', 2153599, 0.978, 'Q2', 21, 45, 2198, 219, 82, '3', '2011-2020', 'Experimental and Cognitive Psychology (Q2)'), (4428, 'Third World Quarterly', 1436597, 0.978, 'Q1', 84, 163, 10283, 992, 394, '3', '1979-1990, 1992-2020', 'Development (Q1)'), (4429, 'Biomolecules and Therapeutics', 19769148, 0.977, 'Q1', 36, 65, 3389, 844, 219, '13', '2008-2020', 'Drug Discovery (Q1); Biochemistry (Q2); Molecular Medicine (Q2); Pharmacology (Q2)'), (4430, 'Clinical Chemistry and Laboratory Medicine', 14346621, 0.977, 'Q1', 103, 326, 9216, 2612, 740, '5', '1963-2020', 'Medicine (miscellaneous) (Q1); Biochemistry (medical) (Q2); Clinical Biochemistry (Q2)'), (4431, 'Networks', 10970037, 0.977, 'Q1', 64, 72, 2275, 462, 153, '2', '1971-2020', 'Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1)'), (4432, 'Tuberculosis', 1873281, 0.977, 'Q2', 88, 87, 4129, 936, 319, '2', '1974, 2001-2020', 'Infectious Diseases (Q2); Microbiology (Q2); Microbiology (medical) (Q2); Immunology (Q3)'), (4433, 'Analysis and Geometry in Metric Spaces', 22993274, 0.976, 'Q1', 16, 16, 510, 73, 29, '17', '2013-2020', 'Analysis (Q1); Applied Mathematics (Q1); Geometry and Topology (Q1)'), (4434, 'BMC Systems Biology', 17520509, 0.976, 'Q1', 84, 0, 0, 933, 319, '3', '2007-2019', 'Applied Mathematics (Q1); Computer Science Applications (Q1); Modeling and Simulation (Q1); Structural Biology (Q2); Molecular Biology (Q3)'), (4435, 'European Journal of Cancer Prevention', 14735709, 0.976, 'Q1', 77, 98, 2938, 673, 245, '2', '1991-2020', 'Public Health, Environmental and Occupational Health (Q1); Oncology (Q2); Cancer Research (Q3); Epidemiology (Q3)'), (4436, 'Fetal Diagnosis and Therapy', 14219964, 0.976, 'Q1', 60, 114, 3583, 663, 288, '19', '1986-2020', 'Embryology (Q1); Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Pediatrics, Perinatology and Child Health (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (4437, 'Higher Education Quarterly', 2639769, 0.976, 'Q1', 42, 57, 3224, 218, 79, '3', '1947-2020', 'Education (Q1)'), (4438, 'Journal of Language and Politics', 15699862, 0.976, 'Q1', 28, 42, 1923, 235, 114, '16', '2002-2020', 'History (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1)'), (4439, 'Journal of Marketing Education', 2734753, 0.976, 'Q1', 55, 29, 1657, 203, 46, '2', '1979-2020', 'Education (Q1); Marketing (Q1)'), (4440, 'Journal of Natural Products', 1633864, 0.976, 'Q1', 139, 432, 16488, 4848, 1170, '2', '1949, 1971, 1973, 1978-2020', 'Analytical Chemistry (Q1); Complementary and Alternative Medicine (Q1); Drug Discovery (Q1); Organic Chemistry (Q1); Pharmaceutical Science (Q1); Molecular Medicine (Q2); Pharmacology (Q2)'), (4441, 'Linguistics and Education', 8985898, 0.976, 'Q1', 44, 54, 3339, 270, 136, '3', '1988-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4442, 'Signs', 15456943, 0.976, 'Q1', 65, 55, 2245, 277, 130, '2', '1979, 1985-1987, 1989, 1991, 1993, 1996, 1998-2020', 'Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1)'), (4443, 'Altex', 1868596, 0.975, 'Q1', 51, 64, 1395, 518, 124, '5', '2000-2020', 'Medical Laboratory Technology (Q1); Medicine (miscellaneous) (Q1); Pharmacology (Q2)'), (4444, 'CMAJ', 8203946, 0.975, 'Q1', 186, 552, 7533, 2164, 761, '9', '1945-2020', 'Medicine (miscellaneous) (Q1)'), (4445, 'Data Mining and Knowledge Discovery', 13845810, 0.975, 'Q1', 104, 60, 3021, 1254, 174, '16', '1997-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Information Systems (Q1)'), (4446, 'Expert Opinion on Emerging Drugs', 14728214, 0.975, 'Q2', 48, 42, 4580, 267, 76, '3', '2000-2020', 'Pharmacology (Q2); Pharmacology (medical) (Q2)'), (4447, 'Journal of Petroleum Science and Engineering', 9204105, 0.975, 'Q1', 111, 1174, 59146, 13310, 2752, '16', '1987-2021', 'Fuel Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (4448, 'Marine Resource Economics', 23345985, 0.975, 'Q1', 45, 21, 1256, 177, 56, '2', '1987, 1989, 1993-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Oceanography (Q1); Economics and Econometrics (Q2)'), (4449, 'Pharmacology Research and Perspectives', 20521707, 0.975, 'Q1', 27, 133, 6324, 787, 246, '3', '2013-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Neurology (Q2)'), (4450, 'BJS open', 24749842, 0.974, 'Q1', 9, 106, 0, 311, 116, '3', '2017-2020', 'Medicine (miscellaneous) (Q1); Surgery (Q1)'), (4451, 'Journal of Building Engineering', 23527102, 0.974, 'Q1', 39, 777, 38204, 4094, 720, '16', '2015-2021', 'Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1); Mechanics of Materials (Q1); Safety, Risk, Reliability and Quality (Q1)'), (4452, 'Library Quarterly', 242519, 0.974, 'Q1', 38, 30, 1802, 160, 65, '2', '1946-1947, 1951, 1958, 1979, 1981, 1988-2020', 'Library and Information Sciences (Q1)'), (4453, 'ACM Transactions on Computation Theory', 19423454, 0.973, 'Q1', 17, 27, 996, 152, 63, '2', '2009-2020', 'Computational Theory and Mathematics (Q1); Theoretical Computer Science (Q1)'), (4454, 'Advances in Theoretical and Mathematical Phys', 10950761, 0.973, 'Q1', 79, 18, 789, 458, 115, '2', '1997-2020', 'Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (4455, 'British Journal of Educational Studies', 71005, 0.973, 'Q1', 49, 61, 3222, 208, 77, '3', '1952-2020', 'Education (Q1)'), (4456, 'City and Community', 15356841, 0.973, 'Q1', 35, 63, 4163, 318, 156, '3', '2008-2020', 'Urban Studies (Q1)'), (4457, 'Computational Complexity', 14208954, 0.973, 'Q1', 39, 8, 183, 189, 58, '19', '1991-1996, 1998-2020', 'Computational Mathematics (Q1); Computational Theory and Mathematics (Q1); Mathematics (miscellaneous) (Q1); Theoretical Computer Science (Q1)'), (4458, 'Food Engineering Reviews', 18667910, 0.973, 'Q1', 47, 48, 5409, 250, 50, '2', '2009-2020', 'Industrial and Manufacturing Engineering (Q1)'), (4459, 'Fungal Biology', 18786146, 0.973, 'Q1', 103, 111, 6685, 985, 297, '16', '2010-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Genetics (Q2); Infectious Diseases (Q2)'), (4460, 'International Journal of Fracture', 15732673, 0.973, 'Q1', 95, 89, 3695, 816, 246, '16', '1973-2020', 'Computational Mechanics (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1)'), (4461, 'Life', 20751729, 0.973, 'Q1', 33, 362, 26933, 728, 194, '19', '2011-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Space and Planetary Science (Q2)'), (4462, 'Philosophy Compass', 17479991, 0.973, 'Q1', 25, 62, 2927, 338, 191, '3', '2012-2020', 'Philosophy (Q1)'), (4463, 'Applied Mathematics and Computation', 18735649, 0.972, 'Q1', 145, 692, 25218, 9595, 2294, '2', '1975-2021', 'Applied Mathematics (Q1); Computational Mathematics (Q1)'), (4464, 'Case Studies in Construction Materials', 22145095, 0.972, 'Q1', 25, 154, 5739, 1088, 229, '16', '2014-2020', 'Materials Science (miscellaneous) (Q1)'), (4465, 'Chinese Medicine', 17498546, 0.972, 'Q1', 42, 127, 7789, 764, 151, '3', '2006-2020', 'Complementary and Alternative Medicine (Q1); Pharmacology (Q2)'), (4466, 'Current Cancer Drug Targets', 15680096, 0.972, 'Q1', 91, 75, 5949, 718, 220, '52', '2001-2020', 'Drug Discovery (Q1); Oncology (Q2); Pharmacology (Q2); Cancer Research (Q3)'), (4467, 'Journal of Building Performance Simulation', 19401507, 0.972, 'Q1', 40, 52, 2643, 446, 132, '3', '2008-2020', 'Architecture (Q1); Building and Construction (Q1); Computer Science Applications (Q1); Modeling and Simulation (Q1)'), (4468, 'Journal of Safety Research', 224375, 0.972, 'Q1', 85, 130, 5472, 1119, 282, '3', '1969-1980, 1982-2020', 'Safety, Risk, Reliability and Quality (Q1)'), (4469, 'Journal of Turbomachinery', 889504, 0.972, 'Q1', 112, 54, 1499, 1136, 361, '2', '1986-2020', 'Mechanical Engineering (Q1)'), (4470, 'Risk Analysis', 15396924, 0.972, 'Q1', 130, 238, 13164, 1997, 496, '3', '1981-2020', 'Safety, Risk, Reliability and Quality (Q1); Physiology (medical) (Q2)'), (4471, 'Social Policy and Administration', 1445596, 0.972, 'Q1', 63, 104, 5619, 609, 225, '3', '1967-2020', 'Development (Q1); Public Administration (Q1); Social Work (Q1); Sociology and Political Science (Q1)'), (4472, 'Studies in Comparative International Developm', 393606, 0.972, 'Q1', 53, 22, 1459, 127, 68, '2', '1965-1970, 1972-2020', 'Development (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (4473, 'Bulletin des Sciences Mathematiques', 74497, 0.971, 'Q1', 37, 55, 1294, 181, 96, '8', '1998-2020', 'Mathematics (miscellaneous) (Q1)'), (4474, 'Chaos', 10541500, 0.971, 'Q1', 113, 563, 25573, 5656, 1319, '2', '1991-2020', 'Applied Mathematics (Q1); Mathematical Physics (Q1); Medicine (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1); Statistical and Nonlinear Physics (Q1)'), (4475, 'Current Zoology', 16745507, 0.971, 'Q1', 38, 16, 825, 465, 191, '3', '2009-2020', 'Animal Science and Zoology (Q1)'), (4476, 'Journal of Histochemistry and Cytochemistry', 221554, 0.971, 'Q1', 124, 62, 3450, 438, 169, '2', '1953-1961, 1964-2020', 'Anatomy (Q1); Histology (Q1)'), (4477, 'Transfusion Medicine and Hemotherapy', 14245493, 0.971, 'Q2', 39, 56, 2046, 442, 141, '19', '1973, 1975-1997, 2003-2020', 'Hematology (Q2); Immunology and Allergy (Q2)'), (4478, 'Chronobiology International', 15256073, 0.97, 'Q2', 101, 180, 8352, 1383, 442, '3', '1984-2020', 'Physiology (Q2); Physiology (medical) (Q2)'), (4479, 'Newsletters on Stratigraphy', 780421, 0.97, 'Q1', 36, 16, 1708, 180, 59, '5', '1990, 1996-2001, 2004-2006, 2008-2020', 'Geology (Q1); Stratigraphy (Q1)'), (4480, 'Proceedings of the Aristotelean Society', 14679264, 0.97, 'Q1', 40, 2, 69, 67, 49, '3', '1996-2019', 'Philosophy (Q1)'), (4481, 'Acta Tropica', 18736254, 0.969, 'Q1', 101, 399, 21093, 3357, 1083, '16', '1945-2020', 'Insect Science (Q1); Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2); Parasitology (Q2)'), (4482, 'Chinese Chemical Letters', 10018417, 0.969, 'Q1', 50, 698, 34167, 6479, 1309, '16', '1996-2020', 'Chemistry (miscellaneous) (Q1)'), (4483, 'Health Economics, Policy and Law', 17441331, 0.969, 'Q1', 36, 60, 3255, 179, 83, '3', '2006-2020', 'Health Policy (Q1)'), (4484, 'Journal of Hospitality and Tourism Technology', 17579880, 0.969, 'Q1', 31, 40, 2535, 526, 108, '3', '2010-2020', 'Computer Science Applications (Q1); Information Systems (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (4485, 'Technology, Knowledge and Learning', 22111662, 0.969, 'Q1', 20, 81, 4908, 347, 96, '2', '2011-2020', 'Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Education (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q1); Mathematics (miscellaneous) (Q1); Theo'), (4486, 'Topics in Early Childhood Special Education', 2711214, 0.969, 'Q1', 54, 33, 1743, 140, 65, '2', '1981-2020', 'Education (Q1); Public Health, Environmental and Occupational Health (Q1)'), (4487, 'Youth and Society', 15528499, 0.969, 'Q1', 66, 118, 6741, 460, 159, '2', '1969-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (4488, 'Asia Pacific Journal of Tourism Research', 10941665, 0.968, 'Q1', 37, 96, 6047, 1072, 264, '3', '2003-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (4489, 'Journal of Physiological Sciences', 18806546, 0.968, 'Q2', 49, 53, 2275, 717, 268, '6', '1996-2020', 'Physiology (Q2)'), (4490, 'Proceedings of the American Mathematical Soci', 10886826, 0.968, 'Q1', 84, 475, 8608, 2387, 1413, '2', '1950-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (4491, 'Acta Neurologica Scandinavica', 16000404, 0.967, 'Q1', 95, 148, 4522, 1411, 444, '3', '1961-2020', 'Medicine (miscellaneous) (Q1); Neurology (Q2); Neurology (clinical) (Q2)'), (4492, 'Communications of the ACM', 15577317, 0.967, 'Q1', 214, 266, 2801, 4350, 475, '2', '1958-2020', 'Computer Science (miscellaneous) (Q1)'), (4493, 'Disability and Health Journal', 19366574, 0.967, 'Q1', 36, 132, 4567, 796, 278, '2', '2008-2020', 'Medicine (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (4494, 'Injury', 201383, 0.967, 'Q1', 121, 752, 21261, 3998, 1366, '3', '1969-2020', 'Emergency Medicine (Q1); Orthopedics and Sports Medicine (Q1); Surgery (Q1)'), (4495, 'Journal of Breath Research', 17527155, 0.967, 'Q2', 53, 80, 3069, 707, 215, '3', '2007-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (4496, 'Journal of Construction Engineering and Manag', 7339364, 0.967, 'Q1', 114, 214, 12466, 2468, 495, '2', '1982-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Industrial Relations (Q1); Strategy and Management (Q1)'), (4497, 'Journal of Microbiology', 19763794, 0.967, 'Q1', 63, 118, 5514, 1233, 371, '13', '1996-2020', 'Applied Microbiology and Biotechnology (Q1); Medicine (miscellaneous) (Q1); Microbiology (Q2)'), (4498, 'Obstetrical and Gynecological Survey', 297828, 0.967, 'Q1', 82, 234, 2169, 382, 117, '2', '1946-2020', 'Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1)'), (4499, 'Pacific Journal of Mathematics', 308730, 0.967, 'Q1', 52, 130, 3276, 551, 369, '2', '1951-2020', 'Mathematics (miscellaneous) (Q1)'), (4500, 'Building Simulation', 19968744, 0.966, 'Q1', 33, 126, 5848, 888, 245, '1', '2008-2020', 'Building and Construction (Q1); Energy (miscellaneous) (Q1)'), (4501, 'Childhood', 9075682, 0.966, 'Q2', 60, 40, 1881, 265, 101, '3', '1993-1994, 1996-2020', 'Developmental and Educational Psychology (Q2)'), (4502, 'Crystal Growth and Design', 15287505, 0.966, 'Q1', 155, 890, 44830, 10049, 2477, '2', '2001-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (4503, 'European Journal of Protistology', 9324739, 0.966, 'Q2', 48, 57, 3214, 498, 181, '5', '1987-2020', 'Microbiology (Q2)'), (4504, 'Journal of Anthropological Sciences', 18274765, 0.966, 'Q1', 25, 13, 991, 92, 40, '7', '2008-2019', 'Anthropology (Q1); Medicine (miscellaneous) (Q1)'), (4505, 'Journal of Assisted Reproduction and Genetics', 10580468, 0.966, 'Q1', 75, 344, 12759, 2123, 673, '2', '1992-2020', 'Medicine (miscellaneous) (Q1); Obstetrics and Gynecology (Q1); Reproductive Medicine (Q1); Developmental Biology (Q2); Genetics (Q2); Genetics (clinical) (Q2)'), (4506, 'Journal of Geriatric Psychiatry and Neurology', 15525708, 0.966, 'Q2', 69, 85, 4605, 334, 110, '2', '1988-2020', 'Geriatrics and Gerontology (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)'), (4507, 'Journal of Management, Spirituality and Relig', 1942258, 0.966, 'Q1', 24, 35, 1631, 179, 63, '3', '2004-2020', 'Organizational Behavior and Human Resource Management (Q1); Religious Studies (Q1)'), (4508, 'Molecular Catalysis', 24688231, 0.966, 'Q1', 157, 442, 25422, 5220, 1113, '16', '2017-2020', 'Physical and Theoretical Chemistry (Q1); Process Chemistry and Technology (Q1); Catalysis (Q2)'), (4509, 'Diabetes and Vascular Disease Research', 14791641, 0.965, 'Q2', 54, 55, 1705, 604, 200, '3', '2004-2020', 'Cardiology and Cardiovascular Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (4510, 'Journal of Environmental Chemical Engineering', 22133437, 0.965, 'Q1', 72, 1036, 61320, 12227, 2122, '3', '2013-2020', 'Chemical Engineering (miscellaneous) (Q1); Pollution (Q1); Process Chemistry and Technology (Q1); Waste Management and Disposal (Q1)'), (4511, 'Journal of Experimental Marine Biology and Ec', 220981, 0.965, 'Q1', 125, 143, 9606, 1127, 426, '16', '1967-2020', 'Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (4512, 'Journal of Planning Education and Research', 739456, 0.965, 'Q1', 72, 110, 6088, 618, 154, '2', '1981-2020', 'Development (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)'), (4513, 'Operative Dentistry', 3617734, 0.965, 'Q1', 81, 106, 4064, 799, 304, '2', '1976-2020', 'Dentistry (miscellaneous) (Q1)'), (4514, 'Transportmetrica B', 21680582, 0.965, 'Q1', 22, 27, 1139, 418, 123, '3', '2013-2020', 'Modeling and Simulation (Q1); Software (Q1); Transportation (Q2)'), (4515, 'American Journal of Evaluation', 10982140, 0.964, 'Q1', 55, 36, 1481, 227, 101, '2', '1981-2020', 'Business and International Management (Q1); Education (Q1); Health (social science) (Q1); Social Psychology (Q1); Sociology and Political Science (Q1); Strategy and Management (Q1)'), (4516, 'Arthropod Systematics and Phylogeny', 18637221, 0.964, 'Q1', 20, 18, 1222, 141, 67, '5', '2009-2020', 'Insect Science (Q1); Genetics (Q2)'), (4517, 'Drug Design, Development and Therapy', 11778881, 0.964, 'Q1', 64, 465, 20605, 4507, 1067, '41', '2007-2020', 'Drug Discovery (Q1); Pharmaceutical Science (Q1); Pharmacology (Q2)'), (4518, 'Endangered Species Research', 18635407, 0.964, 'Q1', 57, 71, 4469, 571, 212, '5', '2008-2020', 'Ecology (Q1); Nature and Landscape Conservation (Q1)'), (4519, 'Homicide Studies', 10887679, 0.964, 'Q1', 46, 30, 1685, 132, 51, '2', '1997-2020', 'Law (Q1); Pathology and Forensic Medicine (Q1); Psychology (miscellaneous) (Q1)'), (4520, 'Interfaces and Free Boundaries', 14639971, 0.964, 'Q1', 39, 17, 505, 138, 55, '19', '1999-2019', 'Surfaces and Interfaces (Q1)'), (4521, 'Journal of Neuropsychiatry and Clinical Neuro', 8950172, 0.964, 'Q1', 108, 58, 2283, 411, 158, '2', '1989-2020', 'Medicine (miscellaneous) (Q1); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)'), (4522, 'Journal of Plant Interactions', 17429153, 0.964, 'Q1', 40, 41, 2532, 833, 187, '3', '2005, 2007-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (4523, 'Tissue Engineering - Part A.', 1937335, 0.964, 'Q2', 111, 152, 6066, 1793, 446, '2', '2008-2020', 'Biochemistry (Q2); Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2)'), (4524, 'Bioresource Technology Reports', 2589014, 0.963, 'Q1', 18, 259, 11042, 1448, 324, '3', '2018-2020', 'Environmental Engineering (Q1); Waste Management and Disposal (Q1); Bioengineering (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (4525, 'Culture, Health and Sexuality', 14645351, 0.963, 'Q1', 63, 214, 9146, 779, 284, '3', '1999-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q1)'), (4526, 'Field Methods', 1525822, 0.963, 'Q1', 49, 29, 1036, 265, 71, '2', '1989-2020', 'Anthropology (Q1)'), (4527, 'International Journal of Legal Medicine', 9379827, 0.963, 'Q1', 83, 262, 8832, 1672, 690, '5', '1990-2020', 'Pathology and Forensic Medicine (Q1)'), (4528, 'Journal of the Neurological Sciences', 22510, 0.963, 'Q2', 137, 565, 19630, 3537, 1089, '16', '1964-2020', 'Neurology (Q2); Neurology (clinical) (Q2)'), (4529, 'Annals of Physical and Rehabilitation Medicin', 18770657, 0.962, 'Q1', 43, 133, 4438, 620, 153, '8', '2009-2020', 'Orthopedics and Sports Medicine (Q1); Rehabilitation (Q1)'), (4530, 'Journal of Cranio-Maxillo-Facial Surgery', 18784119, 0.962, 'Q1', 77, 151, 4788, 1944, 886, '2', '1987-2020', 'Oral Surgery (Q1); Otorhinolaryngology (Q1); Surgery (Q1)'), (4531, 'Journal of Integrated Pest Management', 21557470, 0.962, 'Q1', 24, 5, 551, 231, 82, '3', '2010-2020', 'Agronomy and Crop Science (Q1); Insect Science (Q1); Management, Monitoring, Policy and Law (Q1); Plant Science (Q1)'), (4532, 'Journal of Supercritical Fluids', 8968446, 0.962, 'Q1', 113, 225, 11090, 4145, 951, '16', '1988-2020', 'Chemical Engineering (miscellaneous) (Q1); Condensed Matter Physics (Q1); Physical and Theoretical Chemistry (Q1)'), (4533, 'LEUKOS - Journal of Illuminating Engineering ', 15502724, 0.962, 'Q1', 27, 41, 1740, 185, 53, '3', '2004-2020', 'Atomic and Molecular Physics, and Optics (Q1)'), (4534, 'Russian Chemical Reviews', 36021, 0.962, 'Q1', 73, 46, 11054, 709, 127, '3', '1970-2020', 'Chemistry (miscellaneous) (Q1)'), (4535, 'Antiquity', 17451744, 0.961, 'Q1', 76, 134, 4172, 767, 425, '3', '1927-2020', 'Archeology (Q1); Arts and Humanities (miscellaneous) (Q1)'), (4536, 'ASAIO Journal', 10582916, 0.961, 'Q1', 66, 240, 5330, 1319, 452, '2', '1978-1985, 1992-2020', 'Biophysics (Q1); Medicine (miscellaneous) (Q1); Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2)'), (4537, 'Collegian', 13227696, 0.961, 'Q1', 32, 114, 4236, 669, 246, '16', '1994-2020', 'Nursing (miscellaneous) (Q1)'), (4538, 'Journal of Education for Students Placed at R', 10824669, 0.961, 'Q1', 16, 25, 1446, 124, 58, '3', '2010-2020', 'Education (Q1)'), (4539, 'Journal of the American Society for Mass Spec', 10440305, 0.961, 'Q1', 127, 281, 2236, 2430, 817, '2', '1990-2020', 'Spectroscopy (Q1); Structural Biology (Q3)'), (4540, 'Land Economics', 237639, 0.961, 'Q1', 86, 32, 1635, 196, 100, '2', '1964, 1973-1974, 1976-2020', 'Environmental Science (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (4541, 'Leukemia and Lymphoma', 10292403, 0.961, 'Q2', 88, 562, 15863, 2518, 848, '3', '1989-2020', 'Hematology (Q2); Oncology (Q2); Cancer Research (Q3)'), (4542, 'Physiotherapy', 319406, 0.961, 'Q1', 56, 102, 3292, 522, 162, '3', '1945-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (4543, 'Antibiotics', 20796382, 0.96, 'Q1', 35, 926, 54170, 1892, 407, '19', '2010, 2012-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Biochemistry (Q2); Infectious Diseases (Q2); Microbiology (Q2); Microbiology (medical) (Q2); Pharmacology (medical) (Q2)'), (4544, 'Artificial Intelligence', 43702, 0.96, 'Q1', 154, 99, 5600, 1635, 228, '16', '1970-2020', 'Artificial Intelligence (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4545, 'Finite Elements in Analysis and Design', 168874, 0.96, 'Q1', 78, 46, 2149, 721, 214, '16', '1985-2020', 'Analysis (Q1); Applied Mathematics (Q1); Computer Graphics and Computer-Aided Design (Q1); Engineering (miscellaneous) (Q1)'), (4546, 'Frontiers in Pediatrics', 22962360, 0.96, 'Q1', 36, 887, 38058, 3920, 1142, '19', '2013-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (4547, 'Journal of Development Studies', 220388, 0.96, 'Q1', 86, 162, 8524, 901, 391, '3', '1964-2020', 'Development (Q1)'), (4548, 'Journal of Professional Nursing', 15328481, 0.96, 'Q1', 53, 137, 4125, 508, 205, '3', '1985-2020', 'Medicine (miscellaneous) (Q1); Nursing (miscellaneous) (Q1)'), (4549, 'Physiology and Behavior', 1873507, 0.96, 'Q1', 160, 356, 20662, 3699, 1135, '2', '1966-2020', 'Philosophy (Q1); Behavioral Neuroscience (Q2); Experimental and Cognitive Psychology (Q2)'), (4550, 'Research in Mathematics Education', 17540178, 0.96, 'Q1', 18, 24, 863, 98, 49, '2', '1998, 2000-2020', 'Education (Q1); Mathematics (miscellaneous) (Q1)'), (4551, 'American Journal of Orthopsychiatry', 19390025, 0.959, 'Q1', 93, 50, 2687, 619, 221, '2', '1930-2020', 'Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4552, 'Brazilian Journal of Physical Therapy', 18099246, 0.959, 'Q1', 35, 96, 3745, 577, 188, '14', '2007-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2)'), (4553, 'Cancer Biomarkers', 15740153, 0.959, 'Q1', 41, 145, 5112, 2156, 599, '16', '2005-2020', 'Medicine (miscellaneous) (Q1); Genetics (Q2); Oncology (Q2); Cancer Research (Q3)'), (4554, 'Clinical Neurophysiology Practice', 2467981, 0.959, 'Q2', 12, 34, 858, 257, 78, '16', '2016-2020', 'Neurology (Q2); Neurology (clinical) (Q2); Physiology (medical) (Q2)'), (4555, 'IEEE Transactions on Big Data', 23327790, 0.959, 'Q1', 6, 71, 998, 37, 8, '2', '2020', 'Information Systems (Q1); Information Systems and Management (Q1)'), (4556, 'International Journal of Communication', 19328036, 0.959, 'Q1', 39, 292, 15916, 1235, 598, '2', '2011-2020', 'Communication (Q1)'), (4557, 'Reviews in Chemical Engineering', 1678299, 0.959, 'Q1', 45, 56, 8411, 577, 105, '5', '1982-1985, 1987-1988, 1990-2020', 'Chemical Engineering (miscellaneous) (Q1)'), (4558, 'AICHE Journal', 11541, 0.958, 'Q1', 167, 374, 18063, 4720, 1155, '2', '1955-2020', 'Biotechnology (Q1); Chemical Engineering (miscellaneous) (Q1); Environmental Engineering (Q1)'), (4559, 'Area', 14754762, 0.958, 'Q1', 82, 133, 5418, 664, 222, '3', '1976, 1978-2020', 'Geography, Planning and Development (Q1)'), (4560, 'Clinical and Experimental Vaccine Research', 2287366, 0.958, 'Q1', 11, 24, 599, 154, 55, '13', '2017-2020', 'Public Health, Environmental and Occupational Health (Q1); Immunology and Allergy (Q2); Infectious Diseases (Q2); Pharmacology (Q2)'), (4561, 'Clinical Neuropsychologist', 13854046, 0.958, 'Q1', 79, 153, 8692, 775, 250, '3', '1987-2020', 'Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Psy'), (4562, 'Fire Safety Journal', 3797112, 0.958, 'Q1', 78, 260, 8386, 1566, 437, '3', '1977-2020', 'Chemistry (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1); Safety, Risk, Reliability and Quality (Q1)'), (4563, 'Health systems and reform', 23288620, 0.958, 'Q1', 17, 28, 879, 227, 72, '2', '2015-2020', 'Health Informatics (Q1); Health Information Management (Q1); Public Health, Environmental and Occupational Health (Q1)'), (4564, 'Journal of Physiology and Biochemistry', 18778755, 0.958, 'Q1', 48, 63, 3605, 578, 165, '16', '1996-2020', 'Medicine (miscellaneous) (Q1); Biochemistry (Q2); Physiology (Q2)'), (4565, 'Journal of Speech, Language, and Hearing Rese', 10924388, 0.958, 'Q1', 138, 308, 18807, 2069, 787, '2', '1996-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Medicine (miscellaneous) (Q1); Speech and Hearing (Q1)'), (4566, 'Scandinavian Journal of Management', 9565221, 0.958, 'Q1', 57, 20, 2124, 232, 79, '3', '1988-2020', 'Strategy and Management (Q1); Applied Psychology (Q2)'), (4567, 'American Journal of Surgery', 29610, 0.957, 'Q1', 153, 679, 15282, 2887, 1147, '2', '1917, 1919, 1926-2020', 'Medicine (miscellaneous) (Q1); Surgery (Q1)'), (4568, 'Blood Transfusion', 17232007, 0.957, 'Q1', 47, 71, 1642, 679, 200, '7', '2003-2020', 'Medicine (miscellaneous) (Q1); Hematology (Q2); Immunology and Allergy (Q2)'), (4569, 'Contact Lens and Anterior Eye', 14765411, 0.957, 'Q1', 49, 143, 5486, 747, 263, '16', '1997-2020', 'Medicine (miscellaneous) (Q1); Optometry (Q1); Ophthalmology (Q2)'), (4570, 'Food Structure', 22133291, 0.957, 'Q1', 20, 21, 883, 293, 73, '16', '2014-2020', 'Applied Microbiology and Biotechnology (Q1); Food Science (Q1); Bioengineering (Q2)'), (4571, 'Journal of Biological Research', 1790045, 0.957, 'Q1', 20, 17, 736, 144, 47, '3', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (4572, 'Journal of the American Water Resources Assoc', 1093474, 0.957, 'Q1', 105, 79, 4454, 826, 271, '2', '1967-2020', 'Earth-Surface Processes (Q1); Ecology (Q1); Water Science and Technology (Q1)'), (4573, 'Physiological and Biochemical Zoology', 15222152, 0.957, 'Q1', 85, 40, 732, 357, 161, '2', '1999-2020', 'Animal Science and Zoology (Q1); Biochemistry (Q2); Physiology (Q2)'), (4574, 'Research Studies in Music Education', 1321103, 0.957, 'Q1', 26, 41, 2511, 90, 54, '3', '1993-2020', 'Education (Q1); Music (Q1)'), (4575, 'Advances in Virology', 16878639, 0.956, 'Q2', 25, 9, 364, 66, 21, '2', '2009-2020', 'Infectious Diseases (Q2); Virology (Q3)'), (4576, 'Ecosystem Health and Sustainability', 23328878, 0.956, 'Q1', 21, 55, 3394, 286, 78, '3', '2015-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q1)'), (4577, 'Geo-Spatial Information Science', 10095020, 0.956, 'Q1', 25, 40, 1722, 470, 89, '3', '1998-2020', 'Computers in Earth Sciences (Q1); Geography, Planning and Development (Q1)'), (4578, 'Human gene therapy. Clinical development', 23248645, 0.956, 'Q2', 24, 0, 0, 233, 63, '2', '2013-2019', 'Genetics (clinical) (Q2)'), (4579, 'Prenatal Diagnosis', 10970223, 0.956, 'Q2', 97, 225, 9151, 1313, 471, '3', '1980-2020', 'Genetics (clinical) (Q2); Obstetrics and Gynecology (Q2)'), (4580, 'Clinics in Geriatric Medicine', 7490690, 0.955, 'Q2', 75, 64, 3280, 494, 133, '3', '1985-2020', 'Geriatrics and Gerontology (Q2)'), (4581, 'Diabetology and Metabolic Syndrome', 17585996, 0.955, 'Q2', 48, 105, 4743, 1011, 303, '3', '2009-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (4582, 'Family Practice', 2632136, 0.955, 'Q1', 100, 84, 2254, 746, 328, '3', '1984-2020', 'Family Practice (Q1)'), (4583, 'Food Quality and Safety', 23991402, 0.955, 'Q1', 14, 27, 1393, 416, 83, '3', '2017-2019', 'Food Science (Q1)'), (4584, 'Insect Molecular Biology', 13652583, 0.955, 'Q1', 93, 53, 2596, 645, 195, '3', '1992-2020', 'Insect Science (Q1); Genetics (Q2); Molecular Biology (Q3)'), (4585, 'Journal of Research in Music Education', 224294, 0.955, 'Q1', 43, 34, 1477, 107, 74, '2', '1953-2020', 'Education (Q1); Music (Q1)'), (4586, 'Language and Cognition', 18669808, 0.955, 'Q1', 8, 29, 1764, 130, 72, '3', '2017-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Experimental and Cognitive Psychology (Q2)'), (4587, 'Mathematika', 20417942, 0.955, 'Q1', 29, 39, 883, 192, 134, '3', '1954-2007, 2009-2020', 'Mathematics (miscellaneous) (Q1)'), (4588, 'Interdisciplinary Journal of Problem-based Le', 15415015, 0.954, 'Q1', 14, 17, 811, 141, 50, '2', '2015-2019', 'Education (Q1)'), (4589, 'Journal of Mental Health', 9638237, 0.954, 'Q2', 67, 173, 7994, 881, 262, '3', '1992-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (4590, 'Journal of Science Teacher Education', 1046560, 0.954, 'Q1', 45, 56, 3040, 184, 115, '3', '1989-2002, 2005-2020', 'Education (Q1)'), (4591, 'Journal of Theoretical Politics', 14603667, 0.954, 'Q1', 48, 26, 1064, 70, 68, '3', '1989-2020', 'Sociology and Political Science (Q1)'), (4592, 'Medical Microbiology and Immunology', 14321831, 0.954, 'Q2', 61, 59, 3498, 438, 147, '5', '1971-2020', 'Immunology and Allergy (Q2); Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2); Immunology (Q3)'), (4593, 'Scandinavian Journal of Trauma, Resuscitation', 17577241, 0.954, 'Q1', 53, 117, 3473, 968, 332, '3', '2008-2020', 'Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1)'), (4594, 'SIAM Journal on Applied Mathematics', 361399, 0.954, 'Q1', 99, 116, 4352, 1068, 360, '2', '1969-1988, 1990-2020', 'Applied Mathematics (Q1)'), (4595, 'Social Neuroscience', 17470919, 0.954, 'Q1', 69, 59, 3491, 420, 190, '3', '2006-2020', 'Development (Q1); Social Psychology (Q1); Behavioral Neuroscience (Q2)'), (4596, 'Studia Mathematica', 393223, 0.954, 'Q1', 55, 74, 1803, 293, 191, '17', '1996-2019', 'Mathematics (miscellaneous) (Q1)'), (4597, 'Adicciones', 2144840, 0.953, 'Q2', 30, 33, 1261, 230, 74, '12', '1994-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (4598, 'CIS Iron and Steel Review', 20720815, 0.953, 'Q1', 12, 31, 707, 163, 72, '10', '2014-2020', 'Industrial and Manufacturing Engineering (Q1); Metals and Alloys (Q1)'), (4599, 'Human Nature', 19364776, 0.953, 'Q1', 67, 25, 1750, 185, 71, '2', '1990-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (4600, 'Kyoto Journal of Mathematics', 21543321, 0.953, 'Q1', 32, 44, 1145, 119, 87, '6', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (4601, 'Nursing Outlook', 15283968, 0.953, 'Q1', 57, 119, 4073, 747, 240, '2', '1953-2020', 'Nursing (miscellaneous) (Q1)'), (4602, 'Oral Diseases', 16010825, 0.953, 'Q1', 87, 443, 15880, 1913, 540, '3', '1995-2020', 'Dentistry (miscellaneous) (Q1); Otorhinolaryngology (Q1)'), (4603, 'Scandinavian Journal of Public Health', 14034948, 0.953, 'Q1', 82, 176, 5298, 986, 385, '3', '1973-1982, 1984-1986, 1988-2020', 'Public Health, Environmental and Occupational Health (Q1); Medicine (miscellaneous) (Q2)'), (4604, 'ACI Structural Journal', 8893241, 0.952, 'Q1', 109, 144, 4486, 782, 389, '2', '1987-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1)'), (4605, 'Dental Clinics of North America', 118532, 0.952, 'Q1', 66, 58, 1834, 560, 142, '3', '1965-2020', 'Dentistry (miscellaneous) (Q1)'), (4606, 'Hydrological Sciences Journal', 2626667, 0.952, 'Q1', 98, 217, 13849, 1560, 451, '3', '1982-2020', 'Water Science and Technology (Q1)'), (4607, 'International Journal of Heat and Fluid Flow', 142727, 0.952, 'Q1', 110, 171, 7003, 1375, 448, '16', '1979-1980, 1982-2020', 'Condensed Matter Physics (Q1); Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1)'), (4608, 'Atmospheric Science Letters', 1530261, 0.951, 'Q2', 45, 51, 1843, 408, 189, '2', '2000-2020', 'Atmospheric Science (Q2)'), (4609, 'Food and Chemical Toxicology', 18736351, 0.951, 'Q1', 172, 770, 43269, 9232, 2028, '3', '1982-2020', 'Food Science (Q1); Toxicology (Q1); Medicine (miscellaneous) (Q2)'), (4610, 'Gender and Education', 13600516, 0.951, 'Q1', 62, 105, 5357, 415, 178, '3', '1989-2020', 'Education (Q1); Gender Studies (Q1)'), (4611, 'Journal of Human Nutrition and Dietetics', 9523871, 0.951, 'Q2', 70, 88, 3822, 789, 235, '3', '1988-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (4612, 'Journal of Mathematical Analysis and Applicat', 10960813, 0.951, 'Q1', 142, 838, 22774, 5578, 2828, '2', '1960-2021', 'Applied Mathematics (Q1); Analysis (Q2)'), (4613, 'Linear Algebra and Its Applications', 243795, 0.951, 'Q1', 100, 401, 8564, 2521, 1232, '2', '1968-2021', 'Algebra and Number Theory (Q1); Discrete Mathematics and Combinatorics (Q1); Geometry and Topology (Q2); Numerical Analysis (Q2)'), (4614, 'Nephron', 282766, 0.951, 'Q1', 72, 97, 2796, 961, 392, '19', '1964-2004, 2015-2020', 'Urology (Q1); Medicine (miscellaneous) (Q2); Nephrology (Q2); Physiology (Q2); Physiology (medical) (Q2)'), (4615, 'Parasite', 1252607, 0.951, 'Q1', 46, 75, 4003, 603, 195, '8', '1994-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Animal Science and Zoology (Q1); Insect Science (Q1); Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2); Parasitology (Q2)'), (4616, 'Parasitology', 14698161, 0.951, 'Q1', 114, 194, 11988, 1714, 575, '3', '1908-2020', 'Animal Science and Zoology (Q1); Infectious Diseases (Q2); Parasitology (Q2)'), (4617, 'Telemedicine Journal and e-Health', 15563669, 0.951, 'Q1', 73, 217, 5642, 1378, 400, '2', '2000-2020', 'Health Informatics (Q1); Health Information Management (Q2); Medicine (miscellaneous) (Q2)'), (4618, 'Aquatic Conservation: Marine and Freshwater E', 10990755, 0.95, 'Q1', 77, 213, 14832, 1338, 484, '3', '1991-2020', 'Aquatic Science (Q1); Ecology (Q1); Nature and Landscape Conservation (Q1)'), (4619, 'Boreas', 3009483, 0.95, 'Q1', 74, 70, 6076, 499, 196, '2', '1972-2020', 'Archeology (arts and humanities) (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Geology (Q1)'), (4620, 'British Journal of Social Work', 453102, 0.95, 'Q1', 81, 120, 5365, 797, 363, '3', '1971-2020', 'Health (social science) (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1)'), (4621, 'Cytoskeleton', 19493592, 0.95, 'Q3', 86, 46, 3193, 278, 131, '2', '2010-2020', 'Cell Biology (Q3); Structural Biology (Q3)'), (4622, 'Epidemiologic Methods', 21949263, 0.95, 'Q1', 12, 23, 731, 29, 18, '5', '2012-2020', 'Applied Mathematics (Q1); Epidemiology (Q3)'), (4623, 'EURO Journal on Computational Optimization', 21924406, 0.95, 'Q1', 14, 15, 481, 146, 49, '5', '2014-2020', 'Computational Mathematics (Q1); Control and Optimization (Q1); Management Science and Operations Research (Q1); Modeling and Simulation (Q1)'), (4624, 'Husserl Studies', 1679848, 0.95, 'Q1', 12, 18, 459, 41, 33, '16', '1984-2002, 2006-2020', 'Philosophy (Q1)'), (4625, 'Journal of Earthquake Engineering', 13632469, 0.95, 'Q1', 68, 253, 11035, 848, 313, '3', '1997-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (4626, 'Neurologic Clinics', 7338619, 0.95, 'Q2', 82, 65, 3573, 578, 155, '3', '1983-2020', 'Neurology (clinical) (Q2)'), (4627, 'Quarterly Journal of Finance', 20101406, 0.95, 'Q1', 19, 23, 1036, 79, 60, '37', '2011-2020', 'Finance (Q1); Strategy and Management (Q1); Economics and Econometrics (Q2)'), (4628, 'Studies in History and Philosophy of Science ', 13552198, 0.95, 'Q1', 46, 58, 3403, 354, 143, '3', '1995-2020', 'History (Q1); History and Philosophy of Science (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (4629, 'Circulation Journal', 13474820, 0.949, 'Q2', 106, 332, 8218, 2342, 890, '6', '1996-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (4630, 'International Environmental Agreements: Polit', 15679764, 0.949, 'Q1', 37, 56, 3504, 335, 125, '16', '2003-2020', 'Law (Q1); Political Science and International Relations (Q1); Economics and Econometrics (Q2)'), (4631, 'International Journal of Bilingualism', 13670069, 0.949, 'Q1', 48, 84, 4359, 378, 166, '3', '1997-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4632, 'Journal of Diabetes', 17530407, 0.949, 'Q2', 43, 128, 4388, 1011, 284, '2', '2009-2020', 'Endocrinology, Diabetes and Metabolism (Q2)'), (4633, 'Journal of Geriatric Cardiology', 16715411, 0.949, 'Q2', 30, 83, 2147, 775, 260, '1', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q2); Geriatrics and Gerontology (Q2)'), (4634, 'Progress in Orthodontics', 17237785, 0.949, 'Q1', 28, 44, 1334, 373, 135, '5', '2003-2020', 'Orthodontics (Q1)'), (4635, 'Autonomous Robots', 15737527, 0.948, 'Q1', 115, 88, 3507, 1808, 306, '16', '1994-2020', 'Artificial Intelligence (Q1)'), (4636, 'Biologics: Targets and Therapy', 11775491, 0.948, 'Q2', 38, 12, 833, 178, 49, '41', '1988, 2007-2020', 'Gastroenterology (Q2); Immunology and Allergy (Q2); Oncology (Q2); Pharmacology (medical) (Q2); Rheumatology (Q2)'), (4637, 'Cellulose', 9690239, 0.948, 'Q1', 121, 726, 36467, 8110, 1659, '16', '1994-2020', 'Polymers and Plastics (Q1)'), (4638, 'Clinical and Experimental Optometry', 14440938, 0.948, 'Q2', 55, 223, 7776, 748, 285, '2', '1986-2020', 'Ophthalmology (Q2); Optometry (Q2)'), (4639, 'Combinatorics Probability and Computing', 9635483, 0.948, 'Q1', 56, 48, 1145, 294, 161, '3', '1992-2020', 'Applied Mathematics (Q1); Computational Theory and Mathematics (Q1); Theoretical Computer Science (Q1); Statistics and Probability (Q2)'), (4640, 'Journal of Advanced Nursing', 3092402, 0.948, 'Q1', 155, 349, 15708, 2656, 828, '3', '1976-2020', 'Nursing (miscellaneous) (Q1)'), (4641, 'Journal of Head Trauma Rehabilitation', 8859701, 0.948, 'Q1', 99, 85, 3386, 790, 280, '2', '1986-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Neurology (clinical) (Q2)'), (4642, 'Journal of Post Keynesian Economics', 1603477, 0.948, 'Q2', 40, 41, 1970, 133, 91, '2', '1985, 1989, 1996-2020', 'Economics and Econometrics (Q2)'), (4643, 'Mathematics and Financial Economics', 18629679, 0.948, 'Q1', 27, 28, 966, 159, 72, '5', '2007-2020', 'Finance (Q1); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (4644, 'Memory', 14640686, 0.948, 'Q1', 90, 108, 5805, 734, 392, '3', '1993-2020', 'Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)'), (4645, 'Proteomics - Clinical Applications', 18628354, 0.948, 'Q2', 54, 52, 2166, 666, 239, '5', '2007-2020', 'Clinical Biochemistry (Q2)'), (4646, 'Andrology', 20472927, 0.947, 'Q1', 43, 214, 10702, 1305, 351, '2', '2013-2020', 'Urology (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Reproductive Medicine (Q2)'), (4647, 'ChemNanoMat', 2199692, 0.947, 'Q1', 32, 213, 13261, 1409, 441, '5', '2015-2020', 'Energy Engineering and Power Technology (Q1); Materials Chemistry (Q1); Biomaterials (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (4648, 'Discourse Processes', 163853, 0.947, 'Q1', 57, 61, 3520, 292, 128, '3', '1978-2001, 2005-2020', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4649, 'Frontiers in Psychology', 16641078, 0.947, 'Q2', 110, 3679, 238620, 24199, 7377, '19', '2010-2020', 'Psychology (miscellaneous) (Q2)'), (4650, 'Nanomedicine', 17486963, 0.947, 'Q1', 109, 188, 12355, 2881, 595, '3', '2006-2020', 'Development (Q1); Materials Science (miscellaneous) (Q1); Bioengineering (Q2); Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2)'), (4651, 'Nano-Structures and Nano-Objects', 2352507, 0.947, 'Q1', 27, 118, 7843, 1536, 300, '16', '2015-2020', 'Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q1)'), (4652, 'Neurotoxicology and Teratology', 8920362, 0.947, 'Q2', 97, 47, 3313, 579, 158, '2', '1987-2020', 'Developmental Neuroscience (Q2); Toxicology (Q2); Cellular and Molecular Neuroscience (Q3)'), (4653, 'Australian and New Zealand Journal of Public ', 13260200, 0.946, 'Q1', 76, 105, 3272, 826, 271, '2', '1996-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (4654, 'Bone Reports', 23521872, 0.946, 'Q2', 19, 92, 3851, 524, 144, '2', '2015-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Orthopedics and Sports Medicine (Q2)'), (4655, 'Familial Cancer', 15737292, 0.946, 'Q2', 57, 61, 1720, 468, 213, '16', '2001, 2003-2020', 'Genetics (Q2); Oncology (Q2); Cancer Research (Q3); Genetics (clinical) (Q3)'), (4656, 'Immunobiology', 18783279, 0.946, 'Q2', 92, 135, 7125, 1042, 336, '5', '1979-2020', 'Hematology (Q2); Immunology and Allergy (Q2); Immunology (Q3)'), (4657, 'International Journal of Advanced Manufacturi', 2683768, 0.946, 'Q1', 124, 1745, 64503, 20499, 5713, '3', '1985-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Software (Q1)'), (4658, 'Proceedings of the VLDB Endowment', 21508097, 0.946, 'Q1', 134, 246, 12401, 3759, 566, '2', '2008-2020', 'Computer Science (miscellaneous) (Q1)'), (4659, 'Bulletin of Engineering Geology and the Envir', 14359537, 0.945, 'Q1', 59, 364, 17335, 2577, 670, '5', '1984, 1996, 1998-2020', 'Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (4660, 'Bulletin of Volcanology', 2588900, 0.945, 'Q2', 93, 78, 5293, 574, 226, '5', '1930, 1940, 1949-1956, 1958-1960, 1962-1983, 1986-2020', 'Geochemistry and Petrology (Q2)'), (4661, 'IEEE Transactions on Network and Service Mana', 19324537, 0.945, 'Q1', 51, 236, 8284, 2027, 328, '2', '2004-2020', 'Computer Networks and Communications (Q1); Electrical and Electronic Engineering (Q1)'), (4662, 'Inflammopharmacology', 9254692, 0.945, 'Q2', 50, 122, 7731, 1308, 303, '19', '1991-2020', 'Pharmacology (Q2); Pharmacology (medical) (Q2); Immunology (Q3)'), (4663, 'Pathogens and Global Health', 20477724, 0.945, 'Q1', 71, 67, 2695, 420, 141, '3', '2012-2020', 'Public Health, Environmental and Occupational Health (Q1); Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Microbiology (Q2); Parasitology (Q2)'), (4664, 'Annals of Glaciology', 2603055, 0.944, 'Q1', 82, 81, 4110, 287, 105, '3', '1980-1981, 1983-1986, 1988-2020', 'Earth-Surface Processes (Q1)'), (4665, 'Critical Reviews in Analytical Chemistry', 15476510, 0.944, 'Q1', 64, 135, 17819, 622, 112, '3', '1989-2020', 'Analytical Chemistry (Q1)'), (4666, 'Estuaries and Coasts', 15592731, 0.944, 'Q1', 105, 186, 12736, 1212, 462, '2', '1978-2001, 2006-2020', 'Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (4667, 'Journal of Marketing Management', 267257, 0.944, 'Q1', 66, 89, 7419, 817, 174, '3', '1985-1997, 2001, 2006, 2008-2020', 'Strategy and Management (Q1); Marketing (Q2)'), (4668, 'Neuroscience Letters', 18727972, 0.944, 'Q2', 170, 640, 27238, 5901, 2074, '42', '1975-2020', 'Neuroscience (miscellaneous) (Q2)'), (4669, 'SIAM Journal on Imaging Sciences', 19364954, 0.944, 'Q1', 71, 57, 2773, 1138, 252, '2', '2008-2020', 'Applied Mathematics (Q1); Mathematics (miscellaneous) (Q1)'), (4670, 'Sustainability: Science, Practice, and Policy', 15487733, 0.944, 'Q1', 23, 30, 1854, 88, 13, '2', '2009-2020', 'Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (4671, 'Annals of Pure and Applied Logic', 1680072, 0.943, 'Q1', 49, 50, 1385, 260, 191, '16', '1972, 1974, 1983-2021', 'Logic (Q1)'), (4672, 'Archives of Virology', 3048608, 0.943, 'Q2', 110, 386, 12313, 3251, 1326, '28', '1975-2020', 'Medicine (miscellaneous) (Q2); Virology (Q3)'), (4673, 'Career Development and Transition for Excepti', 21651442, 0.943, 'Q1', 11, 29, 1114, 159, 77, '2', '2015-2020', 'Education (Q1); Organizational Behavior and Human Resource Management (Q1)'), (4674, 'Chemico-Biological Interactions', 92797, 0.943, 'Q2', 120, 282, 15415, 4486, 950, '42', '1969-2020', 'Medicine (miscellaneous) (Q2); Toxicology (Q2)'), (4675, 'Accounting Forum', 1559982, 0.942, 'Q1', 45, 21, 1588, 228, 68, '3', '2004-2020', 'Accounting (Q1); Finance (Q1)'), (4676, 'Anaesthesia, critical care &amp; pain medicin', 23525568, 0.942, 'Q1', 38, 192, 4565, 590, 179, '16', '2015-2020', 'Anesthesiology and Pain Medicine (Q1); Critical Care and Intensive Care Medicine (Q1); Medicine (miscellaneous) (Q2)'), (4677, 'Conservation Physiology', 20511434, 0.942, 'Q1', 37, 136, 9826, 698, 241, '2', '2013-2020', 'Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Ecological Modeling (Q2); Physiology (Q2)'), (4678, 'Egyptian Journal of Petroleum', 11100621, 0.942, 'Q1', 38, 33, 1284, 1586, 288, '32', '2011-2020', 'Fuel Technology (Q1); Organic Chemistry (Q1); Process Chemistry and Technology (Q1); Catalysis (Q2); Geochemistry and Petrology (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (4679, 'International Journal of Agricultural Sustain', 14735903, 0.942, 'Q1', 39, 50, 2890, 378, 112, '3', '2003-2020', 'Agronomy and Crop Science (Q1); Economics and Econometrics (Q2)'), (4680, 'Journal of Pragmatics', 3782166, 0.942, 'Q1', 93, 170, 9387, 837, 460, '16', '1977-2020', 'Artificial Intelligence (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4681, 'Molecular BioSystems', 1742206, 0.942, 'Q1', 96, 0, 0, 808, 237, '3', '2005-2017', 'Biotechnology (Q1); Molecular Biology (Q3)'), (4682, 'Surgical Oncology Clinics of North America', 10553207, 0.942, 'Q1', 58, 61, 2954, 438, 149, '3', '1995-2020', 'Surgery (Q1); Oncology (Q2)'), (4683, 'Aquaculture Nutrition', 13535773, 0.941, 'Q1', 79, 189, 11643, 1615, 465, '3', '1995-2020', 'Aquatic Science (Q1)'), (4684, 'Current Cardiology Reports', 15233782, 0.941, 'Q2', 49, 174, 10369, 1313, 438, '2', '1999-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (4685, 'Endocrine Connections', 20493614, 0.941, 'Q2', 23, 149, 7104, 1473, 480, '3', '2014-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (4686, 'Journal for the Scientific Study of Religion', 218294, 0.941, 'Q1', 71, 41, 2378, 287, 151, '2', '1977, 1979-1980, 1983-1984, 1987-1988, 1996-2001, 2005-2020', 'Religious Studies (Q1)'), (4687, 'Journal of Intellectual Disability Research', 9642633, 0.941, 'Q1', 104, 91, 3530, 751, 289, '3', '1957-1960, 1962-2020', 'Arts and Humanities (miscellaneous) (Q1); Rehabilitation (Q1); Neurology (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)'), (4688, 'Pathobiology', 14230291, 0.941, 'Q1', 53, 41, 1705, 313, 103, '19', '1938-2020', 'Pathology and Forensic Medicine (Q1); Medicine (miscellaneous) (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (4689, 'Water Resources Management', 9204741, 0.941, 'Q1', 100, 284, 10619, 3298, 896, '16', '1987-2020', 'Civil and Structural Engineering (Q1); Water Science and Technology (Q1)'), (4690, 'Clinical Lymphoma, Myeloma and Leukemia', 21522650, 0.94, 'Q2', 52, 286, 8377, 1251, 507, '2', '2010-2020', 'Hematology (Q2); Oncology (Q2); Cancer Research (Q3)'), (4691, 'Current Opinion in Allergy and Clinical Immun', 14736322, 0.94, 'Q2', 84, 76, 802, 745, 226, '2', '2001-2020', 'Immunology and Allergy (Q2); Immunology (Q3)'), (4692, 'IEEE Microwave and Wireless Components Letter', 15311309, 0.94, 'Q1', 123, 317, 4685, 3323, 1004, '2', '1999-2020', 'Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1)'), (4693, 'Journal of Clinical Nursing', 13652702, 0.94, 'Q1', 102, 475, 19780, 4286, 1416, '3', '1992-2020', 'Nursing (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (4694, 'Journal of Elections, Public Opinion and Part', 17457289, 0.94, 'Q1', 23, 74, 3534, 186, 96, '2', '2010-2020', 'Sociology and Political Science (Q1)'), (4695, 'Journal of Wildlife Management', 19372817, 0.94, 'Q1', 111, 146, 9510, 971, 419, '2', '1973-1974, 1976-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (4696, 'Mechatronics', 9574158, 0.94, 'Q1', 90, 82, 3185, 1608, 361, '3', '1991-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1)'), (4697, 'Pacific Symposium on Biocomputing. Pacific Sy', 23356936, 0.94, 'Q1', 73, 69, 2017, 410, 162, '37', '1996-2020', 'Computational Theory and Mathematics (Q1); Biomedical Engineering (Q2)'), (4698, 'Philosophy and Technology', 22105433, 0.94, 'Q1', 27, 73, 3709, 573, 98, '16', '2011-2020', 'History and Philosophy of Science (Q1); Philosophy (Q1)'), (4699, 'Colloids and Surfaces B: Biointerfaces', 9277765, 0.939, 'Q1', 156, 701, 35331, 11997, 2351, '16', '1993-2020', 'Biotechnology (Q1); Physical and Theoretical Chemistry (Q1); Surfaces and Interfaces (Q1); Colloid and Surface Chemistry (Q2); Medicine (miscellaneous) (Q2)'), (4700, 'Granular Matter', 14347636, 0.939, 'Q1', 64, 91, 4082, 932, 277, '2', '1998-2020', 'Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (4701, 'Human Performance', 8959285, 0.939, 'Q2', 72, 21, 1617, 110, 41, '2', '1988-2020', 'Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2); Psychology (miscellaneous) (Q2)'), (4702, 'Hydrogeology Journal', 14312174, 0.939, 'Q1', 98, 181, 10344, 1772, 544, '5', '1992, 1994-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Water Science and Technology (Q1)'), (4703, 'Hydrometallurgy', 304386, 0.939, 'Q1', 113, 291, 12385, 3379, 739, '16', '1975-2020', 'Industrial and Manufacturing Engineering (Q1); Materials Chemistry (Q1); Metals and Alloys (Q1)'), (4704, 'Platelets', 13691635, 0.939, 'Q2', 67, 238, 9231, 1168, 375, '3', '1990-2020', 'Hematology (Q2); Medicine (miscellaneous) (Q2)'), (4705, 'Proceedings of the Royal Society of Edinburgh', 14737124, 0.939, 'Q1', 58, 198, 5549, 292, 180, '3', '1975-2020', 'Mathematics (miscellaneous) (Q1)'), (4706, 'Stroke Research and Treatment', 20908105, 0.939, 'Q2', 34, 14, 512, 167, 50, '32', '2010-2020', 'Neurology (clinical) (Q2)'), (4707, 'Advanced Engineering Materials', 14381656, 0.938, 'Q1', 114, 431, 22306, 4123, 1068, '5', '1999-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (4708, 'Bioscience Reports', 1448463, 0.938, 'Q1', 77, 806, 31284, 5818, 1602, '3', '1981-2020', 'Biophysics (Q1); Biochemistry (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (4709, 'Child Neuropsychology', 17444136, 0.938, 'Q1', 72, 62, 4031, 475, 178, '3', '1995-2020', 'Pediatrics, Perinatology and Child Health (Q1); Developmental and Educational Psychology (Q2); Neuropsychology and Physiological Psychology (Q2)'), (4710, 'International Journal for Numerical Methods i', 10970363, 0.938, 'Q1', 112, 113, 5072, 803, 291, '3', '1981-2020', 'Applied Mathematics (Q1); Computational Mechanics (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (4711, 'Journal of Mental Health Research in Intellec', 19315872, 0.938, 'Q2', 22, 22, 1062, 117, 49, '3', '2008-2020', 'Psychiatry and Mental Health (Q2)'), (4712, 'Journal of Political Philosophy', 14679760, 0.938, 'Q1', 66, 39, 1061, 114, 73, '3', '1993-2020', 'Philosophy (Q1); Sociology and Political Science (Q1)'), (4713, 'Journal of Symplectic Geometry', 15275256, 0.938, 'Q2', 22, 46, 1237, 181, 109, '2', '2009-2020', 'Geometry and Topology (Q2)'), (4714, 'Clinical and Experimental Otorhinolaryngology', 19768710, 0.937, 'Q1', 27, 51, 1571, 420, 148, '13', '2009-2020', 'Otorhinolaryngology (Q1); Surgery (Q1)'), (4715, 'Current Opinion in Pulmonary Medicine', 15316971, 0.937, 'Q2', 75, 94, 1550, 692, 260, '2', '1995-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (4716, 'Frontiers of Environmental Science and Engine', 20952201, 0.937, 'Q1', 43, 111, 5170, 1211, 280, '2', '2012-2021', 'Environmental Science (miscellaneous) (Q1)'), (4717, 'International Journal of Physical Modelling i', 20426550, 0.937, 'Q1', 17, 27, 842, 112, 64, '3', '2011-2020', 'Geotechnical Engineering and Engineering Geology (Q1)'), (4718, 'Journal of Pediatric Surgery', 223468, 0.937, 'Q1', 126, 663, 16522, 3394, 1339, '3', '1966-2020', 'Pediatrics, Perinatology and Child Health (Q1); Surgery (Q1); Medicine (miscellaneous) (Q2)'), (4719, 'Journal of Systematic Palaeontology', 14780941, 0.937, 'Q1', 47, 71, 6227, 488, 200, '3', '2003-2020', 'Paleontology (Q1)'), (4720, 'Papers in Regional Science', 14355957, 0.937, 'Q1', 64, 95, 6400, 668, 233, '2', '1955-2020', 'Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (4721, 'Sociological Forum', 15737861, 0.937, 'Q1', 61, 70, 3755, 328, 164, '2', '1986-2020', 'Sociology and Political Science (Q1)'), (4722, 'Veterinary Quarterly', 1652176, 0.937, 'Q1', 46, 32, 2529, 172, 54, '3', '1979, 1982-2007, 2011-2020', 'Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (4723, 'Biology Open', 20466390, 0.936, 'Q1', 41, 173, 7243, 1443, 640, '3', '2012-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (4724, 'Ceramics International', 2728842, 0.936, 'Q1', 110, 3503, 151439, 38493, 8867, '3', '1981-2020', 'Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1); Process Chemistry and Technology (Q2)'), (4725, 'Computers and Geosciences', 983004, 0.936, 'Q1', 123, 143, 6497, 1923, 491, '3', '1975-2020', 'Computers in Earth Sciences (Q1); Information Systems (Q1)'), (4726, 'Journal of Computing in Civil Engineering', 8873801, 0.936, 'Q1', 73, 72, 3811, 1137, 233, '2', '1987-2020', 'Civil and Structural Engineering (Q1); Computer Science Applications (Q1)'), (4727, 'Journal of Molecular Neuroscience', 8958696, 0.936, 'Q2', 86, 262, 11578, 1710, 523, '2', '1989-2020', 'Medicine (miscellaneous) (Q2); Cellular and Molecular Neuroscience (Q3)'), (4728, 'Liver Research', 25425684, 0.936, 'Q2', 11, 31, 2182, 275, 83, '1', '2017-2020', 'Gastroenterology (Q2); Hepatology (Q2)'), (4729, 'North American Actuarial Journal', 10920277, 0.936, 'Q2', 45, 71, 2846, 164, 98, '3', '1997-2020', 'Economics and Econometrics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (4730, 'Organisms Diversity and Evolution', 14396092, 0.936, 'Q1', 47, 49, 3200, 283, 120, '5', '2001-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (4731, 'Animal Biotelemetry', 20503385, 0.935, 'Q1', 22, 33, 1559, 197, 69, '3', '2013-2020', 'Animal Science and Zoology (Q1); Computer Networks and Communications (Q1); Instrumentation (Q1); Signal Processing (Q1)'), (4732, 'Artificial Cells, Nanomedicine and Biotechnol', 2169141, 0.935, 'Q1', 46, 162, 4956, 6274, 1221, '2', '2013-2020', 'Biotechnology (Q1); Pharmaceutical Science (Q1); Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)'), (4733, 'BMC Gastroenterology', 1471230, 0.935, 'Q2', 75, 412, 12444, 1701, 584, '3', '2001-2020', 'Gastroenterology (Q2); Medicine (miscellaneous) (Q2)'), (4734, 'Cliometrica', 18632513, 0.935, 'Q1', 16, 24, 1953, 90, 46, '5', '2007-2020', 'History (Q1); Economics and Econometrics (Q2)'), (4735, 'Dementia', 17412684, 0.935, 'Q1', 51, 264, 9911, 986, 318, '3', '2002-2020', 'History (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Medicine (miscellaneous) (Q2)'), (4736, 'Economic and Labour Relations Review', 10353046, 0.935, 'Q2', 20, 33, 1724, 200, 94, '2', '1990-2020', 'Economics and Econometrics (Q2); Organizational Behavior and Human Resource Management (Q2)'), (4737, 'Geological Magazine', 14695081, 0.935, 'Q1', 83, 163, 14384, 813, 300, '3', '1864-2020', 'Geology (Q1)'), (4738, 'Human Resource Development Review', 15526712, 0.935, 'Q2', 48, 18, 1470, 206, 49, '2', '2002-2020', 'Organizational Behavior and Human Resource Management (Q2)'), (4739, 'Journal of Child and Adolescent Psychopharmac', 10445463, 0.935, 'Q1', 84, 91, 2637, 722, 287, '2', '1994-2020', 'Pediatrics, Perinatology and Child Health (Q1); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2)'), (4740, 'Journal of Parenteral and Enteral Nutrition', 19412444, 0.935, 'Q2', 98, 303, 10287, 1557, 410, '2', '1977-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (4741, 'Theoretical and Applied Climatology', 14344483, 0.935, 'Q2', 95, 441, 22908, 4201, 1302, '28', '1986-2020', 'Atmospheric Science (Q2)'), (4742, 'Topics in antiviral medicine', 21615861, 0.935, 'Q2', 43, 8, 17, 133, 49, '2', '2011-2020', 'Infectious Diseases (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2); Virology (Q3)'), (4743, 'Current Medicinal Chemistry', 9298673, 0.934, 'Q1', 174, 383, 47182, 4083, 959, '52', '1994-2020', 'Drug Discovery (Q1); Organic Chemistry (Q1); Biochemistry (Q2); Molecular Medicine (Q2); Pharmacology (Q2)'), (4744, 'Flexible Services and Manufacturing Journal', 19366590, 0.934, 'Q1', 46, 53, 2096, 296, 93, '2', '2006, 2008-2020', 'Industrial and Manufacturing Engineering (Q1); Management Science and Operations Research (Q1)'), (4745, 'Foot and Ankle Clinics', 15581934, 0.934, 'Q1', 56, 58, 2278, 323, 151, '3', '2000-2020', 'Surgery (Q1); Orthopedics and Sports Medicine (Q2)'), (4746, 'Gastroenterology Report', 20520034, 0.934, 'Q2', 26, 73, 2541, 501, 159, '3', '2014-2020', 'Gastroenterology (Q2)'), (4747, 'Japanese Journal of Ophthalmology', 215155, 0.934, 'Q2', 56, 81, 2388, 487, 202, '6', '1973-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q2)'), (4748, 'Journal of Higher Education Policy and Manage', 14699508, 0.934, 'Q1', 42, 57, 2731, 290, 122, '3', '2003-2020', 'Education (Q1); Public Administration (Q1)'), (4749, 'Neurogenetics', 13646753, 0.934, 'Q2', 61, 33, 1095, 222, 82, '5', '1997-2020', 'Genetics (Q2); Cellular and Molecular Neuroscience (Q3); Genetics (clinical) (Q3)'), (4750, 'Pesticide Biochemistry and Physiology', 10959939, 0.934, 'Q1', 84, 215, 11300, 1769, 480, '2', '1971-2020', 'Agronomy and Crop Science (Q1); Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q2)'), (4751, 'Scandinavian Journal of Immunology', 3009475, 0.934, 'Q2', 88, 136, 8002, 805, 248, '3', '1972-2020', 'Medicine (miscellaneous) (Q2); Immunology (Q3)'), (4752, 'Cell Biochemistry and Function', 2636484, 0.933, 'Q2', 61, 128, 5269, 564, 168, '3', '1983-2020', 'Biochemistry (Q2); Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)'), (4753, 'Ibis', 1474919, 0.933, 'Q1', 80, 115, 7162, 524, 240, '3', '1859-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (4754, 'Integrative Medicine Insights', 11773936, 0.933, 'Q1', 12, 0, 0, 28, 4, '41', '2008-2018', 'Complementary and Alternative Medicine (Q1)'), (4755, 'International Urogynecology Journal', 9373462, 0.933, 'Q1', 92, 468, 10366, 1785, 750, '3', '1990-2020', 'Urology (Q1); Obstetrics and Gynecology (Q2)'), (4756, 'Nutrition Bulletin', 14673010, 0.933, 'Q2', 40, 45, 2845, 423, 90, '3', '1968-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (4757, 'Perspectives on Behavior Science', 25208969, 0.933, 'Q1', 36, 41, 2850, 244, 87, '19', '2018-2020', 'Social Psychology (Q1); Clinical Psychology (Q2); Experimental and Cognitive Psychology (Q2)'), (4758, 'Systematic and Applied Microbiology', 16180984, 0.933, 'Q1', 99, 76, 4137, 686, 191, '5', '1983-2020', 'Applied Microbiology and Biotechnology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Microbiology (Q2)'), (4759, 'Zoological research', 20958137, 0.933, 'Q1', 19, 85, 4121, 467, 113, '1', '2010-2020', 'Animal Science and Zoology (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Nature and Landscape Conservation (Q1)'), (4760, 'Biotechnology Reports', 2215017, 0.932, 'Q1', 36, 168, 8877, 1277, 215, '16', '2014-2020', 'Applied Microbiology and Biotechnology (Q1); Biotechnology (Q1)'), (4761, 'Cell Biology International', 10958355, 0.932, 'Q2', 77, 246, 10520, 1543, 463, '2', '1993-2020', 'Medicine (miscellaneous) (Q2); Cell Biology (Q3)'), (4762, 'Current Opinion in Toxicology', 24682020, 0.932, 'Q2', 21, 58, 2807, 697, 186, '16', '2016-2020', 'Toxicology (Q2)'), (4763, 'Educational Review', 14653397, 0.932, 'Q1', 48, 69, 4016, 363, 137, '3', '1948-2020', 'Education (Q1)'), (4764, 'Journal of Anatomy', 14697580, 0.932, 'Q1', 118, 201, 11530, 1103, 449, '3', '1945-2020', 'Anatomy (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Histology (Q1); Developmental Biology (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (4765, 'Reviews in Mathematical Physics', 17936659, 0.932, 'Q2', 53, 48, 1960, 293, 122, '37', '1996-2020', 'Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q2)'), (4766, 'Arthroplasty Today', 23523441, 0.931, 'Q1', 14, 201, 5060, 486, 256, '2', '2015-2020', 'Surgery (Q1); Orthopedics and Sports Medicine (Q2)'), (4767, 'Biofuels, Bioproducts and Biorefining', 1932104, 0.931, 'Q2', 83, 84, 6639, 1100, 243, '3', '2007-2020', 'Bioengineering (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (4768, 'Clinical Diabetes', 8918929, 0.931, 'Q2', 37, 4, 5, 310, 75, '2', '2005-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (4769, 'International Journal of Refractory Metals an', 9580611, 0.931, 'Q1', 82, 225, 8248, 2864, 739, '16', '1982-2021', 'Ceramics and Composites (Q1); Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)'), (4770, 'Journal of Accounting Education', 7485751, 0.931, 'Q1', 35, 24, 831, 227, 69, '3', '1983-2020', 'Accounting (Q1); Education (Q1)'), (4771, 'Communication Education', 3634523, 0.93, 'Q1', 63, 63, 1909, 266, 76, '3', '1976-2020', 'Communication (Q1); Education (Q1); Language and Linguistics (Q1)'), (4772, 'Crisis', 2275910, 0.93, 'Q2', 55, 134, 3459, 488, 156, '2', '1985-2020', 'Psychiatry and Mental Health (Q2)'), (4773, 'Endocrine Practice', 1530891, 0.93, 'Q2', 87, 205, 4874, 1319, 426, '2', '2000-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2)'), (4774, 'Journal of Industrial Economics', 14676451, 0.93, 'Q1', 77, 26, 869, 85, 72, '3', '1978-1989, 1996-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Accounting (Q2); Economics and Econometrics (Q2)'), (4775, 'Marine Biology', 253162, 0.93, 'Q1', 119, 186, 12553, 1375, 557, '5', '1967-2020', 'Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (4776, 'Neural Regeneration Research', 18767958, 0.93, 'Q2', 38, 351, 16489, 3521, 990, '1', '2006-2021', 'Developmental Neuroscience (Q2)'), (4777, 'Neurophysiologie Clinique', 9877053, 0.93, 'Q2', 63, 58, 2512, 393, 109, '8', '1988-2020', 'Medicine (miscellaneous) (Q2); Neurology (Q2); Neurology (clinical) (Q2); Physiology (medical) (Q2)'), (4778, 'Chronic Respiratory Disease', 14799723, 0.929, 'Q2', 41, 34, 1021, 397, 148, '3', '2004-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (4779, 'IEEE Communications Letters', 10897798, 0.929, 'Q1', 148, 713, 9542, 9167, 1873, '2', '1997-2020', 'Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Modeling and Simulation (Q1)'), (4780, 'Journal of Minimally Invasive Gynecology', 15534669, 0.929, 'Q2', 79, 431, 7172, 1643, 720, '16', '2005-2020', 'Obstetrics and Gynecology (Q2)'), (4781, 'Journal of Molecular Liquids', 18733166, 0.929, 'Q1', 111, 2335, 127944, 29616, 5253, '16', '1983-2020', 'Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Spectr'), (4782, 'Journal of Motor Learning and Development', 23253215, 0.929, 'Q1', 12, 32, 1886, 257, 103, '2', '2017-2020', 'Biophysics (Q1); Cognitive Neuroscience (Q2); Experimental and Cognitive Psychology (Q2); Orthopedics and Sports Medicine (Q2)'), (4783, 'Neuroinformatics', 15392791, 0.929, 'Q1', 59, 48, 2329, 460, 98, '2', '2003-2020', 'Information Systems (Q1); Software (Q1); Neuroscience (miscellaneous) (Q3)'), (4784, 'ACS Combinatorial Science', 21568952, 0.928, 'Q1', 81, 94, 5069, 933, 246, '2', '2011-2020', 'Chemistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (4785, 'European Journal of Soil Biology', 11645563, 0.928, 'Q1', 72, 66, 3378, 551, 183, '8', '1993-2020', 'Insect Science (Q1); Soil Science (Q1); Microbiology (Q2)'), (4786, 'International Journal of Stress Management', 10725245, 0.928, 'Q1', 60, 29, 1435, 369, 109, '2', '1994-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Education (Q1); Applied Psychology (Q2); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (4787, 'Journal of Animal Science', 15253163, 0.928, 'Q1', 156, 416, 18451, 3707, 1458, '2', '1946-1951, 1961, 1965-2020', 'Animal Science and Zoology (Q1); Food Science (Q1); Genetics (Q2); Medicine (miscellaneous) (Q2)'), (4788, 'Journal of Mathematical Biology', 3036812, 0.928, 'Q1', 97, 128, 5330, 1157, 398, '5', '1974-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q1); Modeling and Simulation (Q1)'), (4789, 'Journal of Otolaryngology - Head and Neck Sur', 19160216, 0.928, 'Q1', 47, 79, 2167, 513, 213, '3', '2008-2020', 'Otorhinolaryngology (Q1); Surgery (Q1)'), (4790, 'Plant Pathology', 320862, 0.928, 'Q1', 85, 155, 6940, 1323, 499, '3', '1952-2020', 'Agronomy and Crop Science (Q1); Horticulture (Q1); Plant Science (Q1); Genetics (Q2)'), (4791, 'Research in Human Development', 15427617, 0.928, 'Q1', 24, 18, 1046, 136, 57, '2', '2010-2020', 'Social Psychology (Q1); Developmental and Educational Psychology (Q2)'), (4792, 'Rheumatic Disease Clinics of North America', 889857, 0.928, 'Q2', 87, 62, 3155, 477, 134, '3', '1987-2020', 'Rheumatology (Q2)'), (4793, 'Clinical Obstetrics and Gynecology', 99201, 0.927, 'Q2', 75, 93, 3440, 486, 232, '2', '1958-1963, 1965-2020', 'Obstetrics and Gynecology (Q2)'), (4794, 'Developmental and Comparative Immunology', 18790089, 0.927, 'Q2', 110, 246, 14558, 2648, 740, '3', '1977-2021', 'Developmental Biology (Q2); Immunology (Q3)'), (4795, 'European Journal of Psychological Assessment', 21512426, 0.927, 'Q2', 62, 131, 5709, 492, 192, '2', '1996-2020', 'Applied Psychology (Q2)'), (4796, 'PeerJ', 21678359, 0.927, 'Q1', 70, 2226, 128473, 16002, 5383, '2', '2013-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q3)'), (4797, 'Quaternary International', 10406182, 0.927, 'Q1', 106, 656, 53000, 4556, 1841, '3', '1989-2020', 'Earth-Surface Processes (Q1)'), (4798, 'Reproductive Sciences', 19337191, 0.927, 'Q2', 77, 283, 13689, 1506, 523, '2', '1997, 2002, 2007-2020', 'Obstetrics and Gynecology (Q2)'), (4799, 'Scandinavian Journal of Hospitality and Touri', 15022269, 0.927, 'Q1', 43, 33, 1896, 324, 76, '3', '2001-2020', 'Tourism, Leisure and Hospitality Management (Q1)'), (4800, 'Territory, Politics, Governance', 2162268, 0.927, 'Q1', 23, 105, 7530, 278, 91, '2', '2013-2020', 'Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (4801, 'Annals of Nutrition and Metabolism', 14219697, 0.926, 'Q2', 81, 74, 1923, 1168, 328, '19', '1959-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (4802, 'Annals of Pharmacotherapy', 10600280, 0.926, 'Q2', 113, 211, 6453, 1063, 386, '2', '1981, 1985, 1990-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)'), (4803, 'European Journal of Physical and Rehabilitati', 19739095, 0.926, 'Q1', 57, 123, 3852, 902, 312, '7', '2008-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1)'), (4804, 'International Journal of Artificial Intellige', 15604292, 0.926, 'Q1', 49, 41, 2851, 295, 66, '2', '2000, 2003-2020', 'Computational Theory and Mathematics (Q1); Education (Q1); E-learning (Q1)'), (4805, 'Lethaia', 241164, 0.926, 'Q1', 57, 55, 3968, 288, 128, '2', '1968-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1)'), (4806, 'Nanotechnology', 9574484, 0.926, 'Q1', 203, 1565, 75110, 12005, 3292, '3', '1990-2020', 'Chemistry (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Bioengineering (Q2); Nanos'), (4807, 'OECD Journal: Economic Studies', 19952848, 0.926, 'Q1', 16, 0, 0, 3, 1, '8', '2008-2011, 2014-2017', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1)'), (4808, 'Publius', 17477107, 0.926, 'Q1', 41, 25, 1328, 144, 69, '3', '1971-2020', 'Public Administration (Q1); Sociology and Political Science (Q1)'), (4809, 'World Archaeology', 14701375, 0.926, 'Q1', 66, 12, 837, 199, 134, '3', '1969-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1)'), (4810, 'Archaeological and Anthropological Sciences', 18669565, 0.925, 'Q1', 31, 280, 22838, 1312, 652, '5', '2009-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)'), (4811, 'Clinical Therapeutics', 1879114, 0.925, 'Q2', 134, 223, 9030, 1766, 587, '2', '1977-2020', 'Pharmacology (Q2); Pharmacology (medical) (Q2)'), (4812, 'Engineering Analysis with Boundary Elements', 9557997, 0.925, 'Q1', 73, 229, 9726, 2056, 666, '3', '1989-2020', 'Applied Mathematics (Q1); Computational Mathematics (Q1); Engineering (miscellaneous) (Q1); Analysis (Q2)'), (4813, 'Experimental Physiology', 1469445, 0.925, 'Q2', 101, 243, 9813, 1265, 485, '3', '1990-2020', 'Nutrition and Dietetics (Q2); Physiology (Q2); Physiology (medical) (Q2)'), (4814, 'Fisheries Research', 1657836, 0.925, 'Q1', 94, 275, 16015, 2103, 850, '16', '1981, 1983-2021', 'Aquatic Science (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (4815, 'Geochemical Transactions', 14674866, 0.925, 'Q2', 42, 7, 325, 102, 26, '3', '2000-2020', 'Geochemistry and Petrology (Q2)'), (4816, 'International Journal of Gynecological Pathol', 15387151, 0.925, 'Q1', 77, 123, 2787, 619, 250, '2', '1982-2020', 'Pathology and Forensic Medicine (Q1); Obstetrics and Gynecology (Q2)'), (4817, 'International Journal of Systematic and Evolu', 14665026, 0.925, 'Q1', 173, 831, 31226, 5938, 1979, '3', '2000-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Medicine (miscellaneous) (Q2); Microbiology (Q2)'), (4818, 'Journal of Nursing Management', 9660429, 0.925, 'Q1', 76, 307, 12008, 1271, 388, '3', '1993-2020', 'Leadership and Management (Q1)'), (4819, 'Journal of Sexual Medicine', 17436095, 0.925, 'Q1', 114, 286, 10766, 2020, 549, '2', '2004-2020', 'Urology (Q1); Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Obstetrics and Gynecology (Q2); Psychiatry and Mental Health (Q2); Reproductive Medicine (Q2)'), (4820, 'Journal of Traditional and Complementary Medi', 22254110, 0.925, 'Q1', 35, 85, 4203, 1008, 186, '16', '2011-2020', 'Complementary and Alternative Medicine (Q1)'), (4821, 'Optical Materials Express', 21593930, 0.925, 'Q1', 66, 304, 12187, 4487, 1268, '2', '2011-2020', 'Electronic, Optical and Magnetic Materials (Q1)'), (4822, 'Polymer Degradation and Stability', 1413910, 0.925, 'Q1', 161, 296, 13351, 4155, 884, '3', '1979-2020', 'Condensed Matter Physics (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1)'), (4823, 'Tropical Diseases, Travel Medicine and Vaccin', 20550936, 0.925, 'Q1', 11, 11, 404, 148, 55, '3', '2015-2019', 'Public Health, Environmental and Occupational Health (Q1); Infectious Diseases (Q2)'), (4824, 'Bulletin of Indonesian Economic Studies', 14727234, 0.924, 'Q1', 32, 12, 652, 103, 42, '3', '1965-2020', 'Development (Q1); Economics and Econometrics (Q2)'), (4825, 'Canadian Journal of Philosophy', 455091, 0.924, 'Q1', 26, 40, 1449, 131, 133, '3', '1971-2020', 'Philosophy (Q1)'), (4826, 'Clinica Chimica Acta', 98981, 0.924, 'Q2', 142, 555, 26479, 4130, 1202, '16', '1956-2020', 'Biochemistry (Q2); Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2)'), (4827, 'Computer Methods and Programs in Biomedicine', 1692607, 0.924, 'Q1', 102, 538, 23721, 4743, 753, '42', '1985-2020', 'Computer Science Applications (Q1); Software (Q1); Health Informatics (Q2)'), (4828, 'Critical Public Health', 9581596, 0.924, 'Q1', 46, 115, 5070, 493, 141, '3', '1990-1995, 1997-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (4829, 'Environmental Toxicology and Pharmacology', 13826689, 0.924, 'Q1', 82, 175, 9832, 2709, 581, '16', '1996-2020', 'Health, Toxicology and Mutagenesis (Q1); Medicine (miscellaneous) (Q2); Pharmacology (Q2); Toxicology (Q2)'), (4830, 'Macromolecular Bioscience', 16165195, 0.924, 'Q1', 105, 157, 9685, 1993, 491, '5', '2001-2020', 'Materials Chemistry (Q1); Polymers and Plastics (Q1); Bioengineering (Q2); Biomaterials (Q2); Biotechnology (Q2)'), (4831, 'Nurse Education in Practice', 18735223, 0.924, 'Q1', 47, 193, 6984, 1193, 433, '3', '2001-2020', 'Education (Q1); Nursing (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (4832, 'PS - Political Science and Politics', 10490965, 0.924, 'Q1', 61, 132, 2633, 532, 456, '3', '1968-2020', 'Sociology and Political Science (Q1)'), (4833, 'World Journal of Gastrointestinal Oncology', 19485204, 0.924, 'Q2', 26, 110, 4908, 647, 208, '2', '2017-2020', 'Gastroenterology (Q2); Oncology (Q2)'), (4834, 'CNS and Neurological Disorders - Drug Targets', 18715273, 0.923, 'Q2', 86, 65, 5920, 1063, 267, '52', '2006-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2); Neuroscience (miscellaneous) (Q3)'), (4835, 'Fungal Biology and Biotechnology', 20543085, 0.923, 'Q1', 13, 17, 1293, 227, 52, '3', '2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (4836, 'Housing Studies', 14661810, 0.923, 'Q1', 75, 182, 12509, 652, 192, '3', '1986-2020', 'Environmental Science (miscellaneous) (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)'), (4837, 'International Journal of Pavement Engineering', 1477268, 0.923, 'Q1', 46, 382, 14735, 1359, 400, '3', '2001, 2003-2020', 'Civil and Structural Engineering (Q1); Mechanics of Materials (Q1)'), (4838, 'International Review of Environmental and Res', 19321465, 0.923, 'Q1', 24, 10, 1041, 58, 28, '2', '2007-2020', 'Finance (Q1); Management, Monitoring, Policy and Law (Q1); Accounting (Q2); Economics and Econometrics (Q2)'), (4839, 'Management Decision', 251747, 0.923, 'Q1', 98, 177, 14028, 2348, 509, '3', '1967-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management Science and Operations Research (Q1)'), (4840, 'Neurotoxicity Research', 14763524, 0.923, 'Q2', 73, 185, 10854, 1469, 414, '2', '1999, 2001-2020', 'Toxicology (Q2); Neuroscience (miscellaneous) (Q3)'), (4841, 'Organic and Biomolecular Chemistry', 14770520, 0.923, 'Q1', 146, 1081, 58997, 11826, 3587, '3', '2003-2020', 'Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Biochemistry (Q2)'), (4842, 'Yeast', 10970061, 0.923, 'Q2', 102, 55, 2785, 450, 148, '3', '1985-2020', 'Applied Microbiology and Biotechnology (Q2); Biochemistry (Q2); Bioengineering (Q2); Biotechnology (Q2); Genetics (Q2); Medicine (miscellaneous) (Q2)'), (4843, 'COPD: Journal of Chronic Obstructive Pulmonar', 15412555, 0.922, 'Q2', 61, 104, 4005, 519, 217, '3', '2004-2020', 'Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)'), (4844, 'Joint Bone Spine', 11698446, 0.922, 'Q2', 80, 159, 3415, 1207, 322, '8', '2000-2020', 'Rheumatology (Q2)'), (4845, 'Protist', 16180941, 0.922, 'Q2', 75, 34, 1858, 316, 129, '5', '1998-2020', 'Microbiology (Q2)'), (4846, 'Quarterly Journal of Mathematics', 335606, 0.922, 'Q1', 35, 66, 1596, 215, 166, '3', '1930-2020', 'Mathematics (miscellaneous) (Q1)'), (4847, 'Anemia', 20901267, 0.921, 'Q2', 25, 24, 819, 85, 24, '32', '2010-2020', 'Hematology (Q2); Cell Biology (Q3)'), (4848, 'Brain Sciences', 20763425, 0.921, 'Q3', 33, 1017, 65191, 2666, 749, '19', '2011-2020', 'Neuroscience (miscellaneous) (Q3)'), (4849, 'Canadian Journal of Gastroenterology and Hepa', 22912797, 0.921, 'Q2', 65, 59, 2273, 740, 242, '32', '2014-2020', 'Gastroenterology (Q2); Hepatology (Q2); Medicine (miscellaneous) (Q2)'), (4850, 'Comparative Migration Studies', 2214594, 0.921, 'Q1', 17, 47, 2389, 257, 81, '19', '2013-2020', 'Demography (Q1); Geography, Planning and Development (Q1); Law (Q1); Sociology and Political Science (Q1); Statistics, Probability and Uncertainty (Q2)'), (4851, 'Constructive Approximation', 14320940, 0.921, 'Q1', 51, 50, 1339, 299, 121, '2', '1985-2020', 'Computational Mathematics (Q1); Mathematics (miscellaneous) (Q1); Analysis (Q2)'), (4852, 'Innate Immunity', 17534259, 0.921, 'Q2', 69, 76, 3194, 457, 165, '3', '1996-1997, 1999, 2008-2020', 'Infectious Diseases (Q2); Microbiology (Q2); Cell Biology (Q3); Immunology (Q3); Molecular Biology (Q3)'), (4853, 'International Journal of Educational Research', 8830355, 0.921, 'Q1', 63, 161, 9696, 797, 281, '3', '1986-2020', 'Education (Q1)'), (4854, 'Journal of Mathematical Logic', 2190613, 0.921, 'Q1', 15, 33, 966, 81, 36, '37', '2007-2020', 'Logic (Q1)'), (4855, 'Matrix Biology Plus', 25900285, 0.921, 'Q1', 5, 27, 2068, 58, 14, '16', '2019-2020', 'Biophysics (Q1); Biochemistry (Q2); Genetics (Q2); Histology (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (4856, 'Molecular Genetics and Genomics', 16174615, 0.921, 'Q2', 120, 119, 6590, 1067, 336, '5', '1994, 1996-2020', 'Genetics (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q3)'), (4857, 'Scoliosis and Spinal Disorders', 23971789, 0.921, 'Q2', 40, 0, 0, 178, 56, '3', '2016-2019', 'Orthopedics and Sports Medicine (Q2)'), (4858, 'Algae', 20930860, 0.92, 'Q1', 22, 30, 1508, 285, 77, '13', '2013-2020', 'Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (4859, 'Human gene therapy methods', 19466536, 0.92, 'Q2', 27, 0, 0, 232, 80, '2', '2012-2019', 'Applied Microbiology and Biotechnology (Q2); Genetics (Q2); Molecular Medicine (Q2); Pharmacology (Q2); Genetics (clinical) (Q3)'), (4860, 'IET Generation, Transmission and Distribution', 17518687, 0.92, 'Q1', 110, 666, 23221, 6439, 1539, '3', '2007-2020', 'Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (4861, 'Journal of Biomedical Optics', 15602281, 0.92, 'Q1', 141, 197, 6950, 2980, 930, '2', '1996-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1); Biomaterials (Q2); Biomedical Engineering (Q2)'), (4862, 'Journal of Clinical Pharmacology', 15524604, 0.92, 'Q2', 116, 201, 7730, 1452, 522, '2', '1973-2020', 'Pharmacology (Q2); Pharmacology (medical) (Q2)'), (4863, 'Journal of Elder Abuse and Neglect', 8946566, 0.92, 'Q1', 39, 30, 1236, 150, 61, '2', '1989-2020', 'Social Sciences (miscellaneous) (Q1); Geriatrics and Gerontology (Q2)'), (4864, 'Journal of Island and Coastal Archaeology', 15561828, 0.92, 'Q1', 30, 69, 5293, 193, 97, '3', '2006-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Ecology (Q1); History (Q1); Oceanography (Q1)'), (4865, 'Journal of Renal Nutrition', 15328503, 0.92, 'Q2', 54, 113, 4020, 624, 191, '3', '1991-1997, 2000-2001, 2003-2020', 'Medicine (miscellaneous) (Q2); Nephrology (Q2); Nutrition and Dietetics (Q2)'), (4866, 'Antiviral Chemistry and Chemotherapy', 20402066, 0.919, 'Q1', 51, 15, 711, 136, 32, '3', '1991-2015, 2017-2020', 'Drug Discovery (Q1); Medicine (miscellaneous) (Q2); Pharmacology (Q2); Virology (Q3)'), (4867, 'Australian Journal of Education', 49441, 0.919, 'Q1', 36, 24, 1046, 140, 53, '2', '1992-2020', 'Education (Q1)'), (4868, 'Educational Assessment, Evaluation and Accoun', 18748597, 0.919, 'Q1', 31, 30, 1610, 118, 50, '16', '2009-2020', 'Education (Q1); Organizational Behavior and Human Resource Management (Q2)'), (4869, 'Education and Information Technologies', 13602357, 0.919, 'Q1', 41, 317, 16234, 2047, 488, '2', '1996-2002, 2005-2020', 'Education (Q1); E-learning (Q1); Library and Information Sciences (Q1)'), (4870, 'Frontline Gastroenterology', 20414137, 0.919, 'Q2', 13, 134, 3591, 309, 140, '3', '2013-2020', 'Gastroenterology (Q2); Hepatology (Q2)'), (4871, 'Interactive Learning Environments', 10494820, 0.919, 'Q1', 44, 259, 12416, 1205, 351, '3', '1990, 1992-1994, 2004-2020', 'Computer Science Applications (Q1); Education (Q1); E-learning (Q1)'), (4872, 'International Journal of Adhesion and Adhesiv', 1437496, 0.919, 'Q1', 90, 202, 6744, 1858, 536, '3', '1980-2020', 'Chemical Engineering (miscellaneous) (Q1); Polymers and Plastics (Q1); Biomaterials (Q2)'), (4873, 'Journal of Esthetic and Restorative Dentistry', 17088240, 0.919, 'Q1', 60, 136, 5272, 604, 219, '2', '1988-2020', 'Dentistry (miscellaneous) (Q1)'), (4874, 'Metabolomics', 15733890, 0.919, 'Q2', 78, 124, 5993, 1749, 454, '2', '2005-2020', 'Biochemistry (Q2); Clinical Biochemistry (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (4875, 'Nanomaterials', 20794991, 0.919, 'Q1', 58, 2532, 155976, 16788, 3270, '19', '2014-2020', 'Chemical Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1)'), (4876, 'Plant Growth Regulation', 15735087, 0.919, 'Q1', 101, 123, 8161, 1108, 355, '16', '1967, 1982, 1984-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1); Physiology (Q2)'), (4877, 'Progress in Organic Coatings', 330655, 0.919, 'Q1', 108, 464, 22180, 6192, 1258, '16', '1972-2020', 'Chemical Engineering (miscellaneous) (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Surfaces, Coatings and Films (Q1)'), (4878, 'Behavioral Neuroscience', 19390084, 0.918, 'Q2', 140, 45, 2079, 329, 166, '2', '1983-2020', 'Behavioral Neuroscience (Q2)'), (4879, 'Clinical Transplantation', 13990012, 0.918, 'Q2', 76, 291, 8846, 1865, 792, '3', '1989-2020', 'Transplantation (Q2)'), (4880, 'EJNMMI Research', 2191219, 0.918, 'Q1', 38, 153, 5996, 1038, 319, '5', '2011-2020', 'Radiology, Nuclear Medicine and Imaging (Q1)'), (4881, 'Hematological Oncology', 10991069, 0.918, 'Q2', 44, 125, 4462, 956, 322, '3', '1983-2020', 'Hematology (Q2); Medicine (miscellaneous) (Q2); Oncology (Q2); Cancer Research (Q3)'), (4882, 'Immunity, inflammation and disease', 20504527, 0.918, 'Q2', 18, 84, 3403, 321, 120, '3', '2013-2020', 'Immunology and Allergy (Q2); Immunology (Q3)'), (4883, 'International Journal of Remote Sensing', 13665901, 0.918, 'Q1', 174, 453, 21977, 4896, 1306, '3', '1980-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (4884, 'Journal of Family Communication', 15327698, 0.918, 'Q1', 21, 25, 1112, 134, 70, '2', '2010-2020', 'Communication (Q1); Social Psychology (Q1)'), (4885, 'Journal of Optics (United Kingdom)', 20408986, 0.918, 'Q1', 95, 290, 12277, 3020, 1013, '3', '2010-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (4886, 'Migration Studies', 20495838, 0.918, 'Q1', 7, 12, 704, 105, 59, '3', '2017-2019', 'Demography (Q1); Geography, Planning and Development (Q1)'), (4887, 'Neurourology and Urodynamics', 7332467, 0.918, 'Q1', 90, 324, 9220, 2377, 973, '2', '1982-2020', 'Urology (Q1); Neurology (clinical) (Q2)'), (4888, 'Physiological Reports', 2051817, 0.918, 'Q2', 39, 313, 14827, 2749, 1146, '2', '2013-2020', 'Physiology (Q2); Physiology (medical) (Q2)'), (4889, 'Proteome Science', 14775956, 0.918, 'Q2', 46, 12, 509, 135, 46, '3', '2003-2020', 'Biochemistry (Q2); Molecular Biology (Q3)'), (4890, 'Radiation Research', 337587, 0.918, 'Q1', 124, 117, 4532, 1172, 398, '2', '1954-2020', 'Biophysics (Q1); Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q1)'), (4891, 'Veterinary Journal', 15322971, 0.918, 'Q1', 107, 79, 3018, 1178, 449, '3', '1997-2020', 'Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1)'), (4892, '3D Printing and Additive Manufacturing', 23297662, 0.917, 'Q1', 26, 37, 1254, 487, 97, '2', '2014-2020', 'Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1)'), (4893, 'Advances in Group Theory and Applications', 24991287, 0.917, 'Q1', 4, 14, 272, 49, 42, '7', '2016-2020', 'Algebra and Number Theory (Q1)'), (4894, 'Bulletin of the New Zealand Society for Earth', 11749857, 0.917, 'Q1', 36, 18, 800, 146, 76, '41', '1970-1977, 1990-1992, 1996-2020', 'Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (4895, 'Functional Plant Biology', 14454408, 0.917, 'Q1', 116, 115, 7416, 917, 320, '11', '2002-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1)'), (4896, 'Healthcare', 22130772, 0.917, 'Q1', 19, 74, 1870, 259, 124, '16', '2013-2020', 'Health Policy (Q1)'), (4897, 'Journal of Global Antimicrobial Resistance', 22137173, 0.917, 'Q2', 26, 403, 10599, 1818, 463, '3', '2013-2020', 'Immunology and Allergy (Q2); Microbiology (Q2); Microbiology (medical) (Q2); Immunology (Q3)'), (4898, 'Journal of Water Resources Planning and Manag', 7339496, 0.917, 'Q1', 99, 174, 8272, 1264, 373, '2', '1980-2020', 'Civil and Structural Engineering (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Water Science and Technology (Q1)'), (4899, 'CoDesign', 15710882, 0.916, 'Q1', 25, 36, 1499, 192, 71, '3', '2010-2020', 'Architecture (Q1); Computer Graphics and Computer-Aided Design (Q1); Visual Arts and Performing Arts (Q1)'), (4900, 'Gene', 18790038, 0.916, 'Q2', 177, 659, 31562, 8230, 2392, '16', '1976-2021', 'Genetics (Q2); Medicine (miscellaneous) (Q2)'), (4901, 'IEEE/ACM Transactions on Audio Speech and Lan', 23299304, 0.916, 'Q1', 56, 245, 12277, 4218, 560, '2', '2014-2020', 'Acoustics and Ultrasonics (Q1); Computational Mathematics (Q1); Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1); Media Technology (Q1); Signal P'), (4902, 'IEEE Transactions on Education', 189359, 0.916, 'Q1', 68, 66, 1186, 391, 107, '2', '1963-2020', 'Education (Q1); Electrical and Electronic Engineering (Q1)'), (4903, 'Journal of Enzyme Inhibition and Medicinal Ch', 14756374, 0.916, 'Q2', 75, 185, 9396, 2414, 471, '3', '1985-2020', 'Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2)'), (4904, 'Journal of Flow Chemistry', 20630212, 0.916, 'Q1', 25, 68, 2850, 274, 68, '50', '2011-2020', 'Chemistry (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1); Organic Chemistry (Q1)'), (4905, 'Journal of Public Health', 17413850, 0.916, 'Q1', 82, 201, 5897, 1047, 487, '3', '1980-2020', 'Public Health, Environmental and Occupational Health (Q1); Medicine (miscellaneous) (Q2)'), (4906, 'Ocean and Coastal Management', 9645691, 0.916, 'Q1', 84, 281, 19431, 3103, 878, '3', '1992-2020', 'Aquatic Science (Q1); Management, Monitoring, Policy and Law (Q1); Oceanography (Q1)'), (4907, 'Brain and Behavior', 21623279, 0.915, 'Q2', 41, 395, 18331, 2255, 829, '2', '2011-2020', 'Behavioral Neuroscience (Q2)'), (4908, 'EPJ Data Science', 21931127, 0.915, 'Q1', 34, 35, 1768, 689, 114, '2', '2012-2020', 'Computer Science Applications (Q1); Modeling and Simulation (Q1); Computational Mathematics (Q2)'), (4909, 'Journal of Zoology', 9528369, 0.915, 'Q1', 96, 101, 6397, 623, 296, '2', '1830, 1833-1835, 1837-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (4910, 'Letters in Mathematical Physics', 3779017, 0.915, 'Q2', 62, 126, 3881, 825, 310, '16', '1975-2020', 'Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q2)'), (4911, 'Mycologia', 275514, 0.915, 'Q1', 110, 83, 4595, 563, 238, '3', '1945-1949, 1960, 1965-1980, 1982, 1985, 1988-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Genetics (Q2); Medicine (miscellaneous) (Q2); Physiology (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (4912, 'ACM Transactions on Intelligent Systems and T', 21576912, 0.914, 'Q1', 63, 70, 4144, 1489, 192, '2', '2010-2020', 'Artificial Intelligence (Q1); Theoretical Computer Science (Q1)'), (4913, 'Archives of Public Health', 20493258, 0.914, 'Q1', 28, 124, 4833, 532, 188, '3', '1996-2006, 2008-2020', 'Public Health, Environmental and Occupational Health (Q1)'), (4914, 'Cerebellum and Ataxias', 20538871, 0.914, 'Q2', 15, 12, 493, 129, 48, '3', '2014-2020', 'Neurology (clinical) (Q2)'), (4915, 'Clinical Otolaryngology', 17494478, 0.914, 'Q1', 68, 155, 3256, 1165, 369, '3', '2005-2020', 'Otorhinolaryngology (Q1); Medicine (miscellaneous) (Q2)'), (4916, 'Criminology and Criminal Justice', 17488966, 0.914, 'Q1', 48, 72, 3604, 358, 122, '3', '2002-2003, 2006-2020', 'Law (Q1)'), (4917, 'European Journal of Cardiovascular Nursing', 14745151, 0.914, 'Q1', 50, 127, 3937, 771, 238, '2', '2002-2020', 'Advanced and Specialized Nursing (Q1); Medical and Surgical Nursing (Q1); Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (4918, 'Expert Review of Hematology', 17474086, 0.914, 'Q2', 38, 121, 9862, 824, 290, '3', '2008-2020', 'Hematology (Q2)'), (4919, 'Geologie en Mijnbouw/Netherlands Journal of G', 167746, 0.914, 'Q1', 45, 20, 1285, 131, 57, '16', '1970-1971, 1973-2020', 'Geology (Q1)'), (4920, 'Journal of Portfolio Management', 954918, 0.914, 'Q1', 50, 91, 2126, 283, 228, '2', '1995-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1); Accounting (Q2); Economics and Econometrics (Q2)'), (4921, 'Pacific Philosophical Quarterly', 2790750, 0.914, 'Q1', 32, 32, 1530, 161, 166, '2', '1996-2020', 'Philosophy (Q1)'), (4922, 'Weed Science', 431745, 0.914, 'Q1', 91, 70, 3270, 618, 254, '2', '1973-1974, 1976, 1979, 1981, 1983, 1989, 1993-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1)'), (4923, 'Applied Mathematics and Optimization', 954616, 0.913, 'Q1', 51, 155, 5256, 533, 205, '2', '1974-2020', 'Applied Mathematics (Q1); Control and Optimization (Q1)'), (4924, 'BMJ Open Sport and Exercise Medicine', 20557647, 0.913, 'Q1', 18, 123, 5122, 984, 350, '3', '2015-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2)'), (4925, 'Case Studies in Thermal Engineering', 2214157, 0.913, 'Q1', 37, 224, 7063, 1987, 400, '3', '2013-2020', 'Engineering (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1)'), (4926, 'Childhood Obesity', 21532176, 0.913, 'Q1', 38, 76, 3310, 580, 188, '2', '2010-2020', 'Pediatrics, Perinatology and Child Health (Q1); Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)'), (4927, 'Cognitive and Behavioral Practice', 1878187, 0.913, 'Q2', 59, 70, 3641, 408, 139, '2', '1994-2020', 'Clinical Psychology (Q2)'), (4928, 'Discovery medicine', 15396509, 0.913, 'Q2', 54, 0, 0, 241, 82, '2', '2006-2007, 2009-2018', 'Medicine (miscellaneous) (Q2)'), (4929, 'International Journal of Medical Sciences', 14491907, 0.913, 'Q2', 62, 363, 15403, 1984, 576, '11', '2005-2020', 'Medicine (miscellaneous) (Q2)'), (4930, 'Journal of Behavioral Finance', 15427579, 0.913, 'Q1', 20, 75, 3774, 210, 104, '3', '2011-2020', 'Finance (Q1); Experimental and Cognitive Psychology (Q2)'), (4931, 'Journal of Propulsion and Power', 15333876, 0.913, 'Q1', 101, 97, 2934, 958, 363, '2', '1985-2020', 'Aerospace Engineering (Q1); Fuel Technology (Q1); Mechanical Engineering (Q1); Space and Planetary Science (Q2)'), (4932, 'Journal of Sandwich Structures and Materials', 15307972, 0.913, 'Q1', 43, 208, 8114, 957, 222, '3', '1999-2020', 'Ceramics and Composites (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (4933, 'Macromolecular Materials and Engineering', 14387492, 0.913, 'Q1', 96, 202, 10428, 2408, 577, '5', '1989, 2000-2020', 'Chemical Engineering (miscellaneous) (Q1); Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)'), (4934, 'Mathematische Nachrichten', 15222616, 0.913, 'Q1', 50, 133, 3401, 806, 482, '5', '1948-2020', 'Mathematics (miscellaneous) (Q1)'), (4935, 'Neurosurgery Clinics of North America', 15581349, 0.913, 'Q1', 61, 67, 3536, 467, 169, '3', '1990-2020', 'Surgery (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)'), (4936, 'Quality and Reliability Engineering Internati', 7488017, 0.913, 'Q1', 62, 194, 7096, 1324, 486, '3', '1985-2020', 'Management Science and Operations Research (Q1); Safety, Risk, Reliability and Quality (Q1)'), (4937, 'World Journal of Hepatology', 19485182, 0.913, 'Q3', 55, 92, 4512, 1155, 305, '1', '2009-2020', 'Hepatology (Q3)'), (4938, 'Annals of Biomedical Engineering', 906964, 0.912, 'Q2', 132, 267, 12197, 2541, 599, '16', '1972-2020', 'Biomedical Engineering (Q2)'), (4939, 'Child and Adolescent Mental Health', 1475357, 0.912, 'Q1', 46, 80, 2038, 283, 112, '3', '2005-2020', 'Pediatrics, Perinatology and Child Health (Q1); Psychiatry and Mental Health (Q2)'), (4940, 'Child and Family Social Work', 13652206, 0.912, 'Q1', 57, 133, 5966, 791, 340, '3', '2002-2003, 2005-2020', 'Health (social science) (Q1); Social Work (Q1); Sociology and Political Science (Q1)'), (4941, 'Disease Markers', 2780240, 0.912, 'Q2', 66, 245, 9868, 2151, 649, '32', '1983-2020', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Genetics (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q3)'), (4942, 'Food Bioscience', 22124306, 0.912, 'Q1', 32, 245, 12757, 1281, 293, '3', '2013-2020', 'Food Science (Q1); Biochemistry (Q2)'), (4943, 'Forensic Science International', 3790738, 0.912, 'Q1', 120, 381, 14263, 3468, 1319, '42', '1978-2020', 'Pathology and Forensic Medicine (Q1)'), (4944, 'Genes to Cells', 13652443, 0.912, 'Q2', 115, 71, 2745, 423, 233, '3', '1996-2020', 'Genetics (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)'), (4945, 'Journal of Perinatology', 14765543, 0.912, 'Q1', 94, 318, 10316, 1657, 679, '3', '1987-2020', 'Pediatrics, Perinatology and Child Health (Q1); Obstetrics and Gynecology (Q2)'), (4946, 'Numerical Heat Transfer; Part A: Applications', 15210634, 0.912, 'Q1', 72, 112, 4037, 964, 329, '3', '1989-2020', 'Condensed Matter Physics (Q1); Numerical Analysis (Q2)'), (4947, 'Structural Concrete', 14644177, 0.912, 'Q1', 34, 265, 9155, 1164, 425, '2', '2001-2002, 2004-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)'), (4948, 'Aging clinical and experimental research', 17208319, 0.911, 'Q2', 71, 447, 15679, 2115, 608, '5', '1989-2020', 'Geriatrics and Gerontology (Q2); Aging (Q3)'), (4949, 'Applied Physics Express', 18820786, 0.911, 'Q1', 94, 470, 15613, 4211, 1292, '6', '2008-2020', 'Engineering (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (4950, 'International Communication Gazette', 17480485, 0.911, 'Q1', 36, 62, 3333, 267, 107, '3', '1961, 1966, 1996-1999, 2003-2004, 2006-2020', 'Communication (Q1); Sociology and Political Science (Q1)'), (4951, 'International Journal of Mental Health Nursin', 14458330, 0.911, 'Q1', 54, 123, 5366, 1061, 348, '3', '2002-2020', 'Psychiatric Mental Health (Q1)'), (4952, 'International Journal of Psychoanalysis', 17458315, 0.911, 'Q2', 64, 83, 2705, 138, 223, '3', '1945-1947, 1951-2020', 'Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (4953, 'Intestinal Research', 15989100, 0.911, 'Q2', 19, 49, 1747, 526, 187, '13', '2016-2020', 'Gastroenterology (Q2)'), (4954, 'Journal of Mechanical Design, Transactions Of', 10500472, 0.911, 'Q1', 120, 95, 4497, 1566, 403, '2', '1978-2020', 'Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (4955, 'Opuscula Philolichenum', 19417527, 0.911, 'Q1', 10, 4, 465, 55, 34, '2', '2013-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (4956, 'Biosensors', 20796374, 0.91, 'Q2', 38, 225, 9317, 1829, 330, '19', '2011-2020', 'Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2)'), (4957, 'Bird Conservation International', 9592709, 0.91, 'Q1', 42, 86, 5071, 342, 132, '3', '1991-2020', 'Animal Science and Zoology (Q1); Ecology (Q1); Nature and Landscape Conservation (Q1)'), (4958, 'BMC Nursing', 14726955, 0.91, 'Q1', 39, 121, 4990, 587, 190, '3', '2002-2020', 'Nursing (miscellaneous) (Q1)'), (4959, 'Crime, Media, Culture', 17416590, 0.91, 'Q1', 33, 42, 2828, 181, 71, '3', '2005-2020', 'Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Cultural Studies (Q1); Law (Q1)'), (4960, 'Design Studies', 142694, 0.91, 'Q1', 92, 33, 2255, 565, 142, '3', '1979-2020', 'Architecture (Q1); Artificial Intelligence (Q1); Arts and Humanities (miscellaneous) (Q1); Computer Science Applications (Q1); Engineering (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (4961, 'Energy Technology', 21944296, 0.91, 'Q1', 44, 445, 23177, 3042, 845, '5', '2013-2020', 'Energy (miscellaneous) (Q1)'), (4962, 'Journal of Cereal Science', 10959963, 0.91, 'Q1', 116, 224, 7217, 2191, 595, '2', '1983-2020', 'Food Science (Q1); Biochemistry (Q2)'), (4963, 'Journal of Contaminant Hydrology', 1697722, 0.91, 'Q1', 100, 111, 5849, 856, 258, '16', '1986-2020', 'Water Science and Technology (Q1); Environmental Chemistry (Q2)'), (4964, 'Journal of Intelligence', 20793200, 0.91, 'Q1', 15, 42, 2675, 246, 96, '19', '2013-2020', 'Education (Q1); Cognitive Neuroscience (Q2); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)'), (4965, 'Journal of Media Practice', 14682753, 0.91, 'Q1', 16, 0, 0, 45, 17, '3', '2000-2004, 2006-2017', 'Communication (Q1); Education (Q1)'), (4966, 'Journal of Medical Microbiology', 222615, 0.91, 'Q2', 117, 182, 7822, 1724, 668, '3', '1968-2020', 'Medicine (miscellaneous) (Q2); Microbiology (Q2); Microbiology (medical) (Q2)'), (4967, 'Administration and Policy in Mental Health an', 15733289, 0.909, 'Q1', 68, 103, 5173, 615, 237, '2', '1988-2020', 'Health Policy (Q1); Psychiatric Mental Health (Q1); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)'), (4968, 'APMIS', 9034641, 0.909, 'Q1', 88, 74, 3021, 1070, 318, '25', '1988-2020', 'Pathology and Forensic Medicine (Q1); Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2); Immunology and Allergy (Q3)'), (4969, 'Archives of Clinical Neuropsychology', 8876177, 0.909, 'Q2', 98, 45, 1968, 749, 288, '3', '1986-2020', 'Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Neuropsychology and Physiological Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4970, 'Archives of Suicide Research', 15436136, 0.909, 'Q2', 50, 185, 9356, 393, 154, '3', '1995-1999, 2002-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (4971, 'Evolutionary Ecology', 2697653, 0.909, 'Q1', 83, 66, 4518, 319, 150, '16', '1987-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (4972, 'Journal of Clinical Hypertension', 15246175, 0.909, 'Q2', 67, 338, 10009, 1654, 521, '2', '2001-2020', 'Cardiology and Cardiovascular Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (4973, 'Journal of Diversity in Higher Education', 19388926, 0.909, 'Q1', 33, 72, 2010, 254, 105, '2', '2008-2020', 'Education (Q1)'), (4974, 'Journal of Research in Interactive Marketing', 20407122, 0.909, 'Q2', 35, 22, 1959, 369, 79, '3', '2010-2020', 'Marketing (Q2)'), (4975, 'Journal of Vocational Education and Training', 17475090, 0.909, 'Q1', 34, 79, 4026, 236, 87, '3', '1996-2020', 'Education (Q1)'), (4976, 'Journal of Women, Politics and Policy', 1554477, 0.909, 'Q1', 30, 26, 1587, 157, 69, '2', '2005, 2007-2020', 'Gender Studies (Q1); Sociology and Political Science (Q1)'), (4977, 'Frontiers in Public Health', 22962565, 0.908, 'Q2', 41, 924, 42373, 2527, 795, '19', '2013-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (4978, 'Human Immunology', 1988859, 0.908, 'Q2', 95, 128, 3932, 904, 387, '2', '1980-2020', 'Medicine (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3)'), (4979, 'Israel Journal of Chemistry', 18695868, 0.908, 'Q1', 54, 128, 9291, 946, 339, '2', '1963-2020', 'Chemistry (miscellaneous) (Q1)'), (4980, 'Journal of Physics Condensed Matter', 9538984, 0.908, 'Q1', 228, 1082, 58939, 8845, 2544, '3', '1989-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (4981, 'Journal of Refugee Studies', 9516328, 0.908, 'Q1', 54, 28, 1466, 215, 113, '3', '1988-2020', 'Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (4982, 'Journal of Sport and Exercise Psychology', 8952779, 0.908, 'Q2', 97, 45, 2415, 307, 105, '2', '1996-2020', 'Applied Psychology (Q2); Sports Science (Q2)'), (4983, 'Neurocritical Care', 15560961, 0.908, 'Q1', 74, 325, 10268, 1163, 397, '2', '2004-2020', 'Critical Care and Intensive Care Medicine (Q1); Neurology (clinical) (Q2)'), (4984, 'Policing (Oxford)', 17524512, 0.908, 'Q1', 16, 36, 1431, 229, 109, '3', '2014-2019', 'Law (Q1)'), (4985, 'American Law and Economics Review', 14657260, 0.907, 'Q1', 32, 12, 542, 40, 40, '3', '2005-2020', 'Finance (Q1); Law (Q1)'), (4986, 'Bilingual Research Journal', 15235882, 0.907, 'Q1', 36, 21, 1124, 145, 76, '2', '1992-2006, 2009-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (4987, 'Diabetes Therapy', 18696961, 0.907, 'Q2', 33, 227, 8154, 1375, 456, '2', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (4988, 'Journal of Biomolecular Screening', 10870571, 0.907, 'Q1', 75, 0, 0, 39, 12, '2', '1996-2017', 'Analytical Chemistry (Q1); Biochemistry (Q2); Biotechnology (Q2); Drug Discovery (Q2); Molecular Medicine (Q2); Pharmacology (Q2)'), (4989, 'Journal of Computational Chemistry', 1096987, 0.907, 'Q1', 188, 235, 14925, 2655, 753, '2', '1980-2020', 'Chemistry (miscellaneous) (Q1); Computational Mathematics (Q2)'), (4990, 'Polymer', 323861, 0.907, 'Q1', 259, 858, 45045, 11033, 2683, '16', '1960-2020', 'Materials Chemistry (Q1); Organic Chemistry (Q1); Polymers and Plastics (Q1)'), (4991, 'Signal Processing', 1651684, 0.907, 'Q1', 136, 415, 16747, 5800, 1057, '16', '1979-2021', 'Computer Vision and Pattern Recognition (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Signal Processing (Q1); Software (Q1)'), (4992, 'Sleep and Breathing', 15221709, 0.907, 'Q1', 63, 328, 11089, 1165, 419, '5', '1996, 1999-2020', 'Otorhinolaryngology (Q1); Neurology (clinical) (Q2)'), (4993, 'World Journal of Stem Cells', 19480210, 0.907, 'Q2', 18, 105, 9197, 488, 103, '2', '2016-2020', 'Genetics (Q2); Histology (Q2); Cell Biology (Q3); Genetics (clinical) (Q3); Molecular Biology (Q3)'), (4994, 'Biological Journal of the Linnean Society', 244066, 0.906, 'Q1', 112, 179, 13300, 1218, 605, '3', '1969-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (4995, 'Endocrinology and Metabolism', 2093596, 0.906, 'Q2', 28, 80, 3270, 532, 158, '13', '2014-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2)'), (4996, 'European Journal of Ageing', 16139372, 0.906, 'Q1', 46, 64, 3528, 395, 118, '5', '2004-2020', 'Health (social science) (Q1); Geriatrics and Gerontology (Q2)'), (4997, 'Materials and Manufacturing Processes', 10426914, 0.906, 'Q1', 66, 202, 8513, 2506, 605, '2', '1989-2020', 'Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (4998, 'Optimization', 10294945, 0.906, 'Q1', 46, 263, 8305, 852, 361, '3', '1985-2020', 'Applied Mathematics (Q1); Control and Optimization (Q1); Management Science and Operations Research (Q1)'), (4999, 'Physical Therapy in Sport', 1466853, 0.906, 'Q1', 46, 169, 5880, 840, 347, '16', '2000-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)'), (5000, 'Qualitative Inquiry', 15527565, 0.906, 'Q1', 80, 221, 6571, 786, 313, '2', '1995-2020', 'Anthropology (Q1); Social Sciences (miscellaneous) (Q1)'), (5001, 'Scientia Horticulturae', 3044238, 0.906, 'Q1', 112, 743, 38514, 7620, 2093, '16', '1973-2021', 'Horticulture (Q1)'), (5002, 'Bioinspiration and Biomimetics', 17483190, 0.905, 'Q1', 69, 108, 5281, 1271, 312, '3', '2006-2020', 'Biophysics (Q1); Engineering (miscellaneous) (Q1); Biochemistry (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2); Molecular Medicine (Q2)'), (5003, 'Elementary School Journal', 15548279, 0.905, 'Q1', 77, 28, 1693, 175, 85, '2', '1996-2020', 'Education (Q1)'), (5004, 'Journal of Neuroradiology', 17730406, 0.905, 'Q1', 41, 109, 2588, 441, 159, '8', '1974, 1977-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Neurology (clinical) (Q2); Radiological and Ultrasound Technology (Q2)'), (5005, 'Mind and Language', 14680017, 0.905, 'Q1', 68, 86, 5160, 154, 83, '3', '1986-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1)'), (5006, 'Mutation Research - Fundamental and Molecular', 18792871, 0.905, 'Q1', 160, 33, 2530, 257, 103, '16', '1964-2020', 'Health, Toxicology and Mutagenesis (Q1); Genetics (Q2); Molecular Biology (Q3)'), (5007, 'BIT Numerical Mathematics', 15729125, 0.904, 'Q1', 59, 48, 1435, 301, 138, '16', '1992, 1995-2020', 'Applied Mathematics (Q1); Computer Networks and Communications (Q1); Software (Q1); Computational Mathematics (Q2)'), (5008, 'Cardiovascular Psychiatry and Neurology', 20900171, 0.904, 'Q2', 24, 0, 0, 9, 2, '32', '2010-2017', 'Cardiology and Cardiovascular Medicine (Q2); Neurology (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)'), (5009, 'Current Developments in Nutrition', 24752991, 0.904, 'Q1', 14, 139, 7731, 607, 188, '3', '2017-2020', 'Food Science (Q1); Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (5010, 'Educational Research', 131881, 0.904, 'Q1', 53, 30, 1486, 243, 86, '3', '1958-2020', 'Education (Q1)'), (5011, 'European Journal of Haematology', 16000609, 0.904, 'Q2', 84, 165, 5441, 1223, 469, '3', '1972, 1984-2020', 'Hematology (Q2); Medicine (miscellaneous) (Q2)'), (5012, 'Integrative Zoology', 17494877, 0.904, 'Q1', 34, 86, 4986, 373, 152, '3', '2008-2020', 'Animal Science and Zoology (Q1)'), (5013, 'Journal of Law and the Biosciences', 20539711, 0.904, 'Q1', 18, 49, 1918, 184, 66, '3', '2014, 2016-2019', 'Law (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (5014, 'Medical Journal of Australia', 25729, 0.904, 'Q2', 131, 394, 5946, 2123, 743, '11', '1945-2020', 'Medicine (miscellaneous) (Q2)'), (5015, 'Organic Process Research and Development', 1520586, 0.904, 'Q1', 109, 309, 12721, 2405, 729, '2', '1997-2020', 'Organic Chemistry (Q1); Physical and Theoretical Chemistry (Q1)'), (5016, 'Surface and Coatings Technology', 2578972, 0.904, 'Q1', 172, 1183, 52436, 14154, 3431, '16', '1986-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Chemistry (Q1); Surfaces and Interfaces (Q1); Surfaces, Coatings and Films (Q1)'), (5017, 'International Dairy Journal', 9586946, 0.903, 'Q1', 140, 199, 8579, 1559, 484, '16', '1991-2020', 'Food Science (Q1); Applied Microbiology and Biotechnology (Q2)'), (5018, 'Journal of Engineering Mechanics - ASCE', 7339399, 0.903, 'Q1', 125, 180, 7133, 1555, 511, '2', '1972, 1981-2020', 'Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (5019, 'Journal of Health Communication', 10810730, 0.903, 'Q1', 87, 100, 5156, 958, 315, '3', '1996-2020', 'Communication (Q1); Health (social science) (Q1); Library and Information Sciences (Q1); Public Health, Environmental and Occupational Health (Q2)'), (5020, 'Journal of the Association for Information Sc', 23301643, 0.903, 'Q1', 145, 132, 7604, 1587, 431, '3', '2014-2020', 'Computer Networks and Communications (Q1); Information Systems (Q1); Information Systems and Management (Q1); Library and Information Sciences (Q1)'), (5021, 'Language Assessment Quarterly', 15434303, 0.903, 'Q1', 23, 36, 1643, 113, 73, '2', '2009-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (5022, 'Clinical and Translational Oncology', 1699048, 0.902, 'Q2', 48, 280, 11170, 1585, 552, '7', '2000-2020', 'Medicine (miscellaneous) (Q2); Oncology (Q2); Cancer Research (Q3)'), (5023, 'Fuzzy Sets and Systems', 1650114, 0.902, 'Q1', 169, 333, 11642, 2262, 560, '16', '1978-2020', 'Artificial Intelligence (Q1); Logic (Q1)'), (5024, 'Journal of Clinical Biochemistry and Nutritio', 9120009, 0.902, 'Q2', 59, 75, 2785, 673, 208, '6', '1986-2020', 'Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (5025, 'Journal of Prosthodontics', 1059941, 0.902, 'Q1', 60, 148, 5031, 1330, 515, '3', '1992-2020', 'Dentistry (miscellaneous) (Q1)'), (5026, 'Pediatric Neurology', 18735150, 0.902, 'Q1', 92, 220, 6322, 1364, 539, '2', '1985-2020', 'Pediatrics, Perinatology and Child Health (Q1); Developmental Neuroscience (Q2); Neurology (Q2); Neurology (clinical) (Q2)'), (5027, 'Translational Gastroenterology and Hepatology', 2224476, 0.902, 'Q2', 13, 59, 3589, 548, 200, '1', '2016-2020', 'Gastroenterology (Q2); Hepatology (Q3)'), (5028, 'Burns', 3054179, 0.901, 'Q1', 101, 367, 10566, 1893, 660, '3', '1974-2020', 'Critical Care and Intensive Care Medicine (Q1); Emergency Medicine (Q1); Surgery (Q1); Medicine (miscellaneous) (Q2)'), (5029, 'Ethics and Information Technology', 13881957, 0.901, 'Q1', 52, 64, 3003, 364, 71, '16', '1999-2020', 'Computer Science Applications (Q1); Library and Information Sciences (Q1)'), (5030, 'Health Care Management Science', 13869620, 0.901, 'Q1', 57, 55, 2216, 388, 126, '16', '1998-2020', 'Health Professions (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (5031, 'International Journal of Gynecological Cancer', 15251438, 0.901, 'Q2', 87, 413, 8613, 2046, 738, '3', '1991-2020', 'Obstetrics and Gynecology (Q2); Oncology (Q2)'), (5032, 'Journal of Biotechnology', 1681656, 0.901, 'Q2', 156, 226, 11893, 2911, 793, '16', '1984-2020', 'Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)'), (5033, 'Journal of Water Process Engineering', 22147144, 0.901, 'Q1', 44, 648, 36659, 3597, 669, '3', '2014-2020', 'Safety, Risk, Reliability and Quality (Q1); Water Science and Technology (Q1); Biotechnology (Q2); Process Chemistry and Technology (Q2); Waste Management and Disposal (Q2)'), (5034, 'Magazine of Concrete Research', 1751763, 0.901, 'Q1', 57, 99, 3678, 640, 291, '3', '1949-1989, 1991-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q1)'), (5035, 'Numerical Methods for Partial Differential Eq', 10982426, 0.901, 'Q1', 61, 183, 7108, 865, 312, '2', '1985-2020', 'Applied Mathematics (Q1); Analysis (Q2); Computational Mathematics (Q2); Numerical Analysis (Q2)'), (5036, 'BMC International Health and Human Rights', 1472698, 0.9, 'Q2', 40, 30, 1621, 282, 107, '3', '2001-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (5037, 'Canadian Journal of Diabetes', 14992671, 0.9, 'Q2', 37, 146, 5299, 905, 315, '2', '2002-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2); Medicine (miscellaneous) (Q2)'), (5038, 'Comparative Politics', 104159, 0.9, 'Q1', 64, 28, 2096, 118, 82, '2', '1978, 1987-1989, 1996-2020', 'Sociology and Political Science (Q1)'), (5039, 'Journal of Dermatology', 3852407, 0.9, 'Q1', 65, 467, 6929, 2143, 595, '2', '1974-2020', 'Dermatology (Q1); Medicine (miscellaneous) (Q2)'), (5040, 'Journal of Photochemistry and Photobiology B:', 18732682, 0.9, 'Q1', 116, 308, 14878, 5639, 977, '16', '1987-2020', 'Biophysics (Q1); Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Radiological and Ultrasound Technology (Q2)'), (5041, 'Journal of the American Ceramic Society', 15512916, 0.9, 'Q1', 196, 699, 29928, 7285, 1933, '2', '1918-2020', 'Ceramics and Composites (Q1); Materials Chemistry (Q1)'), (5042, 'Plasma Sources Science and Technology', 13616595, 0.9, 'Q1', 108, 314, 16934, 2866, 705, '3', '1992-2020', 'Condensed Matter Physics (Q1)'), (5043, 'Algebra and Logic', 25232, 0.899, 'Q1', 26, 44, 581, 123, 132, '2', '1968-2020', 'Algebra and Number Theory (Q1); Logic (Q1); Analysis (Q2)'), (5044, 'European Journal of Combinatorics', 10959971, 0.899, 'Q1', 53, 126, 2538, 648, 402, '2', '1980-2021', 'Computational Theory and Mathematics (Q1); Discrete Mathematics and Combinatorics (Q1); Theoretical Computer Science (Q1); Geometry and Topology (Q2)'), (5045, 'FEMS Microbiology Letters', 15746968, 0.899, 'Q2', 151, 192, 8458, 2188, 688, '3', '1977-2020', 'Genetics (Q2); Microbiology (Q2); Molecular Biology (Q3)'), (5046, 'Geomatics, Natural Hazards and Risk', 19475713, 0.899, 'Q1', 34, 125, 5677, 1390, 308, '3', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)'), (5047, 'Journal of Analytical Atomic Spectrometry', 13645544, 0.899, 'Q1', 113, 275, 13408, 2631, 658, '3', '1971, 1977-1978, 1983-1984, 1986-2020', 'Analytical Chemistry (Q1); Spectroscopy (Q2)'), (5048, 'Journal of Insect Physiology', 221910, 0.899, 'Q1', 99, 96, 5378, 930, 395, '3', '1957-2020', 'Insect Science (Q1); Physiology (Q2)'), (5049, 'Journal of Political Ecology', 10730451, 0.899, 'Q1', 23, 55, 4815, 318, 143, '2', '2011-2020', 'Ecology (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (5050, 'Midwifery', 2666138, 0.899, 'Q1', 66, 176, 7428, 1516, 584, '2', '1985-2020', 'Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q2)'), (5051, 'Pain Practice', 15332500, 0.899, 'Q1', 58, 130, 4738, 896, 292, '3', '2004-2020', 'Anesthesiology and Pain Medicine (Q1)'), (5052, 'Seminars in Dialysis', 1525139, 0.899, 'Q2', 78, 74, 3513, 578, 182, '3', '1988-2020', 'Nephrology (Q2)'), (5053, 'Applied Numerical Mathematics', 1689274, 0.898, 'Q2', 78, 299, 10804, 1478, 538, '16', '1985-2021', 'Applied Mathematics (Q2); Computational Mathematics (Q2); Numerical Analysis (Q2)'), (5054, 'Cilia', 20462530, 0.898, 'Q3', 26, 0, 0, 35, 18, '3', '2012-2019', 'Cell Biology (Q3)'), (5055, 'Designs, Codes, and Cryptography', 9251022, 0.898, 'Q1', 61, 137, 3530, 1008, 470, '16', '1991-2020', 'Computer Science Applications (Q1); Discrete Mathematics and Combinatorics (Q1); Theoretical Computer Science (Q1); Applied Mathematics (Q2)'), (5056, 'International Journal of Web and Grid Service', 17411106, 0.898, 'Q1', 26, 21, 609, 443, 59, '3', '2005-2014, 2020', 'Computer Networks and Communications (Q1); Software (Q1)'), (5057, 'Journal of Interactive Advertising', 15252019, 0.898, 'Q1', 7, 22, 1332, 135, 28, '3', '2018-2020', 'Communication (Q1); Marketing (Q2)'), (5058, 'Journal of Science: Advanced Materials and De', 24682284, 0.898, 'Q1', 23, 63, 2929, 1037, 188, '16', '2016-2020', 'Ceramics and Composites (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Science (miscellaneous) (Q1); Biomaterials (Q2)'), (5059, 'Journal of Transport and Health', 22141405, 0.898, 'Q1', 30, 140, 6608, 1290, 402, '16', '2013-2020', 'Health Policy (Q1); Pollution (Q1); Safety Research (Q1); Safety, Risk, Reliability and Quality (Q1); Public Health, Environmental and Occupational Health (Q2); Transportation (Q2)'), (5060, 'Limnology and Oceanography: Methods', 15415856, 0.898, 'Q1', 72, 59, 2891, 502, 199, '2', '2003-2020', 'Ocean Engineering (Q1)'), (5061, 'Smart Materials and Structures', 9641726, 0.898, 'Q1', 154, 525, 22194, 5510, 1404, '3', '1992-2020', 'Atomic and Molecular Physics, and Optics (Q1); Civil and Structural Engineering (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q1);'), (5062, 'Cardiology Clinics', 7338651, 0.897, 'Q2', 53, 61, 3716, 401, 158, '3', '1983-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (5063, 'International Journal of Accounting Informati', 14670895, 0.897, 'Q1', 53, 21, 1375, 290, 50, '2', '2000-2020', 'Finance (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Accounting (Q2)'), (5064, 'Water Alternatives', 19650175, 0.897, 'Q1', 42, 41, 3364, 364, 153, '8', '2008-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Political Science and International Relations (Q1); Water Science and Technology (Q1)'), (5065, 'American Journal of Clinical Oncology: Cancer', 1537453, 0.896, 'Q2', 78, 145, 3824, 1024, 444, '2', '1982-2020', 'Oncology (Q2); Cancer Research (Q3)'), (5066, 'Behavioral and Brain Functions', 17449081, 0.896, 'Q2', 60, 10, 526, 140, 43, '3', '2005-2020', 'Behavioral Neuroscience (Q2); Cognitive Neuroscience (Q2); Medicine (miscellaneous) (Q2); Biological Psychiatry (Q3)'), (5067, 'Behavioral Medicine', 19404026, 0.896, 'Q2', 49, 70, 3831, 335, 116, '2', '1988-2020', 'Applied Psychology (Q2); Psychiatry and Mental Health (Q2)'), (5068, 'Environmental Communication', 17524040, 0.896, 'Q1', 30, 92, 5368, 580, 194, '3', '2010-2020', 'Environmental Science (miscellaneous) (Q1); Management, Monitoring, Policy and Law (Q1)'), (5069, 'European Journal of Medical Genetics', 18780849, 0.896, 'Q2', 54, 285, 7904, 1014, 406, '8', '2005-2020', 'Genetics (Q2); Medicine (miscellaneous) (Q2); Genetics (clinical) (Q3)'), (5070, 'International Journal of Hyperthermia', 2656736, 0.896, 'Q2', 81, 183, 8394, 2041, 515, '3', '1985-2020', 'Medicine (miscellaneous) (Q2); Physiology (Q2); Physiology (medical) (Q2); Radiological and Ultrasound Technology (Q2); Cancer Research (Q3)'), (5071, 'International Journal of Mobile Learning and ', 17467268, 0.896, 'Q1', 23, 30, 1473, 264, 54, '19', '2007, 2011-2014, 2018, 2020', 'Computer Science Applications (Q1); Education (Q1); E-learning (Q1)'), (5072, 'Journal of Contemporary China', 10670564, 0.896, 'Q1', 49, 89, 0, 531, 180, '3', '1992-2020', 'Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (5073, 'Journal of Creative Behavior', 21626057, 0.896, 'Q1', 55, 104, 6682, 343, 113, '2', '1967-2020', 'Education (Q1); Visual Arts and Performing Arts (Q1); Developmental and Educational Psychology (Q2)'), (5074, 'Management and Organization Review', 17408776, 0.896, 'Q1', 62, 46, 2520, 249, 95, '3', '2005-2020', 'Business and International Management (Q1); Strategy and Management (Q1)'), (5075, 'Physical Review E', 24700045, 0.896, 'Q1', 304, 2017, 95231, 22131, 6417, '2', '1993-2020', 'Condensed Matter Physics (Q1); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)'), (5076, 'Clinical and Molecular Allergy', 14767961, 0.895, 'Q3', 35, 24, 1116, 216, 56, '3', '2003-2013, 2015-2020', 'Immunology (Q3); Immunology and Allergy (Q3); Molecular Biology (Q3)'), (5077, 'Dianli Xitong Zidonghua/Automation of Electri', 10001026, 0.895, 'Q1', 88, 561, 15672, 6432, 1813, '1', '1996-2020', 'Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (5078, 'DNA and Cell Biology', 10445498, 0.895, 'Q2', 77, 220, 10148, 1434, 424, '2', '1990-2020', 'Genetics (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (5079, 'International Journal of Gynecology and Obste', 207292, 0.895, 'Q2', 97, 436, 9239, 2010, 845, '3', '1973-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (5080, 'Structural Design of Tall and Special Buildin', 15417808, 0.895, 'Q1', 43, 112, 4335, 788, 294, '3', '2003-2020', 'Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1)'), (5081, 'American Journal of Health Promotion', 8901171, 0.894, 'Q1', 91, 184, 4479, 990, 391, '2', '1986-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (5082, 'Amino Acids', 9394451, 0.894, 'Q1', 118, 124, 7117, 1560, 457, '28', '1991-2020', 'Organic Chemistry (Q1); Biochemistry (Q2); Clinical Biochemistry (Q2)'), (5083, 'Biosystems Engineering', 15375129, 0.894, 'Q1', 110, 236, 9794, 3137, 581, '2', '2002-2020', 'Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Control and Systems Engineering (Q1); Food Science (Q1); Soil Science (Q1)'), (5084, 'Economic and Industrial Democracy', 143831, 0.894, 'Q1', 40, 89, 5497, 312, 133, '3', '1980-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1); Organizational Behavior and Human Resource Management (Q2)'), (5085, 'European Journal of Internal Medicine', 9536205, 0.894, 'Q2', 71, 384, 8947, 1904, 557, '16', '1989-2020', 'Internal Medicine (Q2)'), (5086, 'Journal of Gay and Lesbian Mental Health', 19359705, 0.894, 'Q1', 31, 39, 1785, 181, 63, '2', '2008-2020', 'Health (social science) (Q1); Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (5087, 'Virtual Reality', 13594338, 0.894, 'Q1', 45, 90, 4547, 524, 78, '3', '1995, 1998-2000, 2002, 2004-2020', 'Computer Graphics and Computer-Aided Design (Q1); Human-Computer Interaction (Q1); Software (Q1)'), (5088, 'Continental Shelf Research', 2784343, 0.893, 'Q1', 111, 122, 7873, 1380, 496, '3', '1982-2020', 'Aquatic Science (Q1); Geology (Q1); Oceanography (Q1)'), (5089, 'Current Protocols in Pharmacology', 19348282, 0.893, 'Q2', 26, 11, 290, 109, 44, '2', '2001-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2)'), (5090, 'Developmental Neuroscience', 3785866, 0.893, 'Q2', 82, 22, 1422, 376, 119, '19', '1978-1983, 1985-2020', 'Developmental Neuroscience (Q2); Neurology (Q2)'), (5091, 'Human Cell', 17490774, 0.893, 'Q2', 37, 134, 4595, 455, 120, '5', '1988-2020', 'Medicine (miscellaneous) (Q2); Cancer Research (Q3); Cell Biology (Q3)'), (5092, 'International Journal of Primatology', 15738604, 0.893, 'Q1', 77, 55, 3482, 377, 155, '2', '1980-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (5093, 'Journal of Rehabilitation Medicine', 16512081, 0.893, 'Q1', 96, 131, 3217, 907, 332, '20', '1997, 2001-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Sports Science (Q2)'), (5094, 'Ophthalmic Research', 14230259, 0.893, 'Q2', 54, 65, 2138, 485, 183, '19', '1970-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q2); Cellular and Molecular Neuroscience (Q3); Sensory Systems (Q3)'), (5095, 'Pain Medicine', 15262375, 0.893, 'Q1', 97, 538, 17110, 2178, 741, '3', '2000-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)'), (5096, 'Primary Care - Clinics in Office Practice', 1558299, 0.893, 'Q2', 45, 60, 2273, 458, 154, '3', '1974-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)'), (5097, 'Ultrasound in Medicine and Biology', 1879291, 0.893, 'Q1', 135, 326, 13871, 2758, 858, '2', '1973-2020', 'Acoustics and Ultrasonics (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Biophysics (Q2); Radiological and Ultrasound Technology (Q2)'), (5098, 'Economic Systems', 9393625, 0.892, 'Q2', 39, 53, 2882, 423, 124, '16', '2001-2020', 'Economics and Econometrics (Q2)'), (5099, 'European Review of Aging and Physical Activit', 18616909, 0.892, 'Q2', 27, 20, 1034, 220, 61, '5', '2006-2020', 'Geriatrics and Gerontology (Q2)'), (5100, 'Learning, Culture and Social Interaction', 2210657, 0.892, 'Q1', 21, 90, 3869, 404, 158, '16', '2012-2020', 'Education (Q1)'), (5101, 'Plants', 22237747, 0.892, 'Q1', 32, 1793, 121230, 3247, 769, '19', '2012-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (5102, 'Vascular Health and Risk Management', 11766344, 0.892, 'Q2', 68, 60, 2459, 495, 146, '41', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q2); Hematology (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Public Health, Environmental and '), (5103, 'European Journal of Remote Sensing', 11298596, 0.891, 'Q1', 32, 96, 3209, 894, 216, '7', '2012-2020', 'Environmental Science (miscellaneous) (Q1); Applied Mathematics (Q2); Atmospheric Science (Q2); Computers in Earth Sciences (Q2)'), (5104, 'MicroRNA (Shariqah, United Arab Emirates)', 22115374, 0.891, 'Q1', 20, 0, 0, 224, 60, '52', '2012-2019', 'Emergency Medicine (Q1); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2)'), (5105, 'Molecular Vision', 10900535, 0.891, 'Q2', 92, 70, 2930, 685, 251, '2', '1995-2020', 'Ophthalmology (Q2)'), (5106, 'Russian Mathematical Surveys', 360279, 0.891, 'Q1', 43, 44, 1627, 194, 132, '3', '1970-2020', 'Mathematics (miscellaneous) (Q1)'), (5107, 'Structural Change and Economic Dynamics', 954349, 0.891, 'Q2', 48, 119, 7161, 661, 197, '16', '1990-2020', 'Economics and Econometrics (Q2)'), (5108, 'Substance Abuse', 15470164, 0.891, 'Q2', 46, 117, 4792, 640, 231, '2', '1995-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (5109, 'International Journal of Engine Research', 14680874, 0.89, 'Q1', 57, 242, 10241, 759, 234, '3', '2000-2020', 'Aerospace Engineering (Q1); Automotive Engineering (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1)'), (5110, 'Journal of Drug Targeting', 10292330, 0.89, 'Q1', 90, 122, 9268, 1309, 276, '3', '1986-1987, 1992-2020', 'Pharmaceutical Science (Q1)'), (5111, 'Mechanisms of Development', 18726356, 0.89, 'Q2', 142, 40, 2829, 295, 137, '42', '1990-2020', 'Developmental Biology (Q2); Embryology (Q2)'), (5112, 'Regulatory Toxicology and Pharmacology', 2732300, 0.89, 'Q2', 107, 218, 9628, 2516, 684, '2', '1970, 1981-2020', 'Medicine (miscellaneous) (Q2); Toxicology (Q2)'), (5113, 'Studies in Educational Evaluation', 191491, 0.89, 'Q1', 41, 109, 6692, 651, 191, '3', '1975-2020', 'Education (Q1)'), (5114, 'Animal', 1751732, 0.889, 'Q1', 76, 325, 12479, 2903, 944, '3', '2007-2020', 'Animal Science and Zoology (Q1)'), (5115, 'Cancer Nanotechnology', 18686958, 0.889, 'Q1', 25, 15, 872, 166, 30, '2', '2010-2020', 'Pharmaceutical Science (Q1); Physical and Theoretical Chemistry (Q1); Biomedical Engineering (Q2); Oncology (Q2)'), (5116, 'Environment and Development Economics', 1355770, 0.889, 'Q1', 62, 30, 1411, 205, 112, '3', '1996-2020', 'Development (Q1); Environmental Science (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (5117, 'Environment and Planning B: Urban Analytics a', 23998083, 0.889, 'Q1', 90, 200, 8428, 797, 209, '3', '2017-2020', 'Architecture (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q1); Nature and Landscape Conservation (Q1); Urban Studies (Q1)'), (5118, 'Evolutionary Psychology', 14747049, 0.889, 'Q1', 35, 27, 1341, 233, 124, '3', '2009-2020', 'Social Psychology (Q1); Behavioral Neuroscience (Q2); Medicine (miscellaneous) (Q2)'), (5119, 'GeoHealth', 24711403, 0.889, 'Q1', 12, 53, 3043, 217, 47, '2', '2017-2020', 'Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Water Science and Technology (Q1); Global and Planetary Change (Q2); Health, Toxicology and Mutagenesis (Q2); Public Health, Environmental '), (5120, 'Journal of Academic Librarianship', 991333, 0.889, 'Q1', 58, 112, 4640, 501, 249, '3', '1988-2020', 'Education (Q1); Library and Information Sciences (Q1)'), (5121, 'Journal of Applied Microbiology', 13652672, 0.889, 'Q2', 156, 419, 22844, 3635, 921, '3', '1973-1975, 1997-2020', 'Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)'), (5122, 'Microbial Drug Resistance', 10766294, 0.889, 'Q2', 70, 185, 8151, 1655, 524, '2', '1995-2020', 'Medicine (miscellaneous) (Q2); Microbiology (Q2); Microbiology (medical) (Q2); Pharmacology (Q2); Immunology (Q3)'), (5123, 'Modern Rheumatology', 14397595, 0.889, 'Q2', 56, 216, 6747, 1132, 488, '3', '2000-2020', 'Medicine (miscellaneous) (Q2); Rheumatology (Q2)'), (5124, 'Therapeutic Advances in Endocrinology and Met', 20420196, 0.889, 'Q2', 30, 71, 4173, 343, 101, '2', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q2)'), (5125, 'Acta Otorhinolaryngologica Italica', 392100, 0.888, 'Q1', 42, 72, 2164, 523, 214, '7', '1981-2020', 'Otorhinolaryngology (Q1)'), (5126, 'Health Education and Behavior', 15526127, 0.888, 'Q1', 92, 121, 4535, 814, 331, '2', '1957-1970, 1972-1978, 1980-2020', 'Arts and Humanities (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2)'), (5127, 'International Journal of Pavement Research an', 19971400, 0.888, 'Q1', 26, 77, 2708, 682, 199, '22', '2009-2020', 'Civil and Structural Engineering (Q1); Mechanics of Materials (Q1)'), (5128, 'Journal of Environmental Quality', 472425, 0.888, 'Q1', 171, 148, 7601, 1574, 557, '2', '1972-2020', 'Environmental Engineering (Q1); Management, Monitoring, Policy and Law (Q1); Pollution (Q1); Water Science and Technology (Q1); Waste Management and Disposal (Q2)'), (5129, 'Journal of Pain Research', 11787090, 0.888, 'Q1', 49, 349, 14053, 2843, 930, '41', '2002, 2009-2020', 'Anesthesiology and Pain Medicine (Q1)'), (5130, 'Lasers in Surgery and Medicine', 1968092, 0.888, 'Q1', 112, 174, 5677, 1055, 324, '2', '1980-2020', 'Dermatology (Q1); Surgery (Q1)'), (5131, 'Linguistics and Philosophy', 1650157, 0.888, 'Q1', 51, 37, 2259, 90, 57, '16', '1977-2002, 2005-2020', 'Linguistics and Language (Q1); Philosophy (Q1)'), (5132, 'Organic Electronics', 15661199, 0.888, 'Q1', 103, 408, 17420, 5592, 1660, '16', '2000-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Materials Chemistry (Q1); Biomaterials (Q2)'), (5133, 'Spatial Economic Analysis', 17421780, 0.888, 'Q1', 31, 44, 1800, 179, 64, '3', '2006-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Geography, Planning and Development (Q1); Statistics, Probability and Uncertainty (Q2)'), (5134, 'Spatial Statistics', 22116753, 0.888, 'Q1', 27, 64, 2576, 469, 168, '16', '2012-2020', 'Management, Monitoring, Policy and Law (Q1); Computers in Earth Sciences (Q2); Statistics and Probability (Q2)'), (5135, 'European Polymer Journal', 143057, 0.887, 'Q1', 138, 550, 32091, 7619, 1727, '3', '1965-2020', 'Materials Chemistry (Q1); Organic Chemistry (Q1); Physics and Astronomy (miscellaneous) (Q1); Polymers and Plastics (Q1)'), (5136, 'Fatigue and Fracture of Engineering Materials', 8756758, 0.887, 'Q1', 84, 221, 9506, 1884, 565, '3', '1979-2020', 'Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (5137, 'Food Science and Human Wellness', 22134530, 0.887, 'Q1', 33, 48, 2593, 485, 99, '16', '2012-2020', 'Food Science (Q1)'), (5138, 'Journal of Interpersonal Violence', 8862605, 0.887, 'Q2', 105, 877, 41464, 2834, 960, '2', '1986-2020', 'Applied Psychology (Q2); Clinical Psychology (Q2)'), (5139, 'Journal of Oral Pathology and Medicine', 16000714, 0.887, 'Q1', 83, 163, 5106, 1498, 409, '3', '1972-2020', 'Oral Surgery (Q1); Otorhinolaryngology (Q1); Pathology and Forensic Medicine (Q1); Periodontics (Q2); Cancer Research (Q3)'), (5140, 'Progress of Theoretical and Experimental Phys', 20503911, 0.887, 'Q1', 53, 174, 7809, 1596, 475, '3', '2012-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (5141, 'Scandinavian Journal of Educational Research', 14701170, 0.887, 'Q1', 43, 133, 7653, 397, 169, '3', '1971-2020', 'Education (Q1)'), (5142, 'Annals of Gastroenterology', 11087471, 0.886, 'Q2', 33, 114, 3958, 833, 273, '39', '2000-2020', 'Gastroenterology (Q2)'), (5143, 'Environmental Management', 364152, 0.886, 'Q1', 118, 145, 10379, 1421, 438, '2', '1976-2020', 'Ecology (Q1); Pollution (Q1); Global and Planetary Change (Q2)'), (5144, 'Journal of Applied Sport Psychology', 10413200, 0.886, 'Q2', 77, 74, 3822, 313, 93, '3', '1989-2020', 'Applied Psychology (Q2); Sports Science (Q2)'), (5145, 'Journal of Veterinary Emergency and Critical ', 14793261, 0.886, 'Q1', 47, 101, 2803, 367, 231, '3', '1991-2020', 'Veterinary (miscellaneous) (Q1)'), (5146, 'Space Policy', 2659646, 0.886, 'Q1', 23, 24, 1109, 132, 102, '3', '1985-2020', 'Sociology and Political Science (Q1); Economics and Econometrics (Q2); Space and Planetary Science (Q2)'), (5147, 'Cost Effectiveness and Resource Allocation', 14787547, 0.885, 'Q2', 38, 55, 2320, 232, 112, '3', '2003-2020', 'Health Policy (Q2)'), (5148, 'Current Issues in Language Planning', 14664208, 0.885, 'Q1', 22, 36, 2287, 112, 66, '3', '2008-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (5149, 'Journal of Ethnopharmacology', 3788741, 0.885, 'Q2', 192, 848, 52041, 6927, 1567, '42', '1979-2021', 'Drug Discovery (Q2); Pharmacology (Q2)'), (5150, 'Journal of Evidence-Based Medicine', 17565391, 0.885, 'Q1', 22, 40, 1625, 332, 102, '3', '2008-2020', 'Health Policy (Q1); Medicine (miscellaneous) (Q2)'), (5151, 'Journal of Soils and Sediments', 16147480, 0.885, 'Q1', 73, 386, 21619, 3034, 905, '5', '2001-2020', 'Earth-Surface Processes (Q1); Stratigraphy (Q1)'), (5152, 'Patient Preference and Adherence', 1177889, 0.885, 'Q1', 48, 232, 9520, 1934, 672, '41', '2007-2020', 'Health Policy (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (5153, 'Synthesis', 1437210, 0.885, 'Q1', 140, 381, 25750, 3821, 1407, '5', '1970-2020', 'Organic Chemistry (Q1); Catalysis (Q2)'), (5154, 'Bulletin of the American Mathematical Society', 2730979, 0.884, 'Q1', 66, 16, 1114, 217, 57, '2', '1891-2020', 'Mathematics (miscellaneous) (Q1); Applied Mathematics (Q2)'), (5155, 'Clinics in Colon and Rectal Surgery', 15310043, 0.884, 'Q1', 38, 62, 2231, 419, 158, '2', '2001-2020', 'Surgery (Q1); Gastroenterology (Q2)'), (5156, 'Computers in Biology and Medicine', 104825, 0.884, 'Q1', 94, 383, 19977, 5223, 923, '3', '1970-2020', 'Computer Science Applications (Q1); Health Informatics (Q2)'), (5157, 'European Journal of Control', 9473580, 0.884, 'Q1', 64, 92, 3490, 475, 170, '8', '1995-2020', 'Engineering (miscellaneous) (Q1)'), (5158, 'International Journal of Computer Integrated ', 951192, 0.884, 'Q1', 55, 95, 4106, 1097, 267, '3', '1988-2020', 'Aerospace Engineering (Q1); Computer Science Applications (Q1); Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)'), (5159, 'Probabilistic Engineering Mechanics', 2668920, 0.884, 'Q1', 78, 64, 2484, 299, 80, '3', '1986-2020', 'Aerospace Engineering (Q1); Civil and Structural Engineering (Q1); Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Nuclear Energy and Engineering (Q1); Ocean Engineering (Q1); Statistical '), (5160, 'Stem Cell Investigation', 23069759, 0.884, 'Q2', 18, 10, 290, 373, 116, '1', '2014-2020', 'Developmental Biology (Q2); Genetics (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (5161, 'Asian American Journal of Psychology', 19481985, 0.883, 'Q2', 27, 30, 1224, 144, 88, '2', '2010-2020', 'Psychology (miscellaneous) (Q2)'), (5162, 'Endoscopic Ultrasound', 23039027, 0.883, 'Q1', 24, 74, 1708, 580, 180, '4', '2012-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Gastroenterology (Q2); Hepatology (Q3)'), (5163, 'International Journal of Artificial Intellige', 9740635, 0.883, 'Q1', 26, 27, 830, 235, 64, '4', '2009-2020', 'Artificial Intelligence (Q1)'), (5164, 'Local Government Studies', 3003930, 0.883, 'Q1', 42, 86, 4427, 410, 133, '3', '1975-2020', 'Development (Q1); Sociology and Political Science (Q1)'), (5165, 'Physica Medica', 11201797, 0.883, 'Q1', 44, 307, 11838, 2126, 779, '7', '1989-2020', 'Physics and Astronomy (miscellaneous) (Q1); Radiology, Nuclear Medicine and Imaging (Q1); Biophysics (Q2); Medicine (miscellaneous) (Q2)'), (5166, 'Spinal Cord', 14765624, 0.883, 'Q1', 108, 210, 5760, 1175, 440, '3', '1996-2020', 'Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Neurology (Q2); Neurology (clinical) (Q2)'), (5167, 'BMC Structural Biology', 14726807, 0.882, 'Q3', 55, 0, 0, 71, 34, '3', '2001-2019', 'Structural Biology (Q3)'), (5168, 'Digestion', 14219867, 0.882, 'Q2', 75, 148, 5897, 697, 236, '19', '1896, 1898-2020', 'Gastroenterology (Q2)'), (5169, 'European Journal of Paediatric Neurology', 15322130, 0.882, 'Q1', 63, 150, 5316, 1000, 339, '3', '1997-2020', 'Pediatrics, Perinatology and Child Health (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)'), (5170, 'International Journal of Comparative Sociolog', 207152, 0.882, 'Q1', 42, 16, 1114, 128, 56, '3', '1960-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (5171, 'Journal of Social Archaeology', 14696053, 0.882, 'Q1', 35, 18, 1300, 103, 49, '3', '2001-2020', 'Archeology (Q1); Arts and Humanities (miscellaneous) (Q1)'), (5172, 'American Journal of Men s Health', 15579891, 0.881, 'Q1', 34, 130, 5467, 1482, 550, '2', '2007-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q2)'), (5173, 'Aquatic Sciences', 14209055, 0.881, 'Q1', 73, 82, 6035, 513, 189, '19', '1982, 1989-2020', 'Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Water Science and Technology (Q1)'), (5174, 'Environmental Sociology', 23251042, 0.881, 'Q1', 16, 34, 2408, 307, 111, '3', '2015-2020', 'Ecology (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Management, Monitoring, Policy and Law (Q2)'), (5175, 'European Journal of Gastroenterology and Hepa', 954691, 0.881, 'Q2', 102, 283, 7625, 1608, 665, '2', '1989-2020', 'Gastroenterology (Q2); Hepatology (Q3)'), (5176, 'IEEE Antennas and Propagation Magazine', 10459243, 0.881, 'Q1', 86, 113, 1992, 778, 232, '2', '1990-2020', 'Condensed Matter Physics (Q1); Electrical and Electronic Engineering (Q1)'), (5177, 'International Journal of Computational Intell', 9748571, 0.881, 'Q1', 4, 6, 609, 106, 12, '4', '2018-2019', 'Artificial Intelligence (Q1); Computational Mechanics (Q1); Computer Science Applications (Q1); Information Systems and Management (Q1); Biotechnology (Q2)'), (5178, 'Journal of Loss Prevention in the Process Ind', 9504230, 0.881, 'Q1', 79, 278, 11232, 2568, 628, '16', '1988-2020', 'Chemical Engineering (miscellaneous) (Q1); Control and Systems Engineering (Q1); Energy Engineering and Power Technology (Q1); Food Science (Q1); Industrial and Manufacturing Engineering (Q1); Managem'), (5179, 'Journal of Media Psychology', 18641105, 0.881, 'Q1', 30, 28, 1177, 143, 60, '5', '2008-2020', 'Communication (Q1); Applied Psychology (Q2); Social Psychology (Q2)'), (5180, 'MicrobiologyOpen', 20458827, 0.881, 'Q2', 36, 168, 8801, 1568, 496, '2', '2012-2020', 'Microbiology (Q2)'), (5181, 'NeoBiota', 16190033, 0.881, 'Q1', 18, 80, 6084, 341, 99, '61', '2015-2020', 'Animal Science and Zoology (Q1); Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Insect Science (Q1); Plant Science (Q1); Ecological Modeling (Q2)'), (5182, 'Revista de Psicodidactica', 22544372, 0.881, 'Q1', 27, 20, 983, 236, 70, '12', '2005-2020', 'Education (Q1); Developmental and Educational Psychology (Q2)'), (5183, 'Scandinavian Journal of Gastroenterology', 365521, 0.881, 'Q2', 116, 217, 6754, 1606, 679, '3', '1966-2020', 'Gastroenterology (Q2)'), (5184, 'Construction Management and Economics', 1446193, 0.88, 'Q1', 94, 75, 5199, 620, 135, '3', '1983-2020', 'Building and Construction (Q1); Industrial and Manufacturing Engineering (Q1); Management Information Systems (Q1)'), (5185, 'Journal of Futures Markets', 10969934, 0.88, 'Q1', 55, 99, 4225, 430, 206, '2', '1981-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1); Accounting (Q2); Economics and Econometrics (Q2)'), (5186, 'Mathematics Education Research Journal', 2211050, 0.88, 'Q1', 30, 77, 4028, 158, 89, '16', '1989-2020', 'Education (Q1); Mathematics (miscellaneous) (Q1)'), (5187, 'Application of Clinical Genetics', 1178704, 0.879, 'Q2', 32, 20, 1014, 156, 59, '41', '2008-2020', 'Genetics (Q2); Genetics (clinical) (Q3)'), (5188, 'Digestive Diseases', 2572753, 0.879, 'Q2', 66, 77, 2402, 582, 216, '19', '1983-2020', 'Gastroenterology (Q2); Medicine (miscellaneous) (Q2)'), (5189, 'Journal of Child and Family Studies', 15732843, 0.879, 'Q1', 76, 298, 18118, 2236, 961, '2', '1992-2020', 'Life-span and Life-course Studies (Q1); Developmental and Educational Psychology (Q2)'), (5190, 'Journal of Investigative Medicine', 17088267, 0.879, 'Q2', 66, 126, 4414, 654, 241, '2', '1994-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (5191, 'Biochimica et Biophysica Acta - Proteins and ', 15709639, 0.878, 'Q1', 147, 147, 9208, 1152, 425, '16', '2002-2021', 'Analytical Chemistry (Q1); Biochemistry (Q2); Biophysics (Q2); Molecular Biology (Q3)'), (5192, 'European Clinical Respiratory Journal', 20018525, 0.878, 'Q2', 9, 26, 917, 123, 59, '3', '2017-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (5193, 'Heart Failure Clinics', 15517136, 0.878, 'Q2', 38, 51, 2789, 438, 165, '2', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (5194, 'Industrial &amp; Engineering Chemistry Resear', 15205045, 0.878, 'Q1', 221, 2080, 105996, 20610, 5232, '2', '1987-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1)'), (5195, 'Integrating Materials and Manufacturing Innov', 21939764, 0.878, 'Q1', 22, 32, 1517, 301, 77, '19', '2012-2020', 'Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q1)'), (5196, 'Journal of Managerial Psychology', 2683946, 0.878, 'Q1', 80, 55, 3021, 359, 114, '3', '1986-2020', 'Management Science and Operations Research (Q1); Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2); Social Psychology (Q2)'), (5197, 'BMC Developmental Biology', 1471213, 0.877, 'Q2', 76, 26, 1456, 134, 63, '3', '2001-2020', 'Developmental Biology (Q2)'), (5198, 'BMC Ophthalmology', 14712415, 0.877, 'Q2', 43, 470, 12119, 2040, 876, '3', '2001-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q2)'), (5199, 'Brain Informatics', 21984018, 0.877, 'Q1', 19, 20, 1263, 306, 49, '5', '2014-2020', 'Computer Science Applications (Q1); Neurology (Q2); Cognitive Neuroscience (Q3)'), (5200, 'Computational Materials Science', 9270256, 0.877, 'Q1', 119, 626, 31395, 6878, 1902, '16', '1970, 1992-2021', 'Chemistry (miscellaneous) (Q1); Computer Science (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1); Computational Ma'), (5201, 'Frontiers in Veterinary Science', 22971769, 0.877, 'Q1', 31, 1107, 60264, 3205, 988, '19', '2014-2020', 'Veterinary (miscellaneous) (Q1)'), (5202, 'Journal of Biophotonics', 1864063, 0.877, 'Q1', 66, 291, 12707, 2422, 712, '5', '2008-2020', 'Chemistry (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (misc'), (5203, 'Particle and Particle Systems Characterizatio', 15214117, 0.877, 'Q1', 56, 101, 5804, 1329, 430, '5', '1984-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1)'), (5204, 'Tianranqi Gongye/Natural Gas Industry', 10000976, 0.877, 'Q1', 40, 223, 6294, 1242, 645, '1', '1998-2020', 'Energy Engineering and Power Technology (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (5205, 'ACS Earth and Space Chemistry', 24723452, 0.876, 'Q2', 19, 228, 14915, 1642, 452, '2', '2017-2020', 'Atmospheric Science (Q2); Geochemistry and Petrology (Q2); Space and Planetary Science (Q2)'), (5206, 'Aerosol Science and Technology', 15217388, 0.876, 'Q1', 109, 118, 5991, 976, 363, '3', '1982-2020', 'Materials Science (miscellaneous) (Q1); Environmental Chemistry (Q2); Pollution (Q2)'), (5207, 'Calcolo', 11265434, 0.876, 'Q1', 33, 42, 1284, 425, 174, '7', '1964-2020', 'Algebra and Number Theory (Q1); Computational Mathematics (Q2)'), (5208, 'Cholesterol', 20901283, 0.876, 'Q1', 20, 0, 0, 35, 10, '2', '2010-2018', 'Organic Chemistry (Q1); Endocrinology, Diabetes and Metabolism (Q2); Hematology (Q2); Internal Medicine (Q2)'), (5209, 'Ecological Modelling', 18727026, 0.876, 'Q2', 156, 283, 18301, 2539, 814, '16', '1975-2020', 'Ecological Modeling (Q2)'), (5210, 'ELT Journal', 14774526, 0.876, 'Q1', 55, 39, 535, 220, 111, '3', '1946-2020', 'Education (Q1); Language and Linguistics (Q1); Developmental and Educational Psychology (Q2)'), (5211, 'European Journal of Psychology of Education', 18785174, 0.876, 'Q1', 53, 88, 5586, 301, 120, '16', '1986-2020', 'Education (Q1); Developmental and Educational Psychology (Q2)'), (5212, 'International Journal of Numerical Analysis a', 17055105, 0.876, 'Q2', 29, 30, 867, 236, 142, '9', '2004-2020', 'Numerical Analysis (Q2)'), (5213, 'Journal of Computational and Applied Mathemat', 3770427, 0.876, 'Q2', 124, 614, 20386, 4870, 1655, '16', '1975-2021', 'Applied Mathematics (Q2); Computational Mathematics (Q2)'), (5214, 'Alpine Botany', 1664221, 0.875, 'Q1', 28, 16, 928, 109, 49, '19', '2011-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (5215, 'American Ethnologist', 940496, 0.875, 'Q1', 78, 42, 1203, 256, 102, '2', '1974-2020', 'Anthropology (Q1)'), (5216, 'BioControl', 13866141, 0.875, 'Q1', 68, 68, 3096, 635, 207, '16', '1998-2020', 'Agronomy and Crop Science (Q1); Insect Science (Q1)'), (5217, 'Cancer genetics', 22107762, 0.875, 'Q2', 42, 66, 2961, 428, 177, '16', '2011-2020', 'Genetics (Q2); Cancer Research (Q3); Molecular Biology (Q3)'), (5218, 'Chemical and Biological Technologies in Agric', 21965641, 0.875, 'Q1', 19, 29, 1537, 363, 83, '19', '2014-2020', 'Agronomy and Crop Science (Q1); Food Science (Q1); Biochemistry (Q2); Biotechnology (Q2)'), (5219, 'Fire', 25716255, 0.875, 'Q1', 12, 69, 3853, 368, 101, '19', '2018-2020', 'Building and Construction (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1); Forestry (Q1); Safety Research (Q1); Safety, Risk, Reliability and Qualit'), (5220, 'International Journal of Endocrinology', 16878337, 0.875, 'Q2', 60, 190, 7807, 1416, 465, '2', '2009-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Endocrine and Autonomic Systems (Q3)'), (5221, 'Research Evaluation', 9582029, 0.875, 'Q1', 49, 20, 1350, 277, 93, '3', '1991-1996, 1998-2020', 'Education (Q1); Library and Information Sciences (Q1)'), (5222, 'Condor', 105422, 0.874, 'Q1', 78, 52, 4237, 401, 202, '2', '1981-1984, 1987, 1992-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (5223, 'European Journal of Phycology', 14694433, 0.874, 'Q1', 72, 56, 3469, 448, 130, '3', '1993-2020', 'Aquatic Science (Q1); Plant Science (Q1)'), (5224, 'Poetics', 304422, 0.874, 'Q1', 63, 63, 3960, 246, 120, '16', '1971-2020', 'Communication (Q1); Cultural Studies (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1); Sociology and Political Science (Q1)'), (5225, 'Polar Biology', 7224060, 0.874, 'Q1', 78, 169, 10490, 1332, 625, '5', '1982-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (5226, 'Symbolic Interaction', 15338665, 0.874, 'Q1', 47, 43, 2859, 169, 76, '2', '1977-2020', 'Communication (Q1); Education (Q1); Nursing (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)'), (5227, 'Canadian Psychology', 7085591, 0.873, 'Q2', 51, 34, 1500, 288, 99, '9', '1986-1988, 1990-1991, 1993, 1996-2020', 'Psychology (miscellaneous) (Q2)'), (5228, 'Communications in Mathematics and Statistics', 21946701, 0.873, 'Q2', 14, 28, 616, 449, 80, '5', '2013-2020', 'Applied Mathematics (Q2); Computational Mathematics (Q2); Statistics and Probability (Q2)'), (5229, 'Drugs in R and D', 11796901, 0.873, 'Q2', 45, 37, 1464, 389, 127, '3', '1999, 2002-2008, 2010-2020', 'Pharmacology (Q2)'), (5230, 'Expert Opinion on Pharmacotherapy', 17447666, 0.873, 'Q2', 78, 250, 18475, 1858, 568, '3', '1999-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (5231, 'Fermentation', 23115637, 0.873, 'Q1', 21, 94, 5572, 1280, 271, '19', '2015-2020', 'Food Science (Q1); Plant Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (5232, 'IEEE Transactions on Circuits and Systems for', 10518215, 0.873, 'Q1', 168, 484, 18840, 4842, 758, '2', '1991-2020', 'Electrical and Electronic Engineering (Q1); Media Technology (Q1)'), (5233, 'IEEE Transactions on Human-Machine Systems', 21682291, 0.873, 'Q1', 123, 60, 2934, 1282, 231, '2', '2013-2020', 'Artificial Intelligence (Q1); Computer Networks and Communications (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Human-Computer Interaction (Q1); Human Factors and Er'), (5234, 'International Journal of Disaster Risk Scienc', 21926395, 0.873, 'Q1', 29, 66, 3161, 497, 130, '2', '2010-2020', 'Geography, Planning and Development (Q1); Safety Research (Q1); Global and Planetary Change (Q2); Management, Monitoring, Policy and Law (Q2)'), (5235, 'Journal of Cosmology and Astroparticle Physic', 14757516, 0.873, 'Q2', 141, 694, 50061, 12392, 1984, '3', '2003-2020', 'Astronomy and Astrophysics (Q2)'), (5236, 'Journal of Non-Newtonian Fluid Mechanics', 3770257, 0.873, 'Q1', 105, 119, 5331, 939, 320, '16', '1976-2020', 'Chemical Engineering (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Applied Mathematics (Q2)'), (5237, 'Problems of Post-Communism', 1557783, 0.873, 'Q1', 29, 77, 5206, 183, 92, '2', '1996-2020', 'Sociology and Political Science (Q1)'), (5238, 'Transportmetrica A: Transport Science', 23249943, 0.873, 'Q1', 39, 100, 4696, 586, 167, '2', '2013-2020', 'Engineering (miscellaneous) (Q1); Transportation (Q2)'), (5239, 'Botanical Journal of the Linnean Society', 10958339, 0.872, 'Q1', 68, 106, 8219, 671, 275, '3', '1969-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1)'), (5240, 'Eating Behaviors', 18737358, 0.872, 'Q2', 72, 77, 3279, 608, 211, '3', '2000-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (5241, 'European Journal of Archaeology', 14619571, 0.872, 'Q1', 30, 27, 1554, 144, 73, '3', '1998-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (5242, 'History of Political Economy', 15271919, 0.872, 'Q1', 30, 45, 2641, 128, 135, '2', '1986, 1996-2020', 'History (Q1); Economics and Econometrics (Q2)'), (5243, 'Quaternary Research', 335894, 0.872, 'Q1', 113, 77, 5954, 586, 257, '2', '1970-2020', 'Arts and Humanities (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Earth-Surface Processes (Q1)'), (5244, 'Rejuvenation Research', 15491684, 0.872, 'Q2', 60, 61, 2391, 574, 170, '2', '2000-2001, 2004-2020', 'Geriatrics and Gerontology (Q2); Aging (Q3)'), (5245, 'Toxicological Research', 19768257, 0.872, 'Q2', 30, 47, 1751, 426, 122, '13', '2008-2020', 'Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)'), (5246, 'Canadian Journal of Anaesthesia', 832610, 0.871, 'Q1', 97, 332, 5835, 1220, 322, '2', '1987-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q2)'), (5247, 'Cryptography and Communications', 19362447, 0.871, 'Q1', 19, 78, 1819, 355, 194, '2', '2009-2020', 'Computational Theory and Mathematics (Q1); Computer Networks and Communications (Q1); Applied Mathematics (Q2)'), (5248, 'Journal of comparative psychology (Washington', 7357036, 0.871, 'Q1', 83, 42, 2711, 258, 129, '2', '1983-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Psychology (miscellaneous) (Q2)'), (5249, 'Plant Biology', 14388677, 0.871, 'Q1', 87, 155, 9570, 1056, 394, '2', '1999-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Plant Science (Q1); Medicine (miscellaneous) (Q2)'), (5250, 'Infant and Child Development', 15227227, 0.87, 'Q2', 57, 41, 2288, 334, 165, '3', '1996-2020', 'Developmental and Educational Psychology (Q2)'), (5251, 'Journal of Immunological Methods', 221759, 0.87, 'Q3', 133, 105, 2924, 884, 414, '16', '1971-2020', 'Immunology (Q3); Immunology and Allergy (Q3)'), (5252, 'Journal of Plankton Research', 14643774, 0.87, 'Q1', 93, 63, 3874, 477, 202, '3', '1979-2020', 'Aquatic Science (Q1); Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (5253, 'Multiple Sclerosis and Related Disorders', 22110356, 0.87, 'Q2', 38, 701, 20727, 2908, 838, '2', '2012-2020', 'Medicine (miscellaneous) (Q2); Neurology (Q2); Neurology (clinical) (Q2)'), (5254, 'Musculoskeletal Science and Practice', 24687812, 0.87, 'Q1', 89, 145, 5705, 827, 304, '3', '2017-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1)'), (5255, 'Nanoscale Research Letters', 1556276, 0.87, 'Q1', 107, 221, 10388, 6106, 1431, '2', '2006-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Nanoscience and Nanotechnology (Q2)'), (5256, 'Power System Technology', 10003673, 0.87, 'Q1', 68, 560, 14250, 5173, 1613, '1', '2004-2005, 2010-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Mechanical Engineering (Q1)'), (5257, 'Zoonoses and Public Health', 18631959, 0.87, 'Q1', 65, 113, 4804, 915, 332, '5', '2007-2020', 'Veterinary (miscellaneous) (Q1); Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3)'), (5258, 'International Journal of Social Psychiatry', 207640, 0.869, 'Q2', 62, 260, 9340, 617, 239, '3', '1955-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (5259, 'Journal of Environmental and Public Health', 16879805, 0.869, 'Q2', 35, 105, 4198, 625, 173, '32', '2009-2020', 'Health, Toxicology and Mutagenesis (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5260, 'Accounting Education', 14684489, 0.868, 'Q1', 37, 25, 1714, 200, 81, '3', '1992-1996, 1998, 2000-2020', 'Education (Q1); Accounting (Q2)'), (5261, 'American Journal of Cultural Sociology', 20497121, 0.868, 'Q1', 14, 36, 2863, 105, 62, '19', '2013-2020', 'Sociology and Political Science (Q1)'), (5262, 'Applied Immunohistochemistry and Molecular Mo', 15334058, 0.868, 'Q1', 60, 146, 3719, 781, 393, '2', '1996-1997, 2000-2020', 'Medical Laboratory Technology (Q1); Histology (Q2); Pathology and Forensic Medicine (Q2)'), (5263, 'BMC Oral Health', 14726831, 0.868, 'Q1', 50, 361, 13839, 1988, 654, '3', '2001-2020', 'Dentistry (miscellaneous) (Q1)'), (5264, 'Brachytherapy', 15384721, 0.868, 'Q1', 49, 123, 3795, 850, 399, '2', '2002-2020', 'Radiology, Nuclear Medicine and Imaging (Q1); Oncology (Q2)'), (5265, 'IEEE Journal on Emerging and Selected Topics ', 21563357, 0.868, 'Q1', 50, 51, 2253, 1078, 184, '2', '2011-2020', 'Electrical and Electronic Engineering (Q1)'), (5266, 'Journal of Marital and Family Therapy', 17520606, 0.868, 'Q1', 68, 59, 2737, 354, 160, '2', '1975-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Clinical Psychology (Q2); Social Psychology (Q2)'), (5267, 'Journal of NeuroVirology', 15382443, 0.868, 'Q2', 85, 128, 4960, 643, 289, '3', '1995-2020', 'Neurology (Q2); Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q3); Virology (Q3)'), (5268, 'Critical Sociology', 8969205, 0.867, 'Q1', 38, 123, 6831, 422, 218, '3', '1971-1992, 1994-2020', 'Sociology and Political Science (Q1)'), (5269, 'European Journal of Health Psychology', 25128442, 0.867, 'Q2', 14, 18, 1316, 11, 3, '5', '2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (5270, 'International Wound Journal', 1742481, 0.867, 'Q1', 63, 259, 8031, 1610, 488, '3', '2004-2020', 'Dermatology (Q1); Surgery (Q1)'), (5271, 'Journal of Biological Dynamics', 17513766, 0.867, 'Q1', 32, 51, 1685, 400, 137, '3', '2007-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (5272, 'Journal of Genetic Counseling', 10597700, 0.867, 'Q3', 52, 136, 4725, 812, 386, '2', '1992-2020', 'Genetics (clinical) (Q3)'), (5273, 'Law and Society Review', 239216, 0.867, 'Q1', 74, 27, 1860, 175, 96, '3', '1977-1979, 1983, 1985, 1987, 1996-2020', 'Law (Q1); Sociology and Political Science (Q1)'), (5274, 'Permafrost and Periglacial Processes', 10991530, 0.867, 'Q1', 76, 53, 3435, 370, 112, '3', '1990-2020', 'Earth-Surface Processes (Q1)'), (5275, 'Psychopathology', 2544962, 0.867, 'Q2', 63, 42, 2257, 295, 125, '19', '1968-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (5276, 'Aerosol and Air Quality Research', 20711409, 0.866, 'Q2', 55, 245, 11948, 2409, 757, '22', '2008-2020', 'Environmental Chemistry (Q2); Pollution (Q2)'), (5277, 'CNS oncology', 20450915, 0.866, 'Q2', 20, 0, 0, 173, 59, '3', '2012-2019', 'Medicine (miscellaneous) (Q2)'), (5278, 'Corporate Governance: An International Review', 9648410, 0.866, 'Q1', 85, 26, 2887, 256, 75, '3', '1993-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1)'), (5279, 'Environmental Technology and Innovation', 23521864, 0.866, 'Q1', 28, 409, 23508, 1661, 310, '16', '2014-2020', 'Environmental Science (miscellaneous) (Q1); Plant Science (Q1); Soil Science (Q1)'), (5280, 'IISE Transactions', 24725862, 0.866, 'Q1', 95, 145, 6378, 731, 251, '3', '2016-2020', 'Industrial and Manufacturing Engineering (Q1)'), (5281, 'Journal of Intensive Care Medicine', 15251489, 0.866, 'Q1', 58, 298, 10458, 777, 281, '2', '1986-2020', 'Critical Care and Intensive Care Medicine (Q1)'), (5282, 'Journal of Medical Entomology', 222585, 0.866, 'Q1', 99, 257, 11803, 1549, 679, '2', '1964-2020', 'Insect Science (Q1); Veterinary (miscellaneous) (Q1); Infectious Diseases (Q2); Parasitology (Q2)'), (5283, 'Nutritional Neuroscience', 14768305, 0.866, 'Q2', 59, 212, 11549, 1012, 275, '3', '1998-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2); Neuroscience (miscellaneous) (Q3)'), (5284, 'Parasite Epidemiology and Control', 24056731, 0.866, 'Q2', 11, 65, 2818, 227, 84, '3', '2016-2020', 'Infectious Diseases (Q2); Parasitology (Q2); Epidemiology (Q3)'), (5285, 'Pediatric Pulmonology', 87556863, 0.866, 'Q1', 106, 569, 16460, 1915, 729, '2', '1985-2020', 'Pediatrics, Perinatology and Child Health (Q1); Pulmonary and Respiratory Medicine (Q2)'), (5286, 'Acta Psychologica', 18736297, 0.865, 'Q1', 97, 157, 8847, 850, 471, '16', '1936-1937, 1939, 1941, 1949-1951, 1953-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2); Medicine (miscellaneous) (Q2)'), (5287, 'Adipocyte', 21623945, 0.865, 'Q2', 24, 61, 2703, 363, 84, '3', '2013-2020', 'Histology (Q2); Cell Biology (Q3)'), (5288, 'Annales Academiae Scientiarum Fennicae Mathem', 1239629, 0.865, 'Q1', 37, 61, 1698, 259, 171, '38', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (5289, 'Archives of Civil and Mechanical Engineering', 16449665, 0.865, 'Q1', 46, 144, 5709, 1586, 350, '16', '2006-2020', 'Civil and Structural Engineering (Q1); Mechanical Engineering (Q1)'), (5290, 'Behavior Genetics', 18244, 0.865, 'Q1', 93, 47, 2049, 296, 141, '2', '1970, 1972-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Genetics (Q2); Genetics (clinical) (Q3)'), (5291, 'Bioinorganic Chemistry and Applications', 15653633, 0.865, 'Q1', 35, 20, 1011, 478, 76, '2', '2003-2020', 'Inorganic Chemistry (Q1); Organic Chemistry (Q1); Biochemistry (Q2)'), (5292, 'Current Stem Cell Reports', 21987866, 0.865, 'Q2', 17, 15, 1367, 195, 97, '19', '2015-2020', 'Genetics (Q2); Cell Biology (Q3); Developmental Biology (Q3); Molecular Biology (Q3)'), (5293, 'Discrete Optimization', 15725286, 0.865, 'Q1', 38, 32, 903, 193, 101, '16', '2004-2020', 'Computational Theory and Mathematics (Q1); Applied Mathematics (Q2); Theoretical Computer Science (Q2)'), (5294, 'Ecological Entomology', 13652311, 0.865, 'Q1', 81, 167, 11170, 622, 287, '3', '1976-2020', 'Ecology (Q1); Insect Science (Q1)'), (5295, 'Electronic Research Announcements in Mathemat', 19359179, 0.865, 'Q1', 23, 0, 0, 25, 13, '2', '2010-2018', 'Mathematics (miscellaneous) (Q1)'), (5296, 'Forum Mathematicum', 9337741, 0.865, 'Q1', 39, 69, 1843, 411, 278, '5', '1989-2020', 'Mathematics (miscellaneous) (Q1); Applied Mathematics (Q2)'), (5297, 'GEM - International Journal on Geomathematics', 18692672, 0.865, 'Q1', 18, 30, 1294, 123, 44, '5', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Modeling and Simulation (Q1)'), (5298, 'Learning Environments Research', 15731855, 0.865, 'Q1', 37, 43, 2493, 192, 71, '16', '2000, 2003-2020', 'Communication (Q1); Education (Q1); E-learning (Q1); Developmental and Educational Psychology (Q2)'), (5299, 'Ofioliti', 3912612, 0.865, 'Q1', 38, 6, 577, 53, 24, '7', '1978-2020', 'Geology (Q1)'), (5300, 'Progress in Nuclear Energy', 1491970, 0.865, 'Q1', 63, 341, 11694, 1543, 653, '3', '1977-1988, 1990-1992, 1994-2020', 'Energy Engineering and Power Technology (Q1); Nuclear Energy and Engineering (Q1); Safety, Risk, Reliability and Quality (Q1); Waste Management and Disposal (Q2)'), (5301, 'Advances in Wound Care', 21621934, 0.864, 'Q1', 24, 57, 3032, 501, 131, '2', '2015-2020', 'Emergency Medicine (Q1); Critical Care and Intensive Care Medicine (Q2)'), (5302, 'Development Growth and Differentiation', 1440169, 0.864, 'Q2', 66, 52, 3420, 319, 159, '3', '1969-2020', 'Medicine (miscellaneous) (Q2); Cell Biology (Q3); Developmental Biology (Q3)'), (5303, 'Discrete and Continuous Dynamical Systems - S', 1553524, 0.864, 'Q1', 53, 249, 8059, 1298, 724, '2', '2001-2020', 'Discrete Mathematics and Combinatorics (Q1); Applied Mathematics (Q2)'), (5304, 'Dissertationes Mathematicae', 17306310, 0.864, 'Q1', 24, 10, 692, 49, 25, '17', '2000-2020', 'Mathematics (miscellaneous) (Q1)'), (5305, 'Eurasian Business Review', 13094297, 0.864, 'Q1', 19, 41, 2741, 248, 68, '19', '2011-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)'), (5306, 'European Cardiology Review', 17583764, 0.864, 'Q2', 12, 42, 1767, 231, 70, '3', '2011-2012, 2014-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (5307, 'IEEE Systems Journal', 19379234, 0.864, 'Q1', 76, 624, 19183, 5190, 1001, '2', '2007-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Information Systems (Q1)'), (5308, 'Journal of Chemical Neuroanatomy', 18736300, 0.864, 'Q3', 80, 94, 5228, 637, 235, '16', '1988-2020', 'Cellular and Molecular Neuroscience (Q3)'), (5309, 'Journal of Physical Chemistry B', 15205207, 0.864, 'Q1', 392, 1152, 70037, 10530, 3467, '2', '1997-2020', 'Materials Chemistry (Q1); Physical and Theoretical Chemistry (Q1); Surfaces, Coatings and Films (Q1); Medicine (miscellaneous) (Q2)'), (5310, 'Molecular and Cellular Biochemistry', 15734919, 0.864, 'Q2', 124, 244, 10864, 2444, 765, '2', '1973-2020', 'Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (5311, 'Progress in Natural Science: Materials Intern', 10020071, 0.864, 'Q1', 63, 126, 6113, 1393, 302, '16', '1996-2020', 'Materials Science (miscellaneous) (Q1); Multidisciplinary (Q1)'), (5312, 'Psychology of Religion and Spirituality', 19411022, 0.864, 'Q1', 36, 74, 1425, 378, 151, '2', '2009-2020', 'Religious Studies (Q1); Applied Psychology (Q2); Social Psychology (Q2)'), (5313, 'Surgical Clinics of North America', 396109, 0.864, 'Q1', 88, 99, 4196, 784, 259, '3', '1945-2020', 'Surgery (Q1)'), (5314, 'Veterinary and Comparative Oncology', 14765829, 0.864, 'Q1', 34, 117, 5117, 710, 311, '3', '2007-2020', 'Veterinary (miscellaneous) (Q1)'), (5315, 'Business History', 17437938, 0.863, 'Q1', 35, 150, 11321, 282, 200, '3', '1958-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); History (Q1)'), (5316, 'Communications in Information Literacy', 19335954, 0.863, 'Q1', 16, 21, 658, 59, 44, '2', '2009-2020', 'Education (Q1); E-learning (Q1); Library and Information Sciences (Q1)'), (5317, 'Epilepsy Research', 9201211, 0.863, 'Q2', 113, 180, 7437, 1514, 542, '16', '1987-2020', 'Neurology (clinical) (Q2); Neurology (Q3)'), (5318, 'IBRO Reports', 24518301, 0.863, 'Q3', 9, 52, 2554, 171, 73, '3', '2016-2020', 'Neuroscience (miscellaneous) (Q3)'), (5319, 'International Review of Administrative Scienc', 208523, 0.863, 'Q1', 53, 100, 4753, 454, 154, '3', '1957-2020', 'Public Administration (Q1); Sociology and Political Science (Q1)'), (5320, 'Advances in Life Course Research', 10402608, 0.862, 'Q2', 32, 1, 0, 104, 46, '16', '2000-2003, 2005-2019', 'Life-span and Life-course Studies (Q2)'), (5321, 'European Addiction Research', 10226877, 0.862, 'Q1', 54, 47, 2275, 279, 101, '19', '1995-2020', 'Health (social science) (Q1); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (5322, 'Journal of Adolescent Research', 7435584, 0.862, 'Q1', 81, 44, 2515, 227, 87, '2', '1986-2020', 'Sociology and Political Science (Q1); Developmental and Educational Psychology (Q2)'), (5323, 'Journal of Deaf Studies and Deaf Education', 14657325, 0.862, 'Q1', 59, 31, 1705, 239, 110, '3', '2004-2020', 'Education (Q1); Speech and Hearing (Q1)'), (5324, 'Journal of Health, Population and Nutrition', 16060997, 0.862, 'Q1', 61, 15, 699, 325, 125, '3', '2000-2020', 'Food Science (Q1); Health, Toxicology and Mutagenesis (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5325, 'Metallurgical and Materials Transactions A: P', 10735623, 0.862, 'Q1', 155, 558, 25985, 4346, 1654, '2', '1975-1981, 1983, 1985-1987, 1989-2020', 'Condensed Matter Physics (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)'), (5326, 'Semantic Web', 15700844, 0.862, 'Q1', 45, 55, 3058, 911, 135, '16', '2010-2020', 'Computer Networks and Communications (Q1); Computer Science Applications (Q1); Information Systems (Q1)'), (5327, 'American Journal of Rhinology and Allergy', 19458932, 0.861, 'Q1', 77, 158, 4453, 566, 239, '2', '2009-2020', 'Otorhinolaryngology (Q1); Medicine (miscellaneous) (Q2); Immunology and Allergy (Q3)'), (5328, 'Computers and Security', 1674048, 0.861, 'Q1', 92, 321, 17204, 3843, 550, '3', '1982-2020', 'Computer Science (miscellaneous) (Q1); Law (Q1)'), (5329, 'Energy &amp; Fuels', 8870624, 0.861, 'Q1', 186, 1468, 84006, 15789, 4036, '2', '1987-2020', 'Chemical Engineering (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Fuel Technology (Q1)'), (5330, 'Free Radical Research', 10715762, 0.861, 'Q2', 121, 92, 5229, 1199, 325, '3', '1985-2020', 'Biochemistry (Q2); Medicine (miscellaneous) (Q2)'), (5331, 'IEEE Transactions on Circuits and Systems I: ', 15498328, 0.861, 'Q1', 163, 481, 16172, 4525, 1051, '2', '1981, 2004-2020', 'Electrical and Electronic Engineering (Q1)'), (5332, 'Journal of Global Optimization', 9255001, 0.861, 'Q1', 86, 131, 4936, 995, 366, '16', '1991-2020', 'Computer Science Applications (Q1); Control and Optimization (Q1); Applied Mathematics (Q2); Management Science and Operations Research (Q2)'), (5333, 'Materials Research Bulletin', 255408, 0.861, 'Q1', 110, 310, 14587, 6850, 1648, '3', '1966-2021', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (5334, 'Nanocomposites', 20550332, 0.861, 'Q1', 15, 17, 594, 189, 42, '3', '2015-2020', 'Ceramics and Composites (Q1); Materials Chemistry (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (5335, 'Proceedings of the Institution of Mechanical ', 20412975, 0.861, 'Q1', 64, 216, 7080, 1856, 641, '3', '1983-2020', 'Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)'), (5336, 'Urology', 15279995, 0.861, 'Q2', 177, 928, 13786, 3377, 1639, '2', '1973-2020', 'Urology (Q2)'), (5337, 'Analytical and Bioanalytical Chemistry', 16182642, 0.86, 'Q1', 166, 975, 33281, 8060, 2101, '5', '1996, 2001-2020', 'Analytical Chemistry (Q1); Biochemistry (Q2)'), (5338, 'BMC Obesity', 20529538, 0.86, 'Q1', 18, 0, 0, 287, 104, '3', '2014-2019', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Endocrinology, Diabetes and Metabolism (Q2); Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3)'), (5339, 'Brain Tumor Pathology', 14337398, 0.86, 'Q2', 39, 25, 648, 216, 70, '6', '1997-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Oncology (Q2); Cancer Research (Q3)'), (5340, 'Cognitive Computation', 18669964, 0.86, 'Q1', 52, 101, 5434, 1306, 214, '2', '2009-2020', 'Computer Science Applications (Q1); Computer Vision and Pattern Recognition (Q1); Cognitive Neuroscience (Q3)'), (5341, 'Empirical Studies of the Arts', 2762374, 0.86, 'Q1', 14, 28, 886, 78, 34, '2', '2010-2020', 'Literature and Literary Theory (Q1); Music (Q1); Visual Arts and Performing Arts (Q1)'), (5342, 'International Journal of Science Education, P', 21548455, 0.86, 'Q1', 18, 25, 1078, 150, 64, '3', '2011-2020', 'Communication (Q1); Education (Q1)'), (5343, 'JDR Clinical and Translational Research', 23800844, 0.86, 'Q1', 12, 77, 2360, 308, 120, '3', '2016-2020', 'Dentistry (miscellaneous) (Q1)'), (5344, 'Journal of Financial Services Research', 15730735, 0.86, 'Q1', 52, 29, 1167, 162, 71, '16', '1987-2020', 'Finance (Q1); Accounting (Q2); Economics and Econometrics (Q2)'), (5345, 'Materialia', 25891529, 0.86, 'Q1', 13, 406, 19627, 1345, 473, '16', '2018-2020', 'Materials Science (miscellaneous) (Q1)'), (5346, 'Mechanics of Materials', 1676636, 0.86, 'Q1', 107, 311, 13043, 1739, 519, '16', '1982-2020', 'Instrumentation (Q1); Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (5347, 'Public Transport', 16137159, 0.86, 'Q1', 27, 31, 1337, 259, 78, '5', '2009-2020', 'Information Systems (Q1); Mechanical Engineering (Q1); Management Science and Operations Research (Q2); Transportation (Q2)'), (5348, 'Utilities Policy', 9571787, 0.86, 'Q1', 51, 108, 5688, 757, 238, '3', '1990-1995, 1997-2001, 2003-2020', 'Business and International Management (Q1); Development (Q1); Law (Q1); Sociology and Political Science (Q1); Management, Monitoring, Policy and Law (Q2)'), (5349, 'American Journal of Clinical Pathology', 19437722, 0.859, 'Q2', 128, 206, 5468, 933, 409, '2', '1945-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)'), (5350, 'Animal Frontiers', 21606064, 0.859, 'Q1', 30, 45, 714, 370, 93, '4', '2011-2020', 'Animal Science and Zoology (Q1); Food Animals (Q1)'), (5351, 'Behavioural Neurology', 9534180, 0.859, 'Q2', 48, 55, 2720, 495, 157, '16', '1988-1998, 2000-2001, 2003-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Neuropsychology and Physiological Psychology (Q2); Neurology (Q3)'), (5352, 'BMC Neurology', 14712377, 0.859, 'Q2', 75, 437, 14245, 2079, 785, '3', '2001-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)'), (5353, 'CNS Spectrums', 10928529, 0.859, 'Q2', 79, 254, 8891, 593, 264, '3', '1996-2020', 'Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)'), (5354, 'Injury Epidemiology', 21971714, 0.859, 'Q2', 19, 62, 2033, 325, 123, '3', '2014-2020', 'Medicine (miscellaneous) (Q2)'), (5355, 'Journal of Information Systems', 8887985, 0.859, 'Q1', 33, 34, 2411, 214, 66, '2', '1991, 2009-2020', 'Human-Computer Interaction (Q1); Information Systems (Q1); Information Systems and Management (Q1); Management Information Systems (Q1); Management of Technology and Innovation (Q1); Software (Q1); Ac'), (5356, 'Journal of Paleontology', 223360, 0.859, 'Q1', 62, 86, 6177, 456, 249, '3', '1979-2020', 'Paleontology (Q1)'), (5357, 'Progress in Biophysics and Molecular Biology', 18731732, 0.859, 'Q2', 108, 91, 6879, 862, 276, '3', '1960-1961, 1963-1989, 1991-2020', 'Biophysics (Q2); Molecular Biology (Q3)'), (5358, 'Southern African Journal of HIV Medicine', 16089693, 0.859, 'Q2', 18, 58, 1758, 157, 79, '27', '2001-2020', 'Infectious Diseases (Q2)'), (5359, 'Algorithms for Molecular Biology', 17487188, 0.858, 'Q1', 34, 17, 604, 159, 68, '3', '2006-2020', 'Computational Theory and Mathematics (Q1); Applied Mathematics (Q2); Molecular Biology (Q3); Structural Biology (Q3)'), (5360, 'Bioelectrochemistry', 15675394, 0.858, 'Q1', 95, 177, 9382, 2014, 375, '16', '2000-2021', 'Physical and Theoretical Chemistry (Q1); Biophysics (Q2); Electrochemistry (Q2); Medicine (miscellaneous) (Q2)'), (5361, 'Information Technology for Development', 15540170, 0.858, 'Q1', 36, 65, 5392, 466, 88, '3', '1986-1990, 1995-1996, 1998-2000, 2003, 2008-2020', 'Computer Science Applications (Q1); Development (Q1); E-learning (Q1); Public Administration (Q1)'), (5362, 'Journal of Emotional and Behavioral Disorders', 10634266, 0.858, 'Q1', 69, 32, 1658, 152, 64, '2', '1993-2020', 'Education (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)'), (5363, 'Journal of Plant Growth Regulation', 7217595, 0.858, 'Q1', 82, 270, 17941, 1209, 330, '2', '1982-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1)'), (5364, 'Journal of the Mechanical Behavior of Biomedi', 17516161, 0.858, 'Q1', 87, 574, 28902, 5794, 1376, '16', '2008-2020', 'Mechanics of Materials (Q1); Biomaterials (Q2); Biomedical Engineering (Q2)'), (5365, 'Microorganisms', 20762607, 0.858, 'Q2', 17, 2016, 136705, 2724, 694, '19', '2019-2020', 'Microbiology (Q2); Microbiology (medical) (Q2); Virology (Q3)'), (5366, 'Dendrochronologia', 16120051, 0.857, 'Q1', 44, 83, 4748, 622, 228, '5', '1989, 2002-2020', 'Ecology (Q1); Plant Science (Q1)'), (5367, 'Evolution: Education and Outreach', 19366426, 0.857, 'Q1', 28, 17, 1242, 106, 45, '3', '2008-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Education (Q1)'), (5368, 'Future Oncology', 17448301, 0.857, 'Q2', 72, 291, 13003, 2612, 970, '3', '2005-2020', 'Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)'), (5369, 'Hereditary Cancer in Clinical Practice', 18974287, 0.857, 'Q3', 25, 23, 628, 172, 66, '3', '2004-2020', 'Genetics (clinical) (Q3); Oncology (Q3)'), (5370, 'IEEE Transactions on Software Engineering', 985589, 0.857, 'Q1', 169, 111, 3927, 1984, 217, '2', '1975-2020', 'Software (Q1)'), (5371, 'Journal of Applied Gerontology', 15524523, 0.857, 'Q1', 50, 282, 10344, 712, 234, '2', '1982-2020', 'Gerontology (Q1); Geriatrics and Gerontology (Q2)'), (5372, 'Journal of Industrial Microbiology and Biotec', 14765535, 0.857, 'Q2', 112, 91, 5807, 1295, 387, '5', '1996-2020', 'Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2)'), (5373, 'Journal of Investigative Dermatology Symposiu', 15291774, 0.857, 'Q1', 79, 19, 464, 106, 38, '3', '1996-2009, 2011, 2013, 2015, 2017-2018', 'Dermatology (Q1); Biotechnology (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (5374, 'Journal of Land Use Science', 1747423, 0.857, 'Q1', 35, 44, 3249, 230, 84, '3', '2006-2020', 'Earth-Surface Processes (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)'), (5375, 'Journal Physics D: Applied Physics', 223727, 0.857, 'Q1', 198, 1219, 59013, 11889, 3344, '3', '1967-2020', 'Acoustics and Ultrasonics (Q1); Condensed Matter Physics (Q1); Electronic, Optical and Magnetic Materials (Q1); Surfaces, Coatings and Films (Q1)'), (5376, 'Language and Communication', 2715309, 0.857, 'Q1', 42, 60, 3220, 238, 144, '3', '1981-2020', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Experimental and Cognitive Psychology (Q2); Social Psychology (Q2)'), (5377, 'Population Research and Policy Review', 15737829, 0.857, 'Q1', 50, 86, 5085, 239, 116, '16', '1982-2020', 'Demography (Q1); Management, Monitoring, Policy and Law (Q2)'), (5378, 'Revista de Saude Publica', 348910, 0.857, 'Q2', 77, 160, 3333, 921, 398, '14', '1967-2020', 'Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5379, 'Artificial Intelligence and Law', 9248463, 0.856, 'Q1', 37, 28, 1288, 251, 46, '16', '1992-1993, 1995-2020', 'Artificial Intelligence (Q1); Law (Q1)'), (5380, 'BMC Genetics', 14712156, 0.856, 'Q2', 74, 148, 7930, 969, 324, '3', '2000-2020', 'Genetics (Q2); Genetics (clinical) (Q3)'), (5381, 'Chemical Senses', 379864, 0.856, 'Q2', 100, 71, 4300, 532, 191, '3', '1974-2020', 'Behavioral Neuroscience (Q2); Physiology (Q2); Physiology (medical) (Q2); Sensory Systems (Q3)'), (5382, 'Mathematics of Control, Signals, and Systems', 9324194, 0.856, 'Q1', 39, 20, 752, 143, 61, '3', '1988-2020', 'Control and Optimization (Q1); Control and Systems Engineering (Q1); Signal Processing (Q1); Applied Mathematics (Q2)'), (5383, 'Porcine Health Management', 20555660, 0.856, 'Q1', 17, 38, 1800, 292, 90, '3', '2015-2020', 'Animal Science and Zoology (Q1); Food Animals (Q1); Small Animals (Q1)'), (5384, 'Review Journal of Autism and Developmental Di', 21957177, 0.856, 'Q2', 20, 44, 3463, 227, 81, '2', '2014-2020', 'Behavioral Neuroscience (Q2); Psychiatry and Mental Health (Q2); Cognitive Neuroscience (Q3); Developmental Neuroscience (Q3)'), (5385, 'Veterinary Anaesthesia and Analgesia', 14672995, 0.856, 'Q1', 55, 126, 3098, 581, 344, '3', '1970-1974, 1976-1978, 1980, 1982-1986, 1988-2020', 'Veterinary (miscellaneous) (Q1)'), (5386, 'Archives of Pharmacal Research', 19763786, 0.855, 'Q1', 87, 96, 7331, 1290, 343, '13', '1978-2020', 'Organic Chemistry (Q1); Drug Discovery (Q2); Molecular Medicine (Q2)'), (5387, 'Atmospheric and Oceanic Science Letters', 23766123, 0.855, 'Q1', 23, 76, 2046, 346, 188, '3', '2008-2020', 'Oceanography (Q1); Atmospheric Science (Q2)'), (5388, 'Bulletin of Geosciences', 12141119, 0.855, 'Q1', 34, 22, 2222, 154, 77, '31', '2003-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)'), (5389, 'Environmental Geochemistry and Health', 15732983, 0.855, 'Q1', 71, 383, 22561, 1969, 482, '16', '1983-2020', 'Environmental Engineering (Q1); Environmental Science (miscellaneous) (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2); Geochemistry and Petrology (Q2); Medicine (miscellaneous) ('), (5390, 'Eurasip Journal on Bioinformatics and Systems', 16874153, 0.855, 'Q1', 20, 0, 0, 20, 6, '5', '2006-2017', 'Computer Science Applications (Q1); Computer Science (miscellaneous) (Q1); Multidisciplinary (Q1); Signal Processing (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Computatio'), (5391, 'Journal of Adhesive Dentistry', 14615185, 0.855, 'Q1', 68, 65, 2290, 422, 164, '2', '1999-2020', 'Oral Surgery (Q1); Orthodontics (Q1); Periodontics (Q2)'), (5392, 'Journal of Chemical Ecology', 15731561, 0.855, 'Q1', 114, 104, 5900, 766, 309, '2', '1975-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Biochemistry (Q2); Medicine (miscellaneous) (Q2)'), (5393, 'Journal of Plastic, Reconstructive and Aesthe', 17486815, 0.855, 'Q1', 94, 511, 9311, 1601, 627, '3', '2006-2020', 'Surgery (Q1)'), (5394, 'Korean Journal of Internal Medicine', 12263303, 0.855, 'Q2', 42, 181, 5489, 1007, 353, '13', '1961-1963, 1986-2020', 'Internal Medicine (Q2)'), (5395, 'Medical Anthropology Quarterly', 15481387, 0.855, 'Q1', 55, 38, 1959, 207, 93, '2', '1983-2020', 'Anthropology (Q1); Visual Arts and Performing Arts (Q1); Medicine (miscellaneous) (Q2)'), (5396, 'Politics', 14679256, 0.855, 'Q1', 32, 56, 3179, 225, 95, '3', '1966-1995, 1997, 2006-2020', 'Political Science and International Relations (Q1)'), (5397, 'Przeglad Gastroenterologiczny', 18974317, 0.855, 'Q2', 17, 55, 1707, 403, 127, '17', '2008-2020', 'Gastroenterology (Q2)'), (5398, 'Psychological Services', 15411559, 0.855, 'Q2', 45, 101, 1796, 562, 223, '2', '2004-2020', 'Applied Psychology (Q2); Clinical Psychology (Q2)'), (5399, 'Vertebrate Zoology', 18645755, 0.855, 'Q1', 15, 43, 2688, 68, 34, '5', '2011-2019', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q1)'), (5400, 'Computer Vision and Image Understanding', 10773142, 0.854, 'Q1', 138, 93, 5085, 2376, 338, '2', '1993-2021', 'Computer Vision and Pattern Recognition (Q1); Signal Processing (Q1); Software (Q1)'), (5401, 'European Journal of Engineering Education', 3043797, 0.854, 'Q1', 44, 84, 4590, 536, 216, '3', '1975-2020', 'Education (Q1); Engineering (miscellaneous) (Q1)'), (5402, 'Gait and Posture', 9666362, 0.854, 'Q1', 148, 358, 11471, 3837, 1509, '16', '1993-2020', 'Rehabilitation (Q1); Biophysics (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)'), (5403, 'IATSS Research', 3861112, 0.854, 'Q1', 26, 56, 2223, 382, 97, '6', '2008-2020', 'Engineering (miscellaneous) (Q1); Safety Research (Q1); Urban Studies (Q1); Transportation (Q2)'), (5404, 'Studies in Continuing Education', 158037, 0.854, 'Q1', 32, 41, 1847, 144, 70, '3', '1978-1982, 1988-2020', 'Education (Q1)'), (5405, 'Wine Economics and Policy', 22133968, 0.854, 'Q1', 22, 17, 965, 186, 47, '16', '2012-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (5406, 'Connective Tissue Research', 3008207, 0.853, 'Q2', 69, 91, 4587, 606, 187, '3', '1972-2020', 'Biochemistry (Q2); Orthopedics and Sports Medicine (Q2); Rheumatology (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (5407, 'Diabetes, Metabolic Syndrome and Obesity: Tar', 11787007, 0.853, 'Q2', 43, 476, 21445, 1234, 382, '41', '2009-2020', 'Internal Medicine (Q2); Pharmacology (Q2)'), (5408, 'Integrative Biology (United Kingdom)', 17579694, 0.853, 'Q2', 70, 25, 0, 490, 178, '3', '2009-2020', 'Biochemistry (Q2); Biophysics (Q2); Medicine (miscellaneous) (Q2)'), (5409, 'International Journal of Sport and Exercise P', 1557251, 0.853, 'Q2', 32, 103, 5275, 435, 140, '3', '2008-2020', 'Applied Psychology (Q2); Social Psychology (Q2); Sports Science (Q2)'), (5410, 'Leukemia Research', 18735835, 0.853, 'Q2', 86, 117, 3235, 1165, 445, '3', '1977-2020', 'Hematology (Q2); Cancer Research (Q3); Oncology (Q3)'), (5411, 'Molecular Membrane Biology', 14645203, 0.853, 'Q3', 77, 0, 0, 42, 13, '3', '1978-1987, 1989-1990, 1993-2017, 2019', 'Cell Biology (Q3); Molecular Biology (Q3)'), (5412, 'Pediatric Clinics of North America', 313955, 0.853, 'Q1', 85, 109, 4625, 770, 253, '3', '1953-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (5413, 'Disability and Society', 13600508, 0.852, 'Q1', 76, 195, 10061, 779, 269, '3', '1994-2020', 'Health Professions (miscellaneous) (Q1); Health (social science) (Q1); Social Sciences (miscellaneous) (Q1)'), (5414, 'Estuarine, Coastal and Shelf Science', 10960015, 0.852, 'Q1', 134, 432, 28448, 3457, 1158, '2', '1981-2020', 'Aquatic Science (Q1); Oceanography (Q1)'), (5415, 'International Journal for Parasitology: Paras', 22132244, 0.852, 'Q1', 28, 120, 6752, 616, 241, '16', '2012-2020', 'Animal Science and Zoology (Q1); Infectious Diseases (Q2); Parasitology (Q2)'), (5416, 'Journal of Aerosol Science', 18791964, 0.852, 'Q1', 110, 82, 4191, 1332, 395, '3', '1970-2021', 'Environmental Engineering (Q1); Fluid Flow and Transfer Processes (Q1); Materials Science (miscellaneous) (Q1); Mechanical Engineering (Q1); Atmospheric Science (Q2); Environmental Chemistry (Q2); Pol'), (5417, 'Multibody System Dynamics', 13845640, 0.852, 'Q1', 63, 63, 2682, 505, 165, '16', '1997-2020', 'Aerospace Engineering (Q1); Computer Science Applications (Q1); Control and Optimization (Q1); Mechanical Engineering (Q1); Modeling and Simulation (Q1)'), (5418, 'Science and Public Policy', 3023427, 0.852, 'Q1', 65, 50, 3309, 520, 208, '3', '1974, 1976-1982, 1984-2020', 'Geography, Planning and Development (Q1); Public Administration (Q1); Management, Monitoring, Policy and Law (Q2)'), (5419, 'Trabajos de Prehistoria', 19883218, 0.852, 'Q1', 20, 18, 1210, 75, 56, '12', '2003-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (5420, 'Behavioural and Cognitive Psychotherapy', 14691833, 0.851, 'Q2', 65, 77, 3255, 336, 170, '3', '1993-2020', 'Clinical Psychology (Q2); Medicine (miscellaneous) (Q2)'), (5421, 'BMC Veterinary Research', 17466148, 0.851, 'Q1', 59, 479, 19491, 3473, 1274, '3', '2005-2020', 'Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (5422, 'Econometrics and Statistics', 24523062, 0.851, 'Q2', 10, 62, 2401, 211, 120, '16', '2017-2020', 'Economics and Econometrics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (5423, 'European Journal of Orthopaedic Surgery and T', 14321068, 0.851, 'Q1', 30, 233, 5980, 1177, 589, '5', '1995-2020', 'Surgery (Q1); Orthopedics and Sports Medicine (Q2)'), (5424, 'Journal of Benefit-Cost Analysis', 21522812, 0.851, 'Q1', 8, 27, 1148, 91, 43, '3', '2018-2020', 'Public Administration (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2)'), (5425, 'Journal of School Health', 224391, 0.851, 'Q1', 86, 114, 4574, 760, 318, '2', '1930-2020', 'Education (Q1); Philosophy (Q1); Public Health, Environmental and Occupational Health (Q2)'), (5426, 'Journal of Self-Governance and Management Eco', 23770996, 0.851, 'Q1', 10, 20, 530, 189, 39, '2', '2018-2020', 'Business and International Management (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Philosophy (Q1); Political Science and International Relations (Q1)'), (5427, 'Metabolic Brain Disease', 15737365, 0.851, 'Q2', 67, 130, 7499, 1894, 575, '2', '1986-2020', 'Biochemistry (Q2); Neurology (clinical) (Q2); Cellular and Molecular Neuroscience (Q4)'), (5428, 'Synthese', 397857, 0.851, 'Q1', 65, 674, 32833, 1786, 1010, '16', '1936-1939, 1946-1949, 1955-1956, 1959-1963, 1966-2020', 'Philosophy (Q1); Social Sciences (miscellaneous) (Q1)'), (5429, 'Victims and Offenders', 15564886, 0.851, 'Q1', 28, 100, 5927, 342, 158, '3', '2006-2020', 'Health (social science) (Q1); Law (Q1); Applied Psychology (Q2); Pathology and Forensic Medicine (Q2)'), (5430, 'Continuum Mechanics and Thermodynamics', 9351175, 0.85, 'Q1', 52, 146, 6790, 985, 254, '5', '1989-2020', 'Materials Science (miscellaneous) (Q1); Mechanics of Materials (Q1); Physics and Astronomy (miscellaneous) (Q1)'), (5431, 'Cyberpsychology', 18027962, 0.85, 'Q1', 23, 26, 1841, 250, 68, '31', '2011-2020', 'Communication (Q1); Social Sciences (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)'), (5432, 'International Journal of Law and Information ', 9670769, 0.85, 'Q1', 17, 10, 387, 103, 44, '3', '1993-2020', 'Law (Q1); Library and Information Sciences (Q1)'), (5433, 'International Journal of Numerical Methods fo', 9615539, 0.85, 'Q1', 52, 157, 6989, 2741, 745, '3', '1991-2020', 'Computer Science Applications (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Applied Mathematics (Q2)'), (5434, 'Joints', 22824324, 0.85, 'Q1', 19, 0, 0, 250, 99, '7', '2013-2019', 'Rehabilitation (Q1); Surgery (Q1); Orthopedics and Sports Medicine (Q2)'), (5435, 'Journal of Neuropsychology', 17486653, 0.85, 'Q2', 37, 50, 2846, 204, 87, '2', '2007-2020', 'Neuropsychology and Physiological Psychology (Q2); Behavioral Neuroscience (Q3); Cognitive Neuroscience (Q3)'), (5436, 'Journal of Phycology', 15298817, 0.85, 'Q1', 127, 141, 9309, 795, 284, '3', '1965-2020', 'Aquatic Science (Q1); Plant Science (Q1)'), (5437, 'Materials Science and Engineering B: Solid-St', 9215107, 0.85, 'Q1', 118, 253, 11515, 2170, 486, '3', '1988-2020', 'Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)'), (5438, 'Nursing Ethics', 9697330, 0.85, 'Q1', 59, 173, 7338, 960, 357, '3', '1994-2020', 'Issues, Ethics and Legal Aspects (Q1)'), (5439, 'Palaios', 8831351, 0.85, 'Q1', 77, 36, 2693, 310, 156, '2', '1986-2020', 'Ecology, Evolution, Behavior and Systematics (Q1); Paleontology (Q1)'), (5440, 'Advanced Powder Technology', 15685527, 0.849, 'Q1', 69, 456, 21050, 5093, 1039, '16', '1990-2020', 'Chemical Engineering (miscellaneous) (Q1); Mechanics of Materials (Q1)'), (5441, 'Earthquake Engineering and Engineering Vibrat', 16713664, 0.849, 'Q1', 43, 66, 2725, 467, 180, '1', '1986, 1988, 1990-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q1); Mechanical Engineering (Q1); Geophysics (Q2)'), (5442, 'European Archives of Oto-Rhino-Laryngology', 9374477, 0.849, 'Q1', 71, 666, 16606, 3143, 1317, '5', '1990-2020', 'Otorhinolaryngology (Q1); Medicine (miscellaneous) (Q2)'), (5443, 'European Journal of Cancer Care', 9615423, 0.849, 'Q3', 67, 164, 6603, 1684, 657, '3', '1992-2020', 'Oncology (Q3)'), (5444, 'Journal of Biomedical Materials Research - Pa', 15493296, 0.849, 'Q1', 150, 243, 12890, 3668, 880, '2', '2003-2020', 'Ceramics and Composites (Q1); Metals and Alloys (Q1); Biomaterials (Q2); Biomedical Engineering (Q2)'), (5445, 'Journal of Earth Science', 1867111, 0.849, 'Q1', 33, 108, 6838, 838, 313, '1', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (5446, 'Journal of Invertebrate Pathology', 222011, 0.849, 'Q1', 88, 146, 7351, 1065, 383, '2', '1965-2020', 'Ecology, Evolution, Behavior and Systematics (Q1)'), (5447, 'Journal of Macroeconomics', 1640704, 0.849, 'Q2', 48, 63, 3000, 456, 235, '16', '1979-2020', 'Economics and Econometrics (Q2)'), (5448, 'Management of Biological Invasions', 19898649, 0.849, 'Q1', 23, 47, 2456, 398, 143, '38', '2010-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q1); Management, Monitoring, Policy and Law (Q2)'), (5449, 'Archaeological Research in Asia', 23522267, 0.848, 'Q1', 11, 46, 3659, 199, 108, '16', '2015-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (5450, 'Botanical Review, The', 18749372, 0.848, 'Q1', 68, 17, 1840, 106, 40, '2', '1935-2020', 'Plant Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (5451, 'International Journal of Educational Developm', 7380593, 0.848, 'Q1', 56, 99, 4947, 581, 273, '3', '1981-2020', 'Development (Q1); Education (Q1); Sociology and Political Science (Q1)'), (5452, 'Local Environment', 14696711, 0.848, 'Q1', 62, 70, 3789, 632, 232, '3', '1996-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)'), (5453, 'Marine Drugs', 16603397, 0.848, 'Q2', 110, 676, 34488, 7937, 1620, '19', '2004-2020', 'Drug Discovery (Q2)'), (5454, 'Phonology', 14698188, 0.848, 'Q1', 43, 26, 1926, 70, 61, '3', '1984, 1988-1989, 1991-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (5455, 'Psychology of Popular Media Culture', 21604142, 0.848, 'Q1', 12, 2, 102, 379, 129, '2', '2016-2020', 'Communication (Q1); Cultural Studies (Q1); Applied Psychology (Q2)'), (5456, 'Seminars in Pediatric Surgery', 10558586, 0.848, 'Q1', 65, 76, 3650, 598, 174, '3', '1992-2020', 'Pediatrics, Perinatology and Child Health (Q1); Surgery (Q1)'), (5457, 'BMC Nephrology', 14712369, 0.847, 'Q2', 55, 523, 17745, 3044, 1231, '3', '2000-2020', 'Nephrology (Q2)'), (5458, 'Eating Disorders', 1532530, 0.847, 'Q2', 52, 58, 2573, 312, 129, '2', '1993-2020', 'Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (5459, 'Electronic Markets', 14228890, 0.847, 'Q1', 35, 89, 6761, 665, 98, '5', '2009-2020', 'Business and International Management (Q1); Computer Science Applications (Q1); Management of Technology and Innovation (Q1); Economics and Econometrics (Q2); Marketing (Q2)'), (5460, 'Environmental Nanotechnology, Monitoring and ', 22151532, 0.847, 'Q1', 30, 118, 6834, 1091, 203, '16', '2014-2020', 'Water Science and Technology (Q1); Management, Monitoring, Policy and Law (Q2); Materials Science (miscellaneous) (Q2); Pollution (Q2); Waste Management and Disposal (Q2)'), (5461, 'Exceptionality', 9362835, 0.847, 'Q1', 19, 47, 2367, 120, 58, '2', '1990-1994, 2010-2020', 'Education (Q1); Developmental and Educational Psychology (Q2)'), (5462, 'Food Webs', 23522496, 0.847, 'Q1', 15, 43, 2683, 224, 91, '16', '2014-2020', 'Ecology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (5463, 'Navigation, Journal of the Institute of Navig', 281522, 0.847, 'Q1', 46, 52, 1495, 491, 135, '2', '1946-2020', 'Aerospace Engineering (Q1); Electrical and Electronic Engineering (Q1)'), (5464, 'Pesquisa odontologica brasileira = Brazilian ', 15177491, 0.847, 'Q1', 45, 135, 4187, 961, 357, '14', '2001-2020', 'Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (5465, 'Wound Repair and Regeneration', 10671927, 0.847, 'Q1', 109, 96, 3445, 759, 227, '3', '1993-2020', 'Dermatology (Q1); Surgery (Q1)'), (5466, 'Asian Journal of Organic Chemistry', 21935807, 0.846, 'Q2', 44, 255, 18903, 2637, 898, '5', '2012-2020', 'Organic Chemistry (Q2)'), (5467, 'Career Development Quarterly', 21610045, 0.846, 'Q2', 53, 26, 1271, 217, 81, '2', '1986-2020', 'Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2); Psychology (miscellaneous) (Q2)'), (5468, 'Hepatobiliary and Pancreatic Diseases Interna', 14993872, 0.846, 'Q2', 48, 136, 3490, 698, 221, '37', '2002-2020', 'Gastroenterology (Q2); Hepatology (Q3)'), (5469, 'Intelligent Systems in Accounting, Finance an', 15501949, 0.846, 'Q1', 11, 15, 744, 205, 41, '3', '2015-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1)'), (5470, 'International Journal of Nephrology and Renov', 11787058, 0.846, 'Q2', 27, 41, 1820, 275, 95, '41', '2009-2020', 'Nephrology (Q2)'), (5471, 'Journal of Circulating Biomarkers', 18494544, 0.846, 'Q2', 11, 0, 0, 67, 20, '3', '2014-2019', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q2)'), (5472, 'Molecular Imaging and Biology', 15361632, 0.846, 'Q2', 68, 177, 6744, 1022, 347, '2', '2002-2020', 'Radiology, Nuclear Medicine and Imaging (Q2); Cancer Research (Q3); Oncology (Q3)'), (5473, 'Tissue Engineering - Part C: Methods', 19373392, 0.846, 'Q2', 70, 79, 2611, 775, 237, '2', '2008-2020', 'Bioengineering (Q2); Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)'), (5474, 'Tourism and Hospitality Research', 14673584, 0.846, 'Q1', 39, 50, 2930, 380, 117, '3', '2004-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (5475, 'Veterinary Parasitology', 3044017, 0.846, 'Q1', 124, 204, 10441, 2103, 746, '16', '1975-2020', 'Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Parasitology (Q2)'), (5476, 'Birth Defects Research', 24721727, 0.845, 'Q1', 17, 148, 8693, 917, 375, '3', '2017-2020', 'Pediatrics, Perinatology and Child Health (Q1); Embryology (Q2); Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2); Developmental Biology (Q3)'), (5477, 'Clinical Spine Surgery', 23800194, 0.845, 'Q1', 23, 168, 4123, 1231, 617, '2', '2016-2020', 'Surgery (Q1); Neurology (clinical) (Q2); Orthopedics and Sports Medicine (Q2)'), (5478, 'Dentomaxillofacial Radiology', 250832, 0.845, 'Q1', 73, 89, 2695, 626, 251, '3', '1972-1973, 1976-2020', 'Dentistry (miscellaneous) (Q1); Otorhinolaryngology (Q1); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5479, 'Electric Power Systems Research', 3787796, 0.845, 'Q1', 122, 643, 20949, 5369, 1158, '16', '1977-2021', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1)'), (5480, 'Environmental Science and Pollution Research', 9441344, 0.845, 'Q2', 113, 3985, 230965, 35983, 8744, '5', '1994-2020', 'Environmental Chemistry (Q2); Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Pollution (Q2)'), (5481, 'European Journal of Clinical Pharmacology', 316970, 0.845, 'Q2', 108, 226, 7489, 1487, 520, '5', '1968-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (5482, 'Frontiers of Physics', 20950462, 0.845, 'Q1', 42, 62, 4567, 1120, 297, '2', '2011-2020', 'Physics and Astronomy (miscellaneous) (Q1)'), (5483, 'Geotechnique Letters', 20452543, 0.845, 'Q1', 28, 39, 1040, 327, 157, '3', '2011-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geotechnical Engineering and Engineering Geology (Q1)'), (5484, 'International Journal of Testing', 15305058, 0.845, 'Q1', 19, 13, 569, 128, 50, '3', '2010-2020', 'Education (Q1); Modeling and Simulation (Q1); Social Psychology (Q2)'), (5485, 'Journal of Applied Genetics', 12341983, 0.845, 'Q2', 51, 62, 2849, 490, 163, '5', '1996-2020', 'Genetics (Q2); Medicine (miscellaneous) (Q2)'), (5486, 'Journal of Electroanalytical Chemistry', 15726657, 0.845, 'Q1', 158, 938, 44412, 9532, 2250, '16', '1959-2020', 'Chemical Engineering (miscellaneous) (Q1); Analytical Chemistry (Q2); Electrochemistry (Q2)'), (5487, 'Journal of Fourier Analysis and Applications', 10695869, 0.845, 'Q1', 61, 90, 2701, 495, 235, '2', '1994-2020', 'Mathematics (miscellaneous) (Q1); Analysis (Q2); Applied Mathematics (Q2)'), (5488, 'Journal of Immigrant and Refugee Studies', 15562956, 0.845, 'Q1', 25, 55, 2873, 246, 76, '2', '2006-2020', 'Demography (Q1); Geography, Planning and Development (Q1); Health (social science) (Q1)'), (5489, 'Journal of Macromarketing', 2761467, 0.845, 'Q2', 55, 64, 4953, 321, 81, '2', '1981-2020', 'Marketing (Q2)'), (5490, 'Pharmacogenomics and Personalized Medicine', 11787066, 0.845, 'Q2', 28, 70, 3488, 329, 87, '41', '2009-2020', 'Molecular Medicine (Q2); Pharmacology (Q2)'), (5491, 'Popular Communication', 15405702, 0.845, 'Q1', 19, 35, 1687, 146, 63, '3', '2010-2020', 'Communication (Q1)'), (5492, 'Reproductive Toxicology', 8906238, 0.845, 'Q2', 112, 217, 9610, 1563, 438, '2', '1987-2020', 'Toxicology (Q2)'), (5493, 'Biochemical Engineering Journal', 1369703, 0.844, 'Q1', 124, 296, 14103, 3327, 818, '16', '1998-2020', 'Environmental Engineering (Q1); Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)'), (5494, 'Blood Cells, Molecules, and Diseases', 10960961, 0.844, 'Q2', 88, 79, 2187, 604, 215, '2', '1995-2021', 'Hematology (Q2); Molecular Medicine (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (5495, 'Cretaceous Research', 1095998, 0.844, 'Q1', 69, 308, 19897, 1597, 730, '2', '1980-2020', 'Paleontology (Q1)'), (5496, 'EcoHealth', 16129202, 0.844, 'Q1', 58, 45, 2005, 604, 219, '2', '2004-2020', 'Ecology (Q1); Health, Toxicology and Mutagenesis (Q2)'), (5497, 'Economics Letters', 1651765, 0.844, 'Q1', 100, 433, 5889, 2684, 1207, '16', '1978-2020', 'Finance (Q1); Economics and Econometrics (Q2)'), (5498, 'Journal of Optometry', 19891342, 0.844, 'Q2', 25, 64, 2074, 277, 111, '12', '2008-2020', 'Optometry (Q2)'), (5499, 'Journal of Thermal Stresses', 1495739, 0.844, 'Q1', 58, 103, 3748, 939, 270, '3', '1978-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2)'), (5500, 'Modern Trends in Pharmacopsychiatry', 16622685, 0.844, 'Q2', 14, 0, 0, 29, 12, '19', '2009-2010, 2013, 2015, 2017', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2); Psychiatry and Mental Health (Q2)'), (5501, 'Natural Language and Linguistic Theory', 167806, 0.844, 'Q1', 51, 49, 4678, 107, 101, '16', '1983-2001, 2003-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (5502, 'Nonprofit Management &amp; Leadership', 10486682, 0.844, 'Q1', 54, 43, 2506, 285, 98, '2', '1990-2020', 'Strategy and Management (Q1)'), (5503, 'Biochemistry and Cell Biology', 8298211, 0.843, 'Q2', 91, 81, 3346, 839, 263, '9', '1986-2020', 'Biochemistry (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (5504, 'Curriculum Journal', 9585176, 0.843, 'Q1', 36, 70, 3216, 235, 86, '3', '1990-2020', 'Education (Q1)'), (5505, 'Earth and Space Science', 23335084, 0.843, 'Q1', 23, 254, 12751, 940, 281, '2', '2014-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q1)'), (5506, 'Hydrobiologia', 15735117, 0.843, 'Q1', 141, 349, 25889, 3134, 1235, '16', '1948-2020', 'Aquatic Science (Q1)'), (5507, 'Journal of Algebraic Combinatorics', 9259899, 0.843, 'Q1', 46, 108, 2457, 291, 166, '16', '1992-2020', 'Algebra and Number Theory (Q1); Discrete Mathematics and Combinatorics (Q1)'), (5508, 'SIAM Journal on Discrete Mathematics', 10957146, 0.843, 'Q1', 66, 125, 3037, 784, 401, '2', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (5509, 'Biodegradation', 9239820, 0.842, 'Q1', 77, 29, 1659, 416, 113, '16', '1990-2020', 'Environmental Engineering (Q1); Bioengineering (Q2); Environmental Chemistry (Q2); Pollution (Q2); Microbiology (Q3)'), (5510, 'Cell Biology and Toxicology', 15736822, 0.842, 'Q2', 61, 67, 3777, 563, 102, '16', '1984-2020', 'Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2); Cell Biology (Q3)'), (5511, 'Econometrics', 22251146, 0.842, 'Q2', 17, 43, 1827, 221, 135, '19', '2013-2020', 'Economics and Econometrics (Q2)'), (5512, 'European Journal of Obstetrics, Gynecology an', 282243, 0.842, 'Q2', 99, 641, 17348, 2815, 1129, '42', '1971-2020', 'Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)'), (5513, 'Journal of Urban Design', 14699664, 0.842, 'Q1', 45, 64, 2856, 331, 137, '3', '1996-2020', 'Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q1); Urban Studies (Q1)'), (5514, 'Journal of Vacation Marketing', 13567667, 0.842, 'Q1', 63, 31, 2631, 272, 84, '3', '1994-2020', 'Tourism, Leisure and Hospitality Management (Q1)'), (5515, 'Nutrition Research', 18790739, 0.842, 'Q2', 92, 117, 7003, 1186, 350, '2', '1981-2020', 'Endocrinology (Q2); Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)'), (5516, 'Geomechanics for Energy and the Environment', 23523808, 0.841, 'Q1', 17, 38, 2150, 250, 68, '16', '2015-2020', 'Geotechnical Engineering and Engineering Geology (Q1); Safety, Risk, Reliability and Quality (Q1); Computers in Earth Sciences (Q2)'), (5517, 'Immunologic Research', 257277, 0.841, 'Q3', 87, 51, 2184, 806, 269, '2', '1986-2020', 'Immunology (Q3)'), (5518, 'International Economics', 21107017, 0.841, 'Q1', 18, 51, 2693, 380, 112, '16', '2013-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)'), (5519, 'Perspectives in Public Health', 17579139, 0.841, 'Q2', 32, 103, 1839, 455, 144, '3', '1951, 2009-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (5520, 'Applied Clinical Informatics', 18690327, 0.84, 'Q1', 27, 98, 3328, 699, 284, '5', '2009-2020', 'Computer Science Applications (Q1); Health Informatics (Q2); Health Information Management (Q2)'), (5521, 'Biosensors and Bioelectronics: X', 25901370, 0.84, 'Q2', 4, 4, 151, 51, 9, '3', '2019-2020', 'Biomedical Engineering (Q2); Biophysics (Q2); Biotechnology (Q2); Electrochemistry (Q2)'), (5522, 'Clinical Toxicology', 15569519, 0.84, 'Q2', 96, 264, 5719, 1105, 333, '3', '1968-1998, 2005-2020', 'Medicine (miscellaneous) (Q2); Toxicology (Q2)'), (5523, 'Engineering Failure Analysis', 13506307, 0.84, 'Q1', 75, 653, 21745, 4289, 1219, '16', '1994-2020', 'Aerospace Engineering (Q1); Automotive Engineering (Q1); Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Safe'), (5524, 'European Journal of Pharmaceutical Sciences', 18790720, 0.84, 'Q1', 136, 371, 20251, 5912, 1326, '16', '1993-2020', 'Pharmaceutical Science (Q1)'), (5525, 'Functional and Integrative Genomics', 14387948, 0.84, 'Q2', 74, 62, 3874, 583, 174, '5', '2000-2020', 'Genetics (Q2); Medicine (miscellaneous) (Q2)'), (5526, 'Ground Water', 17467, 0.84, 'Q1', 94, 116, 3866, 639, 250, '2', '1963-2020', 'Water Science and Technology (Q1); Computers in Earth Sciences (Q2)'), (5527, 'International Dental Journal', 206539, 0.84, 'Q1', 64, 81, 3037, 512, 176, '2', '1960-1962, 1965-2020', 'Dentistry (miscellaneous) (Q1)'), (5528, 'International Journal of Behavioral Medicine', 15327558, 0.84, 'Q2', 64, 101, 5401, 606, 231, '2', '1994-2020', 'Applied Psychology (Q2)'), (5529, 'International Nursing Review', 14667657, 0.84, 'Q1', 51, 90, 2679, 578, 193, '3', '1960-2020', 'Nursing (miscellaneous) (Q1)'), (5530, 'Journal of Archaeological Science: Reports', 2352409, 0.84, 'Q1', 26, 527, 35578, 2514, 1365, '16', '2015-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)'), (5531, 'Journal of Mathematical Economics', 3044068, 0.84, 'Q2', 39, 86, 2570, 217, 247, '16', '1974-2020', 'Applied Mathematics (Q2); Economics and Econometrics (Q2)'), (5532, 'Metallurgical and Materials Transactions B', 10735615, 0.84, 'Q1', 91, 269, 10542, 2251, 902, '2', '1970-1971, 1973, 1975-1981, 1983-1991, 1994-2020', 'Condensed Matter Physics (Q1); Materials Chemistry (Q1); Mechanics of Materials (Q1); Metals and Alloys (Q1)'), (5533, 'Royal Society Open Science', 20545703, 0.84, 'Q1', 51, 659, 36013, 7656, 2362, '3', '2014-2020', 'Multidisciplinary (Q1)'), (5534, 'Solid State Ionics', 1672738, 0.84, 'Q1', 193, 265, 11026, 3419, 995, '16', '1980-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2)'), (5535, 'Telecommunications Policy', 3085961, 0.84, 'Q1', 69, 87, 5352, 831, 212, '3', '1976-2020', 'Electrical and Electronic Engineering (Q1); Human Factors and Ergonomics (Q1); Information Systems (Q1)'), (5536, 'Ultrasonography', 22885919, 0.84, 'Q2', 23, 35, 1248, 394, 113, '13', '2014-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (5537, 'Yale Law Journal', 440094, 0.84, 'Q1', 76, 38, 8, 217, 100, '2', '1973-1975, 1977-1979, 1981, 1983, 1985-1991, 1994, 1996-2020', 'Law (Q1)'), (5538, 'Curriculum Studies in Health and Physical Edu', 25742981, 0.839, 'Q1', 17, 22, 897, 114, 53, '2', '2018-2020', 'Education (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2)'), (5539, 'Fern Gazette', 3080838, 0.839, 'Q1', 10, 0, 0, 7, 1, '3', '1982-1985, 1994-1996, 1998-2010, 2012-2015, 2018', 'Plant Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (5540, 'International Regional Science Review', 1600176, 0.839, 'Q1', 54, 39, 2239, 187, 68, '2', '1975-1984, 1986-2020', 'Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (5541, 'Journal of Physiology and Pharmacology', 8675910, 0.839, 'Q2', 77, 84, 3559, 775, 271, '17', '1991-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2); Physiology (Q2)'), (5542, 'Memorias do Instituto Oswaldo Cruz', 16788060, 0.839, 'Q2', 89, 98, 3452, 812, 321, '14', '1945, 1948, 1950-1971, 1974-1976, 1980-2020', 'Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2)'), (5543, 'Mycotoxin Research', 18671632, 0.839, 'Q2', 36, 42, 2092, 468, 106, '5', '1985-2020', 'Biotechnology (Q2); Toxicology (Q2); Microbiology (Q3)'), (5544, 'Pediatric Exercise Science', 15432920, 0.839, 'Q1', 63, 32, 1257, 396, 177, '2', '1996-2020', 'Pediatrics, Perinatology and Child Health (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)'), (5545, 'Vector-Borne and Zoonotic Diseases', 15303667, 0.839, 'Q2', 73, 137, 5236, 858, 368, '2', '2001-2020', 'Infectious Diseases (Q2); Microbiology (Q3); Virology (Q3)'), (5546, 'Food and Bioproducts Processing', 9603085, 0.838, 'Q1', 71, 186, 8676, 1674, 374, '3', '1991-2020', 'Chemical Engineering (miscellaneous) (Q1); Food Science (Q1); Biochemistry (Q2); Biotechnology (Q2)'), (5547, 'Joint Commission Journal on Quality and Patie', 15537250, 0.838, 'Q1', 79, 106, 2626, 538, 242, '2', '2005-2020', 'Leadership and Management (Q1)'), (5548, 'Journal of Infection and Chemotherapy', 14377780, 0.838, 'Q2', 61, 276, 6393, 1187, 560, '16', '1995-2020', 'Infectious Diseases (Q2); Microbiology (medical) (Q2); Pharmacology (medical) (Q2)'), (5549, 'Journal of Mammalogy', 222372, 0.838, 'Q1', 98, 127, 8447, 820, 382, '2', '1945-1949, 1965-1978, 1980, 1982-1984, 1987-2020', 'Animal Science and Zoology (Q1); Ecology (Q1); Nature and Landscape Conservation (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q2)'), (5550, 'Journal of Marketing Communications', 14664445, 0.838, 'Q1', 47, 76, 5284, 455, 132, '3', '1995-2020', 'Business and International Management (Q1); Marketing (Q2)'), (5551, 'Revista de la Real Academia de Ciencias Exact', 15791505, 0.838, 'Q1', 23, 201, 5512, 978, 445, '7', '2008-2020', 'Algebra and Number Theory (Q1); Analysis (Q2); Applied Mathematics (Q2); Computational Mathematics (Q2); Geometry and Topology (Q2)'), (5552, 'Vascular Medicine', 1358863, 0.838, 'Q2', 73, 111, 3106, 505, 203, '3', '1992-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (5553, 'ACM Transactions on Computing Education', 19466226, 0.837, 'Q1', 32, 24, 1708, 392, 87, '2', '2010-2020', 'Computer Science (miscellaneous) (Q1); Education (Q1)'), (5554, 'BMC Musculoskeletal Disorders', 14712474, 0.837, 'Q2', 96, 834, 28829, 4300, 1634, '3', '2000-2020', 'Orthopedics and Sports Medicine (Q2); Rheumatology (Q2)'), (5555, 'Dependence Modeling', 23002298, 0.837, 'Q1', 10, 23, 691, 100, 57, '17', '2013-2020', 'Modeling and Simulation (Q1); Applied Mathematics (Q2); Statistics and Probability (Q2)'), (5556, 'International Journal of Developmental Biolog', 2146282, 0.837, 'Q2', 103, 50, 3262, 434, 236, '12', '1989-2020', 'Embryology (Q2); Developmental Biology (Q3)'), (5557, 'Journal of Feline Medicine and Surgery', 1098612, 0.837, 'Q1', 61, 188, 5975, 847, 450, '3', '1999-2020', 'Small Animals (Q1)'), (5558, 'Journal of Nutrition Education and Behavior', 17088259, 0.837, 'Q2', 81, 159, 4761, 1028, 386, '2', '1996-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (5559, 'Social Politics', 10724745, 0.837, 'Q1', 55, 20, 1156, 128, 67, '3', '1994-2020', 'Gender Studies (Q1); Social Sciences (miscellaneous) (Q1)'), (5560, 'Tuberculosis and Respiratory Diseases', 17383536, 0.837, 'Q2', 24, 51, 1796, 347, 127, '13', '1980-2020', 'Infectious Diseases (Q2); Pulmonary and Respiratory Medicine (Q2)'), (5561, 'BMC Biotechnology', 14726750, 0.836, 'Q2', 80, 64, 2977, 776, 271, '3', '2001-2020', 'Biotechnology (Q2)'), (5562, 'Current Eye Research', 14602202, 0.836, 'Q2', 81, 291, 11675, 1438, 634, '3', '1981-2020', 'Ophthalmology (Q2); Sensory Systems (Q3); Cellular and Molecular Neuroscience (Q4)'), (5563, 'European Journal of Criminology', 14773708, 0.836, 'Q1', 52, 106, 6910, 389, 158, '2', '2004-2020', 'Law (Q1)'), (5564, 'Frontiers of Mechanical Engineering', 20950233, 0.836, 'Q1', 27, 49, 1763, 664, 137, '2', '2011-2020', 'Mechanical Engineering (Q1)'), (5565, 'International Journal of Hematology', 9255710, 0.836, 'Q2', 75, 243, 6364, 1220, 548, '6', '1991-2020', 'Hematology (Q2)'), (5566, 'International Journal of Inclusive Education', 14645173, 0.836, 'Q1', 47, 193, 9721, 747, 319, '3', '1997-2020', 'Arts and Humanities (miscellaneous) (Q1); Education (Q1)'), (5567, 'International Journal of Sport Policy and Pol', 19406940, 0.836, 'Q1', 28, 48, 3080, 376, 134, '3', '2010-2020', 'Social Sciences (miscellaneous) (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (5568, 'Journal of Thoracic Imaging', 8835993, 0.836, 'Q2', 57, 103, 3357, 427, 170, '2', '1985-2020', 'Pulmonary and Respiratory Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5569, 'Nanoscale and Microscale Thermophysical Engin', 15567265, 0.836, 'Q1', 52, 14, 618, 202, 62, '3', '2006-2020', 'Atomic and Molecular Physics, and Optics (Q1); Condensed Matter Physics (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)'), (5570, 'P and T', 10521372, 0.836, 'Q2', 45, 0, 0, 679, 115, '2', '1990-2019', 'Pharmacology (medical) (Q2)'), (5571, 'Protoplasma', 16156102, 0.836, 'Q1', 74, 135, 8114, 1413, 459, '28', '1926-1943, 1949-2020', 'Plant Science (Q1); Medicine (miscellaneous) (Q2); Cell Biology (Q3)'), (5572, 'Research in Nursing and Health', 1098240, 0.836, 'Q1', 85, 77, 2809, 462, 164, '2', '1978-2020', 'Nursing (miscellaneous) (Q1)'), (5573, 'Soil Science Society of America Journal', 14350661, 0.836, 'Q1', 168, 147, 8130, 1222, 492, '2', '1976-2020', 'Soil Science (Q1)'), (5574, 'Solid Earth Sciences', 2451912, 0.836, 'Q1', 9, 16, 971, 122, 36, '1', '2016-2020', 'Earth-Surface Processes (Q1); Geology (Q1); Geotechnical Engineering and Engineering Geology (Q1); Geochemistry and Petrology (Q2); Geophysics (Q2)'), (5575, 'Urban Policy and Research', 14767244, 0.836, 'Q1', 40, 25, 1360, 256, 92, '3', '1982-2020', 'Geography, Planning and Development (Q1); Urban Studies (Q1)'), (5576, 'Clinical Rheumatology', 14349949, 0.835, 'Q2', 82, 585, 18170, 3291, 1209, '3', '1982-2020', 'Medicine (miscellaneous) (Q2); Rheumatology (Q2)'), (5577, 'Current Issues in Molecular Biology', 14673037, 0.835, 'Q2', 53, 57, 8088, 290, 104, '3', '1999-2021', 'Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2); Microbiology (Q3); Molecular Biology (Q3)'), (5578, 'Earth, Planets and Space', 18805981, 0.835, 'Q1', 74, 185, 8497, 1199, 460, '19', '1993, 1996-2020', 'Geology (Q1); Space and Planetary Science (Q2)'), (5579, 'European Journal of Cultural Studies', 13675494, 0.835, 'Q1', 44, 94, 4652, 262, 149, '3', '1998-2020', 'Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Education (Q1)'), (5580, 'German Politics', 9644008, 0.835, 'Q1', 17, 57, 3075, 161, 91, '3', '1992-1995, 2010-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (5581, 'HIP International', 17246067, 0.835, 'Q1', 37, 252, 7833, 619, 335, '7', '1997-2020', 'Surgery (Q1); Orthopedics and Sports Medicine (Q2)'), (5582, 'Journal of African Economies', 9638024, 0.835, 'Q1', 47, 18, 786, 125, 85, '3', '1992-2020', 'Development (Q1); Economics and Econometrics (Q2)'), (5583, 'Journal of Optical Communications and Network', 19430620, 0.835, 'Q1', 65, 87, 2890, 2414, 426, '2', '2009-2020', 'Computer Networks and Communications (Q1)'), (5584, 'Journal of Tissue Engineering and Regenerativ', 19327005, 0.835, 'Q2', 72, 157, 7878, 3261, 883, '3', '2006-2020', 'Biomaterials (Q2); Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)'), (5585, 'Public Performance &amp; Management Review', 15309576, 0.835, 'Q1', 25, 76, 5243, 283, 113, '2', '2011-2020', 'Public Administration (Q1); Strategy and Management (Q1)'), (5586, 'Research in Transportation Business and Manag', 22105395, 0.835, 'Q1', 32, 118, 7199, 557, 152, '16', '2011-2020', 'Business and International Management (Q1); Decision Sciences (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Strategy and Management (Q1); Tourism, Leisure and Hospita'), (5587, 'Tobacco Induced Diseases', 16179625, 0.835, 'Q1', 27, 93, 2869, 462, 201, '3', '2009-2020', 'Health (social science) (Q1); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5588, 'Journal of Applied Behavioral Science, The', 15526879, 0.834, 'Q2', 66, 54, 2837, 169, 57, '2', '1965-2020', 'Applied Psychology (Q2)'), (5589, 'Journal of Experimental Zoology Part A: Ecolo', 24715646, 0.834, 'Q1', 11, 78, 5092, 365, 177, '2', '2017-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q2); Physiology (Q2); Molecular Biology (Q3)'), (5590, 'Journal of Field Archaeology', 934690, 0.834, 'Q1', 36, 47, 3977, 216, 119, '3', '1974-1999, 2003-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (5591, 'Structures', 23520124, 0.834, 'Q1', 22, 695, 28798, 1218, 377, '3', '2015-2020', 'Architecture (Q1); Building and Construction (Q1); Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)'), (5592, 'Sustainable and Resilient Infrastructure', 23789689, 0.834, 'Q1', 14, 53, 3390, 211, 51, '2', '2016-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Geography, Planning and Development (Q1); Safety, Risk, Reliability and Quality (Q1)'), (5593, 'Toxicology in Vitro', 18793177, 0.834, 'Q2', 107, 270, 13018, 2710, 780, '3', '1987-2020', 'Medicine (miscellaneous) (Q2); Toxicology (Q2)'), (5594, 'Acta Geographica Sinica', 3755444, 0.833, 'Q1', 57, 184, 8812, 1454, 513, '1', '1978-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (5595, 'Asian Spine Journal', 19767846, 0.833, 'Q1', 30, 123, 3221, 822, 385, '13', '2011-2020', 'Surgery (Q1); Orthopedics and Sports Medicine (Q2)'), (5596, 'Counseling Psychologist', 15523861, 0.833, 'Q2', 78, 43, 2291, 258, 132, '2', '1969-2020', 'Applied Psychology (Q2)'), (5597, 'Foodborne Pathogens and Disease', 15567125, 0.833, 'Q1', 69, 101, 3758, 959, 302, '2', '2004-2020', 'Animal Science and Zoology (Q1); Food Science (Q1); Applied Microbiology and Biotechnology (Q2); Microbiology (Q3)'), (5598, 'Global Public Health', 17441706, 0.833, 'Q2', 43, 226, 11001, 836, 378, '3', '2006-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (5599, 'Journal of Eastern African Studies', 17531055, 0.833, 'Q1', 26, 42, 2040, 180, 116, '3', '2009-2020', 'Anthropology (Q1); Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (5600, 'Journal of Engineering and Technology Managem', 16084799, 0.833, 'Q1', 65, 25, 2179, 281, 69, '16', '1989-2020', 'Engineering (miscellaneous) (Q1); Industrial Relations (Q1); Information Systems and Management (Q1); Strategy and Management (Q1); Management Science and Operations Research (Q2)'), (5601, 'Journal of Global Fashion Marketing', 20932685, 0.833, 'Q1', 20, 23, 1304, 191, 72, '3', '2010-2020', 'Cultural Studies (Q1); Management of Technology and Innovation (Q1); Strategy and Management (Q1); Marketing (Q2)'), (5602, 'Molecular Breeding', 13803743, 0.833, 'Q1', 101, 107, 5741, 1198, 468, '16', '1995-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1); Biotechnology (Q2); Genetics (Q3); Molecular Biology (Q3)'), (5603, 'Child: Care, Health and Development', 3051862, 0.832, 'Q1', 82, 87, 3090, 760, 294, '3', '1975-2020', 'Pediatrics, Perinatology and Child Health (Q1); Developmental and Educational Psychology (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5604, 'Current Opinion in Organ Transplantation', 15317013, 0.832, 'Q2', 51, 107, 1302, 691, 294, '2', '2001-2020', 'Transplantation (Q2); Immunology and Allergy (Q3)'), (5605, 'Flexible and Printed Electronics', 20588585, 0.832, 'Q1', 18, 58, 3015, 472, 141, '2', '2016-2020', 'Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (5606, 'International Journal of Audiology', 14992027, 0.832, 'Q1', 81, 191, 7983, 860, 371, '3', '1962-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Speech and Hearing (Q2)'), (5607, 'Interventional Cardiology Review', 17561485, 0.832, 'Q2', 11, 15, 656, 185, 72, '3', '2011-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (5608, 'Journal of Materials Research and Technology', 22387854, 0.832, 'Q1', 44, 1077, 46743, 3830, 777, '14', '2012-2020', 'Ceramics and Composites (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1); Biomaterials (Q2)'), (5609, 'Review of Policy Research', 1541132, 0.832, 'Q1', 45, 35, 2770, 234, 108, '3', '1981-1995, 1998-2020', 'Geography, Planning and Development (Q1); Public Administration (Q1); Management, Monitoring, Policy and Law (Q2)'), (5610, 'Sustainable Energy, Grids and Networks', 23524677, 0.832, 'Q1', 27, 80, 3336, 653, 144, '3', '2015-2020', 'Control and Systems Engineering (Q1); Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (5611, 'Current protocols in plant biology', 23798068, 0.831, 'Q1', 7, 19, 525, 84, 48, '2', '2017-2020', 'Plant Science (Q1); Biochemistry (Q2); Genetics (Q3); Molecular Biology (Q3)'), (5612, 'IEEE Intelligent Transportation Systems Magaz', 19411197, 0.831, 'Q1', 42, 125, 1584, 829, 150, '2', '2009-2020', 'Automotive Engineering (Q1); Computer Science Applications (Q1); Mechanical Engineering (Q1)'), (5613, 'International Journal of Colorectal Disease', 1791958, 0.831, 'Q2', 88, 291, 8221, 1798, 725, '5', '1986-2020', 'Gastroenterology (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (5614, 'International Journal of Food Science and Tec', 9505423, 0.831, 'Q1', 96, 486, 19623, 3250, 947, '3', '1966-2020', 'Food Science (Q1); Industrial and Manufacturing Engineering (Q1)'), (5615, 'Journal of Advertising Research', 218499, 0.831, 'Q1', 86, 11, 532, 305, 101, '3', '1972, 1996-2020', 'Communication (Q1); Marketing (Q2)'), (5616, 'Journal of Symbolic Logic', 224812, 0.831, 'Q1', 47, 58, 1130, 304, 242, '3', '1996-2020', 'Logic (Q1); Philosophy (Q1)'), (5617, 'Pediatric Nephrology', 1432198, 0.831, 'Q1', 107, 370, 13184, 1937, 751, '5', '1987-2020', 'Pediatrics, Perinatology and Child Health (Q1); Nephrology (Q2)'), (5618, 'Urolithiasis', 21947236, 0.831, 'Q2', 61, 85, 2207, 563, 207, '5', '2013-2020', 'Urology (Q2)'), (5619, 'Boletin del Museo Chileno de Arte Precolombin', 7161530, 0.83, 'Q1', 6, 25, 1310, 42, 45, '45', '2014-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Visual Arts and Performing Arts (Q1)'), (5620, 'Cardiovascular Diagnosis and Therapy', 22233660, 0.83, 'Q2', 22, 190, 9046, 841, 290, '1', '2016-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (5621, 'Cognitive Neurodynamics', 18714080, 0.83, 'Q3', 41, 78, 4763, 682, 142, '16', '2007-2020', 'Cognitive Neuroscience (Q3)'), (5622, 'Computer Science Education', 17445175, 0.83, 'Q1', 32, 31, 1528, 188, 47, '3', '1988-1995, 1999, 2002, 2004-2020', 'Computer Science (miscellaneous) (Q1); Education (Q1)'), (5623, 'Environmental Technology Reviews', 21622523, 0.83, 'Q1', 19, 8, 984, 154, 32, '3', '2012-2020', 'Environmental Engineering (Q1); Water Science and Technology (Q1); Pollution (Q2); Waste Management and Disposal (Q2)'), (5624, 'European Constitutional Law Review', 15740196, 0.83, 'Q1', 25, 30, 975, 132, 103, '3', '2005-2020', 'Law (Q1)'), (5625, 'Infant Behavior and Development', 1636383, 0.83, 'Q2', 82, 80, 5038, 561, 244, '3', '1978-2020', 'Developmental and Educational Psychology (Q2)'), (5626, 'Journal of Applied Clinical Medical Physics', 15269914, 0.83, 'Q1', 48, 314, 7531, 1444, 664, '2', '2000-2020', 'Instrumentation (Q1); Radiation (Q1); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5627, 'Journal of Homosexuality', 15403602, 0.83, 'Q1', 72, 173, 9462, 878, 318, '2', '1974, 1976-2020', 'Education (Q1); Gender Studies (Q1); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2); Social Psychology (Q2)'), (5628, 'Neuropeptides', 15322785, 0.83, 'Q2', 69, 65, 4856, 584, 208, '2', '1980-2020', 'Endocrinology (Q2); Medicine (miscellaneous) (Q2); Endocrine and Autonomic Systems (Q3); Neurology (Q3); Cellular and Molecular Neuroscience (Q4)'), (5629, 'Physical Review Accelerators and Beams', 24699888, 0.83, 'Q1', 27, 236, 8613, 1549, 670, '2', '2016-2020', 'Physics and Astronomy (miscellaneous) (Q1); Surfaces and Interfaces (Q1); Nuclear and High Energy Physics (Q2)'), (5630, 'Teaching Education', 14701286, 0.83, 'Q1', 32, 56, 2788, 153, 83, '3', '1987-1988, 1990-1995, 1998, 2000-2001, 2003-2020', 'Education (Q1)'), (5631, 'Tropical Medicine and Health', 13488945, 0.83, 'Q2', 21, 95, 3510, 317, 139, '3', '2004-2020', 'Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5632, 'Applied Mathematical Finance', 1350486, 0.829, 'Q1', 33, 16, 507, 94, 57, '3', '1994-1997, 1999-2020', 'Finance (Q1); Applied Mathematics (Q2)'), (5633, 'Biological Procedures Online', 14809222, 0.829, 'Q2', 37, 24, 1575, 156, 61, '3', '1998-1999, 2001-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (5634, 'Consumption Markets and Culture', 10253866, 0.829, 'Q1', 29, 58, 3907, 206, 97, '2', '2003, 2007, 2010-2020', 'Anthropology (Q1); Economics and Econometrics (Q2); Marketing (Q2); Social Psychology (Q2)'), (5635, 'Diabetes Educator', 1457217, 0.829, 'Q1', 74, 51, 2109, 398, 150, '2', '1979-2020', 'Health Professions (miscellaneous) (Q1); Endocrinology, Diabetes and Metabolism (Q2)'), (5636, 'High Power Laser Science and Engineering', 20954719, 0.829, 'Q1', 21, 45, 1730, 433, 94, '3', '2013-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electronic, Optical and Magnetic Materials (Q1); Nuclear Energy and Engineering (Q1); Nuclear and High Energy Physics (Q2)'), (5637, 'Journal of Toxicology', 16878205, 0.829, 'Q2', 36, 35, 1600, 343, 77, '32', '2010-2020', 'Pharmacology (Q2); Toxicology (Q2)'), (5638, 'Perspectives: Studies in Translatology', 907676, 0.829, 'Q1', 22, 97, 4055, 234, 154, '3', '1996-2020', 'Cultural Studies (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (5639, 'Transcultural Psychiatry', 14617471, 0.829, 'Q1', 55, 98, 6316, 360, 138, '3', '1964-2020', 'Health (social science) (Q1); Psychiatry and Mental Health (Q2)'), (5640, 'AIAA Journal', 1533385, 0.828, 'Q1', 158, 430, 17002, 3868, 1236, '2', '1964-1965, 1968-2020', 'Aerospace Engineering (Q1)'), (5641, 'Cambridge Journal of Education', 305764, 0.828, 'Q1', 58, 56, 3343, 269, 118, '3', '1971-2020', 'Education (Q1)'), (5642, 'Chemical Engineering and Processing: Process ', 2552701, 0.828, 'Q1', 103, 367, 17043, 3314, 783, '16', '1984-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Energy Engineering and Power Technology (Q1); Industrial and Manufacturing Engineering (Q1); Process Chemistry and Technology'), (5643, 'Congenital Heart Disease', 17470803, 0.828, 'Q1', 42, 42, 1204, 818, 402, '3', '2006-2019', 'Pediatrics, Perinatology and Child Health (Q1); Surgery (Q1); Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5644, 'IEEE Transactions on Electron Devices', 189383, 0.828, 'Q1', 186, 889, 25967, 8047, 2355, '2', '1963-2020', 'Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (5645, 'Journal of Marine Systems', 18791573, 0.828, 'Q1', 105, 119, 8038, 870, 340, '16', '1990-2020', 'Aquatic Science (Q1); Oceanography (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (5646, 'Journal of Pregnancy', 20902735, 0.828, 'Q2', 32, 47, 1500, 257, 94, '2', '2010-2020', 'Obstetrics and Gynecology (Q2)'), (5647, 'Journal of Sport and Social Issues', 1937235, 0.828, 'Q1', 57, 44, 2752, 242, 75, '2', '1977-2020', 'Sociology and Political Science (Q1)'), (5648, 'Resources, Conservation and Recycling: X', 2590289, 0.828, 'Q2', 6, 19, 1419, 39, 12, '16', '2019-2020', 'Economics and Econometrics (Q2); Waste Management and Disposal (Q2)'), (5649, 'Risk Management and Healthcare Policy', 11791594, 0.828, 'Q2', 22, 316, 12502, 261, 78, '41', '2010-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5650, 'Universe', 22181997, 0.828, 'Q2', 32, 200, 14176, 1673, 453, '19', '2015-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (5651, 'Archives of Environmental Contamination and T', 14320703, 0.827, 'Q2', 109, 139, 6394, 1023, 336, '2', '1973-2020', 'Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Pollution (Q2); Toxicology (Q2)'), (5652, 'Communications in Applied Mathematics and Com', 15593940, 0.827, 'Q1', 24, 6, 214, 33, 25, '2', '2006-2020', 'Computational Theory and Mathematics (Q1); Computer Science Applications (Q1); Applied Mathematics (Q2)'), (5653, 'Dyes and Pigments', 1437208, 0.827, 'Q1', 124, 850, 41090, 10221, 2351, '16', '1980-2021', 'Chemical Engineering (miscellaneous) (Q1); Process Chemistry and Technology (Q2)'), (5654, 'Journal of Pharmacokinetics and Pharmacodynam', 15738744, 0.827, 'Q2', 60, 50, 2315, 343, 157, '2', '1996-1999, 2001-2020', 'Pharmacology (Q2)'), (5655, 'Journal of Research on Leadership Education', 19427751, 0.827, 'Q1', 15, 35, 1778, 117, 68, '2', '2006-2020', 'Education (Q1)'), (5656, 'Papers in Palaeontology', 20562802, 0.827, 'Q1', 15, 56, 5362, 184, 89, '3', '2015-2020', 'Paleontology (Q1)'), (5657, 'Public Choice', 15737101, 0.827, 'Q1', 81, 132, 7494, 375, 242, '16', '1966-2020', 'Sociology and Political Science (Q1); Economics and Econometrics (Q2)'), (5658, 'Rapid Prototyping Journal', 13552546, 0.827, 'Q1', 91, 144, 5873, 1924, 464, '3', '1995-2020', 'Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)'), (5659, 'Seminars in Respiratory and Critical Care Med', 10989048, 0.827, 'Q2', 64, 76, 8757, 586, 216, '2', '1994-2020', 'Critical Care and Intensive Care Medicine (Q2); Pulmonary and Respiratory Medicine (Q2)'), (5660, 'Stochastic Environmental Research and Risk As', 14363259, 0.827, 'Q1', 67, 163, 8833, 1666, 515, '2', '1999-2020', 'Environmental Science (miscellaneous) (Q1); Safety, Risk, Reliability and Quality (Q1); Water Science and Technology (Q1); Environmental Chemistry (Q2); Environmental Engineering (Q2)'), (5661, 'Conservation Genetics', 15729737, 0.826, 'Q2', 73, 82, 5826, 759, 340, '16', '1994, 2000-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3)'), (5662, 'Current Drug Targets', 18735592, 0.826, 'Q2', 102, 141, 15650, 1463, 422, '52', '2000-2020', 'Clinical Biochemistry (Q2); Drug Discovery (Q2); Molecular Medicine (Q2); Pharmacology (Q2)'), (5663, 'Current Opinion in Cardiology', 2684705, 0.826, 'Q2', 78, 102, 1997, 810, 302, '2', '1988-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (5664, 'Fixed Point Theory and Applications', 16871812, 0.826, 'Q2', 63, 15, 525, 146, 90, '3', '2004-2020', 'Applied Mathematics (Q2); Geometry and Topology (Q2)'), (5665, 'Harvard Business Review', 178012, 0.826, 'Q1', 179, 105, 0, 652, 77, '2', '1974, 1978-1987, 1989-2019', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1); Economics and Econometrics (Q2); Management of Technology and Innova'), (5666, 'Health Equity', 24731242, 0.826, 'Q1', 9, 70, 2253, 335, 157, '2', '2017-2020', 'Health (social science) (Q1); Health Information Management (Q2); Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5667, 'Journal of Biomechanics', 18732380, 0.826, 'Q1', 199, 510, 19358, 3948, 1361, '3', '1968-2020', 'Rehabilitation (Q1); Biomedical Engineering (Q2); Biophysics (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)'), (5668, 'Journal of Black Psychology, The', 15524558, 0.826, 'Q1', 56, 27, 1993, 207, 93, '2', '1978-2020', 'Anthropology (Q1); Applied Psychology (Q2)'), (5669, 'Public Health', 333506, 0.826, 'Q2', 75, 433, 11891, 2120, 788, '16', '1888-1913, 1915-2020', 'Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5670, 'Pulmonology', 25310429, 0.826, 'Q2', 22, 142, 3365, 336, 107, '12', '2018-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (5671, 'Asia Pacific Journal of Human Resources', 10384111, 0.825, 'Q2', 33, 43, 2959, 291, 83, '2', '1966-1967, 1970, 1972-1974, 1976, 1978-1999, 2007-2020', 'Organizational Behavior and Human Resource Management (Q2)'), (5672, 'Citizenship Studies', 14693593, 0.825, 'Q1', 60, 68, 3890, 329, 164, '3', '1997-2020', 'Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (5673, 'European Journal of Organic Chemistry', 10990690, 0.825, 'Q1', 155, 846, 56942, 7211, 2593, '5', '1998-2020', 'Physical and Theoretical Chemistry (Q1); Organic Chemistry (Q2)'), (5674, 'Future Science OA', 20565623, 0.825, 'Q2', 23, 97, 3652, 770, 263, '3', '2015-2020', 'Biotechnology (Q2); Medicine (miscellaneous) (Q2)'), (5675, 'International Journal of Child-Computer Inter', 22128689, 0.825, 'Q1', 22, 21, 1003, 333, 91, '16', '2013-2020', 'Education (Q1); Human-Computer Interaction (Q1)'), (5676, 'IZA Journal of Labor Economics', 21938997, 0.825, 'Q1', 14, 8, 305, 55, 24, '3', '2012-2019', 'Industrial Relations (Q1); Economics and Econometrics (Q2); Organizational Behavior and Human Resource Management (Q2)'), (5677, 'Journal of Forest Economics', 11046899, 0.825, 'Q1', 36, 13, 565, 200, 92, '5', '1995-2020', 'Ecology (Q1); Forestry (Q1); Geography, Planning and Development (Q1)'), (5678, 'Journal of the Meteorological Society of Japa', 21869057, 0.825, 'Q2', 82, 72, 3807, 336, 154, '6', '1905-1907, 1910-1918, 1920-1922, 1966-1967, 1974, 1976-1978, 1980-1981, 1983, 1986-2020', 'Atmospheric Science (Q2)'), (5679, 'Memetic Computing', 18659284, 0.825, 'Q1', 31, 20, 699, 492, 88, '5', '2009-2020', 'Computer Science (miscellaneous) (Q1); Control and Optimization (Q1)'), (5680, 'Theory and Society', 15737853, 0.825, 'Q1', 76, 41, 3848, 181, 84, '16', '1974-2020', 'History (Q1); Sociology and Political Science (Q1)'), (5681, 'Abdominal Radiology', 23660058, 0.824, 'Q2', 74, 542, 19457, 3009, 1223, '2', '2016-2020', 'Gastroenterology (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Urology (Q2)'), (5682, 'Atti della Accademia Nazionale dei Lincei, Cl', 17200768, 0.824, 'Q1', 28, 48, 1290, 199, 126, '19', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (5683, 'Journal of Cultural Economics', 8852545, 0.824, 'Q1', 42, 30, 1640, 193, 75, '2', '1977-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (5684, 'Microbial Pathogenesis', 10961208, 0.824, 'Q2', 71, 678, 33862, 6695, 1756, '2', '1986-2020', 'Infectious Diseases (Q2); Microbiology (Q3)'), (5685, 'Current Genomics', 13892029, 0.823, 'Q3', 64, 64, 4501, 449, 152, '52', '2000-2020', 'Genetics (Q3); Genetics (clinical) (Q3)'), (5686, 'Economic Inquiry', 952583, 0.823, 'Q1', 72, 106, 4913, 542, 336, '3', '1962-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (5687, 'Frontiers of Chemical Science and Engineering', 20950179, 0.823, 'Q1', 31, 121, 7063, 877, 223, '1', '2011-2020', 'Chemical Engineering (miscellaneous) (Q1)'), (5688, 'Geriatrics and Gerontology International', 14441586, 0.823, 'Q1', 57, 255, 6254, 2187, 772, '2', '2004, 2008-2020', 'Gerontology (Q1); Health (social science) (Q1); Geriatrics and Gerontology (Q2); Medicine (miscellaneous) (Q2)'), (5689, 'Human Behavior and Emerging Technologies', 25781863, 0.823, 'Q1', 8, 32, 1737, 178, 36, '2', '2020', 'Human-Computer Interaction (Q1); Social Sciences (miscellaneous) (Q1); Social Psychology (Q2)'), (5690, 'Journal of Experimental Zoology Part B: Molec', 15525007, 0.823, 'Q1', 63, 76, 4547, 245, 114, '2', '2003-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Developmental Biology (Q3); Genetics (Q3); Molecular Medicine (Q3)'), (5691, 'Journal of Geodynamics', 2643707, 0.823, 'Q1', 75, 48, 3311, 462, 191, '3', '1984-2020', 'Earth-Surface Processes (Q1); Geophysics (Q2)'), (5692, 'Thoracic Cancer', 17597714, 0.823, 'Q2', 28, 462, 12837, 1822, 652, '11', '2010-2020', 'Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2); Oncology (Q3)'), (5693, 'Advances in Pharmacological Sciences', 16876342, 0.822, 'Q1', 32, 0, 0, 252, 51, '2', '2009-2019', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacology (medical) (Q2); Molecular Medicine (Q3)'), (5694, 'Annales de l Institut Henri Poincare (D) Comb', 23085835, 0.822, 'Q1', 13, 14, 575, 102, 46, '19', '2014-2020', 'Discrete Mathematics and Combinatorics (Q1); Algebra and Number Theory (Q2); Geometry and Topology (Q2); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)'), (5695, 'Collection Management', 1462679, 0.822, 'Q1', 18, 31, 588, 68, 68, '2', '1976, 1978-1979, 1981-1999, 2001-2020', 'Library and Information Sciences (Q1); Strategy and Management (Q1)'), (5696, 'Discourse and Communication', 17504813, 0.822, 'Q1', 29, 36, 1726, 166, 87, '3', '2007-2020', 'Communication (Q1); Linguistics and Language (Q1)'), (5697, 'Economics and Politics', 9541985, 0.822, 'Q2', 45, 20, 1246, 82, 47, '3', '1989-2020', 'Economics and Econometrics (Q2)'), (5698, 'Feminist Media Studies', 14680777, 0.822, 'Q1', 41, 187, 8316, 496, 202, '3', '2001-2020', 'Communication (Q1); Gender Studies (Q1); Visual Arts and Performing Arts (Q1)'), (5699, 'General Relativity and Gravitation', 17701, 0.822, 'Q2', 94, 117, 6342, 1649, 458, '2', '1970-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (5700, 'Journal of Applied Social Psychology', 219029, 0.822, 'Q2', 111, 65, 3777, 411, 182, '2', '1971-2020', 'Social Psychology (Q2)'), (5701, 'Journal of Community Health', 945145, 0.822, 'Q1', 63, 197, 6231, 919, 449, '16', '1975-2020', 'Health (social science) (Q1); Public Health, Environmental and Occupational Health (Q2)'), (5702, 'Journal of Educational Research', 19400675, 0.822, 'Q1', 77, 44, 2512, 392, 177, '2', '1920-2020', 'Education (Q1)'), (5703, 'Journal of Meteorological Research', 20956037, 0.822, 'Q1', 28, 89, 6040, 595, 256, '1', '2014-2020', 'Ocean Engineering (Q1); Atmospheric Science (Q2)'), (5704, 'Journal of Neuroimaging', 10512284, 0.822, 'Q2', 64, 114, 4803, 633, 263, '2', '1991-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5705, 'Journal of New Approaches in Educational Rese', 22547339, 0.822, 'Q1', 11, 20, 865, 247, 60, '12', '2017-2020', 'Education (Q1)'), (5706, 'Mineralogy and Petrology', 14381168, 0.822, 'Q2', 55, 37, 2528, 403, 221, '28', '1987-2020', 'Geochemistry and Petrology (Q2); Geophysics (Q2)'), (5707, 'Archives of Osteoporosis', 18623522, 0.821, 'Q2', 31, 180, 6595, 997, 348, '3', '2006-2020', 'Orthopedics and Sports Medicine (Q2)'), (5708, 'BMJ Paediatrics Open', 23999772, 0.821, 'Q1', 12, 113, 3275, 526, 256, '3', '2017-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (5709, 'Journal of Ophthalmic Inflammation and Infect', 18695760, 0.821, 'Q2', 26, 39, 935, 192, 64, '5', '2011-2020', 'Infectious Diseases (Q2); Ophthalmology (Q2)'), (5710, 'Dental Traumatology', 16009657, 0.82, 'Q1', 81, 95, 3174, 482, 186, '25', '1985-1995, 1999-2020', 'Oral Surgery (Q1)'), (5711, 'Equine Veterinary Journal', 20423306, 0.82, 'Q1', 87, 224, 7094, 1014, 414, '2', '1968-2020', 'Equine (Q1); Medicine (miscellaneous) (Q2)'), (5712, 'IEEE Transactions on Instrumentation and Meas', 189456, 0.82, 'Q1', 119, 962, 32944, 5589, 1120, '2', '1963-2020', 'Electrical and Electronic Engineering (Q1); Instrumentation (Q1)'), (5713, 'Pedobiologia', 314056, 0.82, 'Q1', 69, 43, 2819, 251, 107, '5', '1977, 1979-2020', 'Soil Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (5714, 'Phytochemistry', 319422, 0.82, 'Q1', 176, 263, 12505, 2424, 643, '3', '1961-2020', 'Horticulture (Q1); Plant Science (Q1); Biochemistry (Q2); Medicine (miscellaneous) (Q2); Molecular Biology (Q3)'), (5715, 'Economics of Transportation', 22120122, 0.819, 'Q1', 18, 21, 937, 107, 47, '3', '2012-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Transportation (Q2)'), (5716, 'General and Comparative Endocrinology', 10956840, 0.819, 'Q1', 119, 239, 16681, 2121, 803, '2', '1961-2020', 'Animal Science and Zoology (Q1); Endocrinology (Q3)'), (5717, 'Global Journal of Flexible Systems Management', 9722696, 0.819, 'Q1', 31, 28, 2192, 409, 78, '4', '2000-2020', 'Business and International Management (Q1); Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q1)'), (5718, 'Hereditas', 16015223, 0.819, 'Q2', 50, 48, 2085, 255, 93, '3', '1920-2020', 'Medicine (miscellaneous) (Q2); Genetics (Q3)'), (5719, 'International Journal of Mathematics', 129167, 0.819, 'Q1', 44, 122, 2996, 349, 310, '37', '1996-2020', 'Mathematics (miscellaneous) (Q1)'), (5720, 'Journal for Nature Conservation', 16171381, 0.819, 'Q1', 47, 122, 8221, 637, 212, '5', '1991, 1994, 1996, 2002-2020', 'Ecology (Q1); Nature and Landscape Conservation (Q1)'), (5721, 'Journal of Fish Diseases', 13652761, 0.819, 'Q1', 85, 159, 7349, 1480, 552, '3', '1978-2020', 'Aquatic Science (Q1); Veterinary (miscellaneous) (Q1)'), (5722, 'Journal of Housing Economics', 10960791, 0.819, 'Q2', 51, 35, 1581, 294, 110, '2', '1991-2020', 'Economics and Econometrics (Q2)'), (5723, 'Journal of Social and Clinical Psychology', 7367236, 0.819, 'Q2', 94, 34, 2066, 229, 116, '2', '1996-2020', 'Clinical Psychology (Q2); Social Psychology (Q2)'), (5724, 'Microvascular Research', 10959319, 0.819, 'Q2', 90, 113, 5006, 757, 245, '2', '1968-2020', 'Biochemistry (Q2); Cardiology and Cardiovascular Medicine (Q2); Cell Biology (Q3)'), (5725, 'Neuropsychiatric Disease and Treatment', 11766328, 0.819, 'Q2', 67, 307, 14840, 2643, 1008, '41', '2001, 2006-2020', 'Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)'), (5726, 'Population Ecology', 1438390, 0.819, 'Q2', 59, 34, 2142, 198, 103, '6', '1996, 1999-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (5727, 'Taxon', 400262, 0.819, 'Q1', 81, 193, 5703, 671, 271, '28', '1970-1971, 1982-1984, 1989-2020', 'Plant Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (5728, 'Technology in Society', 160791, 0.819, 'Q1', 51, 201, 14468, 1056, 222, '3', '1979-2020', 'Business and International Management (Q1); Education (Q1); Human Factors and Ergonomics (Q1); Sociology and Political Science (Q1)'), (5729, 'Translational Behavioral Medicine', 16139860, 0.819, 'Q2', 39, 130, 5322, 1002, 370, '2', '2011-2020', 'Applied Psychology (Q2); Behavioral Neuroscience (Q3)'), (5730, 'BMC Cardiovascular Disorders', 14712261, 0.818, 'Q2', 56, 495, 15205, 2041, 849, '3', '2001-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (5731, 'Cardiovascular Therapeutics', 17555914, 0.818, 'Q2', 46, 61, 3026, 404, 151, '3', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (5732, 'Human Factors', 187208, 0.818, 'Q1', 117, 195, 10299, 1087, 267, '2', '1958-2020', 'Human Factors and Ergonomics (Q1); Applied Psychology (Q2); Behavioral Neuroscience (Q3)'), (5733, 'International Journal of Modern Physics D', 2182718, 0.818, 'Q2', 92, 205, 10600, 2854, 781, '37', '1996-2020', 'Astronomy and Astrophysics (Q2); Mathematical Physics (Q2); Space and Planetary Science (Q2)'), (5734, 'Islets', 19382022, 0.818, 'Q2', 35, 13, 622, 133, 50, '2', '2009-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Endocrinology (Q3)'), (5735, 'Journal of Economic Entomology', 220493, 0.818, 'Q1', 101, 359, 16950, 2497, 1092, '3', '1945-1947, 1949, 1961, 1965-2020', 'Insect Science (Q1); Ecology (Q2); Medicine (miscellaneous) (Q2)'), (5736, 'Journal of Environmental Radioactivity', 18791700, 0.818, 'Q2', 92, 286, 12583, 2036, 813, '3', '1984-2020', 'Environmental Chemistry (Q2); Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Pollution (Q2); Waste Management and Disposal (Q2)'), (5737, 'Journal of International Financial Management', 9541314, 0.818, 'Q1', 37, 12, 833, 110, 37, '3', '1989-1992, 1994-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Finance (Q1); Accounting (Q2)'), (5738, 'Journal of Ophthalmology', 2090004, 0.818, 'Q2', 40, 374, 12110, 1699, 816, '2', '2012-2020', 'Ophthalmology (Q2)'), (5739, 'Molecular and Biochemical Parasitology', 1666851, 0.818, 'Q2', 113, 54, 2636, 401, 191, '16', '1980-2020', 'Parasitology (Q2); Molecular Biology (Q3)'), (5740, 'Peptides', 18735169, 0.818, 'Q2', 122, 135, 11142, 1405, 423, '2', '1980-2020', 'Biochemistry (Q2); Physiology (Q2); Endocrinology (Q3); Cellular and Molecular Neuroscience (Q4)'), (5741, 'Photochemistry and Photobiology', 17511097, 0.818, 'Q1', 131, 171, 8688, 1457, 458, '2', '1962-2020', 'Physical and Theoretical Chemistry (Q1); Radiation (Q1); Biochemistry (Q2); Medicine (miscellaneous) (Q2)'), (5742, 'Public Relations Inquiry', 20461488, 0.818, 'Q1', 11, 20, 1130, 89, 43, '2', '2014-2020', 'Communication (Q1); Linguistics and Language (Q1); Strategy and Management (Q1); Marketing (Q2); Organizational Behavior and Human Resource Management (Q2)'), (5743, 'Research and Practice in Technology Enhanced ', 17937078, 0.818, 'Q1', 15, 24, 1237, 301, 76, '37', '2015-2020', 'Education (Q1); Media Technology (Q1); Management of Technology and Innovation (Q2); Social Psychology (Q2)'), (5744, 'Science China Mathematics', 16747283, 0.818, 'Q1', 35, 181, 5285, 719, 423, '1', '2010-2020', 'Mathematics (miscellaneous) (Q1)'), (5745, 'Transportation Letters', 19427867, 0.818, 'Q2', 23, 127, 4891, 367, 104, '3', '2009-2020', 'Transportation (Q2)'), (5746, 'Advances in Manufacturing', 20953127, 0.817, 'Q1', 23, 44, 1899, 494, 112, '2', '2013-2020', 'Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1); Polymers and Plastics (Q1)'), (5747, 'Annals of Physics', 34916, 0.817, 'Q2', 116, 256, 13337, 2822, 734, '2', '1957-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (5748, 'ChemMedChem', 18607187, 0.817, 'Q1', 100, 280, 14637, 2249, 684, '3', '2006-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Biochemistry (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Pharmacology (Q2); Molecular Medicine (Q3)'), (5749, 'Current Opinion in Pediatrics', 10408703, 0.817, 'Q1', 87, 118, 2101, 978, 351, '2', '1989-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (5750, 'International Journal of Technology and Desig', 15731804, 0.817, 'Q1', 40, 125, 6945, 439, 151, '16', '1990-2020', 'Education (Q1); Engineering (miscellaneous) (Q1)'), (5751, 'Policing', 1363951, 0.817, 'Q1', 46, 73, 3998, 425, 199, '3', '1997-2020', 'Law (Q1); Public Administration (Q1); Pathology and Forensic Medicine (Q2)'), (5752, 'Theoretical and Computational Fluid Dynamics', 9354964, 0.817, 'Q1', 59, 37, 1727, 267, 106, '2', '1989-2020', 'Computational Mechanics (Q1); Condensed Matter Physics (Q1); Engineering (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1)'), (5753, 'Children and Youth Services Review', 1907409, 0.816, 'Q1', 89, 978, 58646, 3628, 1315, '3', '1979-2020', 'Education (Q1); Social Work (Q1); Sociology and Political Science (Q1); Developmental and Educational Psychology (Q2)'), (5754, 'Ergonomics', 140139, 0.816, 'Q1', 110, 136, 7080, 1206, 406, '3', '1957-2020', 'Human Factors and Ergonomics (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q1)'), (5755, 'Hormone Research in Paediatrics', 16632826, 0.816, 'Q1', 89, 85, 2991, 707, 273, '19', '1970-1997, 2010-2020', 'Pediatrics, Perinatology and Child Health (Q1); Endocrinology, Diabetes and Metabolism (Q2); Endocrinology (Q3)'), (5756, 'JBJS Reviews', 23299185, 0.816, 'Q1', 16, 121, 2876, 576, 284, '2', '2014-2020', 'Surgery (Q1); Orthopedics and Sports Medicine (Q2)'), (5757, 'Journal of Change Management', 14791811, 0.816, 'Q2', 28, 26, 1382, 133, 52, '2', '2006, 2010-2020', 'Strategy and Management (Q2)'), (5758, 'Journal of Clinical Psychology in Medical Set', 10689583, 0.816, 'Q2', 48, 120, 6110, 309, 123, '2', '1994-2020', 'Clinical Psychology (Q2)'), (5759, 'Preventive Veterinary Medicine', 1675877, 0.816, 'Q1', 95, 299, 12546, 1722, 609, '16', '1982-2020', 'Animal Science and Zoology (Q1); Food Animals (Q1)'), (5760, 'Probiotics and Antimicrobial Proteins', 18671314, 0.816, 'Q3', 27, 187, 10112, 1184, 278, '2', '2009-2020', 'Microbiology (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)'), (5761, 'Rangeland Ecology and Management', 15507424, 0.816, 'Q1', 70, 110, 6666, 737, 309, '2', '2005-2020', 'Animal Science and Zoology (Q1); Nature and Landscape Conservation (Q1); Ecology (Q2); Management, Monitoring, Policy and Law (Q2)'), (5762, 'Respiratory Investigation', 22125345, 0.816, 'Q2', 29, 79, 2327, 491, 196, '16', '2012-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (5763, 'Science China: Physics, Mechanics and Astrono', 16747348, 0.816, 'Q2', 54, 179, 8807, 1982, 358, '1', '2010-2021', 'Physics and Astronomy (miscellaneous) (Q2)'), (5764, 'Society and Natural Resources', 8941920, 0.816, 'Q1', 87, 112, 5942, 719, 263, '3', '1988-2020', 'Development (Q1); Environmental Science (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (5765, 'Techniques in Coloproctology', 1128045, 0.816, 'Q1', 51, 201, 3851, 1059, 391, '7', '1998-2020', 'Surgery (Q1); Gastroenterology (Q2)'), (5766, 'Theriogenology', 93691, 0.816, 'Q1', 133, 570, 30541, 3693, 1373, '2', '1974-2020', 'Animal Science and Zoology (Q1); Equine (Q1); Food Animals (Q1); Small Animals (Q1)'), (5767, 'Arkiv for Matematik', 18712487, 0.815, 'Q1', 30, 22, 441, 103, 61, '16', '1949-1958, 1960-2020', 'Mathematics (miscellaneous) (Q1)'), (5768, 'China and World Economy', 16712234, 0.815, 'Q1', 28, 38, 1212, 259, 112, '2', '2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (5769, 'Computer Law and Security Review', 2673649, 0.815, 'Q1', 38, 66, 1245, 707, 223, '3', '1985-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Computer Networks and Communications (Q1); Law (Q1)'), (5770, 'Current Cardiology Reviews', 1573403, 0.815, 'Q2', 44, 59, 2903, 273, 103, '52', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (5771, 'Experimental Mechanics', 144851, 0.815, 'Q1', 87, 100, 3822, 945, 319, '2', '1961-2020', 'Aerospace Engineering (Q1); Mechanical Engineering (Q1); Mechanics of Materials (Q1)'), (5772, 'Food Biophysics', 15571858, 0.815, 'Q1', 49, 50, 2072, 390, 136, '2', '2006-2020', 'Food Science (Q1); Analytical Chemistry (Q2); Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biophysics (Q2)'), (5773, 'Geotechnical Testing Journal', 1496115, 0.815, 'Q1', 57, 92, 3349, 487, 294, '2', '1978-1981, 1985-2020', 'Geotechnical Engineering and Engineering Geology (Q1)'), (5774, 'IEEE Signal Processing Letters', 10709908, 0.815, 'Q1', 138, 381, 10344, 5598, 1092, '2', '1994-2020', 'Electrical and Electronic Engineering (Q1); Signal Processing (Q1); Applied Mathematics (Q2)'), (5775, 'IET Electric Power Applications', 17518660, 0.815, 'Q1', 97, 303, 9403, 1946, 543, '3', '2007-2020', 'Electrical and Electronic Engineering (Q1)'), (5776, 'JAMA Facial Plastic Surgery', 21686092, 0.815, 'Q1', 59, 0, 0, 668, 240, '2', '2013-2019', 'Surgery (Q1)'), (5777, 'Journal of Sports Science and Medicine', 13032968, 0.815, 'Q1', 65, 89, 3806, 738, 248, '18', '2002-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)'), (5778, 'Molecular Imaging', 15353508, 0.815, 'Q1', 60, 23, 1611, 241, 72, '2', '2002-2020', 'Condensed Matter Physics (Q1); Biomedical Engineering (Q2); Biotechnology (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Molecular Medicine (Q3)'), (5779, 'Pharmaceutical Research', 7248741, 0.815, 'Q1', 206, 242, 11461, 2637, 650, '2', '1984-2020', 'Pharmaceutical Science (Q1); Biotechnology (Q2); Organic Chemistry (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2); Molecular Medicine (Q3)'), (5780, 'Progress in Additive Manufacturing', 23639520, 0.815, 'Q1', 16, 49, 1507, 372, 79, '5', '2016-2020', 'Industrial and Manufacturing Engineering (Q1)'), (5781, 'Social Indicators Research', 3038300, 0.815, 'Q1', 107, 339, 21046, 2470, 947, '16', '1974-2020', 'Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Developmental and Educational Psychology (Q2)'), (5782, 'Asian Journal of Urology', 22143882, 0.814, 'Q2', 16, 81, 2646, 396, 125, '37', '2014-2020', 'Urology (Q2)'), (5783, 'Autoimmunity Highlights', 20380305, 0.814, 'Q3', 20, 19, 1107, 97, 30, '7', '2010-2020', 'Immunology (Q3); Rheumatology (Q3)'), (5784, 'Journal of Comparative Physiology B: Biochemi', 1432136, 0.814, 'Q1', 80, 65, 4397, 491, 226, '5', '1974-2020', 'Animal Science and Zoology (Q1); Biochemistry (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Physiology (Q2); Endocrinology (Q3)'), (5785, 'Journal of Early Intervention', 10538151, 0.814, 'Q1', 45, 31, 1473, 143, 64, '2', '1981-2020', 'Pediatrics, Perinatology and Child Health (Q1); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)'), (5786, 'Journal of Family Issues', 15525481, 0.814, 'Q1', 84, 156, 8890, 863, 403, '2', '1980-2020', 'Social Sciences (miscellaneous) (Q1)'), (5787, 'Journal of Operator Theory', 3794024, 0.814, 'Q2', 40, 38, 998, 182, 121, '43', '1996-1998, 2000-2020', 'Algebra and Number Theory (Q2)'), (5788, 'Proceedings of the Royal Society A: Mathemati', 804630, 0.814, 'Q1', 135, 342, 16433, 2836, 714, '3', '1946-1949, 1974-1988, 1990-2020', 'Engineering (miscellaneous) (Q1); Mathematics (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q2)'), (5789, 'Biotropica', 17447429, 0.813, 'Q2', 96, 131, 8625, 610, 273, '2', '1979-1986, 1988-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (5790, 'Clinical Plasma Medicine', 22128166, 0.813, 'Q1', 22, 15, 680, 181, 39, '5', '2013-2020', 'Complementary and Alternative Medicine (Q1); Dermatology (Q1); Surgery (Q1)'), (5791, 'Cochlear Implants International', 17547628, 0.813, 'Q2', 32, 48, 1488, 217, 121, '3', '2001-2020', 'Otorhinolaryngology (Q2); Speech and Hearing (Q2)'), (5792, 'CrystEngComm', 14668033, 0.813, 'Q1', 132, 826, 42200, 8450, 2495, '3', '1999-2000, 2002-2020', 'Chemistry (miscellaneous) (Q1); Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2)'), (5793, 'Current Protocols in Microbiology', 19348525, 0.813, 'Q2', 35, 38, 1293, 113, 65, '2', '2005-2020', 'Medicine (miscellaneous) (Q2); Parasitology (Q2); Microbiology (Q3); Virology (Q3)'), (5794, 'Environmental Health and Preventive Medicine', 1342078, 0.813, 'Q2', 40, 82, 3279, 784, 220, '6', '1996-2020', 'Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5795, 'Environmental Toxicology', 15227278, 0.813, 'Q2', 77, 138, 6171, 1678, 472, '2', '1980, 1999-2020', 'Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Medicine (miscellaneous) (Q2); Toxicology (Q2)'), (5796, 'Foundations and Trends in Human-Computer Inte', 15513963, 0.813, 'Q1', 25, 3, 524, 104, 9, '2', '2007-2020', 'Computer Science Applications (Q1); Human-Computer Interaction (Q1)'), (5797, 'IJC Heart and Vasculature', 23529067, 0.813, 'Q2', 18, 241, 6883, 529, 178, '16', '2014-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (5798, 'International Journal of Digital Earth', 17538955, 0.813, 'Q1', 46, 102, 5710, 811, 210, '3', '2008-2020', 'Computer Science Applications (Q1); Earth and Planetary Sciences (miscellaneous) (Q1); Software (Q1)'), (5799, 'Journal of Materials Science', 15734803, 0.813, 'Q1', 177, 1252, 63205, 13743, 3574, '16', '1966-2020', 'Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)'), (5800, 'Journal of the International Association of P', 23259582, 0.813, 'Q1', 31, 45, 1601, 291, 214, '2', '2011, 2013-2020', 'Dermatology (Q1); Infectious Diseases (Q2); Immunology (Q3)'), (5801, 'Otolaryngologic Clinics of North America', 15578259, 0.813, 'Q2', 70, 118, 4667, 666, 276, '3', '1970-2020', 'Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2)'), (5802, 'Behavioral and Brain Sciences', 14691825, 0.812, 'Q2', 161, 173, 5786, 1084, 407, '3', '1978-2020', 'Neuropsychology and Physiological Psychology (Q2); Physiology (Q2); Behavioral Neuroscience (Q3)'), (5803, 'Carpathian Journal of Mathematics', 15842851, 0.812, 'Q1', 25, 46, 1085, 270, 117, '43', '2003-2020', 'Mathematics (miscellaneous) (Q1)'), (5804, 'EXCLI Journal', 16112156, 0.812, 'Q1', 37, 148, 6772, 1078, 258, '5', '2009-2020', 'Animal Science and Zoology (Q1); Drug Discovery (Q2); Pharmacology (Q2); Molecular Medicine (Q3)'), (5805, 'Health and Justice', 21947899, 0.812, 'Q1', 9, 24, 1447, 131, 53, '3', '2016-2020', 'Law (Q1); Public Health, Environmental and Occupational Health (Q2)'), (5806, 'International Journal of Selection and Assess', 14682389, 0.812, 'Q1', 61, 39, 2434, 173, 88, '3', '1993-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Applied Psychology (Q2); Management of Technology and Innovation (Q2); Psychology (miscellaneous) (Q2); Strategy and Management (Q2)'), (5807, 'Journal of Group Theory', 14354446, 0.812, 'Q2', 31, 65, 1036, 221, 187, '5', '1998-2020', 'Algebra and Number Theory (Q2)'), (5808, 'Open AIDS Journal', 18746136, 0.812, 'Q2', 18, 15, 483, 70, 38, '52', '2009-2020', 'Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Virology (Q3)'), (5809, 'Physics-Uspekhi', 10637869, 0.812, 'Q2', 84, 70, 7920, 809, 233, '3', '1993-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (5810, 'Tourism Economics', 20440375, 0.812, 'Q1', 58, 176, 10134, 811, 252, '2', '1995-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q1)'), (5811, 'Apidologie', 12979678, 0.811, 'Q1', 83, 104, 5192, 593, 243, '2', '1977, 1985, 1989-2020', 'Insect Science (Q1)'), (5812, 'European Journal of Developmental Psychology', 17405610, 0.811, 'Q2', 35, 87, 3805, 333, 146, '3', '2006-2007, 2009-2020', 'Developmental and Educational Psychology (Q2); Social Psychology (Q2)'), (5813, 'Journal of Consumer Behaviour', 14791838, 0.811, 'Q2', 43, 86, 6362, 545, 161, '2', '2009-2020', 'Applied Psychology (Q2); Social Psychology (Q2)'), (5814, 'Journal of International Entrepreneurship', 15707385, 0.811, 'Q1', 44, 26, 2576, 198, 56, '16', '2005-2020', 'Business, Management and Accounting (miscellaneous) (Q1)'), (5815, 'Neuroradiology', 14321920, 0.811, 'Q2', 94, 231, 6575, 1129, 428, '5', '1970-2020', 'Cardiology and Cardiovascular Medicine (Q2); Neurology (clinical) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5816, 'OMICS A Journal of Integrative Biology', 15362310, 0.811, 'Q2', 58, 90, 4258, 642, 202, '2', '2002-2020', 'Biochemistry (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2); Genetics (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)'), (5817, 'Research Technology Management', 19300166, 0.811, 'Q1', 68, 63, 673, 316, 93, '3', '1988-1989, 1995-2020', 'Engineering (miscellaneous) (Q1); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (5818, 'Western Journal of Emergency Medicine', 1936900, 0.811, 'Q1', 37, 216, 5613, 1136, 480, '2', '2011-2020', 'Emergency Medicine (Q1); Medicine (miscellaneous) (Q2)'), (5819, 'Geopolitics', 14650045, 0.81, 'Q1', 52, 128, 9120, 480, 140, '3', '1986, 1998-2020', 'Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (5820, 'IEEE Photonics Technology Letters', 10411135, 0.81, 'Q1', 157, 374, 6976, 4504, 1575, '2', '1989-2020', 'Atomic and Molecular Physics, and Optics (Q1); Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1)'), (5821, 'Journal of Chemical Thermodynamics', 10963626, 0.81, 'Q2', 88, 278, 12369, 3154, 1078, '2', '1969-2021', 'Atomic and Molecular Physics, and Optics (Q2); Materials Science (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2)'), (5822, 'Journal of Quantitative Spectroscopy and Radi', 224073, 0.81, 'Q1', 108, 513, 22864, 4317, 1248, '3', '1961-2020', 'Atomic and Molecular Physics, and Optics (Q1); Radiation (Q1); Spectroscopy (Q2)'), (5823, 'Personal Relationships', 13504126, 0.81, 'Q1', 83, 49, 2858, 257, 125, '3', '1994-2020', 'Anthropology (Q1); Developmental and Educational Psychology (Q2); Life-span and Life-course Studies (Q2); Social Psychology (Q2)'), (5824, 'Prostaglandins and Other Lipid Mediators', 10988823, 0.81, 'Q2', 73, 61, 4398, 490, 163, '2', '1996, 1998-2020', 'Biochemistry (Q2); Pharmacology (Q2); Physiology (Q2); Cell Biology (Q3)'), (5825, 'Siberian Mathematical Journal', 15739260, 0.81, 'Q1', 31, 83, 1563, 300, 322, '10', '1966-2020', 'Mathematics (miscellaneous) (Q1)'), (5826, 'Ultrasonics', 18749968, 0.81, 'Q1', 94, 173, 6298, 2041, 615, '16', '1963-2021', 'Acoustics and Ultrasonics (Q1)'), (5827, 'Wildlife Research', 10353712, 0.81, 'Q2', 68, 86, 5415, 459, 207, '11', '1974-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2)'), (5828, 'BMC Medical Education', 14726920, 0.809, 'Q1', 68, 506, 18182, 2830, 1046, '3', '2001-2020', 'Education (Q1); Medicine (miscellaneous) (Q2)'), (5829, 'Discourse, Context and Media', 22116958, 0.809, 'Q1', 18, 55, 2785, 390, 172, '16', '2012-2020', 'Communication (Q1); Cultural Studies (Q1)'), (5830, 'Expert Review of Cardiovascular Therapy', 17448344, 0.809, 'Q2', 51, 91, 6693, 566, 250, '3', '2003-2020', 'Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2); Medicine (miscellaneous) (Q2)'), (5831, 'Fire Ecology', 19339747, 0.809, 'Q1', 29, 26, 1749, 234, 92, '2', '2009-2020', 'Environmental Science (miscellaneous) (Q1); Forestry (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (5832, 'International Journal of Sexual Health', 1931762, 0.809, 'Q1', 38, 42, 2203, 232, 105, '2', '2007-2020', 'Dermatology (Q1); Gender Studies (Q1); Public Health, Environmental and Occupational Health (Q2); Reproductive Medicine (Q2); Social Psychology (Q2)'), (5833, 'Journal of Language and Social Psychology', 15526526, 0.809, 'Q1', 51, 47, 2366, 227, 103, '2', '1982-2020', 'Anthropology (Q1); Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)'), (5834, 'Journal of Orthopaedic Surgery and Research', 1749799, 0.809, 'Q1', 48, 584, 18213, 2466, 964, '3', '2006-2020', 'Surgery (Q1); Orthopedics and Sports Medicine (Q2)'), (5835, 'Journal of Public Economic Theory', 14679779, 0.809, 'Q1', 32, 91, 3329, 213, 167, '3', '1999-2020', 'Finance (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2)'), (5836, 'Korean Circulation Journal', 17385555, 0.809, 'Q2', 29, 165, 3421, 633, 279, '13', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)'), (5837, 'Race and Class', 3063968, 0.809, 'Q1', 39, 27, 1540, 120, 64, '3', '1959, 1962-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (5838, 'Synapse', 8874476, 0.809, 'Q4', 106, 37, 1841, 295, 123, '2', '1987-2020', 'Cellular and Molecular Neuroscience (Q4)'), (5839, 'European Journal of Special Needs Education', 8856257, 0.808, 'Q1', 44, 106, 4380, 367, 136, '3', '1986-2020', 'Education (Q1); Health Professions (miscellaneous) (Q1); Developmental and Educational Psychology (Q2)'), (5840, 'Forensic Chemistry', 24681709, 0.808, 'Q1', 13, 88, 3520, 441, 146, '16', '2016-2020', 'Law (Q1); Materials Chemistry (Q1); Analytical Chemistry (Q2); Pathology and Forensic Medicine (Q2); Physical and Theoretical Chemistry (Q2); Spectroscopy (Q2)'), (5841, 'International Journal of Energy Research', 1099114, 0.808, 'Q1', 95, 962, 49500, 5403, 1154, '3', '1977-2020', 'Nuclear Energy and Engineering (Q1); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (5842, 'Journal of Language Aggression and Conflict', 22131272, 0.808, 'Q1', 11, 12, 726, 73, 41, '16', '2013-2020', 'Communication (Q1); Language and Linguistics (Q1); Surfaces and Interfaces (Q2)'), (5843, 'Journal of Psychology: Interdisciplinary and ', 19401019, 0.808, 'Q1', 63, 39, 2460, 349, 128, '2', '1936-1959, 1962-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Education (Q1); Psychology (miscellaneous) (Q2)'), (5844, 'Journal of Public Policy', 14697815, 0.808, 'Q1', 49, 53, 3636, 120, 59, '3', '1981-2020', 'Public Administration (Q1); Management, Monitoring, Policy and Law (Q2)'), (5845, 'Revista Brasileira de Psiquiatria', 1809452, 0.808, 'Q2', 53, 133, 4092, 516, 183, '14', '1999-2020', 'Psychiatry and Mental Health (Q2)'), (5846, 'Robotics and Autonomous Systems', 9218890, 0.808, 'Q1', 118, 168, 7369, 2902, 570, '16', '1988-2020', 'Computer Science Applications (Q1); Mathematics (miscellaneous) (Q1); Software (Q1); Control and Systems Engineering (Q2)'), (5847, 'Upsala Journal of Medical Sciences', 20001967, 0.808, 'Q2', 41, 45, 1863, 227, 108, '3', '1972-2020', 'Medicine (miscellaneous) (Q2)'), (5848, 'Acta Neuropsychiatrica', 16015215, 0.807, 'Q2', 33, 55, 2298, 335, 131, '3', '1989-2004, 2006-2020', 'Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)'), (5849, 'Cell Surface', 24682330, 0.807, 'Q2', 7, 13, 1086, 112, 31, '16', '2018-2020', 'Applied Microbiology and Biotechnology (Q2); Cell Biology (Q3); Microbiology (Q3); Molecular Biology (Q3)'), (5850, 'Horticultural Plant Journal', 20959885, 0.807, 'Q1', 9, 44, 2611, 209, 62, '1', '2018-2020', 'Plant Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Renewable Energy, Sustainability and the Environ'), (5851, 'International Journal of Adolescence and Yout', 2673843, 0.807, 'Q1', 20, 84, 3917, 368, 121, '3', '1987-2020', 'Health (social science) (Q1)'), (5852, 'International Journal of Intercultural Relati', 1471767, 0.807, 'Q1', 80, 75, 4814, 500, 165, '3', '1977-2020', 'Business and International Management (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)'), (5853, 'International Journal of Mineral Processing', 3017516, 0.807, 'Q2', 91, 0, 0, 622, 142, '16', '1974-2017', 'Geochemistry and Petrology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (5854, 'Journal of Clinical Densitometry', 10946950, 0.807, 'Q2', 66, 118, 4086, 561, 189, '2', '1998-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Orthopedics and Sports Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5855, 'Journal of Tissue Viability', 965206, 0.807, 'Q1', 33, 60, 2140, 391, 114, '3', '1998-2006, 2008-2020', 'Dermatology (Q1); Pathology and Forensic Medicine (Q2)'), (5856, 'Violence Against Women', 10778012, 0.807, 'Q1', 96, 190, 10329, 720, 272, '2', '1995-2020', 'Gender Studies (Q1); Law (Q1); Sociology and Political Science (Q1)'), (5857, 'BMC Pediatrics', 14712431, 0.806, 'Q1', 75, 561, 19827, 2630, 1117, '3', '2001-2020', 'Pediatrics, Perinatology and Child Health (Q1)'), (5858, 'Current Vascular Pharmacology', 15701611, 0.806, 'Q2', 60, 76, 5973, 609, 198, '52', '2003-2020', 'Cardiology and Cardiovascular Medicine (Q2); Pharmacology (Q2)'), (5859, 'Educational Assessment', 10627197, 0.806, 'Q1', 27, 24, 1193, 82, 48, '2', '1993-1995, 2004-2020', 'Education (Q1)'), (5860, 'IEEE Intelligent Systems', 15411672, 0.806, 'Q1', 124, 107, 882, 834, 145, '2', '2001-2020', 'Artificial Intelligence (Q1); Computer Networks and Communications (Q1)'), (5861, 'Irrigation Science', 3427188, 0.806, 'Q1', 69, 43, 1936, 410, 124, '5', '1978-2020', 'Agronomy and Crop Science (Q1); Soil Science (Q1); Water Science and Technology (Q1)'), (5862, 'Journal of Environmental Planning and Managem', 13600559, 0.806, 'Q1', 68, 188, 12760, 1014, 362, '3', '1992-2020', 'Environmental Science (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1); Geography, Planning and Development (Q1); Water Science and Technology (Q1); Management, Monitoring, Policy and Law '), (5863, 'Journal of Gastric Cancer', 2093582, 0.806, 'Q3', 28, 40, 1274, 370, 120, '13', '2010-2020', 'Cancer Research (Q3); Gastroenterology (Q3); Oncology (Q3)'), (5864, 'Journal of Interprofessional Care', 14699567, 0.806, 'Q2', 73, 200, 6695, 783, 352, '3', '1986-1990, 1992-2020', 'Medicine (miscellaneous) (Q2)'), (5865, 'Journal of Social Psychology', 224545, 0.806, 'Q2', 78, 69, 3385, 379, 158, '2', '1930-2020', 'Social Psychology (Q2)'), (5866, 'Journal of Vertebrate Paleontology', 19372809, 0.806, 'Q1', 80, 88, 7518, 694, 345, '3', '1981-2020', 'Paleontology (Q1)'), (5867, 'Kidney and Blood Pressure Research', 14230143, 0.806, 'Q2', 51, 86, 3473, 1053, 421, '19', '1978-2020', 'Cardiology and Cardiovascular Medicine (Q2); Nephrology (Q2)'), (5868, 'Minds and Machines', 9246495, 0.806, 'Q1', 39, 32, 1917, 331, 86, '16', '1991-2020', 'Artificial Intelligence (Q1); Philosophy (Q1)'), (5869, 'PeerJ Computer Science', 23765992, 0.806, 'Q1', 24, 66, 3447, 582, 143, '2', '2015-2020', 'Computer Science (miscellaneous) (Q1)'), (5870, 'Political Studies Review', 14789299, 0.806, 'Q1', 29, 79, 4186, 218, 90, '3', '2006-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (5871, 'Rheumatology International', 1728172, 0.806, 'Q3', 74, 261, 9315, 1992, 788, '5', '1981-2020', 'Immunology (Q3); Immunology and Allergy (Q3); Rheumatology (Q3)'), (5872, 'Basic and Clinical Pharmacology and Toxicolog', 17427843, 0.805, 'Q2', 90, 140, 5866, 1426, 491, '2', '2004-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2); Toxicology (Q2)'), (5873, 'Diagnostic Pathology', 17461596, 0.805, 'Q2', 52, 142, 4171, 755, 311, '3', '2006-2020', 'Histology (Q2); Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)'), (5874, 'Journal of Clinical and Experimental Hepatolo', 9736883, 0.805, 'Q3', 34, 105, 3810, 516, 198, '16', '2011-2020', 'Hepatology (Q3)'), (5875, 'Journal of Counseling and Development', 15566676, 0.805, 'Q2', 78, 40, 2071, 299, 119, '2', '1984-2020', 'Applied Psychology (Q2)'), (5876, 'Petroleum', 24055816, 0.805, 'Q1', 24, 69, 2878, 655, 147, '1', '2015-2020', 'Geology (Q1); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geochemistry and Petrology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (5877, 'Polymer Testing', 1429418, 0.805, 'Q1', 98, 595, 28214, 5290, 1268, '3', '1980-2020', 'Polymers and Plastics (Q1); Organic Chemistry (Q2)'), (5878, 'Surgical Pathology Clinics', 18759157, 0.805, 'Q1', 18, 56, 3076, 418, 153, '3', '2008-2020', 'Surgery (Q1); Pathology and Forensic Medicine (Q2)'), (5879, 'Advances in Applied Mathematics', 1968858, 0.804, 'Q2', 54, 86, 2446, 372, 217, '2', '1980-2021', 'Applied Mathematics (Q2)'), (5880, 'BMC psychology', 20507283, 0.804, 'Q2', 21, 131, 6410, 511, 192, '3', '2013-2020', 'Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (5881, 'CAD Computer Aided Design', 104485, 0.804, 'Q1', 115, 73, 2957, 1038, 274, '3', '1968-2021', 'Computer Graphics and Computer-Aided Design (Q1); Computer Science Applications (Q1); Industrial and Manufacturing Engineering (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (5882, 'Canadian Journal of Statistics', 3195724, 0.804, 'Q2', 51, 61, 2180, 150, 98, '2', '1973-2020', 'Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (5883, 'Journal of Behavioral Education', 10530819, 0.804, 'Q1', 38, 77, 3262, 148, 73, '2', '1991-2000, 2002, 2005-2020', 'Education (Q1); Developmental and Educational Psychology (Q2)'), (5884, 'Journal of Cultural Economy', 17530369, 0.804, 'Q1', 25, 63, 3502, 222, 111, '3', '2010-2020', 'Cultural Studies (Q1)'), (5885, 'Lighting Research and Technology', 14770938, 0.804, 'Q1', 52, 104, 3296, 712, 229, '3', '1969-2020', 'Electrical and Electronic Engineering (Q1)'), (5886, 'Media and Communication', 21832439, 0.804, 'Q1', 19, 127, 6133, 381, 164, '26', '2013-2020', 'Communication (Q1)'), (5887, 'Pharmacogenomics Journal', 1470269, 0.804, 'Q2', 85, 89, 4066, 729, 227, '3', '2001-2020', 'Pharmacology (Q2); Genetics (Q3); Molecular Medicine (Q3)'), (5888, 'American Journal of Hospice and Palliative Me', 10499091, 0.803, 'Q2', 51, 233, 7400, 1141, 496, '2', '1984-2020', 'Medicine (miscellaneous) (Q2)'), (5889, 'Bioorganic Chemistry', 452068, 0.803, 'Q2', 58, 1022, 48164, 6831, 1333, '2', '1971-2020', 'Biochemistry (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Molecular Biology (Q3)'), (5890, 'Clinics in Dermatology', 18791131, 0.803, 'Q1', 88, 155, 6315, 840, 249, '2', '1983-2020', 'Dermatology (Q1)'), (5891, 'Comptes Rendus Mathematique', 17783569, 0.803, 'Q1', 68, 124, 1904, 672, 477, '8', '2002-2020', 'Mathematics (miscellaneous) (Q1)'), (5892, 'Engineering Science and Technology, an Intern', 22150986, 0.803, 'Q1', 50, 132, 5391, 2346, 407, '16', '2014-2020', 'Civil and Structural Engineering (Q1); Computer Networks and Communications (Q1); Electronic, Optical and Magnetic Materials (Q1); Fluid Flow and Transfer Processes (Q1); Hardware and Architecture (Q1'), (5893, 'European Journal for Philosophy of Science', 18794920, 0.803, 'Q1', 20, 44, 2285, 176, 100, '16', '2011-2020', 'History and Philosophy of Science (Q1); Philosophy (Q1)'), (5894, 'Journal of Patient-Reported Outcomes', 25098020, 0.803, 'Q2', 10, 103, 3805, 359, 144, '19', '2017-2020', 'Health Informatics (Q2); Health Information Management (Q2)'), (5895, 'Journal of the Optical Society of America A: ', 15208532, 0.803, 'Q1', 158, 275, 9095, 1917, 857, '2', '1979, 1984-2020', 'Computer Vision and Pattern Recognition (Q1); Electronic, Optical and Magnetic Materials (Q1); Atomic and Molecular Physics, and Optics (Q2); Medicine (miscellaneous) (Q2)'), (5896, 'Current Stem Cell Research and Therapy', 1574888, 0.802, 'Q2', 50, 74, 7195, 739, 219, '52', '2006-2020', 'Medicine (miscellaneous) (Q2)'), (5897, 'European Journal of Oral Sciences', 9098836, 0.802, 'Q1', 93, 70, 2646, 553, 203, '25', '1970-2020', 'Dentistry (miscellaneous) (Q1)'), (5898, 'Geocarto International', 17520762, 0.802, 'Q1', 40, 275, 14922, 1301, 344, '3', '1986-2020', 'Geography, Planning and Development (Q1); Water Science and Technology (Q1)'), (5899, 'Insects', 20754450, 0.802, 'Q1', 37, 883, 54768, 2153, 762, '19', '2010-2020', 'Insect Science (Q1)'), (5900, 'International Journal of Logistics Research a', 13675567, 0.802, 'Q1', 33, 83, 6291, 424, 99, '3', '2008-2020', 'Business and International Management (Q1); Computer Science Applications (Q1); Information Systems (Q1); Management Information Systems (Q1); Control and Systems Engineering (Q2); Management of Techn'), (5901, 'International Journal of Non-Linear Mechanics', 207462, 0.802, 'Q1', 88, 194, 8316, 1662, 519, '3', '1966-2020', 'Mechanical Engineering (Q1); Mechanics of Materials (Q1); Applied Mathematics (Q2)'), (5902, 'Journal of Biological Inorganic Chemistry', 9498257, 0.802, 'Q1', 101, 100, 5591, 905, 292, '5', '1996-2020', 'Inorganic Chemistry (Q1); Biochemistry (Q2)'), (5903, 'Peabody Journal of Education', 161956, 0.802, 'Q1', 41, 43, 1943, 196, 114, '3', '1923-1991, 1993-2020', 'Education (Q1); Developmental and Educational Psychology (Q2)'), (5904, 'Venture Capital', 14645343, 0.802, 'Q1', 51, 15, 888, 153, 47, '3', '1999-2020', 'Finance (Q1)'), (5905, 'ChemPlusChem', 21926506, 0.801, 'Q1', 61, 306, 20510, 1425, 518, '5', '2012-2020', 'Chemistry (miscellaneous) (Q1)'), (5906, 'Critical Discourse Studies', 17405912, 0.801, 'Q1', 28, 68, 3360, 254, 99, '3', '2005, 2010-2020', 'Social Sciences (miscellaneous) (Q1)'), (5907, 'Head and Neck Pathology', 1936055, 0.801, 'Q2', 50, 205, 6585, 789, 254, '2', '2007-2020', 'Otorhinolaryngology (Q2); Pathology and Forensic Medicine (Q2); Oncology (Q3)'), (5908, 'Integrated Computer-Aided Engineering', 10692509, 0.801, 'Q1', 42, 16, 947, 378, 83, '16', '1993-2020', 'Computational Theory and Mathematics (Q1); Software (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2); Theoretical Computer Science (Q2)'), (5909, 'Internet Policy Review', 21976775, 0.801, 'Q1', 12, 52, 3236, 186, 80, '5', '2012-2020', 'Communication (Q1); Computer Networks and Communications (Q1); Management, Monitoring, Policy and Law (Q2)'), (5910, 'One Ecosystem', 23678194, 0.801, 'Q1', 12, 13, 768, 201, 55, '61', '2016-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Ecology (Q2); Nature and Landscape Conservation (Q2)'), (5911, 'Strahlentherapie und Onkologie', 1439099, 0.801, 'Q2', 68, 164, 4714, 933, 331, '5', '1986-2020', 'Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)'), (5912, 'Archaea', 14723646, 0.8, 'Q2', 40, 12, 531, 112, 34, '2', '2002-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Medicine (miscellaneous) (Q2); Physiology (Q2); Microbiology (Q3)'), (5913, 'Catalysis Communications', 15667367, 0.8, 'Q1', 121, 225, 6894, 3766, 998, '16', '1970, 2000-2020', 'Chemistry (miscellaneous) (Q1); Catalysis (Q2); Process Chemistry and Technology (Q2)'), (5914, 'Catalysts', 20734344, 0.8, 'Q2', 53, 1476, 92912, 8709, 2072, '19', '2011-2020', 'Catalysis (Q2); Physical and Theoretical Chemistry (Q2)'), (5915, 'International Journal of Rheumatology', 16879260, 0.8, 'Q3', 33, 16, 603, 92, 40, '2', '2010-2020', 'Immunology (Q3); Rheumatology (Q3)'), (5916, 'Journal of College Student Retention: Researc', 15414167, 0.8, 'Q1', 28, 93, 4900, 286, 111, '2', '2005-2020', 'Education (Q1)'), (5917, 'Journal of Comparative Physiology A: Neuroeth', 14321351, 0.8, 'Q1', 92, 76, 4350, 446, 232, '5', '1974-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Physiology (Q2); Behavioral Neuroscience (Q3)'), (5918, 'Journal of Youth Studies', 14699680, 0.8, 'Q1', 55, 141, 7952, 645, 248, '3', '2003-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Life-span and Life-course Studies (Q2)'), (5919, 'Personnel Review', 483486, 0.8, 'Q2', 71, 131, 10061, 1138, 346, '3', '1971-2020', 'Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2)'), (5920, 'Remote Sensing Letters', 2150704, 0.8, 'Q1', 43, 125, 2574, 1172, 376, '3', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Electrical and Electronic Engineering (Q1)'), (5921, 'Breeding Science', 13447610, 0.799, 'Q1', 53, 75, 3423, 451, 183, '6', '1993-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1); Genetics (Q3)'), (5922, 'Current Opinion in Urology', 9630643, 0.799, 'Q2', 60, 135, 2631, 640, 279, '2', '1993-2020', 'Urology (Q2)'), (5923, 'Ecological Psychology', 15326969, 0.799, 'Q1', 48, 13, 682, 123, 49, '2', '1989-2020', 'Computer Science (miscellaneous) (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Experimental and Cognitive Psychology (Q2); Social Psychology (Q2)'), (5924, 'IEEE Transactions on Circuits and Systems II:', 15583791, 0.799, 'Q1', 115, 814, 12816, 4217, 1102, '2', '2003-2020', 'Electrical and Electronic Engineering (Q1)'), (5925, 'Optics and Laser Technology', 303992, 0.799, 'Q1', 76, 632, 23515, 6819, 1709, '3', '1970-2021', 'Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Atomic and Molecular Physics, and Optics (Q2)'), (5926, 'Computer Networks', 13891286, 0.798, 'Q1', 135, 383, 19762, 4981, 877, '16', '1977-1984, 1989-1990, 1996-2020', 'Computer Networks and Communications (Q1)'), (5927, 'Globalizations', 1474774, 0.798, 'Q1', 37, 129, 7429, 479, 238, '3', '2004-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Management, Monitoring, Policy and Law (Q2); Public Administra'), (5928, 'Housing Policy Debate', 10511482, 0.798, 'Q1', 65, 85, 5374, 333, 147, '3', '1990-2008, 2010-2020', 'Development (Q1); Urban Studies (Q1); Management, Monitoring, Policy and Law (Q2)'), (5929, 'Marine Biotechnology', 14362236, 0.798, 'Q1', 78, 71, 3841, 679, 194, '2', '1999-2020', 'Aquatic Science (Q1); Biotechnology (Q2)'), (5930, 'Stereotactic and Functional Neurosurgery', 14230372, 0.798, 'Q1', 63, 94, 2705, 375, 154, '19', '1938-1942, 1944, 1946-1949, 1951-2020', 'Surgery (Q1); Neurology (clinical) (Q2)'), (5931, 'Acarologia', 44586, 0.797, 'Q1', 23, 56, 2952, 209, 179, '8', '1965-1985, 1987, 1994-2008, 2010-2020', 'Insect Science (Q1)'), (5932, 'American Journal of Criminal Justice', 10662316, 0.797, 'Q1', 27, 83, 4665, 316, 142, '2', '1975-1976, 1980-1982, 1985-1991, 1993-1997, 2009-2020', 'Law (Q1)'), (5933, 'Crop Protection', 2612194, 0.797, 'Q1', 99, 307, 14627, 2373, 822, '3', '1982-2021', 'Agronomy and Crop Science (Q1)'), (5934, 'Data Base for Advances in Information Systems', 950033, 0.797, 'Q1', 57, 26, 1770, 193, 76, '2', '1969-2020', 'Computer Networks and Communications (Q1); Management Information Systems (Q1)'), (5935, 'Economics of Innovation and New Technology', 14768364, 0.797, 'Q1', 53, 95, 6646, 374, 131, '3', '1990-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Management of Technology and Innovation (Q2)'), (5936, 'Future Microbiology', 17460921, 0.797, 'Q2', 82, 162, 8719, 1167, 423, '3', '2006-2020', 'Microbiology (medical) (Q2); Microbiology (Q3)'), (5937, 'International Archives of Occupational and En', 14321246, 0.797, 'Q2', 88, 122, 5281, 758, 274, '5', '1975-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (5938, 'Javnost', 18548377, 0.797, 'Q1', 30, 31, 1052, 222, 114, '3', '1994-2020', 'Communication (Q1)'), (5939, 'Journal of Legal Analysis', 21617201, 0.797, 'Q1', 11, 3, 332, 6, 11, '2', '2013-2017, 2019', 'Law (Q1)'), (5940, 'South African Journal of Chemical Engineering', 10269185, 0.797, 'Q1', 15, 53, 2028, 493, 91, '16', '2016-2020', 'Education (Q1); Energy (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q1); Catalysis (Q2); Filtration and Separation (Q2); Process Chemistry and Technology (Q2)'), (5941, 'Visual Cognition', 13506285, 0.797, 'Q1', 81, 46, 2740, 270, 181, '3', '1994-2020', 'Arts and Humanities (miscellaneous) (Q1); Experimental and Cognitive Psychology (Q2); Cognitive Neuroscience (Q3)'), (5942, 'Advances in Medical Sciences', 18961126, 0.796, 'Q2', 40, 58, 3244, 588, 179, '16', '2006-2020', 'Medicine (miscellaneous) (Q2)'), (5943, 'American Journal of Pharmaceutical Education', 15536467, 0.796, 'Q1', 63, 212, 4823, 1043, 490, '2', '1945-1948, 1973-1989, 1991, 1996-2020', 'Education (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacy (Q1); Medicine (miscellaneous) (Q2)'), (5944, 'Human Genome Variation', 2054345, 0.796, 'Q2', 14, 43, 694, 259, 148, '3', '2014-2020', 'Biochemistry (Q2); Genetics (Q3); Molecular Biology (Q3)'), (5945, 'International Journal of Mechanics and Materi', 15691713, 0.796, 'Q1', 33, 62, 2304, 444, 124, '16', '2005-2006, 2008-2020', 'Mechanical Engineering (Q1); Mechanics of Materials (Q1); Materials Science (miscellaneous) (Q2)'), (5946, 'Spanish Journal of Marketing - ESIC', 24449709, 0.796, 'Q2', 13, 20, 1936, 288, 58, '12', '2016-2020', 'Marketing (Q2)'), (5947, 'Intensive and Critical Care Nursing', 9643397, 0.795, 'Q1', 55, 106, 2732, 664, 234, '2', '1992-2020', 'Critical Care Nursing (Q1)'), (5948, 'International Journal of Rheumatic Diseases', 17561841, 0.795, 'Q3', 41, 242, 7230, 1810, 790, '3', '2008-2020', 'Rheumatology (Q3)'), (5949, 'Journal of Applied Entomology', 14390418, 0.795, 'Q1', 60, 110, 5324, 785, 326, '3', '1986-2020', 'Agronomy and Crop Science (Q1); Insect Science (Q1)'), (5950, 'Journal of Plant Research', 9189440, 0.795, 'Q1', 67, 80, 4238, 603, 249, '6', '1993-2020', 'Plant Science (Q1)'), (5951, 'Methods and Applications in Fluorescence', 20506120, 0.795, 'Q1', 25, 68, 3374, 501, 169, '3', '2013-2020', 'Instrumentation (Q1); Atomic and Molecular Physics, and Optics (Q2); Materials Science (miscellaneous) (Q2); Spectroscopy (Q2)'), (5952, 'Parasite Immunology', 1419838, 0.795, 'Q2', 75, 92, 5372, 499, 207, '3', '1979-2020', 'Parasitology (Q2); Immunology (Q3)'), (5953, 'Society and Mental Health', 21568731, 0.795, 'Q2', 23, 24, 1815, 125, 49, '2', '2011-2020', 'Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)'), (5954, 'Studies in American Political Development', 14698692, 0.795, 'Q1', 24, 18, 1575, 30, 37, '3', '1986-1987, 1989-2020', 'History (Q1); Sociology and Political Science (Q1)'), (5955, 'Cancer Control', 10732748, 0.794, 'Q2', 72, 122, 5078, 485, 145, '2', '1995-2020', 'Hematology (Q2); Medicine (miscellaneous) (Q2); Oncology (Q3)'), (5956, 'Frontiers in Computational Neuroscience', 16625188, 0.794, 'Q3', 58, 121, 7141, 1141, 302, '19', '2007-2020', 'Neuroscience (miscellaneous) (Q3); Cellular and Molecular Neuroscience (Q4)'), (5957, 'Journal of Cardiovascular Surgery', 219509, 0.794, 'Q2', 52, 107, 3143, 481, 290, '7', '1960-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)'), (5958, 'Journal of School Violence', 15388239, 0.794, 'Q1', 39, 46, 2063, 286, 108, '2', '2002-2020', 'Education (Q1); Safety, Risk, Reliability and Quality (Q1)'), (5959, 'Journal of the American Academy of Audiology', 10500545, 0.794, 'Q2', 73, 104, 2755, 444, 249, '2', '1990-2020', 'Speech and Hearing (Q2)'), (5960, 'Quality in Higher Education', 14701081, 0.794, 'Q1', 43, 24, 923, 87, 54, '3', '1995-2020', 'Education (Q1)'), (5961, 'SPE Reservoir Evaluation and Engineering', 19300212, 0.794, 'Q1', 82, 92, 3850, 913, 253, '2', '1998-2020', 'Energy (miscellaneous) (Q1); Geology (Q1); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2)'), (5962, 'Veterinary Pathology', 15442217, 0.794, 'Q1', 89, 120, 4753, 718, 306, '2', '1964-2020', 'Veterinary (miscellaneous) (Q1)'), (5963, 'American Journal of Perinatology', 10988785, 0.793, 'Q1', 67, 386, 11155, 1172, 674, '2', '1983-2020', 'Pediatrics, Perinatology and Child Health (Q1); Obstetrics and Gynecology (Q2)'), (5964, 'Archives of Gynecology and Obstetrics', 14320711, 0.793, 'Q2', 68, 416, 12604, 2542, 1028, '5', '1987-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (5965, 'Asian Journal of Psychiatry', 18762018, 0.793, 'Q2', 37, 572, 12504, 1550, 488, '16', '2008-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2)'), (5966, 'British Journal of Oral and Maxillofacial Sur', 15321940, 0.793, 'Q2', 73, 375, 6252, 1145, 636, '2', '1984-2020', 'Oral Surgery (Q2); Otorhinolaryngology (Q2); Surgery (Q2)'), (5967, 'International Journal of Control', 207179, 0.793, 'Q2', 115, 488, 16385, 2034, 736, '3', '1965-2020', 'Computer Science Applications (Q2); Control and Systems Engineering (Q2)'), (5968, 'Journal of Communication Disorders', 219924, 0.793, 'Q1', 65, 63, 3943, 345, 143, '2', '1967-2020', 'Linguistics and Language (Q1); LPN and LVN (Q1); Experimental and Cognitive Psychology (Q2); Speech and Hearing (Q2); Cognitive Neuroscience (Q3)'), (5969, 'Microcirculation', 10739688, 0.793, 'Q2', 83, 59, 3565, 488, 200, '2', '1981-1982, 1994-2020', 'Cardiology and Cardiovascular Medicine (Q2); Physiology (medical) (Q2); Molecular Biology (Q3); Physiology (Q3)'), (5970, 'Research Quarterly for Exercise and Sport', 2701367, 0.793, 'Q1', 90, 166, 6938, 517, 174, '3', '1980-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Nephrology (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)'), (5971, 'Source Code for Biology and Medicine', 17510473, 0.793, 'Q1', 28, 1, 10, 31, 15, '3', '2006-2020', 'Information Systems (Q1); Information Systems and Management (Q1); Computer Science Applications (Q2); Health Informatics (Q2)'), (5972, 'Spectrochimica Acta, Part B: Atomic Spectrosc', 5848547, 0.793, 'Q1', 114, 181, 7176, 1815, 498, '16', '1967-2020', 'Instrumentation (Q1); Analytical Chemistry (Q2); Atomic and Molecular Physics, and Optics (Q2); Spectroscopy (Q2)'), (5973, 'Clinical Neuroradiology', 18691447, 0.792, 'Q2', 27, 181, 4815, 520, 200, '5', '2000, 2010-2020', 'Neurology (clinical) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5974, 'Inquiry (United States)', 19457243, 0.792, 'Q2', 43, 75, 2965, 381, 194, '2', '1972-2020', 'Health Policy (Q2)'), (5975, 'Journal of Law and Courts', 21646589, 0.792, 'Q1', 13, 17, 1002, 58, 42, '2', '2013-2020', 'Law (Q1)'), (5976, 'Politics &amp; Gender', 1743923, 0.792, 'Q1', 40, 87, 3875, 200, 128, '3', '2005-2020', 'Gender Studies (Q1); Sociology and Political Science (Q1)'), (5977, 'Rhizosphere', 24522198, 0.792, 'Q1', 15, 81, 4970, 423, 143, '16', '2016-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1); Soil Science (Q2)'), (5978, 'Applied Intelligence', 924669, 0.791, 'Q2', 66, 411, 19635, 3721, 682, '16', '1991-2020', 'Artificial Intelligence (Q2)'), (5979, 'Environmental Development', 22114645, 0.791, 'Q1', 31, 80, 4939, 509, 130, '16', '2012-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)'), (5980, 'Experimental and Molecular Pathology', 10960945, 0.791, 'Q2', 68, 170, 8168, 986, 327, '2', '1962-1995, 1997-2020', 'Clinical Biochemistry (Q2); Pathology and Forensic Medicine (Q2); Molecular Biology (Q3)'), (5981, 'Journal of Nuclear Cardiology', 15326551, 0.791, 'Q2', 82, 704, 13995, 1825, 672, '2', '1994-2020', 'Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (5982, 'Operative Neurosurgery', 23324252, 0.791, 'Q2', 21, 543, 7365, 1223, 603, '2', '2012-2020', 'Neurology (clinical) (Q2); Surgery (Q2)'), (5983, 'Pulmonary Circulation', 20458932, 0.791, 'Q2', 40, 192, 6994, 870, 332, '2', '2011-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (5984, 'Review of Economics of the Household', 15737152, 0.791, 'Q1', 32, 71, 3148, 254, 153, '16', '2005-2020', 'Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (5985, 'BMC Proceedings', 17536561, 0.79, 'Q2', 17, 17, 630, 175, 95, '3', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (5986, 'Cancer Nursing', 162220, 0.79, 'Q1', 76, 100, 3686, 676, 285, '2', '1978-2020', 'Oncology (nursing) (Q1); Oncology (Q3)'), (5987, 'Cultural Sociology', 17499755, 0.79, 'Q1', 33, 33, 1820, 167, 75, '3', '2007-2020', 'Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1)'), (5988, 'European Journal of Forest Research', 16124677, 0.79, 'Q1', 63, 90, 5776, 604, 219, '5', '1996-1997, 2002, 2004-2020', 'Forestry (Q1); Plant Science (Q1)'), (5989, 'European Journal of Ophthalmology', 17246016, 0.79, 'Q2', 53, 784, 18513, 803, 450, '7', '1991-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q2)'), (5990, 'Journal of Artificial Intelligence Research', 10769757, 0.79, 'Q2', 123, 75, 4723, 1285, 199, '2', '1993, 1996-2020', 'Artificial Intelligence (Q2)'), (5991, 'Peritoneal Dialysis International', 17184304, 0.79, 'Q2', 83, 122, 3048, 504, 255, '9', '1988-2020', 'Medicine (miscellaneous) (Q2); Nephrology (Q2)'), (5992, 'Psychiatric Quarterly', 332720, 0.79, 'Q2', 51, 151, 5992, 591, 239, '2', '1927-1975, 1977-2020', 'Psychiatry and Mental Health (Q2)'), (5993, 'Agroecology and Sustainable Food Systems', 21683565, 0.789, 'Q1', 42, 72, 4056, 422, 160, '3', '2013-2020', 'Agronomy and Crop Science (Q1); Development (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (5994, 'Applied Physiology, Nutrition and Metabolism', 17155312, 0.789, 'Q2', 89, 192, 8113, 1449, 550, '9', '2006-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2); Physiology (medical) (Q2); Sports Science (Q2); Physiology (Q3)'), (5995, 'Arabian Journal of Chemistry', 18785352, 0.789, 'Q1', 70, 722, 40225, 6799, 1249, '29', '2009-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)'), (5996, 'Clinical Respiratory Journal', 17526981, 0.789, 'Q2', 33, 169, 4546, 1277, 572, '3', '2007-2020', 'Pulmonary and Respiratory Medicine (Q2); Genetics (clinical) (Q3); Immunology and Allergy (Q3)'), (5997, 'Communication and Sport', 21674809, 0.789, 'Q1', 17, 82, 5369, 347, 131, '3', '2015-2020', 'Communication (Q1); Social Sciences (miscellaneous) (Q1)'), (5998, 'Cross-Cultural Research', 15523578, 0.789, 'Q1', 39, 23, 1393, 141, 63, '2', '1966-1984, 1986-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Psychology (miscellaneous) (Q2)'), (5999, 'Early Human Development', 18726232, 0.789, 'Q2', 95, 255, 8583, 1076, 462, '42', '1977-2020', 'Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (6000, 'Journal of Nutrition and Metabolism', 20900732, 0.789, 'Q1', 42, 85, 4261, 420, 139, '32', '2010-2020', 'Food Science (Q1); Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)'), (6001, 'Optimization Methods and Software', 10294937, 0.789, 'Q1', 60, 115, 4076, 569, 206, '3', '1992-2020', 'Control and Optimization (Q1); Software (Q1); Applied Mathematics (Q2)'), (6002, 'Service Business', 18628508, 0.789, 'Q1', 32, 23, 1709, 334, 98, '5', '2007-2020', 'Business and International Management (Q1); Strategy and Management (Q2)'), (6003, 'Chemical Engineering Research and Design', 17443563, 0.788, 'Q1', 99, 418, 19563, 5429, 1397, '3', '1983-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)'), (6004, 'Computers, Materials and Continua', 15462218, 0.788, 'Q1', 40, 553, 16057, 2662, 430, '2', '2004-2020', 'Electrical and Electronic Engineering (Q1); Mechanics of Materials (Q1); Modeling and Simulation (Q1); Biomaterials (Q2); Computer Science Applications (Q2)'), (6005, 'Environmental Values', 9632719, 0.788, 'Q1', 47, 36, 1633, 202, 86, '3', '1994-2020', 'Environmental Science (miscellaneous) (Q1); Philosophy (Q1)'), (6006, 'Experimental Astronomy', 15729508, 0.788, 'Q2', 47, 29, 1408, 403, 126, '16', '1989-2006, 2008-2020', 'Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)'), (6007, 'International Journal of Bank Marketing', 2652323, 0.788, 'Q2', 81, 54, 4862, 1151, 245, '3', '1983-2020', 'Marketing (Q2)'), (6008, 'Journal of Materials Research', 8842914, 0.788, 'Q1', 148, 336, 16728, 3471, 1192, '3', '1986-2020', 'Condensed Matter Physics (Q1); Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (6009, 'Journal of Responsible Innovation', 23299460, 0.788, 'Q2', 23, 59, 3250, 285, 78, '3', '2014-2020', 'Information Systems and Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (6010, 'Medical Anthropology: Cross Cultural Studies ', 1459740, 0.788, 'Q1', 41, 79, 3481, 309, 150, '3', '1977-1986, 1989-1997, 1999-2020', 'Anthropology (Q1); Health (social science) (Q1)'), (6011, 'Neurologia Medico-Chirurgica', 13498029, 0.788, 'Q2', 51, 72, 2061, 506, 214, '6', '1959-1968, 1971-2020', 'Neurology (clinical) (Q2); Surgery (Q2)'), (6012, 'Police Practice and Research', 15614263, 0.788, 'Q1', 24, 63, 3490, 240, 118, '3', '2009-2020', 'Law (Q1); Social Sciences (miscellaneous) (Q1)'), (6013, 'Dementia and Geriatric Cognitive Disorders Ex', 16645464, 0.787, 'Q2', 16, 22, 756, 283, 110, '19', '2011, 2015-2020', 'Psychiatry and Mental Health (Q2); Cognitive Neuroscience (Q3)'), (6014, 'ESC heart failure', 20555822, 0.787, 'Q2', 25, 509, 15166, 1419, 364, '8', '2014-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (6015, 'Journal for the Education of the Gifted', 21629501, 0.787, 'Q1', 33, 20, 1309, 87, 50, '2', '1987-2020', 'Education (Q1)'), (6016, 'Journal of Cardiovascular Pharmacology and Th', 10742484, 0.787, 'Q2', 50, 66, 2847, 466, 178, '3', '1996-2020', 'Cardiology and Cardiovascular Medicine (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (6017, 'Journal of Crime and Justice', 21589119, 0.787, 'Q1', 29, 70, 4684, 237, 107, '3', '1984-2020', 'Law (Q1)'), (6018, 'Journal of Physical Activity and Health', 15433080, 0.787, 'Q2', 73, 152, 6485, 1076, 423, '2', '2004-2020', 'Orthopedics and Sports Medicine (Q2)'), (6019, 'Journal of Physics A: Mathematical and Theore', 17518113, 0.787, 'Q1', 163, 618, 28046, 6103, 1696, '3', '2007-2020', 'Modeling and Simulation (Q1); Mathematical Physics (Q2); Physics and Astronomy (miscellaneous) (Q2); Statistical and Nonlinear Physics (Q2); Statistics and Probability (Q2)'), (6020, 'Pathology Research and Practice', 16180631, 0.787, 'Q2', 59, 441, 16383, 2699, 958, '5', '1978-2020', 'Pathology and Forensic Medicine (Q2); Cell Biology (Q3)'), (6021, 'Research on Aging', 1640275, 0.787, 'Q1', 62, 48, 2391, 315, 126, '2', '1979-2020', 'Health (social science) (Q1); Geriatrics and Gerontology (Q2); Social Psychology (Q2)'), (6022, 'Revista de Investigacion Educativa', 2124068, 0.787, 'Q1', 16, 15, 647, 211, 91, '12', '2012-2020', 'Education (Q1)'), (6023, 'Current Opinion in Obstetrics and Gynecology', 1040872, 0.786, 'Q2', 73, 71, 1035, 529, 210, '2', '1989-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (6024, 'East European Politics', 21599165, 0.786, 'Q1', 21, 50, 3330, 222, 80, '3', '2012-2020', 'Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (6025, 'JBJS Open Access', 24727245, 0.786, 'Q2', 3, 2, 64, 38, 26, '2', '2016, 2019', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (6026, 'Journal of Clinical Psychopharmacology', 1533712, 0.786, 'Q2', 121, 159, 2137, 746, 273, '2', '1981-2020', 'Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2)'), (6027, 'Journal of frailty &amp; aging,The', 22601341, 0.786, 'Q2', 17, 47, 0, 343, 124, '8', '2016-2020', 'Medicine (miscellaneous) (Q2)'), (6028, 'Journal of Health Services Research and Polic', 17581060, 0.786, 'Q2', 72, 40, 1087, 241, 106, '3', '1995-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6029, 'Journal of Management Education', 10525629, 0.786, 'Q1', 47, 58, 2901, 265, 111, '2', '1975-1984, 1986-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Education (Q1)'), (6030, 'Journal of Pharmaceutical Analysis', 20951779, 0.786, 'Q1', 32, 65, 3673, 741, 166, '1', '2011-2020', 'Pharmaceutical Science (Q1); Pharmacy (Q1); Analytical Chemistry (Q2); Drug Discovery (Q2); Electrochemistry (Q2); Spectroscopy (Q2)'), (6031, 'Journal of Virological Methods', 1660934, 0.786, 'Q3', 100, 149, 4271, 1240, 589, '16', '1980-2020', 'Virology (Q3)'), (6032, 'Natural Language Semantics', 925854, 0.786, 'Q1', 41, 11, 660, 36, 30, '16', '1992-1993, 1995-2002, 2004-2020', 'Linguistics and Language (Q1); Philosophy (Q1)'), (6033, 'Palliative and Supportive Care', 14789523, 0.786, 'Q1', 48, 168, 4753, 583, 256, '3', '2003-2020', 'Nursing (miscellaneous) (Q1); Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (6034, 'Physica Status Solidi - Rapid Research Letter', 18626254, 0.786, 'Q1', 68, 197, 7725, 1372, 245, '5', '2007-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2)'), (6035, 'Publications of the Research Institute for Ma', 345318, 0.786, 'Q2', 39, 23, 539, 81, 72, '19', '1969-2020', 'Mathematics (miscellaneous) (Q2)'), (6036, 'American Journal of International Law', 29300, 0.785, 'Q1', 73, 29, 1018, 137, 127, '2', '1979, 1984, 1987, 1996-2020', 'Law (Q1); Political Science and International Relations (Q1)'), (6037, 'Archaeological Prospection', 10990763, 0.785, 'Q1', 38, 39, 1777, 245, 86, '3', '1994-2020', 'Archeology (Q1); History (Q1)'), (6038, 'Discrete Mathematics', 12365, 0.785, 'Q1', 81, 406, 7174, 1484, 1051, '16', '1971-2020', 'Discrete Mathematics and Combinatorics (Q1); Theoretical Computer Science (Q2)'), (6039, 'Journal of European Integration', 7036337, 0.785, 'Q1', 43, 95, 5355, 319, 180, '3', '1970, 1977-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (6040, 'Oryx', 306053, 0.785, 'Q2', 69, 151, 6604, 601, 270, '3', '1950-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)'), (6041, 'Review of Philosophy and Psychology', 18785166, 0.785, 'Q1', 35, 74, 4026, 189, 124, '5', '2010-2020', 'Philosophy (Q1); Experimental and Cognitive Psychology (Q2)'), (6042, 'Voluntas', 9578765, 0.785, 'Q1', 51, 137, 8791, 810, 313, '2', '1990-2020', 'Business and International Management (Q1); Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Public Administration (Q2); Strategy and Management (Q2)'), (6043, 'Annals of Dyslexia', 7369387, 0.784, 'Q1', 49, 21, 1197, 110, 53, '2', '1982-2020', 'Education (Q1); Speech and Hearing (Q2)'), (6044, 'Annals of Laboratory Medicine', 22343806, 0.784, 'Q2', 34, 123, 2976, 673, 214, '13', '2012-2021', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2)'), (6045, 'Behavioural Processes', 18728308, 0.784, 'Q1', 78, 169, 8585, 1285, 631, '16', '1976-2020', 'Animal Science and Zoology (Q1); Medicine (miscellaneous) (Q2); Behavioral Neuroscience (Q3)'), (6046, 'Cardiology in Review', 10615377, 0.784, 'Q2', 55, 61, 2998, 319, 138, '2', '1995-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (6047, 'Documenta Ophthalmologica', 15732622, 0.784, 'Q2', 55, 66, 1802, 282, 136, '16', '1938, 1948-1951, 1954-2020', 'Ophthalmology (Q2); Physiology (medical) (Q3); Sensory Systems (Q3)'), (6048, 'European Management Review', 17404762, 0.784, 'Q1', 32, 92, 7550, 351, 125, '2', '2009-2020', 'Business and International Management (Q1); Strategy and Management (Q2)'), (6049, 'European Political Science', 16820983, 0.784, 'Q1', 22, 74, 2414, 228, 123, '3', '2005, 2008-2020', 'Political Science and International Relations (Q1)'), (6050, 'Infection Ecology and Epidemiology', 20008686, 0.784, 'Q1', 12, 24, 644, 166, 55, '3', '2012, 2014, 2016-2020', 'Environmental Science (miscellaneous) (Q1); Epidemiology (Q3)'), (6051, 'Journal of Applied Toxicology', 10991263, 0.784, 'Q2', 87, 167, 9553, 1485, 428, '3', '1981-2020', 'Toxicology (Q2)'), (6052, 'Journal of Brand Management', 14791803, 0.784, 'Q2', 50, 46, 3825, 484, 136, '3', '2005, 2008-2020', 'Marketing (Q2); Strategy and Management (Q2)'), (6053, 'Journal of Hydrology and Hydromechanics', 13384333, 0.784, 'Q1', 25, 41, 1968, 340, 133, '5', '1973-1992, 1994-1996, 2007-2020', 'Fluid Flow and Transfer Processes (Q1); Mechanical Engineering (Q1); Water Science and Technology (Q1)'), (6054, 'Journal of Integrative Agriculture', 20953119, 0.784, 'Q1', 47, 284, 13239, 2709, 827, '16', '2012-2020', 'Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Food Animals (Q1); Food Science (Q1); Plant Science (Q1); Biochemistry (Q2); Ecology (Q2)'), (6055, 'Journal of Law, Finance, and Accounting', 23805013, 0.784, 'Q1', 5, 9, 405, 26, 16, '2', '2016-2018, 2020', 'Law (Q1); Accounting (Q2); Finance (Q2)'), (6056, 'Journal of Lower Genital Tract Disease', 15260976, 0.784, 'Q2', 43, 76, 1759, 392, 204, '2', '1997-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (6057, 'Language Learning Journal', 9571736, 0.784, 'Q1', 26, 76, 3695, 264, 139, '3', '1990-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6058, 'Psychiatry Investigation', 17383684, 0.784, 'Q2', 35, 157, 7112, 1032, 407, '13', '2006-2020', 'Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)'), (6059, 'Written Communication', 7410883, 0.784, 'Q1', 50, 16, 1196, 126, 51, '2', '1984-2020', 'Communication (Q1); Literature and Literary Theory (Q1)'), (6060, 'Zhongguo Dianji Gongcheng Xuebao/Proceedings ', 2588013, 0.784, 'Q1', 106, 792, 21968, 6418, 2385, '1', '1985-2020', 'Electrical and Electronic Engineering (Q1)'), (6061, 'Adaptive Human Behavior and Physiology', 21987335, 0.783, 'Q2', 17, 27, 2418, 191, 73, '19', '2015-2020', 'Experimental and Cognitive Psychology (Q2); Behavioral Neuroscience (Q3); Physiology (Q3)'), (6062, 'Die Naturwissenschaften', 14321904, 0.783, 'Q2', 97, 53, 2835, 490, 225, '5', '1913-1944, 1946-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Medicine (miscellaneous) (Q2)'), (6063, 'Ethos', 912131, 0.783, 'Q1', 44, 19, 1144, 138, 82, '2', '1973-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (6064, 'Fottea', 18025439, 0.783, 'Q1', 25, 21, 940, 128, 54, '31', '2008-2020', 'Plant Science (Q1)'), (6065, 'IEEE Transactions on Computational Social Sys', 2329924, 0.783, 'Q1', 28, 142, 5745, 1290, 239, '2', '2014-2020', 'Human-Computer Interaction (Q1); Modeling and Simulation (Q1); Social Sciences (miscellaneous) (Q1)'), (6066, 'Journal of Cancer Epidemiology', 16878566, 0.783, 'Q2', 23, 11, 361, 46, 22, '2', '2009-2020', 'Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3); Genetics (Q3)'), (6067, 'Journal of Philosophical Logic', 223611, 0.783, 'Q1', 39, 50, 1697, 143, 110, '16', '1972-2020', 'Philosophy (Q1)'), (6068, 'Measurement and Evaluation in Counseling and ', 7481756, 0.783, 'Q1', 47, 30, 1395, 173, 67, '2', '1996-2020', 'Education (Q1); Applied Psychology (Q2); Developmental and Educational Psychology (Q2); Psychology (miscellaneous) (Q2)'), (6069, 'Signs and Society', 23264497, 0.783, 'Q1', 10, 19, 1014, 85, 61, '2', '2015-2020', 'Communication (Q1); Cultural Studies (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Visual Arts and Performing Arts (Q1)'), (6070, 'Toxics', 23056304, 0.783, 'Q1', 25, 124, 7756, 718, 166, '19', '2013-2020', 'Chemical Health and Safety (Q1); Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)'), (6071, 'Acta Sociologica', 16993, 0.782, 'Q1', 52, 39, 1760, 127, 71, '3', '1956-1959, 1962, 1964-2020', 'Sociology and Political Science (Q1)'), (6072, 'Africa Spectrum', 20397, 0.782, 'Q1', 20, 19, 807, 71, 44, '5', '1983-1984, 2006-2020', 'Cultural Studies (Q1); Development (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (6073, 'Batteries', 23130105, 0.782, 'Q1', 22, 60, 2967, 774, 182, '19', '2015-2020', 'Electrical and Electronic Engineering (Q1); Electrochemistry (Q2); Energy Engineering and Power Technology (Q2)'), (6074, 'British Journal of Radiology', 1748880, 0.782, 'Q2', 106, 319, 1739, 2939, 1048, '3', '1945-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6075, 'Experimental Brain Research', 14321106, 0.782, 'Q3', 172, 253, 13464, 1862, 898, '5', '1966-2020', 'Neuroscience (miscellaneous) (Q3)'), (6076, 'IEEE Transactions on Broadcasting', 15579611, 0.782, 'Q1', 80, 84, 2773, 980, 206, '2', '1963-2020', 'Electrical and Electronic Engineering (Q1); Media Technology (Q1)'), (6077, 'Journal of Medical Virology', 10969071, 0.782, 'Q2', 121, 731, 20345, 1785, 845, '2', '1977-2020', 'Infectious Diseases (Q2); Virology (Q3)'), (6078, 'Journal of the Science of Food and Agricultur', 10970010, 0.782, 'Q1', 142, 730, 32872, 7411, 2064, '3', '1950-2020', 'Agronomy and Crop Science (Q1); Food Science (Q1); Biotechnology (Q2); Nutrition and Dietetics (Q2)'), (6079, 'Molecules', 14203049, 0.782, 'Q1', 149, 6268, 302314, 43650, 10301, '19', '1992, 1996-2020', 'Chemistry (miscellaneous) (Q1); Pharmaceutical Science (Q1); Analytical Chemistry (Q2); Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry ('), (6080, 'Nuclear Physics A', 3759474, 0.782, 'Q2', 174, 132, 6638, 2146, 894, '16', '1966-2020', 'Nuclear and High Energy Physics (Q2)'), (6081, 'Sociology Compass', 17519020, 0.782, 'Q1', 31, 81, 6927, 562, 250, '2', '2011-2020', 'Social Sciences (miscellaneous) (Q1)'), (6082, 'Ad Hoc Networks', 15708705, 0.781, 'Q1', 94, 171, 7142, 2621, 481, '16', '2003-2020', 'Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Software (Q1)'), (6083, 'Cambridge Yearbook of European Legal Studies', 20497636, 0.781, 'Q1', 13, 1, 22, 60, 37, '3', '1998, 2000, 2008-2010, 2012-2019', 'Law (Q1)'), (6084, 'Eye and Contact Lens', 1542233, 0.781, 'Q2', 57, 101, 745, 644, 333, '2', '1986, 1993-1994, 2002-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q2)'), (6085, 'IEEE Transactions on Emerging Topics in Compu', 21686750, 0.781, 'Q1', 46, 160, 2976, 935, 178, '2', '2013-2020', 'Computer Science (miscellaneous) (Q1); Human-Computer Interaction (Q1); Information Systems (Q1); Computer Science Applications (Q2)'), (6086, 'International Review of Economics and Finance', 10590560, 0.781, 'Q2', 54, 186, 9509, 1462, 524, '2', '1992-2021', 'Economics and Econometrics (Q2); Finance (Q2)'), (6087, 'Journal of Organizational Effectiveness', 20516614, 0.781, 'Q2', 14, 20, 1519, 186, 60, '3', '2014-2020', 'Organizational Behavior and Human Resource Management (Q2)'), (6088, 'Mathematical Proceedings of the Cambridge Phi', 3050041, 0.781, 'Q2', 46, 66, 1541, 245, 173, '3', '1924-2020', 'Mathematics (miscellaneous) (Q2)'), (6089, 'Sarcoma', 1357714, 0.781, 'Q2', 41, 33, 1128, 211, 81, '2', '1997-2020', 'Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)'), (6090, 'Surveillance &amp; Society', 14777487, 0.781, 'Q1', 46, 45, 2111, 242, 150, '3', '2002-2020', 'Safety Research (Q1); Urban Studies (Q1)'), (6091, 'Clinics in Sports Medicine', 1556228, 0.78, 'Q1', 81, 66, 3179, 367, 135, '3', '1982-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)'), (6092, 'Journal of Surgical Research', 10958673, 0.78, 'Q2', 108, 688, 19607, 3583, 1614, '2', '1961-2021', 'Surgery (Q2)'), (6093, 'Public Personnel Management', 910260, 0.78, 'Q2', 43, 45, 3176, 186, 65, '2', '1973, 1982-1984, 1989, 1993, 1995-2020', 'Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Public Administration (Q2); Strategy and Management (Q2)'), (6094, 'Research in Engineering Design - Theory, Appl', 14356066, 0.78, 'Q1', 68, 25, 1752, 310, 84, '3', '1989-2020', 'Architecture (Q1); Civil and Structural Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Mechanical Engineering (Q1)'), (6095, 'Topics in Stroke Rehabilitation', 19455119, 0.78, 'Q1', 62, 104, 4170, 600, 245, '3', '1996-2020', 'Community and Home Care (Q1); Rehabilitation (Q1); Neurology (clinical) (Q2)'), (6096, 'ACS Omega', 24701343, 0.779, 'Q1', 40, 3534, 164599, 18970, 5527, '2', '2016-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1)'), (6097, 'BMJ Supportive and Palliative Care', 2045435, 0.779, 'Q1', 33, 304, 8155, 784, 310, '3', '2011-2020', 'Medical and Surgical Nursing (Q1); Medicine (miscellaneous) (Q2); Oncology (nursing) (Q2)'), (6098, 'Clinical Gerontologist', 15452301, 0.779, 'Q1', 31, 114, 5490, 340, 126, '2', '1982-2020', 'Health (social science) (Q1); Clinical Psychology (Q2); Geriatrics and Gerontology (Q2); Gerontology (Q2); Social Psychology (Q2)'), (6099, 'Health Information and Libraries Journal', 14711842, 0.779, 'Q1', 38, 61, 1482, 235, 93, '3', '2001-2020', 'Library and Information Sciences (Q1); Health Informatics (Q2); Health Information Management (Q2)'), (6100, 'Journal of Medical Imaging', 23294310, 0.779, 'Q2', 29, 120, 4674, 1445, 399, '2', '2014-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (6101, 'Molecular Omics', 25154184, 0.779, 'Q2', 10, 55, 2844, 254, 90, '3', '2018-2020', 'Biochemistry (Q2); Genetics (Q3); Molecular Biology (Q3)'), (6102, 'Optometry and Vision Science', 15389235, 0.779, 'Q2', 97, 159, 2838, 769, 399, '2', '1905, 1924-2020', 'Ophthalmology (Q2); Optometry (Q2)'), (6103, 'Solid State Nuclear Magnetic Resonance', 9262040, 0.779, 'Q1', 61, 32, 1736, 337, 144, '16', '1992-2020', 'Chemistry (miscellaneous) (Q1); Instrumentation (Q1); Radiation (Q1); Nuclear and High Energy Physics (Q2)'), (6104, 'Bioengineering', 23065354, 0.778, 'Q2', 27, 163, 12049, 1416, 295, '19', '2014-2020', 'Bioengineering (Q2)'), (6105, 'Clinical Radiology', 1365229, 0.778, 'Q2', 90, 291, 8295, 1830, 715, '3', '1960-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6106, 'Emotion, Space and Society', 17554586, 0.778, 'Q2', 37, 57, 2659, 366, 155, '16', '2008-2020', 'Experimental and Cognitive Psychology (Q2); Social Psychology (Q2)'), (6107, 'Health Economics Review', 21911991, 0.778, 'Q2', 24, 38, 1666, 274, 119, '5', '2011-2020', 'Health Policy (Q2)'), (6108, 'BMC Medical Informatics and Decision Making', 14726947, 0.777, 'Q2', 73, 339, 12866, 2003, 589, '3', '2001-2020', 'Health Informatics (Q2); Health Policy (Q2)'), (6109, 'Journal of Magnetic Resonance', 10907807, 0.777, 'Q1', 123, 148, 6410, 1511, 624, '2', '1997-2020', 'Condensed Matter Physics (Q1); Biochemistry (Q2); Biophysics (Q2); Nuclear and High Energy Physics (Q2)'), (6110, 'Journal of Pharmaceutical and Biomedical Anal', 7317085, 0.777, 'Q1', 127, 687, 23894, 6995, 1943, '16', '1983-2020', 'Pharmaceutical Science (Q1); Analytical Chemistry (Q2); Clinical Biochemistry (Q2); Drug Discovery (Q2); Spectroscopy (Q2)'), (6111, 'Physics and Imaging in Radiation Oncology', 24056316, 0.777, 'Q1', 12, 72, 2031, 287, 135, '42', '2017-2020', 'Radiation (Q1); Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)'), (6112, 'RELC Journal', 1745526, 0.777, 'Q1', 33, 95, 2905, 212, 90, '3', '1970-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6113, 'Surgery Research and Practice', 23566124, 0.777, 'Q2', 8, 0, 0, 6, 1, '2', '2014-2017', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (6114, 'Viral Immunology', 15578976, 0.777, 'Q3', 61, 97, 4555, 471, 226, '2', '1987, 1989-2020', 'Immunology (Q3); Molecular Medicine (Q3); Virology (Q3)'), (6115, 'Annals of Global Analysis and Geometry', 15729060, 0.776, 'Q1', 37, 48, 1074, 217, 164, '16', '1983-2020', 'Political Science and International Relations (Q1); Analysis (Q2); Geometry and Topology (Q2)'), (6116, 'Archives of Dermatological Research', 3403696, 0.776, 'Q1', 80, 165, 5514, 727, 263, '5', '1971, 1973-2020', 'Dermatology (Q1); Medicine (miscellaneous) (Q2)'), (6117, 'Human-centric Computing and Information Scien', 21921962, 0.776, 'Q1', 34, 53, 2933, 782, 122, '2', '2011-2020', 'Computer Science (miscellaneous) (Q1)'), (6118, 'Journal of Pharmaceutical Sciences', 15206017, 0.776, 'Q1', 177, 404, 18698, 4166, 1128, '2', '1961-2020', 'Pharmaceutical Science (Q1)'), (6119, 'Operations-Research-Spektrum', 1716468, 0.776, 'Q2', 69, 37, 1577, 244, 107, '5', '1979-2020', 'Management Science and Operations Research (Q2)'), (6120, 'Addiction Research and Theory', 16066359, 0.775, 'Q2', 52, 89, 5249, 479, 181, '3', '1993-2020', 'Medicine (miscellaneous) (Q2)'), (6121, 'European Journal of Innovation Management', 14601060, 0.775, 'Q2', 63, 96, 9104, 674, 151, '3', '1998-2020', 'Management of Technology and Innovation (Q2)'), (6122, 'Innovations in Education and Teaching Interna', 14703297, 0.775, 'Q1', 51, 126, 3526, 478, 201, '3', '1996-2020', 'Education (Q1)'), (6123, 'International Journal of Consumer Studies', 14706423, 0.775, 'Q2', 71, 79, 5936, 723, 206, '3', '2001-2020', 'Applied Psychology (Q2); Economics and Econometrics (Q2); Marketing (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6124, 'Monographs in Oral Science', 770892, 0.775, 'Q1', 42, 23, 1404, 85, 33, '19', '1972, 1974-1975, 1977-1978, 1980-1983, 1989-1991, 1996, 2000-2001, 2006, 2009, 2011, 2013-2014, 2017', 'Dentistry (miscellaneous) (Q1)'), (6125, 'Ocular Immunology and Inflammation', 17445078, 0.775, 'Q2', 56, 464, 12296, 1292, 471, '3', '1993-2020', 'Ophthalmology (Q2); Immunology and Allergy (Q3)'), (6126, 'Plant Foods for Human Nutrition', 15739104, 0.775, 'Q1', 77, 90, 2980, 752, 190, '16', '1987-2020', 'Chemistry (miscellaneous) (Q1); Food Science (Q1)'), (6127, 'Rheologica Acta', 354511, 0.775, 'Q1', 80, 70, 3132, 579, 196, '5', '1958, 1961-2020', 'Condensed Matter Physics (Q1); Materials Science (miscellaneous) (Q2)'), (6128, 'Academic Psychiatry', 15457230, 0.774, 'Q1', 44, 221, 3142, 799, 365, '19', '1989-2020', 'Education (Q1); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (6129, 'Acta Palaeontologica Polonica', 17322421, 0.774, 'Q1', 53, 33, 2828, 259, 133, '17', '1993-2020', 'Paleontology (Q1)'), (6130, 'Big Data', 21676461, 0.774, 'Q1', 27, 50, 1346, 555, 71, '2', '2013-2020', 'Information Systems (Q1); Computer Science Applications (Q2); Information Systems and Management (Q2)'), (6131, 'Ecological Informatics', 15749541, 0.774, 'Q1', 55, 109, 5588, 964, 271, '16', '2006-2020', 'Modeling and Simulation (Q1); Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Ecological Modeling (Q2); Ecology (Q2); Ecology, Evolution, Behav'), (6132, 'Foods', 23048158, 0.774, 'Q1', 38, 1626, 90646, 4253, 942, '19', '2018-2020', 'Food Science (Q1); Health Professions (miscellaneous) (Q1); Health (social science) (Q1); Plant Science (Q1); Microbiology (Q3)'), (6133, 'Human Movement Science', 1679457, 0.774, 'Q2', 90, 109, 5193, 1184, 504, '16', '1982-2020', 'Biophysics (Q2); Experimental and Cognitive Psychology (Q2); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q2)'), (6134, 'Infectious Agents and Cancer', 17509378, 0.774, 'Q2', 36, 70, 3034, 398, 146, '3', '2006-2020', 'Infectious Diseases (Q2); Cancer Research (Q3); Epidemiology (Q3); Oncology (Q3)'), (6135, 'International Perspectives on Sexual and Repr', 19440405, 0.774, 'Q1', 60, 34, 1320, 88, 42, '2', '2009-2020', 'Demography (Q1); Geography, Planning and Development (Q1); Public Health, Environmental and Occupational Health (Q2)'), (6136, 'Journal of Atmospheric and Oceanic Technology', 15200426, 0.774, 'Q1', 124, 148, 5582, 1124, 455, '2', '1985-1994, 1996-2020', 'Ocean Engineering (Q1); Atmospheric Science (Q2)'), (6137, 'Journal of Community Genetics', 1868310, 0.774, 'Q2', 27, 60, 2058, 281, 131, '5', '2010-2020', 'Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3); Genetics (clinical) (Q3)'), (6138, 'MIT Sloan Management Review', 15329194, 0.774, 'Q1', 102, 17, 127, 479, 185, '2', '2001-2020', 'Business and International Management (Q1); Decision Sciences (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (6139, 'Oxford Review of Education', 14653915, 0.774, 'Q1', 61, 67, 3294, 324, 140, '3', '1975-2020', 'Education (Q1)'), (6140, 'Scandinavian Journal of Surgery', 17997267, 0.774, 'Q2', 50, 92, 2632, 340, 153, '38', '1998-2020', 'Surgery (Q2)'), (6141, 'She Ji', 24058718, 0.774, 'Q1', 11, 31, 1170, 160, 56, '16', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Education (Q1); Management of Technology and Innovation (Q2)'), (6142, 'Underground Space (China)', 20962754, 0.774, 'Q1', 12, 64, 2971, 234, 74, '1', '2016-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q2)'), (6143, 'Advanced Pharmaceutical Bulletin', 22517308, 0.773, 'Q1', 35, 80, 4247, 995, 233, '15', '2011-2020', 'Pharmaceutical Science (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)'), (6144, 'Canadian Journal of Economics', 15405982, 0.773, 'Q2', 69, 57, 2601, 173, 151, '2', '1977, 1979-2020', 'Economics and Econometrics (Q2)'), (6145, 'Energy Efficiency', 1570646, 0.773, 'Q2', 41, 102, 4942, 854, 336, '16', '2008-2020', 'Energy (miscellaneous) (Q2)'), (6146, 'Geographical Analysis', 15384632, 0.773, 'Q1', 65, 59, 3051, 206, 67, '2', '1969-2020', 'Earth-Surface Processes (Q1); Geography, Planning and Development (Q1)'), (6147, 'Skin Appendage Disorders', 22969160, 0.773, 'Q1', 13, 80, 1425, 369, 168, '19', '2016-2020', 'Dermatology (Q1)'), (6148, 'Slovenski Jezik', 15811271, 0.773, 'Q1', 3, 0, 0, 9, 16, '60', '2015, 2017, 2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6149, 'Surgical Infections', 10962964, 0.773, 'Q2', 60, 134, 4393, 852, 346, '2', '2000-2020', 'Infectious Diseases (Q2); Microbiology (medical) (Q2); Surgery (Q2)'), (6150, 'Acta Paediatrica, International Journal of Pa', 8035253, 0.772, 'Q2', 115, 540, 11614, 1945, 935, '2', '1921-1985, 1992-2020', 'Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (6151, 'BioMed Research International', 23146141, 0.772, 'Q2', 126, 2478, 100583, 19023, 5829, '2', '2013-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (6152, 'Cognitive Neuropsychiatry', 14640619, 0.772, 'Q2', 60, 34, 1699, 181, 98, '3', '1996-2020', 'Psychiatry and Mental Health (Q2); Cognitive Neuroscience (Q3)'), (6153, 'Dermatitis', 17103568, 0.772, 'Q1', 56, 91, 2005, 511, 138, '2', '2004-2020', 'Dermatology (Q1); Immunology and Allergy (Q3)'), (6154, 'Family Relations', 1976664, 0.772, 'Q1', 87, 100, 5814, 431, 117, '3', '1981, 1992, 1996-2020', 'Education (Q1); Social Sciences (miscellaneous) (Q1); Social Work (Q1); Developmental and Educational Psychology (Q2)'), (6155, 'Hospital pediatrics', 21541671, 0.772, 'Q1', 20, 2, 0, 247, 134, '2', '2012-2020', 'Pediatrics (Q1); Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (6156, 'International Journal of Algebra and Computat', 2181967, 0.772, 'Q2', 37, 79, 1684, 265, 199, '37', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (6157, 'Journal of Food Science', 221147, 0.772, 'Q1', 150, 489, 20745, 3700, 1140, '2', '1936-2020', 'Food Science (Q1)'), (6158, 'Journal of Plasma Physics', 223778, 0.772, 'Q1', 50, 149, 6986, 802, 232, '3', '1967-2020', 'Condensed Matter Physics (Q1)'), (6159, 'Journal of Voice', 8921997, 0.772, 'Q1', 90, 532, 18952, 2008, 730, '2', '1987-2020', 'LPN and LVN (Q1); Otorhinolaryngology (Q2); Speech and Hearing (Q2)'), (6160, 'Measurement: Journal of the International Mea', 2632241, 0.772, 'Q1', 91, 1092, 40953, 11589, 2630, '16', '1983-2021', 'Condensed Matter Physics (Q1); Education (Q1); Electrical and Electronic Engineering (Q1); Instrumentation (Q1); Applied Mathematics (Q2); Statistics and Probability (Q2)'), (6161, 'SAE International Journal of Engines', 19463944, 0.772, 'Q1', 58, 14, 464, 685, 331, '2', '2008-2020', 'Automotive Engineering (Q1); Fuel Technology (Q2)'), (6162, 'Systematic and Applied Acarology', 13621971, 0.772, 'Q1', 18, 171, 5514, 601, 474, '11', '2008, 2011-2020', 'Insect Science (Q1); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (6163, 'Systematics and Biodiversity', 14772000, 0.772, 'Q1', 41, 73, 5217, 348, 160, '3', '2003-2020', 'Plant Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (6164, 'Updates in Surgery', 2038131, 0.772, 'Q2', 30, 196, 6061, 715, 243, '7', '2010-2020', 'Surgery (Q2)'), (6165, 'Acta Biochimica et Biophysica Sinica', 17457270, 0.771, 'Q2', 57, 138, 5597, 1369, 464, '3', '1996-2020', 'Biochemistry (Q2); Biophysics (Q2); Medicine (miscellaneous) (Q2)'), (6166, 'Comparative Studies in Society and History', 104175, 0.771, 'Q1', 51, 33, 2301, 141, 109, '3', '1958-2020', 'History (Q1); Sociology and Political Science (Q1)'), (6167, 'Journal of Exercise Science and Fitness', 1728869, 0.771, 'Q1', 22, 26, 986, 194, 55, '37', '2005-2021', 'Pharmaceutical Science (Q1); Pharmacology (nursing) (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Public Health, Environmental and Occupational Health (Q2); Sports Science (Q2)'), (6168, 'Journal of Public Health Management and Pract', 10784659, 0.771, 'Q2', 50, 148, 3029, 666, 453, '2', '1995-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6169, 'Quantitative Finance', 14697696, 0.771, 'Q1', 72, 134, 5150, 990, 365, '3', '2001-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q2)'), (6170, 'Urologia Internationalis', 421138, 0.771, 'Q2', 53, 159, 3875, 904, 438, '19', '1955-2020', 'Urology (Q2)'), (6171, 'Ageing and Society', 144686, 0.77, 'Q1', 83, 272, 17375, 878, 326, '3', '1981-2020', 'Arts and Humanities (miscellaneous) (Q1); Health (social science) (Q1); Geriatrics and Gerontology (Q2); Public Health, Environmental and Occupational Health (Q2); Social Psychology (Q2)'), (6172, 'Clinical Psychopharmacology and Neuroscience', 17381088, 0.77, 'Q2', 30, 74, 3357, 465, 201, '13', '2005-2020', 'Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2); Behavioral Neuroscience (Q3)'), (6173, 'Heart Lung and Circulation', 14442892, 0.77, 'Q2', 46, 327, 9995, 1363, 618, '3', '2000-2020', 'Cardiology and Cardiovascular Medicine (Q2); Pulmonary and Respiratory Medicine (Q2)'), (6174, 'Journal of Developmental and Behavioral Pedia', 196206, 0.77, 'Q2', 105, 110, 762, 609, 297, '2', '1980-2020', 'Developmental and Educational Psychology (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)'), (6175, 'Journal of Fashion Marketing and Management', 13612026, 0.77, 'Q1', 52, 63, 4460, 376, 106, '3', '1996-2020', 'Business and International Management (Q1); Marketing (Q2)'), (6176, 'Journal of Hydrodynamics', 10016058, 0.77, 'Q1', 44, 107, 3321, 1023, 335, '1', '1990-2020', 'Mechanical Engineering (Q1); Modeling and Simulation (Q1); Condensed Matter Physics (Q2); Mechanics of Materials (Q2)'), (6177, 'Journal of Nonlinear and Variational Analysis', 25606778, 0.77, 'Q2', 9, 31, 693, 144, 80, '9', '2017-2020', 'Analysis (Q2); Applied Mathematics (Q2)'), (6178, 'Pacific Review', 9512748, 0.77, 'Q1', 48, 78, 6228, 318, 151, '3', '1988-2020', 'Geography, Planning and Development (Q1); Sociology and Political Science (Q1)'), (6179, 'Polymers', 20734360, 0.77, 'Q1', 73, 3054, 166576, 18411, 4226, '19', '1969, 2009-2020', 'Chemistry (miscellaneous) (Q1); Polymers and Plastics (Q1)'), (6180, 'Probation Journal', 17413079, 0.77, 'Q1', 31, 30, 1080, 107, 65, '3', '1929-1949, 1954-1956, 1959, 1962, 1965-2020', 'Law (Q1)'), (6181, 'Sensing and Bio-Sensing Research', 22141804, 0.77, 'Q1', 28, 80, 3196, 713, 140, '16', '2014-2020', 'Electrical and Electronic Engineering (Q1); Electronic, Optical and Magnetic Materials (Q1); Biotechnology (Q2); Signal Processing (Q2)'), (6182, 'Asian Journal of Control', 19346093, 0.769, 'Q2', 53, 363, 12259, 2107, 614, '2', '2000-2020', 'Control and Systems Engineering (Q2)'), (6183, 'Current Problems in Dermatology', 14215721, 0.769, 'Q1', 35, 0, 0, 149, 43, '19', '1971, 1973, 1976, 1978, 1980-1981, 1983-1987, 1989-1991, 1993, 1995-1996, 1998-1999, 2001-2003, 2006', 'Dermatology (Q1); Medicine (miscellaneous) (Q2)'), (6184, 'Current Research in Translational Medicine', 24523186, 0.769, 'Q2', 59, 35, 1662, 217, 62, '8', '2016-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (6185, 'European Societies', 14616696, 0.769, 'Q1', 38, 36, 1914, 196, 91, '3', '2005-2020', 'Demography (Q1); Geography, Planning and Development (Q1)'), (6186, 'Geoderma Regional', 23520094, 0.769, 'Q2', 23, 99, 6297, 420, 129, '16', '2014-2020', 'Soil Science (Q2)'), (6187, 'Information Processing in Agriculture', 22143173, 0.769, 'Q1', 27, 78, 3615, 943, 127, '1', '2014-2020', 'Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Aquatic Science (Q1); Forestry (Q1); Computer Science Applications (Q2)'), (6188, 'International Journal for Quality in Health C', 13534505, 0.769, 'Q2', 94, 109, 3295, 824, 394, '3', '1989-2020', 'Health Policy (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6189, 'Journal of Veterinary Cardiology', 17602734, 0.769, 'Q1', 36, 53, 1430, 269, 168, '16', '1999-2020', 'Veterinary (miscellaneous) (Q1); Physiology (Q3)'), (6190, 'Journal of Zoological Systematics and Evoluti', 9475745, 0.769, 'Q1', 50, 77, 6183, 291, 135, '3', '1963-1981, 1983-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3); Molecular Biology (Q3)'), (6191, 'Target', 9241884, 0.769, 'Q1', 32, 20, 1005, 65, 54, '16', '1989-2020', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6192, 'Archives of Cardiovascular Diseases', 18752136, 0.768, 'Q2', 51, 100, 3351, 553, 253, '8', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (6193, 'Curriculum Inquiry', 1467873, 0.768, 'Q1', 39, 29, 1627, 145, 82, '3', '1976-2020', 'Education (Q1)'), (6194, 'Disability and Rehabilitation', 9638288, 0.768, 'Q1', 111, 891, 42890, 3049, 1207, '3', '1978-2020', 'Rehabilitation (Q1)'), (6195, 'European Review for Medical and Pharmacologic', 11283602, 0.768, 'Q2', 63, 1483, 39418, 9898, 3136, '7', '1979-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)'), (6196, 'Fluid Phase Equilibria', 3783812, 0.768, 'Q1', 118, 337, 16987, 3025, 992, '16', '1977-2020', 'Chemical Engineering (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (6197, 'Japanese Journal of Clinical Oncology', 3682811, 0.768, 'Q2', 85, 163, 4555, 1251, 540, '3', '1971-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Cancer Research (Q3); Oncology (Q3)'), (6198, 'JASSS', 14607425, 0.768, 'Q1', 59, 49, 2930, 465, 138, '3', '2000-2020', 'Computer Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (6199, 'Journal of Behavioral and Experimental Econom', 22148051, 0.768, 'Q1', 62, 82, 3818, 423, 267, '2', '2014-2020', 'Social Sciences (miscellaneous) (Q1); Applied Psychology (Q2); Economics and Econometrics (Q2)'), (6200, 'Journal of Dermatological Treatment', 9546634, 0.768, 'Q2', 53, 462, 12286, 1207, 486, '3', '1989-2020', 'Dermatology (Q2)'), (6201, 'Journal of Medical Ethics', 14734257, 0.768, 'Q1', 73, 349, 8786, 1028, 476, '3', '1975-2020', 'Arts and Humanities (miscellaneous) (Q1); Health (social science) (Q1); Issues, Ethics and Legal Aspects (Q1); Health Policy (Q2)'), (6202, 'Journal of Polymer Science, Part A: Polymer C', 10990518, 0.768, 'Q1', 152, 5, 190, 2597, 983, '2', '1986-2020', 'Materials Chemistry (Q1); Polymers and Plastics (Q1); Organic Chemistry (Q2)'), (6203, 'Restorative Neurology and Neuroscience', 18783627, 0.768, 'Q2', 77, 41, 1532, 413, 158, '16', '1989-2020', 'Neurology (clinical) (Q2); Developmental Neuroscience (Q3); Neurology (Q3)'), (6204, 'ACM Transactions on Mathematical Software', 15577295, 0.767, 'Q1', 87, 38, 1442, 363, 105, '2', '1975-2020', 'Software (Q1); Applied Mathematics (Q2)'), (6205, 'Advances in Child Development and Behavior', 652407, 0.767, 'Q2', 41, 18, 1682, 106, 8, '2', '1964-1965, 1967, 1969-1976, 1978-1980, 1982, 1984-1985, 1987, 1989, 1991, 1993-1994, 1996, 1999, 200', 'Developmental and Educational Psychology (Q2); Pediatrics, Perinatology and Child Health (Q2); Behavioral Neuroscience (Q3)'), (6206, 'Aphasiology', 14645041, 0.767, 'Q1', 68, 133, 7901, 533, 218, '3', '1987-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); LPN and LVN (Q1); Developmental and Educational Psychology (Q2); Neurology (clinical) (Q2); Otorhinolaryngology (Q2); Neurology (Q3)'), (6207, 'Applied Acoustics', 3682, 0.767, 'Q1', 82, 456, 15741, 3608, 1062, '3', '1968-2021', 'Acoustics and Ultrasonics (Q1)'), (6208, 'Aquacultural Engineering', 1448609, 0.767, 'Q1', 72, 73, 2742, 576, 143, '16', '1982-2020', 'Aquatic Science (Q1)'), (6209, 'Biomedical Signal Processing and Control', 17468094, 0.767, 'Q2', 72, 425, 18127, 3928, 780, '16', '2006-2021', 'Health Informatics (Q2); Signal Processing (Q2)'), (6210, 'Breast Care', 16613791, 0.767, 'Q2', 30, 117, 3786, 419, 168, '19', '2006-2020', 'Surgery (Q2); Oncology (Q3)'), (6211, 'CardioVascular and Interventional Radiology', 1432086, 0.767, 'Q2', 83, 308, 5950, 1784, 712, '5', '1978-2020', 'Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6212, 'Ethnicity and Disease', 19450826, 0.767, 'Q2', 67, 96, 2774, 363, 210, '2', '1991-1994, 1996-2020', 'Medicine (miscellaneous) (Q2); Epidemiology (Q3)'), (6213, 'Extremophiles', 14310651, 0.767, 'Q2', 83, 73, 4386, 628, 243, '6', '1997-2020', 'Medicine (miscellaneous) (Q2); Microbiology (Q3); Molecular Medicine (Q3)'), (6214, 'IEEE Transactions on Consumer Electronics', 983063, 0.767, 'Q1', 101, 42, 1370, 798, 178, '2', '1975-2020', 'Electrical and Electronic Engineering (Q1); Media Technology (Q1)'), (6215, 'Journal of Evolutionary Economics', 9369937, 0.767, 'Q1', 72, 70, 4747, 402, 150, '5', '1991-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (6216, 'Neurological Sciences', 15901874, 0.767, 'Q2', 71, 695, 19703, 2588, 917, '7', '1996-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)'), (6217, 'Physical and Occupational Therapy in Pediatri', 1942638, 0.767, 'Q1', 46, 71, 2446, 315, 125, '2', '1980-2020', 'Occupational Therapy (Q1); Rehabilitation (Q1); Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (6218, 'Psychiatric Rehabilitation Journal', 1095158, 0.767, 'Q1', 64, 60, 1820, 330, 144, '2', '1996-2020', 'Rehabilitation (Q1); Health Professions (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (6219, 'Research in International Business and Financ', 2755319, 0.767, 'Q1', 42, 202, 12223, 2127, 529, '16', '2004-2021', 'Business, Management and Accounting (miscellaneous) (Q1); Finance (Q2)'), (6220, 'Systems Biology in Reproductive Medicine', 19396368, 0.767, 'Q2', 48, 49, 2136, 424, 139, '3', '1978-1981, 1984-2020', 'Reproductive Medicine (Q2); Urology (Q2)'), (6221, 'Critical Criminology', 15729877, 0.766, 'Q1', 26, 63, 4510, 212, 106, '16', '1996-1997, 2000-2002, 2005-2020', 'Law (Q1); Sociology and Political Science (Q1)'), (6222, 'Discourse Studies', 14614456, 0.766, 'Q1', 57, 33, 1634, 165, 93, '3', '1999-2020', 'Anthropology (Q1); Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Social Psychology (Q2)'), (6223, 'Journal of Soils and Water Conservation', 19413300, 0.766, 'Q1', 75, 71, 2923, 527, 230, '2', '1973-2020', 'Agronomy and Crop Science (Q1); Water Science and Technology (Q1); Nature and Landscape Conservation (Q2); Soil Science (Q2)'), (6224, 'Kyklos', 14676435, 0.766, 'Q1', 58, 25, 1442, 125, 71, '3', '1947-1951, 1953-2020', 'Arts and Humanities (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (6225, 'Nordic Journal of Psychiatry', 8039488, 0.766, 'Q2', 54, 102, 4653, 566, 267, '3', '1947-2020', 'Psychiatry and Mental Health (Q2)'), (6226, 'Oncology Letters', 17921082, 0.766, 'Q3', 54, 1206, 51914, 15106, 5595, '39', '2010-2020', 'Cancer Research (Q3); Oncology (Q3)'), (6227, 'Quantitative Imaging in Medicine and Surgery', 22234292, 0.766, 'Q2', 21, 230, 8156, 1146, 314, '1', '2016-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (6228, 'Radiation Oncology Journal', 22341900, 0.766, 'Q2', 20, 35, 1141, 298, 125, '13', '2012-2020', 'Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)'), (6229, 'Tijdschrift Voor Economische en Sociale Geogr', 40747, 0.766, 'Q1', 55, 65, 3374, 310, 140, '3', '1967-2020', 'Geography, Planning and Development (Q1); Economics and Econometrics (Q2)'), (6230, 'Beilstein Journal of Organic Chemistry', 18605397, 0.765, 'Q2', 66, 247, 13531, 2139, 806, '5', '2005-2020', 'Organic Chemistry (Q2)'), (6231, 'Biomechanics and Modeling in Mechanobiology', 16177959, 0.765, 'Q1', 68, 170, 9098, 1209, 385, '5', '2002-2020', 'Mechanical Engineering (Q1); Modeling and Simulation (Q1); Biotechnology (Q2)'), (6232, 'BMC Emergency Medicine', 1471227, 0.765, 'Q1', 36, 94, 2836, 414, 181, '3', '2001-2020', 'Emergency Medicine (Q1)'), (6233, 'Clinical and Experimental Nephrology', 14377799, 0.765, 'Q2', 50, 159, 4417, 1028, 467, '6', '1999-2020', 'Nephrology (Q2); Physiology (Q3); Physiology (medical) (Q3)'), (6234, 'Current Sociology', 113921, 0.765, 'Q1', 64, 90, 5013, 452, 178, '3', '1952-1965, 1967-1969, 1972-1984, 1986-2020', 'Sociology and Political Science (Q1)'), (6235, 'Doklady Mathematics', 15318362, 0.765, 'Q2', 27, 131, 1391, 418, 478, '10', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (6236, 'Entomologia Experimentalis et Applicata', 15707458, 0.765, 'Q1', 83, 105, 5265, 679, 316, '3', '1958-2020', 'Insect Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (6237, 'IEEE Transactions on Haptics', 23294051, 0.765, 'Q1', 51, 101, 3226, 745, 171, '2', '2008-2020', 'Human-Computer Interaction (Q1); Computer Science Applications (Q2)'), (6238, 'Journal of Intervention and Statebuilding', 17502977, 0.765, 'Q1', 16, 43, 2904, 173, 82, '3', '2014-2020', 'Law (Q1); Political Science and International Relations (Q1)'), (6239, 'Journal of Stroke and Cerebrovascular Disease', 10523057, 0.765, 'Q1', 61, 774, 20963, 3284, 1557, '3', '1991-2020', 'Rehabilitation (Q1); Cardiology and Cardiovascular Medicine (Q2); Neurology (clinical) (Q2); Surgery (Q2)'), (6240, 'Mammalian Biology', 16165047, 0.765, 'Q1', 46, 66, 3908, 564, 298, '5', '2001-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (6241, 'Molecular genetics &amp; genomic medicine', 23249269, 0.765, 'Q3', 29, 510, 16983, 1447, 690, '2', '2013-2020', 'Genetics (Q3); Genetics (clinical) (Q3); Molecular Biology (Q3)'), (6242, 'Polymer Journal', 323896, 0.765, 'Q1', 69, 149, 5862, 975, 348, '3', '1971, 1973-2020', 'Materials Chemistry (Q1); Polymers and Plastics (Q1)'), (6243, 'Public Health Research and Practice', 22042091, 0.765, 'Q2', 27, 42, 801, 221, 120, '11', '2014-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6244, 'Virology: Research and Treatment', 1178122, 0.765, 'Q2', 10, 0, 0, 37, 11, '41', '2010, 2013-2019', 'Infectious Diseases (Q2); Immunology (Q3); Virology (Q3)'), (6245, 'ACS Applied Bio Materials', 25766422, 0.764, 'Q1', 17, 914, 50418, 2681, 823, '2', '2018-2020', 'Chemistry (miscellaneous) (Q1); Biochemistry (medical) (Q2); Biomaterials (Q2); Biomedical Engineering (Q2)'), (6246, 'BMC Complementary Medicine and Therapies', 26627671, 0.764, 'Q1', 86, 342, 10821, 4803, 1255, '3', '2020', 'Complementary and Alternative Medicine (Q1)'), (6247, 'Electronic Journal of the International Feder', 16503414, 0.764, 'Q2', 12, 41, 972, 226, 70, '7', '2018-2019', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q2)'), (6248, 'Games for health journal', 21617856, 0.764, 'Q1', 31, 51, 2269, 488, 144, '2', '2012-2020', 'Rehabilitation (Q1); Computer Science Applications (Q2); Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6249, 'International Journal of Transgenderism', 14344599, 0.764, 'Q1', 37, 0, 0, 440, 104, '2', '1997-2002, 2005-2019', 'Gender Studies (Q1)'), (6250, 'Journal of Computational Design and Engineeri', 22885048, 0.764, 'Q1', 24, 57, 2346, 790, 135, '16', '2014-2020', 'Computational Mechanics (Q1); Computer Graphics and Computer-Aided Design (Q1); Engineering (miscellaneous) (Q1); Human-Computer Interaction (Q1); Modeling and Simulation (Q1); Computational Mathemati'), (6251, 'Journal of Interventional Cardiology', 8964327, 0.764, 'Q2', 51, 95, 2534, 490, 241, '3', '1988-2020', 'Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6252, 'Journal of Non-Crystalline Solids', 223093, 0.764, 'Q1', 142, 483, 20789, 5412, 1585, '16', '1968-2020', 'Materials Chemistry (Q1); Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (6253, 'Materials Chemistry and Physics', 2540584, 0.764, 'Q2', 152, 1531, 73533, 10698, 2710, '16', '1982-2021', 'Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)'), (6254, 'Annals of Forest Science', 1297966, 0.763, 'Q1', 77, 104, 6354, 756, 289, '2', '1999-2020', 'Forestry (Q1); Ecology (Q2)'), (6255, 'Applied Mathematics Research eXpress', 16871197, 0.763, 'Q2', 20, 0, 0, 16, 6, '3', '2004-2017', 'Analysis (Q2); Applied Mathematics (Q2); Computational Mathematics (Q2)'), (6256, 'Cytokine: X', 25901532, 0.763, 'Q2', 2, 17, 1153, 7, 8, '2', '2019-2020', 'Biochemistry (Q2); Hematology (Q2); Immunology (Q3); Immunology and Allergy (Q3); Molecular Biology (Q3)'), (6257, 'Erdkunde', 140015, 0.763, 'Q1', 33, 17, 1194, 106, 54, '5', '1976, 1978-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1); Ecology (Q2)'), (6258, 'Erkenntnis', 15728420, 0.763, 'Q1', 38, 204, 8567, 271, 279, '16', '1919-1921, 1924-1925, 1928-1932, 1934-1937, 1939, 1975-2002, 2004, 2006-2020', 'Logic (Q1); Philosophy (Q1)'), (6259, 'International Journal of Biometeorology', 14321254, 0.763, 'Q2', 92, 225, 11040, 1955, 565, '5', '1961-2020', 'Atmospheric Science (Q2); Ecology (Q2); Health, Toxicology and Mutagenesis (Q2)'), (6260, 'Journal of Foot and Ankle Research', 17571146, 0.763, 'Q2', 39, 65, 2539, 433, 172, '3', '2008-2011, 2013, 2016-2020', 'Orthopedics and Sports Medicine (Q2)'), (6261, 'Journal of Intellectual Disabilities', 17446295, 0.763, 'Q2', 47, 38, 1640, 181, 86, '3', '2005-2020', 'Health Professions (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (6262, 'Michigan Mathematical Journal', 19452365, 0.763, 'Q2', 41, 36, 853, 186, 117, '2', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (6263, 'ACME', 14929732, 0.762, 'Q1', 36, 27, 1954, 255, 156, '9', '2002-2004, 2006-2020', 'Geography, Planning and Development (Q1)'), (6264, 'Canadian Journal of Plant Pathology', 17152992, 0.762, 'Q1', 55, 89, 4282, 344, 130, '3', '1979-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q1)'), (6265, 'Colloids and Surfaces A: Physicochemical and ', 18734359, 0.762, 'Q2', 170, 1295, 63331, 12410, 2909, '16', '1993-2020', 'Colloid and Surface Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Surfaces and Interfaces (Q2)'), (6266, 'Digestive Surgery', 14219883, 0.762, 'Q2', 69, 73, 1964, 390, 187, '19', '1984-2020', 'Surgery (Q2); Gastroenterology (Q3)'), (6267, 'Hormone and Metabolic Research', 14394286, 0.762, 'Q2', 90, 114, 5028, 820, 340, '5', '1969-2020', 'Biochemistry (Q2); Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2); Endocrinology (Q3)'), (6268, 'Journal of Cardiovascular Pharmacology', 15334023, 0.762, 'Q2', 100, 156, 931, 787, 298, '2', '1979-2020', 'Cardiology and Cardiovascular Medicine (Q2); Pharmacology (Q2)'), (6269, 'Remediation', 10515658, 0.762, 'Q2', 27, 29, 1082, 191, 92, '2', '1990-2020', 'Environmental Engineering (Q2); Pollution (Q2); Waste Management and Disposal (Q2)'), (6270, 'Sociology of Sport Journal', 15432785, 0.762, 'Q1', 57, 34, 1889, 191, 86, '2', '1996-2019', 'Sociology and Political Science (Q1); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q2)'), (6271, 'Southern Economic Journal', 384038, 0.762, 'Q2', 58, 57, 2494, 226, 166, '2', '1976-2020', 'Economics and Econometrics (Q2)'), (6272, 'Asian Herpetological Research', 20950357, 0.761, 'Q1', 16, 38, 1998, 153, 84, '1', '2011-2020', 'Animal Science and Zoology (Q1)'), (6273, 'International Journal of Bifurcation and Chao', 17936551, 0.761, 'Q1', 103, 309, 11146, 2316, 751, '37', '1996-2020', 'Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1); Multidisciplinary (Q1); Applied Mathematics (Q2)'), (6274, 'International Journal of Developmental Neuros', 7365748, 0.761, 'Q3', 88, 66, 3627, 622, 259, '3', '1983-2020', 'Developmental Biology (Q3); Developmental Neuroscience (Q3)'), (6275, 'International Journal of Performance Analysis', 14748185, 0.761, 'Q2', 29, 84, 3023, 555, 253, '3', '2011-2020', 'Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q2)'), (6276, 'International Journal of Speech-Language Path', 17549507, 0.761, 'Q1', 43, 107, 4690, 437, 186, '3', '2009-2020', 'Language and Linguistics (Q1); Research and Theory (Q1); LPN and LVN (Q2); Otorhinolaryngology (Q2); Speech and Hearing (Q2)'), (6277, 'Journal of Muscle Research and Cell Motility', 15732657, 0.761, 'Q2', 64, 42, 3566, 151, 72, '16', '1963-1964, 1980-2020', 'Biochemistry (Q2); Cell Biology (Q3); Physiology (Q3)'), (6278, 'Marine Micropaleontology', 3778398, 0.761, 'Q1', 90, 79, 7183, 323, 128, '16', '1976-2020', 'Paleontology (Q1); Oceanography (Q2)'), (6279, 'Technology Analysis and Strategic Management', 14653990, 0.761, 'Q2', 68, 148, 7713, 901, 290, '3', '1989-2020', 'Management Science and Operations Research (Q2); Strategy and Management (Q2)'), (6280, 'Chemistry Education Research and Practice', 11094028, 0.76, 'Q1', 45, 78, 4732, 577, 197, '39', '2005-2020', 'Chemistry (miscellaneous) (Q1); Education (Q1)'), (6281, 'Crop Science', 14350653, 0.76, 'Q1', 147, 297, 15449, 1980, 831, '2', '1974-1975, 1977, 1981, 1983-1985, 1988-2020', 'Agronomy and Crop Science (Q1)'), (6282, 'Emerging Science Journal', 26109182, 0.76, 'Q1', 14, 51, 1713, 553, 109, '7', '2017-2020', 'Multidisciplinary (Q1)'), (6283, 'IEEE Transactions on Parallel and Distributed', 10459219, 0.76, 'Q1', 139, 217, 8912, 2915, 654, '2', '1990-2021', 'Hardware and Architecture (Q1); Computational Theory and Mathematics (Q2); Signal Processing (Q2)'), (6284, 'Journal of Astronomical Instrumentation', 22511725, 0.76, 'Q1', 24, 21, 489, 211, 72, '37', '2012-2020', 'Instrumentation (Q1); Astronomy and Astrophysics (Q2)'), (6285, 'Journal of Hydraulic Engineering', 7339429, 0.76, 'Q1', 119, 171, 5931, 951, 351, '2', '1980, 1982-2020', 'Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Water Science and Technology (Q1)'), (6286, 'Journal of Mammalian Evolution', 10647554, 0.76, 'Q2', 49, 69, 5836, 232, 106, '2', '1993-1994, 1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (6287, 'Journal of the Physical Society of Japan', 13474073, 0.76, 'Q2', 139, 289, 11323, 2804, 1243, '6', '1946-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (6288, 'Music Education Research', 14699893, 0.76, 'Q1', 20, 46, 2345, 138, 118, '3', '2009-2020', 'Education (Q1); Music (Q1)'), (6289, 'Natural Hazards', 15730840, 0.76, 'Q1', 105, 509, 26491, 3887, 1178, '16', '1988-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Atmospheric Science (Q2); Water Science and Technology (Q2)'), (6290, 'World Journal of Orthopaedics', 22185836, 0.76, 'Q2', 43, 64, 2192, 525, 197, '1', '2010-2020', 'Orthopedics and Sports Medicine (Q2)'), (6291, 'Zoology', 9442006, 0.76, 'Q1', 49, 77, 4715, 347, 171, '5', '1994-2020', 'Animal Science and Zoology (Q1)'), (6292, 'Hermes (Denmark)', 19031785, 0.759, 'Q1', 7, 15, 708, 42, 51, '25', '2011-2012, 2014-2015, 2018', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6293, 'Petroleum Exploration and Development', 18763804, 0.759, 'Q1', 50, 121, 3992, 1113, 346, '16', '2008-2020', 'Economic Geology (Q1); Geology (Q1); Energy Engineering and Power Technology (Q2); Geochemistry and Petrology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (6294, 'Plastic and Reconstructive Surgery - Global O', 21697574, 0.759, 'Q2', 28, 613, 13520, 1579, 928, '2', '2013-2020', 'Surgery (Q2)'), (6295, 'Politics and Religion', 17550483, 0.759, 'Q1', 18, 55, 3667, 141, 95, '3', '2008-2020', 'Religious Studies (Q1); Sociology and Political Science (Q1)'), (6296, 'Science and Technology of Archaeological Rese', 20548923, 0.759, 'Q1', 11, 10, 766, 108, 67, '3', '2015-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (6297, 'Bio-Design and Manufacturing', 25228552, 0.758, 'Q1', 11, 37, 2178, 237, 51, '19', '2018-2020', 'Industrial and Manufacturing Engineering (Q1); Biomedical Engineering (Q2); Biotechnology (Q2); Materials Science (miscellaneous) (Q2)'), (6298, 'BMC Molecular Biology', 14712199, 0.758, 'Q3', 73, 0, 0, 158, 60, '3', '2000-2019', 'Molecular Biology (Q3)'), (6299, 'International Journal of Concrete Structures ', 22341315, 0.758, 'Q1', 29, 60, 2175, 529, 192, '2', '2012-2020', 'Civil and Structural Engineering (Q1); Ocean Engineering (Q1)'), (6300, 'Journal of Immigrant and Minority Health', 15571912, 0.758, 'Q2', 57, 198, 7868, 1009, 505, '2', '2006-2020', 'Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3)'), (6301, 'Journal of Spacecraft and Rockets', 15336794, 0.758, 'Q1', 79, 100, 3427, 850, 443, '2', '1969-2020', 'Aerospace Engineering (Q1); Space and Planetary Science (Q2)'), (6302, 'Pathophysiology', 9284680, 0.758, 'Q2', 50, 1, 40, 334, 121, '16', '1994-2020', 'Pathology and Forensic Medicine (Q2); Physiology (medical) (Q3)'), (6303, 'World Journal of Microbiology and Biotechnolo', 9593993, 0.758, 'Q2', 90, 189, 12113, 2076, 602, '16', '1990-2020', 'Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2); Physiology (Q3)'), (6304, 'Archaeological Dialogues', 13802038, 0.757, 'Q1', 29, 18, 795, 39, 26, '3', '1994-2020', 'Archeology (Q1); Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (6305, 'Calphad: Computer Coupling of Phase Diagrams ', 3645916, 0.757, 'Q1', 62, 120, 6068, 734, 316, '3', '1977-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q1); Computer Science Applications (Q2)'), (6306, 'Experimental Heat Transfer', 15210480, 0.757, 'Q1', 33, 76, 2705, 336, 105, '3', '1987, 1989-2020', 'Electrical and Electronic Engineering (Q1); Instrumentation (Q1); Control and Systems Engineering (Q2)'), (6307, 'Photodiagnosis and Photodynamic Therapy', 15721000, 0.757, 'Q2', 47, 463, 15936, 2437, 717, '16', '2004-2020', 'Biophysics (Q2); Dermatology (Q2); Pharmacology (medical) (Q2); Oncology (Q3)'), (6308, 'World Journal of Surgical Oncology', 14777819, 0.757, 'Q2', 57, 326, 10531, 1785, 692, '3', '2003-2020', 'Surgery (Q2); Oncology (Q3)'), (6309, 'Animal Genetics', 2689146, 0.756, 'Q1', 81, 141, 5025, 998, 313, '3', '1986-2020', 'Animal Science and Zoology (Q1); Medicine (miscellaneous) (Q2); Genetics (Q3)'), (6310, 'Asian Population Studies', 17441730, 0.756, 'Q1', 19, 26, 1204, 104, 51, '3', '2006-2020', 'Demography (Q1)'), (6311, 'Clinical Biochemistry', 99120, 0.756, 'Q2', 111, 151, 4897, 1654, 592, '2', '1967-1968, 1970-2020', 'Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2)'), (6312, 'Human Resource Development Quarterly', 15321096, 0.756, 'Q1', 65, 34, 2231, 232, 55, '2', '1990-2020', 'Arts and Humanities (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q2)'), (6313, 'International Journal of Clinical Practice', 17421241, 0.756, 'Q2', 98, 246, 8062, 739, 286, '2', '1997-2020', 'Medicine (miscellaneous) (Q2)'), (6314, 'Journal of Emerging Technologies in Accountin', 15541908, 0.756, 'Q2', 14, 33, 1204, 221, 50, '2', '2009-2020', 'Accounting (Q2); Computer Science Applications (Q2)'), (6315, 'Journal of Obesity', 20900716, 0.756, 'Q2', 53, 37, 1691, 363, 131, '32', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q2)'), (6316, 'Journal of Physical Chemistry A', 15205215, 0.756, 'Q2', 235, 1098, 63961, 8807, 3186, '2', '1994, 1996-2020', 'Medicine (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2)'), (6317, 'Theoretical Biology and Medical Modelling', 17424682, 0.756, 'Q1', 46, 13, 718, 187, 70, '3', '2004-2020', 'Modeling and Simulation (Q1); Health Informatics (Q2); Medicine (miscellaneous) (Q2)'), (6318, 'Agricultural and Forest Entomology', 14619555, 0.755, 'Q1', 55, 45, 2792, 345, 152, '3', '1999-2020', 'Agronomy and Crop Science (Q1); Forestry (Q1); Insect Science (Q1)'), (6319, 'Combustion Theory and Modelling', 13647830, 0.755, 'Q1', 61, 60, 2480, 319, 159, '3', '1997-2020', 'Chemical Engineering (miscellaneous) (Q1); Modeling and Simulation (Q1); Chemistry (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Physics and Astronomy (misc'), (6320, 'European Journal of Oncology Nursing', 15322122, 0.755, 'Q2', 57, 121, 5101, 710, 269, '2', '1998-2020', 'Medicine (miscellaneous) (Q2); Oncology (nursing) (Q2)'), (6321, 'Inverse Problems and Imaging', 19308345, 0.755, 'Q1', 40, 51, 1911, 404, 170, '2', '2007-2020', 'Control and Optimization (Q1); Discrete Mathematics and Combinatorics (Q1); Modeling and Simulation (Q1); Analysis (Q2)'), (6322, 'Journal of Bioeconomics', 13876996, 0.755, 'Q1', 25, 10, 499, 97, 42, '16', '1999-2020', 'Geography, Planning and Development (Q1); Economics and Econometrics (Q2)'), (6323, 'Journal of Environment and Development', 15525465, 0.755, 'Q1', 42, 18, 1137, 123, 48, '2', '1992-2020', 'Development (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)'), (6324, 'Materials Letters', 167577, 0.755, 'Q1', 144, 1674, 25160, 17121, 5187, '16', '1982-2020', 'Mechanical Engineering (Q1); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (6325, 'NeuroSignals', 14248638, 0.755, 'Q3', 67, 0, 0, 76, 28, '19', '1992-2019', 'Developmental Neuroscience (Q3); Neurology (Q3); Cellular and Molecular Neuroscience (Q4)'), (6326, 'Photosynthetica', 3003604, 0.755, 'Q1', 68, 117, 6263, 1103, 349, '31', '1979, 1981, 1983, 1985, 1988-1989, 1993-2020', 'Plant Science (Q1); Physiology (Q3)'), (6327, 'Research Papers in Education', 2671522, 0.755, 'Q1', 43, 74, 5242, 249, 114, '3', '1986-2020', 'Education (Q1)'), (6328, 'Sexual and Reproductive Health Matters', 26410397, 0.755, 'Q2', 57, 111, 3199, 320, 109, '3', '2019-2020', 'Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)'), (6329, 'Small Group Research', 15528278, 0.755, 'Q2', 71, 30, 2486, 201, 73, '2', '1970-2020', 'Applied Psychology (Q2); Social Psychology (Q2)'), (6330, 'Theoretical Population Biology', 405809, 0.755, 'Q2', 89, 72, 3144, 317, 155, '2', '1970-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (6331, 'Computational Toxicology', 24681113, 0.754, 'Q2', 12, 26, 1301, 300, 104, '16', '2017-2020', 'Computer Science Applications (Q2); Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)'), (6332, 'Contemporary Politics', 14693631, 0.754, 'Q1', 28, 36, 2571, 188, 89, '3', '1995-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (6333, 'Diagnostic and Interventional Radiology', 13053825, 0.754, 'Q2', 43, 102, 2415, 560, 204, '18', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6334, 'European Journal of Histochemistry', 1121760, 0.754, 'Q2', 42, 54, 1867, 358, 123, '7', '1992-2020', 'Biophysics (Q2); Histology (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)'), (6335, 'Frontiers in Physics', 2296424, 0.754, 'Q2', 31, 580, 31449, 1981, 423, '19', '2013-2020', 'Biophysics (Q2); Materials Science (miscellaneous) (Q2); Mathematical Physics (Q2); Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (6336, 'Journal of Applied Oral Science', 16787757, 0.754, 'Q1', 44, 92, 2926, 703, 277, '14', '2006-2020', 'Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (6337, 'Journal of Sex and Marital Therapy', 92623, 0.754, 'Q2', 77, 74, 3688, 507, 200, '2', '1974-2020', 'Clinical Psychology (Q2)'), (6338, 'Movement Disorders Clinical Practice', 23301619, 0.754, 'Q2', 18, 231, 4197, 831, 333, '2', '2014-2020', 'Neurology (clinical) (Q2); Neurology (Q3)'), (6339, 'Nordicom Review', 14031108, 0.754, 'Q1', 15, 19, 842, 141, 85, '20', '2009-2020', 'Communication (Q1)'), (6340, 'Physiology and Molecular Biology of Plants', 9740430, 0.754, 'Q1', 35, 199, 10809, 990, 318, '4', '2000-2020', 'Plant Science (Q1); Molecular Biology (Q3); Physiology (Q3)'), (6341, 'RSC Medicinal Chemistry', 26328682, 0.754, 'Q1', 55, 103, 6155, 2102, 615, '3', '2020', 'Pharmaceutical Science (Q1); Biochemistry (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Pharmacology (Q2); Molecular Medicine (Q3)'), (6342, 'Technology in Cancer Research and Treatment', 15330338, 0.754, 'Q2', 63, 305, 309, 1364, 471, '2', '2002-2020', 'Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)'), (6343, 'Comparative Biochemistry and Physiology Part ', 15320456, 0.753, 'Q1', 108, 147, 8813, 1170, 358, '2', '1989, 2000-2021', 'Animal Science and Zoology (Q1); Aquatic Science (Q1); Biochemistry (Q2); Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Toxicology (Q2); Cell Biology (Q3); Physiology (Q3)'), (6344, 'Cultural Studies', 14664348, 0.753, 'Q1', 52, 55, 3380, 229, 130, '3', '1987-1996, 1998-2001, 2003-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1)'), (6345, 'Information Economics and Policy', 1676245, 0.753, 'Q2', 48, 24, 1006, 183, 72, '16', '1983-1984, 1986, 1988-1989, 1993-2020', 'Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2)'), (6346, 'ISIJ International', 9151559, 0.753, 'Q1', 111, 359, 11758, 1684, 892, '6', '1986, 1989-2020', 'Materials Chemistry (Q1); Mechanical Engineering (Q1); Metals and Alloys (Q1); Mechanics of Materials (Q2)'), (6347, 'Journal of the Operational Research Society', 1605682, 0.753, 'Q1', 108, 299, 13335, 1330, 444, '3', '1978-2020', 'Management Information Systems (Q1); Management Science and Operations Research (Q2); Marketing (Q2); Modeling and Simulation (Q2); Statistics, Probability and Uncertainty (Q2); Strategy and Managemen'), (6348, 'Microchemical Journal', 26265, 0.753, 'Q2', 85, 1207, 56214, 7488, 1675, '2', '1957-2020', 'Analytical Chemistry (Q2); Spectroscopy (Q2)'), (6349, 'Science as Culture', 9505431, 0.753, 'Q1', 39, 33, 1917, 148, 66, '3', '1987-2020', 'Cultural Studies (Q1); History and Philosophy of Science (Q1); Sociology and Political Science (Q1); Biomedical Engineering (Q2); Biotechnology (Q2); Health (social science) (Q2)'), (6350, 'Voprosy Obrazovaniya', 24124354, 0.753, 'Q1', 12, 51, 1633, 210, 137, '10', '2012-2020', 'Education (Q1)'), (6351, 'Agronomy Journal', 21962, 0.752, 'Q1', 131, 498, 24251, 2176, 883, '2', '1976-1985, 1987-1988, 1991, 1993-2020', 'Agronomy and Crop Science (Q1)'), (6352, 'Bioscience of Microbiota, Food and Health', 21866953, 0.752, 'Q1', 15, 31, 1276, 157, 41, '6', '2014-2020', 'Food Science (Q1); Applied Microbiology and Biotechnology (Q2); Gastroenterology (Q3); Immunology (Q3); Microbiology (Q3)'), (6353, 'BMC Physiology', 14726793, 0.752, 'Q2', 44, 0, 0, 34, 11, '3', '2001-2019', 'Medicine (miscellaneous) (Q2); Physiology (Q3); Physiology (medical) (Q3)'), (6354, 'Children s Geographies', 14733277, 0.752, 'Q1', 55, 85, 4458, 396, 170, '3', '2003-2020', 'Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)'), (6355, 'Clinical and Experimental Pharmacology and Ph', 14401681, 0.752, 'Q2', 103, 213, 9503, 1149, 421, '3', '1974-2020', 'Pharmacology (Q2); Physiology (Q3); Physiology (medical) (Q3)'), (6356, 'HIV/AIDS - Research and Palliative Care', 11791373, 0.752, 'Q2', 22, 96, 3543, 207, 89, '41', '2010-2020', 'Dermatology (Q2); Health Policy (Q2); Infectious Diseases (Q2); Epidemiology (Q3); Virology (Q3)'), (6357, 'Hypertension in Pregnancy', 10641955, 0.752, 'Q2', 46, 58, 1997, 255, 109, '2', '1982-2020', 'Internal Medicine (Q2); Obstetrics and Gynecology (Q2)'), (6358, 'IEEE Journal of Oceanic Engineering', 15581691, 0.752, 'Q1', 97, 146, 4551, 1008, 280, '2', '1976-2020', 'Electrical and Electronic Engineering (Q1); Mechanical Engineering (Q1); Ocean Engineering (Q1)'), (6359, 'Journal of Oral and Maxillofacial Surgery', 15315053, 0.752, 'Q2', 121, 450, 10048, 2244, 1223, '3', '1982-2020', 'Oral Surgery (Q2); Otorhinolaryngology (Q2); Surgery (Q2)'), (6360, 'Lung', 14321750, 0.752, 'Q2', 57, 118, 3870, 714, 310, '2', '1959, 1964, 1976-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (6361, 'Manuscripta Mathematica', 14321785, 0.752, 'Q2', 46, 146, 3433, 286, 233, '2', '1969-2020', 'Mathematics (miscellaneous) (Q2)'), (6362, 'Nephrology', 14401797, 0.752, 'Q2', 61, 145, 3260, 1118, 518, '3', '1995-1998, 2000-2020', 'Medicine (miscellaneous) (Q2); Nephrology (Q2)'), (6363, 'Revista de Psiquiatria y Salud Mental', 18889891, 0.752, 'Q2', 22, 67, 2370, 232, 84, '12', '2008-2020', 'Psychiatry and Mental Health (Q2)'), (6364, 'Sports Biomechanics', 17526116, 0.752, 'Q2', 39, 168, 6122, 432, 213, '3', '2002-2020', 'Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q2)'), (6365, 'World Trade Review', 14747456, 0.752, 'Q1', 31, 45, 1614, 88, 91, '3', '2002-2020', 'Law (Q1); Political Science and International Relations (Q1); Economics and Econometrics (Q2)'), (6366, 'Air Quality, Atmosphere and Health', 18739326, 0.751, 'Q2', 45, 157, 6812, 1184, 350, '16', '2008-2020', 'Atmospheric Science (Q2); Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2)'), (6367, 'Asian-Australasian Journal of Animal Sciences', 10112367, 0.751, 'Q1', 59, 214, 7467, 1751, 676, '13', '1996-2020', 'Animal Science and Zoology (Q1); Food Science (Q1)'), (6368, 'Cartography and Geographic Information Scienc', 15230406, 0.751, 'Q1', 57, 38, 1874, 359, 115, '3', '1997-2020', 'Civil and Structural Engineering (Q1); Geography, Planning and Development (Q1); Management of Technology and Innovation (Q2)'), (6369, 'Educacion XX1', 1139613, 0.751, 'Q1', 19, 40, 1725, 269, 102, '12', '2008-2020', 'Education (Q1)'), (6370, 'Journal of Regulatory Economics', 15730468, 0.751, 'Q2', 53, 22, 724, 117, 80, '16', '1989-2020', 'Economics and Econometrics (Q2)'), (6371, 'MRS Communications', 21596859, 0.751, 'Q2', 31, 88, 3258, 1272, 477, '3', '2011-2020', 'Materials Science (miscellaneous) (Q2)'), (6372, 'New Microbiologica', 11217138, 0.751, 'Q2', 39, 41, 1098, 319, 149, '7', '1993-2020', 'Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2)'), (6373, 'Polish Journal of Sport and Tourism', 18991998, 0.751, 'Q2', 3, 30, 985, 29, 43, '5', '2018-2020', 'Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (6374, 'Respiratory Care', 19433654, 0.751, 'Q2', 89, 262, 8465, 1248, 535, '2', '1973-2020', 'Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)'), (6375, 'Alcohol', 7418329, 0.75, 'Q2', 81, 112, 5532, 645, 266, '2', '1984-2020', 'Biochemistry (Q2); Health (social science) (Q2); Medicine (miscellaneous) (Q2); Toxicology (Q2); Behavioral Neuroscience (Q3); Neurology (Q3)'), (6376, 'Botanical Studies', 1817406, 0.75, 'Q1', 50, 28, 1261, 337, 121, '19', '2006-2020', 'Plant Science (Q1)'), (6377, 'Child Language Teaching and Therapy', 2656590, 0.75, 'Q1', 33, 21, 867, 95, 54, '3', '1985-2020', 'Education (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Speech and Hearing (Q2)'), (6378, 'Current Protein and Peptide Science', 13892037, 0.75, 'Q2', 83, 106, 10103, 947, 326, '52', '2000-2020', 'Biochemistry (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (6379, 'Electricity Journal', 10406190, 0.75, 'Q1', 47, 113, 2855, 632, 276, '2', '1988-2020', 'Business and International Management (Q1); Law (Q1); Energy (miscellaneous) (Q2); Management of Technology and Innovation (Q2)'), (6380, 'Human Dimensions of Wildlife', 1533158, 0.75, 'Q2', 51, 79, 3327, 323, 112, '3', '1996-2020', 'Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)'), (6381, 'International Journal of Psychology', 1464066, 0.75, 'Q1', 62, 145, 4927, 531, 247, '2', '1966-2020', 'Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (6382, 'Journal of Interventional Cardiac Electrophys', 15728595, 0.75, 'Q2', 54, 292, 8107, 658, 363, '16', '1997-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Physiology (medical) (Q3)'), (6383, 'Journal of Sports Economics', 15270025, 0.75, 'Q1', 48, 38, 1298, 307, 137, '3', '2000-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Sports Science (Q3)'), (6384, 'Journal of the Experimental Analysis of Behav', 225002, 0.75, 'Q2', 61, 69, 3449, 363, 180, '2', '1958-2020', 'Experimental and Cognitive Psychology (Q2); Behavioral Neuroscience (Q3)'), (6385, 'Paediatric Drugs', 11792019, 0.75, 'Q2', 60, 56, 4510, 433, 146, '3', '1999-2020', 'Pediatrics, Perinatology and Child Health (Q2); Pharmacology (medical) (Q2)'), (6386, 'Physics of Plasmas', 1070664, 0.75, 'Q2', 160, 859, 37683, 8339, 3616, '2', '1994-2020', 'Condensed Matter Physics (Q2)'), (6387, 'Substance Abuse: Treatment, Prevention, and P', 1747597, 0.75, 'Q2', 40, 87, 4065, 433, 154, '3', '2006-2020', 'Health Policy (Q2); Psychiatry and Mental Health (Q2)'), (6388, 'AIDS Research and Treatment', 20901240, 0.749, 'Q2', 27, 21, 988, 95, 53, '2', '2010-2020', 'Dermatology (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Immunology and Allergy (Q3)'), (6389, 'Environmental Entomology', 46225, 0.749, 'Q1', 89, 159, 8607, 1095, 530, '2', '1973-1976, 1978-2020', 'Insect Science (Q1); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (6390, 'Fusion Science and Technology', 15361055, 0.749, 'Q1', 51, 120, 2263, 500, 421, '2', '2001-2020', 'Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2); Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)'), (6391, 'International Journal of Offender Therapy and', 306624, 0.749, 'Q1', 61, 148, 9135, 915, 482, '2', '1966-2020', 'Arts and Humanities (miscellaneous) (Q1); Applied Psychology (Q2); Pathology and Forensic Medicine (Q2)'), (6392, 'International Political Science Review', 1925121, 0.749, 'Q1', 54, 90, 3904, 259, 128, '3', '1980-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (6393, 'Journal of Computer-Aided Molecular Design', 15734951, 0.749, 'Q2', 101, 103, 6016, 914, 254, '16', '1987-2020', 'Computer Science Applications (Q2); Drug Discovery (Q2); Physical and Theoretical Chemistry (Q2)'), (6394, 'Journal of Global History', 17400228, 0.749, 'Q1', 27, 34, 2611, 87, 69, '3', '2006-2020', 'History (Q1); Sociology and Political Science (Q1)'), (6395, 'Journal of Nervous and Mental Disease', 223018, 0.749, 'Q2', 123, 159, 5232, 934, 434, '2', '1874-2020', 'Psychiatry and Mental Health (Q2)'), (6396, 'Journal of Nutritional Science', 20486790, 0.749, 'Q1', 23, 60, 2666, 367, 63, '3', '2012-2020', 'Food Science (Q1); Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)'), (6397, 'Micro and Nano Engineering', 25900072, 0.749, 'Q1', 6, 26, 645, 131, 36, '16', '2018-2020', 'Electrical and Electronic Engineering (Q1); Surfaces, Coatings and Films (Q1); Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials '), (6398, 'Resources', 20799276, 0.749, 'Q2', 30, 146, 9166, 1169, 301, '19', '2012-2020', 'Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)'), (6399, 'Journal of Disability Policy Studies', 10442073, 0.748, 'Q1', 36, 49, 1900, 152, 69, '2', '1990-2020', 'Law (Q1); Health (social science) (Q2)'), (6400, 'Journal of Raman Spectroscopy', 3770486, 0.748, 'Q2', 110, 242, 11363, 1818, 647, '3', '1973-2020', 'Materials Science (miscellaneous) (Q2); Spectroscopy (Q2)'), (6401, 'Journal of the American College of Nutrition', 15411087, 0.748, 'Q2', 121, 158, 7381, 760, 248, '3', '1982-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (6402, 'Parkinson s Disease', 20420080, 0.748, 'Q2', 46, 75, 2984, 528, 193, '32', '2010-2020', 'Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2); Neuroscience (miscellaneous) (Q3)'), (6403, 'Pediatric Radiology', 14321998, 0.748, 'Q2', 86, 267, 6467, 1462, 610, '5', '1973-2020', 'Pediatrics, Perinatology and Child Health (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6404, 'Urologic Clinics of North America', 940143, 0.748, 'Q2', 75, 60, 3368, 362, 167, '3', '1974-2020', 'Urology (Q2)'), (6405, 'African Archaeological Review', 15729842, 0.747, 'Q1', 35, 35, 2258, 112, 74, '19', '1983-1994, 1996-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (6406, 'Alcohol and Alcoholism', 7350414, 0.747, 'Q2', 99, 88, 3195, 646, 273, '3', '1965-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Toxicology (Q2)'), (6407, 'Allergy, Asthma and Clinical Immunology', 17101492, 0.747, 'Q2', 33, 101, 3200, 609, 208, '3', '2004-2020', 'Pulmonary and Respiratory Medicine (Q2); Immunology (Q3); Immunology and Allergy (Q3)'), (6408, 'Antiviral Therapy', 20402058, 0.747, 'Q2', 87, 8, 297, 464, 243, '3', '1996-2019', 'Infectious Diseases (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (6409, 'Biochemistry (Moscow)', 62979, 0.747, 'Q2', 80, 156, 10899, 1201, 483, '10', '1972-1980, 1996-2020', 'Biochemistry (Q2); Medicine (miscellaneous) (Q2)'), (6410, 'Climacteric', 14730804, 0.747, 'Q2', 71, 112, 4469, 719, 271, '3', '1998-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (6411, 'Current Protocols in Essential Laboratory Tec', 19483430, 0.747, 'Q2', 10, 7, 117, 55, 27, '5', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)'), (6412, 'Energy, Sustainability and Society', 21920567, 0.747, 'Q1', 25, 44, 2552, 351, 124, '2', '2011-2020', 'Development (Q1); Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (6413, 'Forestry', 15752, 0.747, 'Q1', 63, 43, 2926, 361, 163, '3', '1927-1945, 1947-1948, 1950-1959, 1962-2020', 'Forestry (Q1)'), (6414, 'Fuzzy Optimization and Decision Making', 15732908, 0.747, 'Q1', 51, 36, 971, 319, 71, '2', '2002-2020', 'Logic (Q1); Software (Q1); Artificial Intelligence (Q2)'), (6415, 'International Journal of Environmental Resear', 16617827, 0.747, 'Q2', 113, 9613, 508090, 35306, 9543, '19', '2004-2020', 'Health, Toxicology and Mutagenesis (Q2); Pollution (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6416, 'International Journal of Women s Dermatology', 23526475, 0.747, 'Q2', 16, 133, 2801, 397, 153, '16', '2015-2020', 'Dermatology (Q2)'), (6417, 'Journal of Tropical Medicine', 16879686, 0.747, 'Q2', 30, 56, 2063, 279, 109, '32', '2010-2020', 'Medicine (miscellaneous) (Q2); Parasitology (Q2); Microbiology (Q3)'), (6418, 'Nuclear Instruments and Methods in Physics Re', 1689002, 0.747, 'Q1', 170, 1179, 25868, 5597, 3037, '16', '1983-2020', 'Instrumentation (Q1); Nuclear and High Energy Physics (Q2)'), (6419, 'Plant Signaling and Behavior', 15592316, 0.747, 'Q2', 81, 192, 7884, 1052, 511, '2', '2006-2020', 'Plant Science (Q2)'), (6420, 'Seminars in Thoracic and Cardiovascular Surge', 15329488, 0.747, 'Q2', 57, 329, 5151, 510, 245, '3', '1989-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2); Surgery (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (6421, 'Soil Science and Plant Nutrition', 380768, 0.747, 'Q1', 61, 99, 4519, 529, 223, '3', '1955-2020', 'Plant Science (Q1); Soil Science (Q2)'), (6422, 'ACI Materials Journal', 889325, 0.746, 'Q1', 91, 103, 4276, 549, 281, '2', '1987-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Materials Science (miscellaneous) (Q2)'), (6423, 'Economic History of Developing Regions', 20780389, 0.746, 'Q1', 14, 11, 751, 45, 30, '3', '2010-2020', 'Development (Q1); History (Q1); Economics and Econometrics (Q2)'), (6424, 'Genomics Insights', 11786310, 0.746, 'Q2', 7, 0, 0, 10, 6, '41', '2008-2018', 'Biochemistry (Q2); Cell Biology (Q3); Genetics (Q3); Molecular Biology (Q3)'), (6425, 'Geometriae Dedicata', 15729168, 0.746, 'Q2', 43, 129, 2763, 284, 250, '16', '1972-2020', 'Geometry and Topology (Q2)'), (6426, 'Geothermal Energy', 21959706, 0.746, 'Q1', 18, 25, 1721, 265, 89, '2', '2013-2020', 'Economic Geology (Q1); Geotechnical Engineering and Engineering Geology (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (6427, 'Journal of Preventive Medicine and Public Hea', 19758375, 0.746, 'Q2', 33, 69, 1735, 311, 137, '13', '2006-2020', 'Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6428, 'Politics and Governance', 21832463, 0.746, 'Q1', 18, 146, 7459, 433, 176, '26', '2013-2020', 'Sociology and Political Science (Q1); Public Administration (Q2)'), (6429, 'RSC Advances', 20462069, 0.746, 'Q1', 148, 4611, 242792, 56090, 15924, '3', '2011-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2)'), (6430, 'Sex Education', 14720825, 0.746, 'Q1', 34, 69, 2964, 332, 148, '3', '2005-2020', 'Education (Q1); Social Sciences (miscellaneous) (Q1)'), (6431, 'Acta Applicandae Mathematicae', 15729036, 0.745, 'Q2', 45, 125, 3846, 301, 175, '16', '1983-2020', 'Applied Mathematics (Q2)'), (6432, 'Compare', 14693623, 0.745, 'Q2', 38, 147, 7474, 370, 189, '3', '1975-2020', 'Education (Q2)'), (6433, 'Drug Metabolism and Pharmacokinetics', 13474367, 0.745, 'Q1', 68, 73, 2674, 372, 130, '6', '2002-2020', 'Pharmaceutical Science (Q1); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (6434, 'IEEE/ACM Transactions on Computational Biolog', 15579964, 0.745, 'Q2', 71, 273, 7970, 1935, 534, '2', '2004-2020', 'Applied Mathematics (Q2); Biotechnology (Q2); Genetics (Q3)'), (6435, 'Injury Prevention', 14755785, 0.745, 'Q2', 83, 130, 3910, 602, 270, '3', '1995-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (6436, 'Journal of Pharmaceutical Investigation', 20935552, 0.745, 'Q1', 25, 50, 3366, 711, 158, '16', '2012-2020', 'Pharmaceutical Science (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)'), (6437, 'Journal of Pharmacy and Pharmacology', 20427158, 0.745, 'Q1', 118, 169, 8431, 1675, 494, '2', '1949-2020', 'Pharmaceutical Science (Q1); Pharmacology (Q2)'), (6438, 'Marketing Intelligence and Planning', 2634503, 0.745, 'Q2', 70, 64, 4053, 722, 202, '3', '1983-2020', 'Marketing (Q2)'), (6439, 'Molecular Reproduction and Development', 1040452, 0.745, 'Q3', 105, 115, 6543, 975, 359, '2', '1988-2020', 'Cell Biology (Q3); Developmental Biology (Q3); Genetics (Q3)'), (6440, 'Pastoralism', 20417136, 0.745, 'Q1', 21, 25, 1519, 156, 66, '5', '2011-2020', 'Animal Science and Zoology (Q1)'), (6441, 'Pathology and Oncology Research', 15322807, 0.745, 'Q2', 51, 340, 11394, 1168, 401, '16', '1995-1996, 1998-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Cancer Research (Q3); Oncology (Q3)'), (6442, 'ADHD Attention Deficit and Hyperactivity Diso', 18666647, 0.744, 'Q2', 30, 0, 0, 253, 92, '28', '2009-2019', 'Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (6443, 'Alkaloids: Chemistry and Biology', 10994831, 0.744, 'Q2', 39, 8, 1240, 63, 7, '2', '1998-2003, 2005-2020', 'Biochemistry (Q2)'), (6444, 'American Journal of Managed Care', 10880224, 0.744, 'Q2', 92, 226, 5642, 883, 606, '2', '1996-2020', 'Health Policy (Q2); Medicine (miscellaneous) (Q2)'), (6445, 'Basic and Applied Social Psychology', 1973533, 0.744, 'Q2', 67, 28, 1767, 203, 95, '2', '1980-2020', 'Applied Psychology (Q2); Social Psychology (Q2)'), (6446, 'Biomedical Materials (Bristol)', 17486041, 0.744, 'Q1', 72, 152, 7954, 1317, 363, '3', '2006-2020', 'Business and International Management (Q1); Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Chemistry (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (6447, 'BMC Endocrine Disorders', 14726823, 0.744, 'Q2', 41, 183, 6827, 837, 318, '3', '2001-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2)'), (6448, 'Corrosion', 109312, 0.744, 'Q1', 89, 32, 1406, 703, 377, '2', '1969-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)'), (6449, 'Disasters', 3613666, 0.744, 'Q1', 70, 42, 2638, 440, 157, '3', '1977-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (6450, 'Food Technology and Biotechnology', 13342606, 0.744, 'Q1', 67, 47, 2022, 708, 166, '58', '1996-2020', 'Chemical Engineering (miscellaneous) (Q1); Industrial and Manufacturing Engineering (Q1); Biotechnology (Q2); Food Science (Q2)'), (6451, 'International Journal of Hypertension', 20900384, 0.744, 'Q2', 37, 70, 2816, 287, 116, '2', '2010-2020', 'Internal Medicine (Q2)'), (6452, 'Journal of Developmental Origins of Health an', 20401752, 0.744, 'Q2', 34, 145, 7528, 559, 226, '3', '2010-2020', 'Medicine (miscellaneous) (Q2)'), (6453, 'Journal of Vascular Surgery: Venous and Lymph', 2213333, 0.744, 'Q2', 26, 241, 4883, 792, 336, '2', '2013-2020', 'Cardiology and Cardiovascular Medicine (Q2); Surgery (Q2)'), (6454, 'Land', 2073445, 0.744, 'Q2', 23, 517, 37133, 1333, 374, '19', '2012-2020', 'Ecology (Q2); Global and Planetary Change (Q2); Nature and Landscape Conservation (Q2)'), (6455, 'Mycopathologia', 15730832, 0.744, 'Q1', 73, 111, 4705, 855, 303, '16', '1938-1941, 1943, 1948-1950, 1959-1962, 1973-2020', 'Agronomy and Crop Science (Q1); Veterinary (miscellaneous) (Q1); Applied Microbiology and Biotechnology (Q2); Plant Science (Q2); Microbiology (Q3)'), (6456, 'Performance Enhancement and Health', 22112669, 0.744, 'Q2', 14, 28, 1388, 119, 36, '16', '2013-2014, 2017-2020', 'Health (social science) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6457, 'Transactions of Nonferrous Metals Society of ', 10036326, 0.744, 'Q1', 70, 284, 10222, 2845, 835, '1', '1994-2020', 'Materials Chemistry (Q1); Metals and Alloys (Q1); Condensed Matter Physics (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (6458, 'Veterinary Dermatology', 9594493, 0.744, 'Q1', 60, 91, 2338, 468, 263, '3', '1990-2020', 'Veterinary (miscellaneous) (Q1)'), (6459, 'ACM Transactions on Privacy and Security', 24712566, 0.743, 'Q1', 14, 28, 1607, 275, 59, '2', '2016-2020', 'Computer Science (miscellaneous) (Q1); Safety, Risk, Reliability and Quality (Q1)'), (6460, 'Area Development and Policy', 23792957, 0.743, 'Q1', 11, 38, 2024, 122, 62, '3', '2016-2020', 'Geography, Planning and Development (Q1); Sociology and Political Science (Q1); Urban Studies (Q1); Nature and Landscape Conservation (Q2); Public Administration (Q2)'), (6461, 'BioImpacts', 22285652, 0.743, 'Q1', 32, 35, 1323, 374, 91, '15', '2011-2020', 'Pharmaceutical Science (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (6462, 'Communications in Mathematical Sciences', 15396746, 0.743, 'Q2', 50, 86, 2854, 487, 277, '2', '2007-2020', 'Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)'), (6463, 'Comparative European Politics', 1740388, 0.743, 'Q1', 31, 48, 2486, 267, 143, '3', '2009-2020', 'Political Science and International Relations (Q1)'), (6464, 'Education and Training', 400912, 0.743, 'Q1', 65, 79, 5080, 651, 216, '3', '1959-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Education (Q2); Life-span and Life-course Studies (Q2)'), (6465, 'Endocrine Journal', 9188959, 0.743, 'Q2', 72, 141, 4672, 976, 359, '6', '1954-1963, 1993-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Endocrinology (Q3)'), (6466, 'Freshwater Science', 21619549, 0.743, 'Q1', 116, 61, 4050, 461, 228, '2', '2012-2020', 'Aquatic Science (Q1); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (6467, 'International Health', 18763413, 0.743, 'Q2', 31, 53, 1714, 481, 243, '3', '2009-2020', 'Health (social science) (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6468, 'Journal of Adolescent and Young Adult Oncolog', 21565333, 0.743, 'Q2', 20, 96, 3080, 500, 258, '2', '2014-2020', 'Pediatrics, Perinatology and Child Health (Q2); Oncology (Q3)'), (6469, 'Journal of Electromyography and Kinesiology', 18735711, 0.743, 'Q2', 99, 77, 3182, 762, 337, '3', '1991-2020', 'Biophysics (Q2); Neurology (clinical) (Q2); Neuroscience (miscellaneous) (Q3); Sports Science (Q3)'), (6470, 'Journal of Korean Medical Science', 15986357, 0.743, 'Q2', 66, 430, 9575, 1912, 808, '13', '1986-2020', 'Medicine (miscellaneous) (Q2)'), (6471, 'Journal of Multinational Financial Management', 1042444, 0.743, 'Q2', 44, 29, 1958, 349, 85, '16', '1997-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (6472, 'Neuroepigenetics', 22147845, 0.743, 'Q2', 11, 0, 0, 2, 1, '16', '2015-2017', 'Biochemistry (Q2); Biological Psychiatry (Q3); Cognitive Neuroscience (Q3); Developmental Neuroscience (Q3); Cellular and Molecular Neuroscience (Q4)'), (6473, 'Primary Care Diabetes', 17519918, 0.743, 'Q2', 34, 117, 4101, 485, 204, '16', '2007-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2); Nutrition and Dietetics (Q2)'), (6474, 'Results in Physics', 22113797, 0.743, 'Q2', 56, 763, 29814, 11000, 2308, '16', '2011-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (6475, 'Sahara J', 17290376, 0.743, 'Q2', 29, 5, 165, 83, 46, '3', '2004-2020', 'Health (social science) (Q2); Infectious Diseases (Q2); Public Health, Environmental and Occupational Health (Q2); Immunology and Allergy (Q3)'), (6476, 'Scandinavian Journal of Psychology', 14679450, 0.743, 'Q1', 72, 97, 5385, 503, 214, '3', '1960-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (6477, 'Wind Energy', 10991824, 0.743, 'Q2', 92, 156, 6469, 1272, 345, '3', '1977-1978, 2003-2020', 'Renewable Energy, Sustainability and the Environment (Q2)'), (6478, 'Acta Crystallographica Section A: Foundations', 20532733, 0.742, 'Q1', 83, 72, 2539, 352, 195, '2', '1998, 2014-2020', 'Inorganic Chemistry (Q1); Biochemistry (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Structural Biology (Q3)'), (6479, 'Acta Neurochirurgica', 16268, 0.742, 'Q2', 95, 450, 11700, 2025, 868, '28', '1950-2020', 'Neurology (clinical) (Q2); Surgery (Q2)'), (6480, 'Canadian Journal of Kidney Health and Disease', 20543581, 0.742, 'Q2', 20, 103, 3807, 349, 182, '3', '2014-2020', 'Nephrology (Q2)'), (6481, 'Hand Clinics', 15581969, 0.742, 'Q2', 55, 67, 2497, 332, 181, '3', '1985-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (6482, 'Journal of Maps', 17445647, 0.742, 'Q1', 35, 140, 6578, 864, 292, '3', '2005-2021', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1)'), (6483, 'Natural Resources Research', 15207439, 0.742, 'Q1', 47, 231, 13409, 763, 163, '2', '1996-2020', 'Environmental Science (miscellaneous) (Q1)'), (6484, 'Research in Number Theory', 23639555, 0.742, 'Q2', 11, 43, 976, 145, 112, '3', '2015-2020', 'Algebra and Number Theory (Q2)'), (6485, 'Results in Mathematics', 14226383, 0.742, 'Q2', 34, 177, 3983, 891, 584, '19', '1978-2020', 'Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)'), (6486, 'Breast Cancer: Basic and Clinical Research', 11782234, 0.741, 'Q3', 23, 37, 1672, 123, 55, '41', '2009-2020', 'Cancer Research (Q3); Oncology (Q3)'), (6487, 'European Transport Research Review', 18668887, 0.741, 'Q1', 27, 65, 2654, 537, 157, '5', '2009-2020', 'Automotive Engineering (Q1); Mechanical Engineering (Q1); Transportation (Q2)'), (6488, 'Food Additives and Contaminants: Part B Surve', 19393210, 0.741, 'Q2', 27, 40, 1498, 396, 122, '3', '2008-2020', 'Food Science (Q2); Public Health, Environmental and Occupational Health (Q2); Toxicology (Q2)'), (6489, 'International Journal for Numerical Methods i', 20407947, 0.741, 'Q1', 63, 107, 5123, 1070, 334, '2', '2010-2020', 'Software (Q1); Applied Mathematics (Q2); Biomedical Engineering (Q2); Computational Theory and Mathematics (Q2); Modeling and Simulation (Q2); Molecular Biology (Q3)'), (6490, 'International Peacekeeping', 13533312, 0.741, 'Q1', 35, 46, 2706, 181, 81, '3', '1994-1999, 2001-2020', 'Political Science and International Relations (Q1)'), (6491, 'Journal of Enterprise Information Management', 17410398, 0.741, 'Q1', 61, 117, 9530, 870, 161, '3', '2004-2020', 'Information Systems (Q1); Library and Information Sciences (Q1); Decision Sciences (miscellaneous) (Q2); Management of Technology and Innovation (Q2)'), (6492, 'Journal of Ethnobiology and Ethnomedicine', 17464269, 0.741, 'Q1', 69, 74, 5501, 722, 220, '3', '2005-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Complementary and Alternative Medicine (Q1); Cultural Studies (Q1); Health (social science) (Q2)'), (6493, 'Journal of Hand Therapy', 1545004, 0.741, 'Q1', 62, 140, 4493, 365, 190, '2', '1987-2020', 'Rehabilitation (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (6494, 'Journal of Instrumentation', 17480221, 0.741, 'Q1', 84, 1029, 20568, 4897, 2339, '3', '2006-2020', 'Instrumentation (Q1); Mathematical Physics (Q2)'), (6495, 'Journal of Physics and Chemistry of Solids', 223697, 0.741, 'Q2', 108, 422, 20155, 4784, 1257, '3', '1956-2021', 'Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)'), (6496, 'Journal of the Optical Society of America B: ', 7403224, 0.741, 'Q2', 144, 530, 20935, 3502, 1391, '2', '1983-2020', 'Atomic and Molecular Physics, and Optics (Q2); Statistical and Nonlinear Physics (Q2)'), (6497, 'Leadership and Organization Development Journ', 1437739, 0.741, 'Q1', 67, 76, 5194, 733, 200, '3', '1980-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Organizational Behavior and Human Resource Management (Q2)'), (6498, 'Macroeconomic Dynamics', 14698056, 0.741, 'Q2', 46, 117, 4987, 334, 346, '3', '1997-2020', 'Economics and Econometrics (Q2)'), (6499, 'Oceanologia', 783234, 0.741, 'Q1', 42, 54, 2396, 380, 140, '17', '1973, 1978, 1984, 1993-2020', 'Aquatic Science (Q1); Ocean Engineering (Q1); Atmospheric Science (Q2); Oceanography (Q2)'), (6500, 'Practical Neurology', 14747758, 0.741, 'Q2', 43, 129, 2319, 556, 252, '3', '2001-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2)'), (6501, 'Angiology', 33197, 0.74, 'Q2', 65, 175, 4980, 833, 300, '2', '1950-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (6502, 'Aquaculture Reports', 23525134, 0.74, 'Q1', 20, 315, 17058, 488, 136, '16', '2015-2020', 'Animal Science and Zoology (Q1); Aquatic Science (Q1)'), (6503, 'Bioacoustics', 9524622, 0.74, 'Q2', 32, 71, 3849, 165, 79, '3', '1988-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (6504, 'Deviant Behavior', 15210456, 0.74, 'Q1', 56, 192, 12154, 693, 331, '3', '1979-2020', 'Law (Q1); Sociology and Political Science (Q1); Clinical Psychology (Q2); Social Psychology (Q2)'), (6505, 'European Journal of Higher Education', 21568235, 0.74, 'Q2', 16, 33, 1619, 188, 80, '3', '2011-2020', 'Education (Q2)'), (6506, 'Helvetica Chimica Acta', 18019, 0.74, 'Q1', 82, 53, 2972, 351, 185, '2', '1918-2020', 'Inorganic Chemistry (Q1); Biochemistry (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Catalysis (Q3)'), (6507, 'IEEE Transactions on Dielectrics and Electric', 10709878, 0.74, 'Q1', 119, 277, 6421, 3905, 995, '2', '1994-2020', 'Electrical and Electronic Engineering (Q1)'), (6508, 'International Journal of Prosthodontics', 11399791, 0.74, 'Q2', 96, 72, 1788, 555, 307, '2', '1988-2020', 'Medicine (miscellaneous) (Q2); Oral Surgery (Q2)'), (6509, 'Journal of Early Childhood Research', 1476718, 0.74, 'Q2', 29, 50, 2224, 167, 86, '3', '2003-2020', 'Developmental and Educational Psychology (Q2); Education (Q2); Health (social science) (Q2)'), (6510, 'Journal of Pediatric and Adolescent Gynecolog', 10833188, 0.74, 'Q2', 56, 143, 3474, 714, 341, '2', '1996-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (6511, 'Journal of Research on Technology in Educatio', 19450818, 0.74, 'Q2', 63, 65, 4190, 152, 64, '3', '2001-2020', 'Computer Science Applications (Q2); Education (Q2)'), (6512, 'Men and Masculinities', 1097184, 0.74, 'Q1', 59, 61, 3186, 300, 124, '2', '1998-2020', 'Gender Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Sociology and Political Science (Q1)'), (6513, 'Optical Materials: X', 25901478, 0.74, 'Q1', 6, 12, 601, 112, 33, '16', '2019-2020', 'Electrical and Electronic Engineering (Q1); Inorganic Chemistry (Q1); Atomic and Molecular Physics, and Optics (Q2); Electronic, Optical and Magnetic Materials (Q2); Organic Chemistry (Q2); Physical a'), (6514, 'Translation Spaces(Netherland)', 22113711, 0.74, 'Q1', 7, 15, 774, 57, 44, '16', '2016-2019', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (6515, 'Clinical Drug Investigation', 11791918, 0.739, 'Q2', 58, 118, 4111, 824, 337, '3', '1995-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)'), (6516, 'Education and Urban Society', 131245, 0.739, 'Q1', 38, 77, 4019, 215, 122, '2', '1968-2020', 'Urban Studies (Q1); Education (Q2)'), (6517, 'Ethology', 14390310, 0.739, 'Q1', 74, 118, 6954, 483, 296, '3', '1986-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (6518, 'Flow, Turbulence and Combustion', 13866184, 0.739, 'Q1', 64, 132, 5726, 767, 288, '16', '1996-2020', 'Chemical Engineering (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (6519, 'Games and Culture', 15554139, 0.739, 'Q1', 46, 69, 3795, 311, 130, '2', '2006-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Communication (Q1); Cultural Studies (Q1); Human-Computer Interaction (Q1); Applied Psychology (Q2)'), (6520, 'Health Services Insights', 11786329, 0.739, 'Q2', 12, 24, 1046, 140, 48, '3', '2008-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6521, 'International Journal of Managing Projects in', 17538378, 0.739, 'Q1', 32, 54, 4343, 493, 193, '3', '2008-2020', 'Business and International Management (Q1); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (6522, 'International Journal of Sediment Research', 10016279, 0.739, 'Q1', 37, 66, 3380, 463, 162, '16', '1981-1987, 1991, 2000-2020', 'Geology (Q1); Stratigraphy (Q1)'), (6523, 'Journal of Trace Elements in Medicine and Bio', 946672, 0.739, 'Q1', 76, 217, 11586, 2110, 562, '5', '1995-2020', 'Inorganic Chemistry (Q1); Biochemistry (Q2); Molecular Medicine (Q3)'), (6524, 'Postgraduate Medicine', 12182583, 0.739, 'Q2', 55, 151, 7123, 848, 287, '3', '1947-2006, 2008-2020', 'Medicine (miscellaneous) (Q2)'), (6525, 'Social Work', 15456846, 0.739, 'Q1', 72, 47, 1763, 257, 108, '2', '1956-2020', 'Social Work (Q1); Sociology and Political Science (Q1)'), (6526, 'Acta Anaesthesiologica Scandinavica', 13996576, 0.738, 'Q1', 107, 214, 6013, 944, 465, '25', '1957-2020', 'Anesthesiology and Pain Medicine (Q1); Medicine (miscellaneous) (Q2)'), (6527, 'Bosnian Journal of Basic Medical Sciences', 18404812, 0.738, 'Q2', 25, 65, 2702, 458, 152, '90', '2004-2020', 'Medicine (miscellaneous) (Q2)'), (6528, 'Current Opinion in Anaesthesiology', 14736500, 0.738, 'Q1', 71, 128, 1114, 903, 342, '2', '1994-2020', 'Anesthesiology and Pain Medicine (Q1)'), (6529, 'Depression Research and Treatment', 20901321, 0.738, 'Q2', 27, 21, 867, 73, 23, '32', '2010-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (6530, 'International Journal of Osteoarchaeology', 10991212, 0.738, 'Q1', 60, 104, 6302, 393, 271, '3', '1991-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)'), (6531, 'Journal of Adhesion', 218464, 0.738, 'Q1', 52, 140, 5423, 572, 205, '3', '1969-2020', 'Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1); Chemistry (miscellaneous) (Q2); Mechanics of Materials (Q2); Surfaces and Interfaces (Q2)'), (6532, 'Journal of Business and Industrial Marketing', 8858624, 0.738, 'Q1', 67, 234, 19061, 1530, 381, '3', '1986-2020', 'Business and International Management (Q1); Marketing (Q2)'), (6533, 'Journal of Information Display', 15980316, 0.738, 'Q1', 22, 23, 823, 219, 76, '3', '2000-2020', 'Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q2)'), (6534, 'Plant Diversity', 24682659, 0.738, 'Q2', 15, 71, 3698, 347, 120, '1', '2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (6535, 'Psychology in the Schools', 333085, 0.738, 'Q2', 75, 120, 6770, 520, 280, '2', '1964-2020', 'Developmental and Educational Psychology (Q2); Education (Q2)'), (6536, 'Review of Palaeobotany and Palynology', 346667, 0.738, 'Q1', 76, 116, 9735, 644, 308, '16', '1967-2020', 'Paleontology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (6537, 'Vacuum', 42207, 0.738, 'Q1', 85, 670, 26242, 6308, 1806, '3', '1951-1956, 1959-2020', 'Instrumentation (Q1); Surfaces, Coatings and Films (Q1); Condensed Matter Physics (Q2)'), (6538, 'Arctic, Antarctic, and Alpine Research', 15230430, 0.737, 'Q1', 75, 46, 2977, 315, 131, '2', '1996-2020', 'Earth-Surface Processes (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Global and Planetary Change (Q2)'), (6539, 'Behaviour', 57959, 0.737, 'Q1', 77, 60, 3498, 268, 168, '16', '1948, 1950-1951, 1953, 1955-1958, 1960-2020', 'Animal Science and Zoology (Q1); Behavioral Neuroscience (Q3)'), (6540, 'Glycoconjugate Journal', 2820080, 0.737, 'Q2', 86, 75, 3839, 451, 160, '16', '1984-2020', 'Biochemistry (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (6541, 'Immunological Investigations', 15324311, 0.737, 'Q2', 47, 148, 7200, 609, 204, '2', '1972-2020', 'Medicine (miscellaneous) (Q2); Immunology (Q3)'), (6542, 'Journal of Business Economics', 442372, 0.737, 'Q1', 21, 54, 3802, 385, 114, '5', '1973-1979, 2013-2020', 'Business and International Management (Q1); Economics and Econometrics (Q2)'), (6543, 'Journal of Evaluation in Clinical Practice', 13652753, 0.737, 'Q2', 73, 278, 11053, 1185, 506, '3', '1995-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6544, 'Journal of Human Hypertension', 9509240, 0.737, 'Q2', 95, 198, 6113, 796, 312, '3', '1987-2020', 'Internal Medicine (Q2)'), (6545, 'Neurological Research', 17431328, 0.737, 'Q2', 79, 148, 5382, 1101, 412, '3', '1979-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Neurology (Q3)'), (6546, 'Nuclear Engineering and Technology', 2234358, 0.737, 'Q2', 40, 404, 10754, 1465, 602, '13', '2008-2020', 'Nuclear Energy and Engineering (Q2)'), (6547, 'Plant Production Science', 13491008, 0.737, 'Q1', 48, 79, 3028, 310, 145, '6', '1998-2020', 'Agronomy and Crop Science (Q1)'), (6548, 'Current Pediatric Reviews', 15733963, 0.736, 'Q2', 21, 40, 2344, 218, 93, '52', '2006-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (6549, 'Nuclear Technology', 295450, 0.736, 'Q2', 50, 204, 5300, 394, 325, '2', '1971-2020', 'Condensed Matter Physics (Q2); Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)'), (6550, 'Photodermatology Photoimmunology and Photomed', 9054383, 0.736, 'Q2', 60, 107, 2260, 411, 127, '3', '1990-1992, 1994-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Immunology (Q3); Immunology and Allergy (Q3)'), (6551, 'Seminars in Ophthalmology', 8820538, 0.736, 'Q2', 50, 51, 1929, 595, 328, '3', '1986-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q2)'), (6552, 'Studia Logica', 15728730, 0.736, 'Q1', 39, 57, 1431, 167, 141, '16', '1953, 1955-1958, 1960-2002, 2004-2020', 'History and Philosophy of Science (Q1); Logic (Q1)'), (6553, 'American Journal on Intellectual and Developm', 19447515, 0.735, 'Q1', 85, 56, 1648, 280, 134, '2', '2009-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Neuropsychology and Physiological Psychology (Q2); Pe'), (6554, 'Anticancer Research', 17917530, 0.735, 'Q2', 121, 847, 27859, 6355, 2662, '39', '1981-2020', 'Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)'), (6555, 'Australian Prescriber', 3128008, 0.735, 'Q2', 26, 65, 972, 292, 92, '11', '1995-2020', 'Pharmacology (medical) (Q2)'), (6556, 'Geophysical Prospecting', 168025, 0.735, 'Q2', 79, 174, 6967, 722, 406, '3', '1953-2020', 'Geochemistry and Petrology (Q2); Geophysics (Q2)'), (6557, 'Journal of Child Sexual Abuse', 10538712, 0.735, 'Q2', 44, 61, 2754, 358, 171, '2', '1992-2020', 'Clinical Psychology (Q2); Pathology and Forensic Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)'), (6558, 'Journal of Human Kinetics', 16405544, 0.735, 'Q2', 37, 111, 4120, 927, 365, '17', '2008-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Physiology (medical) (Q3); Sports Science (Q3)'), (6559, 'Journal of Inequalities and Applications', 1029242, 0.735, 'Q1', 50, 247, 7034, 2329, 982, '3', '2000-2002, 2005-2020', 'Discrete Mathematics and Combinatorics (Q1); Analysis (Q2); Applied Mathematics (Q2)'), (6560, 'Journal of Medical Economics', 13696998, 0.735, 'Q2', 45, 194, 6747, 959, 432, '3', '1998-2020', 'Health Policy (Q2)'), (6561, 'Journal of Nonparametric Statistics', 10290311, 0.735, 'Q2', 39, 41, 1446, 214, 133, '3', '1991-2020', 'Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (6562, 'Linguistica Antverpiensia', 3042294, 0.735, 'Q1', 10, 1, 36, 33, 29, '24', '2012-2018', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6563, 'Neuroscience Insights', 26331055, 0.735, 'Q3', 17, 38, 2207, 266, 85, '3', '2020', 'Neuroscience (miscellaneous) (Q3)'), (6564, 'Tree Genetics and Genomes', 16142942, 0.735, 'Q1', 59, 83, 5183, 745, 305, '5', '2005-2020', 'Forestry (Q1); Horticulture (Q1); Genetics (Q3); Molecular Biology (Q3)'), (6565, 'Australian and New Zealand Journal of Obstetr', 1479828, 0.734, 'Q2', 65, 204, 4745, 634, 327, '2', '1961-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (6566, 'BMC Sports Science, Medicine and Rehabilitati', 20521847, 0.734, 'Q1', 22, 74, 3170, 186, 77, '3', '2013-2020', 'Rehabilitation (Q1); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (6567, 'Frontiers in Energy Research', 2296598, 0.734, 'Q2', 30, 347, 18020, 1058, 298, '19', '2013-2020', 'Economics and Econometrics (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (6568, 'Hormone Molecular Biology and Clinical Invest', 18681883, 0.734, 'Q2', 29, 75, 3326, 412, 162, '5', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2); Endocrinology (Q3); Molecular Biology (Q3)'), (6569, 'IEEE Internet Computing', 10897801, 0.734, 'Q1', 114, 53, 568, 865, 170, '2', '1997-2020', 'Computer Networks and Communications (Q1)'), (6570, 'International Journal of Hepatology', 20903448, 0.734, 'Q3', 14, 15, 507, 88, 23, '32', '2012-2020', 'Hepatology (Q3)'), (6571, 'Journal of Rare Earths', 10020721, 0.734, 'Q2', 54, 237, 9873, 2104, 548, '1', '1993-2020', 'Chemistry (miscellaneous) (Q2); Geochemistry and Petrology (Q2)'), (6572, 'JVC/Journal of Vibration and Control', 10775463, 0.734, 'Q1', 68, 392, 12913, 2722, 827, '2', '1995-2020', 'Aerospace Engineering (Q1); Automotive Engineering (Q1); Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (6573, 'Language, Culture and Curriculum', 7908318, 0.734, 'Q1', 32, 48, 2256, 102, 57, '3', '1988-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (6574, 'Mediterranean Marine Science', 17916763, 0.734, 'Q1', 38, 56, 3967, 369, 154, '39', '2000-2020', 'Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Environmental Engineering (Q2); Oceanography (Q2)'), (6575, 'Nonlinear Analysis: Modelling and Control', 23358963, 0.734, 'Q2', 32, 59, 1823, 477, 166, '69', '2009-2020', 'Analysis (Q2); Applied Mathematics (Q2)'), (6576, 'Surgeon', 1479666, 0.734, 'Q2', 47, 128, 3684, 401, 154, '3', '2003-2020', 'Surgery (Q2)'), (6577, 'World Neurosurgery', 18788769, 0.734, 'Q2', 95, 2675, 64788, 14126, 6927, '2', '2010-2020', 'Neurology (clinical) (Q2); Surgery (Q2)'), (6578, 'Algebras and Representation Theory', 15729079, 0.733, 'Q2', 31, 151, 3368, 238, 202, '16', '1998-2020', 'Mathematics (miscellaneous) (Q2)'), (6579, 'Aquatic Botany', 3043770, 0.733, 'Q1', 94, 81, 4148, 590, 255, '16', '1975-2020', 'Aquatic Science (Q1); Plant Science (Q2)'), (6580, 'Avian Pathology', 3079457, 0.733, 'Q1', 82, 79, 2805, 617, 227, '3', '1972-2020', 'Animal Science and Zoology (Q1); Food Animals (Q1); Immunology and Microbiology (miscellaneous) (Q2)'), (6581, 'Best Practice and Research in Clinical Anaest', 17533740, 0.733, 'Q2', 68, 88, 5974, 368, 117, '3', '2000-2020', 'Anesthesiology and Pain Medicine (Q2)'), (6582, 'Chinese Clinical Oncology', 23043873, 0.733, 'Q2', 22, 82, 2766, 535, 191, '35', '2012-2020', 'Medicine (miscellaneous) (Q2); Oncology (Q3)'), (6583, 'ICT Express', 24059595, 0.733, 'Q1', 22, 85, 1553, 813, 140, '13', '2015-2020', 'Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1); Artificial Intelligence (Q2)'), (6584, 'International Journal of Human Computer Studi', 10959300, 0.733, 'Q1', 122, 92, 6974, 1599, 300, '2', '1994-2021', 'Engineering (miscellaneous) (Q1); Hardware and Architecture (Q1); Software (Q1); Education (Q2); Human-Computer Interaction (Q2); Human Factors and Ergonomics (Q2)'), (6585, 'International Journal of Psychiatry in Clinic', 14711788, 0.733, 'Q2', 35, 102, 4712, 299, 132, '3', '1997-2020', 'Psychiatry and Mental Health (Q2)'), (6586, 'Magnetic Resonance Imaging Clinics of North A', 10649689, 0.733, 'Q2', 49, 62, 2440, 335, 143, '3', '1993-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (6587, 'Neuroimaging Clinics of North America', 10525149, 0.733, 'Q2', 55, 58, 3040, 385, 139, '3', '1993-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6588, 'Transport in Porous Media', 15731634, 0.733, 'Q1', 88, 164, 7515, 1748, 543, '16', '1985-2020', 'Chemical Engineering (miscellaneous) (Q1); Catalysis (Q3)'), (6589, 'Australian Critical Care', 10367314, 0.732, 'Q1', 36, 117, 4287, 437, 151, '42', '1992-2020', 'Critical Care Nursing (Q1); Emergency Nursing (Q1)'), (6590, 'Drug Delivery and Translational Research', 21903948, 0.732, 'Q2', 37, 193, 12977, 1234, 316, '2', '2011-2020', 'Pharmaceutical Science (Q2)'), (6591, 'Evolutionary Computation', 15309304, 0.732, 'Q2', 82, 12, 608, 478, 87, '2', '1996-2020', 'Computational Mathematics (Q2)'), (6592, 'Hague Journal on the Rule of Law', 18764053, 0.732, 'Q1', 17, 25, 1196, 82, 72, '19', '2009-2020', 'Law (Q1)'), (6593, 'High Voltage', 23977264, 0.732, 'Q1', 20, 94, 3540, 474, 90, '3', '2016-2020', 'Electrical and Electronic Engineering (Q1); Energy Engineering and Power Technology (Q2)'), (6594, 'IEEE Transactions on Semiconductor Manufactur', 8946507, 0.732, 'Q1', 65, 83, 2309, 719, 216, '2', '1988-2020', 'Electrical and Electronic Engineering (Q1); Industrial and Manufacturing Engineering (Q1); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (6595, 'International Sociology', 2685809, 0.732, 'Q1', 57, 31, 1773, 209, 91, '3', '1986-2020', 'Sociology and Political Science (Q1)'), (6596, 'Journal of Individual Differences', 21512299, 0.732, 'Q2', 35, 29, 1116, 159, 80, '2', '2005-2020', 'Psychology (miscellaneous) (Q2); Biological Psychiatry (Q3)'), (6597, 'Laboratory Phonology', 18686354, 0.732, 'Q1', 9, 31, 2340, 66, 35, '5', '2015-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Podiatry (Q1); Computer Science Applications (Q2)'), (6598, 'Leisure Studies', 14664496, 0.732, 'Q1', 64, 85, 4842, 517, 173, '3', '1981-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q2)'), (6599, 'Mechanics of Advanced Materials and Structure', 15376532, 0.732, 'Q1', 51, 435, 17578, 1636, 493, '3', '1996-2020', 'Civil and Structural Engineering (Q1); Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (6600, 'Networks and Heterogeneous Media', 1556181, 0.732, 'Q1', 34, 30, 972, 174, 92, '2', '2007-2020', 'Engineering (miscellaneous) (Q1); Applied Mathematics (Q2); Computer Science Applications (Q2); Statistics and Probability (Q2)'), (6601, 'Southeastern Archaeology', 734578, 0.732, 'Q1', 24, 16, 1546, 65, 45, '3', '1996-2020', 'Archeology (Q1)'), (6602, 'Topics in Catalysis', 15729028, 0.732, 'Q2', 111, 169, 7913, 1399, 496, '16', '1994-2020', 'Chemistry (miscellaneous) (Q2); Catalysis (Q3)'), (6603, 'European Annals of Otorhinolaryngology, Head ', 18797296, 0.731, 'Q2', 29, 185, 3005, 632, 311, '8', '2010-2020', 'Otorhinolaryngology (Q2); Surgery (Q2)'), (6604, 'Foundations and Trends in Information Retriev', 15540669, 0.731, 'Q1', 33, 4, 989, 218, 11, '2', '2006, 2008-2020', 'Computer Science (miscellaneous) (Q1); Information Systems (Q1)'), (6605, 'Journal of Marketing Theory and Practice', 10696679, 0.731, 'Q2', 44, 51, 3965, 255, 76, '3', '2005-2020', 'Marketing (Q2)'), (6606, 'Journal of Women and Gender in Higher Educati', 26379112, 0.731, 'Q1', 8, 18, 1150, 76, 57, '2', '2019-2020', 'Gender Studies (Q1); Education (Q2)'), (6607, 'Phycologia', 318884, 0.731, 'Q1', 66, 59, 2945, 472, 187, '2', '1981, 1983-1984, 1988-2020', 'Aquatic Science (Q1); Plant Science (Q2)'), (6608, 'Advances in Data Analysis and Classification', 18625347, 0.73, 'Q2', 30, 68, 2728, 280, 114, '5', '2007-2020', 'Applied Mathematics (Q2); Computer Science Applications (Q2); Statistics and Probability (Q2)'), (6609, 'Asia-Pacific Journal of Clinical Oncology', 17437555, 0.73, 'Q2', 29, 184, 5215, 864, 413, '3', '2006-2020', 'Medicine (miscellaneous) (Q2); Oncology (Q3)'), (6610, 'Clean Technologies and Environmental Policy', 1618954, 0.73, 'Q2', 55, 205, 10111, 1827, 504, '5', '2003-2020', 'Environmental Chemistry (Q2); Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2)'), (6611, 'Clinical, Cosmetic and Investigational Dermat', 11787015, 0.73, 'Q2', 35, 113, 4522, 665, 235, '41', '2009-2020', 'Dermatology (Q2)'), (6612, 'Common Market Law Review', 1650750, 0.73, 'Q1', 49, 141, 8093, 175, 136, '16', '1996-2019', 'Law (Q1); Political Science and International Relations (Q1)'), (6613, 'Critical Reviews in Therapeutic Drug Carrier ', 7434863, 0.73, 'Q2', 72, 18, 2951, 189, 43, '2', '1984-2020', 'Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2); Pharmacology (Q2)'), (6614, 'Evolutionary Human Sciences', 2513843, 0.73, 'Q1', 4, 48, 3718, 19, 10, '2', '2019', 'Anthropology (Q1); Cultural Studies (Q1); Applied Psychology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (6615, 'Innovations in Clinical Neuroscience', 21588341, 0.73, 'Q2', 34, 30, 754, 279, 95, '2', '2011-2020', 'Neurology (clinical) (Q2); Psychiatry and Mental Health (Q2)'), (6616, 'Integrative Cancer Therapies', 1552695, 0.73, 'Q1', 60, 124, 5954, 932, 301, '2', '2002-2020', 'Complementary and Alternative Medicine (Q1); Oncology (Q3)'), (6617, 'International Journal of Adaptive Control and', 8906327, 0.73, 'Q1', 66, 111, 4569, 1148, 329, '3', '1987-2020', 'Electrical and Electronic Engineering (Q1); Control and Systems Engineering (Q2); Signal Processing (Q2)'), (6618, 'International Journal of Fuzzy Systems', 15622479, 0.73, 'Q1', 42, 219, 9312, 2317, 534, '19', '2004-2020', 'Software (Q1); Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Theoretical Computer Science (Q2)'), (6619, 'Journal of Adolescent and Adult Literacy', 10813004, 0.73, 'Q2', 49, 85, 1863, 329, 248, '2', '1995-2020', 'Education (Q2)'), (6620, 'Journal of Human Resources in Hospitality and', 15332845, 0.73, 'Q2', 26, 29, 1956, 205, 73, '2', '2002, 2004-2020', 'Organizational Behavior and Human Resource Management (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (6621, 'Journal of Marketing for Higher Education', 15407144, 0.73, 'Q2', 32, 39, 3143, 213, 48, '2', '1988-1991, 1993-2020', 'Education (Q2); Marketing (Q2)'), (6622, 'Pathology International', 13205463, 0.73, 'Q2', 74, 148, 3753, 609, 244, '3', '1951-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)'), (6623, 'Science and Engineering Ethics', 13533452, 0.73, 'Q1', 53, 180, 9511, 1001, 278, '16', '1995-2020', 'Issues, Ethics and Legal Aspects (Q1); Health Policy (Q2); Health (social science) (Q2); Management of Technology and Innovation (Q2)'), (6624, 'Social Service Review', 15375404, 0.73, 'Q1', 58, 19, 1726, 120, 60, '2', '1973-1983, 1987, 1996-2020', 'Sociology and Political Science (Q1); Social Work (Q2)'), (6625, 'Acta Arithmetica', 17306264, 0.729, 'Q2', 44, 91, 1519, 298, 304, '17', '1996-2020', 'Algebra and Number Theory (Q2)'), (6626, 'Forensic Sciences Research', 24711411, 0.729, 'Q1', 10, 76, 2613, 242, 87, '3', '2016-2020', 'Anthropology (Q1); Analytical Chemistry (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Physical and Theoretical Chemistry (Q2); Psychiat'), (6627, 'Frontiers in Sustainable Food Systems', 2571581, 0.729, 'Q1', 14, 278, 22570, 774, 194, '19', '2018-2020', 'Agronomy and Crop Science (Q1); Horticulture (Q1); Ecology (Q2); Food Science (Q2); Global and Planetary Change (Q2); Management, Monitoring, Policy and Law (Q2)'), (6628, 'International Feminist Journal of Politics', 14616742, 0.729, 'Q1', 45, 56, 2380, 197, 125, '3', '1999-2020', 'Arts and Humanities (miscellaneous) (Q1); Gender Studies (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (6629, 'Journal of Chromatography B: Analytical Techn', 1873376, 0.729, 'Q2', 149, 354, 12622, 4732, 1525, '16', '2002-2020', 'Analytical Chemistry (Q2); Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Cell Biology (Q3)'), (6630, 'Journal of Genetic Engineering and Biotechnol', 20905920, 0.729, 'Q2', 25, 81, 4193, 755, 172, '32', '2011-2020', 'Biotechnology (Q2); Genetics (Q3)'), (6631, 'Journal of Ocean Engineering and Marine Energ', 21986452, 0.729, 'Q1', 19, 27, 1220, 203, 80, '19', '2015-2020', 'Ocean Engineering (Q1); Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2); Water Science and Technology (Q2)'), (6632, 'Journal of Small Business and Enterprise Deve', 14626004, 0.729, 'Q1', 67, 56, 4520, 598, 156, '3', '1994-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q2)'), (6633, 'Prosthetics and Orthotics International', 17461553, 0.729, 'Q1', 52, 74, 2378, 453, 228, '2', '1977-2020', 'Rehabilitation (Q1); Health Professions (miscellaneous) (Q2)'), (6634, 'Scandinavian Journal of Forest Research', 16511891, 0.729, 'Q1', 62, 57, 3042, 504, 236, '20', '1986-1991, 1993-2020', 'Forestry (Q1)'), (6635, 'Total Quality Management and Business Excelle', 14783363, 0.729, 'Q1', 80, 156, 10428, 1243, 314, '3', '2003-2020', 'Business, Management and Accounting (miscellaneous) (Q1)'), (6636, 'Veterinary Research Communications', 15737446, 0.729, 'Q1', 54, 17, 757, 231, 96, '16', '1977-2020', 'Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (6637, 'ACM Transactions on Knowledge Discovery from ', 15564681, 0.728, 'Q1', 59, 71, 3729, 816, 168, '2', '2007-2020', 'Computer Science (miscellaneous) (Q1)'), (6638, 'Crop and Pasture Science', 18365795, 0.728, 'Q1', 89, 98, 5771, 765, 337, '11', '2009-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q2)'), (6639, 'Egyptian Informatics Journal', 11108665, 0.728, 'Q1', 34, 47, 1655, 415, 59, '32', '2010-2020', 'Information Systems (Q1); Computer Science Applications (Q2); Management Science and Operations Research (Q2)'), (6640, 'Eure', 7176236, 0.728, 'Q1', 27, 40, 1676, 140, 116, '45', '1979, 1982, 1996-1998, 2001-2020', 'Urban Studies (Q1)'), (6641, 'International Journal of Retail and Distribut', 9590552, 0.728, 'Q1', 78, 88, 6422, 876, 215, '3', '1990-2020', 'Business and International Management (Q1); Marketing (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (6642, 'Journal of Family Nursing', 10748407, 0.728, 'Q1', 43, 36, 1536, 218, 80, '2', '1995-2020', 'Community and Home Care (Q1); Family Practice (Q1)'), (6643, 'Journal of King Saud University, Engineering ', 10183639, 0.728, 'Q1', 34, 143, 4673, 784, 149, '29', '1989-2020', 'Computer Networks and Communications (Q1); Fluid Flow and Transfer Processes (Q1); Industrial and Manufacturing Engineering (Q1); Fuel Technology (Q2); Materials Science (miscellaneous) (Q2); Renewabl'), (6644, 'Journal of Reproduction and Development', 9168818, 0.728, 'Q1', 52, 76, 2699, 491, 219, '6', '1992-2020', 'Animal Science and Zoology (Q1)'), (6645, 'Metrika', 1435926, 0.728, 'Q2', 40, 64, 1740, 178, 130, '5', '1958-2020', 'Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (6646, 'Ophthalmic Epidemiology', 9286586, 0.728, 'Q2', 63, 95, 3193, 322, 193, '3', '1994-2020', 'Ophthalmology (Q2); Epidemiology (Q3)'), (6647, 'Sustainable Chemistry and Pharmacy', 23525541, 0.728, 'Q2', 19, 145, 7946, 722, 151, '16', '2015-2020', 'Environmental Chemistry (Q2); Management, Monitoring, Policy and Law (Q2); Pharmaceutical Science (Q2); Pollution (Q2)'), (6648, 'WHO South-East Asia journal of public health', 23045272, 0.728, 'Q2', 9, 24, 0, 138, 58, '4', '2016-2020', 'Medicine (miscellaneous) (Q2)'), (6649, 'Drying Technology', 15322300, 0.727, 'Q1', 86, 352, 15660, 2109, 528, '2', '1983, 1985-2020', 'Chemical Engineering (miscellaneous) (Q1); Physical and Theoretical Chemistry (Q2)'), (6650, 'Education Policy Analysis Archives', 10682341, 0.727, 'Q2', 46, 185, 10144, 513, 442, '2', '1996-2020', 'Education (Q2)'), (6651, 'HIV Research and Clinical Practice', 25787470, 0.727, 'Q2', 51, 19, 605, 123, 71, '3', '2019-2020', 'Infectious Diseases (Q2); Pharmacology (medical) (Q2)'), (6652, 'Infectious Diseases', 23744235, 0.727, 'Q2', 72, 143, 3642, 690, 252, '3', '2015-2020', 'Immunology and Microbiology (miscellaneous) (Q2); Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Microbiology (medical) (Q2)'), (6653, 'Journal of Commodity Markets', 24058513, 0.727, 'Q2', 14, 26, 1198, 214, 68, '16', '2016-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (6654, 'Journal of Current Ophthalmology', 24522325, 0.727, 'Q2', 19, 76, 1995, 412, 196, '15', '2015-2020', 'Ophthalmology (Q2)'), (6655, 'Journal of Hyperbolic Differential Equations', 2198916, 0.727, 'Q2', 28, 28, 667, 110, 72, '37', '2006-2020', 'Analysis (Q2); Mathematics (miscellaneous) (Q2)'), (6656, 'Journal of Ocular Pharmacology and Therapeuti', 15577732, 0.727, 'Q2', 61, 98, 3626, 583, 254, '2', '1992, 1995-2020', 'Ophthalmology (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (6657, 'Molecular Medicine Reports', 17913004, 0.727, 'Q3', 56, 865, 38453, 13047, 4777, '39', '2008-2020', 'Biochemistry (Q3); Cancer Research (Q3); Genetics (Q3); Molecular Biology (Q3); Molecular Medicine (Q3); Oncology (Q3)'), (6658, 'Nagoya Mathematical Journal', 21526842, 0.727, 'Q2', 35, 36, 1008, 89, 77, '3', '1950-2020', 'Mathematics (miscellaneous) (Q2)'), (6659, 'Redox Report', 17432928, 0.727, 'Q2', 66, 14, 713, 347, 103, '3', '1996-1997, 1999-2020', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Biochemistry (Q3); Cell Biology (Q3); Physiology (Q3)'), (6660, 'Theory into Practice', 405841, 0.727, 'Q2', 61, 46, 1366, 231, 119, '2', '1962-2020', 'Education (Q2)'), (6661, 'Tourism Planning and Development', 21568324, 0.727, 'Q1', 31, 67, 4297, 451, 109, '3', '2011-2020', 'Business and International Management (Q1); Development (Q1); Tourism, Leisure and Hospitality Management (Q2)'), (6662, 'African Studies Review', 20206, 0.726, 'Q1', 44, 60, 2985, 121, 99, '3', '1962-1963, 1965-1980, 1982, 1984-2020', 'Anthropology (Q1); Cultural Studies (Q1)'), (6663, 'Applied Animal Behaviour Science', 1681591, 0.726, 'Q1', 110, 158, 7742, 1316, 513, '16', '1984-2020', 'Animal Science and Zoology (Q1); Food Animals (Q2)'), (6664, 'Columbia Law Review', 101958, 0.726, 'Q1', 66, 51, 0, 217, 140, '2', '1973-1981, 1984, 1987-1988, 1990, 1992-2020', 'Law (Q1)'), (6665, 'International Journal of Cardiovascular Imagi', 15695794, 0.726, 'Q2', 58, 272, 7793, 1418, 677, '16', '1988, 1994, 1996, 1998, 2000-2020', 'Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6666, 'International Journal of Spine Surgery', 22114599, 0.726, 'Q2', 26, 158, 5060, 366, 204, '2', '2012-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (6667, 'Journal of Further and Higher Education', 14699486, 0.726, 'Q2', 41, 149, 7703, 540, 247, '2', '1977-2020', 'Education (Q2)'), (6668, 'Malaria Research and Treatment', 20908075, 0.726, 'Q2', 15, 0, 0, 63, 31, '32', '2012-2019', 'Infectious Diseases (Q2); Epidemiology (Q3)'), (6669, 'Quanta', 13147374, 0.726, 'Q1', 11, 5, 93, 74, 22, '61', '2012-2020', 'History and Philosophy of Science (Q1); Atomic and Molecular Physics, and Optics (Q2); Mathematical Physics (Q2)'), (6670, 'Regenerative Therapy', 23523204, 0.726, 'Q2', 14, 91, 3728, 364, 116, '6', '2015-2020', 'Biomaterials (Q2); Biomedical Engineering (Q2); Developmental Biology (Q3)'), (6671, 'Spatial and Spatio-temporal Epidemiology', 18775845, 0.726, 'Q1', 26, 40, 1567, 169, 88, '3', '2009-2020', 'Geography, Planning and Development (Q1); Health, Toxicology and Mutagenesis (Q2); Infectious Diseases (Q2); Epidemiology (Q3)'), (6672, 'American Journal of Emergency Medicine', 15328171, 0.725, 'Q1', 86, 1085, 22588, 3229, 1489, '3', '1983-2020', 'Emergency Medicine (Q1); Medicine (miscellaneous) (Q2)'), (6673, 'Canadian Journal of Mathematics', 8414, 0.725, 'Q2', 44, 53, 1659, 255, 140, '9', '1994, 1996-2020', 'Mathematics (miscellaneous) (Q2)'), (6674, 'Clinics and Research in Hepatology and Gastro', 2210741, 0.725, 'Q3', 57, 261, 6849, 679, 297, '8', '2011-2020', 'Gastroenterology (Q3); Hepatology (Q3)'), (6675, 'Egyptian Journal of Aquatic Research', 16874285, 0.725, 'Q1', 29, 71, 2508, 599, 145, '32', '2012-2020', 'Aquatic Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Oceanography (Q2); Water Science and Technology (Q2)'), (6676, 'Fisheries', 3632415, 0.725, 'Q1', 79, 100, 2847, 342, 211, '2', '1976-2020', 'Aquatic Science (Q1); Nature and Landscape Conservation (Q2)'), (6677, 'Geoenvironmental Disasters', 21978670, 0.725, 'Q1', 15, 34, 1865, 209, 63, '3', '2014-2020', 'Environmental Science (miscellaneous) (Q1); Geography, Planning and Development (Q1); Safety, Risk, Reliability and Quality (Q1); Geotechnical Engineering and Engineering Geology (Q2); Management, Mon'), (6678, 'IEEE Photonics Journal', 19430647, 0.725, 'Q1', 73, 389, 11671, 4920, 1794, '2', '2009-2020', 'Electrical and Electronic Engineering (Q1); Atomic and Molecular Physics, and Optics (Q2)'), (6679, 'International Journal of Sustainability in Hi', 14676370, 0.725, 'Q2', 59, 108, 5934, 776, 218, '3', '2000-2020', 'Education (Q2); Human Factors and Ergonomics (Q2)'), (6680, 'Journal of Intellectual and Developmental Dis', 13668250, 0.725, 'Q1', 56, 64, 2404, 269, 141, '3', '1970-2013, 2017-2020', 'Arts and Humanities (miscellaneous) (Q1); Education (Q2); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (6681, 'Journal of Petroleum Geology', 17475457, 0.725, 'Q1', 42, 23, 1322, 148, 61, '2', '1978-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geology (Q1); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2)'), (6682, 'Journal of Physics B: Atomic, Molecular and O', 9534075, 0.725, 'Q2', 121, 410, 20325, 2455, 1049, '3', '1988-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2)'), (6683, 'Journal of Plant Biology', 12269239, 0.725, 'Q2', 38, 46, 2602, 333, 147, '2', '1999, 2004-2020', 'Plant Science (Q2)'), (6684, 'Nutrition in Clinical Practice', 19412452, 0.725, 'Q2', 71, 175, 6798, 1033, 316, '2', '1986-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2)'), (6685, 'Transactions of the Royal Society of Tropical', 18783503, 0.725, 'Q2', 105, 136, 4132, 545, 285, '3', '1907-2020', 'Infectious Diseases (Q2); Medicine (miscellaneous) (Q2); Parasitology (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6686, 'Weed Technology', 890037, 0.725, 'Q1', 67, 126, 4538, 609, 326, '2', '1993-2001, 2003-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q2)'), (6687, 'Current Treatment Options in Cardiovascular M', 15343189, 0.724, 'Q2', 29, 76, 5559, 575, 293, '2', '1999, 2002, 2004-2020', 'Cardiology and Cardiovascular Medicine (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (6688, 'European Journal of Social Work', 13691457, 0.724, 'Q1', 25, 124, 5506, 383, 237, '3', '2008-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Social Work (Q2)'), (6689, 'Infection and Chemotherapy', 20932340, 0.724, 'Q2', 26, 72, 2201, 255, 130, '13', '2011-2020', 'Pharmacology (medical) (Q2); Infectious Diseases (Q3)'), (6690, 'Infection, Disease and Health', 24680451, 0.724, 'Q1', 14, 58, 1446, 195, 73, '11', '2016-2020', 'Nursing (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2); Infectious Diseases (Q3)'), (6691, 'Information Technology and Tourism', 10983058, 0.724, 'Q1', 18, 33, 2142, 259, 68, '2', '2014-2020', 'Information Systems (Q1); Computer Science Applications (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (6692, 'International Journal of Immunopathology and ', 3946320, 0.724, 'Q2', 53, 70, 2479, 584, 120, '7', '1989-2020', 'Pharmacology (Q2); Immunology (Q3); Immunology and Allergy (Q3)'), (6693, 'International Journal of Pharmaceutics: X', 25901567, 0.724, 'Q2', 6, 21, 867, 130, 36, '16', '2019-2020', 'Pharmaceutical Science (Q2)'), (6694, 'Journal of Alternative Investments', 15203255, 0.724, 'Q2', 17, 50, 743, 117, 82, '2', '2007-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (6695, 'Journal of Electroceramics', 15738663, 0.724, 'Q1', 72, 36, 1499, 341, 133, '16', '1997-2020', 'Electrical and Electronic Engineering (Q1); Materials Chemistry (Q1); Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Mechanics of Materia'), (6696, 'Journal of Physiological Anthropology', 18806791, 0.724, 'Q1', 50, 39, 1676, 218, 86, '3', '2006-2020', 'Anthropology (Q1); Human Factors and Ergonomics (Q2); Orthopedics and Sports Medicine (Q2); Public Health, Environmental and Occupational Health (Q2); Physiology (Q3); Physiology (medical) (Q3)'), (6697, 'Optimization Letters', 18624472, 0.724, 'Q1', 42, 217, 5688, 831, 405, '5', '2007-2020', 'Control and Optimization (Q1)'), (6698, 'Physics and Chemistry of the Earth', 14747065, 0.724, 'Q2', 82, 111, 5038, 923, 293, '3', '1982, 1991-1992, 1995, 2002-2020', 'Geochemistry and Petrology (Q2); Geophysics (Q2)'), (6699, 'Radiologic Clinics of North America', 338389, 0.724, 'Q2', 82, 94, 4294, 534, 220, '3', '1963-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6700, 'Review of African Political Economy', 3056244, 0.724, 'Q1', 47, 49, 2562, 174, 93, '3', '1974-2020', 'Development (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (6701, 'Transgenic Research', 15739368, 0.724, 'Q1', 83, 45, 1861, 468, 185, '19', '1991-2020', 'Agronomy and Crop Science (Q1); Animal Science and Zoology (Q1); Biotechnology (Q2); Genetics (Q3)'), (6702, 'BioSocieties', 17458560, 0.723, 'Q2', 28, 45, 3196, 199, 82, '3', '2006-2020', 'Health Policy (Q2); Health (social science) (Q2)'), (6703, 'Cardiovascular Toxicology', 15307905, 0.723, 'Q2', 52, 60, 2591, 511, 175, '2', '2001-2020', 'Cardiology and Cardiovascular Medicine (Q2); Toxicology (Q2); Molecular Biology (Q3)'), (6704, 'Frontiers in Materials', 22968016, 0.723, 'Q2', 24, 426, 21236, 1586, 454, '19', '2014-2020', 'Materials Science (miscellaneous) (Q2)'), (6705, 'Fundamenta Mathematicae', 17306329, 0.723, 'Q2', 38, 56, 1079, 194, 167, '17', '1989-1991, 1996-2020', 'Algebra and Number Theory (Q2)'), (6706, 'Journal of Atmospheric Chemistry', 15730662, 0.723, 'Q2', 70, 11, 562, 156, 67, '16', '1983-2020', 'Atmospheric Science (Q2); Environmental Chemistry (Q2)'), (6707, 'Magnetic Resonance Imaging', 18735894, 0.723, 'Q2', 111, 211, 8197, 1720, 682, '2', '1982, 1984-2020', 'Biomedical Engineering (Q2); Biophysics (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6708, 'Marine Mammal Science', 17487692, 0.723, 'Q2', 78, 119, 6836, 445, 186, '2', '1985-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (6709, 'Mathematical Notes', 14346, 0.723, 'Q2', 26, 218, 3287, 512, 625, '10', '1909-1916, 1924-1925, 1929-1930, 1932-1933, 1935, 1937, 1992-2020', 'Mathematics (miscellaneous) (Q2)'), (6710, 'Mutagenesis', 2678357, 0.723, 'Q2', 91, 47, 2973, 484, 138, '3', '1986-2020', 'Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2); Genetics (Q3); Genetics (clinical) (Q3)'), (6711, 'Statistical Inference for Stochastic Processe', 13870874, 0.723, 'Q2', 20, 25, 789, 115, 64, '16', '2005-2020', 'Statistics and Probability (Q2)'), (6712, 'Subterranean Biology', 17681448, 0.723, 'Q1', 12, 22, 906, 103, 58, '61', '2011, 2013-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2); Soil Science (Q2)'), (6713, 'Transactions of the American Ophthalmological', 15456110, 0.723, 'Q2', 61, 0, 0, 28, 13, '2', '1946, 1949, 1951-1958, 1960-1962, 1964-2018', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q2)'), (6714, 'Veterinary Clinics of North America - Small A', 1955616, 0.723, 'Q1', 71, 98, 4352, 518, 242, '3', '1978-2020', 'Small Animals (Q1)'), (6715, 'Annals of Regional Science', 5701864, 0.722, 'Q1', 62, 78, 4292, 383, 162, '5', '1967-2020', 'Environmental Science (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (6716, 'Culture, Medicine and Psychiatry', 1573076, 0.722, 'Q1', 56, 42, 2465, 215, 101, '2', '1977-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1); Health (social science) (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (6717, 'Hand', 15589447, 0.722, 'Q2', 35, 301, 6870, 588, 428, '2', '1981, 2007-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (6718, 'International Journal of General Medicine', 11787074, 0.722, 'Q2', 36, 194, 6690, 441, 169, '41', '2009-2020', 'Medicine (miscellaneous) (Q2)'), (6719, 'Journal of Heat Transfer', 15288943, 0.722, 'Q1', 126, 143, 5234, 1276, 602, '2', '1945, 1960-2020', 'Mechanical Engineering (Q1); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (6720, 'Journal of Pediatric Urology', 14775131, 0.722, 'Q2', 46, 379, 7097, 1261, 694, '16', '2005-2020', 'Pediatrics, Perinatology and Child Health (Q2); Urology (Q2)'), (6721, 'Neuropsychological Rehabilitation', 14640694, 0.722, 'Q1', 74, 189, 11072, 624, 229, '3', '1991-2020', 'Arts and Humanities (miscellaneous) (Q1); Rehabilitation (Q1); Applied Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Psychology (miscellaneous) (Q2)'), (6722, 'Trauma Surgery and Acute Care Open', 23975776, 0.722, 'Q2', 14, 104, 2336, 464, 196, '3', '2016-2020', 'Critical Care and Intensive Care Medicine (Q2); Surgery (Q2)'), (6723, 'Zebrafish', 15458547, 0.722, 'Q1', 46, 45, 2389, 503, 214, '2', '2005-2020', 'Animal Science and Zoology (Q1); Developmental Biology (Q3)'), (6724, 'Beilstein Journal of Nanotechnology', 21904286, 0.721, 'Q1', 60, 149, 8369, 2646, 779, '5', '2010-2020', 'Electrical and Electronic Engineering (Q1); Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (6725, 'Bioorganic and Medicinal Chemistry', 14643391, 0.721, 'Q2', 161, 423, 19482, 5844, 1743, '3', '1993-2020', 'Clinical Biochemistry (Q2); Drug Discovery (Q2); Organic Chemistry (Q2); Pharmaceutical Science (Q2); Biochemistry (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)'), (6726, 'Ethnicities', 14687968, 0.721, 'Q1', 46, 82, 4203, 229, 137, '3', '2001-2020', 'Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)'), (6727, 'Geological Journal', 721050, 0.721, 'Q1', 54, 483, 42287, 1402, 584, '3', '1951-1954, 1956-1957, 1961-2020', 'Geology (Q1)'), (6728, 'Journal of Bone and Mineral Metabolism', 9148779, 0.721, 'Q2', 74, 121, 4152, 644, 275, '6', '1988-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Endocrinology (Q3)'), (6729, 'Journal of Molecular Signaling', 17502187, 0.721, 'Q3', 31, 1, 32, 12, 4, '3', '2006-2018, 2020', 'Biochemistry (Q3); Cell Biology (Q3); Molecular Biology (Q3)'), (6730, 'Journal of Public Transportation', 1077291, 0.721, 'Q1', 25, 4, 130, 78, 30, '2', '2007, 2009, 2011-2018, 2020', 'Geography, Planning and Development (Q1); Urban Studies (Q1); Transportation (Q2)'), (6731, 'Journal of Transformative Education', 15527840, 0.721, 'Q2', 29, 21, 744, 110, 55, '2', '2003-2020', 'Education (Q2)'), (6732, 'Lasers in Medical Science', 1435604, 0.721, 'Q2', 71, 311, 10639, 2048, 693, '3', '1986-2020', 'Dermatology (Q2); Surgery (Q2)'), (6733, 'Transactions in GIS', 13611682, 0.721, 'Q1', 63, 108, 5428, 679, 227, '3', '1996-1997, 1999-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (6734, 'Translational Andrology and Urology', 22234691, 0.721, 'Q2', 27, 375, 12596, 1358, 479, '1', '2012-2020', 'Reproductive Medicine (Q2); Urology (Q2)'), (6735, 'Contemporary Drug Problems', 914509, 0.72, 'Q1', 14, 19, 1316, 152, 65, '2', '1973-1981, 1994, 2014-2020', 'Law (Q1); Health Policy (Q2); Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6736, 'Contributions to Zoology', 13834517, 0.72, 'Q1', 35, 18, 1232, 80, 39, '16', '1994-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (6737, 'Ecotoxicology', 9639292, 0.72, 'Q2', 90, 187, 11596, 1046, 371, '16', '1992-2020', 'Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Medicine (miscellaneous) (Q2); Toxicology (Q2)'), (6738, 'Education and Treatment of Children', 7488491, 0.72, 'Q2', 43, 31, 1318, 112, 76, '2', '2005-2020', 'Developmental and Educational Psychology (Q2); Education (Q2)'), (6739, 'English Today', 2660784, 0.72, 'Q1', 29, 57, 1470, 134, 102, '3', '1985-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6740, 'Journal of Educational and Psychological Cons', 10474412, 0.72, 'Q2', 33, 38, 1943, 116, 62, '2', '1990-2005, 2007-2020', 'Developmental and Educational Psychology (Q2); Psychology (miscellaneous) (Q2)'), (6741, 'Journal of Great Lakes Research', 3801330, 0.72, 'Q2', 78, 204, 13425, 924, 375, '2', '1970, 1975-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (6742, 'Journal of Separation Science', 16159314, 0.72, 'Q2', 102, 422, 16891, 4140, 1325, '5', '2000-2020', 'Analytical Chemistry (Q2); Filtration and Separation (Q2)'), (6743, 'Multidisciplinary Respiratory Medicine', 1828695, 0.72, 'Q2', 28, 37, 1598, 304, 110, '3', '2008-2019', 'Pulmonary and Respiratory Medicine (Q2)'), (6744, 'Obesity Research and Clinical Practice', 1871403, 0.72, 'Q2', 33, 86, 3057, 574, 224, '16', '2007-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Nutrition and Dietetics (Q2)'), (6745, 'Prehospital and Disaster Medicine', 1049023, 0.72, 'Q1', 49, 127, 2963, 587, 295, '3', '1985-1987, 1989-2020', 'Emergency Medicine (Q1); Emergency Nursing (Q1)'), (6746, 'Protein Journal', 15723887, 0.72, 'Q2', 52, 72, 3149, 341, 168, '2', '1996-2020', 'Analytical Chemistry (Q2); Bioengineering (Q2); Organic Chemistry (Q2); Biochemistry (Q3)'), (6747, 'Applied Cognitive Psychology', 10990720, 0.719, 'Q1', 100, 135, 6734, 520, 259, '3', '1987-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Experimental and Cognitive Psychology (Q2)'), (6748, 'Chinese Journal of Aeronautics', 10009361, 0.719, 'Q1', 50, 392, 15240, 2084, 604, '1', '1990-1991, 1996-2020', 'Aerospace Engineering (Q1); Mechanical Engineering (Q1)'), (6749, 'International Journal of Architectural Herita', 15583066, 0.719, 'Q1', 33, 167, 7043, 729, 297, '2', '2007-2020', 'Architecture (Q1); Conservation (Q1); Visual Arts and Performing Arts (Q1)'), (6750, 'Journal of Chemical &amp; Engineering Data', 219568, 0.719, 'Q1', 132, 574, 25306, 4243, 1626, '2', '1956-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2)'), (6751, 'Journal of Internet Commerce', 1533287, 0.719, 'Q2', 25, 20, 1938, 206, 55, '2', '2002-2020', 'Human-Computer Interaction (Q2); Management of Technology and Innovation (Q2)'), (6752, 'Journal of Sea Research', 13851101, 0.719, 'Q2', 78, 64, 4195, 627, 302, '16', '1996-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Oceanography (Q2)'), (6753, 'Mathematical Methods in the Applied Sciences', 10991476, 0.719, 'Q1', 65, 908, 30388, 4079, 1719, '3', '1979-2020', 'Engineering (miscellaneous) (Q1); Mathematics (miscellaneous) (Q2)'), (6754, 'Minerva', 264695, 0.719, 'Q1', 40, 30, 1841, 154, 70, '16', '1962-2020', 'Social Sciences (miscellaneous) (Q1); Education (Q2)'), (6755, 'Monatshefte fur Mathematik', 14365081, 0.719, 'Q2', 37, 136, 3162, 452, 360, '28', '1890-1918, 1920-1923, 1926, 1928-1937, 1939, 1941, 1948-2020', 'Mathematics (miscellaneous) (Q2)'), (6756, 'Research in Veterinary Science', 15322661, 0.719, 'Q1', 72, 267, 11774, 1687, 697, '16', '1965-2020', 'Veterinary (miscellaneous) (Q1)'), (6757, 'South Atlantic Quarterly', 382876, 0.719, 'Q1', 40, 62, 1529, 216, 169, '2', '1973, 1981, 1984, 1987, 1999, 2001-2020', 'Cultural Studies (Q1); Literature and Literary Theory (Q1); Sociology and Political Science (Q1)'), (6758, 'Tellus, Series B: Chemical and Physical Meteo', 2806509, 0.719, 'Q2', 103, 21, 1364, 144, 59, '3', '1983-2020', 'Atmospheric Science (Q2)'), (6759, 'Therapeutics and Clinical Risk Management', 11766336, 0.719, 'Q1', 55, 127, 5947, 1443, 600, '41', '2006-2020', 'Chemical Health and Safety (Q1); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Safety Research (Q1); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)'), (6760, 'Tissue Engineering and Regenerative Medicine', 17382696, 0.719, 'Q2', 23, 73, 3931, 684, 201, '2', '2008-2020', 'Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)'), (6761, 'Current Protocols in Cytometry', 19349297, 0.718, 'Q1', 26, 14, 410, 101, 46, '2', '2001-2020', 'Medical Laboratory Technology (Q1); Histology (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3)'), (6762, 'Electrocatalysis', 18682529, 0.718, 'Q2', 35, 54, 2494, 543, 216, '2', '2010-2021', 'Electrochemistry (Q2)'), (6763, 'FEBS Open Bio', 22115463, 0.718, 'Q2', 31, 247, 9485, 1230, 538, '2', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (6764, 'Journal of Entrepreneurship', 9730745, 0.718, 'Q1', 18, 14, 1195, 124, 34, '4', '1996-1999, 2009-2020', 'Business and International Management (Q1); Economics and Econometrics (Q2); Strategy and Management (Q2)'), (6765, 'Journal of Plant Ecology', 17529921, 0.718, 'Q2', 38, 87, 4874, 484, 252, '3', '2009-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (6766, 'Learning Organization', 9696474, 0.718, 'Q2', 56, 55, 2756, 432, 122, '3', '1994-2020', 'Education (Q2); Organizational Behavior and Human Resource Management (Q2)'), (6767, 'Psychoanalytic Dialogues', 19409222, 0.718, 'Q2', 50, 97, 1501, 106, 233, '3', '1991-2020', 'Clinical Psychology (Q2)'), (6768, 'Tropical Conservation Science', 19400829, 0.718, 'Q2', 28, 53, 2990, 465, 221, '2', '2010-2020', 'Ecology (Q2); Nature and Landscape Conservation (Q2)'), (6769, 'Water (Switzerland)', 20734441, 0.718, 'Q1', 55, 3576, 203844, 17840, 5387, '19', '2009-2020', 'Geography, Planning and Development (Q1); Aquatic Science (Q2); Water Science and Technology (Q2); Biochemistry (Q3)'), (6770, 'Current Molecular Pharmacology', 18744702, 0.717, 'Q2', 39, 32, 2336, 243, 82, '52', '2008-2020', 'Drug Discovery (Q2); Pharmacology (Q2); Molecular Medicine (Q3)'), (6771, 'Information Technology and People', 9593845, 0.717, 'Q1', 60, 92, 8060, 772, 215, '3', '1990, 1992, 1994-2020', 'Information Systems (Q1); Library and Information Sciences (Q1); Computer Science Applications (Q2)'), (6772, 'Journal of Librarianship and Information Scie', 9610006, 0.717, 'Q1', 30, 126, 6774, 322, 139, '3', '1969-2020', 'Library and Information Sciences (Q1)'), (6773, 'Journal of Psychosomatic Obstetrics and Gynae', 167482, 0.717, 'Q2', 65, 94, 3314, 350, 107, '3', '1982-2020', 'Clinical Psychology (Q2); Obstetrics and Gynecology (Q2); Psychiatry and Mental Health (Q2); Reproductive Medicine (Q2)'), (6774, 'Journal of Survey Statistics and Methodology', 23250992, 0.717, 'Q1', 15, 43, 1650, 118, 66, '2', '2013-2020', 'Social Sciences (miscellaneous) (Q1); Applied Mathematics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (6775, 'Operations Research for Health Care', 22116923, 0.717, 'Q2', 23, 17, 842, 270, 85, '3', '2016-2020', 'Health Professions (miscellaneous) (Q2); Management Science and Operations Research (Q2); Medicine (miscellaneous) (Q2); Oral Surgery (Q2); Otorhinolaryngology (Q2); Surgery (Q2)'), (6776, 'Parasitology International', 13835769, 0.717, 'Q3', 61, 160, 5586, 870, 397, '42', '1997-2021', 'Infectious Diseases (Q3); Parasitology (Q3)'), (6777, 'Revue Neurologique', 353787, 0.717, 'Q2', 46, 176, 6074, 602, 246, '8', '1946-1947, 1950-1961, 1963-2020', 'Neurology (clinical) (Q2); Neurology (Q3)'), (6778, 'Archaeometry', 3813, 0.716, 'Q1', 67, 120, 5719, 409, 246, '3', '1958-1967, 1969-2020', 'Archeology (Q1); History (Q1)'), (6779, 'Cancer Biotherapy and Radiopharmaceuticals', 10849785, 0.716, 'Q2', 59, 91, 3294, 533, 187, '2', '1996-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Cancer Research (Q3); Oncology (Q3)'), (6780, 'Diabetes Spectrum', 10409165, 0.716, 'Q2', 31, 6, 138, 248, 122, '2', '2005-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2)'), (6781, 'Environmental Geotechnics', 2051803, 0.716, 'Q2', 16, 9, 257, 148, 113, '3', '2014-2020', 'Environmental Chemistry (Q2); Environmental Engineering (Q2); Geochemistry and Petrology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Management, Monitoring, Policy and Law (Q2); Natur'), (6782, 'European Journal of Emergency Medicine', 14735695, 0.716, 'Q1', 45, 163, 2190, 447, 205, '2', '1994-2020', 'Emergency Medicine (Q1)'), (6783, 'Food Science of Animal Resources', 26360780, 0.716, 'Q1', 23, 86, 3415, 803, 293, '13', '2019-2020', 'Animal Science and Zoology (Q1); Food Science (Q2)'), (6784, 'Grass and Forage Science', 13652494, 0.716, 'Q1', 56, 45, 2380, 570, 224, '3', '1946-2020', 'Agronomy and Crop Science (Q1); Management, Monitoring, Policy and Law (Q2)'), (6785, 'Health Services and Outcomes Research Methodo', 13873741, 0.716, 'Q2', 28, 21, 653, 80, 44, '16', '2000-2004, 2006-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6786, 'International Ophthalmology', 15732630, 0.716, 'Q2', 45, 388, 11699, 1483, 884, '16', '1978-1999, 2001, 2004-2005, 2007-2020', 'Ophthalmology (Q2)'), (6787, 'Journal of Education for Library and Informat', 7485786, 0.716, 'Q1', 6, 23, 548, 64, 58, '9', '2017-2020', 'Library and Information Sciences (Q1); Education (Q2)'), (6788, 'Journal of Health Psychology', 14617277, 0.716, 'Q2', 88, 370, 17561, 1535, 620, '3', '1996-2020', 'Applied Psychology (Q2)'), (6789, 'Parasitology Research', 14321955, 0.716, 'Q1', 94, 428, 20139, 2593, 1196, '5', '1987-2020', 'Veterinary (miscellaneous) (Q1); Insect Science (Q2); Medicine (miscellaneous) (Q2); Infectious Diseases (Q3); Parasitology (Q3)'), (6790, 'Pure and Applied Geophysics', 334553, 0.716, 'Q2', 87, 363, 16761, 1742, 815, '19', '1964-2020', 'Geochemistry and Petrology (Q2); Geophysics (Q2)'), (6791, 'Spine Deformity', 22121358, 0.716, 'Q2', 23, 177, 4761, 552, 476, '16', '2012-2020', 'Orthopedics and Sports Medicine (Q2)'), (6792, 'Water Science and Engineering', 16742370, 0.716, 'Q1', 25, 33, 1366, 349, 117, '1', '2010-2020', 'Civil and Structural Engineering (Q1); Ocean Engineering (Q1)'), (6793, 'Analysis and Applications', 17936861, 0.715, 'Q2', 24, 46, 1770, 227, 98, '37', '2010-2020', 'Analysis (Q2); Applied Mathematics (Q2)'), (6794, 'Archives of Animal Nutrition', 14772817, 0.715, 'Q1', 49, 31, 1457, 233, 102, '3', '1980, 1988-1989, 2003-2020', 'Animal Science and Zoology (Q1); Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (6795, 'Celestial Mechanics and Dynamical Astronomy', 15729478, 0.715, 'Q2', 58, 55, 1926, 520, 212, '16', '1989-2020', 'Applied Mathematics (Q2); Astronomy and Astrophysics (Q2); Computational Mathematics (Q2); Mathematical Physics (Q2); Modeling and Simulation (Q2); Space and Planetary Science (Q2)'), (6796, 'Collectanea Mathematica', 100757, 0.715, 'Q2', 21, 47, 1318, 111, 79, '7', '2006-2020', 'Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)'), (6797, 'European Educational Research Journal', 14749041, 0.715, 'Q2', 34, 57, 3249, 288, 142, '3', '2003, 2005, 2007-2020', 'Education (Q2)'), (6798, 'IACR Transactions on Symmetric Cryptology', 2519173, 0.715, 'Q1', 10, 54, 2062, 244, 83, '5', '2018-2020', 'Software (Q1); Applied Mathematics (Q2); Computational Mathematics (Q2); Computer Science Applications (Q2)'), (6799, 'Journal of Forensic Sciences', 221198, 0.715, 'Q2', 96, 314, 9317, 1496, 747, '2', '1961, 1963-2020', 'Pathology and Forensic Medicine (Q2); Genetics (Q3)'), (6800, 'Journal of Thermal Biology', 18790992, 0.715, 'Q1', 66, 261, 14167, 1822, 611, '3', '1975-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry (Q3); Developmental Biology (Q3); Physiology (Q3)'), (6801, 'Korean Journal of Orthodontics', 2005372, 0.715, 'Q1', 21, 44, 1032, 209, 127, '13', '2008-2020', 'Orthodontics (Q1)'), (6802, 'Petrology', 15562085, 0.715, 'Q2', 38, 31, 1973, 127, 100, '10', '1996-2020', 'Geochemistry and Petrology (Q2)'), (6803, 'Primates', 328332, 0.715, 'Q1', 54, 84, 4028, 321, 161, '6', '1957-1961, 1963-2020', 'Animal Science and Zoology (Q1)'), (6804, 'Statistics in Biopharmaceutical Research', 19466315, 0.715, 'Q2', 16, 116, 3174, 162, 117, '3', '2011-2020', 'Pharmaceutical Science (Q2); Statistics and Probability (Q2)'), (6805, 'Auris Nasus Larynx', 18791476, 0.714, 'Q2', 48, 242, 6004, 918, 481, '42', '1974-2020', 'Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Surgery (Q2)'), (6806, 'Contrast Media and Molecular Imaging', 15554309, 0.714, 'Q2', 50, 36, 1607, 735, 259, '32', '2006-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6807, 'IEEE Transactions on Cognitive and Developmen', 23798920, 0.714, 'Q1', 41, 129, 3440, 783, 180, '2', '2016-2020', 'Software (Q1); Artificial Intelligence (Q2)'), (6808, 'Journal of Photochemistry and Photobiology A:', 18732666, 0.714, 'Q1', 158, 618, 31770, 6945, 1711, '16', '1987-2021', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (6809, 'Journal of Toxicology and Environmental Healt', 10872620, 0.714, 'Q2', 89, 59, 3459, 823, 321, '3', '1996-2020', 'Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)'), (6810, 'Language and Intercultural Communication', 14708477, 0.714, 'Q1', 31, 53, 2282, 184, 101, '3', '2001-2020', 'Communication (Q1); Linguistics and Language (Q1)'), (6811, 'Peace and Conflict', 10781919, 0.714, 'Q1', 34, 49, 827, 234, 159, '2', '2002-2020', 'Political Science and International Relations (Q1)'), (6812, 'SLAS Technology', 24726311, 0.714, 'Q1', 16, 73, 2612, 518, 183, '2', '2017-2020', 'Medical Laboratory Technology (Q1); Computer Science Applications (Q2)'), (6813, 'South American Journal of Herpetology', 1982355, 0.714, 'Q1', 10, 33, 2249, 135, 74, '14', '2014-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (6814, 'Drones', 2504446, 0.713, 'Q1', 18, 78, 4146, 721, 127, '19', '2017-2020', 'Aerospace Engineering (Q1); Information Systems (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2); Control and Systems Engineering (Q2)'), (6815, 'International Indigenous Policy Journal', 19165781, 0.713, 'Q1', 16, 20, 1572, 136, 69, '3', '2010-2020', 'Anthropology (Q1); Cultural Studies (Q1); Sociology and Political Science (Q1)'), (6816, 'Journal of Behavioral Health Services and Res', 10943412, 0.713, 'Q2', 55, 62, 2856, 295, 152, '2', '1996-2020', 'Health Policy (Q2); Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6817, 'Journal of Social Work Education', 10437797, 0.713, 'Q1', 57, 113, 4770, 370, 237, '3', '1985-2020', 'Social Sciences (miscellaneous) (Q1); Education (Q2); Social Work (Q2)'), (6818, 'Journal of South American Earth Sciences', 8959811, 0.713, 'Q2', 76, 463, 37286, 1564, 704, '3', '1988-1992, 1994-2020', 'Earth-Surface Processes (Q2); Geology (Q2)'), (6819, 'Language and Speech', 238309, 0.713, 'Q1', 52, 64, 4447, 173, 103, '2', '1958-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1); Medicine (miscellaneous) (Q2); Speech and Hearing (Q2)'), (6820, 'Neural Computing and Applications', 9410643, 0.713, 'Q1', 80, 1458, 65605, 9186, 1678, '3', '1993-2020', 'Software (Q1); Artificial Intelligence (Q2)'), (6821, 'Waste Management and Research', 734242, 0.713, 'Q2', 80, 179, 7910, 1285, 371, '3', '1983-2020', 'Environmental Engineering (Q2); Pollution (Q2)'), (6822, 'Acta Odontologica Scandinavica', 16357, 0.712, 'Q1', 65, 121, 4488, 533, 263, '3', '1939-2020', 'Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (6823, 'Annals of the ICRP', 1872969, 0.712, 'Q2', 44, 35, 638, 121, 45, '2', '1976-1989, 1991, 1993-2010, 2012-2020', 'Public Health, Environmental and Occupational Health (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6824, 'Bioactive Carbohydrates and Dietary Fibre', 22126198, 0.712, 'Q2', 27, 38, 1910, 276, 77, '3', '2013-2020', 'Food Science (Q2); Organic Chemistry (Q2); Biochemistry (Q3)'), (6825, 'Canadian Journal of Experimental Psychology', 18787290, 0.712, 'Q2', 59, 33, 1261, 118, 88, '2', '1993-2020', 'Experimental and Cognitive Psychology (Q2); Medicine (miscellaneous) (Q2)'), (6826, 'Cell Journal', 22285806, 0.712, 'Q3', 29, 69, 2351, 571, 221, '15', '2011-2021', 'Cell Biology (Q3); Molecular Biology (Q3)'), (6827, 'Development Engineering', 23527285, 0.712, 'Q1', 10, 11, 449, 112, 33, '3', '2015-2020', 'Development (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Computer Science Applications (Q2)'), (6828, 'International Journal of Applied Linguistics', 8026106, 0.712, 'Q1', 39, 40, 1992, 110, 78, '3', '1991-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6829, 'Journal of Occupational and Environmental Med', 10762752, 0.712, 'Q2', 110, 292, 5734, 1339, 685, '2', '1959, 1963-1970, 1976-1978, 1980, 1988, 1990-1991, 1995-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (6830, 'Semiconductor Science and Technology', 13616641, 0.712, 'Q1', 112, 446, 17546, 2422, 932, '3', '1986-2020', 'Electrical and Electronic Engineering (Q1); Materials Chemistry (Q1); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (6831, 'Surfaces and Interfaces', 24680230, 0.712, 'Q1', 25, 350, 17941, 1589, 354, '16', '2016-2020', 'Surfaces, Coatings and Films (Q1); Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Physics and Astronomy (miscellaneous) (Q2); Surfaces and Interfaces (Q2)'), (6832, 'Synlett', 9365214, 0.712, 'Q2', 133, 371, 18716, 2815, 1332, '5', '1989-2020', 'Organic Chemistry (Q2)'), (6833, 'Asia Pacific Management Review', 10293132, 0.711, 'Q1', 20, 31, 2045, 373, 90, '22', '2008-2020', 'Business and International Management (Q1); Strategy and Management (Q2)'), (6834, 'Behavioural Pharmacology', 14735849, 0.711, 'Q2', 80, 77, 4341, 518, 216, '2', '1992-2020', 'Pharmacology (Q2); Psychiatry and Mental Health (Q2)'), (6835, 'Clinical Pharmacology in Drug Development', 21607648, 0.711, 'Q2', 22, 130, 3254, 551, 260, '2', '2012-2020', 'Pharmaceutical Science (Q2); Pharmacology (medical) (Q2)'), (6836, 'Journal of Experimental Psychopathology', 20438087, 0.711, 'Q2', 10, 12, 666, 153, 84, '3', '2015-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (6837, 'Journal of Family and Economic Issues', 15733475, 0.711, 'Q2', 46, 87, 4521, 402, 138, '2', '1992-2020', 'Economics and Econometrics (Q2); Social Psychology (Q2)'), (6838, 'Methods in Molecular Biology', 19406029, 0.711, 'Q3', 152, 2855, 78274, 16176, 277, '2', '1993-2021', 'Genetics (Q3); Molecular Biology (Q3)'), (6839, 'Millennium: Journal of International Studies', 3058298, 0.711, 'Q1', 63, 25, 76, 157, 77, '3', '1971-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (6840, 'Ontario Health Technology Assessment Series', 19157398, 0.711, 'Q2', 21, 15, 1626, 130, 46, '9', '2010-2020', 'Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)'), (6841, 'Psychology, Health and Medicine', 13548506, 0.711, 'Q2', 62, 219, 7250, 967, 405, '3', '1996-2020', 'Applied Psychology (Q2); Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (6842, 'World Journal of Men?s Health', 22874690, 0.711, 'Q2', 10, 88, 4188, 264, 67, '13', '2019-2020', 'Health Policy (Q2); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2); Reproductive Medicine (Q2); Urology (Q2); Aging (Q3)'), (6843, 'Foundations and Trends in Marketing', 15550761, 0.71, 'Q2', 13, 4, 497, 23, 12, '2', '2006-2007, 2009-2020', 'Economics and Econometrics (Q2); Marketing (Q2)'), (6844, 'Journal of Statistical Physics', 224715, 0.71, 'Q2', 115, 266, 10377, 1805, 724, '2', '1969-2020', 'Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q2)'), (6845, 'Neuropsychobiology', 302282, 0.71, 'Q2', 83, 59, 3704, 242, 111, '19', '1975-1990, 1992-2020', 'Neuropsychology and Physiological Psychology (Q2); Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3)'), (6846, 'Phenomenology and the Cognitive Sciences', 15687759, 0.71, 'Q1', 41, 77, 4630, 280, 149, '16', '2004-2020', 'Philosophy (Q1); Cognitive Neuroscience (Q3)'), (6847, 'Psychology, Crime and Law', 14772744, 0.71, 'Q1', 59, 86, 4681, 302, 158, '3', '1994-2020', 'Law (Q1); Pathology and Forensic Medicine (Q2); Psychology (miscellaneous) (Q2)'), (6848, 'Recent Patents on Anti-Cancer Drug Discovery', 15748928, 0.71, 'Q2', 42, 26, 2460, 301, 88, '52', '2006-2020', 'Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Cancer Research (Q3); Oncology (Q3)'), (6849, 'Research in Social and Administrative Pharmac', 15517411, 0.71, 'Q1', 47, 306, 12998, 1395, 404, '2', '2005-2020', 'Pharmacy (Q1); Pharmaceutical Science (Q2)'), (6850, 'Saudi Journal of Biological Sciences', 1319562, 0.71, 'Q1', 53, 483, 20644, 3565, 840, '29', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (6851, 'Scientific Drilling', 18163459, 0.71, 'Q1', 24, 10, 630, 56, 33, '2', '2005-2020', 'Mechanical Engineering (Q1); Energy Engineering and Power Technology (Q2)'), (6852, 'Australian Geographer', 14653311, 0.709, 'Q1', 45, 28, 1875, 175, 88, '3', '1928-1929, 1931-1943, 1945-1948, 1950-2020', 'Geography, Planning and Development (Q1); Earth-Surface Processes (Q2)'), (6853, 'Biomedical Engineering Letters', 2093985, 0.709, 'Q2', 26, 46, 2791, 509, 119, '5', '2011-2020', 'Biomedical Engineering (Q2)'), (6854, 'International Journal of Smart and Nano Mater', 19475411, 0.709, 'Q2', 26, 28, 1499, 197, 43, '3', '2010-2020', 'Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (6855, 'Journal of Performance of Constructed Facilit', 19435509, 0.709, 'Q1', 52, 179, 5631, 1038, 405, '2', '1987-2020', 'Building and Construction (Q1); Civil and Structural Engineering (Q1); Safety, Risk, Reliability and Quality (Q1)'), (6856, 'Politics, Philosophy and Economics', 1470594, 0.709, 'Q1', 30, 21, 845, 59, 59, '2', '2002-2020', 'Philosophy (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2)'), (6857, 'Renewable Agriculture and Food Systems', 17421713, 0.709, 'Q1', 53, 112, 5737, 423, 158, '3', '2004-2020', 'Agronomy and Crop Science (Q1); Food Science (Q2)'), (6858, 'Soil Use and Management', 14752743, 0.709, 'Q1', 81, 139, 6529, 496, 179, '2', '1985-2020', 'Agronomy and Crop Science (Q1); Pollution (Q2); Soil Science (Q2)'), (6859, 'Toxicology Research', 2045452, 0.709, 'Q2', 31, 67, 3408, 966, 298, '3', '2012-2020', 'Health, Toxicology and Mutagenesis (Q2); Toxicology (Q2)'), (6860, 'Current Medical Research and Opinion', 14734877, 0.708, 'Q2', 107, 239, 9318, 1687, 740, '3', '1972-2020', 'Medicine (miscellaneous) (Q2)'), (6861, 'ecancermedicalscience', 17546605, 0.708, 'Q3', 30, 157, 6016, 670, 288, '3', '2007, 2009-2020', 'Cancer Research (Q3); Oncology (Q3)'), (6862, 'Emergency Medicine Journal', 14720213, 0.708, 'Q1', 81, 218, 3118, 949, 465, '3', '1996-2020', 'Emergency Medicine (Q1); Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2)'), (6863, 'Future Medicinal Chemistry', 17568919, 0.708, 'Q2', 69, 160, 9189, 1802, 539, '3', '2009-2020', 'Drug Discovery (Q2); Pharmacology (Q2); Molecular Medicine (Q3)'), (6864, 'History of the Family', 1081602, 0.708, 'Q1', 23, 31, 2239, 82, 76, '3', '1996-2020', 'History (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (6865, 'Journal of Mathematical Physics', 10897658, 0.708, 'Q2', 119, 411, 14131, 3283, 1403, '2', '1960-2020', 'Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q2)'), (6866, 'Journal of School Choice', 15582159, 0.708, 'Q2', 16, 45, 2541, 146, 77, '3', '2006-2020', 'Education (Q2)'), (6867, 'Journal of Soil Science and Plant Nutrition', 7189516, 0.708, 'Q1', 39, 240, 13471, 920, 251, '45', '2010-2020', 'Agronomy and Crop Science (Q1); Plant Science (Q2); Soil Science (Q2)'), (6868, 'Journal of the Formosan Medical Association', 9296646, 0.708, 'Q2', 54, 340, 9529, 1377, 512, '1', '1961-1962, 1972-2020', 'Medicine (miscellaneous) (Q2)'), (6869, 'Journal of Thrombosis and Thrombolysis', 1573742, 0.708, 'Q2', 67, 327, 8687, 990, 464, '16', '1994-2020', 'Cardiology and Cardiovascular Medicine (Q2); Hematology (Q2)'), (6870, 'New Forests', 1694286, 0.708, 'Q1', 51, 81, 5036, 372, 159, '16', '1986-2020', 'Forestry (Q1)'), (6871, 'Agronomy', 20734395, 0.707, 'Q1', 30, 1719, 105047, 4558, 1269, '19', '2013-2020', 'Agronomy and Crop Science (Q1)'), (6872, 'Distributed Computing', 1782770, 0.707, 'Q1', 48, 30, 1028, 248, 77, '5', '1986-2020', 'Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Computational Theory and Mathematics (Q2); Theoretical Computer Science (Q2)'), (6873, 'International Development Planning Review', 14783401, 0.707, 'Q1', 32, 21, 1007, 124, 71, '3', '1997-2001, 2003-2020', 'Development (Q1); Geography, Planning and Development (Q1)'), (6874, 'International journal of older people nursing', 17483735, 0.707, 'Q2', 29, 63, 2772, 283, 117, '3', '2010-2020', 'Gerontology (Q2)'), (6875, 'Journal of Mining Institute', 25419404, 0.707, 'Q2', 13, 71, 1410, 461, 290, '10', '2017-2020', 'Economic Geology (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (6876, 'Orthopedic Research and Reviews', 11791462, 0.707, 'Q2', 9, 24, 834, 105, 44, '41', '2014-2020', 'Orthopedics and Sports Medicine (Q2)'), (6877, 'Plant Cell, Tissue and Organ Culture', 15735044, 0.707, 'Q1', 81, 217, 11884, 1536, 592, '16', '1981-2020', 'Horticulture (Q1)'), (6878, 'Quantitative Biology', 20954697, 0.707, 'Q2', 15, 40, 1789, 150, 90, '1', '2013-2020', 'Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Computer Science Applications (Q2); Modeling and Simulation (Q2)'), (6879, 'Radiology and Oncology', 13182099, 0.707, 'Q2', 30, 71, 2632, 478, 175, '5', '1992-2020', 'Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)'), (6880, 'Twentieth Century British History', 9552359, 0.707, 'Q1', 19, 15, 1587, 52, 59, '2', '1990-1997, 2003-2005, 2007-2019', 'History (Q1)'), (6881, 'Water Resources and Economics', 22124284, 0.707, 'Q1', 19, 28, 1548, 114, 52, '16', '2013-2020', 'Geography, Planning and Development (Q1); Water Science and Technology (Q2)'), (6882, 'Central European Journal of Operations Resear', 1435246, 0.706, 'Q2', 33, 104, 4119, 473, 160, '5', '2006-2020', 'Management Science and Operations Research (Q2)'), (6883, 'Clinical Psychologist', 13284207, 0.706, 'Q2', 22, 36, 1526, 185, 85, '2', '1997-2020', 'Clinical Psychology (Q2)'), (6884, 'Current Topics in Medicinal Chemistry', 15680266, 0.706, 'Q2', 116, 241, 21813, 2255, 624, '52', '2001-2020', 'Drug Discovery (Q2); Medicine (miscellaneous) (Q2)'), (6885, 'Heat Transfer Engineering', 15210537, 0.706, 'Q1', 63, 220, 7475, 903, 421, '3', '1979-2020', 'Mechanical Engineering (Q1); Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2)'), (6886, 'Journal of Aging Studies', 8904065, 0.706, 'Q1', 63, 41, 2307, 311, 116, '3', '1987-2020', 'Issues, Ethics and Legal Aspects (Q1); Health Policy (Q2); Medicine (miscellaneous) (Q2)'), (6887, 'Leadership and Policy in Schools', 15700763, 0.706, 'Q2', 19, 83, 5766, 147, 94, '3', '2010-2020', 'Education (Q2); Strategy and Management (Q2)'), (6888, 'Pharmacological Reports', 17341140, 0.706, 'Q2', 83, 156, 8507, 1574, 524, '16', '2005-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2)'), (6889, 'Reference Services Review', 907324, 0.706, 'Q1', 39, 45, 1692, 140, 119, '3', '1973-2020', 'Library and Information Sciences (Q1); E-learning (Q2)'), (6890, 'Saudi Pharmaceutical Journal', 13190164, 0.706, 'Q2', 49, 217, 10105, 2146, 484, '29', '1996-2020', 'Pharmaceutical Science (Q2); Pharmacology (Q2)'), (6891, 'Sexualities', 14617382, 0.706, 'Q1', 59, 144, 7376, 444, 211, '3', '1998-2020', 'Anthropology (Q1); Gender Studies (Q1)'), (6892, 'Annals of Hepatology', 16652681, 0.705, 'Q2', 53, 111, 4401, 912, 378, '30', '2002-2020', 'Medicine (miscellaneous) (Q2); Hepatology (Q3)'), (6893, 'Cartilage', 19476035, 0.705, 'Q2', 33, 201, 8588, 574, 221, '2', '2010-2020', 'Biomedical Engineering (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Immunology and Allergy (Q3)'), (6894, 'Health Promotion International', 9574824, 0.705, 'Q2', 84, 133, 5358, 824, 371, '3', '1986-2020', 'Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6895, 'Health security', 23265108, 0.705, 'Q1', 37, 90, 1990, 397, 204, '2', '2015-2020', 'Emergency Medicine (Q1); Safety Research (Q1); Health (social science) (Q2); Health, Toxicology and Mutagenesis (Q2); Management, Monitoring, Policy and Law (Q2); Public Health, Environmental and Occu'), (6896, 'International Journal of Genomics', 2314436, 0.705, 'Q2', 24, 62, 3036, 554, 214, '32', '2013-2020', 'Pharmaceutical Science (Q2); Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q3)'), (6897, 'International Journal of Laboratory Hematolog', 1751553, 0.705, 'Q2', 55, 263, 5641, 850, 337, '3', '2007-2020', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q2); Hematology (Q2); Medicine (miscellaneous) (Q2)'), (6898, 'Journal of American College Health', 7448481, 0.705, 'Q2', 95, 475, 19815, 812, 301, '2', '1982-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (6899, 'Odontology / the Society of the Nippon Dental', 16181247, 0.705, 'Q1', 33, 83, 3139, 459, 186, '6', '2003-2020', 'Dentistry (miscellaneous) (Q1)'), (6900, 'Strength and Conditioning Journal', 15334295, 0.705, 'Q2', 41, 28, 1791, 303, 185, '2', '1996-2020', 'Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)'), (6901, 'Virology Reports', 22146695, 0.705, 'Q3', 7, 0, 0, 5, 2, '16', '2014, 2016-2017', 'Biochemistry (Q3); Virology (Q3)'), (6902, 'Archives of Oral Biology', 39969, 0.704, 'Q1', 90, 280, 12305, 2089, 819, '3', '1959-2020', 'Dentistry (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Cell Biology (Q3)'), (6903, 'Current Gene Therapy', 18755631, 0.704, 'Q2', 71, 38, 2994, 379, 114, '52', '2001-2020', 'Drug Discovery (Q2); Genetics (Q3); Genetics (clinical) (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)'), (6904, 'International Journal of Applied Mechanics', 17588251, 0.704, 'Q1', 38, 121, 5228, 1053, 329, '2', '2009-2020', 'Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (6905, 'Journal of Computational Science', 18777503, 0.704, 'Q1', 46, 123, 5550, 2325, 465, '16', '2010-2020', 'Computer Science (miscellaneous) (Q1); Modeling and Simulation (Q2); Theoretical Computer Science (Q2)'), (6906, 'Journal of the American Philosophical Associa', 20534477, 0.704, 'Q1', 11, 29, 1084, 91, 85, '3', '2015-2020', 'Philosophy (Q1)'), (6907, 'Paediatric Anaesthesia', 11555645, 0.704, 'Q2', 82, 247, 4837, 1099, 462, '3', '1991-2020', 'Anesthesiology and Pain Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (6908, 'Psychology Research and Behavior Management', 11791578, 0.704, 'Q2', 30, 125, 6068, 613, 197, '41', '2017-2020', 'Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2)'), (6909, 'School Psychology International', 14617374, 0.704, 'Q2', 57, 32, 1759, 229, 107, '3', '1979-2020', 'Developmental and Educational Psychology (Q2); Education (Q2); Psychiatry and Mental Health (Q2)'), (6910, 'Substance Use and Misuse', 10826084, 0.704, 'Q2', 79, 300, 14247, 1444, 684, '3', '1966-2020', 'Health (social science) (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6911, 'Australian Endodontic Journal', 13291947, 0.703, 'Q1', 34, 94, 2582, 199, 114, '2', '1998-2020', 'Dentistry (miscellaneous) (Q1)'), (6912, 'BMC Anesthesiology', 14712253, 0.703, 'Q2', 39, 295, 8506, 1336, 610, '3', '2001-2020', 'Anesthesiology and Pain Medicine (Q2)'), (6913, 'Clinical Research in Cardiology Supplements', 18610714, 0.703, 'Q2', 13, 0, 0, 49, 18, '5', '2006-2013, 2015-2017, 2019-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Molecular Biology (Q3); Structural Biology (Q3)'), (6914, 'Electronic Journal of Combinatorics', 10778926, 0.703, 'Q2', 52, 241, 5125, 913, 706, '2', '1996-2020', 'Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2); Geometry and Topology (Q2); Theoretical Computer Science (Q2)'), (6915, 'Genomics', 8887543, 0.703, 'Q3', 141, 559, 32412, 1316, 338, '2', '1987-2020', 'Genetics (Q3)'), (6916, 'International Journal of Nursing Sciences', 23520132, 0.703, 'Q1', 16, 87, 2854, 526, 199, '37', '2014-2020', 'Nursing (miscellaneous) (Q1)'), (6917, 'Journal of Trauma and Dissociation', 15299740, 0.703, 'Q2', 45, 45, 1974, 295, 117, '2', '2000-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (6918, 'npj Science of Food', 23968370, 0.703, 'Q2', 6, 20, 988, 119, 29, '3', '2019-2020', 'Food Science (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6919, 'Operations Management Research', 19369743, 0.703, 'Q1', 28, 21, 1409, 107, 28, '2', '2008-2020', 'Industrial and Manufacturing Engineering (Q1); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)'), (6920, 'Radiation Measurements', 13504487, 0.703, 'Q1', 95, 193, 4694, 1028, 504, '3', '1994-2020', 'Instrumentation (Q1); Radiation (Q2)'), (6921, 'Remote Sensing Applications: Society and Envi', 23529385, 0.703, 'Q1', 19, 143, 7818, 780, 220, '16', '2015-2020', 'Geography, Planning and Development (Q1); Computers in Earth Sciences (Q2)'), (6922, 'Skin Pharmacology and Physiology', 16605527, 0.703, 'Q2', 74, 30, 1476, 363, 114, '19', '1988-1997, 2004-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2); Physiology (Q3)'), (6923, 'Wetlands', 19436246, 0.703, 'Q2', 87, 226, 14191, 742, 327, '16', '1981-2020', 'Ecology (Q2); Environmental Chemistry (Q2); Environmental Science (miscellaneous) (Q2)'), (6924, 'AMB Express', 21910855, 0.702, 'Q2', 40, 217, 8809, 2075, 622, '5', '2011-2020', 'Applied Microbiology and Biotechnology (Q2); Biophysics (Q2)'), (6925, 'BMC Hematology', 20521839, 0.702, 'Q2', 21, 0, 0, 162, 70, '3', '2013-2019', 'Hematology (Q2); Molecular Biology (Q3)'), (6926, 'Ciencia e Saude Coletiva', 14138123, 0.702, 'Q2', 46, 471, 17085, 1742, 1181, '14', '2006-2020', 'Health Policy (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (6927, 'Food and Agricultural Immunology', 14653443, 0.702, 'Q1', 33, 76, 2988, 855, 305, '3', '1989-2003, 2005-2020', 'Agronomy and Crop Science (Q1); Food Science (Q2); Immunology (Q3)'), (6928, 'Geologica Carpathica', 13350552, 0.702, 'Q2', 40, 35, 2490, 185, 96, '5', '1991-2020', 'Geology (Q2)'), (6929, 'IEEE Transactions on Engineering Management', 189391, 0.702, 'Q1', 92, 252, 6766, 668, 212, '2', '1969-2020', 'Electrical and Electronic Engineering (Q1); Strategy and Management (Q2)'), (6930, 'International Journal of Mental Health and Ad', 15571882, 0.702, 'Q2', 44, 320, 15956, 999, 365, '2', '2006-2020', 'Psychiatry and Mental Health (Q2)'), (6931, 'Moscow Mathematical Journal', 16094514, 0.702, 'Q2', 25, 30, 684, 145, 98, '10', '2010-2020', 'Mathematics (miscellaneous) (Q2)'), (6932, 'Pain Research and Management', 19181523, 0.702, 'Q2', 56, 138, 5603, 723, 264, '9', '1996-2020', 'Anesthesiology and Pain Medicine (Q2); Neurology (Q3)'), (6933, 'Pharmaceutical Biology', 13880209, 0.702, 'Q1', 64, 148, 5837, 1742, 468, '3', '1961-1972, 1975-2020', 'Complementary and Alternative Medicine (Q1); Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2); Pharmacology (Q2); Molecular Medicine (Q3)'), (6934, 'Physics in Medicine', 23524510, 0.702, 'Q1', 6, 4, 163, 31, 12, '16', '2016-2020', 'Instrumentation (Q1); Biophysics (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6935, 'Translational Pediatrics', 22244344, 0.702, 'Q2', 13, 78, 1994, 321, 127, '1', '2016-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (6936, 'Yonsei Medical Journal', 19762437, 0.702, 'Q2', 63, 144, 4034, 1239, 493, '13', '1963-2020', 'Medicine (miscellaneous) (Q2)'), (6937, 'American Journal of Physical Medicine and Reh', 15377385, 0.701, 'Q2', 101, 265, 5368, 1236, 550, '2', '1988-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Sports Science (Q3)'), (6938, 'Asian Journal of Andrology', 1008682, 0.701, 'Q2', 74, 114, 4031, 784, 263, '4', '1999-2020', 'Medicine (miscellaneous) (Q2); Urology (Q2)'), (6939, 'Australian Dental Journal', 18347819, 0.701, 'Q2', 71, 68, 1997, 484, 202, '2', '1945-1951, 1956-2020', 'Dentistry (miscellaneous) (Q2)'), (6940, 'Colloids and Interface Science Communications', 22150382, 0.701, 'Q1', 19, 108, 5361, 628, 142, '16', '2014-2020', 'Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1); Biotechnology (Q2); Colloid and Surface Chemistry (Q2); Physical and Theoretical Chemistry (Q2)'), (6941, 'Immunopharmacology and Immunotoxicology', 15322513, 0.701, 'Q2', 49, 70, 3465, 495, 184, '3', '1978-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2); Toxicology (Q2); Immunology (Q3); Immunology and Allergy (Q3)'), (6942, 'International journal of computer assisted ra', 18616410, 0.701, 'Q1', 49, 205, 5360, 2277, 583, '5', '2006-2020', 'Computer Graphics and Computer-Aided Design (Q1); Computer Vision and Pattern Recognition (Q1); Biomedical Engineering (Q2); Computer Science Applications (Q2); Health Informatics (Q2); Medicine (misc'), (6943, 'IZA Journal of European Labor Studies', 21939012, 0.701, 'Q1', 16, 0, 0, 1, 2, '3', '2012-2017', 'Industrial Relations (Q1); Economics and Econometrics (Q2); Organizational Behavior and Human Resource Management (Q2)'), (6944, 'Journal of Clinical and Experimental Neuropsy', 1744411, 0.701, 'Q2', 109, 90, 5304, 578, 258, '3', '1985-2020', 'Clinical Psychology (Q2); Neurology (Q3); Neurology (clinical) (Q3)'), (6945, 'Journal of Drugs in Dermatology', 15459616, 0.701, 'Q2', 62, 232, 448, 904, 571, '2', '2002-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q2)'), (6946, 'Linguistic Approaches to Bilingualism', 18799272, 0.701, 'Q1', 24, 26, 1278, 192, 106, '16', '2011-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (6947, 'Neuropathology', 9196544, 0.701, 'Q2', 61, 86, 2842, 451, 225, '3', '1993-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Neurology (clinical) (Q3)'), (6948, 'Public Health Genomics', 16628063, 0.701, 'Q2', 51, 23, 993, 166, 77, '19', '2008-2020', 'Public Health, Environmental and Occupational Health (Q2); Genetics (clinical) (Q3)'), (6949, 'Review of Diabetic Studies', 16140575, 0.701, 'Q2', 41, 1, 42, 66, 23, '5', '2007-2020', 'Endocrinology, Diabetes and Metabolism (Q2); Internal Medicine (Q2); Medicine (miscellaneous) (Q2); Endocrinology (Q3)'), (6950, 'Scandinavian Journal of Pain', 18778879, 0.701, 'Q2', 24, 79, 3414, 609, 280, '16', '2010-2020', 'Anesthesiology and Pain Medicine (Q2); Neurology (clinical) (Q3)'), (6951, 'Sociological Perspectives', 7311214, 0.701, 'Q1', 57, 72, 4664, 323, 155, '2', '1958-2020', 'Sociology and Political Science (Q1)'), (6952, 'Water International', 2508060, 0.701, 'Q2', 49, 62, 2498, 391, 160, '3', '1975-2020', 'Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)'), (6953, 'American Journal of Industrial Medicine', 2713586, 0.7, 'Q2', 104, 126, 5230, 690, 319, '2', '1980-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (6954, 'Discrete Applied Mathematics', 166218, 0.7, 'Q2', 87, 468, 10201, 2087, 1219, '16', '1979-2021', 'Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)'), (6955, 'Gerodontology', 7340664, 0.7, 'Q2', 54, 66, 2384, 394, 174, '25', '1982-1990, 1993-2020', 'Dentistry (miscellaneous) (Q2); Geriatrics and Gerontology (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (6956, 'International Journal of Periodontics and Res', 1987569, 0.7, 'Q2', 82, 114, 1646, 553, 338, '2', '1981-2020', 'Medicine (miscellaneous) (Q2); Oral Surgery (Q2); Periodontics (Q2)'), (6957, 'Journal of Cardiopulmonary Rehabilitation and', 1932751, 0.7, 'Q2', 66, 80, 2244, 407, 222, '2', '2007-2020', 'Cardiology and Cardiovascular Medicine (Q2); Pulmonary and Respiratory Medicine (Q2); Rehabilitation (Q2)'), (6958, 'Journal of Nursing Education', 1484834, 0.7, 'Q1', 64, 174, 2888, 588, 369, '2', '1965-2020', 'Nursing (miscellaneous) (Q1); Education (Q2)'), (6959, 'Journal of Small Animal Practice', 224510, 0.7, 'Q1', 67, 152, 3448, 432, 311, '2', '1960-2020', 'Small Animals (Q1)'), (6960, 'Agricultural and Food Economics', 21937532, 0.699, 'Q1', 17, 27, 1122, 183, 70, '3', '2013-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2); Food Science (Q2)'), (6961, 'ATMOSPHERE', 20734433, 0.699, 'Q2', 37, 1372, 75864, 4424, 1531, '19', '1963, 1966-1977, 2010-2020', 'Atmospheric Science (Q2); Environmental Science (miscellaneous) (Q2)'), (6962, 'Croatian Journal of Forest Engineering', 18455719, 0.699, 'Q1', 25, 33, 1426, 224, 85, '58', '2005-2020', 'Forestry (Q1)'), (6963, 'International Journal of Food Properties', 15322386, 0.699, 'Q2', 51, 173, 7849, 2975, 946, '2', '1998-2020', 'Food Science (Q2)'), (6964, 'Journal of Applied Physics', 10897550, 0.699, 'Q2', 319, 1896, 93419, 17326, 6291, '2', '1931-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (6965, 'Journal of Cardiovascular Imaging', 25867210, 0.699, 'Q2', 18, 53, 618, 112, 56, '13', '2018-2020', 'Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (6966, 'Philosophical Psychology', 9515089, 0.699, 'Q1', 43, 59, 2626, 250, 157, '3', '1988-2020', 'Philosophy (Q1); Applied Psychology (Q2)'), (6967, 'Photochemical and Photobiological Sciences', 1474905, 0.699, 'Q2', 101, 188, 9204, 2180, 682, '3', '2002-2020', 'Physical and Theoretical Chemistry (Q2)'), (6968, 'Sensors and Actuators, A: Physical', 9244247, 0.699, 'Q1', 154, 596, 24290, 6289, 1731, '16', '1989-2020', 'Electrical and Electronic Engineering (Q1); Instrumentation (Q1); Metals and Alloys (Q1); Surfaces, Coatings and Films (Q1); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials ('), (6969, 'Social Psychology Quarterly', 1902725, 0.699, 'Q2', 85, 26, 1441, 115, 58, '2', '1979-1984, 1989, 1996-2020', 'Social Psychology (Q2)'), (6970, 'China Welding (English Edition)', 10045341, 0.698, 'Q1', 11, 26, 392, 129, 105, '1', '1997-2020', 'Industrial and Manufacturing Engineering (Q1); Mechanics of Materials (Q2)'), (6971, 'Chinese Sociological Review', 21620555, 0.698, 'Q1', 19, 27, 1680, 104, 54, '2', '2011-2020', 'Anthropology (Q1); Demography (Q1); Gender Studies (Q1); Sociology and Political Science (Q1)'), (6972, 'Environmental Archaeology', 14614103, 0.698, 'Q1', 28, 67, 5412, 150, 103, '3', '1981, 2002-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Environmental Science (miscellaneous) (Q2)'), (6973, 'European journal of paediatric dentistry : of', 1591996, 0.698, 'Q2', 33, 61, 1264, 566, 171, '7', '2001-2020', 'Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (6974, 'Journal of Scholarly Publishing', 17101166, 0.698, 'Q1', 15, 20, 295, 78, 61, '9', '1994-2003, 2005-2020', 'Media Technology (Q1); Education (Q2)'), (6975, 'Journal of the Astronautical Sciences', 219142, 0.698, 'Q1', 46, 73, 2306, 123, 68, '2', '1969-2009, 2011-2012, 2014-2020', 'Aerospace Engineering (Q1); Space and Planetary Science (Q2)'), (6976, 'Letters in Applied Microbiology', 2668254, 0.698, 'Q2', 110, 146, 5571, 1235, 424, '3', '1985-2020', 'Applied Microbiology and Biotechnology (Q2)'), (6977, 'Profesional de la Informacion', 16992407, 0.698, 'Q1', 28, 192, 10374, 832, 365, '12', '2006-2020', 'Communication (Q1); Cultural Studies (Q1); Information Systems (Q1); Library and Information Sciences (Q1)'), (6978, 'Rural Special Education Quarterly', 21688605, 0.698, 'Q2', 5, 28, 937, 57, 44, '2', '2018-2020', 'Development (Q2); Education (Q2)'), (6979, 'Andean Geology', 7187092, 0.697, 'Q1', 36, 27, 2042, 158, 66, '45', '2009-2020', 'Paleontology (Q1); Geochemistry and Petrology (Q2); Geology (Q2); Stratigraphy (Q2)'), (6980, 'Diversity', 14242818, 0.697, 'Q1', 38, 478, 32776, 1006, 407, '19', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Ecological Modeling (Q2); Ecology (Q2); Nature and Landscape Conservation (Q2)'), (6981, 'Enzyme and Microbial Technology', 18790909, 0.697, 'Q2', 147, 198, 8837, 1512, 415, '2', '1979-2020', 'Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2); Biochemistry (Q3)'), (6982, 'Journal of Clinical Apheresis', 7332459, 0.697, 'Q2', 46, 85, 1944, 456, 208, '2', '1982-2020', 'Hematology (Q2); Medicine (miscellaneous) (Q2)'), (6983, 'Journal of Ecotourism', 14724049, 0.697, 'Q1', 36, 29, 1411, 208, 57, '3', '2002-2020', 'Geography, Planning and Development (Q1); Tourism, Leisure and Hospitality Management (Q2)'), (6984, 'Journal of Rail Transport Planning and Manage', 22109706, 0.697, 'Q2', 24, 27, 864, 147, 61, '16', '2011-2020', 'Computer Science Applications (Q2); Modeling and Simulation (Q2)'), (6985, 'NORMA', 18902146, 0.697, 'Q1', 12, 21, 1042, 90, 47, '3', '2014-2020', 'Gender Studies (Q1)'), (6986, 'Operations Research Perspectives', 22147160, 0.697, 'Q1', 16, 33, 1749, 357, 90, '16', '2014-2020', 'Control and Optimization (Q1); Management Science and Operations Research (Q2); Statistics and Probability (Q2); Strategy and Management (Q2)'), (6987, 'Pacific Basin Finance Journal', 927538, 0.697, 'Q2', 58, 182, 9551, 1055, 334, '16', '1993-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (6988, 'American Behavioral Scientist', 15523381, 0.696, 'Q1', 108, 118, 5592, 801, 306, '2', '1957-2020', 'Cultural Studies (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Education (Q2); Social Psychology (Q2)'), (6989, 'Asian Journal of Shipping and Logistics', 20925212, 0.696, 'Q1', 22, 21, 1096, 311, 96, '16', '2009-2020', 'Business and International Management (Q1); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Transportation (Q2)'), (6990, 'Computational Geosciences', 14200597, 0.696, 'Q2', 69, 136, 6036, 787, 246, '16', '1982-1983, 1997-2020', 'Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Computers in Earth Sciences (Q2)'), (6991, 'Electronic Transactions on Numerical Analysis', 10974067, 0.696, 'Q2', 44, 55, 1853, 184, 110, '2', '1996-2020', 'Analysis (Q2)'), (6992, 'Geoarchaeology - An International Journal', 8836353, 0.696, 'Q1', 44, 54, 4244, 248, 134, '2', '1986-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Earth and Planetary Sciences (miscellaneous) (Q1)'), (6993, 'IEEE Circuits and Systems Magazine', 1531636, 0.696, 'Q1', 54, 17, 943, 186, 41, '2', '1979-1984, 2001-2020', 'Electrical and Electronic Engineering (Q1); Computer Science Applications (Q2)'), (6994, 'International Archives of Allergy and Immunol', 14230097, 0.696, 'Q2', 100, 124, 4681, 771, 311, '19', '1950-2020', 'Medicine (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3)'), (6995, 'International Journal of Biological Markers', 17246008, 0.696, 'Q2', 41, 53, 1622, 479, 201, '7', '1986-2020', 'Clinical Biochemistry (Q2); Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Cancer Research (Q3); Oncology (Q3)'), (6996, 'International Journal of Heritage Studies', 14703610, 0.696, 'Q1', 45, 113, 6503, 443, 205, '3', '1994-2020', 'Conservation (Q1); Cultural Studies (Q1); Geography, Planning and Development (Q1); History (Q1); Museology (Q1); Tourism, Leisure and Hospitality Management (Q2)'), (6997, 'International Journal of Microbiology', 16879198, 0.696, 'Q3', 40, 142, 6784, 477, 140, '32', '2009-2020', 'Microbiology (Q3); Microbiology (medical) (Q3)'), (6998, 'Journal of Economic Methodology', 14699427, 0.696, 'Q1', 38, 24, 1624, 110, 64, '3', '1994-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (6999, 'Journal of Legislative Studies, The', 13572334, 0.696, 'Q1', 35, 53, 2515, 82, 88, '3', '1995-2020', 'Law (Q1); Political Science and International Relations (Q1)'), (7000, 'Mathematical Inequalities and Applications', 13314343, 0.696, 'Q2', 42, 87, 1802, 412, 264, '58', '1998-2020', 'Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)'), (7001, 'Mediterranean Journal of Mathematics', 16605454, 0.696, 'Q2', 29, 199, 4609, 1023, 619, '19', '2004-2020', 'Mathematics (miscellaneous) (Q2)'), (7002, 'Molecular and Cellular Oncology', 23723556, 0.696, 'Q3', 25, 123, 1475, 402, 264, '3', '2014-2020', 'Cancer Research (Q3); Molecular Medicine (Q3)'), (7003, 'Planetary and Space Science', 320633, 0.696, 'Q2', 92, 258, 13297, 1158, 464, '3', '1959-2020', 'Astronomy and Astrophysics (Q2); Space and Planetary Science (Q2)'), (7004, 'Review of Religious Research', 34673, 0.696, 'Q1', 40, 33, 1952, 100, 77, '2', '1977, 1979, 1985, 1989-1990, 1992, 1996-2020', 'Philosophy (Q1); Religious Studies (Q1)'), (7005, 'Transactions of the American Fisheries Societ', 15488659, 0.696, 'Q2', 86, 52, 3430, 454, 249, '2', '1872-1876, 1878-1894, 1896-1908, 1910-1935, 1937-1943, 1945, 1947-1955, 1957-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7006, 'Asia-Pacific Journal of Atmospheric Sciences', 19767951, 0.695, 'Q2', 27, 68, 2989, 295, 149, '13', '2008-2020', 'Atmospheric Science (Q2)'), (7007, 'Chinese journal of dental research : the offi', 14626446, 0.695, 'Q2', 19, 33, 0, 179, 84, '2', '1998-2000, 2010-2020', 'Medicine (miscellaneous) (Q2)'), (7008, 'Express Polymer Letters', 1788618, 0.695, 'Q1', 72, 96, 4361, 1010, 252, '50', '2007-2020', 'Chemical Engineering (miscellaneous) (Q1); Materials Chemistry (Q1); Polymers and Plastics (Q1); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2)'), (7009, 'Geographical Research', 17455863, 0.695, 'Q1', 47, 46, 2203, 253, 98, '3', '2005-2020', 'Geography, Planning and Development (Q1); Earth-Surface Processes (Q2)'), (7010, 'Global Health, Epidemiology and Genomics', 20544200, 0.695, 'Q2', 8, 6, 316, 109, 43, '3', '2016-2020', 'Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3)'), (7011, 'International Journal of Pressure Vessels and', 3080161, 0.695, 'Q1', 78, 165, 5719, 993, 389, '16', '1973-2020', 'Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (7012, 'Journal of Humanitarian Logistics and Supply ', 20426747, 0.695, 'Q1', 25, 25, 2137, 228, 64, '3', '2011-2020', 'Management Information Systems (Q1); Management Science and Operations Research (Q2)'), (7013, 'Journal of Inorganic Biochemistry', 1620134, 0.695, 'Q2', 131, 292, 17383, 2561, 686, '2', '1979-2020', 'Inorganic Chemistry (Q2); Biochemistry (Q3)'), (7014, 'Materials Science in Semiconductor Processing', 13698001, 0.695, 'Q1', 60, 484, 21096, 4748, 1334, '3', '1998-2021', 'Mechanical Engineering (Q1); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (7015, 'Canadian Journal of Remote Sensing', 17127971, 0.694, 'Q1', 72, 52, 2956, 330, 126, '3', '1975-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1)'), (7016, 'Dyslexia', 10769242, 0.694, 'Q2', 51, 31, 1847, 161, 75, '3', '1996-2020', 'Developmental and Educational Psychology (Q2); Education (Q2); Experimental and Cognitive Psychology (Q2); Medicine (miscellaneous) (Q2)'), (7017, 'Fossil Record', 21930066, 0.694, 'Q1', 19, 16, 842, 99, 49, '5', '1998, 2007-2020', 'Paleontology (Q1)'), (7018, 'IEEE Journal of Electromagnetics, RF and Micr', 24697249, 0.694, 'Q1', 12, 57, 1498, 305, 91, '2', '2017-2020', 'Instrumentation (Q1); Radiation (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7019, 'Public Budgeting and Finance', 2751100, 0.694, 'Q2', 30, 23, 960, 65, 58, '2', '1981-2020', 'Economics and Econometrics (Q2); Finance (Q2); Public Administration (Q2)'), (7020, 'Social Work Education', 14701227, 0.694, 'Q1', 38, 154, 6220, 385, 214, '3', '1981-2020', 'Social Sciences (miscellaneous) (Q1); Education (Q2); Social Work (Q2)'), (7021, 'Aesthetic Plastic Surgery', 364216, 0.693, 'Q2', 67, 448, 9919, 1134, 574, '2', '1976-2020', 'Surgery (Q2)'), (7022, 'Bulletin of Mathematical Biology', 928240, 0.693, 'Q1', 89, 151, 7134, 1004, 430, '2', '1973-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Computational Theory and Mathematics (Q2); Environmental Science (miscella'), (7023, 'Case Studies on Transport Policy', 22136258, 0.693, 'Q1', 19, 148, 6339, 635, 241, '16', '2013-2020', 'Geography, Planning and Development (Q1); Urban Studies (Q1); Transportation (Q2)'), (7024, 'Fisheries Management and Ecology', 969997, 0.693, 'Q2', 55, 65, 3463, 329, 165, '3', '1994-2020', 'Aquatic Science (Q2); Ecology (Q2)'), (7025, 'Infant Mental Health Journal', 1639641, 0.693, 'Q2', 75, 60, 3686, 337, 163, '2', '1980-2020', 'Developmental and Educational Psychology (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)'), (7026, 'International Journal of Food Sciences and Nu', 9637486, 0.693, 'Q2', 73, 156, 7319, 938, 299, '3', '1947-1981, 1992-2020', 'Food Science (Q2)'), (7027, 'International Journal of Number Theory', 17930421, 0.693, 'Q2', 22, 161, 2857, 485, 451, '37', '2008-2020', 'Algebra and Number Theory (Q2)'), (7028, 'Journal of Advanced Concrete Technology', 13468014, 0.693, 'Q1', 49, 58, 2487, 287, 150, '6', '2003-2020', 'Building and Construction (Q1); Materials Science (miscellaneous) (Q2)'), (7029, 'Journal of Molecular Evolution', 14321432, 0.693, 'Q2', 123, 62, 4493, 253, 116, '2', '1971-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3); Molecular Biology (Q3)'), (7030, 'Marine and Freshwater Research', 13231650, 0.693, 'Q2', 88, 216, 14002, 1155, 564, '11', '1948-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Oceanography (Q2)'), (7031, 'Materials Today Sustainability', 25892347, 0.693, 'Q2', 6, 30, 2245, 82, 21, '3', '2018-2020', 'Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (7032, 'New Journal of Chemistry', 11440546, 0.693, 'Q1', 122, 2150, 116457, 20611, 6075, '3', '1996-2020', 'Materials Chemistry (Q1); Chemistry (miscellaneous) (Q2); Catalysis (Q3)'), (7033, 'Physiological Entomology', 3076962, 0.693, 'Q2', 57, 20, 854, 198, 110, '3', '1976-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Physiology (Q3)'), (7034, 'Weed Research', 431737, 0.693, 'Q1', 74, 48, 1994, 346, 133, '3', '1961-2020', 'Agronomy and Crop Science (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (7035, 'Wiley Interdisciplinary Reviews: Computationa', 19395108, 0.693, 'Q2', 38, 46, 3502, 205, 67, '2', '2009-2020', 'Statistics and Probability (Q2)'), (7036, 'Yearbook of medical informatics', 23640502, 0.693, 'Q2', 34, 38, 0, 336, 111, '2', '2006-2020', 'Medicine (miscellaneous) (Q2)'), (7037, 'Arquivos brasileiros de cirurgia digestiva : ', 1026720, 0.692, 'Q2', 16, 68, 1716, 370, 202, '14', '2012-2020', 'Medicine (miscellaneous) (Q2); Surgery (Q2); Gastroenterology (Q3)'), (7038, 'Astronomy and Computing', 22131337, 0.692, 'Q2', 31, 46, 2012, 475, 132, '16', '2013-2020', 'Astronomy and Astrophysics (Q2); Computer Science Applications (Q2); Space and Planetary Science (Q2)'), (7039, 'China Agricultural Economic Review', 1756137, 0.692, 'Q1', 22, 48, 2005, 284, 138, '3', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (7040, 'Clinical Practice and Epidemiology in Mental ', 17450179, 0.692, 'Q2', 48, 26, 1054, 194, 69, '52', '2005-2020', 'Psychiatry and Mental Health (Q2); Epidemiology (Q3)'), (7041, 'Communicative and Integrative Biology', 19420889, 0.692, 'Q1', 38, 22, 1029, 158, 79, '2', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (7042, 'Creativity Research Journal', 15326934, 0.692, 'Q1', 82, 47, 2768, 331, 138, '2', '1988-1999, 2001-2020', 'Visual Arts and Performing Arts (Q1); Developmental and Educational Psychology (Q2); Psychology (miscellaneous) (Q2)'), (7043, 'IEEE Software', 7407459, 0.692, 'Q1', 112, 136, 992, 1302, 310, '2', '1984-2020', 'Software (Q1)'), (7044, 'Journal of Behavioral and Experimental Financ', 22146350, 0.692, 'Q2', 18, 80, 4073, 429, 141, '16', '2014-2020', 'Finance (Q2)'), (7045, 'Journal of Engineering Design', 14661837, 0.692, 'Q1', 52, 22, 1628, 287, 83, '3', '1984-1985, 1990-2020', 'Engineering (miscellaneous) (Q1)'), (7046, 'Journal of Maternal-Fetal and Neonatal Medici', 14767058, 0.692, 'Q2', 80, 1309, 38634, 3618, 1959, '3', '1992-2020', 'Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (7047, 'Musculoskeletal Surgery', 20355114, 0.692, 'Q2', 33, 78, 2321, 317, 151, '5', '2010-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (7048, 'Veterinary Sciences', 23067381, 0.692, 'Q1', 15, 204, 10511, 601, 253, '19', '2014-2020', 'Veterinary (miscellaneous) (Q1)'), (7049, 'European Journal of Management and Business E', 24448451, 0.691, 'Q2', 16, 17, 903, 248, 66, '3', '2016-2020', 'Business and International Management (Q2); Finance (Q2); Marketing (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2); Tourism, Leisure and Hospitality Man'), (7050, 'Health Psychology Open', 20551029, 0.691, 'Q2', 15, 51, 2892, 333, 121, '2', '2014-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (7051, 'Internal and Emergency Medicine', 18280447, 0.691, 'Q1', 47, 326, 7976, 1129, 440, '7', '2006-2020', 'Emergency Medicine (Q1); Internal Medicine (Q2)'), (7052, 'Italian Journal of Pediatrics', 18247288, 0.691, 'Q2', 39, 181, 5634, 1102, 427, '3', '1992, 2001-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (7053, 'Journal of Artificial Intelligence and Soft C', 24496499, 0.691, 'Q1', 16, 20, 828, 295, 58, '17', '2013, 2016-2020', 'Computer Vision and Pattern Recognition (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Artificial Intelligence (Q2); Modeling and Simulation (Q2)'), (7054, 'Race and Social Problems', 18671748, 0.691, 'Q1', 25, 35, 2243, 177, 80, '5', '2009-2020', 'Anthropology (Q1); Sociology and Political Science (Q1)'), (7055, 'Timing and Time Perception', 2213445, 0.691, 'Q2', 15, 21, 998, 72, 46, '16', '2013-2020', 'Applied Psychology (Q2); Experimental and Cognitive Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Cognitive Neuroscience (Q3)'), (7056, 'Tourism Recreation Research', 2508281, 0.691, 'Q1', 44, 96, 6741, 420, 146, '3', '1976-2020', 'Cultural Studies (Q1); Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (7057, 'Acta Mechanica', 16196937, 0.69, 'Q1', 74, 294, 11593, 2212, 807, '28', '1965-2020', 'Computational Mechanics (Q1); Mechanical Engineering (Q1)'), (7058, 'Advances in Applied Probability', 18678, 0.69, 'Q2', 61, 43, 1402, 250, 166, '3', '1969-1971, 1973-1976, 1984, 1996-2020', 'Applied Mathematics (Q2); Statistics and Probability (Q2)'), (7059, 'American Journal of Archaeology', 29114, 0.69, 'Q1', 30, 0, 0, 45, 32, '2', '2002-2018', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (7060, 'Applicable Analysis and Discrete Mathematics', 14528630, 0.69, 'Q2', 26, 46, 1022, 215, 112, '55', '2007-2019', 'Analysis (Q2); Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)'), (7061, 'Clinics in Laboratory Medicine', 15579832, 0.69, 'Q2', 55, 52, 2113, 398, 149, '3', '1981-2020', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q3)'), (7062, 'Current Pharmaceutical Design', 13816128, 0.69, 'Q2', 159, 515, 53205, 4737, 1517, '52', '1995-2020', 'Drug Discovery (Q2); Pharmacology (Q2)'), (7063, 'Evaluation Review', 15523926, 0.69, 'Q1', 54, 23, 864, 67, 50, '2', '1977-2020', 'Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1)'), (7064, 'Growth Factors', 10292292, 0.69, 'Q2', 61, 9, 766, 148, 68, '3', '1988-2020', 'Clinical Biochemistry (Q2); Cell Biology (Q3); Endocrinology (Q3)'), (7065, 'Human and Ecological Risk Assessment (HERA)', 10807039, 0.69, 'Q2', 67, 203, 11063, 1634, 410, '3', '1995-2020', 'Ecological Modeling (Q2); Health, Toxicology and Mutagenesis (Q2); Pollution (Q2)'), (7066, 'IEEE Journal of the Electron Devices Society', 21686734, 0.69, 'Q1', 31, 208, 5296, 1134, 423, '2', '2013-2020', 'Electrical and Electronic Engineering (Q1); Biotechnology (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (7067, 'International Journal of Music Education', 1744795, 0.69, 'Q1', 28, 45, 2273, 130, 127, '3', '1996-2020', 'Music (Q1); Education (Q2)'), (7068, 'Journal of Applied Mechanics, Transactions AS', 218936, 0.69, 'Q1', 97, 88, 3685, 968, 379, '2', '1960, 1964, 1970-2020', 'Mechanical Engineering (Q1); Condensed Matter Physics (Q2); Mechanics of Materials (Q2)'), (7069, 'Journal of Institutional Economics', 17441374, 0.69, 'Q1', 26, 73, 4525, 267, 143, '3', '2005-2006, 2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (7070, 'Journal of Psychiatric and Mental Health Nurs', 13510126, 0.69, 'Q1', 63, 129, 5543, 432, 154, '3', '1994-2020', 'Psychiatric Mental Health (Q1)'), (7071, 'Modern China', 15526836, 0.69, 'Q1', 41, 46, 3338, 87, 66, '2', '1975-2020', 'Geography, Planning and Development (Q1); History (Q1); Sociology and Political Science (Q1)'), (7072, 'Natural Hazards Review', 15276988, 0.69, 'Q1', 57, 73, 3824, 375, 109, '2', '2000-2020', 'Social Sciences (miscellaneous) (Q1); Civil and Structural Engineering (Q2); Environmental Science (miscellaneous) (Q2)'), (7073, 'Transplant Infectious Disease', 13993062, 0.69, 'Q2', 67, 299, 7227, 994, 522, '3', '1999-2020', 'Transplantation (Q2); Infectious Diseases (Q3)'), (7074, 'Inland Waters', 20442041, 0.689, 'Q2', 25, 50, 3339, 310, 134, '3', '2012-2020', 'Aquatic Science (Q2); Water Science and Technology (Q2)'), (7075, 'Journal of Animal Breeding and Genetics', 9312668, 0.689, 'Q1', 51, 73, 3245, 350, 149, '3', '1985-2020', 'Animal Science and Zoology (Q1); Food Animals (Q2); Medicine (miscellaneous) (Q2)'), (7076, 'Journal of Gene Medicine', 1099498, 0.689, 'Q2', 91, 120, 4072, 425, 154, '2', '1998-2020', 'Drug Discovery (Q2); Genetics (Q3); Genetics (clinical) (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)'), (7077, 'Journal of Psychoactive Drugs', 2791072, 0.689, 'Q2', 59, 75, 3087, 409, 165, '3', '1967-1972, 1974-2020', 'Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (7078, 'Marine Georesources and Geotechnology', 1064119, 0.689, 'Q1', 30, 206, 8241, 833, 307, '3', '1993-2020', 'Ocean Engineering (Q1); Geotechnical Engineering and Engineering Geology (Q2); Oceanography (Q2)'), (7079, 'Nursing in critical care', 14785153, 0.689, 'Q1', 43, 104, 3378, 294, 116, '3', '1996-2000, 2002-2020', 'Critical Care Nursing (Q1)'), (7080, 'Nutrition and Cancer', 1635581, 0.689, 'Q2', 117, 331, 15602, 1196, 407, '2', '1978-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q2); Cancer Research (Q3); Oncology (Q3)'), (7081, 'Process Biochemistry', 329592, 0.689, 'Q2', 157, 380, 20104, 3554, 960, '3', '1950, 1953-1955, 1973-1975, 1979-2020', 'Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biochemistry (Q3)'), (7082, 'Quality and Quantity', 335177, 0.689, 'Q1', 57, 138, 7403, 1867, 577, '16', '1967-2020', 'Social Sciences (miscellaneous) (Q1); Statistics and Probability (Q2)'), (7083, 'Advanced Composite Materials', 9243046, 0.688, 'Q1', 30, 72, 2271, 320, 134, '3', '1955, 1991-2020', 'Mechanical Engineering (Q1); Ceramics and Composites (Q2); Mechanics of Materials (Q2)'), (7084, 'American Journal of Audiology', 10590889, 0.688, 'Q2', 45, 84, 3543, 344, 208, '2', '1996-2020', 'Speech and Hearing (Q2)'), (7085, 'Austral Ecology', 14429985, 0.688, 'Q2', 87, 121, 7336, 571, 308, '3', '1981, 1996-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7086, 'Cancer Investigation', 7357907, 0.688, 'Q2', 84, 62, 2885, 386, 173, '2', '1983-2020', 'Medicine (miscellaneous) (Q2); Cancer Research (Q3); Oncology (Q3)'), (7087, 'Contemporary Italian Politics', 23248823, 0.688, 'Q1', 12, 37, 1358, 127, 66, '2', '2013-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (7088, 'Journal of Perinatal Medicine', 3005577, 0.688, 'Q2', 67, 143, 4656, 798, 411, '5', '1973-2020', 'Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (7089, 'Journal of Sociology', 17412978, 0.688, 'Q1', 50, 83, 4443, 302, 145, '3', '1965-2020', 'Sociology and Political Science (Q1)'), (7090, 'Journal of Vector Ecology', 10811710, 0.688, 'Q2', 51, 42, 1911, 227, 121, '2', '1996-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7091, 'Linear and Multilinear Algebra', 3081087, 0.688, 'Q2', 40, 411, 8735, 1034, 644, '3', '1973-2020', 'Algebra and Number Theory (Q2)'), (7092, 'Military Medical Research', 20549369, 0.688, 'Q2', 19, 59, 3526, 328, 114, '3', '2014-2020', 'Medicine (miscellaneous) (Q2)'), (7093, 'Advances in Computational Design', 23838477, 0.687, 'Q1', 10, 23, 948, 216, 71, '13', '2016-2020', 'Computational Mechanics (Q1); Computer Graphics and Computer-Aided Design (Q1); Computational Mathematics (Q2)'), (7094, 'Aging Male', 13685538, 0.687, 'Q2', 45, 107, 3716, 633, 183, '3', '1998-2020', 'Geriatrics and Gerontology (Q2); Medicine (miscellaneous) (Q2)'), (7095, 'Comparative Immunology, Microbiology and Infe', 18781667, 0.687, 'Q1', 55, 135, 5819, 625, 263, '3', '1978-2020', 'Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3); Infectious Diseases (Q3); Microbiology (Q3)'), (7096, 'International Journal of Human-Computer Inter', 15327590, 0.687, 'Q2', 67, 164, 10244, 1282, 316, '2', '1989-1996, 1998-2020', 'Computer Science Applications (Q2); Human-Computer Interaction (Q2); Human Factors and Ergonomics (Q2)'), (7097, 'Jahrbucher fur Nationalokonomie und Statistik', 214027, 0.687, 'Q1', 21, 29, 989, 126, 81, '5', '1978, 1980, 1982, 1985, 1987-1990, 1992-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (7098, 'Journal of Asthma', 15324303, 0.687, 'Q2', 69, 348, 12054, 984, 442, '2', '1963-1976, 1978-2020', 'Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Pulmonary and Respiratory Medicine (Q2); Immunology and Allergy (Q3)'), (7099, 'Journal of Nursing Administration', 20443, 0.687, 'Q1', 82, 127, 1665, 586, 376, '2', '1971-2020', 'Leadership and Management (Q1); Medicine (miscellaneous) (Q2)'), (7100, 'Modelling and Simulation in Materials Science', 9650393, 0.687, 'Q2', 82, 90, 4471, 915, 361, '3', '1992-2020', 'Computer Science Applications (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Modeling and Simulation (Q2)'), (7101, 'New York Journal of Mathematics', 10769803, 0.687, 'Q2', 30, 57, 1277, 226, 198, '2', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (7102, 'Pervasive and Mobile Computing', 15741192, 0.687, 'Q1', 64, 68, 2760, 1558, 342, '16', '2005-2020', 'Computer Networks and Communications (Q1); Computer Science (miscellaneous) (Q1); Hardware and Architecture (Q1); Information Systems (Q1); Software (Q1); Applied Mathematics (Q2); Computer Science Ap'), (7103, 'Revista Brasileira de Epidemiologia', 1415790, 0.687, 'Q2', 32, 121, 3590, 461, 241, '14', '2006-2020', 'Public Health, Environmental and Occupational Health (Q2); Epidemiology (Q3)'), (7104, 'Atherosclerosis Supplements', 18785050, 0.686, 'Q2', 50, 11, 280, 195, 92, '42', '2000-2019', 'Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2); Medicine (miscellaneous) (Q2)'), (7105, 'Blood Purification', 2535068, 0.686, 'Q2', 57, 149, 4091, 690, 305, '19', '1983-2020', 'Hematology (Q2); Medicine (miscellaneous) (Q2); Nephrology (Q2)'), (7106, 'IEEE Robotics and Automation Magazine', 10709932, 0.686, 'Q1', 92, 75, 1176, 759, 173, '2', '1994-2020', 'Electrical and Electronic Engineering (Q1); Computer Science Applications (Q2); Control and Systems Engineering (Q2)'), (7107, 'JBJS Essential Surgical Techniques', 21602204, 0.686, 'Q2', 7, 4, 110, 108, 67, '2', '2015-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (7108, 'Journal of Control and Decision', 23307714, 0.686, 'Q1', 16, 42, 1432, 197, 57, '3', '2014-2020', 'Computer Networks and Communications (Q1); Information Systems (Q1); Artificial Intelligence (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2); Human-Computer Interaction (Q2);'), (7109, 'Journal of Electronic Commerce Research', 19389027, 0.686, 'Q1', 33, 16, 1216, 168, 56, '2', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Computer Science Applications (Q2)'), (7110, 'Journal of Outdoor Recreation and Tourism', 22130780, 0.686, 'Q2', 21, 65, 4080, 381, 114, '3', '2013-2020', 'Tourism, Leisure and Hospitality Management (Q2)'), (7111, 'Journal of Periodontal and Implant Science', 20932278, 0.686, 'Q2', 26, 43, 1196, 251, 107, '13', '2010-2020', 'Oral Surgery (Q2); Periodontics (Q3)'), (7112, 'Journal of Thermal Spray Technology', 15441016, 0.686, 'Q1', 84, 168, 6687, 1346, 436, '2', '1992-2020', 'Materials Chemistry (Q1); Surfaces, Coatings and Films (Q1); Condensed Matter Physics (Q2)'), (7113, 'Library Collections, Acquisition and Technica', 14649055, 0.686, 'Q1', 21, 0, 0, 15, 6, '3', '1980-1997, 1999-2015, 2017', 'Information Systems (Q1); Library and Information Sciences (Q1)'), (7114, 'Mineral Processing and Extractive Metallurgy ', 8827508, 0.686, 'Q1', 36, 80, 5037, 456, 118, '3', '1983, 1985, 1987-1998, 2000-2020', 'Mechanical Engineering (Q1); Chemistry (miscellaneous) (Q2); Economic Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (7115, 'PACE - Pacing and Clinical Electrophysiology', 1478389, 0.686, 'Q2', 101, 257, 5327, 1024, 662, '3', '1978-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (7116, 'Revista Iberoamericana de Psicologia y Salud', 21712069, 0.686, 'Q2', 11, 9, 476, 83, 31, '12', '2016-2020', 'Psychology (miscellaneous) (Q2)'), (7117, 'Advances in Cement Research', 9517197, 0.685, 'Q1', 42, 55, 1956, 216, 126, '3', '1987-1990, 1993-2020', 'Building and Construction (Q1); Materials Science (miscellaneous) (Q2)'), (7118, 'Agroforestry Systems', 15729680, 0.685, 'Q1', 78, 211, 9842, 922, 403, '16', '1982-2020', 'Agronomy and Crop Science (Q1); Forestry (Q1)'), (7119, 'Annals of GIS', 19475691, 0.685, 'Q1', 28, 36, 1731, 221, 73, '3', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Computer Science Applications (Q2)'), (7120, 'Catalysis, Structure and Reactivity', 20550758, 0.685, 'Q2', 11, 0, 0, 54, 25, '3', '2015-2019', 'Analytical Chemistry (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Catalysis (Q3)'), (7121, 'Clinical Pharmacology: Advances and Applicati', 11791438, 0.685, 'Q2', 27, 28, 926, 158, 53, '41', '2009-2020', 'Pharmacology (medical) (Q2)'), (7122, 'Global Networks', 14710374, 0.685, 'Q1', 65, 52, 3167, 214, 86, '3', '2004-2020', 'Social Sciences (miscellaneous) (Q1)'), (7123, 'Journal fur Ornithologie', 218375, 0.685, 'Q1', 56, 118, 6782, 491, 326, '5', '1853-1944, 1951-2020', 'Animal Science and Zoology (Q1)'), (7124, 'Journal of Consciousness Studies', 20512201, 0.685, 'Q1', 65, 73, 2800, 266, 212, '3', '1996-2020', 'Philosophy (Q1); Artificial Intelligence (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Psychology (miscellaneous) (Q2)'), (7125, 'Journal of Difference Equations and Applicati', 15635120, 0.685, 'Q2', 45, 80, 1943, 530, 317, '3', '1995, 2000, 2002-2020', 'Algebra and Number Theory (Q2); Analysis (Q2); Applied Mathematics (Q2)'), (7126, 'Journal of Medical Systems', 1485598, 0.685, 'Q1', 79, 208, 6472, 3810, 769, '2', '1977-2020', 'Information Systems (Q1); Health Informatics (Q2); Health Information Management (Q2); Medicine (miscellaneous) (Q2)'), (7127, 'Research in Pharmaceutical Sciences', 17355362, 0.685, 'Q1', 29, 60, 2018, 551, 175, '4', '2009-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1)'), (7128, 'Simulation in Healthcare', 15592332, 0.685, 'Q2', 49, 72, 1748, 410, 181, '2', '2006-2020', 'Education (Q2); Medicine (miscellaneous) (Q2); Modeling and Simulation (Q2); Epidemiology (Q3)'), (7129, 'Theory and Practice of Logic Programming', 14753081, 0.685, 'Q1', 47, 46, 1495, 343, 134, '3', '2001-2020', 'Hardware and Architecture (Q1); Software (Q1); Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Theoretical Computer Science (Q2)'), (7130, 'American Journal of the Medical Sciences', 29629, 0.684, 'Q2', 87, 236, 5560, 1020, 443, '2', '1830-1833, 1945-2020', 'Medicine (miscellaneous) (Q2)'), (7131, 'Amphibia - Reptilia', 1735373, 0.684, 'Q1', 44, 56, 3046, 244, 143, '16', '1980-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (7132, 'Artificial Organs', 15251594, 0.684, 'Q2', 76, 250, 6994, 1271, 482, '3', '1977-2020', 'Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)'), (7133, 'Cognitive Neuropsychology', 14640627, 0.684, 'Q1', 89, 47, 2781, 174, 75, '3', '1984-2020', 'Arts and Humanities (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Neuropsychology and Physiological Psychology (Q2); Cognitive Neuroscience (Q3); Experimental and Cognitive Psyc'), (7134, 'Diabetes and Metabolic Syndrome: Clinical Res', 18780334, 0.684, 'Q2', 40, 403, 12562, 2232, 900, '16', '2007-2020', 'Internal Medicine (Q2); Medicine (miscellaneous) (Q2); Endocrinology, Diabetes and Metabolism (Q3)'), (7135, 'Food Analytical Methods', 1936976, 0.684, 'Q1', 46, 228, 8485, 3195, 1052, '2', '2008-2020', 'Safety Research (Q1); Analytical Chemistry (Q2); Applied Microbiology and Biotechnology (Q2); Food Science (Q2); Safety, Risk, Reliability and Quality (Q2)'), (7136, 'Healthcare Informatics Research', 2093369, 0.684, 'Q2', 29, 45, 994, 450, 123, '13', '2010-2020', 'Biomedical Engineering (Q2); Health Informatics (Q2); Health Information Management (Q2)'), (7137, 'ISPRS International Journal of Geo-Informatio', 22209964, 0.684, 'Q1', 43, 630, 33591, 4754, 1385, '19', '2012-2020', 'Earth and Planetary Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1); Computers in Earth Sciences (Q2)'), (7138, 'Journal of Aging and Physical Activity', 10638652, 0.684, 'Q2', 58, 108, 4897, 573, 258, '2', '1996-2020', 'Geriatrics and Gerontology (Q2); Gerontology (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Sports Science (Q3)'), (7139, 'Journal of Digestive Diseases', 17512972, 0.684, 'Q3', 51, 96, 3558, 486, 236, '11', '2007-2020', 'Gastroenterology (Q3)'), (7140, 'Journal of Dual Diagnosis', 15504271, 0.684, 'Q2', 26, 36, 2507, 143, 99, '2', '2004-2020', 'Psychiatry and Mental Health (Q2)'), (7141, 'Journal of High Technology Management Researc', 10478310, 0.684, 'Q2', 46, 18, 1219, 243, 56, '3', '1990-2020', 'Computer Science Applications (Q2); Information Systems and Management (Q2); Management of Technology and Innovation (Q2); Marketing (Q2); Strategy and Management (Q2)'), (7142, 'Journal of Pathology and Translational Medici', 23837845, 0.684, 'Q2', 27, 60, 2155, 443, 205, '13', '2015-2020', 'Histology (Q2); Pathology and Forensic Medicine (Q2)'), (7143, 'Meteorologische Zeitschrift', 16101227, 0.684, 'Q2', 58, 35, 1563, 308, 118, '5', '1996-2020', 'Atmospheric Science (Q2)'), (7144, 'Zhongguo Kuangye Daxue Xuebao/Journal of Chin', 10001964, 0.684, 'Q1', 39, 121, 3828, 879, 469, '1', '1998-2020', 'Mechanical Engineering (Q1); Civil and Structural Engineering (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (7145, 'Australian Journal of Agricultural and Resour', 1364985, 0.683, 'Q1', 49, 58, 2849, 267, 109, '3', '1996-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (7146, 'Computational Management Science', 1619697, 0.683, 'Q1', 34, 28, 756, 136, 83, '5', '2005-2020', 'Information Systems (Q1); Management Information Systems (Q1)'), (7147, 'Economic Development Quarterly', 15523543, 0.683, 'Q1', 46, 27, 1291, 156, 72, '2', '1987-2020', 'Urban Studies (Q1); Development (Q2); Economics and Econometrics (Q2)'), (7148, 'International Journal of Sustainable Developm', 17452627, 0.683, 'Q1', 43, 89, 4796, 645, 187, '3', '1994-2020', 'Geography, Planning and Development (Q1); Management, Monitoring, Policy and Law (Q2)'), (7149, 'Journal of Economic Inequality', 15691721, 0.683, 'Q1', 38, 28, 1323, 123, 70, '16', '2004-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1); Organizational Behavior and Human Resource Management (Q2)'), (7150, 'Statistics', 2331888, 0.683, 'Q2', 33, 64, 1818, 263, 216, '3', '1985-2020', 'Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (7151, 'Adsorption Science and Technology', 2636174, 0.682, 'Q1', 36, 29, 1182, 831, 224, '3', '1984-1985, 1989-2020', 'Chemical Engineering (miscellaneous) (Q1); Chemistry (miscellaneous) (Q2); Surfaces and Interfaces (Q2)'), (7152, 'Advances in Space Research', 2731177, 0.682, 'Q1', 96, 556, 23227, 4143, 1519, '3', '1981-2020', 'Aerospace Engineering (Q1); Astronomy and Astrophysics (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Geophysics (Q2); Space and Planetary Science (Q2); Atmospheric Science (Q3)'), (7153, 'Australian Archaeology', 3122417, 0.682, 'Q1', 23, 40, 1488, 95, 55, '3', '2002-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (7154, 'Borsa Istanbul Review', 22148450, 0.682, 'Q2', 21, 60, 3330, 398, 86, '18', '2013-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (7155, 'Canadian Geriatrics Journal', 19258348, 0.682, 'Q2', 21, 30, 1222, 116, 48, '9', '2011-2020', 'Geriatrics and Gerontology (Q2); Gerontology (Q2)'), (7156, 'Canadian Urological Association Journal', 19201214, 0.682, 'Q2', 16, 250, 5433, 637, 427, '9', '2014-2020', 'Urology (Q2)'), (7157, 'Journal of Family Violence', 8857482, 0.682, 'Q1', 77, 133, 7012, 395, 199, '2', '1986-2020', 'Law (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Clinical Psychology (Q2)'), (7158, 'Journal of Thoracic Disease', 20721439, 0.682, 'Q2', 60, 918, 28602, 7461, 3034, '35', '2009-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (7159, 'Materials', 19961944, 0.682, 'Q2', 111, 5817, 279196, 31275, 8238, '19', '2009-2020', 'Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)'), (7160, 'Mediterranean Journal of Hematology and Infec', 20353006, 0.682, 'Q2', 31, 83, 3288, 426, 186, '7', '2010-2020', 'Hematology (Q2); Infectious Diseases (Q3)'), (7161, 'Review of Symbolic Logic', 17550211, 0.682, 'Q1', 25, 77, 2642, 116, 97, '3', '2008-2020', 'Philosophy (Q1); Logic (Q2); Mathematics (miscellaneous) (Q2)'), (7162, 'Advances in Orthopedics', 20903472, 0.681, 'Q2', 15, 33, 850, 115, 64, '32', '2014-2020', 'Orthopedics and Sports Medicine (Q2)'), (7163, 'Agricultural and Environmental Letters', 24719625, 0.681, 'Q1', 12, 38, 1117, 188, 28, '2', '2016-2020', 'Agronomy and Crop Science (Q1); Management, Monitoring, Policy and Law (Q2); Soil Science (Q2)'), (7164, 'Autoimmune Diseases', 20900430, 0.681, 'Q2', 32, 5, 309, 22, 12, '32', '2010-2020', 'Immunology and Microbiology (miscellaneous) (Q2); Immunology (Q3); Immunology and Allergy (Q3)'), (7165, 'Business Research', 21983402, 0.681, 'Q1', 21, 48, 4029, 176, 49, '19', '2008-2020', 'Business, Management and Accounting (miscellaneous) (Q1)'), (7166, 'Ecological Processes', 21921709, 0.681, 'Q2', 22, 65, 4280, 366, 128, '19', '2012-2020', 'Ecological Modeling (Q2); Ecology (Q2)'), (7167, 'EuroMed Journal of Business', 14502194, 0.681, 'Q1', 21, 36, 3029, 287, 68, '3', '2006-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Finance (Q2)'), (7168, 'IEEE Sensors Journal', 1530437, 0.681, 'Q1', 121, 1705, 57212, 14189, 3409, '2', '2001-2020', 'Electrical and Electronic Engineering (Q1); Instrumentation (Q1)'), (7169, 'International Journal of Machine Learning and', 1868808, 0.681, 'Q1', 44, 190, 9560, 2327, 563, '2', '2010-2020', 'Computer Vision and Pattern Recognition (Q1); Software (Q1); Artificial Intelligence (Q2)'), (7170, 'International Migration', 14682435, 0.681, 'Q1', 64, 147, 7088, 544, 287, '3', '1961-2020', 'Demography (Q1)'), (7171, 'Journal of Applied Phycology', 15735176, 0.681, 'Q2', 108, 366, 21746, 3101, 975, '16', '1989-2020', 'Aquatic Science (Q2); Plant Science (Q2)'), (7172, 'Journal of Medical Biochemistry', 14528258, 0.681, 'Q2', 17, 12, 395, 324, 161, '55', '2007-2019', 'Biochemistry (medical) (Q2); Clinical Biochemistry (Q3)'), (7173, 'Mechanics Research Communications', 936413, 0.681, 'Q1', 66, 128, 3525, 797, 285, '3', '1974-2020', 'Mechanical Engineering (Q1); Civil and Structural Engineering (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (7174, 'Applied Measurement in Education', 15324818, 0.68, 'Q2', 42, 33, 923, 115, 75, '2', '1988-2020', 'Developmental and Educational Psychology (Q2); Education (Q2)'), (7175, 'Communications', 3412059, 0.68, 'Q1', 35, 57, 2954, 119, 67, '5', '1975-1988, 1990-2020', 'Arts and Humanities (miscellaneous) (Q1); Communication (Q1)'), (7176, 'Communications in Algebra', 927872, 0.68, 'Q2', 62, 504, 9222, 1275, 1286, '2', '1974-2020', 'Algebra and Number Theory (Q2)'), (7177, 'Environmetrics', 1099095, 0.68, 'Q2', 58, 58, 2314, 248, 126, '3', '1990-2020', 'Ecological Modeling (Q2); Statistics and Probability (Q2)'), (7178, 'Fish Physiology and Biochemistry', 9201742, 0.68, 'Q2', 79, 196, 10882, 1134, 417, '16', '1986-2020', 'Aquatic Science (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Physiology (Q3)'), (7179, 'Insect Systematics and Evolution', 1876312, 0.68, 'Q2', 30, 30, 1799, 60, 46, '16', '1970-1974, 1976-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (7180, 'Journal of Empirical Research on Human Resear', 15562646, 0.68, 'Q1', 29, 55, 2248, 244, 138, '2', '2009-2020', 'Communication (Q1); Law (Q1); Education (Q2); Medicine (miscellaneous) (Q2); Social Psychology (Q2)'), (7181, 'Oxford Economic Papers', 307653, 0.68, 'Q2', 69, 51, 2467, 216, 153, '3', '1938-1942, 1945, 1947, 1949-2020', 'Economics and Econometrics (Q2)'), (7182, 'Philosophical Explorations', 17415918, 0.68, 'Q1', 32, 23, 620, 89, 84, '3', '1998-2020', 'Philosophy (Q1)'), (7183, 'Vox Sanguinis', 14230410, 0.68, 'Q2', 83, 149, 4381, 553, 304, '3', '1952, 1954, 1956-2020', 'Hematology (Q2); Medicine (miscellaneous) (Q2)'), (7184, 'Annals of the American Academy of Political a', 15523349, 0.679, 'Q1', 102, 83, 4150, 587, 246, '2', '1890-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (7185, 'Chinese Journal of Polymer Science (English E', 2567679, 0.679, 'Q1', 36, 162, 8060, 1294, 445, '5', '1985-2020', 'Polymers and Plastics (Q1); Chemical Engineering (miscellaneous) (Q2); Organic Chemistry (Q2)'), (7186, 'Current Opinion in Otolaryngology and Head an', 15316998, 0.679, 'Q2', 64, 78, 417, 487, 232, '2', '1995-2020', 'Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Surgery (Q2)'), (7187, 'Current Pain and Headache Reports', 15343081, 0.679, 'Q2', 63, 81, 4635, 805, 224, '2', '2001-2020', 'Anesthesiology and Pain Medicine (Q2); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q3)'), (7188, 'European Cytokine Network', 11485493, 0.679, 'Q3', 64, 19, 1375, 151, 55, '8', '1990-2020', 'Clinical Biochemistry (Q3); Immunology (Q3); Immunology and Allergy (Q3)'), (7189, 'IEEE Pervasive Computing', 15361268, 0.679, 'Q1', 101, 43, 503, 661, 141, '2', '2002-2020', 'Software (Q1); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2)'), (7190, 'IEEE Transactions on Computers', 189340, 0.679, 'Q1', 126, 195, 5113, 1817, 439, '2', '1968-2020', 'Hardware and Architecture (Q1); Software (Q1); Computational Theory and Mathematics (Q2); Theoretical Computer Science (Q2)'), (7191, 'Journal of Burn Care and Research', 15590488, 0.679, 'Q2', 78, 188, 5815, 910, 488, '2', '2001, 2006-2020', 'Emergency Medicine (Q2); Medicine (miscellaneous) (Q2); Rehabilitation (Q2); Surgery (Q2)'), (7192, 'Journal of integrative bioinformatics', 16134516, 0.679, 'Q2', 21, 18, 0, 212, 80, '5', '2008-2020', 'Medicine (miscellaneous) (Q2)'), (7193, 'Local and Regional Anesthesia', 11787112, 0.679, 'Q2', 17, 26, 1098, 119, 48, '41', '2010-2020', 'Anesthesiology and Pain Medicine (Q2)'), (7194, 'Mine Water and the Environment', 16161068, 0.679, 'Q2', 35, 79, 3494, 640, 219, '5', '1991-1995, 2001-2002, 2004-2020', 'Geotechnical Engineering and Engineering Geology (Q2); Water Science and Technology (Q2)'), (7195, 'Petroleum Science', 16725107, 0.679, 'Q2', 31, 138, 6662, 926, 243, '1', '2008-2020', 'Economic Geology (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geochemistry and Petrology (Q2); Geology (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geol'), (7196, 'River Research and Applications', 15351459, 0.679, 'Q2', 94, 188, 9572, 975, 419, '3', '1996-2020', 'Environmental Chemistry (Q2); Environmental Science (miscellaneous) (Q2); Water Science and Technology (Q2)'), (7197, 'Studies in Philosophy and Education', 393746, 0.679, 'Q1', 31, 48, 1971, 196, 124, '16', '1960-1970, 1972-1976, 1979, 1990-2020', 'Philosophy (Q1); Education (Q2)'), (7198, 'Anatomical Record', 19328486, 0.678, 'Q2', 62, 296, 18053, 1030, 545, '2', '2007-2020', 'Anatomy (Q2); Biotechnology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Histology (Q2)'), (7199, 'Contemporary Clinical Trials Communications', 24518654, 0.678, 'Q2', 14, 182, 6776, 680, 391, '2', '2015-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2)'), (7200, 'Journal of Aerosol Medicine and Pulmonary Dru', 19412703, 0.678, 'Q2', 68, 41, 1303, 291, 117, '2', '2008-2020', 'Pharmaceutical Science (Q2); Pharmacology (medical) (Q2); Pulmonary and Respiratory Medicine (Q2)'), (7201, 'Journal of Asian Earth Sciences: X', 25900560, 0.678, 'Q2', 2, 18, 1721, 17, 9, '3', '2019-2020', 'Earth-Surface Processes (Q2); Geology (Q2)'), (7202, 'Journal of Cardiothoracic and Vascular Anesth', 10530770, 0.678, 'Q2', 82, 770, 22269, 2501, 1041, '3', '1991-2020', 'Anesthesiology and Pain Medicine (Q2); Cardiology and Cardiovascular Medicine (Q2)'), (7203, 'Journal of Contemporary Accounting and Econom', 18155669, 0.678, 'Q2', 23, 30, 1845, 195, 66, '3', '2009-2020', 'Accounting (Q2)'), (7204, 'Journal of Elasticity', 15732681, 0.678, 'Q1', 61, 70, 2348, 376, 146, '16', '1971-2020', 'Mechanical Engineering (Q1); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (7205, 'Journal of Reinforced Plastics and Composites', 7316844, 0.678, 'Q1', 64, 78, 3680, 978, 304, '3', '1982-2020', 'Materials Chemistry (Q1); Mechanical Engineering (Q1); Polymers and Plastics (Q1); Ceramics and Composites (Q2); Mechanics of Materials (Q2)'), (7206, 'Scandinavian Journal of Caring Sciences', 14716712, 0.678, 'Q2', 66, 203, 8643, 868, 357, '3', '1987-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (7207, 'Sexual and Reproductive Healthcare', 18775764, 0.678, 'Q1', 27, 60, 1910, 398, 194, '16', '2010-2020', 'Maternity and Midwifery (Q1); Obstetrics and Gynecology (Q2)'), (7208, 'Annals of Applied Biology', 17447348, 0.677, 'Q1', 80, 82, 4321, 538, 207, '3', '1914-2020', 'Agronomy and Crop Science (Q1)'), (7209, 'Breathe', 18106838, 0.677, 'Q2', 23, 92, 2703, 337, 126, '3', '2010-2020', 'Pulmonary and Respiratory Medicine (Q2)'), (7210, 'Canadian Journal of Forest Research', 455067, 0.677, 'Q1', 121, 135, 7520, 951, 448, '9', '1974, 1976-2020', 'Forestry (Q1); Ecology (Q2); Global and Planetary Change (Q2)'), (7211, 'Gastrointestinal Endoscopy Clinics of North A', 10525157, 0.677, 'Q3', 56, 64, 2717, 312, 147, '3', '1993-2020', 'Gastroenterology (Q3)'), (7212, 'Ground Water Monitoring and Remediation', 10693629, 0.677, 'Q2', 47, 28, 992, 154, 76, '2', '1981-2020', 'Civil and Structural Engineering (Q2); Water Science and Technology (Q2)'), (7213, 'HemaSphere', 25729241, 0.677, 'Q3', 11, 44, 1455, 316, 161, '2', '2017-2020', 'Hematology (Q3)'), (7214, 'International Emergency Nursing', 1878013, 0.677, 'Q1', 39, 66, 2434, 398, 180, '3', '2008-2020', 'Emergency Nursing (Q1)'), (7215, 'International Journal of Dermatology', 119059, 0.677, 'Q2', 93, 617, 10257, 1792, 724, '3', '1963-2020', 'Dermatology (Q2)'), (7216, 'Journal of Applied Biomechanics', 15432688, 0.677, 'Q2', 56, 56, 1904, 386, 198, '2', '1995-2020', 'Biophysics (Q2); Orthopedics and Sports Medicine (Q2); Rehabilitation (Q2); Sports Science (Q3)'), (7217, 'Journal of Computational Finance', 14601559, 0.677, 'Q2', 14, 8, 240, 80, 59, '2', '2011-2020', 'Applied Mathematics (Q2); Computer Science Applications (Q2); Finance (Q2)'), (7218, 'Journal of Hydro-Environment Research', 15706443, 0.677, 'Q2', 38, 45, 2129, 313, 114, '16', '2007-2020', 'Civil and Structural Engineering (Q2); Environmental Chemistry (Q2); Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (7219, 'Journal of Nursing Regulation', 21558264, 0.677, 'Q1', 19, 41, 1066, 196, 149, '2', '2010-2020', 'Issues, Ethics and Legal Aspects (Q1); Nursing (miscellaneous) (Q1)'), (7220, 'Magnetic Resonance in Medical Sciences', 13473182, 0.677, 'Q2', 40, 53, 1289, 283, 134, '6', '2002-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (7221, 'Trees - Structure and Function', 9311890, 0.677, 'Q1', 87, 121, 7640, 1001, 430, '5', '1986-2020', 'Forestry (Q1); Ecology (Q2); Plant Science (Q2); Physiology (Q3)'), (7222, 'BMJ Evidence-Based Medicine', 25154478, 0.676, 'Q2', 11, 131, 3030, 256, 91, '3', '2018-2020', 'Medicine (miscellaneous) (Q2)'), (7223, 'Expert Review of Endocrinology and Metabolism', 17446651, 0.676, 'Q3', 25, 40, 3968, 301, 110, '3', '2006-2020', 'Endocrinology, Diabetes and Metabolism (Q3)'), (7224, 'Forests', 19994907, 0.676, 'Q1', 44, 1351, 84570, 6517, 2418, '19', '2010-2020', 'Forestry (Q1)'), (7225, 'HardwareX', 24680672, 0.676, 'Q1', 12, 68, 2197, 301, 87, '3', '2017-2020', 'Industrial and Manufacturing Engineering (Q1); Instrumentation (Q1); Mechanical Engineering (Q1); Biomedical Engineering (Q2); Civil and Structural Engineering (Q2)'), (7226, 'Journal of Blood Medicine', 11792736, 0.676, 'Q3', 18, 56, 2231, 249, 102, '41', '2014-2020', 'Hematology (Q3)'), (7227, 'Journal of Special Education Technology', 23813121, 0.676, 'Q2', 33, 46, 1843, 142, 73, '2', '1996-2020', 'Computer Science Applications (Q2); Education (Q2)'), (7228, 'Ophthalmic Surgery Lasers and Imaging Retina', 23258160, 0.676, 'Q2', 30, 88, 1747, 804, 554, '2', '2013-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q2); Surgery (Q2)'), (7229, 'Shock Waves', 14322153, 0.676, 'Q2', 54, 65, 2125, 463, 231, '2', '1991-2020', 'Mechanical Engineering (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (7230, 'TOP', 11345764, 0.676, 'Q2', 26, 52, 1762, 134, 61, '5', '1993-1996, 2003, 2008-2020', 'Discrete Mathematics and Combinatorics (Q2); Information Systems and Management (Q2); Management Science and Operations Research (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2)'), (7231, 'Acta Petrologica Sinica', 20958927, 0.675, 'Q2', 92, 184, 16250, 1195, 595, '1', '1980-1983, 1986-2020', 'Geochemistry and Petrology (Q2)'), (7232, 'BMC Urology', 14712490, 0.675, 'Q2', 42, 192, 5369, 831, 374, '3', '2001-2020', 'Medicine (miscellaneous) (Q2); Reproductive Medicine (Q2); Urology (Q2)'), (7233, 'Canadian Respiratory Journal', 11982241, 0.675, 'Q2', 53, 65, 2299, 386, 167, '32', '1996-2020', 'Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)'), (7234, 'Journal of Documentation', 220418, 0.675, 'Q1', 64, 76, 4687, 483, 252, '3', '1945-2020', 'Information Systems (Q1); Library and Information Sciences (Q1)'), (7235, 'Science and Technology Studies', 22434690, 0.675, 'Q1', 14, 20, 1142, 108, 55, '38', '2012-2020', 'History and Philosophy of Science (Q1); Multidisciplinary (Q1)'), (7236, 'Asian Nursing Research', 20937482, 0.674, 'Q1', 26, 44, 1678, 322, 123, '16', '2007-2008, 2010-2020', 'Nursing (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (7237, 'Bulletin of the Geological Society of Denmark', 116297, 0.674, 'Q2', 28, 8, 383, 36, 32, '25', '1978-1990, 1997, 1999-2009, 2011-2020', 'Geology (Q2)'), (7238, 'Child and Adolescent Psychiatric Clinics of N', 10564993, 0.674, 'Q2', 71, 59, 3297, 372, 158, '3', '1995-2020', 'Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)'), (7239, 'Cold Spring Harbor Protocols', 19403402, 0.674, 'Q2', 51, 102, 1159, 595, 525, '2', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (7240, 'Development Genes and Evolution', 949944, 0.674, 'Q3', 75, 31, 1820, 114, 75, '5', '1996-2020', 'Developmental Biology (Q3); Genetics (Q3)'), (7241, 'International Journal of Control, Automation ', 20054092, 0.674, 'Q2', 55, 303, 10560, 3032, 886, '13', '2003-2020', 'Computer Science Applications (Q2); Control and Systems Engineering (Q2)'), (7242, 'International Journal of Dental Hygiene', 16015029, 0.674, 'Q2', 38, 50, 1893, 382, 184, '3', '2003-2020', 'Dentistry (miscellaneous) (Q2)'), (7243, 'Neurodegenerative disease management', 17582024, 0.674, 'Q2', 23, 28, 1413, 242, 98, '3', '2014-2019', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q3)'), (7244, 'Neurology: Clinical Practice', 21630402, 0.674, 'Q3', 29, 22, 352, 455, 276, '2', '2011-2020', 'Neurology (clinical) (Q3)'), (7245, 'Oxford Development Studies', 14699966, 0.674, 'Q1', 49, 32, 1632, 196, 91, '3', '1996-2020', 'Geography, Planning and Development (Q1); Development (Q2)'), (7246, 'Physiological Measurement', 9673334, 0.674, 'Q2', 101, 172, 6884, 1873, 566, '3', '1993-2020', 'Biomedical Engineering (Q2); Biophysics (Q2); Physiology (Q3); Physiology (medical) (Q3)'), (7247, 'Psychoanalytic Psychology', 19391331, 0.674, 'Q2', 38, 21, 1268, 160, 151, '2', '1984-2020', 'Clinical Psychology (Q2)'), (7248, 'Renal Failure', 886022, 0.674, 'Q2', 54, 156, 5282, 826, 314, '3', '1976-1985, 1987, 1989-2020', 'Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2); Nephrology (Q2)'), (7249, 'Ars Mathematica Contemporanea', 18553974, 0.673, 'Q2', 18, 48, 956, 185, 172, '60', '2011-2020', 'Algebra and Number Theory (Q2); Discrete Mathematics and Combinatorics (Q2); Geometry and Topology (Q2); Theoretical Computer Science (Q2)'), (7250, 'Epileptic Disorders', 19506945, 0.673, 'Q2', 53, 113, 3088, 377, 201, '2', '1999-2020', 'Medicine (miscellaneous) (Q2); Neurology (Q3); Neurology (clinical) (Q3)'), (7251, 'International Journal of Cultural Studies', 13678779, 0.673, 'Q1', 41, 71, 3630, 210, 129, '3', '1998-2020', 'Cultural Studies (Q1)'), (7252, 'International Journal of STD and AIDS', 9564624, 0.673, 'Q2', 74, 199, 5787, 885, 615, '3', '1990-2020', 'Dermatology (Q2); Pharmacology (medical) (Q2); Public Health, Environmental and Occupational Health (Q2); Infectious Diseases (Q3)'), (7253, 'Quarterly Journal of Mechanics and Applied Ma', 335614, 0.673, 'Q2', 36, 14, 380, 112, 64, '3', '1948-2020', 'Applied Mathematics (Q2); Condensed Matter Physics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (7254, 'Rehabilitation Psychology', 905550, 0.673, 'Q2', 66, 37, 1779, 407, 180, '2', '1982-2020', 'Clinical Psychology (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Psychiatry and Mental Health (Q2); Rehabilitation (Q2)'), (7255, 'Social Currents', 23294973, 0.673, 'Q1', 17, 34, 2409, 213, 100, '2', '2014-2020', 'Social Sciences (miscellaneous) (Q1)'), (7256, 'ACM Transactions on Information Systems', 10468188, 0.672, 'Q1', 83, 44, 3081, 850, 126, '2', '1983-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Information Systems (Q1); Computer Science Applications (Q2)'), (7257, 'Arctic Science', 23687460, 0.672, 'Q1', 4, 30, 1941, 36, 14, '9', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)'), (7258, 'International Journal of Health Planning and ', 7496753, 0.672, 'Q2', 41, 164, 5678, 797, 498, '3', '1985-2020', 'Health Policy (Q2); Medicine (miscellaneous) (Q2)'), (7259, 'International Journal of Health Services', 15414469, 0.672, 'Q2', 59, 69, 3487, 234, 141, '2', '1971-2020', 'Health Policy (Q2)'), (7260, 'International Journal of Obstetric Anesthesia', 959289, 0.672, 'Q2', 54, 101, 2138, 409, 184, '2', '1991-2020', 'Anesthesiology and Pain Medicine (Q2); Obstetrics and Gynecology (Q2)'), (7261, 'Journal of Fish Biology', 221112, 0.672, 'Q2', 115, 391, 19758, 1460, 798, '3', '1969-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7262, 'Journal of Immunotoxicology', 1547691, 0.672, 'Q3', 36, 21, 1007, 180, 62, '2', '2004-2020', 'Immunology (Q3); Toxicology (Q3)'), (7263, 'Journal of Urban Ecology', 20585543, 0.672, 'Q1', 9, 30, 2008, 166, 75, '2', '2015-2020', 'Urban Studies (Q1); Ecology (Q2)'), (7264, 'KONA Powder and Particle Journal', 2884534, 0.672, 'Q1', 35, 20, 1307, 217, 61, '6', '1983-2020', 'Engineering (miscellaneous) (Q1); Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)'), (7265, 'Mathematics and Mechanics of Solids', 17413028, 0.672, 'Q2', 44, 144, 5974, 1130, 434, '2', '1996-2020', 'Materials Science (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (7266, 'Meteorological Applications', 13504827, 0.672, 'Q3', 59, 135, 6069, 468, 188, '2', '1994-2020', 'Atmospheric Science (Q3)'), (7267, 'Synthetic Metals', 3796779, 0.672, 'Q1', 142, 292, 13895, 2137, 673, '16', '1979-2020', 'Materials Chemistry (Q1); Metals and Alloys (Q1); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (7268, 'ZooKeys', 13132970, 0.672, 'Q1', 43, 560, 26131, 2164, 1560, '61', '2009-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (7269, 'Annals of the Entomological Society of Americ', 138746, 0.671, 'Q2', 72, 48, 2509, 293, 150, '2', '1965-1970, 1973-1978, 1986, 1988, 1993-2020', 'Insect Science (Q2)'), (7270, 'Brazilian Journal of Infectious Diseases', 14138670, 0.671, 'Q3', 45, 94, 2381, 539, 253, '14', '2000-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3)'), (7271, 'Business Process Management Journal', 14637154, 0.671, 'Q1', 81, 73, 5365, 1003, 270, '3', '1997-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Business and International Management (Q2)'), (7272, 'Chinese Geographical Science', 10020063, 0.671, 'Q1', 36, 80, 4323, 743, 248, '1', '1991-2020', 'Geography, Planning and Development (Q1); Earth and Planetary Sciences (miscellaneous) (Q2)'), (7273, 'Development Policy Review', 9506764, 0.671, 'Q1', 61, 75, 4524, 366, 213, '3', '1966, 1968-1970, 1972-2020', 'Geography, Planning and Development (Q1); Development (Q2); Management, Monitoring, Policy and Law (Q2)'), (7274, 'Geodinamica Acta', 9853111, 0.671, 'Q2', 49, 2, 160, 73, 29, '3', '1987-2020', 'Earth-Surface Processes (Q2); Geophysics (Q2)'), (7275, 'International Journal of Experimental Patholo', 9599673, 0.671, 'Q2', 72, 25, 1319, 232, 102, '3', '1990-2020', 'Pathology and Forensic Medicine (Q2); Cell Biology (Q3); Molecular Biology (Q3)'), (7276, 'Journal of Hydraulic Research/De Recherches H', 18142079, 0.671, 'Q2', 76, 117, 4548, 519, 171, '3', '1963-2020', 'Civil and Structural Engineering (Q2); Water Science and Technology (Q2)'), (7277, 'Journal of Theoretical Probability', 15729230, 0.671, 'Q2', 42, 160, 4227, 286, 239, '2', '1988-2020', 'Mathematics (miscellaneous) (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (7278, 'Stanford Law Review', 389765, 0.671, 'Q1', 67, 25, 0, 149, 69, '2', '1974-1976, 1978-1979, 1987-1994, 1996-2020', 'Law (Q1); Medicine (miscellaneous) (Q2)'), (7279, 'Advances in Difference Equations', 16871839, 0.67, 'Q2', 51, 674, 24381, 4141, 1377, '2', '2004-2020', 'Algebra and Number Theory (Q2); Analysis (Q2); Applied Mathematics (Q2)'), (7280, 'Annals of Nuclear Medicine', 18646433, 0.67, 'Q2', 58, 120, 3238, 624, 276, '6', '1987-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7281, 'Australasian Journal of Dermatology', 14400960, 0.67, 'Q2', 53, 329, 3657, 692, 295, '3', '1951-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q2)'), (7282, 'Central Asian Survey', 2634937, 0.67, 'Q1', 32, 37, 2136, 119, 80, '3', '1982-2020', 'Geography, Planning and Development (Q1); Development (Q2); Earth-Surface Processes (Q2)'), (7283, 'Europe-Asia Studies', 9668136, 0.67, 'Q1', 57, 85, 5791, 361, 201, '3', '1993-2020', 'Geography, Planning and Development (Q1); History (Q1); Sociology and Political Science (Q1); Economics and Econometrics (Q2)'), (7284, 'Expert Review of Pharmacoeconomics and Outcom', 14737167, 0.67, 'Q2', 49, 125, 5638, 427, 202, '3', '2001-2020', 'Health Policy (Q2); Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2)'), (7285, 'JOM', 15431851, 0.67, 'Q1', 107, 507, 18166, 3469, 1281, '2', '1981-2020', 'Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q2)'), (7286, 'Journal of Personnel Psychology', 18665888, 0.67, 'Q2', 28, 23, 830, 93, 59, '2', '2010-2020', 'Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2)'), (7287, 'Journal of Saudi Chemical Society', 13196103, 0.67, 'Q2', 47, 92, 4983, 1611, 393, '29', '2009-2020', 'Chemistry (miscellaneous) (Q2)'), (7288, 'Mathematical Geosciences', 18748961, 0.67, 'Q2', 75, 80, 2905, 364, 129, '5', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2)'), (7289, 'Naunyn-Schmiedeberg s Archives of Pharmacolog', 281298, 0.67, 'Q2', 91, 236, 11227, 963, 376, '5', '1969-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (Q2)'), (7290, 'Open Ophthalmology Journal', 18743641, 0.67, 'Q2', 19, 12, 350, 152, 89, '16', '2011-2020', 'Ophthalmology (Q2)'), (7291, 'Policy Studies', 14701006, 0.67, 'Q1', 38, 57, 3531, 263, 129, '3', '1980-2020', 'Political Science and International Relations (Q1)'), (7292, 'Seminars in Reproductive Medicine', 15268004, 0.67, 'Q2', 81, 29, 2421, 348, 138, '2', '1999-2020', 'Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Physiology (medical) (Q3)'), (7293, 'Biological Bulletin', 19398697, 0.669, 'Q1', 77, 37, 2440, 187, 116, '2', '1945-1951, 1965-1979, 1981-1987, 1989-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (7294, 'BMC Medical Genetics', 14712350, 0.669, 'Q3', 68, 240, 7566, 1135, 568, '3', '2000-2020', 'Genetics (Q3); Genetics (clinical) (Q3)'), (7295, 'Cryogenics', 112275, 0.669, 'Q2', 61, 140, 3954, 806, 346, '3', '1960-2020', 'Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (7296, 'International Journal of Law in Context', 17445531, 0.669, 'Q1', 20, 33, 1796, 112, 89, '3', '2005-2020', 'Law (Q1)'), (7297, 'Journal of Contemporary Brachytherapy', 1689832, 0.669, 'Q2', 24, 76, 1920, 424, 232, '17', '2010-2020', 'Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)'), (7298, 'New Ideas in Psychology', 732118, 0.669, 'Q1', 43, 48, 2949, 230, 85, '3', '1983-2021', 'History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q2)'), (7299, 'Ocean Dynamics', 16167228, 0.669, 'Q2', 57, 100, 4692, 619, 287, '5', '2001-2020', 'Oceanography (Q2)'), (7300, 'Pattern Recognition Letters', 1678655, 0.669, 'Q1', 157, 512, 17865, 4748, 902, '16', '1982-2020', 'Computer Vision and Pattern Recognition (Q1); Software (Q1); Artificial Intelligence (Q2); Signal Processing (Q2)'), (7301, 'Photonics', 23046732, 0.669, 'Q2', 23, 129, 5262, 702, 227, '19', '2014-2020', 'Atomic and Molecular Physics, and Optics (Q2); Instrumentation (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7302, 'Applied Optics', 21553165, 0.668, 'Q1', 197, 1603, 48191, 9973, 4497, '2', '1962-2020', 'Electrical and Electronic Engineering (Q1); Engineering (miscellaneous) (Q1); Atomic and Molecular Physics, and Optics (Q2)'), (7303, 'Biofouling', 10292454, 0.668, 'Q2', 86, 100, 5812, 852, 251, '3', '1988-2020', 'Applied Microbiology and Biotechnology (Q2); Aquatic Science (Q2); Water Science and Technology (Q2)'), (7304, 'Business and Politics', 13695258, 0.668, 'Q1', 31, 24, 1705, 125, 68, '3', '1999, 2004-2020', 'Industrial Relations (Q1); Political Science and International Relations (Q1)'), (7305, 'Cellular and Molecular Bioengineering', 18655025, 0.668, 'Q2', 34, 49, 3015, 275, 124, '2', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Modeling and Simulation (Q2)'), (7306, 'Ecohydrology and Hydrobiology', 16423593, 0.668, 'Q2', 30, 71, 4191, 336, 119, '16', '2001-2020', 'Aquatic Science (Q2)'), (7307, 'Emu', 14485540, 0.668, 'Q1', 41, 49, 2015, 167, 104, '11', '1901-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)'), (7308, 'Frontiers in Neurorobotics', 16625218, 0.668, 'Q2', 34, 115, 6137, 1092, 246, '19', '2007-2020', 'Artificial Intelligence (Q2); Biomedical Engineering (Q2)'), (7309, 'International Journal of Sports Marketing and', 14646668, 0.668, 'Q2', 23, 64, 5118, 322, 103, '3', '2007-2020', 'Business and International Management (Q2); Finance (Q2); Marketing (Q2); Sports Science (Q3)'), (7310, 'Journal of Applied Probability', 219002, 0.668, 'Q2', 59, 72, 1628, 337, 206, '3', '1975-1979, 1981-1990, 1995-2020', 'Mathematics (miscellaneous) (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (7311, 'Journal of Human Development and Capabilities', 19452837, 0.668, 'Q1', 48, 30, 1177, 166, 86, '2', '2009-2020', 'Anthropology (Q1); Development (Q2)'), (7312, 'Journal of Modern Dynamics', 19305311, 0.668, 'Q2', 25, 14, 454, 57, 51, '2', '2007-2020', 'Algebra and Number Theory (Q2); Analysis (Q2); Applied Mathematics (Q2)'), (7313, 'Journal of Nuclear Science and Technology', 18811248, 0.668, 'Q2', 63, 146, 3841, 571, 392, '3', '1964-2020', 'Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)'), (7314, 'Marine Ecology', 1739565, 0.668, 'Q2', 58, 40, 2581, 275, 160, '3', '1979-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7315, 'Salud Publica de Mexico', 16067916, 0.668, 'Q2', 54, 150, 3212, 507, 284, '30', '1961-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (7316, 'Teaching and Learning in Nursing', 15573087, 0.668, 'Q1', 20, 71, 1432, 263, 217, '16', '2006-2020', 'Fundamentals and Skills (Q1); Leadership and Management (Q1); Research and Theory (Q1)'), (7317, 'ACM Transactions on Internet Technology', 15576051, 0.667, 'Q1', 56, 45, 2270, 612, 140, '2', '2001-2020', 'Computer Networks and Communications (Q1)'), (7318, 'Alea', 19800436, 0.667, 'Q2', 18, 31, 815, 144, 108, '14', '2011-2020', 'Statistics and Probability (Q2)'), (7319, 'Biology and Philosophy', 15728404, 0.667, 'Q1', 50, 56, 3487, 274, 166, '16', '1986-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); History and Philosophy of Science (Q1); Philosophy (Q1)'), (7320, 'Clinical Anatomy', 10982353, 0.667, 'Q2', 71, 219, 6333, 974, 429, '2', '1988-2020', 'Anatomy (Q2); Histology (Q2); Medicine (miscellaneous) (Q2)'), (7321, 'Current Drug Metabolism', 18755453, 0.667, 'Q2', 106, 115, 8505, 1134, 309, '52', '2000-2020', 'Pharmacology (Q2); Clinical Biochemistry (Q3)'), (7322, 'Ecology of Freshwater Fish', 16000633, 0.667, 'Q2', 55, 73, 4975, 416, 216, '25', '1992-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7323, 'European Journal of Inorganic Chemistry', 10990682, 0.667, 'Q2', 136, 514, 33548, 4491, 1849, '5', '1975, 1980-1981, 1983, 1998-2020', 'Inorganic Chemistry (Q2)'), (7324, 'Journal of AAPOS', 15283933, 0.667, 'Q2', 66, 172, 2711, 585, 431, '2', '1997-2020', 'Ophthalmology (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (7325, 'Journal of Neurosurgical Anesthesiology', 15371921, 0.667, 'Q2', 63, 90, 2452, 434, 162, '2', '1989-2020', 'Anesthesiology and Pain Medicine (Q2); Surgery (Q2); Neurology (clinical) (Q3)'), (7326, 'Journal of Obsessive-Compulsive and Related D', 22113649, 0.667, 'Q2', 27, 76, 4316, 306, 180, '3', '2012-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (7327, 'Machine Learning', 15730565, 0.667, 'Q1', 152, 87, 4124, 1104, 218, '16', '1986-2020', 'Software (Q1); Artificial Intelligence (Q2)'), (7328, 'Maritime Economics and Logistics', 14792931, 0.667, 'Q1', 54, 47, 2541, 294, 97, '3', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Transportation (Q2)'), (7329, 'Ships and Offshore Structures', 17445302, 0.667, 'Q2', 29, 223, 7762, 697, 350, '3', '2006-2020', 'Mechanical Engineering (Q2); Ocean Engineering (Q2)'), (7330, 'Asia Pacific Family Medicine', 1447056, 0.666, 'Q1', 15, 8, 169, 46, 18, '3', '2009-2018', 'Family Practice (Q1); Public Health, Environmental and Occupational Health (Q2)'), (7331, 'Contemporary Security Policy', 17438764, 0.666, 'Q1', 25, 35, 2599, 153, 75, '3', '1994-2020', 'Political Science and International Relations (Q1)'), (7332, 'Electrophoresis', 1730835, 0.666, 'Q2', 158, 241, 12520, 2857, 955, '5', '1980-2020', 'Analytical Chemistry (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3)'), (7333, 'Hematology/ Oncology and Stem Cell Therapy', 16583876, 0.666, 'Q2', 22, 96, 2222, 265, 142, '29', '2008-2020', 'Medicine (miscellaneous) (Q2); Hematology (Q3); Oncology (Q3)'), (7334, 'Journal of Biomedical Semantics', 20411480, 0.666, 'Q1', 36, 15, 744, 349, 109, '3', '2010-2020', 'Computer Networks and Communications (Q1); Information Systems (Q1); Computer Science Applications (Q2); Health Informatics (Q2)'), (7335, 'Journal of Computational Neuroscience', 9295313, 0.666, 'Q3', 75, 33, 1604, 207, 106, '16', '1994-2020', 'Cognitive Neuroscience (Q3); Sensory Systems (Q3); Cellular and Molecular Neuroscience (Q4)'), (7336, 'Journal of Insect Conservation', 15729753, 0.666, 'Q1', 61, 89, 5798, 453, 226, '16', '1997-2020', 'Animal Science and Zoology (Q1); Ecology (Q2); Insect Science (Q2); Nature and Landscape Conservation (Q2)'), (7337, 'Journal of Management Control', 2191477, 0.666, 'Q2', 18, 21, 1698, 151, 41, '5', '2011-2020', 'Management Information Systems (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)'), (7338, 'Landscape Research', 14699710, 0.666, 'Q1', 45, 96, 4949, 479, 210, '3', '1970, 1972-2020', 'Geography, Planning and Development (Q1); Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)'), (7339, 'Neuro-Oncology Practice', 20542577, 0.666, 'Q2', 14, 94, 3075, 250, 112, '2', '2014-2020', 'Medicine (miscellaneous) (Q2); Neurology (Q3); Oncology (Q3)'), (7340, 'Norsk Geologisk Tiddsskrift', 8014736, 0.666, 'Q2', 43, 14, 1023, 95, 47, '33', '1979-2019', 'Geology (Q2)'), (7341, 'Orthopaedic surgery', 17577853, 0.666, 'Q2', 23, 236, 6995, 642, 252, '11', '2009-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (7342, 'Transactions of the Moscow Mathematical Socie', 771554, 0.666, 'Q2', 12, 9, 313, 68, 39, '2', '2011-2019', 'Mathematics (miscellaneous) (Q2)'), (7343, 'Applied Computing and Informatics', 22108327, 0.665, 'Q1', 22, 27, 1047, 770, 93, '16', '2011, 2014-2020', 'Information Systems (Q1); Computer Science Applications (Q2); Software (Q2)'), (7344, 'Biochip Journal', 20927843, 0.665, 'Q1', 22, 42, 1975, 342, 123, '5', '2008-2020', 'Electrical and Electronic Engineering (Q1); Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2)'), (7345, 'Biocybernetics and Biomedical Engineering', 2085216, 0.665, 'Q2', 29, 122, 6543, 1103, 224, '17', '2008-2020', 'Biomedical Engineering (Q2)'), (7346, 'Evolution Equations and Control Theory', 21632480, 0.665, 'Q2', 19, 59, 1804, 180, 106, '2', '2012-2020', 'Applied Mathematics (Q2); Control and Optimization (Q2); Modeling and Simulation (Q2)'), (7347, 'Geomechanics and Geophysics for Geo-Energy an', 23638427, 0.665, 'Q2', 19, 71, 3944, 296, 77, '19', '2015-2020', 'Economic Geology (Q2); Energy (miscellaneous) (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (7348, 'Hydrology Research', 22247955, 0.665, 'Q2', 48, 98, 4540, 856, 366, '25', '1973-2020', 'Water Science and Technology (Q2)'), (7349, 'Integrated Environmental Assessment and Manag', 15513793, 0.665, 'Q1', 57, 119, 5322, 944, 262, '2', '2005-2020', 'Geography, Planning and Development (Q1); Environmental Science (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (7350, 'Journal of Biomedical Materials Research - Pa', 15524973, 0.665, 'Q2', 108, 329, 15618, 2573, 794, '2', '2003-2020', 'Biomaterials (Q2); Biomedical Engineering (Q2)'), (7351, 'Journal of Epidemiology and Global Health', 22106014, 0.665, 'Q3', 22, 60, 1684, 375, 131, '8', '2011-2020', 'Epidemiology (Q3)'), (7352, 'Journal of Magnetism and Magnetic Materials', 3048853, 0.665, 'Q2', 172, 1363, 51617, 11738, 3921, '16', '1975-2020', 'Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (7353, 'Journal of Molecular Histology', 15672379, 0.665, 'Q2', 58, 64, 2792, 371, 142, '16', '2004-2020', 'Histology (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3); Physiology (Q3)'), (7354, 'Journal of Risk Research', 14664461, 0.665, 'Q1', 61, 149, 8415, 779, 299, '3', '1998-2020', 'Engineering (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Safety, Risk, Reliability and Quality (Q2); Strategy and Management (Q2)'), (7355, 'Laterality', 14640678, 0.665, 'Q1', 48, 53, 3335, 214, 125, '3', '1996-2020', 'Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (7356, 'Naval Research Logistics', 15206750, 0.665, 'Q2', 68, 60, 2279, 219, 123, '2', '1973-1978, 1987-2020', 'Management Science and Operations Research (Q2); Modeling and Simulation (Q2); Ocean Engineering (Q2)'), (7357, 'Swiss Journal of Geosciences', 16618734, 0.665, 'Q2', 34, 20, 1984, 238, 109, '19', '2007-2020', 'Geology (Q2)'), (7358, 'Archives of Agronomy and Soil Science', 3650340, 0.664, 'Q2', 37, 305, 15331, 1281, 474, '3', '1962-1970, 1994-2020', 'Agronomy and Crop Science (Q2); Soil Science (Q2)'), (7359, 'Cardiovascular Ultrasound', 14767120, 0.664, 'Q2', 46, 46, 1361, 224, 91, '3', '2003-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7360, 'Chinese Journal of Natural Medicines', 16723651, 0.664, 'Q1', 35, 107, 4850, 915, 313, '1', '2004-2020', 'Complementary and Alternative Medicine (Q1); Drug Discovery (Q2); Medicine (miscellaneous) (Q2)'), (7361, 'European Biophysics Journal', 14321017, 0.664, 'Q2', 80, 74, 3459, 516, 237, '5', '1984-2020', 'Biophysics (Q2); Medicine (miscellaneous) (Q2)'), (7362, 'European Journal of Contraception and Reprodu', 14730782, 0.664, 'Q2', 46, 90, 2614, 358, 207, '3', '1996-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2); Pharmacology (medical) (Q2); Reproductive Medicine (Q2)'), (7363, 'International Journal for Uncertainty Quantif', 21525080, 0.664, 'Q2', 21, 28, 1321, 284, 86, '2', '2014-2020', 'Control and Optimization (Q2); Discrete Mathematics and Combinatorics (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2)'), (7364, 'International Journal of Social Welfare', 14682397, 0.664, 'Q1', 47, 42, 1949, 196, 100, '3', '1996-2020', 'Sociology and Political Science (Q1); Social Work (Q2)'), (7365, 'Journal of Occupational Health', 13489585, 0.664, 'Q2', 59, 104, 3286, 461, 177, '6', '1996-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (7366, 'Marine and Coastal Fisheries', 19425120, 0.664, 'Q2', 28, 29, 2051, 213, 119, '2', '2009-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7367, 'Microbiology and Immunology', 3855600, 0.664, 'Q3', 70, 83, 3512, 391, 197, '2', '1977-2020', 'Immunology (Q3); Microbiology (Q3); Virology (Q3)'), (7368, 'Oral Surgery, Oral Medicine, Oral Pathology a', 22124403, 0.664, 'Q2', 119, 250, 7663, 1338, 563, '2', '2012-2020', 'Dentistry (miscellaneous) (Q2); Oral Surgery (Q2); Pathology and Forensic Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Surgery (Q2)'), (7369, 'Orthodontics and Craniofacial Research', 16016335, 0.664, 'Q2', 55, 92, 3086, 369, 178, '3', '2000-2020', 'Oral Surgery (Q2); Orthodontics (Q2); Otorhinolaryngology (Q2); Surgery (Q2)'), (7370, 'Orthopedics', 19382367, 0.664, 'Q2', 66, 201, 4659, 837, 567, '2', '1978-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (7371, 'Review of Quantitative Finance and Accounting', 924865, 0.664, 'Q1', 43, 121, 7261, 557, 240, '2', '1991-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Accounting (Q2); Finance (Q2)'), (7372, 'Aerobiologia', 3935965, 0.663, 'Q2', 49, 67, 2709, 399, 150, '16', '1985-2020', 'Plant Science (Q2); Immunology (Q3); Immunology and Allergy (Q3)'), (7373, 'Applied Nursing Research', 15328201, 0.663, 'Q1', 52, 105, 3697, 791, 341, '3', '1988-2020', 'Nursing (miscellaneous) (Q1)'), (7374, 'Assessment for Effective Intervention', 19387458, 0.663, 'Q2', 27, 48, 1927, 109, 81, '2', '1988-1993, 1995, 1997, 1999-2020', 'Developmental and Educational Psychology (Q2); Education (Q2); Health Professions (miscellaneous) (Q2)'), (7375, 'Biological Research for Nursing', 10998004, 0.663, 'Q1', 46, 77, 3509, 405, 174, '2', '1999-2020', 'Research and Theory (Q1)'), (7376, 'Brain Injury', 1362301, 0.663, 'Q2', 105, 212, 9145, 1370, 602, '3', '1987-2020', 'Developmental and Educational Psychology (Q2); Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q3)'), (7377, 'European Journal of International Management', 17516757, 0.663, 'Q2', 25, 44, 3633, 326, 107, '3', '2007, 2009-2014', 'Business and International Management (Q2); Education (Q2); Organizational Behavior and Human Resource Management (Q2)'), (7378, 'Journal de Theorie des Nombres de Bordeaux', 12467405, 0.663, 'Q2', 26, 40, 841, 131, 140, '8', '1996-2020', 'Algebra and Number Theory (Q2)'), (7379, 'Journal of Arid Environments', 1095922, 0.663, 'Q2', 115, 167, 8638, 905, 392, '2', '1980-2021', 'Earth-Surface Processes (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7380, 'Journal of Cultural Heritage', 12962074, 0.663, 'Q1', 64, 203, 9158, 1619, 508, '8', '2000-2020', 'Anthropology (Q1); Archeology (arts and humanities) (Q1); Conservation (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1); Chemistry (miscellaneous) (Q2); Computer Science Ap'), (7381, 'Journal of Drug Delivery Science and Technolo', 17732247, 0.663, 'Q2', 44, 658, 39436, 4060, 1050, '8', '2004-2020', 'Pharmaceutical Science (Q2)'), (7382, 'Journal of Management Analytics', 23270039, 0.663, 'Q1', 17, 30, 1839, 315, 59, '3', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (7383, 'Journal of Reproductive and Infant Psychology', 1469672, 0.663, 'Q2', 47, 83, 3379, 321, 132, '3', '1983-2020', 'Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychology (miscellaneous) (Q2); Reproductive Medicine (Q2)'), (7384, 'Journal of the American Society of Cytopathol', 22132945, 0.663, 'Q2', 12, 79, 2617, 252, 120, '2', '2013-2020', 'Pathology and Forensic Medicine (Q2)'), (7385, 'Plant Disease', 1912917, 0.663, 'Q2', 108, 664, 17065, 3552, 1738, '2', '1981, 1993-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2)'), (7386, 'Cells Tissues Organs', 14226421, 0.662, 'Q2', 82, 44, 2509, 328, 130, '19', '1889, 1945-1997, 1999-2020', 'Anatomy (Q2); Histology (Q2)'), (7387, 'Cognitive Linguistics', 9365907, 0.662, 'Q1', 52, 21, 1387, 85, 71, '5', '1990-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Developmental and Educational Psychology (Q2)'), (7388, 'Ethnicity and Health', 14653419, 0.662, 'Q1', 57, 126, 5790, 433, 213, '3', '1996-2020', 'Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1); Public Health, Environmental and Occupational Health (Q2)'), (7389, 'Health Sociology Review', 14461242, 0.662, 'Q1', 29, 37, 1607, 156, 63, '3', '2008-2020', 'Sociology and Political Science (Q1); Health (social science) (Q2)'), (7390, 'Interfaces', 922102, 0.662, 'Q2', 64, 33, 711, 159, 112, '2', '1983-1988, 1996-2020', 'Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)'), (7391, 'International Journal of Gender and Entrepren', 17566274, 0.662, 'Q1', 30, 16, 1088, 194, 60, '3', '2009-2020', 'Gender Studies (Q1); Business and International Management (Q2); Economics and Econometrics (Q2)'), (7392, 'Journal of Material Cycles and Waste Manageme', 16118227, 0.662, 'Q2', 41, 189, 8571, 1474, 492, '6', '2002, 2005-2020', 'Mechanics of Materials (Q2); Waste Management and Disposal (Q2)'), (7393, 'Agriculture and Food Security', 20487010, 0.661, 'Q2', 27, 17, 873, 504, 171, '3', '2012-2020', 'Agronomy and Crop Science (Q2); Ecology (Q2); Food Science (Q2)'), (7394, 'Breastfeeding Medicine', 15568253, 0.661, 'Q1', 45, 153, 3561, 696, 350, '2', '2006-2020', 'Maternity and Midwifery (Q1); Pediatrics (Q1); Health Policy (Q2); Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (7395, 'CardioRenal Medicine', 16645502, 0.661, 'Q2', 21, 46, 1341, 193, 102, '19', '2011, 2013-2020', 'Cardiology and Cardiovascular Medicine (Q2); Urology (Q2)'), (7396, 'Cultural Studies of Science Education', 18711502, 0.661, 'Q1', 29, 62, 2410, 242, 182, '16', '2006-2020', 'Cultural Studies (Q1)'), (7397, 'European Actuarial Journal', 21909741, 0.661, 'Q2', 13, 38, 1000, 104, 67, '19', '2011-2020', 'Economics and Econometrics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (7398, 'Financial Accountability and Management', 14680408, 0.661, 'Q1', 44, 43, 2911, 174, 68, '2', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1)'), (7399, 'Hormones', 11093099, 0.661, 'Q2', 43, 88, 3853, 407, 164, '5', '2005-2020', 'Medicine (miscellaneous) (Q2); Endocrinology, Diabetes and Metabolism (Q3)'), (7400, 'IEEE Journal of Quantum Electronics', 189197, 0.661, 'Q1', 127, 105, 3293, 634, 269, '2', '1965-2020', 'Electrical and Electronic Engineering (Q1); Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2)'), (7401, 'Journal of Child Neurology', 17088283, 0.661, 'Q2', 105, 168, 4389, 788, 375, '2', '1986-2020', 'Pediatrics, Perinatology and Child Health (Q2); Neurology (clinical) (Q3)'), (7402, 'Journal of Field Ornithology', 2738570, 0.661, 'Q1', 47, 32, 1911, 151, 97, '2', '1996-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (7403, 'Journal of Media Business Studies', 16522354, 0.661, 'Q1', 19, 27, 1886, 93, 46, '3', '2004-2020', 'Communication (Q1); Business and International Management (Q2); Strategy and Management (Q2)'), (7404, 'Journal of Semantics', 1675133, 0.661, 'Q1', 39, 11, 751, 68, 55, '3', '1982-1986, 1990-2019', 'Arts and Humanities (miscellaneous) (Q1); Linguistics and Language (Q1); Artificial Intelligence (Q2)'), (7405, 'Neuropsychopharmacology Reports', 2574173, 0.661, 'Q2', 13, 61, 1641, 124, 68, '2', '2018-2020', 'Clinical Psychology (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2); Psychiatry and Mental Health (Q2)'), (7406, 'Nurse Educator', 15389855, 0.661, 'Q1', 39, 172, 1918, 445, 345, '2', '1976-2020', 'Fundamentals and Skills (Q1); Nursing (miscellaneous) (Q1); Review and Exam Preparation (Q1); Education (Q2); LPN and LVN (Q2)'), (7407, 'Operations Research Letters', 1676377, 0.661, 'Q1', 77, 140, 2686, 586, 352, '16', '1981-2020', 'Industrial and Manufacturing Engineering (Q1); Applied Mathematics (Q2); Management Science and Operations Research (Q2); Software (Q2)'), (7408, 'Psychiatric Genetics', 14735873, 0.661, 'Q2', 60, 31, 1839, 122, 72, '2', '1990-2020', 'Psychiatry and Mental Health (Q2); Biological Psychiatry (Q3); Genetics (Q3); Genetics (clinical) (Q3)'), (7409, 'Turkish Journal of Emergency Medicine', 24522473, 0.661, 'Q2', 11, 29, 601, 393, 122, '18', '2015-2020', 'Critical Care and Intensive Care Medicine (Q2); Emergency Medicine (Q2)'), (7410, 'American Journal of Enology and Viticulture', 29254, 0.66, 'Q1', 90, 33, 1343, 347, 139, '2', '1973, 1976, 1981, 1984, 1987-1988, 1992-2020', 'Horticulture (Q1); Food Science (Q2)'), (7411, 'Arthroscopy Techniques', 22126287, 0.66, 'Q2', 31, 294, 4612, 989, 773, '2', '2012-2020', 'Orthopedics and Sports Medicine (Q2)'), (7412, 'Chemistry and Physics of Lipids', 18732941, 0.66, 'Q2', 99, 100, 6360, 905, 302, '42', '1966-2020', 'Organic Chemistry (Q2); Biochemistry (Q3); Cell Biology (Q3); Molecular Biology (Q3)'), (7413, 'Inhalation Toxicology', 8958378, 0.66, 'Q2', 87, 49, 2408, 397, 162, '3', '1989-2020', 'Health, Toxicology and Mutagenesis (Q2); Toxicology (Q3)'), (7414, 'Journal of Integral Equations and Application', 8973962, 0.66, 'Q2', 29, 15, 369, 98, 68, '2', '1988-2020', 'Applied Mathematics (Q2); Numerical Analysis (Q2)'), (7415, 'New Literary History', 286087, 0.66, 'Q1', 33, 50, 2314, 47, 108, '2', '1983, 2002-2020', 'Literature and Literary Theory (Q1)'), (7416, 'Nursing Inquiry', 13207881, 0.66, 'Q1', 49, 68, 3644, 322, 126, '3', '1994-2020', 'Nursing (miscellaneous) (Q1)'), (7417, 'Reactive and Functional Polymers', 13815148, 0.66, 'Q1', 97, 276, 15427, 2291, 594, '16', '1995-2020', 'Materials Chemistry (Q1); Polymers and Plastics (Q1); Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Environmental Chemistry (Q2); Biochemistry (Q3)'), (7418, 'Seminars in Cutaneous Medicine and Surgery', 15580768, 0.66, 'Q2', 64, 0, 0, 151, 91, '3', '1995-2019', 'Dermatology (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)'), (7419, 'Clinical Nutrition ESPEN', 24054577, 0.659, 'Q2', 17, 230, 9125, 1064, 405, '3', '2015-2020', 'Nutrition and Dietetics (Q2); Endocrinology, Diabetes and Metabolism (Q3)'), (7420, 'Dermatologic Surgery', 10760512, 0.659, 'Q2', 125, 424, 741, 1334, 669, '2', '1995-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)'), (7421, 'Engineering with Computers', 14355663, 0.659, 'Q1', 52, 419, 24576, 1588, 232, '3', '1985-2020', 'Engineering (miscellaneous) (Q1); Computer Science Applications (Q2); Modeling and Simulation (Q2); Software (Q2)'), (7422, 'Meditari Accountancy Research', 20493738, 0.659, 'Q2', 22, 85, 6904, 458, 109, '3', '2012-2020', 'Accounting (Q2)'), (7423, 'Pediatric Surgery International', 14379813, 0.659, 'Q2', 62, 192, 5326, 1140, 553, '5', '1986-2020', 'Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Surgery (Q2)'), (7424, 'Proceedings of the Institution of Mechanical ', 9544097, 0.659, 'Q2', 55, 182, 5612, 894, 348, '3', '1989-2020', 'Mechanical Engineering (Q2)'), (7425, 'Rivista Italiana di Scienza Politica', 488402, 0.659, 'Q1', 13, 23, 1410, 64, 54, '7', '2010-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (7426, 'SAE International Journal of Fuels and Lubric', 19463960, 0.659, 'Q2', 47, 5, 228, 241, 121, '2', '2009-2020', 'Fuel Technology (Q2); Pollution (Q2)'), (7427, 'Clinical Biomechanics', 18791271, 0.658, 'Q2', 127, 277, 10145, 1372, 617, '3', '1986-2020', 'Biophysics (Q2); Orthopedics and Sports Medicine (Q2); Sports Science (Q3)'), (7428, 'Current Protocols in Stem Cell Biology', 19388969, 0.658, 'Q2', 28, 28, 1065, 123, 73, '2', '2007-2020', 'Medicine (miscellaneous) (Q2); Cell Biology (Q3); Developmental Biology (Q3)'), (7429, 'European Surgical Research', 14219921, 0.658, 'Q2', 46, 19, 533, 232, 63, '19', '1969-2020', 'Medicine (miscellaneous) (Q2); Surgery (Q2)'), (7430, 'Hemodialysis International', 14927535, 0.658, 'Q2', 47, 81, 2208, 565, 290, '2', '2004-2020', 'Nephrology (Q2); Hematology (Q3)'), (7431, 'Journal of Palliative Care', 8258597, 0.658, 'Q2', 50, 63, 1800, 168, 94, '2', '1985-2015, 2017-2020', 'Medicine (miscellaneous) (Q2)'), (7432, 'Mathematical Control and Related Fields', 21568499, 0.658, 'Q2', 21, 37, 1131, 195, 103, '2', '2011-2020', 'Applied Mathematics (Q2); Control and Optimization (Q2)'), (7433, 'Oncology Nursing Forum', 15380688, 0.658, 'Q2', 87, 82, 2743, 481, 251, '2', '1977-2020', 'Oncology (nursing) (Q2)'), (7434, 'Plant Gene', 23524073, 0.658, 'Q2', 17, 51, 2921, 361, 132, '16', '2015-2020', 'Biotechnology (Q2); Plant Science (Q2); Biochemistry (Q3); Genetics (Q3)'), (7435, 'Sociological Methodology', 14679531, 0.658, 'Q1', 55, 11, 556, 67, 27, '3', '1987-1990, 1993, 1996-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (7436, 'South African Journal of Geology', 10120750, 0.658, 'Q2', 48, 33, 2019, 145, 93, '27', '1987-2020', 'Geology (Q2)'), (7437, 'Theory and Psychology', 14617447, 0.658, 'Q1', 52, 88, 4104, 283, 134, '3', '1991-2020', 'History and Philosophy of Science (Q1); Psychology (miscellaneous) (Q2)'), (7438, 'Current Clinical Microbiology Reports', 21965471, 0.657, 'Q3', 16, 16, 1396, 167, 81, '19', '2014-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3)'), (7439, 'Growth and Change', 14682257, 0.657, 'Q2', 55, 96, 5855, 321, 150, '3', '1970-2020', 'Global and Planetary Change (Q2)'), (7440, 'Growth Hormone and IGF Research', 10966374, 0.657, 'Q3', 61, 54, 2139, 279, 130, '3', '1998-2020', 'Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (7441, 'Hand Surgery and Rehabilitation', 24681229, 0.657, 'Q2', 28, 102, 2655, 242, 187, '16', '2016-2020', 'Orthopedics and Sports Medicine (Q2); Rehabilitation (Q2); Surgery (Q2)'), (7442, 'International Journal of Alzheimer s Disease', 20908024, 0.657, 'Q3', 49, 7, 461, 52, 19, '2', '2009-2020', 'Aging (Q3); Behavioral Neuroscience (Q3); Cognitive Neuroscience (Q3); Neurology (Q3); Neurology (clinical) (Q3); Cellular and Molecular Neuroscience (Q4)'), (7443, 'Journal of Bioscience and Bioengineering', 13474421, 0.657, 'Q2', 110, 197, 7423, 1842, 647, '16', '1990-1991, 1993-1994, 1999-2020', 'Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2)'), (7444, 'Journal of Classification', 1764268, 0.657, 'Q1', 40, 65, 2147, 160, 77, '2', '1984-2020', 'Library and Information Sciences (Q1); Mathematics (miscellaneous) (Q2); Psychology (miscellaneous) (Q2); Statistics, Probability and Uncertainty (Q2)'), (7445, 'Journal of Clinical Neurophysiology', 15371603, 0.657, 'Q2', 99, 79, 1457, 487, 234, '2', '1984-2020', 'Medicine (miscellaneous) (Q2); Neurology (Q3); Neurology (clinical) (Q3); Physiology (Q3); Physiology (medical) (Q3)'), (7446, 'Journal of Investigational Allergology and Cl', 10189068, 0.657, 'Q3', 61, 98, 2707, 561, 164, '12', '1991-2020', 'Immunology (Q3); Immunology and Allergy (Q3)'), (7447, 'Journal of Theoretical Biology', 10958541, 0.657, 'Q1', 158, 268, 13958, 3258, 1145, '2', '1961-2021', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Modeling and Simu'), (7448, 'Journal of Ultrasound', 19713495, 0.657, 'Q2', 24, 133, 3847, 441, 148, '19', '2007-2020', 'Internal Medicine (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7449, 'CIRIEC-Espana Revista de Economia Publica, So', 19896816, 0.656, 'Q1', 8, 30, 1590, 166, 85, '12', '2015-2020', 'Sociology and Political Science (Q1); Economics and Econometrics (Q2)'), (7450, 'Comptes Rendus - Palevol', 16310683, 0.656, 'Q1', 47, 0, 0, 324, 190, '8', '2002-2019', 'Paleontology (Q1)'), (7451, 'Decision', 23259973, 0.656, 'Q2', 16, 15, 512, 122, 71, '2', '2014-2020', 'Applied Psychology (Q2); Social Psychology (Q2); Statistics, Probability and Uncertainty (Q2); Neuropsychology and Physiological Psychology (Q3)'), (7452, 'Environment Systems and Decisions', 21945411, 0.656, 'Q2', 43, 47, 2749, 317, 110, '2', '2013-2020', 'Environmental Science (miscellaneous) (Q2)'), (7453, 'European Food Research and Technology', 14382385, 0.656, 'Q1', 102, 223, 9788, 1893, 652, '5', '1996-2020', 'Industrial and Manufacturing Engineering (Q1); Biotechnology (Q2); Chemistry (miscellaneous) (Q2); Food Science (Q2); Biochemistry (Q3)'), (7454, 'Fusion Engineering and Design', 9203796, 0.656, 'Q2', 79, 629, 13605, 3753, 2281, '16', '1984-2020', 'Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Nuclear Energy and Engineering (Q2)'), (7455, 'Infectious Diseases in Obstetrics and Gynecol', 10980997, 0.656, 'Q2', 48, 23, 692, 78, 39, '2', '1993-2020', 'Dermatology (Q2); Obstetrics and Gynecology (Q2); Infectious Diseases (Q3)'), (7456, 'Journal of Complexity', 885064, 0.656, 'Q2', 54, 37, 947, 216, 110, '2', '1985-2020', 'Algebra and Number Theory (Q2); Applied Mathematics (Q2); Control and Optimization (Q2); Mathematics (miscellaneous) (Q2); Numerical Analysis (Q2); Statistics and Probability (Q2)'), (7457, 'Journal of Food Science and Technology', 221155, 0.656, 'Q2', 68, 686, 25381, 4555, 1590, '4', '1974-1975, 1977-1978, 1980, 1982-1988, 1994-2020', 'Food Science (Q2)'), (7458, 'Journal of Geometry and Physics', 3930440, 0.656, 'Q2', 60, 177, 5031, 1242, 694, '16', '1984-1990, 1992-2021', 'Geometry and Topology (Q2); Mathematical Physics (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (7459, 'Journal of Marine Science and Technology', 9484280, 0.656, 'Q2', 46, 126, 3884, 460, 226, '6', '1995-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2); Ocean Engineering (Q2); Oceanography (Q2)'), (7460, 'Journal of Traffic and Transportation Enginee', 20957564, 0.656, 'Q2', 26, 73, 4132, 542, 144, '16', '2014-2020', 'Civil and Structural Engineering (Q2); Transportation (Q2)'), (7461, 'Neuropediatrics', 174304, 0.656, 'Q2', 67, 93, 2149, 377, 214, '5', '1980-2020', 'Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Neurology (clinical) (Q3)'), (7462, 'Zoologischer Anzeiger', 445231, 0.656, 'Q1', 41, 88, 5142, 435, 258, '5', '1961, 1982-1983, 1990-2020', 'Animal Science and Zoology (Q1)'), (7463, 'Fundamental and Clinical Pharmacology', 7673981, 0.655, 'Q2', 73, 101, 4352, 560, 205, '3', '1987-2020', 'Pharmacology (Q2); Pharmacology (medical) (Q2)'), (7464, 'IEEE Transactions on Electromagnetic Compatib', 189375, 0.655, 'Q1', 91, 356, 8436, 2000, 730, '2', '1964-2020', 'Electrical and Electronic Engineering (Q1); Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2)'), (7465, 'International Journal of Automation and Compu', 14768186, 0.655, 'Q2', 36, 63, 3092, 665, 188, '1', '2005, 2007-2020', 'Applied Mathematics (Q2); Computer Science Applications (Q2); Control and Systems Engineering (Q2); Modeling and Simulation (Q2)'), (7466, 'International Journal of Social Robotics', 18754805, 0.655, 'Q1', 53, 167, 9975, 801, 155, '5', '2009-2020', 'Computer Science (miscellaneous) (Q1)'), (7467, 'Journal of Paleolimnology', 9212728, 0.655, 'Q2', 84, 46, 2765, 336, 176, '16', '1988-2020', 'Aquatic Science (Q2); Earth-Surface Processes (Q2)'), (7468, 'Journal of the World Aquaculture Society', 17497345, 0.655, 'Q2', 60, 110, 6031, 642, 257, '2', '1986-2020', 'Agronomy and Crop Science (Q2); Aquatic Science (Q2)'), (7469, 'Nanotechnology Reviews', 21919097, 0.655, 'Q1', 31, 119, 9592, 898, 140, '5', '2012-2020', 'Engineering (miscellaneous) (Q1); Biomaterials (Q2); Biotechnology (Q2); Energy Engineering and Power Technology (Q2); Materials Science (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Process Ch'), (7470, 'Nations and Nationalism', 14698129, 0.655, 'Q1', 44, 82, 5133, 239, 178, '3', '1995-2020', 'Arts and Humanities (miscellaneous) (Q1); Geography, Planning and Development (Q1); Political Science and International Relations (Q1)'), (7471, 'Surgery Today', 14362813, 0.655, 'Q2', 63, 257, 8567, 1019, 478, '6', '1992-2020', 'Medicine (miscellaneous) (Q2); Surgery (Q2)'), (7472, 'African Development Review', 14678268, 0.654, 'Q2', 32, 68, 2959, 358, 138, '3', '1989-2020', 'Development (Q2)'), (7473, 'African Journal of Primary Health Care and Fa', 20712936, 0.654, 'Q1', 20, 115, 2564, 409, 230, '27', '2009-2020', 'Family Practice (Q1); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7474, 'Annales de la Societe Entomologique de France', 379271, 0.654, 'Q2', 31, 33, 1439, 121, 103, '3', '1988, 1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (7475, 'Asia-Pacific Psychiatry', 17585872, 0.654, 'Q2', 21, 58, 1717, 207, 90, '2', '2010-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (7476, 'Clinical Child Psychology and Psychiatry', 13591045, 0.654, 'Q2', 54, 95, 3811, 316, 145, '3', '1996-2020', 'Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)'), (7477, 'Fractals', 17936543, 0.654, 'Q1', 44, 196, 6555, 1270, 354, '37', '1995-2020', 'Multidisciplinary (Q1); Applied Mathematics (Q2); Geometry and Topology (Q2); Modeling and Simulation (Q2)'), (7478, 'International Journal of Radiation Biology', 9553002, 0.654, 'Q2', 92, 218, 11276, 1134, 442, '3', '1959-2020', 'Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7479, 'International Journal of the Commons', 18750281, 0.654, 'Q1', 26, 47, 2667, 203, 108, '2', '2011-2020', 'Sociology and Political Science (Q1)'), (7480, 'Journal of Arid Land', 16746767, 0.654, 'Q2', 27, 78, 4091, 529, 224, '1', '2009-2020', 'Earth-Surface Processes (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)'), (7481, 'Journal of Hydroinformatics', 14647141, 0.654, 'Q2', 50, 103, 4082, 585, 228, '3', '1999-2020', 'Civil and Structural Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2); Water Science and Technology (Q2); Atmospheric Science (Q3)'), (7482, 'Journal of Music Teacher Education', 19450079, 0.654, 'Q1', 17, 26, 701, 62, 63, '2', '1991-2020', 'Music (Q1); Education (Q2)'), (7483, 'Journal of Tropical Ecology', 2664674, 0.654, 'Q2', 85, 28, 1423, 177, 116, '3', '1985-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (7484, 'Korean Journal of Anesthesiology', 20057563, 0.654, 'Q2', 29, 96, 2264, 581, 198, '13', '2010-2020', 'Anesthesiology and Pain Medicine (Q2)'), (7485, 'Mutation Research - Genetic Toxicology and En', 18793592, 0.654, 'Q2', 112, 77, 3374, 823, 295, '16', '1997-2020', 'Health, Toxicology and Mutagenesis (Q2); Genetics (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (7486, 'Obesity Science and Practice', 20552238, 0.654, 'Q3', 14, 76, 3235, 345, 168, '2', '2016-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Nutrition and Dietetics (Q3)'), (7487, 'Oxidation of Metals', 30770, 0.654, 'Q1', 74, 66, 2529, 558, 276, '2', '1969-2020', 'Materials Chemistry (Q1); Metals and Alloys (Q1); Inorganic Chemistry (Q2)'), (7488, 'Stem Cell Research', 18735061, 0.654, 'Q2', 65, 420, 5696, 1380, 760, '2', '2007-2020', 'Medicine (miscellaneous) (Q2); Cell Biology (Q3); Developmental Biology (Q3)'), (7489, 'Teaching of Psychology', 986283, 0.654, 'Q2', 48, 73, 2315, 227, 140, '2', '1975-2020', 'Education (Q2); Psychology (miscellaneous) (Q2)'), (7490, 'Turk Oftalmoloiji Dergisi', 21498695, 0.654, 'Q2', 10, 0, 0, 95, 48, '18', '1986-1995, 2011-2017', 'Ophthalmology (Q2)'), (7491, 'Yanshilixue Yu Gongcheng Xuebao/Chinese Journ', 10006915, 0.654, 'Q2', 82, 331, 9561, 1962, 1186, '1', '1998-2020', 'Civil and Structural Engineering (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (7492, 'American Journal of Alzheimer s Disease and o', 15333175, 0.653, 'Q2', 60, 57, 2757, 402, 191, '2', '1986-2020', 'Clinical Psychology (Q2); Geriatrics and Gerontology (Q2); Psychiatry and Mental Health (Q2); Neuroscience (miscellaneous) (Q3)'), (7493, 'Comptes Rendus Chimie', 18781543, 0.653, 'Q2', 76, 22, 901, 928, 326, '8', '2002-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)'), (7494, 'IEEE Journal of Translational Engineering in ', 21682372, 0.653, 'Q2', 24, 58, 2057, 566, 148, '2', '2013-2020', 'Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2)'), (7495, 'Informatics for Health and Social Care', 17538157, 0.653, 'Q1', 38, 30, 1461, 249, 85, '3', '1976-1995, 2008-2020', 'Nursing (miscellaneous) (Q1); Health Informatics (Q2); Health Information Management (Q2)'), (7496, 'Investigative and Clinical Urology', 2466054, 0.653, 'Q2', 14, 87, 2472, 454, 195, '13', '2016-2020', 'Urology (Q2)'), (7497, 'Journal of Foot and Ankle Surgery', 15422224, 0.653, 'Q2', 67, 266, 6385, 1130, 724, '2', '1993-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (7498, 'Journal of the American Pharmacists Associati', 15443191, 0.653, 'Q1', 64, 295, 7768, 1022, 446, '2', '2003-2020', 'Pharmacology (nursing) (Q1); Pharmacy (Q1); Pharmacology (Q2)'), (7499, 'Perfusion (United Kingdom)', 1477111, 0.653, 'Q1', 45, 253, 5412, 583, 316, '3', '1986-2020', 'Advanced and Specialized Nursing (Q1); Safety Research (Q1); Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7500, 'Perspectives: Policy and Practice in Higher E', 13603108, 0.653, 'Q2', 17, 28, 662, 72, 56, '2', '1997-2020', 'Education (Q2)'), (7501, 'Physical Mesomechanics', 19905424, 0.653, 'Q2', 28, 68, 2180, 437, 170, '10', '2004, 2007-2020', 'Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Surfaces and Interfaces (Q2)'), (7502, 'VLDB Journal', 10668888, 0.653, 'Q1', 90, 64, 4824, 544, 113, '2', '1992-2020', 'Hardware and Architecture (Q1); Information Systems (Q1)'), (7503, 'AAPS PharmSciTech', 15309932, 0.652, 'Q2', 93, 314, 15122, 3328, 1016, '19', '2000-2020', 'Agronomy and Crop Science (Q2); Aquatic Science (Q2); Drug Discovery (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2)'), (7504, 'Australian Journal of Learning Difficulties', 19404158, 0.652, 'Q2', 14, 12, 786, 44, 29, '3', '2008-2020', 'Developmental and Educational Psychology (Q2); Education (Q2); Social Psychology (Q2)'), (7505, 'Biomarkers in Medicine', 17520363, 0.652, 'Q2', 44, 156, 7074, 946, 394, '3', '2008-2020', 'Drug Discovery (Q2); Biochemistry (medical) (Q3); Clinical Biochemistry (Q3)'), (7506, 'Environmental Biology of Fishes', 3781909, 0.652, 'Q2', 86, 117, 6814, 621, 369, '16', '1976-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7507, 'Frontiers of Biogeography', 19486596, 0.652, 'Q2', 8, 28, 1813, 69, 43, '2', '2016-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Global and Planetary Change (Q3)'), (7508, 'Geotechnical Research', 20526156, 0.652, 'Q2', 10, 21, 607, 95, 61, '3', '2014-2020', 'Geotechnical Engineering and Engineering Geology (Q2)'), (7509, 'GERMS', 22482997, 0.652, 'Q2', 12, 55, 1039, 174, 60, '43', '2011-2020', 'Public Health, Environmental and Occupational Health (Q2); Immunology and Microbiology (miscellaneous) (Q3); Infectious Diseases (Q3); Microbiology (medical) (Q3); Epidemiology (Q4)'), (7510, 'Integrated Blood Pressure Control', 11787104, 0.652, 'Q2', 20, 18, 842, 57, 21, '41', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)'), (7511, 'International Journal for Lesson and Learning', 20468261, 0.652, 'Q2', 16, 22, 854, 108, 83, '3', '2012-2020', 'Education (Q2)'), (7512, 'International Journal of Art Therapy: Inscape', 17454832, 0.652, 'Q2', 15, 26, 1159, 100, 54, '3', '2010-2020', 'Clinical Psychology (Q2); Rehabilitation (Q2)'), (7513, 'International Journal of Endocrinology and Me', 1726913, 0.652, 'Q3', 23, 38, 1356, 320, 118, '16', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q3)'), (7514, 'Journal of Civil Engineering Education', 26439107, 0.652, 'Q2', 40, 20, 1031, 284, 128, '2', '2020', 'Civil and Structural Engineering (Q2); Industrial Relations (Q2); Strategy and Management (Q2)'), (7515, 'Journal of Luminescence', 222313, 0.652, 'Q2', 115, 756, 32592, 8478, 2518, '16', '1970-2020', 'Atomic and Molecular Physics, and Optics (Q2); Biophysics (Q2); Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Biochemistry (Q3)'), (7516, 'Journal of Morphology', 3622525, 0.652, 'Q1', 74, 120, 7609, 584, 377, '2', '1887-1901, 1903, 1908-2020', 'Animal Science and Zoology (Q1); Developmental Biology (Q3)'), (7517, 'Management of Environmental Quality', 14777835, 0.652, 'Q2', 37, 99, 6347, 766, 215, '3', '2003-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7518, 'Manufacturing Review', 22654224, 0.652, 'Q1', 13, 39, 1663, 106, 34, '8', '2014-2020', 'Industrial and Manufacturing Engineering (Q1)'), (7519, 'Qualitative Market Research', 13522752, 0.652, 'Q2', 54, 64, 5364, 283, 96, '3', '1998-2020', 'Marketing (Q2)'), (7520, 'Veterinary Surgery', 1532950, 0.652, 'Q1', 79, 204, 5762, 585, 422, '2', '1972-2020', 'Veterinary (miscellaneous) (Q1)'), (7521, 'Anti-Cancer Drugs', 9594973, 0.651, 'Q2', 93, 159, 4447, 878, 376, '2', '1990-2020', 'Pharmacology (Q2); Pharmacology (medical) (Q2); Cancer Research (Q3); Oncology (Q3)'), (7522, 'Arthropoda Selecta', 136006, 0.651, 'Q2', 12, 55, 1421, 121, 136, '10', '2011-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (7523, 'Australian Journal of Psychology', 49530, 0.651, 'Q2', 42, 37, 1620, 222, 112, '2', '1949-2020', 'Psychology (miscellaneous) (Q2)'), (7524, 'BMC Molecular and Cell Biology', 26618850, 0.651, 'Q3', 5, 86, 3989, 104, 59, '3', '2019-2020', 'Cell Biology (Q3); Molecular Biology (Q3)'), (7525, 'Diamond and Related Materials', 9259635, 0.651, 'Q1', 113, 464, 21139, 2706, 826, '16', '1991-2020', 'Electrical and Electronic Engineering (Q1); Materials Chemistry (Q1); Chemistry (miscellaneous) (Q2); Electronic, Optical and Magnetic Materials (Q2); Mechanical Engineering (Q2); Physics and Astronom'), (7526, 'Discourse and Society', 14603624, 0.651, 'Q1', 72, 40, 1813, 177, 89, '3', '1990-2020', 'Communication (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1)'), (7527, 'Evolution and Development', 1525142, 0.651, 'Q2', 78, 39, 3304, 100, 68, '3', '1999-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Developmental Biology (Q3)'), (7528, 'Historical Biology', 8912963, 0.651, 'Q1', 36, 250, 16779, 603, 353, '3', '1988-2002, 2004-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (7529, 'International Journal of Rail Transportation', 23248386, 0.651, 'Q1', 20, 38, 1467, 172, 44, '3', '2013-2020', 'Automotive Engineering (Q1); Mechanics of Materials (Q2); Transportation (Q2)'), (7530, 'Journal of Animal Physiology and Animal Nutri', 14390396, 0.651, 'Q1', 56, 219, 10129, 1516, 699, '3', '1983, 1986-2020', 'Animal Science and Zoology (Q1); Food Animals (Q2)'), (7531, 'Latin American Perspectives', 94582, 0.651, 'Q1', 38, 79, 3557, 230, 205, '3', '1977, 1984, 1986-2020', 'Geography, Planning and Development (Q1); Sociology and Political Science (Q1)'), (7532, 'Physician and Sportsmedicine', 23263660, 0.651, 'Q2', 44, 117, 4535, 439, 197, '3', '1978-2005, 2008-2020', 'Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)'), (7533, 'Soil Research', 18386768, 0.651, 'Q2', 85, 77, 4502, 496, 244, '11', '1990, 2011-2020', 'Earth-Surface Processes (Q2); Environmental Science (miscellaneous) (Q2); Soil Science (Q2)'), (7534, 'Annals of Otology, Rhinology and Laryngology', 34894, 0.65, 'Q2', 91, 233, 5783, 731, 448, '2', '1897-1942, 1944-2020', 'Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2)'), (7535, 'Annals of the Institute of Statistical Mathem', 203157, 0.65, 'Q2', 45, 73, 2437, 178, 130, '16', '1949-1957, 1959-2020', 'Statistics and Probability (Q2)'), (7536, 'Arthropod-Plant Interactions', 18728847, 0.65, 'Q2', 32, 73, 4389, 448, 246, '16', '2008-2020', 'Agronomy and Crop Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (7537, 'Australian Journal of Grape and Wine Research', 13227130, 0.65, 'Q1', 77, 39, 1921, 406, 134, '2', '1995-2020', 'Horticulture (Q1)'), (7538, 'European Physical Journal Plus', 21905444, 0.65, 'Q2', 59, 930, 42857, 6799, 1679, '2', '2011-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (7539, 'Heart Asia', 17591104, 0.65, 'Q2', 12, 0, 0, 128, 83, '3', '2011-2019', 'Cardiology and Cardiovascular Medicine (Q2)'), (7540, 'Inorganics', 23046740, 0.65, 'Q2', 21, 68, 5190, 919, 342, '19', '2013-2020', 'Inorganic Chemistry (Q2)'), (7541, 'International Journal of Critical Infrastruct', 18745482, 0.65, 'Q2', 37, 25, 1097, 392, 94, '16', '2008-2020', 'Computer Science Applications (Q2); Information Systems and Management (Q2); Modeling and Simulation (Q2); Safety, Risk, Reliability and Quality (Q2)'), (7542, 'International Journal of Mining, Reclamation ', 17480949, 0.65, 'Q2', 23, 46, 2141, 329, 105, '3', '2006-2020', 'Earth-Surface Processes (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Management of Technology and Innovation (Q2)'), (7543, 'Ironmaking and Steelmaking', 17432812, 0.65, 'Q1', 44, 224, 6045, 612, 334, '3', '1974-2020', 'Metals and Alloys (Q1); Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (7544, 'Journal of Multidisciplinary Healthcare', 11782390, 0.65, 'Q1', 30, 203, 7804, 571, 218, '41', '2008-2020', 'Nursing (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (7545, 'Journal of Polymer Science, Part B: Polymer P', 8876266, 0.65, 'Q1', 145, 0, 0, 1237, 473, '2', '1970, 1986-2019', 'Polymers and Plastics (Q1); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2)'), (7546, 'Journal of Psychosocial Oncology', 7347332, 0.65, 'Q2', 46, 72, 2631, 272, 154, '2', '1983-2020', 'Applied Psychology (Q2); Psychiatry and Mental Health (Q2); Oncology (Q3)'), (7547, 'Journal of Solid State Chemistry', 1095726, 0.65, 'Q2', 142, 599, 28464, 4632, 1451, '2', '1969-2020', 'Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Inorganic Chemistry (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2'), (7548, 'Legal and Criminological Psychology', 13553259, 0.65, 'Q2', 57, 20, 946, 159, 63, '2', '1996-2020', 'Applied Psychology (Q2); Pathology and Forensic Medicine (Q2)'), (7549, 'Medical Molecular Morphology', 18601480, 0.65, 'Q2', 43, 39, 1302, 181, 83, '6', '1996-2002, 2005-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Molecular Biology (Q3)'), (7550, 'Scandinavian Political Studies', 806757, 0.65, 'Q1', 41, 25, 817, 86, 61, '3', '1967-1973, 1975-2020', 'Sociology and Political Science (Q1)'), (7551, 'Behavioral Sciences and the Law', 10990798, 0.649, 'Q1', 74, 45, 2176, 278, 138, '3', '1983-2020', 'Law (Q1); Clinical Psychology (Q2); Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (7552, 'Biological Trace Element Research', 15590720, 0.649, 'Q2', 80, 593, 29638, 2957, 915, '2', '1979-2020', 'Inorganic Chemistry (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Biochemistry (medical) (Q3); Clinical Biochemistry (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (7553, 'Education and Training in Autism and Developm', 21541647, 0.649, 'Q2', 50, 32, 1395, 138, 90, '2', '2010-2012, 2014-2020', 'Developmental and Educational Psychology (Q2); Education (Q2)'), (7554, 'Episteme', 17423600, 0.649, 'Q1', 29, 72, 2802, 111, 112, '3', '2004-2020', 'History and Philosophy of Science (Q1)'), (7555, 'Food and Nutrition Bulletin', 3795721, 0.649, 'Q1', 73, 62, 2385, 307, 139, '2', '1982-2020', 'Geography, Planning and Development (Q1); Food Science (Q2); Nutrition and Dietetics (Q3)'), (7556, 'IEEE Micro', 2721732, 0.649, 'Q1', 94, 77, 729, 1105, 185, '2', '1981-2020', 'Electrical and Electronic Engineering (Q1); Hardware and Architecture (Q1); Software (Q2)'), (7557, 'Insectes Sociaux', 14209098, 0.649, 'Q2', 59, 61, 2964, 293, 197, '19', '1954-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (7558, 'Journal of Helminthology', 22149, 0.649, 'Q1', 49, 190, 8607, 601, 281, '3', '1923-1943, 1945-2020', 'Animal Science and Zoology (Q1); Medicine (miscellaneous) (Q2); Parasitology (Q3)'), (7559, 'Literacy', 17414350, 0.649, 'Q1', 26, 28, 1022, 99, 65, '3', '2005-2020', 'Language and Linguistics (Q1); Education (Q2)'), (7560, 'Perspectives in Clinical Research', 22293485, 0.649, 'Q2', 8, 40, 557, 235, 91, '4', '2017-2020', 'Medicine (miscellaneous) (Q2)'), (7561, 'Skin therapy letter', 12015989, 0.649, 'Q2', 30, 10, 0, 88, 36, '9', '1999-2020', 'Medicine (miscellaneous) (Q2)'), (7562, 'Therapeutic Drug Monitoring', 15363694, 0.649, 'Q2', 93, 130, 1266, 737, 284, '2', '1979-2020', 'Pharmacology (Q2); Pharmacology (medical) (Q2)'), (7563, 'Archives of Microbiology', 1432072, 0.648, 'Q2', 102, 288, 13573, 1122, 432, '5', '1974-2020', 'Medicine (miscellaneous) (Q2); Biochemistry (Q3); Genetics (Q3); Microbiology (Q3); Molecular Biology (Q3)'), (7564, 'BioScience Trends', 18817823, 0.648, 'Q2', 33, 74, 2050, 566, 245, '6', '2007-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Health (social science) (Q2); Medicine (miscellaneous) (Q2)'), (7565, 'Chelonian Conservation and Biology', 10718443, 0.648, 'Q1', 29, 36, 1402, 167, 98, '2', '2006-2020', 'Animal Science and Zoology (Q1); Ecology, Evolution, Behavior and Systematics (Q2)'), (7566, 'Comparative Biochemistry and Physiology - Par', 1744117, 0.648, 'Q1', 41, 75, 5611, 503, 190, '2', '2006-2020', 'Animal Science and Zoology (Q1); Aquatic Science (Q2); Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q3); Physiology (Q3)'), (7567, 'Environmental Microbiomes', 25246372, 0.648, 'Q2', 42, 19, 1289, 246, 132, '3', '2019-2020', 'Applied Microbiology and Biotechnology (Q2); Genetics (Q3); Microbiology (Q3)'), (7568, 'Female Pelvic Medicine and Reconstructive Sur', 21544212, 0.648, 'Q2', 28, 153, 2821, 447, 285, '2', '2010-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2); Surgery (Q2); Urology (Q2)'), (7569, 'International Journal of Structural Stability', 2194554, 0.648, 'Q1', 38, 229, 9813, 1270, 531, '37', '2004-2020', 'Aerospace Engineering (Q1); Building and Construction (Q1); Applied Mathematics (Q2); Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Ocean Engineering (Q2)'), (7570, 'Journal of Bronchology and Interventional Pul', 19446586, 0.648, 'Q2', 33, 86, 1303, 322, 172, '2', '2009-2020', 'Medicine (miscellaneous) (Q2); Pulmonary and Respiratory Medicine (Q2)'), (7571, 'Obstetrics and Gynecology International', 16879597, 0.648, 'Q2', 13, 40, 1242, 144, 73, '2', '2016-2020', 'Obstetrics and Gynecology (Q2)'), (7572, 'Online Social Networks and Media', 24686964, 0.648, 'Q1', 13, 16, 887, 229, 47, '16', '2017-2020', 'Communication (Q1); Computer Networks and Communications (Q1); Information Systems (Q2)'), (7573, 'Transplantation Direct', 23738731, 0.648, 'Q2', 9, 123, 3871, 312, 185, '2', '2017-2020', 'Transplantation (Q2)'), (7574, 'Algorithmica', 14320541, 0.647, 'Q1', 78, 133, 3945, 1032, 470, '2', '1986-2020', 'Computer Science (miscellaneous) (Q1); Applied Mathematics (Q2); Computer Science Applications (Q2)'), (7575, 'Annals of Diagnostic Pathology', 15328198, 0.647, 'Q2', 55, 164, 4795, 606, 285, '3', '1997-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)'), (7576, 'Australasian Marketing Journal', 14413582, 0.647, 'Q2', 37, 70, 5449, 474, 104, '11', '2003-2020', 'Economics and Econometrics (Q2); Marketing (Q2)'), (7577, 'Current Sleep Medicine Reports', 21986401, 0.647, 'Q3', 16, 36, 2281, 195, 99, '19', '2015-2020', 'Neurology (Q3); Neurology (clinical) (Q3); Pulmonary and Respiratory Medicine (Q3)'), (7578, 'Facies', 1729179, 0.647, 'Q1', 56, 24, 1853, 197, 99, '5', '1979-2020', 'Paleontology (Q1); Geology (Q2); Stratigraphy (Q2)'), (7579, 'HAU: Journal of Ethnographic Theory', 20491115, 0.647, 'Q1', 31, 70, 2161, 197, 202, '3', '2011-2020', 'Anthropology (Q1)'), (7580, 'Journal of Obstetrics and Gynaecology Canada', 17012163, 0.647, 'Q2', 70, 282, 5418, 955, 614, '2', '2002-2020', 'Obstetrics and Gynecology (Q2)'), (7581, 'Journal of Social and Political Psychology', 21953325, 0.647, 'Q1', 20, 38, 2302, 202, 106, '5', '2013-2020', 'Sociology and Political Science (Q1); Applied Psychology (Q2); Social Psychology (Q2)'), (7582, 'Journal of Student Affairs Research and Pract', 19496605, 0.647, 'Q2', 14, 66, 2941, 130, 106, '3', '2012-2020', 'Education (Q2)'), (7583, 'Physiological Research', 8628408, 0.647, 'Q2', 70, 165, 7875, 1028, 487, '31', '1969, 1991-2020', 'Medicine (miscellaneous) (Q2); Physiology (Q3)'), (7584, 'Psychogeriatrics', 14798301, 0.647, 'Q2', 32, 151, 3945, 481, 205, '3', '2005-2020', 'Geriatrics and Gerontology (Q2); Gerontology (Q2); Psychiatry and Mental Health (Q2)'), (7585, 'Special Matrices', 23007451, 0.647, 'Q2', 8, 22, 371, 76, 80, '17', '2013-2020', 'Algebra and Number Theory (Q2); Geometry and Topology (Q2)'), (7586, 'Structural Engineering and Mechanics', 12254568, 0.647, 'Q2', 58, 222, 9774, 2355, 781, '13', '1994-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (7587, 'American Journal of Occupational Therapy', 2729490, 0.646, 'Q1', 82, 155, 3732, 650, 404, '2', '1947-2020', 'Occupational Therapy (Q1); Medicine (miscellaneous) (Q2)'), (7588, 'Aquaculture Research', 13652109, 0.646, 'Q2', 89, 549, 28377, 3132, 1361, '3', '1970, 1972-2020', 'Aquatic Science (Q2)'), (7589, 'Australian Journal of Teacher Education', 1835517, 0.646, 'Q2', 32, 58, 2987, 414, 250, '11', '2008-2020', 'Education (Q2)'), (7590, 'Comparative biochemistry and physiology. Part', 15314332, 0.646, 'Q1', 113, 135, 8746, 940, 447, '2', '1960-1994, 1998-2020', 'Animal Science and Zoology (Q1); Aquatic Science (Q2); Biochemistry (Q3); Molecular Biology (Q3); Physiology (Q3)'), (7591, 'Contemporary Issues in Early Childhood', 14639491, 0.646, 'Q2', 24, 56, 2300, 157, 105, '3', '2008-2020', 'Developmental and Educational Psychology (Q2); Education (Q2)'), (7592, 'Cytometry Part B - Clinical Cytometry', 15524957, 0.646, 'Q2', 61, 89, 2799, 488, 217, '2', '2002-2020', 'Histology (Q2); Pathology and Forensic Medicine (Q2); Cell Biology (Q3)'), (7593, 'Developmental Neuropsychology', 15326942, 0.646, 'Q2', 96, 36, 2006, 241, 122, '3', '1985-2020', 'Developmental and Educational Psychology (Q2); Neuropsychology and Physiological Psychology (Q3)'), (7594, 'Galaxies', 20754434, 0.646, 'Q2', 26, 85, 6246, 923, 325, '19', '2013-2020', 'Astronomy and Astrophysics (Q2)'), (7595, 'Journal of Applied and Computational Mechanic', 23834536, 0.646, 'Q1', 18, 117, 4445, 699, 146, '15', '2015-2020', 'Computational Mechanics (Q1); Mechanical Engineering (Q2)'), (7596, 'Journal of Intelligent Material Systems and S', 15308138, 0.646, 'Q2', 111, 211, 8808, 2067, 733, '3', '1990-2020', 'Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (7597, 'Lymphatic Research and Biology', 15578585, 0.646, 'Q2', 46, 77, 1708, 338, 181, '2', '2003-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (7598, 'Management Review Quarterly', 21981639, 0.646, 'Q1', 17, 35, 3955, 167, 31, '5', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Strategy and Management (Q2)'), (7599, 'Natural Resources Forum', 1650203, 0.646, 'Q2', 49, 20, 1169, 120, 59, '3', '1976-2020', 'Environmental Science (miscellaneous) (Q2)'), (7600, 'Pediatric Cardiology', 1720643, 0.646, 'Q2', 71, 237, 5907, 1141, 667, '2', '1979-1980, 1982-2020', 'Cardiology and Cardiovascular Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (7601, 'Quintessence International', 19367163, 0.646, 'Q2', 70, 93, 2386, 439, 241, '2', '1969-2020', 'Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (7602, 'Reproductive Biology', 1642431, 0.646, 'Q1', 36, 81, 3707, 414, 171, '16', '2001, 2003-2020', 'Animal Science and Zoology (Q1); Developmental Biology (Q3); Endocrinology (Q3)'), (7603, 'Urban Planning', 21837635, 0.646, 'Q1', 12, 109, 5448, 344, 131, '26', '2016-2020', 'Urban Studies (Q1)'), (7604, 'World Journal of Pediatrics', 17088569, 0.646, 'Q2', 33, 97, 3289, 548, 236, '1', '2008-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (7605, 'Accounting and Finance', 1467629, 0.645, 'Q1', 49, 211, 12577, 752, 276, '2', '1979-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2); Finance (Q2)'), (7606, 'Acta Histochemica', 651281, 0.645, 'Q2', 51, 136, 6194, 741, 314, '5', '1954-2020', 'Histology (Q2); Medicine (miscellaneous) (Q2); Cell Biology (Q3)'), (7607, 'Annals of Clinical Psychiatry', 10401237, 0.645, 'Q2', 70, 36, 1356, 161, 93, '2', '1989-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (7608, 'BMC Surgery', 14712482, 0.645, 'Q2', 47, 326, 8478, 1049, 461, '3', '2001-2020', 'Medicine (miscellaneous) (Q2); Surgery (Q2)'), (7609, 'DARU, Journal of Pharmaceutical Sciences', 15608115, 0.645, 'Q2', 42, 70, 3671, 366, 117, '3', '2000-2020', 'Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q2)'), (7610, 'Discrete and Computational Geometry', 14320444, 0.645, 'Q2', 69, 135, 3383, 442, 253, '2', '1986-2020', 'Computational Theory and Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2); Geometry and Topology (Q2); Theoretical Computer Science (Q2)'), (7611, 'Indian Journal of Anaesthesia', 9762817, 0.645, 'Q2', 30, 296, 4069, 793, 392, '4', '2010-2020', 'Anesthesiology and Pain Medicine (Q2)'), (7612, 'International Journal of Computerized Dentist', 14634201, 0.645, 'Q2', 30, 40, 445, 168, 89, '5', '1998-2020', 'Computer Science Applications (Q2); Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (7613, 'Jornal de Pediatria', 16784782, 0.645, 'Q2', 52, 153, 4803, 690, 299, '14', '1945-1965, 1973-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (7614, 'Journal of Consumer Marketing', 7363761, 0.645, 'Q2', 98, 87, 5375, 608, 218, '3', '1984-2020', 'Business and International Management (Q2); Marketing (Q2)'), (7615, 'Journal of Entrepreneurship in Emerging Econo', 20534604, 0.645, 'Q1', 15, 57, 5561, 319, 83, '3', '2014-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Marketing (Q2); Strategy and Management (Q2)'), (7616, 'Physiological and Molecular Plant Pathology', 10961178, 0.645, 'Q2', 76, 91, 4837, 567, 225, '2', '1986-2020', 'Plant Science (Q2); Genetics (Q3)'), (7617, 'Psychological Reports', 332941, 0.645, 'Q2', 67, 245, 13940, 499, 253, '2', '1965-2020', 'Psychology (miscellaneous) (Q2)'), (7618, 'Social Justice Research', 15736725, 0.645, 'Q1', 56, 18, 1352, 94, 55, '2', '1987-1990, 1992-2020', 'Anthropology (Q1); Law (Q1); Sociology and Political Science (Q1)'), (7619, 'Sports Medicine and Arthroscopy Review', 10628592, 0.645, 'Q2', 48, 33, 1126, 190, 107, '2', '1993-2020', 'Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)'), (7620, 'Australian Health Review', 14498944, 0.644, 'Q2', 46, 133, 3100, 583, 345, '11', '1980-2020', 'Health Policy (Q2)'), (7621, 'ChemistryOpen', 21911363, 0.644, 'Q2', 29, 145, 8366, 998, 380, '2', '2012-2020', 'Chemistry (miscellaneous) (Q2)'), (7622, 'Feminist Legal Studies', 9663622, 0.644, 'Q1', 28, 18, 827, 101, 38, '19', '1993-2002, 2005-2020', 'Gender Studies (Q1)'), (7623, 'Intellectual and Developmental Disabilities', 19349491, 0.644, 'Q1', 62, 50, 1397, 198, 133, '2', '2007-2020', 'Community and Home Care (Q1); Developmental and Educational Psychology (Q2); Education (Q2); Pediatrics, Perinatology and Child Health (Q2); Psychiatry and Mental Health (Q2)'), (7624, 'International Journal of Technology Assessmen', 14716348, 0.644, 'Q2', 69, 108, 3121, 410, 227, '3', '1970, 1978, 1985-2020', 'Health Policy (Q2)'), (7625, 'Journal of Cognitive Psychology', 20445911, 0.644, 'Q3', 60, 66, 3469, 262, 201, '3', '2011-2020', 'Experimental and Cognitive Psychology (Q3)'), (7626, 'Journal of Materials Science: Materials in Me', 15734838, 0.644, 'Q2', 125, 130, 5903, 1702, 508, '16', '1990-2020', 'Bioengineering (Q2); Biomaterials (Q2); Biomedical Engineering (Q2); Biophysics (Q2)'), (7627, 'Journal of Pharmaceutical Policy and Practice', 20523211, 0.644, 'Q1', 18, 70, 2405, 214, 94, '3', '2013-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacy (Q1); Health Policy (Q2)'), (7628, 'Journal of Plant Nutrition and Soil Science', 15222624, 0.644, 'Q2', 87, 68, 3617, 634, 308, '5', '1996-2020', 'Plant Science (Q2); Soil Science (Q2)'), (7629, 'Journal of racial and ethnic health dispariti', 21968837, 0.644, 'Q1', 21, 258, 11907, 827, 401, '2', '2015-2020', 'Anthropology (Q1); Sociology and Political Science (Q1); Health Policy (Q2); Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7630, 'Mathematical Biosciences', 255564, 0.644, 'Q1', 95, 70, 3417, 1076, 401, '2', '1967-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Modeling and Simu'), (7631, 'Medicina Oral, Patologia Oral y Cirugia Bucal', 16986946, 0.644, 'Q2', 56, 109, 2943, 786, 324, '12', '2004-2020', 'Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Surgery (Q2)'), (7632, 'Mycology', 21501211, 0.644, 'Q2', 25, 34, 2188, 272, 89, '3', '2010-2020', 'Plant Science (Q2); Infectious Diseases (Q3); Microbiology (Q3)'), (7633, 'Plant Ecology and Diversity', 17550874, 0.644, 'Q2', 36, 27, 2202, 237, 130, '3', '2008-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (7634, 'Plasma Processes and Polymers', 16128869, 0.644, 'Q1', 74, 144, 7005, 1156, 341, '5', '2004-2020', 'Polymers and Plastics (Q1); Condensed Matter Physics (Q2)'), (7635, 'Reviews on Environmental Health', 487554, 0.644, 'Q2', 54, 70, 4109, 373, 113, '5', '1974-1975, 1977, 1979-1982, 1984-1987, 1989, 1991, 1994, 1996-2020', 'Health (social science) (Q2); Pollution (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7636, 'Romanian Reports in Physics', 12211451, 0.644, 'Q2', 33, 81, 2473, 455, 225, '43', '2007-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (7637, 'Seminars in Vascular Surgery', 15584518, 0.644, 'Q2', 48, 17, 398, 66, 38, '3', '1990-2020', 'Cardiology and Cardiovascular Medicine (Q2); Surgery (Q2)'), (7638, 'World s Poultry Science Journal', 17434777, 0.644, 'Q1', 72, 3, 221, 385, 123, '3', '1945-2020', 'Animal Science and Zoology (Q1)'), (7639, 'Allergy and Asthma Proceedings', 15396304, 0.643, 'Q2', 60, 101, 2687, 533, 237, '2', '1996-2020', 'Medicine (miscellaneous) (Q2); Immunology and Allergy (Q3); Pulmonary and Respiratory Medicine (Q3)'), (7640, 'Brazilian Journal of Microbiology', 15178382, 0.643, 'Q3', 64, 228, 9704, 1197, 408, '14', '2000-2020', 'Microbiology (Q3)'), (7641, 'Clinical and Applied Thrombosis/Hemostasis', 10760296, 0.643, 'Q2', 53, 163, 5694, 975, 465, '2', '1995-2020', 'Medicine (miscellaneous) (Q2); Hematology (Q3)'), (7642, 'Euphytica', 15735060, 0.643, 'Q1', 104, 193, 9934, 1470, 732, '16', '1952-2020', 'Horticulture (Q1); Agronomy and Crop Science (Q2); Plant Science (Q2); Genetics (Q3)'), (7643, 'Gland Surgery', 22278575, 0.643, 'Q2', 22, 278, 10040, 871, 308, '1', '2016-2020', 'Surgery (Q2)'), (7644, 'Integrated Ocean Drilling Program: Preliminar', 19329423, 0.643, 'Q2', 11, 0, 0, 26, 12, '2', '2006, 2008-2019', 'Oceanography (Q2)'), (7645, 'International Angiology', 3929590, 0.643, 'Q2', 54, 64, 2809, 405, 184, '7', '1984-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (7646, 'Journal of Organizational Computing and Elect', 15327744, 0.643, 'Q2', 41, 22, 1580, 176, 54, '2', '1996-2020', 'Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Information Systems (Q2)'), (7647, 'Journal of Radiation Research', 13499157, 0.643, 'Q2', 60, 104, 2862, 797, 345, '3', '1960-2020', 'Health, Toxicology and Mutagenesis (Q2); Radiation (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7648, 'Revista de Educacion', 1988592, 0.643, 'Q2', 27, 36, 1604, 165, 98, '12', '2008-2020', 'Education (Q2)'), (7649, 'British Journal of Pain', 20494645, 0.642, 'Q2', 15, 62, 2530, 155, 74, '3', '2013-2020', 'Anesthesiology and Pain Medicine (Q2)'), (7650, 'Genome', 14803321, 0.642, 'Q2', 99, 63, 3063, 513, 251, '9', '1987-2020', 'Biotechnology (Q2); Medicine (miscellaneous) (Q2); Genetics (Q3); Molecular Biology (Q3)'), (7651, 'International Journal of Leadership in Educat', 13603124, 0.642, 'Q1', 38, 126, 7759, 326, 152, '3', '1998-2020', 'Arts and Humanities (miscellaneous) (Q1); Education (Q2); Strategy and Management (Q2)'), (7652, 'International Journal of Sports Science and C', 17479541, 0.642, 'Q1', 27, 123, 5332, 523, 272, '3', '2010-2020', 'Social Sciences (miscellaneous) (Q1); Sports Science (Q3)'), (7653, 'Journal of Systems and Software', 1641212, 0.642, 'Q1', 109, 183, 11845, 3058, 590, '2', '1979, 1981-2021', 'Hardware and Architecture (Q1); Information Systems (Q2); Software (Q2)'), (7654, 'Nature Conservation', 13143301, 0.642, 'Q2', 18, 28, 1643, 301, 136, '61', '2012-2020', 'Nature and Landscape Conservation (Q2)'), (7655, 'Plant Ecology', 13850237, 0.642, 'Q2', 103, 100, 5881, 573, 312, '16', '1986, 1996-2020', 'Ecology (Q2); Plant Science (Q2)'), (7656, 'Plant Systematics and Evolution', 21996881, 0.642, 'Q2', 74, 92, 6238, 482, 272, '28', '1974-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (7657, 'Psychosis', 17522439, 0.642, 'Q2', 25, 57, 1878, 181, 119, '2', '2009-2011, 2014-2015, 2017-2020', 'Psychiatry and Mental Health (Q2)'), (7658, 'Reading Teacher', 340561, 0.642, 'Q1', 50, 94, 2131, 285, 258, '2', '1995-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (7659, 'Theoretical Ecology', 18741738, 0.642, 'Q2', 35, 57, 3241, 163, 111, '16', '2008-2020', 'Ecology (Q2); Ecological Modeling (Q3)'), (7660, 'Virus Genes', 1572994, 0.642, 'Q2', 56, 93, 3638, 654, 315, '16', '1987-2020', 'Medicine (miscellaneous) (Q2); Genetics (Q3); Molecular Biology (Q3); Virology (Q3)'), (7661, 'Yantu Lixue/Rock and Soil Mechanics', 10007598, 0.642, 'Q2', 50, 534, 12963, 2492, 1828, '1', '1998-2020', 'Civil and Structural Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2); Soil Science (Q2)'), (7662, 'Zoological Studies', 10215506, 0.642, 'Q2', 44, 63, 3967, 227, 130, '22', '1994-2020', 'Animal Science and Zoology (Q2)'), (7663, 'Behaviour and Information Technology', 13623001, 0.641, 'Q1', 78, 216, 16895, 957, 277, '3', '1982-2020', 'Arts and Humanities (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Developmental and Educational Psychology (Q2); Human-Computer Interaction (Q2)'), (7664, 'Biochemistry and Biophysics Reports', 24055808, 0.641, 'Q2', 23, 153, 5614, 1111, 350, '16', '2015-2020', 'Biophysics (Q2); Biochemistry (Q3); Cell Biology (Q3); Molecular Biology (Q3)'), (7665, 'BioMetals', 15728773, 0.641, 'Q1', 104, 33, 1703, 635, 235, '16', '1992-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Metals and Alloys (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biomaterials (Q2)'), (7666, 'Child Indicators Research', 18748988, 0.641, 'Q1', 30, 119, 6963, 568, 267, '16', '2010-2020', 'Sociology and Political Science (Q1); Health (social science) (Q2); Social Psychology (Q2)'), (7667, 'Cleft Palate-Craniofacial Journal', 10556656, 0.641, 'Q2', 79, 270, 8547, 732, 479, '2', '1991-2020', 'Oral Surgery (Q2); Otorhinolaryngology (Q2)'), (7668, 'Environmental Earth Sciences', 18666299, 0.641, 'Q2', 118, 532, 27608, 6728, 2263, '5', '2009-2020', 'Earth-Surface Processes (Q2); Environmental Chemistry (Q2); Geology (Q2); Pollution (Q2); Soil Science (Q2); Water Science and Technology (Q2); Global and Planetary Change (Q3)'), (7669, 'European Journal of Trauma and Emergency Surg', 18639933, 0.641, 'Q2', 34, 390, 12139, 1029, 423, '5', '2004, 2007-2020', 'Critical Care and Intensive Care Medicine (Q2); Emergency Medicine (Q2); Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (7670, 'Foundations and Trends in Accounting', 15540642, 0.641, 'Q2', 15, 3, 233, 15, 9, '2', '2006-2012, 2014-2020', 'Accounting (Q2); Finance (Q2)'), (7671, 'Intervirology', 3005526, 0.641, 'Q3', 61, 19, 707, 260, 118, '19', '1973-2020', 'Infectious Diseases (Q3); Virology (Q4)'), (7672, 'Journal of Circadian Rhythms', 17403391, 0.641, 'Q3', 26, 6, 371, 51, 19, '3', '2003-2020', 'Endocrine and Autonomic Systems (Q3); Physiology (Q3)'), (7673, 'Journal of Gastrointestinal and Liver Disease', 18418724, 0.641, 'Q2', 48, 123, 3271, 397, 180, '43', '2006-2020', 'Medicine (miscellaneous) (Q2); Gastroenterology (Q3)'), (7674, 'Journal of Strategic Marketing', 965254, 0.641, 'Q2', 50, 102, 8063, 460, 129, '3', '1984, 1993-2020', 'Marketing (Q2); Strategy and Management (Q2)'), (7675, 'Research on Social Work Practice', 10497315, 0.641, 'Q1', 63, 82, 4590, 480, 252, '2', '1991-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Psychology (miscellaneous) (Q2); Social Work (Q2)'), (7676, 'Annals of Plastic Surgery', 1487043, 0.64, 'Q2', 91, 422, 6931, 1482, 1034, '2', '1978-2020', 'Surgery (Q2)'), (7677, 'Applications in Plant Sciences', 21680450, 0.64, 'Q2', 23, 97, 4093, 462, 249, '2', '2013-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (7678, 'Atmosphere - Ocean', 14809214, 0.64, 'Q2', 52, 23, 1166, 121, 71, '3', '1969, 1978-2020', 'Oceanography (Q2); Atmospheric Science (Q3)'), (7679, 'Benchmarking', 14635771, 0.64, 'Q2', 61, 126, 13489, 1931, 478, '3', '1999-2020', 'Business and International Management (Q2); Strategy and Management (Q2)'), (7680, 'Brain-Computer Interfaces', 23262621, 0.64, 'Q2', 16, 10, 407, 161, 45, '3', '2014-2020', 'Biomedical Engineering (Q2); Electrical and Electronic Engineering (Q2); Human-Computer Interaction (Q2); Behavioral Neuroscience (Q3)'), (7681, 'Canadian Journal of Public Health', 19207476, 0.64, 'Q2', 72, 154, 3773, 505, 243, '9', '1945-2020', 'Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7682, 'Clinical obesity', 17588103, 0.64, 'Q3', 12, 0, 0, 233, 90, '3', '2015-2019', 'Endocrinology, Diabetes and Metabolism (Q3)'), (7683, 'Dreaming', 10530797, 0.64, 'Q2', 38, 28, 1257, 129, 73, '2', '1996-2020', 'Psychology (miscellaneous) (Q2)'), (7684, 'European Journal of Mineralogy', 16174011, 0.64, 'Q2', 71, 45, 2437, 432, 275, '5', '1989-2020', 'Geochemistry and Petrology (Q2)'), (7685, 'IEEE Control Systems', 1066033, 0.64, 'Q2', 120, 75, 1068, 613, 190, '2', '1991-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Modeling and Simulation (Q2)'), (7686, 'i-Perception', 20416695, 0.64, 'Q2', 26, 75, 3378, 385, 246, '3', '2010-2020', 'Artificial Intelligence (Q2); Ophthalmology (Q2); Experimental and Cognitive Psychology (Q3); Sensory Systems (Q3)'), (7687, 'Journal of Aircraft', 218669, 0.64, 'Q2', 94, 103, 3594, 1236, 605, '2', '1964-2020', 'Aerospace Engineering (Q2)'), (7688, 'Journal of Algebra and its Applications', 2194988, 0.64, 'Q2', 29, 488, 8959, 747, 741, '37', '2008-2020', 'Algebra and Number Theory (Q2); Applied Mathematics (Q2)'), (7689, 'Journal of Asian Economics', 10490078, 0.64, 'Q2', 47, 37, 1512, 227, 99, '16', '1990-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (7690, 'Journal of Chemical Technology and Biotechnol', 2682575, 0.64, 'Q2', 117, 337, 16547, 3352, 1087, '3', '1979-1981, 1983-2020', 'Biotechnology (Q2); Chemical Engineering (miscellaneous) (Q2); Fuel Technology (Q2); Inorganic Chemistry (Q2); Organic Chemistry (Q2); Pollution (Q2); Renewable Energy, Sustainability and the Environm'), (7691, 'Journal of Public Health Dentistry', 224006, 0.64, 'Q2', 63, 88, 2297, 267, 144, '2', '1941-2020', 'Dentistry (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7692, 'Numerical Mathematics', 20797338, 0.64, 'Q2', 23, 58, 2079, 251, 142, '3', '2010-2020', 'Applied Mathematics (Q2); Computational Mathematics (Q2); Control and Optimization (Q2); Modeling and Simulation (Q2)'), (7693, 'Physica A: Statistical Mechanics and its Appl', 3784371, 0.64, 'Q2', 166, 1210, 51750, 15067, 4288, '16', '1975-2021', 'Condensed Matter Physics (Q2); Statistics and Probability (Q2)'), (7694, 'Tribology Transactions', 1547397, 0.64, 'Q2', 65, 116, 4205, 643, 332, '3', '1988-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)'), (7695, 'Annals of the Missouri Botanical Garden', 266493, 0.639, 'Q2', 70, 17, 2172, 144, 77, '2', '1946, 1981-1987, 1994-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (7696, 'Annals of Thoracic Medicine', 18171737, 0.639, 'Q2', 33, 49, 1238, 260, 118, '4', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q2); Surgery (Q2); Pulmonary and Respiratory Medicine (Q3)'), (7697, 'Community Mental Health Journal', 15732789, 0.639, 'Q2', 66, 219, 8780, 770, 414, '2', '1965-2020', 'Health (social science) (Q2); Psychiatry and Mental Health (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7698, 'Ethnopolitics', 17449057, 0.639, 'Q1', 16, 50, 2637, 178, 115, '3', '2010-2020', 'Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q1)'), (7699, 'Journal of Ambulatory Care Management', 15503267, 0.639, 'Q2', 39, 48, 824, 142, 120, '2', '1978-2020', 'Health Policy (Q2)'), (7700, 'Journal of Heritage Tourism', 1743873, 0.639, 'Q1', 30, 77, 4834, 339, 110, '3', '2006-2020', 'History (Q1); Tourism, Leisure and Hospitality Management (Q2)'), (7701, 'Journal of Nanomechanics and Micromechanics', 21535434, 0.639, 'Q2', 17, 0, 0, 48, 21, '2', '2011-2017', 'Mechanical Engineering (Q2)'), (7702, 'Near Surface Geophysics', 15694445, 0.639, 'Q2', 39, 50, 2110, 260, 139, '16', '2006-2020', 'Geophysics (Q2)'), (7703, 'American Journal of Otolaryngology - Head and', 1532818, 0.638, 'Q2', 58, 373, 8027, 834, 500, '3', '1979-2020', 'Otorhinolaryngology (Q2)'), (7704, 'Applied General Topology', 15769402, 0.638, 'Q2', 13, 25, 480, 102, 87, '12', '2007-2020', 'Geometry and Topology (Q2)'), (7705, 'Chronic Illness', 17423953, 0.638, 'Q2', 41, 53, 1979, 157, 95, '3', '2005-2020', 'Health Policy (Q2); Medicine (miscellaneous) (Q2)'), (7706, 'Energy Science and Engineering', 20500505, 0.638, 'Q2', 29, 301, 13787, 1269, 309, '3', '2013-2020', 'Energy (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2)'), (7707, 'Higher Education Policy', 9528733, 0.638, 'Q1', 42, 66, 3293, 250, 120, '3', '1992, 1995-2020', 'Sociology and Political Science (Q1); Education (Q2)'), (7708, 'Journal of Biosocial Science', 219320, 0.638, 'Q1', 53, 87, 3592, 375, 223, '3', '1969-2020', 'Social Sciences (miscellaneous) (Q1); Public Health, Environmental and Occupational Health (Q2)'), (7709, 'Journal of Children s Orthopaedics', 18632521, 0.638, 'Q2', 36, 85, 2146, 358, 234, '5', '2007-2020', 'Orthopedics and Sports Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (7710, 'Journal of Parallel and Distributed Computing', 7437315, 0.638, 'Q1', 87, 169, 7166, 2473, 568, '2', '1984-2021', 'Computer Networks and Communications (Q1); Hardware and Architecture (Q1); Artificial Intelligence (Q2); Software (Q2); Theoretical Computer Science (Q2)'), (7711, 'Journal of Real Estate Finance and Economics', 1573045, 0.638, 'Q1', 62, 96, 3635, 207, 141, '16', '1988-2020', 'Urban Studies (Q1); Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)'), (7712, 'Journal of Stored Products Research', 22474, 0.638, 'Q1', 78, 165, 7749, 764, 289, '3', '1965-2020', 'Horticulture (Q1); Agronomy and Crop Science (Q2); Food Science (Q2); Insect Science (Q2)'), (7713, 'Linguistic Typology', 14300532, 0.638, 'Q1', 34, 23, 1801, 52, 46, '5', '1997-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (7714, 'Paediatrics and international child health', 20469055, 0.638, 'Q2', 45, 60, 1681, 269, 147, '3', '2012-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (7715, 'PFG - Journal of Photogrammetry, Remote Sensi', 25122819, 0.638, 'Q1', 24, 31, 1123, 153, 60, '19', '2017-2020', 'Geography, Planning and Development (Q1); Earth and Planetary Sciences (miscellaneous) (Q2); Instrumentation (Q2)'), (7716, 'Photogrammetric Record', 14779730, 0.638, 'Q1', 51, 42, 552, 211, 81, '3', '1953-2020', 'Engineering (miscellaneous) (Q1); Computer Science Applications (Q2); Computers in Earth Sciences (Q2); Earth and Planetary Sciences (miscellaneous) (Q2)'), (7717, 'Business and Human Rights Journal', 20570198, 0.637, 'Q1', 10, 22, 794, 107, 71, '3', '2016-2020', 'Law (Q1); Sociology and Political Science (Q1); Business and International Management (Q2); Industrial Relations (Q2)'), (7718, 'Clinical Nuclear Medicine', 3639762, 0.637, 'Q2', 57, 503, 6126, 1922, 1305, '2', '1978-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (7719, 'Critical Inquiry', 15397858, 0.637, 'Q1', 64, 40, 401, 106, 86, '2', '1976, 1985-1987, 1996-2020', 'Arts and Humanities (miscellaneous) (Q1); Cultural Studies (Q1)'), (7720, 'European Journal of Wildlife Research', 16124642, 0.637, 'Q2', 46, 101, 5664, 524, 277, '5', '1996-2002, 2004-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)'), (7721, 'IEEE Electrical Insulation Magazine', 8837554, 0.637, 'Q2', 75, 43, 783, 291, 104, '2', '1985-2020', 'Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (7722, 'IET Power Electronics', 17554543, 0.637, 'Q2', 77, 473, 15031, 3266, 892, '3', '2008-2020', 'Electrical and Electronic Engineering (Q2)'), (7723, 'Journal of Insects as Food and Feed', 23524588, 0.637, 'Q2', 23, 53, 2668, 430, 96, '16', '2015-2020', 'Food Science (Q2); Insect Science (Q2)'), (7724, 'Metrologia', 261394, 0.637, 'Q1', 79, 224, 4443, 1169, 454, '3', '1965-2020', 'Engineering (miscellaneous) (Q1)'), (7725, 'Neotropical Biodiversity', 23766808, 0.637, 'Q2', 10, 23, 955, 83, 45, '3', '2015-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Global and Planetary Change (Q3)'), (7726, 'PharmacoEconomics - Open', 25094262, 0.637, 'Q2', 10, 53, 2001, 252, 120, '19', '2017-2019', 'Health Policy (Q2); Pharmacology (Q2); Pharmacology (medical) (Q2)'), (7727, 'Politica Criminal', 7183399, 0.637, 'Q1', 7, 26, 1580, 44, 95, '45', '2009-2020', 'Law (Q1); Sociology and Political Science (Q1)'), (7728, 'Professional Psychology: Research and Practic', 19391323, 0.637, 'Q2', 87, 55, 1448, 328, 166, '2', '1969-2020', 'Psychology (miscellaneous) (Q2)'), (7729, 'Asian Journal of Surgery', 2193108, 0.636, 'Q2', 33, 273, 4360, 711, 294, '22', '1988-2020', 'Surgery (Q2)'), (7730, 'Climate Research', 16161572, 0.636, 'Q2', 106, 36, 2156, 321, 149, '5', '1990-2020', 'Environmental Chemistry (Q2); Environmental Science (miscellaneous) (Q2); Atmospheric Science (Q3)'), (7731, 'Dental Materials Journal', 18811361, 0.636, 'Q2', 56, 135, 5358, 799, 361, '6', '1982-2020', 'Ceramics and Composites (Q2); Dentistry (miscellaneous) (Q2)'), (7732, 'Environmental Fluid Mechanics', 15677419, 0.636, 'Q2', 44, 78, 3560, 512, 198, '16', '2001-2020', 'Environmental Chemistry (Q2); Water Science and Technology (Q2)'), (7733, 'Health (United Kingdom)', 13634593, 0.636, 'Q2', 53, 77, 4003, 255, 115, '3', '1946-1948, 1973-1976, 1997-2020', 'Health (social science) (Q2)'), (7734, 'Information Systems and e-Business Management', 16179846, 0.636, 'Q2', 38, 56, 2280, 332, 78, '5', '2005-2020', 'Information Systems (Q2)'), (7735, 'Journal of Economics and Business', 1486195, 0.636, 'Q1', 50, 35, 1558, 293, 89, '2', '1978, 1980, 1982-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (7736, 'Journal of Forestry', 221201, 0.636, 'Q1', 74, 46, 1933, 321, 170, '2', '1969-1990, 1994-2020', 'Forestry (Q1); Plant Science (Q2)'), (7737, 'Journal of Herpetology', 221511, 0.636, 'Q2', 59, 52, 2647, 258, 180, '2', '1980-1983, 1985-1989, 1991-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7738, 'Journal of the Air and Waste Management Assoc', 10962247, 0.636, 'Q2', 89, 108, 4767, 855, 319, '3', '1989-2020', 'Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Waste Management and Disposal (Q2); Atmospheric Science (Q3)'), (7739, 'Journal of the Association of Nurses in AIDS ', 15526917, 0.636, 'Q1', 49, 91, 140, 328, 265, '2', '1991-2020', 'Advanced and Specialized Nursing (Q1)'), (7740, 'Medical Science Monitor', 16433750, 0.636, 'Q2', 85, 1013, 34399, 7483, 2940, '2', '1997-2020', 'Medicine (miscellaneous) (Q2)'), (7741, 'New Horizons in Translational Medicine', 23075023, 0.636, 'Q2', 7, 0, 0, 57, 14, '16', '2014-2017', 'Medicine (miscellaneous) (Q2)'), (7742, 'Past and Present', 312746, 0.636, 'Q1', 36, 41, 3625, 139, 142, '3', '1952-2002, 2005-2020', 'Cultural Studies (Q1); History (Q1)'), (7743, 'Prostate International', 2287903, 0.636, 'Q2', 16, 35, 1026, 174, 84, '2', '2015-2020', 'Urology (Q2)'), (7744, 'Sensors', 14243210, 0.636, 'Q2', 172, 7430, 343397, 59728, 13080, '19', '2001-2020', 'Analytical Chemistry (Q2); Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2); Instrumentation (Q2); Medicine (miscellaneous) (Q2); Bio'), (7745, 'Annals of Vascular Surgery', 16155947, 0.635, 'Q2', 74, 844, 16904, 2242, 1527, '2', '1986-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)'), (7746, 'Biological and Pharmaceutical Bulletin', 13475215, 0.635, 'Q2', 117, 286, 10145, 2009, 871, '6', '1993-2020', 'Medicine (miscellaneous) (Q2); Pharmaceutical Science (Q2); Pharmacology (Q3)'), (7747, 'Canadian Journal of Microbiology', 84166, 0.635, 'Q2', 94, 71, 3557, 655, 267, '9', '1954-1962, 1964-2020', 'Applied Microbiology and Biotechnology (Q2); Medicine (miscellaneous) (Q2); Genetics (Q3); Immunology (Q3); Microbiology (Q3); Molecular Biology (Q3)'), (7748, 'Earth Systems and Environment', 25099426, 0.635, 'Q2', 12, 60, 3538, 340, 119, '19', '2017-2020', 'Computers in Earth Sciences (Q2); Economic Geology (Q2); Environmental Science (miscellaneous) (Q2); Geology (Q2); Global and Planetary Change (Q3)'), (7749, 'International Journal of Cultural Policy', 14772833, 0.635, 'Q1', 45, 102, 6493, 285, 154, '3', '1997-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q1)'), (7750, 'Journal of Wound, Ostomy and Continence Nursi', 15283976, 0.635, 'Q1', 51, 116, 2134, 408, 248, '2', '1977-1979, 1982-2020', 'Advanced and Specialized Nursing (Q1); Medical and Surgical Nursing (Q1)'), (7751, 'NeuroImmunoModulation', 14230216, 0.635, 'Q3', 65, 15, 554, 267, 120, '19', '1994-2002, 2004-2020', 'Endocrine and Autonomic Systems (Q3); Endocrinology (Q3); Immunology (Q3); Neurology (Q3)'), (7752, 'Race and Justice', 21533687, 0.635, 'Q1', 14, 39, 2588, 112, 71, '2', '2011-2020', 'Anthropology (Q1); Law (Q1); Sociology and Political Science (Q1)'), (7753, 'Biomicrofluidics', 19321058, 0.634, 'Q2', 63, 109, 6872, 976, 346, '2', '2007-2020', 'Biomedical Engineering (Q2); Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2); Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2); Physical and Theoretica'), (7754, 'Canadian Journal of Infectious Diseases and M', 17129532, 0.634, 'Q3', 38, 76, 2796, 341, 155, '32', '2005-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3)'), (7755, 'Clinical Medicine Insights: Cardiology', 11795468, 0.634, 'Q2', 21, 21, 921, 154, 58, '41', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (7756, 'Corporate Governance (Bingley)', 14720701, 0.634, 'Q1', 58, 81, 6353, 681, 194, '3', '2001-2020', 'Business, Management and Accounting (miscellaneous) (Q1)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (7757, 'Current Problems in Cardiology', 1462806, 0.634, 'Q2', 48, 28, 1470, 99, 40, '2', '1976-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (7758, 'Diangong Jishu Xuebao/Transactions of China E', 10006753, 0.634, 'Q2', 57, 527, 13494, 4595, 1978, '1', '1998, 2001-2020', 'Electrical and Electronic Engineering (Q2)'), (7759, 'Food Additives and Contaminants - Part A Chem', 19440057, 0.634, 'Q2', 75, 182, 7155, 1690, 594, '3', '2008-2020', 'Chemistry (miscellaneous) (Q2); Food Science (Q2); Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Toxicology (Q3)'), (7760, 'Helgoland Marine Research', 1438387, 0.634, 'Q2', 51, 13, 785, 121, 63, '5', '1996, 1999-2020', 'Aquatic Science (Q2); Oceanography (Q2)'), (7761, 'International Journal of Ophthalmology', 22274898, 0.634, 'Q2', 29, 305, 9100, 1610, 861, '1', '2005-2020', 'Ophthalmology (Q2)'), (7762, 'Journal of Contemporary Criminal Justice', 10439862, 0.634, 'Q1', 47, 32, 1648, 129, 67, '2', '1978-1981, 1983-1984, 1987-2020', 'Law (Q1)'), (7763, 'Journal of Management and Organization', 18393527, 0.634, 'Q2', 33, 91, 6573, 556, 206, '3', '1995-2020', 'Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q2)'), (7764, 'Journal of Number Theory', 10961658, 0.634, 'Q2', 50, 246, 4602, 888, 807, '2', '1969-2020', 'Algebra and Number Theory (Q2)'), (7765, 'Knowledge and Information Systems', 2191377, 0.634, 'Q1', 76, 162, 8042, 1752, 404, '3', '2005-2020', 'Hardware and Architecture (Q1); Artificial Intelligence (Q2); Human-Computer Interaction (Q2); Information Systems (Q2); Software (Q2)'), (7766, 'Metals and Materials International', 15989623, 0.634, 'Q1', 43, 426, 17972, 1326, 542, '13', '1996-2020', 'Metals and Alloys (Q1); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2)'), (7767, 'Meteorology and Atmospheric Physics', 1777971, 0.634, 'Q3', 62, 88, 4278, 510, 212, '28', '1986-2020', 'Atmospheric Science (Q3)'), (7768, 'Risk, Hazards and Crisis in Public Policy', 19444079, 0.634, 'Q2', 8, 20, 1240, 108, 55, '2', '2016-2020', 'Public Administration (Q2)'), (7769, 'Technological and Economic Development of Eco', 20294921, 0.634, 'Q2', 47, 63, 3704, 839, 215, '69', '2005-2020', 'Finance (Q2)'), (7770, 'Analytical Biochemistry', 10960309, 0.633, 'Q2', 190, 334, 13628, 2942, 901, '2', '1960-2020', 'Biophysics (Q2); Biochemistry (Q3); Cell Biology (Q3); Molecular Biology (Q3)'), (7771, 'Andrologia', 14390271, 0.633, 'Q2', 59, 350, 13964, 1926, 757, '3', '1969-2020', 'Medicine (miscellaneous) (Q2); Urology (Q2); Endocrinology (Q3)'), (7772, 'Archaeologies', 15558622, 0.633, 'Q1', 19, 27, 1112, 73, 65, '2', '2007-2020', 'Archeology (arts and humanities) (Q1)'), (7773, 'Biointerphases', 15594106, 0.633, 'Q2', 45, 84, 4343, 503, 203, '2', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Biomaterials (Q3)'), (7774, 'British Journal of Learning Disabilities', 14683156, 0.633, 'Q1', 39, 46, 1569, 156, 96, '3', '1994-1995, 2000-2003, 2006-2008, 2014-2020', 'Pediatrics (Q1); Psychiatric Mental Health (Q2)'), (7775, 'Cadernos de Saude Publica', 102311, 0.633, 'Q2', 77, 309, 8913, 1250, 746, '14', '1998-2020', 'Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7776, 'Communication Research and Practice', 22063374, 0.633, 'Q1', 5, 25, 1084, 88, 48, '3', '2018-2020', 'Communication (Q1); Computer Networks and Communications (Q1); Political Science and International Relations (Q1); Human-Computer Interaction (Q2); Marketing (Q2)'), (7777, 'Currents in Pharmacy Teaching and Learning', 18771297, 0.633, 'Q1', 19, 198, 4543, 823, 518, '2', '2009-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Pharmacy (Q1)'), (7778, 'International Neurourology Journal', 20934777, 0.633, 'Q2', 26, 70, 2087, 386, 157, '13', '2010-2020', 'Urology (Q2); Neurology (Q3); Neurology (clinical) (Q3)'), (7779, 'Natural Products and Bioprospecting', 21922209, 0.633, 'Q2', 21, 46, 2240, 375, 111, '37', '2011-2020', 'Analytical Chemistry (Q2); Food Science (Q2); Organic Chemistry (Q2); Plant Science (Q2); Biochemistry (Q3); Pharmacology (Q3); Toxicology (Q3)'), (7780, 'Veterinary Immunology and Immunopathology', 1652427, 0.633, 'Q1', 95, 94, 3858, 704, 343, '16', '1979-2020', 'Veterinary (miscellaneous) (Q1); Immunology (Q3)'), (7781, 'Abacus', 13072, 0.632, 'Q2', 45, 26, 1670, 184, 65, '3', '1965-2020', 'Accounting (Q2)'), (7782, 'Biomarkers', 13665804, 0.632, 'Q2', 70, 93, 3985, 634, 296, '3', '1996-2020', 'Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3)'), (7783, 'Experimental and Clinical Endocrinology and D', 9477349, 0.632, 'Q2', 76, 155, 6074, 595, 258, '5', '1983-2020', 'Internal Medicine (Q2); Medicine (miscellaneous) (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (7784, 'Journal of Computer Information Systems', 8874417, 0.632, 'Q1', 63, 103, 5879, 492, 144, '3', '1995-2020', 'Computer Networks and Communications (Q1); Education (Q2); Information Systems (Q2)'), (7785, 'Journal of Management Development', 2621711, 0.632, 'Q1', 59, 57, 4165, 620, 206, '3', '1982-2020', 'Business, Management and Accounting (miscellaneous) (Q1); History (Q1); Organizational Behavior and Human Resource Management (Q2)'), (7786, 'Journal of Social Work in End-of-Life and Pal', 15524256, 0.632, 'Q2', 22, 38, 792, 79, 45, '2', '2005-2020', 'Health (social science) (Q2); Life-span and Life-course Studies (Q2); Medicine (miscellaneous) (Q2); Social Work (Q2)'), (7787, 'Lubrication Science', 9540075, 0.632, 'Q2', 36, 33, 1067, 213, 102, '2', '1988-2020', 'Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2)'), (7788, 'Social Policy and Society', 14753073, 0.632, 'Q1', 22, 65, 3470, 308, 142, '3', '2011, 2013-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (7789, 'Welding in the World, Le Soudage Dans Le Mond', 432288, 0.632, 'Q1', 36, 189, 4896, 856, 400, '5', '1969-1971, 1973-2020', 'Metals and Alloys (Q1); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (7790, 'Biochemistry Research International', 20902255, 0.631, 'Q3', 36, 29, 1242, 106, 28, '2', '2010-2020', 'Biochemistry (Q3)'), (7791, 'Bulletin of Marine Science', 74977, 0.631, 'Q2', 76, 53, 2356, 332, 191, '2', '1973-1976, 1980-2020', 'Aquatic Science (Q2); Oceanography (Q2)'), (7792, 'Current Diabetes Reviews', 15733998, 0.631, 'Q3', 57, 111, 7003, 424, 168, '52', '1996, 2005-2020', 'Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (7793, 'Digital Signal Processing: A Review Journal', 10954333, 0.631, 'Q1', 76, 194, 8386, 2366, 587, '2', '1991-2020', 'Computer Vision and Pattern Recognition (Q1); Applied Mathematics (Q2); Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Electrical and Electronic Engineering (Q2); Signal Proc'), (7794, 'Economics, Management, and Financial Markets', 1938212, 0.631, 'Q1', 10, 20, 582, 164, 40, '2', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1); Business and International Management (Q2); Strategy and Management (Q2)'), (7795, 'European Journal of Mathematics', 2199675, 0.631, 'Q2', 13, 88, 2231, 251, 197, '19', '2015-2020', 'Mathematics (miscellaneous) (Q2)'), (7796, 'Experimental Psychology', 21905142, 0.631, 'Q1', 56, 36, 1548, 157, 117, '2', '1962, 1998-2020', 'Arts and Humanities (miscellaneous) (Q1); Medicine (miscellaneous) (Q2); Psychology (miscellaneous) (Q2); Experimental and Cognitive Psychology (Q3)'), (7797, 'Gynecologic and Obstetric Investigation', 1423002, 0.631, 'Q2', 63, 59, 1941, 475, 246, '19', '1895-2020', 'Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)'), (7798, 'IEEE Nanotechnology Magazine', 19427808, 0.631, 'Q2', 16, 38, 1199, 142, 49, '2', '2007-2020', 'Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Nanoscience and Nanotechnology (Q2)'), (7799, 'IISE Transactions on Occupational Ergonomics ', 24725838, 0.631, 'Q2', 3, 18, 798, 31, 8, '3', '2020', 'Human Factors and Ergonomics (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7800, 'International Journal of Mentoring and Coachi', 20466862, 0.631, 'Q2', 16, 25, 1337, 109, 77, '3', '2012-2020', 'Education (Q2); Life-span and Life-course Studies (Q2)'), (7801, 'International Journal of Pediatric Otorhinola', 1655876, 0.631, 'Q2', 78, 665, 18735, 2246, 1322, '42', '1979-2020', 'Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (7802, 'Journal of Astrophysics and Astronomy', 2506335, 0.631, 'Q2', 35, 47, 2128, 483, 190, '4', '1980-2020', 'Astronomy and Astrophysics (Q2); Space and Planetary Science (Q3)'), (7803, 'Journal of Intelligent and Robotic Systems: T', 15730409, 0.631, 'Q1', 77, 253, 9478, 1990, 507, '16', '1988-2020', 'Industrial and Manufacturing Engineering (Q1); Artificial Intelligence (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Software (Q2'), (7804, 'Journal of Paediatrics and Child Health', 10344810, 0.631, 'Q2', 76, 575, 8837, 1185, 659, '3', '1965-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (7805, 'Journal of Psychoeducational Assessment', 15575144, 0.631, 'Q2', 48, 85, 3835, 370, 208, '2', '1983-2020', 'Clinical Psychology (Q2); Education (Q2); Psychology (miscellaneous) (Q2)'), (7806, 'Journal of Wetland Archaeology', 14732971, 0.631, 'Q1', 4, 3, 171, 18, 23, '3', '2015-2018, 2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (7807, 'Palaeoworld', 1871174, 0.631, 'Q2', 30, 79, 5920, 238, 137, '16', '2006-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Paleontology (Q2); Stratigraphy (Q2)'), (7808, 'Proceedings of the Institution of Mechanical ', 14750902, 0.631, 'Q2', 33, 76, 2585, 344, 192, '3', '2002-2020', 'Mechanical Engineering (Q2); Ocean Engineering (Q2)'), (7809, 'Wood Science and Technology', 437719, 0.631, 'Q1', 71, 91, 3967, 665, 261, '5', '1967-2020', 'Forestry (Q1); Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q2); Plant Science (Q2)'), (7810, 'Advances in Structural Engineering', 13694332, 0.63, 'Q2', 42, 296, 10423, 1131, 573, '2', '1999-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2)'), (7811, 'Australasian Journal on Ageing', 14406381, 0.63, 'Q1', 34, 163, 4055, 439, 211, '2', '1998-2020', 'Community and Home Care (Q1); Medicine (miscellaneous) (Q2); Geriatrics and Gerontology (Q3)'), (7812, 'Brain and Development', 18727131, 0.63, 'Q2', 85, 115, 2115, 793, 421, '16', '1979-2020', 'Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Developmental Neuroscience (Q3); Neurology (clinical) (Q3)'), (7813, 'Carpathian Mathematical Publications', 20759827, 0.63, 'Q2', 4, 48, 947, 42, 44, '44', '2019-2020', 'Mathematics (miscellaneous) (Q2)'), (7814, 'Clinical Linguistics and Phonetics', 2699206, 0.63, 'Q1', 51, 100, 5200, 298, 182, '3', '1987-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Medicine (miscellaneous) (Q2); Speech and Hearing (Q2)'), (7815, 'Computers and Electrical Engineering', 457906, 0.63, 'Q1', 64, 298, 7464, 4626, 979, '3', '1973-1984, 1986-2020', 'Computer Science (miscellaneous) (Q1); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)'), (7816, 'Criminal Behaviour and Mental Health', 9579664, 0.63, 'Q2', 54, 39, 1118, 192, 104, '2', '1992-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Psychiatry and Mental Health (Q2); Psychology (miscellaneous) (Q2)'), (7817, 'Fiscal Studies', 1435671, 0.63, 'Q2', 40, 38, 1346, 122, 69, '2', '1979-2020', 'Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)'), (7818, 'Flow Measurement and Instrumentation', 9555986, 0.63, 'Q2', 57, 126, 3571, 947, 380, '3', '1989-2020', 'Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Modeling and Simulation (Q2)'), (7819, 'Genes and Genetic Systems', 13417568, 0.63, 'Q2', 49, 29, 1026, 125, 91, '6', '1996-2020', 'Medicine (miscellaneous) (Q2); Genetics (Q3); Molecular Biology (Q3)'), (7820, 'International Journal of Climate Change Strat', 17568692, 0.63, 'Q1', 21, 42, 1830, 364, 140, '3', '2009-2020', 'Geography, Planning and Development (Q1); Development (Q2); Management, Monitoring, Policy and Law (Q2); Global and Planetary Change (Q3)'), (7821, 'Journal of Convex Analysis', 9446532, 0.63, 'Q2', 41, 43, 988, 233, 223, '5', '1996-2021', 'Analysis (Q2); Mathematics (miscellaneous) (Q2)'), (7822, 'Journal of Scheduling', 10946136, 0.63, 'Q1', 61, 54, 1762, 313, 130, '2', '1998-2020', 'Engineering (miscellaneous) (Q1); Artificial Intelligence (Q2); Management Science and Operations Research (Q2); Software (Q2)'), (7823, 'Open Access Rheumatology: Research and Review', 1179156, 0.63, 'Q3', 14, 41, 1429, 182, 79, '41', '2009-2020', 'Rheumatology (Q3)'), (7824, 'Proceedings of the Edinburgh Mathematical Soc', 14643839, 0.63, 'Q2', 33, 47, 1131, 257, 191, '3', '1883-1898, 1900-1907, 1909-1925, 1927-1942, 1945-1950, 1953-1954, 1956-2020', 'Mathematics (miscellaneous) (Q2)'), (7825, 'Biomedical Microdevices', 15728781, 0.629, 'Q2', 88, 83, 3289, 929, 304, '16', '1998-2020', 'Biomedical Engineering (Q2); Nanoscience and Nanotechnology (Q2); Molecular Biology (Q3)'), (7826, 'BMC Nutrition', 20550928, 0.629, 'Q2', 16, 73, 3059, 391, 200, '3', '2015-2020', 'Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2); Endocrinology, Diabetes and Metabolism (Q3); Nutrition and Dietetics (Q3)'), (7827, 'High-Throughput', 25715135, 0.629, 'Q2', 12, 22, 1272, 269, 99, '19', '2017-2020', 'Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2); Biochemistry (Q3)'), (7828, 'Journal of Accounting, Auditing and Finance', 148558, 0.629, 'Q1', 51, 77, 3852, 159, 88, '2', '1986-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2); Finance (Q2)'), (7829, 'Journal of Microbiological Methods', 18728359, 0.629, 'Q3', 133, 231, 8378, 1640, 687, '16', '1983-2020', 'Microbiology (Q3); Microbiology (medical) (Q3); Molecular Biology (Q3)'), (7830, 'Respiratory Physiology and Neurobiology', 18781519, 0.629, 'Q3', 97, 152, 6885, 823, 438, '16', '2002-2020', 'Neuroscience (miscellaneous) (Q3); Physiology (Q3); Pulmonary and Respiratory Medicine (Q3)'), (7831, 'San Francisco Estuary and Watershed Science', 15462366, 0.629, 'Q2', 17, 19, 1248, 114, 62, '2', '2013-2020', 'Aquatic Science (Q2); Water Science and Technology (Q2)'), (7832, 'Tropical Plant Pathology', 19825676, 0.629, 'Q2', 23, 84, 4363, 344, 190, '19', '2008-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2)'), (7833, 'Aquatic Invasions', 17986540, 0.628, 'Q2', 46, 34, 2193, 267, 133, '38', '2006-2020', 'Aquatic Science (Q2); Water Science and Technology (Q2)'), (7834, 'Bioprocess and Biosystems Engineering', 16157605, 0.628, 'Q2', 68, 290, 9084, 1565, 521, '5', '1996-2020', 'Bioengineering (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)'), (7835, 'Drug Development and Industrial Pharmacy', 3639045, 0.628, 'Q2', 86, 200, 9321, 1966, 614, '2', '1974, 1976-2020', 'Drug Discovery (Q2); Organic Chemistry (Q2); Pharmaceutical Science (Q2); Pharmacology (Q3)'), (7836, 'Ecological Research', 14401703, 0.628, 'Q2', 68, 106, 4804, 593, 305, '2', '1986-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (7837, 'Histology and Histopathology', 16995848, 0.628, 'Q2', 93, 136, 7381, 698, 357, '12', '1986-2020', 'Histology (Q2); Pathology and Forensic Medicine (Q2)'), (7838, 'Historical Methods', 19401906, 0.628, 'Q1', 23, 21, 1166, 64, 46, '2', '1977-2020', 'History (Q1)'), (7839, 'International Journal of Applied Engineering ', 26662795, 0.628, 'Q1', 5, 10, 621, 81, 10, '16', '2019', 'Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)'), (7840, 'International Journal of Plant Sciences', 15375315, 0.628, 'Q2', 88, 65, 4780, 300, 188, '2', '1983, 1992-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (7841, 'Journal of Education and Work', 13639080, 0.628, 'Q2', 36, 37, 1863, 251, 151, '3', '2005-2020', 'Education (Q2); Organizational Behavior and Human Resource Management (Q2); Public Administration (Q2)'), (7842, 'Journal of Electron Spectroscopy and Related ', 3682048, 0.628, 'Q2', 93, 69, 2536, 542, 276, '16', '1972-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Physical and Theoretical Chemistry (Q2); Radiation (Q2); Spectroscopy (Q2'), (7843, 'Journal of Veterinary Behavior: Clinical Appl', 15587878, 0.628, 'Q1', 39, 84, 3673, 539, 235, '2', '2006-2020', 'Veterinary (miscellaneous) (Q1)'), (7844, 'Musculoskeletal Care', 14782189, 0.628, 'Q1', 28, 83, 3089, 318, 172, '2', '2003, 2006-2020', 'Chiropractics (Q1); Nursing (miscellaneous) (Q1); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Rheumatology (Q3)'), (7845, 'Neoplasma', 13384317, 0.628, 'Q3', 50, 160, 5694, 822, 368, '53', '1957-2020', 'Cancer Research (Q3); Oncology (Q3)'), (7846, 'New Directions for Child and Adolescent Devel', 15348687, 0.628, 'Q2', 59, 58, 2832, 173, 96, '2', '1978-1995, 1998-2020', 'Developmental and Educational Psychology (Q2); Medicine (miscellaneous) (Q2); Social Psychology (Q2)'), (7847, 'Quarterly Review of Economics and Finance', 10629769, 0.628, 'Q2', 50, 166, 8195, 859, 319, '16', '1992-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (7848, 'Aquaculture and Fisheries', 20961758, 0.627, 'Q2', 14, 106, 5475, 369, 110, '1', '2016-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7849, 'Australian and New Zealand Journal of Crimino', 48658, 0.627, 'Q1', 39, 38, 2165, 181, 92, '2', '1968-1988, 1990-2020', 'Law (Q1); Pathology and Forensic Medicine (Q2); Social Psychology (Q2)'), (7850, 'British Journal of Religious Education', 17407931, 0.627, 'Q1', 24, 56, 2332, 106, 86, '3', '1978-2020', 'Religious Studies (Q1); Education (Q2)'), (7851, 'Computational Methods and Function Theory', 16179447, 0.627, 'Q2', 16, 58, 1180, 177, 121, '5', '2011-2020', 'Analysis (Q2); Applied Mathematics (Q2); Computational Theory and Mathematics (Q2)'), (7852, 'Computer Communications', 1403664, 0.627, 'Q1', 105, 616, 24961, 2424, 591, '16', '1978-2020', 'Computer Networks and Communications (Q1)'), (7853, 'Folia Parasitologica', 155683, 0.627, 'Q3', 46, 36, 1181, 153, 77, '31', '1971-2020', 'Parasitology (Q3)'), (7854, 'Genes and Environment', 18807046, 0.627, 'Q2', 18, 29, 1001, 162, 73, '3', '2006-2007, 2009-2020', 'Environmental Science (miscellaneous) (Q2); Social Psychology (Q2); Genetics (Q3)'), (7855, 'Journal of Apicultural Research', 218839, 0.627, 'Q2', 56, 194, 8654, 566, 229, '3', '1962-2020', 'Insect Science (Q2)'), (7856, 'Journal of Applied Geophysics', 9269851, 0.627, 'Q2', 82, 243, 9610, 1705, 750, '16', '1992-2020', 'Geophysics (Q2)'), (7857, 'Journal of Clinical Neuroscience', 9675868, 0.627, 'Q2', 80, 785, 19439, 3257, 1608, '2', '1994-2020', 'Medicine (miscellaneous) (Q2); Surgery (Q2); Neurology (Q3); Neurology (clinical) (Q3); Physiology (medical) (Q3)'), (7858, 'Journal of Waterway, Port, Coastal and Ocean ', 19435460, 0.627, 'Q2', 63, 73, 2911, 361, 159, '2', '1982-2020', 'Civil and Structural Engineering (Q2); Ocean Engineering (Q2); Water Science and Technology (Q2)'), (7859, 'Protein Engineering, Design and Selection', 17410126, 0.627, 'Q2', 109, 10, 525, 318, 185, '3', '1986-1996, 2004-2019', 'Bioengineering (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Molecular Biology (Q3)'), (7860, 'Theory and Research in Education', 17413192, 0.627, 'Q2', 30, 25, 972, 89, 51, '3', '2003-2020', 'Education (Q2)'), (7861, 'Cancer Microenvironment', 18752284, 0.626, 'Q3', 43, 0, 0, 104, 39, '16', '2008-2019', 'Cancer Research (Q3); Oncology (Q3)'), (7862, 'Geochronometria', 17338387, 0.626, 'Q2', 31, 25, 1175, 104, 65, '5', '2000-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (7863, 'International Journal of Biomedical Imaging', 16874188, 0.626, 'Q2', 41, 10, 320, 216, 46, '2', '2006-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (7864, 'Journal of Cosmetic Dermatology', 14732165, 0.626, 'Q2', 44, 680, 15300, 1420, 574, '3', '2002, 2006-2020', 'Dermatology (Q2)'), (7865, 'Journal of Statistical Computation and Simula', 15635163, 0.626, 'Q2', 51, 189, 5847, 920, 580, '3', '1970, 1972-2020', 'Applied Mathematics (Q2); Modeling and Simulation (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (7866, 'Research in Science and Technological Educati', 14701138, 0.626, 'Q1', 32, 67, 3909, 172, 84, '3', '1983-2020', 'Multidisciplinary (Q1); Education (Q2)'), (7867, 'Soft Computing', 14327643, 0.626, 'Q2', 81, 1243, 52629, 7893, 2002, '5', '2000, 2003-2020', 'Geometry and Topology (Q2); Software (Q2); Theoretical Computer Science (Q2)'), (7868, 'Stratigraphy', 1547139, 0.626, 'Q2', 24, 9, 530, 70, 62, '2', '1988, 2006-2020', 'Paleontology (Q2)'), (7869, 'Transportation Journal', 411612, 0.626, 'Q2', 39, 17, 979, 78, 41, '2', '1996-2020', 'Transportation (Q2)'), (7870, 'Annals of Anatomy', 9409602, 0.625, 'Q2', 50, 110, 4802, 724, 298, '5', '1992-2020', 'Anatomy (Q2); Medicine (miscellaneous) (Q2); Developmental Biology (Q3)'), (7871, 'Chemosensors', 22279040, 0.625, 'Q2', 20, 128, 6998, 549, 152, '19', '2013-2020', 'Analytical Chemistry (Q2); Physical and Theoretical Chemistry (Q2)'), (7872, 'Economic Analysis and Policy', 3135926, 0.625, 'Q1', 29, 95, 4721, 561, 203, '16', '1970-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Economics and Econometrics (Q2)'), (7873, 'European Journal of Dentistry', 13057464, 0.625, 'Q2', 31, 157, 5242, 1051, 295, '18', '2009, 2011-2020', 'Dentistry (miscellaneous) (Q2)'), (7874, 'Europhysics Letters', 2955075, 0.625, 'Q2', 165, 425, 16588, 4092, 1554, '3', '1986-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (7875, 'Frontiers of Hormone Research', 3013073, 0.625, 'Q3', 36, 0, 0, 220, 87, '19', '1975, 1977, 1984, 1996-1997, 1999-2002, 2004-2010, 2013-2019', 'Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (7876, 'Green Chemistry Letters and Reviews', 17517192, 0.625, 'Q2', 35, 33, 2012, 701, 105, '3', '2007-2020', 'Chemistry (miscellaneous) (Q2); Environmental Chemistry (Q3)'), (7877, 'Internet Histories', 24701483, 0.625, 'Q1', 7, 33, 1751, 86, 57, '3', '2017-2020', 'Computer Science (miscellaneous) (Q1); History (Q1)'), (7878, 'Journal of Neurolinguistics', 18738052, 0.625, 'Q1', 58, 46, 3227, 293, 171, '3', '1985-1986, 1988-1992, 1994-2021', 'Arts and Humanities (miscellaneous) (Q1); Linguistics and Language (Q1); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)'), (7879, 'Minerva Medica', 264806, 0.625, 'Q2', 31, 91, 2791, 536, 152, '7', '1945, 1947-2020', 'Medicine (miscellaneous) (Q2)'), (7880, 'Optics Communications', 304018, 0.625, 'Q2', 136, 1009, 31723, 7218, 3035, '16', '1969-2021', 'Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Physical and Theoretical Chemistry (Q2)'), (7881, 'Prion', 19336896, 0.625, 'Q3', 43, 34, 1517, 247, 87, '2', '2007-2020', 'Biochemistry (Q3); Cell Biology (Q3); Infectious Diseases (Q3); Cellular and Molecular Neuroscience (Q4)'), (7882, 'Carbon Management', 17583012, 0.624, 'Q2', 34, 52, 2647, 365, 134, '3', '2010-2020', 'Environmental Science (miscellaneous) (Q2)'), (7883, 'Constraints', 15729354, 0.624, 'Q2', 46, 14, 479, 158, 47, '16', '1996-2020', 'Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2); Software (Q2)'), (7884, 'Fitoterapia', 367326, 0.624, 'Q2', 103, 270, 11168, 2270, 798, '16', '1948-1949, 1961, 1972-2020', 'Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Pharmacology (Q3)'), (7885, 'Heart and Vessels', 16152573, 0.624, 'Q2', 46, 214, 6025, 1013, 581, '6', '1985-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (7886, 'High Blood Pressure and Cardiovascular Preven', 11791985, 0.624, 'Q2', 21, 63, 2582, 306, 150, '3', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q2); Internal Medicine (Q2)'), (7887, 'Journal of Advanced Prosthodontics', 20057814, 0.624, 'Q2', 31, 48, 1706, 385, 172, '13', '2009-2020', 'Dentistry (miscellaneous) (Q2); Oral Surgery (Q2)'), (7888, 'Journal of Latin American and Caribbean Anthr', 19354932, 0.624, 'Q1', 15, 36, 1453, 92, 102, '2', '1976, 2010-2020', 'Anthropology (Q1)'), (7889, 'Journal of Zhejiang University: Science B', 16731581, 0.624, 'Q1', 56, 95, 4937, 805, 268, '1', '2005-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q1); Veterinary (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (7890, 'Machining Science and Technology', 10910344, 0.624, 'Q1', 50, 58, 2317, 302, 130, '2', '1997-2020', 'Industrial and Manufacturing Engineering (Q1); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (7891, 'Memoirs of Museum Victoria', 14472554, 0.624, 'Q1', 12, 0, 0, 24, 14, '11', '2009-2011, 2013-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Oceanography (Q2); Paleontology (Q2)'), (7892, 'Mind, Brain, and Education', 17512271, 0.624, 'Q2', 35, 40, 2199, 131, 64, '3', '2008-2020', 'Developmental and Educational Psychology (Q2); Education (Q2); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)'), (7893, 'Online Information Review', 14684527, 0.624, 'Q1', 58, 81, 4944, 693, 231, '3', '1980-2020', 'Library and Information Sciences (Q1); Computer Science Applications (Q2); Information Systems (Q2)'), (7894, 'Rivista, Italiana di Paleontologiia e Stratig', 356883, 0.624, 'Q2', 37, 31, 3754, 169, 96, '7', '1979-2020', 'Geology (Q2); Paleontology (Q2); Stratigraphy (Q2)'), (7895, 'Service Science', 21643970, 0.624, 'Q2', 14, 11, 717, 181, 73, '2', '2015-2020', 'Business and International Management (Q2); Management Science and Operations Research (Q2); Marketing (Q2); Modeling and Simulation (Q2)'), (7896, 'Turk Tarim ve Ormancilik Dergisi/Turkish Jour', 1300011, 0.624, 'Q1', 43, 63, 2807, 338, 154, '18', '1994-2020', 'Forestry (Q1); Ecology (Q2); Food Science (Q2)'), (7897, 'Autoimmunity', 8916934, 0.623, 'Q3', 71, 55, 2748, 339, 139, '3', '1988-2020', 'Immunology (Q3); Immunology and Allergy (Q3)'), (7898, 'Forest and Society', 25494333, 0.623, 'Q1', 8, 26, 1009, 120, 47, '21', '2017-2020', 'Forestry (Q1); Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q2); Plant Science (Q2)'), (7899, 'Human Rights Law Review', 14617781, 0.623, 'Q1', 33, 31, 1866, 71, 81, '3', '2005-2020', 'Law (Q1); Sociology and Political Science (Q1)'), (7900, 'International Journal of Urban Sciences', 12265934, 0.623, 'Q1', 20, 44, 2130, 222, 99, '3', '1998-2020', 'Geography, Planning and Development (Q1); Urban Studies (Q1)'), (7901, 'Journal of Geophysics and Engineering', 17422140, 0.623, 'Q1', 38, 68, 2150, 838, 453, '3', '2004-2020', 'Industrial and Manufacturing Engineering (Q1); Geology (Q2); Geophysics (Q2); Management, Monitoring, Policy and Law (Q2)'), (7902, 'Journal of Orofacial Orthopedics', 16156714, 0.623, 'Q2', 42, 54, 1529, 183, 108, '5', '1996-2020', 'Medicine (miscellaneous) (Q2); Oral Surgery (Q2); Orthodontics (Q2)'), (7903, 'Journal of Quality Assurance in Hospitality a', 1528008, 0.623, 'Q2', 28, 63, 4650, 235, 79, '2', '2000-2020', 'Tourism, Leisure and Hospitality Management (Q2)'), (7904, 'Journal of studies on alcohol and drugs. Supp', 19465858, 0.623, 'Q2', 15, 10, 0, 39, 17, '2', '2009, 2014, 2019-2020', 'Medicine (miscellaneous) (Q2)'), (7905, 'Journal of Sustainable Mining', 23003960, 0.623, 'Q2', 17, 25, 961, 277, 80, '17', '2013-2019', 'Environmental Engineering (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Pollution (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (7906, 'Mediterranean Journal of Clinical Psychology', 22821619, 0.623, 'Q2', 15, 67, 4331, 370, 111, '7', '2017-2020', 'Clinical Psychology (Q2)'), (7907, 'Open Economies Review', 9237992, 0.623, 'Q2', 33, 53, 2084, 195, 128, '16', '1990-2020', 'Economics and Econometrics (Q2)'), (7908, 'Panminerva Medica', 18271898, 0.623, 'Q2', 34, 54, 1524, 404, 101, '7', '1959-2020', 'Medicine (miscellaneous) (Q2)'), (7909, 'Topological Methods in Nonlinear Analysis', 12303429, 0.623, 'Q2', 23, 62, 1636, 216, 220, '17', '2009-2020', 'Analysis (Q2); Applied Mathematics (Q2)'), (7910, 'Training and Education in Professional Psycho', 19313918, 0.623, 'Q2', 32, 47, 600, 147, 114, '2', '2007-2020', 'Education (Q2); Psychology (miscellaneous) (Q2)'), (7911, 'Bulletin de la Societe Mathematique de France', 379484, 0.622, 'Q2', 35, 20, 411, 71, 67, '8', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (7912, 'Diagnostics', 20754418, 0.622, 'Q3', 19, 894, 41521, 742, 225, '19', '2014-2016, 2018-2020', 'Clinical Biochemistry (Q3)'), (7913, 'Foundations and Trends in Web Science', 15550788, 0.622, 'Q1', 8, 1, 193, 2, 1, '2', '2006, 2010-2012, 2014, 2016-2017', 'Computer Networks and Communications (Q1)'), (7914, 'Frontiers in Energy', 20951698, 0.622, 'Q2', 24, 87, 3965, 517, 172, '2', '2011-2020', 'Energy Engineering and Power Technology (Q2)'), (7915, 'Gastroenterology Research and Practice', 1687630, 0.622, 'Q3', 45, 200, 6556, 1233, 600, '2', '2009-2020', 'Gastroenterology (Q3); Hepatology (Q3)'), (7916, 'Geomechanics and Engineering', 20926219, 0.622, 'Q2', 29, 176, 7798, 1345, 460, '13', '2009-2020', 'Civil and Structural Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (7917, 'Journal of Agricultural Education and Extensi', 1389224, 0.622, 'Q1', 25, 47, 2217, 194, 76, '3', '2010-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Geography, Planning and Development (Q1); Education (Q2)'), (7918, 'Journal of Cardiovascular Nursing', 8894655, 0.622, 'Q1', 59, 90, 1547, 493, 257, '2', '1986-2020', 'Advanced and Specialized Nursing (Q1); Cardiology and Cardiovascular Medicine (Q2)'), (7919, 'Journal of Clinical Pharmacy and Therapeutics', 13652710, 0.622, 'Q2', 73, 228, 7304, 902, 377, '3', '1976-2020', 'Pharmacology (medical) (Q2); Pharmacology (Q3)'), (7920, 'Journal of Housing and the Built Environment', 15737772, 0.622, 'Q1', 44, 78, 4170, 347, 149, '16', '1996-2020', 'Geography, Planning and Development (Q1); Urban Studies (Q1)'), (7921, 'Journal of Statistical Planning and Inference', 3783758, 0.622, 'Q2', 77, 112, 3240, 306, 222, '16', '1977-2021', 'Applied Mathematics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (7922, 'Livestock Science', 18711413, 0.622, 'Q1', 111, 358, 15608, 1646, 756, '16', '2006-2020', 'Veterinary (miscellaneous) (Q1); Animal Science and Zoology (Q2)'), (7923, 'Methods of Information in Medicine', 261270, 0.622, 'Q1', 62, 28, 1050, 336, 131, '5', '1962-2020', 'Advanced and Specialized Nursing (Q1); Health Informatics (Q2); Health Information Management (Q2)'), (7924, 'Silva Fennica', 22424075, 0.622, 'Q1', 60, 48, 2013, 301, 145, '38', '1976, 1978, 1981-2020', 'Forestry (Q1); Ecological Modeling (Q3)'), (7925, 'Adoption &amp; Fostering', 1740469, 0.621, 'Q1', 26, 33, 771, 104, 73, '3', '1996-2020', 'Law (Q1); Sociology and Political Science (Q1); Health (social science) (Q2); Human Factors and Ergonomics (Q2); Social Psychology (Q2)'), (7926, 'AJOB Empirical Bioethics', 23294523, 0.621, 'Q1', 19, 49, 1462, 210, 82, '3', '2014-2020', 'Philosophy (Q1); Health Policy (Q2); Health (social science) (Q2)'), (7927, 'Electronic Journal of Differential Equations', 10726691, 0.621, 'Q2', 45, 131, 3394, 753, 655, '2', '1996-2020', 'Analysis (Q2)'), (7928, 'Environmental Economics and Policy Studies', 1867383, 0.621, 'Q2', 23, 34, 1564, 160, 100, '6', '1998-2002, 2004-2020', 'Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2)'), (7929, 'Financial Review', 15406288, 0.621, 'Q2', 47, 37, 1678, 79, 72, '2', '1969-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (7930, 'Health and Human Rights', 10790969, 0.621, 'Q1', 30, 82, 1610, 205, 136, '2', '1994-2001, 2003-2004, 2006, 2008-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1); Health (social science) (Q2)'), (7931, 'Horticulturae', 23117524, 0.621, 'Q1', 14, 109, 5440, 569, 180, '19', '2015-2020', 'Horticulture (Q1); Plant Science (Q2)'), (7932, 'Ichthyological Exploration of Freshwaters', 9369902, 0.621, 'Q2', 25, 5, 124, 34, 21, '5', '2005-2018, 2020', 'Animal Science and Zoology (Q2); Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7933, 'Journal of Agricultural, Biological, and Envi', 10857117, 0.621, 'Q1', 52, 37, 1487, 227, 95, '2', '1996-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Applied Mathematics (Q2); Environmental Science (miscellaneous) (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertaint'), (7934, 'Journal of Non-Crystalline Solids: X', 25901591, 0.621, 'Q2', 6, 7, 782, 132, 33, '16', '2019-2020', 'Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2)'), (7935, 'Journal of Nucleic Acids', 20900201, 0.621, 'Q3', 32, 2, 56, 48, 22, '2', '2010-2020', 'Biochemistry (Q3); Molecular Biology (Q3)'), (7936, 'Medical science monitor basic research', 23254394, 0.621, 'Q2', 20, 17, 0, 265, 93, '2', '2013-2020', 'Medicine (miscellaneous) (Q2)'), (7937, 'Pediatric Physical Therapy', 8985669, 0.621, 'Q2', 47, 92, 1339, 279, 160, '2', '1989-2020', 'Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (7938, 'Positivity', 13851292, 0.621, 'Q2', 30, 112, 2502, 309, 257, '19', '1997-2020', 'Analysis (Q2); Mathematics (miscellaneous) (Q2); Theoretical Computer Science (Q2)'), (7939, 'Zootaxa', 11755334, 0.621, 'Q2', 87, 2461, 99379, 7465, 6272, '41', '2005-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (7940, 'Acupuncture in Medicine', 9645284, 0.62, 'Q1', 45, 111, 2990, 342, 141, '3', '1992, 1996-2020', 'Complementary and Alternative Medicine (Q1); Medicine (miscellaneous) (Q2); Neurology (clinical) (Q3)'), (7941, 'Annals of Work Exposures and Health', 23987308, 0.62, 'Q2', 77, 96, 3450, 616, 301, '3', '2017-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (7942, 'Criminal Justice Review', 15563839, 0.62, 'Q1', 36, 35, 2140, 126, 73, '2', '1976-2020', 'Law (Q1)'), (7943, 'Epidemiologia e servicos de saude : revista d', 22379622, 0.62, 'Q2', 15, 131, 0, 381, 215, '14', '2016-2020', 'Medicine (miscellaneous) (Q2)'), (7944, 'European Journal of Mechanics, B/Fluids', 9977546, 0.62, 'Q2', 69, 153, 5582, 1059, 457, '16', '1990-1992, 1995-2021', 'Mathematical Physics (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (7945, 'Head and Face Medicine', 1746160, 0.62, 'Q2', 38, 37, 1427, 171, 77, '3', '2005-2020', 'Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2); Neurology (clinical) (Q3)'), (7946, 'IEEE Transactions on Magnetics', 189464, 0.62, 'Q2', 137, 407, 8497, 4909, 2437, '2', '1965-2020', 'Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (7947, 'IEEE Transactions on Nanobioscience', 15361241, 0.62, 'Q2', 63, 75, 2866, 949, 230, '2', '2002-2020', 'Bioengineering (Q2); Biomedical Engineering (Q2); Biotechnology (Q2); Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Medicine (miscellaneous) (Q2); Nanoscience and Nan'), (7948, 'International Journal of Nursing Practice', 13227114, 0.62, 'Q1', 55, 109, 3879, 461, 230, '2', '1995-2020', 'Nursing (miscellaneous) (Q1)'), (7949, 'Journal of Clinical and Translational Endocri', 22146237, 0.62, 'Q3', 19, 33, 1268, 240, 98, '16', '2014-2020', 'Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (7950, 'Journal of Evidence-Based Integrative Medicin', 2515690, 0.62, 'Q1', 34, 22, 1446, 610, 202, '3', '2018-2020', 'Complementary and Alternative Medicine (Q1)'), (7951, 'Journal of the Royal Anthropological Institut', 13590987, 0.62, 'Q1', 62, 48, 2751, 234, 143, '2', '1995-2001, 2004-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q1)'), (7952, 'Laboratory Animals', 236772, 0.62, 'Q1', 63, 76, 2042, 315, 184, '3', '1970-2020', 'Veterinary (miscellaneous) (Q1); Animal Science and Zoology (Q2)'), (7953, 'Starch/Staerke', 389056, 0.62, 'Q2', 82, 115, 4775, 1102, 433, '5', '1949-1959, 1961-2020', 'Food Science (Q2); Organic Chemistry (Q2)'), (7954, 'Veterinary Medicine International', 20908113, 0.62, 'Q1', 30, 62, 2613, 164, 55, '32', '2010-2020', 'Veterinary (miscellaneous) (Q1)'), (7955, 'Canadian Journal of Development Studies', 21589100, 0.619, 'Q2', 29, 51, 2858, 160, 102, '3', '1980-2020', 'Development (Q2)'), (7956, 'Communicable diseases intelligence quarterly ', 14474514, 0.619, 'Q2', 19, 0, 0, 60, 55, '11', '2012-2017', 'Medicine (miscellaneous) (Q2)'), (7957, 'International Urology and Nephrology', 3011623, 0.619, 'Q2', 52, 327, 9654, 1744, 784, '16', '1970-2020', 'Nephrology (Q2); Urology (Q2)'), (7958, 'Journal of Diabetes and Metabolic Disorders', 22516581, 0.619, 'Q2', 33, 219, 10285, 406, 165, '3', '2012-2020', 'Internal Medicine (Q2); Endocrinology, Diabetes and Metabolism (Q3)'), (7959, 'Journal of the Acoustical Society of America', 15208524, 0.619, 'Q1', 187, 841, 28579, 4986, 2555, '2', '1929-2020', 'Acoustics and Ultrasonics (Q1); Arts and Humanities (miscellaneous) (Q1)'), (7960, 'Journal of Toxicologic Pathology', 9149198, 0.619, 'Q2', 27, 36, 990, 216, 120, '6', '1988-1990, 1992-2020', 'Pathology and Forensic Medicine (Q2); Toxicology (Q3)'), (7961, 'Linguistics and Language Compass', 1749818, 0.619, 'Q1', 44, 29, 2656, 155, 76, '3', '2008-2020', 'Linguistics and Language (Q1)'), (7962, 'Perception', 14684233, 0.619, 'Q2', 91, 87, 3773, 370, 242, '2', '1972-2020', 'Artificial Intelligence (Q2); Ophthalmology (Q2); Experimental and Cognitive Psychology (Q3); Sensory Systems (Q3)'), (7963, 'Sustainability Accounting, Management and Pol', 20408021, 0.619, 'Q1', 29, 55, 4872, 374, 112, '3', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q1); Renewable Energy, Sustainability and the Environment (Q2)'), (7964, 'Therapeutic Delivery', 20415990, 0.619, 'Q2', 46, 66, 3504, 684, 226, '3', '2010-2020', 'Pharmaceutical Science (Q2)'), (7965, 'Adapted Physical Activity Quarterly', 15432777, 0.618, 'Q2', 55, 29, 1242, 262, 93, '2', '1988-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)'), (7966, 'American Journal of Distance Education', 8923647, 0.618, 'Q2', 17, 31, 1159, 122, 60, '2', '1987-1996, 1998-1999, 2001, 2008-2020', 'Computer Science Applications (Q2); Education (Q2)'), (7967, 'Archive for Mathematical Logic', 14320665, 0.618, 'Q1', 32, 59, 982, 129, 159, '2', '1988-2020', 'Philosophy (Q1); Logic (Q2)'), (7968, 'BMC pharmacology &amp; toxicology', 20506511, 0.618, 'Q2', 30, 88, 3326, 657, 258, '3', '2012-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Pharmacology (Q3)'), (7969, 'Clinics', 19805322, 0.618, 'Q2', 61, 221, 4071, 875, 391, '14', '1945-1946, 2005-2020', 'Medicine (miscellaneous) (Q2)'), (7970, 'Domestic Animal Endocrinology', 18790054, 0.618, 'Q2', 74, 83, 4106, 308, 146, '2', '1984-2021', 'Animal Science and Zoology (Q2); Food Animals (Q2); Endocrinology (Q3)'), (7971, 'Foundations and Trends in Computer Graphics a', 15722740, 0.618, 'Q1', 25, 1, 811, 16, 3, '2', '2005-2007, 2009-2016, 2018-2019', 'Computer Vision and Pattern Recognition (Q1)'), (7972, 'HERD', 21675112, 0.618, 'Q2', 27, 102, 3060, 325, 135, '2', '2007-2020', 'Critical Care and Intensive Care Medicine (Q2); Public Health, Environmental and Occupational Health (Q2)'), (7973, 'Journal of Combinatorial Designs', 10638539, 0.618, 'Q2', 34, 53, 1118, 107, 113, '2', '1993-2020', 'Discrete Mathematics and Combinatorics (Q2)'), (7974, 'Journal of Human Lactation', 8903344, 0.618, 'Q2', 60, 149, 3615, 587, 273, '2', '1985-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (7975, 'Journal of Orthopaedic Science', 14362023, 0.618, 'Q2', 67, 353, 8589, 985, 595, '16', '1961-1963, 1996-2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (7976, 'Monographs of the Society for Research in Chi', 37976, 0.618, 'Q2', 63, 4, 955, 120, 63, '3', '1961-1982, 1984-2020', 'Developmental and Educational Psychology (Q2)'), (7977, 'Nursing Forum', 17446198, 0.618, 'Q1', 36, 113, 3964, 387, 206, '2', '1961-1981, 1984-1985, 1987-2000, 2002-2020', 'Nursing (miscellaneous) (Q1)'), (7978, 'Research in Economics', 10909451, 0.618, 'Q2', 27, 31, 856, 153, 118, '2', '1997-2020', 'Economics and Econometrics (Q2)'), (7979, 'Antarctic Science', 9541020, 0.617, 'Q2', 68, 52, 1902, 201, 117, '3', '1986-1987, 1989-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Geology (Q2); Oceanography (Q2)'), (7980, 'Australian Journal of Water Resources', 13241583, 0.617, 'Q2', 15, 24, 1316, 72, 38, '3', '2007-2020', 'Water Science and Technology (Q2)'), (7981, 'Bioorganic and Medicinal Chemistry Letters', 14643405, 0.617, 'Q2', 147, 657, 20184, 6212, 2292, '3', '1991-2020', 'Drug Discovery (Q2); Organic Chemistry (Q2); Pharmaceutical Science (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3); Molecular Biology (Q3); Molecular Medicine (Q3)'), (7982, 'BioTechniques', 19409818, 0.617, 'Q2', 131, 148, 3649, 433, 284, '2', '1984-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biotechnology (Q2)'), (7983, 'Chinese Optics Letters', 16717694, 0.617, 'Q2', 37, 253, 7468, 1412, 700, '1', '2003-2020', 'Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (7984, 'Funkcialaj Ekvacioj', 5328721, 0.617, 'Q2', 21, 15, 392, 58, 45, '6', '2003-2020', 'Algebra and Number Theory (Q2); Analysis (Q2); Geometry and Topology (Q2)'), (7985, 'Information Systems Management', 10580530, 0.617, 'Q1', 58, 50, 2089, 216, 67, '3', '1992-2020', 'Library and Information Sciences (Q1); Computer Science Applications (Q2); Information Systems (Q2)'), (7986, 'International Journal of Phytoremediation', 15497879, 0.617, 'Q2', 84, 195, 10682, 1510, 469, '3', '1994, 1996-2020', 'Plant Science (Q2); Pollution (Q2); Environmental Chemistry (Q3)'), (7987, 'Journal of Biomedical Research', 23524685, 0.617, 'Q2', 31, 49, 2116, 351, 165, '1', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (7988, 'Journal of Cellular Plastics', 15307999, 0.617, 'Q1', 40, 50, 2098, 257, 86, '3', '1965-2020', 'Polymers and Plastics (Q1); Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2)'), (7989, 'Journal of King Saud University - Computer an', 22131248, 0.617, 'Q1', 33, 314, 12519, 1739, 267, '29', '2014-2020', 'Computer Science (miscellaneous) (Q1)'), (7990, 'Journal of School Nursing', 10598405, 0.617, 'Q1', 33, 100, 3608, 361, 154, '2', '1991-2020', 'Nursing (miscellaneous) (Q1)'), (7991, 'PM and R', 19341482, 0.617, 'Q2', 66, 253, 7638, 1273, 620, '2', '2009-2020', 'Medicine (miscellaneous) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Neurology (Q3); Neurology (clinical) (Q3); Sports Science (Q3)'), (7992, 'Acta Myologica', 11282460, 0.616, 'Q2', 33, 40, 372, 86, 56, '7', '1997-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (7993, 'Acta Oecologica', 1146609, 0.616, 'Q2', 72, 106, 6927, 441, 257, '16', '1983, 1990-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)'), (7994, 'Annals of Burns and Fire Disasters', 15929566, 0.616, 'Q1', 22, 51, 1353, 211, 158, '7', '2010-2020', 'Emergency Nursing (Q1); Critical Care and Intensive Care Medicine (Q2); Emergency Medicine (Q2)'), (7995, 'Brazilian Dental Journal', 1036440, 0.616, 'Q2', 50, 90, 2558, 498, 281, '14', '1990-2020', 'Dentistry (miscellaneous) (Q2)'), (7996, 'Communicable diseases intelligence (2018)', 22096051, 0.616, 'Q2', 6, 96, 0, 82, 82, '9', '2018-2020', 'Medicine (miscellaneous) (Q2)'), (7997, 'Environmental Chemistry', 14482517, 0.616, 'Q2', 62, 52, 2998, 373, 158, '11', '2004-2020', 'Chemistry (miscellaneous) (Q2); Geochemistry and Petrology (Q2); Environmental Chemistry (Q3)'), (7998, 'Evidence and Policy', 17442648, 0.616, 'Q1', 34, 35, 1749, 181, 94, '3', '2006-2020', 'Social Sciences (miscellaneous) (Q1); Cardiology and Cardiovascular Medicine (Q2); Orthopedics and Sports Medicine (Q2); Physiology (Q3)'), (7999, 'International Journal of Cyber Criminology', 9742891, 0.616, 'Q1', 16, 21, 957, 127, 63, '4', '2012-2020', 'Law (Q1)'), (8000, 'International Journal of Marine Energy', 22141669, 0.616, 'Q2', 23, 0, 0, 182, 56, '3', '2013-2017', 'Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Ocean Engineering (Q2); Water Science and Technology (Q2)'), (8001, 'Japanese Journal of Radiology', 1867108, 0.616, 'Q2', 41, 143, 4557, 575, 262, '6', '2009-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (8002, 'Journal of Criminal Psychology', 20093829, 0.616, 'Q1', 10, 16, 987, 92, 64, '3', '2011-2020', 'Law (Q1); Applied Psychology (Q2); Social Psychology (Q2)'), (8003, 'Midcontinental journal of archaeology, MCJA', 1461109, 0.616, 'Q1', 5, 15, 1086, 24, 34, '2', '1980, 1989, 2000, 2015-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (8004, 'Pedagogy, Culture and Society', 14681366, 0.616, 'Q1', 37, 83, 4215, 187, 112, '3', '1999-2020', 'Cultural Studies (Q1); Education (Q2)'), (8005, 'Town Planning Review', 1478341, 0.616, 'Q1', 39, 24, 1357, 143, 108, '3', '1977-2020', 'Geography, Planning and Development (Q1); Urban Studies (Q1)'), (8006, 'Ultrasound Journal', 25248987, 0.616, 'Q2', 25, 50, 1329, 220, 86, '3', '2019-2020', 'Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (8007, 'Advances in Production Engineering And Manage', 18556531, 0.615, 'Q1', 18, 27, 853, 339, 110, '60', '2014-2020', 'Industrial and Manufacturing Engineering (Q1); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Mechanical Engineering (Q2); Nuclear and High Energy Physi'), (8008, 'Analytical Methods', 17599679, 0.615, 'Q1', 67, 602, 27999, 6438, 2150, '3', '2009-2020', 'Engineering (miscellaneous) (Q1); Analytical Chemistry (Q2); Chemical Engineering (miscellaneous) (Q2)'), (8009, 'China Journal of Accounting Research', 17553091, 0.615, 'Q2', 15, 20, 1011, 134, 58, '1', '2013-2020', 'Accounting (Q2); Finance (Q2)'), (8010, 'Expert Review of Medical Devices', 17434440, 0.615, 'Q2', 65, 135, 8189, 825, 284, '3', '2004-2020', 'Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)'), (8011, 'Geoscience Canada', 3150941, 0.615, 'Q2', 30, 13, 714, 38, 28, '9', '1979-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (8012, 'Journal for the Theory of Social Behaviour', 14685914, 0.615, 'Q1', 51, 32, 1951, 165, 74, '3', '1971-2020', 'Philosophy (Q1); Psychology (miscellaneous) (Q2); Social Psychology (Q2)'), (8013, 'Journal of Clinical Rheumatology', 10761608, 0.615, 'Q2', 50, 274, 2519, 424, 211, '2', '1995-2020', 'Medicine (miscellaneous) (Q2); Rheumatology (Q3)'), (8014, 'Journal of Energy Resources Technology, Trans', 15288994, 0.615, 'Q2', 48, 138, 5246, 1275, 511, '2', '1979-2021', 'Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geochemistry and Petrology (Q2); Mechanical Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (8015, 'Journal of Infrared, Millimeter, and Terahert', 18666892, 0.615, 'Q2', 59, 111, 5292, 756, 308, '2', '2008-2020', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Radiation (Q2)'), (8016, 'Journal of Northwest Atlantic Fishery Science', 2506408, 0.615, 'Q2', 40, 5, 175, 10, 6, '9', '1980, 1984, 1989-1994, 1996-2010, 2012, 2014-2017, 2019-2020', 'Ecology (Q2); Oceanography (Q2)'), (8017, 'Journal of Sexual Aggression', 17426545, 0.615, 'Q3', 34, 39, 2248, 127, 68, '3', '1994, 1996-1997, 1999-2020', 'Behavioral Neuroscience (Q3)'), (8018, 'Journal of Urban and Regional Analysis', 20674082, 0.615, 'Q1', 9, 13, 626, 47, 33, '43', '2009-2020', 'Urban Studies (Q1)'), (8019, 'Mammal Research', 21992401, 0.615, 'Q2', 44, 85, 4665, 239, 149, '5', '2015-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8020, 'Materials Today Communications', 23524928, 0.615, 'Q2', 25, 973, 45203, 1818, 560, '16', '2014-2020', 'Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (8021, 'Studies in History and Philosophy of Science ', 393681, 0.615, 'Q1', 37, 95, 5051, 229, 134, '3', '1970-1971, 1974-1978, 1980-1981, 1983-1986, 1988, 1990-2020', 'History (Q1); History and Philosophy of Science (Q1)'), (8022, 'Tertiary Education and Management', 13583883, 0.615, 'Q2', 34, 30, 1428, 162, 75, '3', '1995-2020', 'Education (Q2); Organizational Behavior and Human Resource Management (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (8023, 'Waste and Biomass Valorization', 1877265, 0.615, 'Q2', 41, 745, 36274, 2803, 826, '16', '2010-2020', 'Environmental Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2); Waste Management and Disposal (Q2)'), (8024, 'Advances in Applied Mathematics and Mechanics', 20751354, 0.614, 'Q2', 27, 70, 2412, 366, 223, '3', '2009-2020', 'Applied Mathematics (Q2); Mechanical Engineering (Q2)'), (8025, 'Annals of Agricultural Sciences', 5701783, 0.614, 'Q1', 28, 29, 1661, 259, 84, '32', '2011-2020', 'Horticulture (Q1); Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Food Science (Q2); Plant Science (Q2); Soil Science (Q2)'), (8026, 'Current Colorectal Cancer Reports', 15563790, 0.614, 'Q3', 24, 15, 881, 166, 103, '2', '2005-2020', 'Gastroenterology (Q3); Hepatology (Q3); Oncology (Q3)'), (8027, 'Developmental Neurorehabilitation', 17518423, 0.614, 'Q2', 55, 67, 2916, 385, 191, '3', '1997-1999, 2002-2003, 2005-2020', 'Medicine (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2); Rehabilitation (Q2); Developmental Neuroscience (Q3)'), (8028, 'Diatom Research', 21598347, 0.614, 'Q2', 35, 27, 1205, 143, 86, '3', '1986-2020', 'Aquatic Science (Q2)'), (8029, 'European Journal of Lipid Science and Technol', 14389312, 0.614, 'Q1', 94, 132, 5883, 1367, 565, '5', '2000-2020', 'Industrial and Manufacturing Engineering (Q1); Biotechnology (Q2); Chemistry (miscellaneous) (Q2); Food Science (Q2)'), (8030, 'European Journal of Plant Pathology', 9291873, 0.614, 'Q1', 93, 263, 10834, 1568, 843, '16', '1994-2020', 'Horticulture (Q1); Agronomy and Crop Science (Q2); Plant Science (Q2)'), (8031, 'Food Science and Nutrition', 20487177, 0.614, 'Q2', 27, 649, 27377, 2497, 838, '3', '2013-2020', 'Food Science (Q2)'), (8032, 'International Journal of Spray and Combustion', 17568277, 0.614, 'Q1', 16, 9, 434, 116, 61, '3', '2011-2020', 'Automotive Engineering (Q1); Energy Engineering and Power Technology (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (8033, 'International Planning Studies', 14699265, 0.614, 'Q1', 41, 41, 2631, 136, 75, '3', '1996-2020', 'Geography, Planning and Development (Q1)'), (8034, 'Psychology of Consciousness: Theory Research,', 23265531, 0.614, 'Q2', 8, 43, 1745, 131, 81, '2', '2016-2020', 'Clinical Psychology (Q2); Social Psychology (Q2); Experimental and Cognitive Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)'), (8035, 'Russian Journal of Economics', 26187213, 0.614, 'Q1', 12, 20, 499, 106, 67, '10', '2019-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (8036, 'Ultrasound International Open', 2509596, 0.614, 'Q2', 10, 17, 279, 159, 61, '5', '2015, 2018-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (8037, 'Brazilian Journal of Medical and Biological R', 100879, 0.613, 'Q2', 88, 147, 5061, 1208, 487, '14', '1973-2020', 'Biophysics (Q2); Medicine (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Biochemistry (Q3); Cell Biology (Q3); Neuroscience (miscellaneous) (Q3); Physiology (Q3'), (8038, 'CAAI Transactions on Intelligence Technology', 24686557, 0.613, 'Q1', 15, 40, 1545, 396, 74, '3', '2017-2020', 'Computer Networks and Communications (Q1); Artificial Intelligence (Q2); Computer Vision and Pattern Recognition (Q2); Human-Computer Interaction (Q2); Information Systems (Q2)'), (8039, 'Child and Adolescent Social Work Journal', 7380151, 0.613, 'Q1', 42, 93, 5492, 317, 156, '2', '1984-2020', 'Social Sciences (miscellaneous) (Q1); Social Work (Q2)'), (8040, 'Journal of Food Protection', 19449097, 0.613, 'Q2', 137, 256, 10888, 1630, 752, '2', '1977-1980, 1982-2020', 'Food Science (Q2); Microbiology (Q3)'), (8041, 'Journal of Wildlife Diseases', 19433700, 0.613, 'Q2', 70, 133, 3934, 611, 368, '2', '1970-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8042, 'Organizational Dynamics', 902616, 0.613, 'Q1', 61, 84, 0, 224, 102, '3', '1972-1995, 1997-2020', 'Sociology and Political Science (Q1); Applied Psychology (Q2); Organizational Behavior and Human Resource Management (Q2)'), (8043, 'Palgrave Communications', 20551045, 0.613, 'Q1', 20, 104, 5504, 1123, 397, '3', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Arts and Humanities (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (8044, 'Psychological Injury and Law', 1938971, 0.613, 'Q1', 25, 34, 2694, 163, 78, '2', '2008-2020', 'Law (Q1); Ecology (Q2); Psychiatry and Mental Health (Q2)'), (8045, 'Toxicologic Pathology', 15331601, 0.613, 'Q2', 108, 103, 5006, 528, 283, '2', '1972-2020', 'Pathology and Forensic Medicine (Q2); Cell Biology (Q3); Molecular Biology (Q3); Toxicology (Q3)'), (8046, 'Canadian Journal of Ophthalmology', 84182, 0.612, 'Q2', 52, 201, 3104, 700, 378, '2', '1966-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q3)'), (8047, 'Climate', 22251154, 0.612, 'Q3', 23, 146, 8985, 929, 322, '19', '2013-2020', 'Atmospheric Science (Q3)'), (8048, 'Clinical Endoscopy', 22342400, 0.612, 'Q2', 29, 106, 2821, 558, 274, '13', '2011-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Gastroenterology (Q3)'), (8049, 'Computational Visual Media', 20960662, 0.612, 'Q1', 15, 36, 1773, 323, 91, '1', '2015-2020', 'Computer Graphics and Computer-Aided Design (Q1); Artificial Intelligence (Q2); Computer Vision and Pattern Recognition (Q2)'), (8050, 'Geodiversitas', 12809659, 0.612, 'Q2', 38, 26, 2240, 122, 72, '8', '2002-2020', 'Geology (Q2); Paleontology (Q2)'), (8051, 'IET Smart Grid', 25152947, 0.612, 'Q2', 11, 96, 3800, 340, 87, '3', '2018-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2)'), (8052, 'IPSJ Transactions on Computer Vision and Appl', 18826695, 0.612, 'Q2', 17, 4, 231, 245, 41, '6', '2009-2020', 'Computer Vision and Pattern Recognition (Q2)'), (8053, 'Mycoscience', 16182545, 0.612, 'Q2', 45, 50, 1969, 229, 183, '16', '1994-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (8054, 'Network Science', 20501250, 0.612, 'Q1', 18, 42, 2245, 148, 77, '3', '2013-2020', 'Communication (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)'), (8055, 'Ophthalmic Genetics', 13816810, 0.612, 'Q2', 39, 116, 3071, 535, 300, '3', '1981-2020', 'Pediatrics, Perinatology and Child Health (Q2); Genetics (clinical) (Q3); Ophthalmology (Q3)'), (8056, 'Sustainability', 20711050, 0.612, 'Q1', 85, 10654, 664559, 52097, 14339, '19', '2009-2020', 'Geography, Planning and Development (Q1); Energy Engineering and Power Technology (Q2); Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2); Renewable Energy, Susta'), (8057, 'Agricultural Finance Review', 21466, 0.611, 'Q1', 24, 48, 2242, 244, 128, '3', '1980, 2000-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Economics and Econometrics (Q2); Finance (Q2); Strategy and Management (Q2)'), (8058, 'Enterprise and Society', 14672227, 0.611, 'Q1', 26, 35, 2215, 64, 90, '3', '2000-2020', 'Business, Management and Accounting (miscellaneous) (Q1); History (Q1)'), (8059, 'European Journal of Applied Mathematics', 14694425, 0.611, 'Q2', 48, 39, 1588, 272, 154, '3', '1990-2020', 'Applied Mathematics (Q2)'), (8060, 'Geophysical and Astrophysical Fluid Dynamics', 10290419, 0.611, 'Q1', 36, 48, 1953, 173, 75, '3', '1971, 1973, 1975, 1977-2020', 'Computational Mechanics (Q1); Astronomy and Astrophysics (Q2); Geochemistry and Petrology (Q2); Geophysics (Q2); Mechanics of Materials (Q2)'), (8061, 'Iranian Journal of Basic Medical Sciences', 20083874, 0.611, 'Q2', 39, 222, 11024, 1564, 559, '15', '2007-2020', 'Biophysics (Q2); Drug Discovery (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3); Immunology and Microbiology (miscellaneous) (Q3)'), (8062, 'Journal of Grid Computing', 15707873, 0.611, 'Q1', 53, 47, 2496, 438, 103, '16', '2003-2020', 'Hardware and Architecture (Q1); Computer Networks and Communications (Q2); Information Systems (Q2); Software (Q2)'), (8063, 'Journal of Tourism and Cultural Change', 14766825, 0.611, 'Q1', 28, 73, 4168, 223, 99, '3', '2003-2020', 'Cultural Studies (Q1); Geography, Planning and Development (Q1); Nature and Landscape Conservation (Q2); Tourism, Leisure and Hospitality Management (Q2); Transportation (Q2)'), (8064, 'NeuroRehabilitation', 10538135, 0.611, 'Q2', 65, 109, 4655, 784, 360, '16', '1991-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Neurology (clinical) (Q3)'), (8065, 'SPE Production and Operations', 19301855, 0.611, 'Q2', 54, 66, 2067, 464, 188, '2', '2006-2020', 'Energy Engineering and Power Technology (Q2); Fuel Technology (Q2)'), (8066, 'Atoms', 22182004, 0.61, 'Q2', 18, 94, 4231, 485, 202, '19', '2013-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Nuclear and High Energy Physics (Q2)'), (8067, 'Feminist Economics', 14664372, 0.61, 'Q1', 55, 32, 1758, 207, 96, '3', '1995-2020', 'Gender Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)'), (8068, 'International Journal of Dentistry', 16878736, 0.61, 'Q2', 33, 129, 4465, 581, 241, '2', '2011-2020', 'Dentistry (miscellaneous) (Q2)'), (8069, 'Journal of Information Security and Applicati', 22142126, 0.61, 'Q2', 40, 183, 8559, 1526, 292, '3', '2013-2020', 'Computer Networks and Communications (Q2); Safety, Risk, Reliability and Quality (Q2); Software (Q2)'), (8070, 'Journal of Sensory Studies', 1745459, 0.61, 'Q2', 53, 60, 2369, 405, 147, '2', '1986-2020', 'Food Science (Q2); Sensory Systems (Q3)'), (8071, 'Journal of Sport Psychology in Action', 21520712, 0.61, 'Q2', 17, 39, 1036, 137, 64, '2', '2010-2020', 'Applied Psychology (Q2); Human Factors and Ergonomics (Q2); Social Psychology (Q2)'), (8072, 'Kennedy Institute of Ethics Journal', 10863249, 0.61, 'Q1', 42, 21, 727, 94, 61, '2', '1991-2020', 'History and Philosophy of Science (Q1); Issues, Ethics and Legal Aspects (Q1); Health Policy (Q2); Health (social science) (Q2); Medicine (miscellaneous) (Q2)'), (8073, 'Linguistic Inquiry', 243892, 0.61, 'Q1', 69, 17, 907, 103, 79, '2', '1996, 1998-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (8074, 'Polymers for Advanced Technologies', 10427147, 0.61, 'Q1', 90, 308, 13452, 2619, 837, '3', '1990-2020', 'Polymers and Plastics (Q1)'), (8075, 'Stat', 20491573, 0.61, 'Q2', 18, 59, 1795, 144, 106, '3', '2012-2020', 'Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (8076, 'Women and Health', 3630242, 0.61, 'Q2', 59, 96, 3712, 402, 233, '2', '1975-2020', 'Medicine (miscellaneous) (Q2)'), (8077, 'Acta Oto-Laryngologica', 16512251, 0.609, 'Q2', 80, 190, 3407, 948, 621, '3', '1918, 1920-2020', 'Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2)'), (8078, 'American Journal of Veterinary Research', 19435681, 0.609, 'Q1', 89, 120, 3624, 502, 434, '2', '1945-1947, 1949-2020', 'Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (8079, 'Archives of Psychiatric Nursing', 15328228, 0.609, 'Q2', 50, 107, 4261, 687, 315, '3', '1987-2020', 'Psychiatric Mental Health (Q2)'), (8080, 'Canadian Journal of Surgery', 8428, 0.609, 'Q2', 64, 104, 1717, 419, 230, '9', '1957-2020', 'Medicine (miscellaneous) (Q2); Surgery (Q2)'), (8081, 'Empirical Software Engineering', 13823256, 0.609, 'Q2', 75, 138, 9068, 1778, 281, '16', '1996-2020', 'Software (Q2)'), (8082, 'Experimental Lung Research', 15210499, 0.609, 'Q3', 52, 42, 1690, 267, 118, '3', '1980-2020', 'Clinical Biochemistry (Q3); Molecular Biology (Q3); Pulmonary and Respiratory Medicine (Q3)'), (8083, 'Journal of Communications and Networks', 12292370, 0.609, 'Q2', 46, 35, 1160, 689, 160, '13', '1999-2020', 'Computer Networks and Communications (Q2); Information Systems (Q2)'), (8084, 'Journal of Gynecology Obstetrics and Human Re', 24687847, 0.609, 'Q2', 37, 226, 5968, 587, 344, '16', '2016-2020', 'Obstetrics and Gynecology (Q2); Reproductive Medicine (Q2)'), (8085, 'Journal of Pediatric Nursing', 15328449, 0.609, 'Q1', 60, 243, 8813, 1058, 530, '3', '1986-2020', 'Pediatrics (Q1)'), (8086, 'Korean Journal of Chemical Engineering', 19757220, 0.609, 'Q2', 60, 257, 11318, 2579, 887, '2', '1984-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)'), (8087, 'Mathematical Social Sciences', 1654896, 0.609, 'Q1', 37, 62, 1549, 190, 184, '16', '1980-2020', 'Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1); Psychology (miscellaneous) (Q2); Statistics, Probability and Uncertainty (Q2)'), (8088, 'Membranes', 20770375, 0.609, 'Q2', 42, 442, 27808, 1675, 370, '19', '2010-2020', 'Chemical Engineering (miscellaneous) (Q2); Filtration and Separation (Q2); Process Chemistry and Technology (Q2)'), (8089, 'Molecular Syndromology', 16618777, 0.609, 'Q3', 36, 55, 1474, 208, 128, '19', '2010-2020', 'Genetics (Q3); Genetics (clinical) (Q3)'), (8090, 'Reproduction, Fertility and Development', 10313613, 0.609, 'Q2', 76, 90, 4899, 1243, 606, '11', '1989-2020', 'Animal Science and Zoology (Q2); Biotechnology (Q2); Reproductive Medicine (Q2); Developmental Biology (Q3); Endocrinology (Q3); Genetics (Q3); Molecular Biology (Q3)'), (8091, 'Acta Veterinaria Scandinavica', 17510147, 0.608, 'Q1', 54, 67, 2314, 458, 222, '3', '1965-2020', 'Veterinary (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (8092, 'Aging, Neuropsychology, and Cognition', 17444128, 0.608, 'Q2', 59, 80, 4665, 260, 154, '3', '1994-2020', 'Psychiatry and Mental Health (Q2); Experimental and Cognitive Psychology (Q3); Geriatrics and Gerontology (Q3); Neuropsychology and Physiological Psychology (Q3)'), (8093, 'Biological Cybernetics', 14320770, 0.608, 'Q1', 95, 39, 2219, 248, 97, '5', '1961-2020', 'Computer Science (miscellaneous) (Q1); Biotechnology (Q2)'), (8094, 'BMC Research Notes', 17560500, 0.608, 'Q2', 74, 540, 13512, 4528, 2505, '3', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (8095, 'Clinical Physiology and Functional Imaging', 1475097, 0.608, 'Q2', 67, 51, 1974, 634, 305, '3', '1997-2020', 'Medicine (miscellaneous) (Q2); Physiology (Q3); Physiology (medical) (Q3)'), (8096, 'Counselor Education and Supervision', 110035, 0.608, 'Q2', 40, 21, 790, 121, 60, '2', '1961-2020', 'Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Education (Q2)'), (8097, 'Current Developmental Disorders Reports', 21962987, 0.608, 'Q2', 22, 32, 2119, 144, 79, '19', '2014-2020', 'Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2); Developmental Neuroscience (Q3)'), (8098, 'Hystrix', 18255272, 0.608, 'Q2', 23, 24, 1399, 156, 90, '7', '2008-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8099, 'International Agrophysics', 2368722, 0.608, 'Q1', 37, 44, 1883, 435, 177, '5', '1989, 1992-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Fluid Flow and Transfer Processes (Q2); Soil Science (Q2); Water Science and Technology (Q2)'), (8100, 'Journal of Composite Materials', 219983, 0.608, 'Q2', 91, 417, 17192, 2501, 951, '3', '1967-2020', 'Ceramics and Composites (Q2); Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (8101, 'Pharmacy Practice', 1885642, 0.608, 'Q1', 24, 82, 3164, 396, 164, '12', '2006-2020', 'Pharmacy (Q1); Pharmaceutical Science (Q2)'), (8102, 'Saudi Journal of Gastroenterology', 19984049, 0.608, 'Q3', 32, 55, 1736, 344, 151, '4', '2006-2020', 'Gastroenterology (Q3)'), (8103, 'Biomedical Reports', 20499434, 0.607, 'Q2', 25, 139, 5986, 712, 363, '39', '2014-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q3)'), (8104, 'BJPsych Bulletin', 20564708, 0.607, 'Q2', 18, 74, 1380, 273, 172, '3', '2014-2020', 'Psychiatry and Mental Health (Q2)'), (8105, 'Canadian Journal of Zoology', 84301, 0.607, 'Q2', 104, 85, 5752, 585, 387, '9', '1965-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8106, 'Cryptogamie, Algologie', 1811568, 0.607, 'Q2', 33, 12, 488, 99, 52, '8', '1990-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (8107, 'Early Childhood Education Journal', 15731707, 0.607, 'Q2', 41, 110, 5192, 407, 215, '16', '1995-2002, 2005-2020', 'Developmental and Educational Psychology (Q2); Education (Q2)'), (8108, 'European Journal of International Law', 9385428, 0.607, 'Q1', 59, 32, 1285, 179, 147, '3', '2005-2019', 'Law (Q1); Political Science and International Relations (Q1)'), (8109, 'International Journal of Management Science a', 17509653, 0.607, 'Q1', 24, 29, 1020, 262, 90, '3', '2006-2020', 'Engineering (miscellaneous) (Q1); Information Systems and Management (Q2); Management Science and Operations Research (Q2); Mechanical Engineering (Q2); Strategy and Management (Q2)'), (8110, 'Journal of Asia Business Studies', 15592243, 0.607, 'Q1', 17, 52, 4450, 323, 104, '3', '2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Strategy and Management (Q2)'), (8111, 'Journal of Biomaterials Science, Polymer Edit', 15685624, 0.607, 'Q2', 96, 156, 7551, 1213, 389, '3', '1989-2020', 'Bioengineering (Q2); Biomedical Engineering (Q2); Biophysics (Q2); Biomaterials (Q3)'), (8112, 'Journal of Social Entrepreneurship', 19420684, 0.607, 'Q2', 25, 55, 3835, 188, 60, '3', '2010-2020', 'Business and International Management (Q2); Development (Q2); Economics and Econometrics (Q2)'), (8113, 'Journal of Social Studies Research', 885985, 0.607, 'Q1', 11, 35, 2284, 105, 74, '2', '2013-2020', 'Social Sciences (miscellaneous) (Q1); Education (Q2)'), (8114, 'NeuroReport', 9594965, 0.607, 'Q3', 188, 199, 5270, 1115, 646, '2', '1990-2020', 'Neuroscience (miscellaneous) (Q3)'), (8115, 'North American Journal of Economics and Finan', 10629408, 0.607, 'Q2', 37, 268, 12933, 911, 346, '2', '1992-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (8116, 'Thermochimica Acta', 406031, 0.607, 'Q2', 134, 266, 10859, 2303, 748, '16', '1970-2020', 'Condensed Matter Physics (Q2); Instrumentation (Q2); Physical and Theoretical Chemistry (Q2)'), (8117, 'Animal Science Journal', 13443941, 0.606, 'Q1', 38, 180, 6819, 1177, 640, '3', '2003-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Medicine (miscellaneous) (Q2)'), (8118, 'Cancer Informatics', 11769351, 0.606, 'Q3', 31, 17, 563, 169, 83, '41', '2005-2020', 'Cancer Research (Q3); Oncology (Q3)'), (8119, 'Clinical and Translational Imaging', 22815872, 0.606, 'Q2', 25, 45, 2233, 303, 117, '7', '2013-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (8120, 'Edinburgh Journal of Botany', 14740036, 0.606, 'Q2', 28, 17, 497, 77, 75, '3', '1990-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (8121, 'European Review of Economic History', 13614916, 0.606, 'Q1', 36, 37, 1912, 68, 52, '3', '1999, 2001-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1)'), (8122, 'Frontiers in Bioscience - Scholar', 19450516, 0.606, 'Q2', 46, 11, 1065, 202, 69, '2', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q3)'), (8123, 'Geosciences (Switzerland)', 20763263, 0.606, 'Q2', 26, 501, 30799, 3129, 1123, '19', '2011-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (8124, 'Information and Software Technology', 9505849, 0.606, 'Q2', 103, 121, 6853, 2316, 403, '16', '1970, 1987-2020', 'Computer Science Applications (Q2); Information Systems (Q2); Software (Q2)'), (8125, 'Journal of Computational and Nonlinear Dynami', 15551423, 0.606, 'Q2', 48, 61, 2240, 837, 366, '2', '2006-2020', 'Applied Mathematics (Q2); Control and Systems Engineering (Q2); Mechanical Engineering (Q2)'), (8126, 'Journal of Development Effectiveness', 19439407, 0.606, 'Q1', 24, 21, 953, 122, 68, '3', '2009-2020', 'Geography, Planning and Development (Q1); Development (Q2)'), (8127, 'Journal of Sport Rehabilitation', 15433072, 0.606, 'Q2', 51, 188, 5439, 586, 324, '2', '1992-2020', 'Biophysics (Q2); Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Sports Science (Q3)'), (8128, 'Materials Science and Technology', 2670836, 0.606, 'Q2', 90, 217, 8020, 1625, 744, '3', '1984-2020', 'Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (8129, 'Open Systems and Information Dynamics', 15731324, 0.606, 'Q1', 35, 16, 446, 186, 73, '37', '1992-1995, 1997-2020', 'Computational Mechanics (Q1); Fluid Flow and Transfer Processes (Q2); Information Systems (Q2); Mathematical Physics (Q2); Mechanics of Materials (Q2); Physical and Theoretical Chemistry (Q2); Statist'), (8130, 'P-Adic Numbers, Ultrametric Analysis, and App', 20700474, 0.606, 'Q2', 15, 28, 534, 132, 78, '10', '2009-2020', 'Mathematics (miscellaneous) (Q2)'), (8131, 'Spectrochimica Acta - Part A: Molecular and B', 13861425, 0.606, 'Q2', 123, 1258, 56751, 10524, 2805, '16', '1995-2021', 'Analytical Chemistry (Q2); Atomic and Molecular Physics, and Optics (Q2); Instrumentation (Q2); Spectroscopy (Q2)'), (8132, 'Stem Cells and Cloning: Advances and Applicat', 11786957, 0.606, 'Q2', 22, 10, 591, 57, 18, '41', '2010-2020', 'Medicine (miscellaneous) (Q2); Cell Biology (Q3)'), (8133, 'Wind and Structures, An International Journal', 12266116, 0.606, 'Q2', 40, 39, 1397, 378, 191, '13', '1998-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Modeling and Simulation (Q2)'), (8134, 'AIDS Reviews', 11396121, 0.605, 'Q2', 55, 37, 1597, 144, 82, '12', '2000-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Infectious Diseases (Q3)'), (8135, 'Behavioral Interventions', 10720847, 0.605, 'Q2', 34, 50, 1533, 162, 120, '3', '1986-2020', 'Arts and Humanities (miscellaneous) (Q2); Clinical Psychology (Q2); Developmental and Educational Psychology (Q2); Psychiatry and Mental Health (Q2)'), (8136, 'Computational Intelligence and Neuroscience', 16875273, 0.605, 'Q1', 52, 163, 6846, 1843, 398, '2', '2007-2020', 'Computer Science (miscellaneous) (Q1); Mathematics (miscellaneous) (Q2); Medicine (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q3)'), (8137, 'Empirical Economics', 14358921, 0.605, 'Q1', 56, 364, 16139, 780, 455, '5', '1976-2020', 'Social Sciences (miscellaneous) (Q1); Economics and Econometrics (Q2); Mathematics (miscellaneous) (Q2); Statistics and Probability (Q2)'), (8138, 'Journal of Data and Information Science', 2096157, 0.605, 'Q1', 8, 53, 1527, 62, 33, '17', '2016, 2018-2020', 'Library and Information Sciences (Q1); Information Systems and Management (Q2); Public Administration (Q2)'), (8139, 'Journal of Official Statistics', 282423, 0.605, 'Q2', 24, 39, 1381, 164, 123, '20', '1986-1989, 1991, 2009-2020', 'Statistics and Probability (Q2)'), (8140, 'Journal of Vibration and Acoustics, Transacti', 10489002, 0.605, 'Q1', 82, 78, 2539, 685, 336, '2', '1983-2020', 'Acoustics and Ultrasonics (Q1); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (8141, 'Latin American Antiquity', 10456635, 0.605, 'Q1', 39, 50, 2892, 149, 140, '2', '1990, 2002-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)'), (8142, 'Musicae Scientiae', 10298649, 0.605, 'Q1', 39, 54, 3568, 160, 95, '2', '1997-2020', 'Music (Q1); Experimental and Cognitive Psychology (Q3)'), (8143, 'Research in Mathematical Sciences', 21979847, 0.605, 'Q2', 21, 32, 1262, 286, 103, '19', '2014-2020', 'Applied Mathematics (Q2); Computational Mathematics (Q2); Mathematics (miscellaneous) (Q2); Theoretical Computer Science (Q2)'), (8144, 'Review of Scientific Instruments', 346748, 0.605, 'Q2', 165, 939, 25428, 5863, 3114, '2', '1930-2020', 'Instrumentation (Q2); Medicine (miscellaneous) (Q2)'), (8145, 'Sociological Quarterly', 380253, 0.605, 'Q1', 62, 75, 5365, 167, 104, '2', '1960-2020', 'Sociology and Political Science (Q1)'), (8146, 'Acta Crystallographica Section B: Structural ', 20525206, 0.604, 'Q1', 33, 113, 4398, 650, 326, '2', '2013-2020', 'Metals and Alloys (Q1); Atomic and Molecular Physics, and Optics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Medicine (miscellaneous) (Q2)'), (8147, 'Consulting Psychology Journal', 10659293, 0.604, 'Q2', 44, 19, 893, 121, 60, '2', '1993-2020', 'Developmental and Educational Psychology (Q2); Psychology (miscellaneous) (Q2)'), (8148, 'Depositional Record', 20554877, 0.604, 'Q2', 3, 35, 3433, 2, 1, '2', '2020', 'Environmental Science (miscellaneous) (Q2); Geology (Q2); Oceanography (Q2); Paleontology (Q2); Stratigraphy (Q2)'), (8149, 'Dermatologica Sinica', 10278117, 0.604, 'Q2', 17, 54, 842, 140, 97, '3', '2005-2020', 'Dermatology (Q2)'), (8150, 'Evolutionary Behavioral Sciences', 23302933, 0.604, 'Q2', 14, 44, 902, 125, 91, '2', '2014-2020', 'Social Psychology (Q2); Experimental and Cognitive Psychology (Q3)'), (8151, 'International Journal of Entrepreneurship and', 20436882, 0.604, 'Q2', 16, 29, 2077, 155, 72, '3', '2013-2020', 'Business and International Management (Q2); Management of Technology and Innovation (Q2)'), (8152, 'Journal de Mycologie Medicale', 11565233, 0.604, 'Q3', 32, 70, 2186, 673, 253, '8', '1994-2020', 'Infectious Diseases (Q3)'), (8153, 'Journal of Korean Neurosurgical Society', 12258245, 0.604, 'Q2', 34, 86, 2512, 510, 266, '13', '2008-2020', 'Surgery (Q2); Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q3)'), (8154, 'Journal of Oceanography', 9168370, 0.604, 'Q2', 71, 39, 1853, 256, 134, '6', '1992-2020', 'Oceanography (Q2)'), (8155, 'Neuropsychoanalysis', 15294145, 0.604, 'Q3', 26, 19, 326, 61, 24, '3', '1999-2019', 'Neuropsychology and Physiological Psychology (Q3); Neuroscience (miscellaneous) (Q3)'), (8156, 'Nonlinear Processes in Geophysics', 10235809, 0.604, 'Q2', 61, 30, 1855, 311, 135, '5', '1994-2020', 'Geochemistry and Petrology (Q2); Geophysics (Q2); Statistical and Nonlinear Physics (Q2)'), (8157, 'Nursing Education Perspectives', 15365026, 0.604, 'Q2', 48, 150, 1914, 354, 374, '2', '2002-2020', 'Education (Q2); Medicine (miscellaneous) (Q2); Nursing (miscellaneous) (Q2)'), (8158, 'Quality Engineering', 15324222, 0.604, 'Q1', 40, 92, 2503, 322, 148, '2', '1970-1972, 1974, 1988-2020', 'Industrial and Manufacturing Engineering (Q1); Safety, Risk, Reliability and Quality (Q2)'), (8159, 'ACM Transactions on Management Information Sy', 21586578, 0.603, 'Q1', 29, 26, 1495, 243, 48, '2', '2010-2020', 'Computer Science (miscellaneous) (Q1); Management Information Systems (Q2)'), (8160, 'Arquivos Brasileiros de Oftalmologia', 16782925, 0.603, 'Q2', 29, 115, 2177, 256, 234, '14', '1945, 1949, 1960-1977, 1979-1994, 2000-2020', 'Medicine (miscellaneous) (Q2); Ophthalmology (Q3)'), (8161, 'Electronic Journal of Biotechnology', 7173458, 0.603, 'Q2', 57, 57, 2458, 648, 201, '45', '1998-2020', 'Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2)'), (8162, 'Forensic Science, Medicine, and Pathology', 1547769, 0.603, 'Q2', 37, 146, 3395, 414, 273, '2', '2005-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)'), (8163, 'Geografiska Annaler, Series B: Human Geograph', 4353684, 0.603, 'Q1', 56, 23, 1572, 145, 67, '3', '1976, 1978-1979, 1982-2020', 'Geography, Planning and Development (Q1)'), (8164, 'Health Information Management Journal', 18333575, 0.603, 'Q2', 22, 35, 1393, 135, 52, '11', '2002-2020', 'Health Informatics (Q2); Health Policy (Q2); Leadership and Management (Q2); Health Information Management (Q3)'), (8165, 'International Journal of Simulation Modelling', 17264529, 0.603, 'Q2', 24, 56, 1503, 539, 180, '28', '2005-2020', 'Computer Science Applications (Q2); Modeling and Simulation (Q2)'), (8166, 'Journal of Outdoor and Environmental Educatio', 22063110, 0.603, 'Q2', 7, 19, 866, 86, 47, '19', '2016-2020', 'Education (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (8167, 'Mini-Reviews in Medicinal Chemistry', 13895575, 0.603, 'Q2', 89, 149, 14217, 1221, 338, '52', '2001-2020', 'Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Molecular Medicine (Q3); Pharmacology (Q3); Cancer Research (Q4)'), (8168, 'Quarterly of Applied Mathematics', 15524485, 0.603, 'Q2', 41, 27, 1039, 145, 97, '2', '1970, 1973-1988, 1990-2020', 'Applied Mathematics (Q2)'), (8169, 'Steel Research International', 16113683, 0.603, 'Q1', 49, 193, 6483, 1106, 567, '2', '2003-2020', 'Metals and Alloys (Q1); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2)'), (8170, 'Sydowia', 820598, 0.603, 'Q2', 29, 17, 765, 60, 47, '28', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (8171, 'ACM Transactions on Human-Robot Interaction', 25739522, 0.602, 'Q2', 8, 23, 1723, 105, 25, '2', '2018-2020', 'Artificial Intelligence (Q2); Human-Computer Interaction (Q2)'), (8172, 'Acta Physiologiae Plantarum', 18611664, 0.602, 'Q2', 71, 181, 10270, 1630, 682, '17', '1985, 1987-1988, 1993-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2); Physiology (Q3)'), (8173, 'Annals of Global Health', 22149996, 0.602, 'Q2', 66, 154, 5087, 600, 274, '2', '2014-2020', 'Medicine (miscellaneous) (Q2)'), (8174, 'Archives of Medical Research', 1884409, 0.602, 'Q2', 80, 150, 5554, 568, 243, '2', '1992-2020', 'Medicine (miscellaneous) (Q2)'), (8175, 'Avian Research', 20537166, 0.602, 'Q2', 11, 45, 2502, 207, 125, '19', '2014-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8176, 'EMA - Emergency Medicine Australasia', 17426731, 0.602, 'Q2', 52, 245, 4100, 631, 389, '3', '2004-2020', 'Emergency Medicine (Q2); Medicine (miscellaneous) (Q2)'), (8177, 'Global Policy', 17585899, 0.602, 'Q1', 33, 115, 5087, 588, 325, '3', '2010-2020', 'Law (Q1); Political Science and International Relations (Q1); Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2); Global and Planetary Change (Q3)'), (8178, 'International Journal of Population Data Scie', 23994908, 0.602, 'Q1', 7, 48, 1810, 132, 81, '3', '2017-2020', 'Demography (Q1); Health Informatics (Q2); Information Systems (Q2); Information Systems and Management (Q2)'), (8179, 'Journal of Advanced Academics', 21629536, 0.602, 'Q2', 28, 24, 1516, 97, 47, '2', '2006-2020', 'Education (Q2)'), (8180, 'Journal of Infrastructure Systems', 10760342, 0.602, 'Q2', 67, 68, 3960, 606, 192, '2', '1995-2020', 'Civil and Structural Engineering (Q2)'), (8181, 'Journal of Otology', 16722930, 0.602, 'Q2', 10, 36, 935, 121, 81, '1', '2006-2020', 'Otorhinolaryngology (Q2)'), (8182, 'Nuclear Science and Techniques/Hewuli', 10018042, 0.602, 'Q2', 24, 117, 4900, 1216, 554, '37', '1993-1994, 1996, 1998-2010, 2013-2020', 'Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)'), (8183, 'Ramanujan Journal', 15729303, 0.602, 'Q2', 39, 178, 3019, 446, 357, '16', '1997-2020', 'Algebra and Number Theory (Q2)'), (8184, 'Theory and Decision', 15737187, 0.602, 'Q1', 37, 62, 2059, 203, 159, '16', '1970-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Social Sciences (miscellaneous) (Q1); Applied Psychology (Q2); Arts and Humanities (miscellaneous) (Q2); Computer Science Applications (Q2); D'), (8185, 'Thermal Engineering (English translation of T', 406015, 0.602, 'Q2', 20, 113, 2052, 470, 365, '10', '1970-1974, 1976-1991, 1995-2020', 'Energy Engineering and Power Technology (Q2); Nuclear Energy and Engineering (Q2)'), (8186, 'Advances in Mathematics of Communications', 19305346, 0.601, 'Q2', 26, 48, 1110, 166, 153, '2', '2008-2020', 'Algebra and Number Theory (Q2); Applied Mathematics (Q2); Computer Networks and Communications (Q2); Discrete Mathematics and Combinatorics (Q2)'), (8187, 'Asia Pacific Journal of Marketing and Logisti', 13555855, 0.601, 'Q2', 46, 89, 7235, 994, 283, '3', '1993-2020', 'Business and International Management (Q2); Marketing (Q2); Strategy and Management (Q2)'), (8188, 'Biomedical and Environmental Sciences', 8953988, 0.601, 'Q2', 54, 133, 2635, 613, 216, '3', '1988-2020', 'Health, Toxicology and Mutagenesis (Q2); Public Health, Environmental and Occupational Health (Q2)'), (8189, 'Clinical Medicine Insights: Oncology', 11795549, 0.601, 'Q3', 26, 20, 736, 114, 51, '41', '2010-2020', 'Oncology (Q3)'), (8190, 'Crop Breeding and Applied Biotechnology', 15187853, 0.601, 'Q2', 23, 66, 1566, 303, 179, '14', '2006-2020', 'Agronomy and Crop Science (Q2); Biotechnology (Q2)'), (8191, 'Engineering Optimization', 305215, 0.601, 'Q2', 64, 209, 7702, 1148, 370, '3', '1974-2020', 'Applied Mathematics (Q2); Computer Science Applications (Q2); Control and Optimization (Q2); Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q2)'), (8192, 'Health Education Research', 14653648, 0.601, 'Q2', 103, 37, 1742, 239, 141, '3', '1986-2020', 'Education (Q2); Public Health, Environmental and Occupational Health (Q2)'), (8193, 'Heart and Lung: Journal of Acute and Critical', 1479563, 0.601, 'Q2', 72, 184, 4915, 571, 259, '2', '1973-2020', 'Cardiology and Cardiovascular Medicine (Q2); Critical Care and Intensive Care Medicine (Q2); Pulmonary and Respiratory Medicine (Q3)'), (8194, 'Journal of Child Health Care', 17412889, 0.601, 'Q1', 38, 77, 3158, 285, 143, '2', '1997-2020', 'Pediatrics (Q1); Pediatrics, Perinatology and Child Health (Q2)'), (8195, 'Journal of Microbiology and Biotechnology', 17388872, 0.601, 'Q2', 64, 207, 7926, 1702, 713, '13', '1991, 1996-2020', 'Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Medicine (miscellaneous) (Q2)'), (8196, 'Journal of Occupational Medicine and Toxicolo', 17456673, 0.601, 'Q1', 39, 38, 1588, 250, 100, '3', '2006-2020', 'Safety Research (Q1); Public Health, Environmental and Occupational Health (Q2); Toxicology (Q3)'), (8197, 'Journal of Palaeogeography', 20953836, 0.601, 'Q2', 20, 30, 2272, 180, 80, '16', '2012-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2); Paleontology (Q2)'), (8198, 'Limnologica', 18735851, 0.601, 'Q2', 47, 53, 3343, 396, 168, '5', '1974, 1980, 1994-2020', 'Aquatic Science (Q2)'), (8199, 'Lipids', 15589307, 0.601, 'Q2', 120, 66, 2909, 523, 252, '5', '1966-2020', 'Organic Chemistry (Q2); Biochemistry (Q3); Cell Biology (Q3)'), (8200, 'Medicine and Sport Science', 2545020, 0.601, 'Q2', 36, 0, 0, 47, 18, '19', '2005, 2007-2014, 2016-2017', 'Orthopedics and Sports Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)'), (8201, 'Moravian Geographical Reports', 12108812, 0.601, 'Q1', 20, 25, 1751, 175, 68, '31', '1993-2020', 'Geography, Planning and Development (Q1); Earth and Planetary Sciences (miscellaneous) (Q2)'), (8202, 'Palaeontologia Electronica', 10948074, 0.601, 'Q2', 38, 59, 4980, 260, 166, '2', '1998-2020', 'Oceanography (Q2)'), (8203, 'Thyroid Research', 17566614, 0.601, 'Q3', 20, 17, 539, 88, 34, '3', '2010-2020', 'Endocrine and Autonomic Systems (Q3); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (8204, 'Annals of Clinical Biochemistry', 17581001, 0.6, 'Q2', 80, 74, 1745, 549, 271, '3', '1961-1970, 1973-2020', 'Medicine (miscellaneous) (Q2); Clinical Biochemistry (Q3)'), (8205, 'Arab Journal of Urology', 2090598, 0.6, 'Q2', 19, 57, 1209, 410, 164, '16', '2011-2020', 'Urology (Q2)'), (8206, 'BioMedical Engineering Online', 1475925, 0.6, 'Q2', 75, 90, 4440, 1470, 442, '3', '2002-2020', 'Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Biomaterials (Q3)'), (8207, 'Chemometrics and Intelligent Laboratory Syste', 1697439, 0.6, 'Q2', 126, 209, 9022, 1977, 517, '16', '1986-2020', 'Analytical Chemistry (Q2); Computer Science Applications (Q2); Process Chemistry and Technology (Q2); Software (Q2); Spectroscopy (Q2)'), (8208, 'Energy Sources, Part B: Economics, Planning a', 15567249, 0.6, 'Q2', 35, 33, 2156, 617, 229, '3', '2006-2020', 'Chemical Engineering (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Environmental Science (miscellaneous) (Q2); Fuel Technology (Q2); Nuclear Energy and Engineering (Q2); Renewabl'), (8209, 'Journal of Clinical and Aesthetic Dermatology', 19412789, 0.6, 'Q2', 39, 67, 1850, 509, 253, '2', '2009-2020', 'Dermatology (Q2)'), (8210, 'Journal of Consumer Policy', 1687034, 0.6, 'Q2', 50, 42, 2093, 111, 64, '2', '1977-1981, 1983-2002, 2005-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)'), (8211, 'Journal of GLBT Family Studies', 15504298, 0.6, 'Q1', 32, 35, 2266, 187, 74, '2', '2005-2020', 'Gender Studies (Q1); Social Sciences (miscellaneous) (Q1)'), (8212, 'Journal of Terramechanics', 224898, 0.6, 'Q2', 54, 47, 1607, 380, 97, '3', '1964-2020', 'Mechanical Engineering (Q2)'), (8213, 'Journal of the American Veterinary Medical As', 31488, 0.6, 'Q1', 111, 325, 5439, 866, 642, '2', '1945-2020', 'Veterinary (miscellaneous) (Q1)'), (8214, 'Linguistics Vanguard', 2199174, 0.6, 'Q1', 10, 27, 1027, 134, 104, '5', '2015-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (8215, 'Veterinary and Comparative Orthopaedics and T', 25676911, 0.6, 'Q1', 45, 83, 2050, 267, 199, '5', '1996-2020', 'Veterinary (miscellaneous) (Q1); Animal Science and Zoology (Q2)'), (8216, 'World Englishes', 8832919, 0.6, 'Q1', 49, 81, 4438, 194, 142, '2', '1981-2020', 'Anthropology (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q1)'), (8217, 'Foundations of Physics', 15729516, 0.599, 'Q2', 60, 96, 3839, 689, 240, '2', '1970-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (8218, 'International Journal of Veterinary Science a', 23144599, 0.599, 'Q1', 15, 15, 835, 285, 100, '3', '2013-2020', 'Veterinary (miscellaneous) (Q1)'), (8219, 'Journal of Anesthesia', 14388359, 0.599, 'Q2', 44, 165, 4211, 664, 330, '6', '1987-2020', 'Anesthesiology and Pain Medicine (Q2)'), (8220, 'Journal of Approximation Theory', 10960430, 0.599, 'Q2', 53, 85, 2307, 288, 189, '2', '1968-2020', 'Analysis (Q2); Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2); Numerical Analysis (Q2)'), (8221, 'Journal of investigative and clinical dentist', 20411626, 0.599, 'Q2', 21, 0, 0, 617, 276, '2', '2010-2019', 'Medicine (miscellaneous) (Q2)'), (8222, 'Journal of Social Marketing', 20426763, 0.599, 'Q2', 24, 29, 1988, 166, 73, '3', '2011-2020', 'Management of Technology and Innovation (Q2); Marketing (Q2)'), (8223, 'New Microbes and New Infections', 20522975, 0.599, 'Q3', 26, 194, 5140, 639, 303, '16', '2013-2020', 'Infectious Diseases (Q3); Microbiology (Q3)'), (8224, 'Pediatric Cardiac Surgery Annual', 10929126, 0.599, 'Q2', 40, 13, 349, 81, 39, '3', '2001-2020', 'Cardiology and Cardiovascular Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2); Surgery (Q2)'), (8225, 'ACM Transactions on Sensor Networks', 15504859, 0.598, 'Q2', 67, 44, 2352, 447, 117, '2', '2005-2020', 'Computer Networks and Communications (Q2)'), (8226, 'Energies', 19961073, 0.598, 'Q2', 93, 5569, 254951, 36840, 10628, '19', '1975-1976, 2009-2020', 'Control and Optimization (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Fuel Technology (Q2); Renewable Energy, Sustainabi'), (8227, 'Geriatric Nursing', 15283984, 0.598, 'Q2', 40, 171, 6392, 607, 298, '2', '1980-2020', 'Gerontology (Q2); Medicine (miscellaneous) (Q2)'), (8228, 'International Journal of Industrial Chemistry', 22285547, 0.598, 'Q2', 22, 25, 989, 404, 99, '2', '2012-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2)'), (8229, 'Journal of Low Temperature Physics', 15737357, 0.598, 'Q2', 67, 282, 7634, 1172, 559, '2', '1969-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)'), (8230, 'Journal of Symbolic Computation', 7477171, 0.598, 'Q2', 62, 89, 2703, 467, 236, '2', '1985-2021', 'Algebra and Number Theory (Q2); Computational Mathematics (Q2)'), (8231, 'Journal of Systems Architecture', 13837621, 0.598, 'Q1', 51, 111, 4816, 1137, 262, '16', '1996-2020', 'Hardware and Architecture (Q1); Software (Q2)'), (8232, 'Metabolic Syndrome and Related Disorders', 15404196, 0.598, 'Q3', 45, 67, 2981, 409, 213, '2', '2004-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3)'), (8233, 'Optical Materials', 9253467, 0.598, 'Q1', 103, 910, 37215, 6608, 2212, '16', '1992-2020', 'Computer Science (miscellaneous) (Q1); Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Inorganic Chemistry ('), (8234, 'Visceral Medicine', 22974725, 0.598, 'Q2', 17, 85, 3108, 294, 141, '19', '2016-2020', 'Surgery (Q2); Gastroenterology (Q3)'), (8235, 'ACM Transactions on Software Engineering and ', 15577392, 0.597, 'Q2', 78, 32, 2257, 297, 58, '2', '1992-2020', 'Software (Q2)'), (8236, 'AI Magazine', 7384602, 0.597, 'Q2', 79, 38, 970, 584, 129, '2', '1984-1986, 1989-2020', 'Artificial Intelligence (Q2)'), (8237, 'Annales Zoologici', 34541, 0.597, 'Q2', 28, 49, 1491, 164, 150, '17', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (8238, 'Asian Journal of Criminology', 1871014, 0.597, 'Q1', 17, 25, 1646, 90, 54, '16', '2006-2020', 'Law (Q1)'), (8239, 'Environment, Development and Sustainability', 1387585, 0.597, 'Q2', 56, 682, 41213, 1368, 443, '16', '1999-2020', 'Economics and Econometrics (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)'), (8240, 'Journal of Cutaneous Pathology', 16000560, 0.597, 'Q2', 75, 256, 5409, 761, 541, '3', '1974-2020', 'Dermatology (Q2); Pathology and Forensic Medicine (Q2); Histology (Q3)'), (8241, 'Journal of Experimental Orthopaedics', 21971153, 0.597, 'Q2', 18, 96, 3250, 333, 137, '5', '2014-2020', 'Orthopedics and Sports Medicine (Q2)'), (8242, 'Journal of International Relations and Develo', 14086980, 0.597, 'Q1', 32, 55, 4964, 182, 111, '3', '1998-2020', 'Political Science and International Relations (Q1); Development (Q2); Geography, Planning and Development (Q2)'), (8243, 'Journal of Medicinal Food', 15577600, 0.597, 'Q2', 80, 157, 5694, 1262, 446, '2', '1999-2020', 'Medicine (miscellaneous) (Q2); Nutrition and Dietetics (Q3)'), (8244, 'Journal of Obstetrics and Gynaecology Researc', 14470756, 0.597, 'Q2', 50, 324, 9033, 1479, 848, '11', '1976-1977, 1996-2020', 'Medicine (miscellaneous) (Q2); Obstetrics and Gynecology (Q2)'), (8245, 'Resource Geology', 17513928, 0.597, 'Q2', 43, 23, 1448, 138, 77, '2', '1996-2020', 'Geochemistry and Petrology (Q2); Geology (Q2)'), (8246, 'Sustainability of Water Quality and Ecology', 22126139, 0.597, 'Q2', 15, 0, 0, 40, 11, '16', '2014-2017', 'Ecology (Q2); Water Science and Technology (Q2)'), (8247, 'Topics in Spinal Cord Injury Rehabilitation', 19455763, 0.597, 'Q2', 35, 35, 943, 228, 113, '2', '1998-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Neurology (clinical) (Q3)'), (8248, 'Accounting History', 10323732, 0.596, 'Q1', 28, 38, 3063, 82, 72, '3', '1996-2020', 'History (Q1); Accounting (Q2)'), (8249, 'AILA Review', 14610213, 0.596, 'Q1', 23, 11, 376, 21, 22, '16', '2003-2016, 2018-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (8250, 'Anesthesiology Clinics', 19322275, 0.596, 'Q2', 53, 70, 3585, 379, 168, '2', '2006-2020', 'Anesthesiology and Pain Medicine (Q2); Medicine (miscellaneous) (Q2)'), (8251, 'British Politics', 1746918, 0.596, 'Q1', 25, 35, 2173, 132, 76, '3', '2006-2020', 'History (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (8252, 'Comparative Biochemistry and Physiology - B B', 18791107, 0.596, 'Q2', 100, 86, 4891, 629, 288, '2', '1971-2020', 'Animal Science and Zoology (Q2); Aquatic Science (Q2); Biochemistry (Q3); Molecular Biology (Q3); Physiology (Q3)'), (8253, 'Enterprise Information Systems', 17517583, 0.596, 'Q2', 47, 136, 6471, 863, 207, '3', '2007-2020', 'Computer Science Applications (Q2); Information Systems and Management (Q2)'), (8254, 'European Journal of Taxonomy', 21189773, 0.596, 'Q2', 15, 173, 8581, 429, 320, '8', '2015-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (8255, 'Internal Medicine Journal', 14440903, 0.596, 'Q3', 70, 343, 6333, 1132, 627, '3', '2001-2020', 'Internal Medicine (Q3)'), (8256, 'Jornal Brasileiro de Reproducao Assistida', 15175693, 0.596, 'Q2', 14, 90, 2685, 368, 186, '14', '2000-2020', 'Obstetrics and Gynecology (Q2)'), (8257, 'Journal of Microelectromechanical Systems', 10577157, 0.596, 'Q2', 143, 202, 6087, 1139, 406, '2', '1992-2020', 'Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2)'), (8258, 'Journal of Visualized Experiments', 1940087, 0.596, 'Q2', 91, 981, 27686, 5619, 4106, '2', '2006-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Chemical Engineering (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q3)'), (8259, 'Mathematical Modelling of Natural Phenomena', 9735348, 0.596, 'Q2', 36, 77, 2740, 547, 173, '8', '2006-2020', 'Applied Mathematics (Q2); Modeling and Simulation (Q2)'), (8260, 'Seminars in Oncology Nursing', 18783449, 0.596, 'Q2', 45, 66, 3267, 396, 178, '3', '1985-2020', 'Oncology (nursing) (Q2)'), (8261, 'SICOT-J', 24268887, 0.596, 'Q2', 6, 48, 1383, 46, 22, '8', '2020', 'Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (8262, 'Zeitschrift fur Wirtschaftsgeographie', 443751, 0.596, 'Q2', 17, 12, 927, 60, 36, '5', '1978-1981, 1984, 1988-2020', 'Economics and Econometrics (Q2); Geography, Planning and Development (Q2)'), (8263, 'Australian Occupational Therapy Journal', 450766, 0.595, 'Q1', 44, 71, 2150, 340, 187, '3', '1952-1953, 1956-2020', 'Occupational Therapy (Q1)'), (8264, 'Banach Journal of Mathematical Analysis', 17358787, 0.595, 'Q2', 23, 81, 2008, 166, 136, '15', '2007-2020', 'Algebra and Number Theory (Q2); Analysis (Q2)'), (8265, 'Chinese Journal of Chemical Engineering', 10049541, 0.595, 'Q2', 54, 355, 15618, 2755, 871, '1', '1993-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Environmental Engineering (Q2); Biochemistry (Q3)'), (8266, 'Dermatologic Therapy', 13960296, 0.595, 'Q2', 68, 1352, 22641, 1094, 439, '3', '1996-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q2)'), (8267, 'Digital Health', 20552076, 0.595, 'Q2', 8, 74, 3138, 199, 66, '2', '2015, 2018-2020', 'Computer Science Applications (Q2); Health Informatics (Q2); Health Policy (Q2); Health Information Management (Q3)'), (8268, 'Food Science and Biotechnology', 20926456, 0.595, 'Q2', 38, 181, 6712, 1578, 635, '13', '2007-2020', 'Applied Microbiology and Biotechnology (Q2); Biotechnology (Q2); Food Science (Q2)'), (8269, 'Fractal and Fractional', 25043110, 0.595, 'Q2', 12, 58, 2336, 306, 96, '19', '2017-2020', 'Analysis (Q2); Statistics and Probability (Q2); Statistical and Nonlinear Physics (Q3)'), (8270, 'Journal of Applied Electrochemistry', 15728838, 0.595, 'Q2', 111, 109, 4752, 893, 348, '16', '1971-2020', 'Chemical Engineering (miscellaneous) (Q2); Electrochemistry (Q2); Materials Chemistry (Q2)'), (8271, 'Journal of Hydrologic Engineering - ASCE', 19435584, 0.595, 'Q2', 89, 141, 6339, 802, 373, '2', '1996-2020', 'Civil and Structural Engineering (Q2); Environmental Science (miscellaneous) (Q2); Water Science and Technology (Q2); Environmental Chemistry (Q3)'), (8272, 'Journal of Orthopaedics', 972978, 0.595, 'Q2', 18, 414, 10692, 717, 449, '4', '2013-2020', 'Orthopedics and Sports Medicine (Q2)'), (8273, 'Mathematical Physics Analysis and Geometry', 13850172, 0.595, 'Q2', 28, 47, 1306, 154, 88, '16', '1998-2020', 'Geometry and Topology (Q2); Mathematical Physics (Q2)'), (8274, 'Neurologia', 2134853, 0.595, 'Q2', 36, 303, 6371, 515, 223, '12', '1973-1974, 1986-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q3)'), (8275, 'Palynology', 1916122, 0.595, 'Q2', 33, 67, 4526, 288, 183, '3', '1977-2020', 'Paleontology (Q2)'), (8276, 'Studies in Art Education', 23258039, 0.595, 'Q1', 8, 33, 1042, 82, 76, '3', '2014-2020', 'Visual Arts and Performing Arts (Q1); Education (Q2)'), (8277, 'Acta Metallurgica Sinica (English Letters)', 10067191, 0.594, 'Q1', 33, 185, 7668, 1115, 433, '1', '1997-2020', 'Metals and Alloys (Q1); Industrial and Manufacturing Engineering (Q2)'), (8278, 'Frontiers of Structural and Civil Engineering', 20952430, 0.594, 'Q1', 24, 102, 5212, 563, 210, '2', '2012-2020', 'Architecture (Q1); Civil and Structural Engineering (Q2)'), (8279, 'Journal of Turkish Science Education', 13046020, 0.594, 'Q2', 16, 46, 2306, 212, 104, '18', '2009-2020', 'Applied Psychology (Q2); Education (Q2)'), (8280, 'Revista do Instituto de Medicina Tropical de ', 16789946, 0.594, 'Q2', 49, 103, 2382, 413, 225, '14', '1961-2020', 'Medicine (miscellaneous) (Q2); Infectious Diseases (Q3)'), (8281, 'Urban Water Journal', 17449006, 0.594, 'Q2', 42, 89, 3468, 763, 307, '3', '2004-2020', 'Geography, Planning and Development (Q2); Water Science and Technology (Q2)'), (8282, 'Veterinary Ophthalmology', 14635224, 0.594, 'Q1', 50, 126, 4344, 395, 276, '3', '1998-2020', 'Veterinary (miscellaneous) (Q1)'), (8283, 'Waves in Random and Complex Media', 17455049, 0.594, 'Q1', 46, 227, 9488, 765, 227, '3', '2005-2020', 'Engineering (miscellaneous) (Q1); Physics and Astronomy (miscellaneous) (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (8284, 'World Economy', 3785920, 0.594, 'Q1', 68, 175, 8075, 698, 418, '3', '1977-2020', 'Political Science and International Relations (Q1); Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)'), (8285, 'ACM Transactions on Computational Logic', 15293785, 0.593, 'Q1', 52, 22, 876, 180, 101, '2', '2000-2020', 'Computer Science (miscellaneous) (Q1); Computational Mathematics (Q2); Logic (Q2); Theoretical Computer Science (Q2)'), (8286, 'American Journal of Orthopedics', 10784519, 0.593, 'Q2', 57, 0, 0, 322, 232, '2', '1995-2018', 'Medicine (miscellaneous) (Q2)'), (8287, 'Biomass Conversion and Biorefinery', 21906815, 0.593, 'Q2', 27, 619, 33702, 957, 260, '5', '2011-2020', 'Renewable Energy, Sustainability and the Environment (Q2)'), (8288, 'Clean Energy', 25154230, 0.593, 'Q2', 8, 28, 1515, 155, 49, '3', '2017-2020', 'Energy Engineering and Power Technology (Q2); Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (8289, 'Displays', 1419382, 0.593, 'Q1', 57, 19, 674, 331, 118, '16', '1979-2020', 'Hardware and Architecture (Q1); Electrical and Electronic Engineering (Q2); Human-Computer Interaction (Q2)'), (8290, 'Homology, Homotopy and Applications', 15320073, 0.593, 'Q2', 30, 58, 1151, 136, 109, '2', '2001-2021', 'Mathematics (miscellaneous) (Q2)'), (8291, 'Interdisciplinary Perspectives on Infectious ', 16877098, 0.593, 'Q3', 28, 27, 929, 64, 37, '32', '2010-2020', 'Infectious Diseases (Q3); Microbiology (Q3); Microbiology (medical) (Q3); Parasitology (Q3); Virology (Q4)'), (8292, 'International Journal of Particle Therapy', 23315180, 0.593, 'Q2', 6, 3, 111, 55, 28, '2', '2019-2020', 'Atomic and Molecular Physics, and Optics (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (8293, 'Journal of Cloud Computing', 2192113, 0.593, 'Q2', 29, 67, 3039, 441, 75, '2', '2012-2020', 'Computer Networks and Communications (Q2); Software (Q2)'), (8294, 'Journal of Community Archaeology and Heritage', 2051820, 0.593, 'Q1', 9, 32, 1109, 80, 57, '3', '2014-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (8295, 'Journal of Co-operative Organization and Mana', 2213297, 0.593, 'Q2', 12, 11, 513, 77, 35, '16', '2013-2020', 'Business and International Management (Q2); Strategy and Management (Q2)'), (8296, 'Journal of Cutaneous Medicine and Surgery', 16157109, 0.593, 'Q2', 47, 179, 2605, 551, 306, '2', '1996-2020', 'Dermatology (Q2); Surgery (Q2)'), (8297, 'Journal of Humanistic Counseling', 21611939, 0.593, 'Q2', 15, 15, 674, 60, 44, '3', '2011-2020', 'Developmental and Educational Psychology (Q2); Education (Q2)'), (8298, 'Journal of Iberian Geology', 16986180, 0.593, 'Q2', 26, 30, 2220, 193, 107, '19', '2007-2020', 'Geology (Q2); Stratigraphy (Q2)'), (8299, 'Journal of Texture Studies', 224901, 0.593, 'Q2', 54, 97, 4175, 510, 189, '2', '1969-2020', 'Food Science (Q2); Pharmaceutical Science (Q2)'), (8300, 'Marine Biology Research', 17451000, 0.593, 'Q2', 37, 54, 2948, 338, 215, '3', '2005-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Oceanography (Q2)'), (8301, 'Medical and Biological Engineering and Comput', 17410444, 0.593, 'Q2', 98, 217, 9580, 1761, 558, '5', '1977-2020', 'Biomedical Engineering (Q2); Computer Science Applications (Q2)'), (8302, 'Neotropical Ichthyology', 16796225, 0.593, 'Q2', 40, 59, 3196, 336, 180, '14', '2006-2020', 'Animal Science and Zoology (Q2); Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8303, 'Przeglad Menopauzalny', 16438876, 0.593, 'Q2', 18, 26, 888, 228, 104, '17', '2005-2020', 'Obstetrics and Gynecology (Q2); Endocrinology, Diabetes and Metabolism (Q3)'), (8304, 'Pure and Applied Mathematics Quarterly', 15588599, 0.593, 'Q2', 26, 51, 1208, 115, 68, '2', '2007-2020', 'Mathematics (miscellaneous) (Q2)'), (8305, 'Sociological Research Online', 13607804, 0.593, 'Q1', 49, 74, 3641, 282, 157, '3', '1996-2001, 2003-2020', 'Sociology and Political Science (Q1)'), (8306, 'Sport Marketing Quarterly', 15572528, 0.593, 'Q2', 7, 6, 386, 99, 39, '2', '2017-2018', 'Marketing (Q2); Strategy and Management (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (8307, 'American Journal of Critical Care', 1937710, 0.592, 'Q1', 81, 103, 2384, 428, 197, '2', '1992-2020', 'Critical Care Nursing (Q1); Medicine (miscellaneous) (Q2)'), (8308, 'American Journal of Medical Quality', 10628606, 0.592, 'Q2', 53, 136, 2112, 391, 233, '2', '1992-2020', 'Health Policy (Q2)'), (8309, 'Canadian Journal of Soil Science', 84271, 0.592, 'Q2', 67, 46, 2843, 253, 162, '9', '1974-2020', 'Soil Science (Q2)'), (8310, 'Communication, Culture and Critique', 17539129, 0.592, 'Q1', 10, 31, 1184, 104, 72, '2', '2015-2019', 'Communication (Q1); Cultural Studies (Q1); Computer Science Applications (Q2)'), (8311, 'Cryobiology', 112240, 0.592, 'Q1', 85, 166, 7168, 844, 339, '2', '1964-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (8312, 'Current Neurovascular Research', 15672026, 0.592, 'Q3', 54, 86, 3568, 368, 152, '52', '2004-2020', 'Developmental Neuroscience (Q3); Neurology (Q3); Cellular and Molecular Neuroscience (Q4)'), (8313, 'Forensic Science Review', 10427201, 0.592, 'Q1', 13, 11, 48, 69, 32, '22', '2012, 2014-2020', 'Law (Q1); Medicine (miscellaneous) (Q2)'), (8314, 'International Journal of Aging and Human Deve', 914150, 0.592, 'Q3', 58, 91, 4359, 252, 127, '2', '1973-2020', 'Aging (Q3); Developmental and Educational Psychology (Q3); Geriatrics and Gerontology (Q3)'), (8315, 'International journal of medical education', 20426372, 0.592, 'Q2', 21, 41, 0, 328, 151, '3', '2011-2020', 'Medicine (miscellaneous) (Q2)'), (8316, 'International Journal of MS Care', 15372073, 0.592, 'Q1', 23, 42, 1199, 286, 121, '2', '2012-2020', 'Advanced and Specialized Nursing (Q1); Neurology (clinical) (Q3)'), (8317, 'International Journal of Public Sector Manage', 9513558, 0.592, 'Q1', 57, 37, 2189, 330, 145, '3', '1970, 1988-2020', 'Political Science and International Relations (Q1); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Public Administration (Q2)'), (8318, 'Journal of Contemporary Ethnography', 8912416, 0.592, 'Q1', 52, 35, 2029, 161, 93, '2', '1972-1982, 1984-2020', 'Anthropology (Q1); Language and Linguistics (Q1); Sociology and Political Science (Q1); Urban Studies (Q1)'), (8319, 'Journal of Policy and Practice in Intellectua', 17411130, 0.592, 'Q2', 30, 45, 1983, 176, 110, '3', '2009-2020', 'Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (8320, 'Lubricants', 20754442, 0.592, 'Q2', 24, 99, 4372, 656, 269, '19', '2013-2020', 'Mechanical Engineering (Q2); Surfaces, Coatings and Films (Q2)'), (8321, 'OSA Continuum', 25787519, 0.592, 'Q2', 8, 0, 0, 356, 191, '2', '2019', 'Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (8322, 'Polymer International', 10970126, 0.592, 'Q1', 105, 174, 8980, 1680, 600, '3', '1991-2020', 'Polymers and Plastics (Q1); Materials Chemistry (Q2); Organic Chemistry (Q2)'), (8323, 'Seminars in Hearing', 7340451, 0.592, 'Q2', 27, 22, 845, 171, 84, '2', '1986-2020', 'Speech and Hearing (Q2)'), (8324, 'American Journal of Health Behavior', 10873244, 0.591, 'Q2', 68, 75, 3650, 432, 247, '2', '1996-2020', 'Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2); Social Psychology (Q2)'), (8325, 'Applied Physics B: Lasers and Optics', 9462171, 0.591, 'Q2', 131, 192, 6759, 1659, 757, '5', '1994-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (8326, 'ClinicoEconomics and Outcomes Research', 11786981, 0.591, 'Q1', 27, 68, 2670, 406, 216, '41', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q2)'), (8327, 'International Journal of Law and Psychiatry', 18736386, 0.591, 'Q1', 67, 83, 4489, 454, 253, '3', '1978-1984, 1986-2020', 'Law (Q1); Pathology and Forensic Medicine (Q2); Psychiatry and Mental Health (Q2)'), (8328, 'International Journal of Systems Science', 207721, 0.591, 'Q2', 69, 245, 9753, 2065, 783, '3', '1970-2020', 'Computer Science Applications (Q2); Control and Systems Engineering (Q2); Theoretical Computer Science (Q2)'), (8329, 'Interventional Cardiology Clinics', 22117458, 0.591, 'Q2', 10, 51, 2357, 220, 126, '16', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (8330, 'Journal of Clinical Monitoring and Computing', 15732614, 0.591, 'Q2', 51, 283, 7737, 837, 392, '16', '1997-2002, 2004-2020', 'Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2); Health Informatics (Q2)'), (8331, 'Journal of Forensic Odonto-Stomatology', 22196749, 0.591, 'Q2', 26, 19, 471, 81, 63, '20', '1983-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)'), (8332, 'Journal of Mechanisms and Robotics', 19424302, 0.591, 'Q2', 45, 62, 1871, 755, 327, '2', '2009-2021', 'Mechanical Engineering (Q2)'), (8333, 'Journal of Membrane Biology', 14321424, 0.591, 'Q2', 98, 54, 3729, 350, 158, '2', '1969-2020', 'Biophysics (Q2); Cell Biology (Q3); Physiology (Q3)'), (8334, 'Journal of Urbanism', 17549175, 0.591, 'Q1', 20, 46, 2875, 145, 77, '3', '2008-2020', 'Urban Studies (Q1); Geography, Planning and Development (Q2)'), (8335, 'Meccanica', 15729648, 0.591, 'Q2', 62, 168, 6981, 1492, 617, '16', '1966-2020', 'Condensed Matter Physics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (8336, 'Phonetica', 318388, 0.591, 'Q1', 41, 20, 1153, 66, 56, '19', '1957-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Acoustics and Ultrasonics (Q2)'), (8337, 'Probability and Mathematical Statistics', 2084147, 0.591, 'Q2', 11, 20, 452, 74, 73, '17', '2011-2020', 'Statistics and Probability (Q2)'), (8338, 'Statistical Methods and Applications', 16182510, 0.591, 'Q2', 29, 67, 2122, 136, 100, '5', '1996, 2001-2020', 'Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (8339, 'Sustainable Computing: Informatics and System', 22105379, 0.591, 'Q1', 27, 78, 3347, 766, 169, '2', '2011-2020', 'Computer Science (miscellaneous) (Q1); Electrical and Electronic Engineering (Q2)'), (8340, 'Advances in High Energy Physics', 16877365, 0.59, 'Q2', 49, 93, 4612, 929, 394, '2', '2010-2020', 'Nuclear and High Energy Physics (Q2)'), (8341, 'Chemical Biology and Drug Design', 17470277, 0.59, 'Q2', 77, 123, 5744, 1541, 537, '3', '2006-2020', 'Drug Discovery (Q2); Organic Chemistry (Q2); Biochemistry (Q3); Molecular Medicine (Q3); Pharmacology (Q3)'), (8342, 'Environmental Monitoring and Assessment', 1676369, 0.59, 'Q2', 109, 803, 42559, 5773, 2183, '16', '1981-2020', 'Environmental Science (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2); Medicine (miscellaneous) (Q2); Pollution (Q2)'), (8343, 'Graphs and Combinatorics', 14355914, 0.59, 'Q2', 40, 129, 2099, 386, 358, '6', '1985-2020', 'Discrete Mathematics and Combinatorics (Q2); Theoretical Computer Science (Q2)'), (8344, 'Human-Computer Interaction', 15327051, 0.59, 'Q2', 69, 28, 2209, 225, 42, '2', '1985-1987, 1989-2020', 'Applied Psychology (Q2); Human-Computer Interaction (Q2)'), (8345, 'In Vitro Cellular and Developmental Biology -', 10712690, 0.59, 'Q2', 61, 109, 3441, 615, 296, '2', '1986-1987, 1992-2020', 'Medicine (miscellaneous) (Q2); Developmental Biology (Q3); Cell Biology (Q4)'), (8346, 'Laser Physics Letters', 1612202, 0.59, 'Q2', 72, 229, 7512, 1814, 839, '3', '2004-2020', 'Instrumentation (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (8347, 'Medicine (United States)', 257974, 0.59, 'Q2', 148, 5045, 31676, 22646, 12291, '2', '1922-2020', 'Medicine (miscellaneous) (Q2)'), (8348, 'NFS Journal', 23523646, 0.59, 'Q2', 13, 24, 1354, 92, 23, '5', '2015-2020', 'Food Science (Q2); Nutrition and Dietetics (Q3)'), (8349, 'Nursing Economics', 7461739, 0.59, 'Q2', 47, 51, 711, 102, 74, '2', '1983-2017', 'Leadership and Management (Q2); Medicine (miscellaneous) (Q2)'), (8350, 'Oeconomia Copernicana', 23531827, 0.59, 'Q1', 13, 32, 1596, 411, 114, '17', '2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1); Business and International Management (Q2); Development (Q2)'), (8351, 'Res Philosophica', 21689105, 0.59, 'Q1', 11, 25, 953, 64, 90, '2', '2013-2020', 'Philosophy (Q1)'), (8352, 'Scandinavian Journal of Occupational Therapy', 16512014, 0.59, 'Q2', 40, 115, 5410, 327, 147, '3', '1994-1996, 1999-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (8353, 'Australian Psychologist', 50067, 0.589, 'Q2', 46, 60, 3056, 288, 154, '2', '1966-2020', 'Arts and Humanities (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (8354, 'Bulletin of the Peabody Museum of Natural His', 21624135, 0.589, 'Q2', 16, 6, 488, 49, 28, '2', '2010-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (8355, 'Composite Interfaces', 9276440, 0.589, 'Q2', 43, 105, 4415, 520, 181, '3', '1993-2020', 'Ceramics and Composites (Q2); Physics and Astronomy (miscellaneous) (Q2); Surfaces, Coatings and Films (Q2)'), (8356, 'Eurasian Geography and Economics', 15387216, 0.589, 'Q2', 45, 65, 4311, 206, 88, '3', '2002-2020', 'Economics and Econometrics (Q2); Geography, Planning and Development (Q2)'), (8357, 'International Journal of Protective Structure', 2041420, 0.589, 'Q2', 27, 36, 1364, 147, 77, '3', '2010-2020', 'Building and Construction (Q2); Mechanics of Materials (Q2); Safety, Risk, Reliability and Quality (Q2)'), (8358, 'Journal of Ambient Intelligence and Humanized', 18685145, 0.589, 'Q1', 41, 1121, 41371, 4441, 720, '5', '2010-2020', 'Computer Science (miscellaneous) (Q1)'), (8359, 'Journal of Current Glaucoma Practice', 9740333, 0.589, 'Q3', 11, 15, 306, 115, 66, '4', '2011-2020', 'Ophthalmology (Q3)'), (8360, 'Literacy Research and Instruction', 19388071, 0.589, 'Q1', 25, 31, 2090, 76, 55, '3', '2008-2020', 'Linguistics and Language (Q1); Education (Q2)'), (8361, 'Molecular Biotechnology', 15590305, 0.589, 'Q2', 79, 58, 2747, 574, 215, '2', '1994-2020', 'Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2); Biochemistry (Q3); Molecular Biology (Q3)'), (8362, 'Public Policy and Administration', 9520767, 0.589, 'Q1', 37, 0, 0, 203, 76, '3', '1986-2019', 'Sociology and Political Science (Q1); Public Administration (Q2)'), (8363, 'Studies in Indian Politics', 23210230, 0.589, 'Q1', 6, 22, 763, 38, 59, '3', '2014-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (8364, 'Trends in Psychiatry and Psychotherapy', 22380019, 0.589, 'Q2', 16, 52, 1669, 253, 137, '14', '2011-2020', 'Medicine (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (8365, 'Biocatalysis and Agricultural Biotechnology', 18788181, 0.588, 'Q2', 37, 410, 21491, 3045, 945, '16', '2012-2020', 'Agronomy and Crop Science (Q2); Applied Microbiology and Biotechnology (Q2); Bioengineering (Q2); Biotechnology (Q2); Food Science (Q2)'), (8366, 'European Journal of Medical Research', 2047783, 0.588, 'Q2', 57, 68, 1946, 359, 148, '3', '1995-2020', 'Medicine (miscellaneous) (Q2)'), (8367, 'IEEE Solid-State Circuits Letters', 25739603, 0.588, 'Q2', 10, 143, 1349, 255, 131, '2', '2018-2020', 'Electrical and Electronic Engineering (Q2)'), (8368, 'IET Electrical Systems in Transportation', 20429738, 0.588, 'Q2', 26, 50, 1703, 351, 93, '3', '2011-2020', 'Electrical and Electronic Engineering (Q2)'), (8369, 'International Journal of Computational Fluid ', 10618562, 0.588, 'Q1', 41, 56, 2063, 203, 86, '3', '1993-2020', 'Computational Mechanics (Q1); Aerospace Engineering (Q2); Condensed Matter Physics (Q2); Energy Engineering and Power Technology (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (8370, 'Journal of Laparoendoscopic and Advanced Surg', 15579034, 0.588, 'Q2', 59, 249, 5444, 1358, 746, '2', '1997-2020', 'Surgery (Q2)'), (8371, 'Journal of Machine Engineering', 18957595, 0.588, 'Q2', 7, 42, 944, 127, 110, '17', '2016-2020', 'Computer Science Applications (Q2); Industrial and Manufacturing Engineering (Q2)'), (8372, 'Journal of Surveying Engineering, - ASCE', 7339453, 0.588, 'Q2', 36, 32, 1065, 200, 94, '2', '1980, 1983-2020', 'Civil and Structural Engineering (Q2)'), (8373, 'Life Sciences in Space Research', 22145532, 0.588, 'Q1', 21, 62, 2746, 299, 120, '16', '2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1); Astronomy and Astrophysics (Q2); Ecology (Q2); Health, Toxicology and Mutagenesis (Q2); Radiation (Q2)'), (8374, 'Mechanics Based Design of Structures and Mach', 15397742, 0.588, 'Q1', 36, 325, 12935, 942, 150, '2', '2003-2020', 'Automotive Engineering (Q1); Aerospace Engineering (Q2); Civil and Structural Engineering (Q2); Condensed Matter Physics (Q2); Mathematics (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics '), (8375, 'Meitan Xuebao/Journal of the China Coal Socie', 2539993, 0.588, 'Q2', 58, 476, 13718, 2766, 1518, '1', '1981-1982, 1984-1987, 1994-1995, 1998, 2001-2020', 'Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Mechanical Engineering (Q2)'), (8376, 'Regional Studies, Regional Science', 21681376, 0.588, 'Q1', 17, 44, 1933, 216, 105, '3', '2014-2020', 'Sociology and Political Science (Q1); Economics and Econometrics (Q2); Geography, Planning and Development (Q2)'), (8377, 'Canadian Journal of Emergency Medicine', 14818035, 0.587, 'Q2', 46, 190, 2368, 496, 328, '3', '1999-2020', 'Emergency Medicine (Q2)'), (8378, 'Catalysis Letters', 1572879, 0.587, 'Q2', 121, 432, 19573, 2788, 1000, '16', '1988-2020', 'Chemistry (miscellaneous) (Q2); Catalysis (Q3)'), (8379, 'Chinese Journal of Physics', 5779073, 0.587, 'Q2', 38, 353, 15834, 2728, 846, '22', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (8380, 'Clinical and Experimental Dermatology', 3076938, 0.587, 'Q2', 78, 366, 3337, 960, 491, '3', '1976-2020', 'Dermatology (Q2)'), (8381, 'Clinical EEG and Neuroscience', 15500594, 0.587, 'Q2', 54, 88, 3882, 347, 156, '2', '1970-1985, 1988-2020', 'Medicine (miscellaneous) (Q2); Neurology (Q3); Neurology (clinical) (Q3)'), (8382, 'Clinical Neurology and Neurosurgery', 18726968, 0.587, 'Q2', 73, 627, 17815, 1813, 930, '16', '1974-2020', 'Medicine (miscellaneous) (Q2); Surgery (Q2); Neurology (clinical) (Q3)'), (8383, 'Documenta Praehistorica', 18542492, 0.587, 'Q1', 17, 28, 2245, 78, 68, '60', '2009-2019', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)'), (8384, 'IEEE Access', 21693536, 0.587, 'Q1', 127, 18036, 771081, 116691, 24200, '2', '2013-2020', 'Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q2)'), (8385, 'Ingegneria Sismica', 3931420, 0.587, 'Q2', 19, 19, 699, 186, 84, '7', '2010-2014, 2016-2020', 'Building and Construction (Q2); Geotechnical Engineering and Engineering Geology (Q2); Safety, Risk, Reliability and Quality (Q2)'), (8386, 'International Journal of Cell Biology', 16878876, 0.587, 'Q4', 53, 4, 301, 39, 17, '2', '2010-2020', 'Cell Biology (Q4)'), (8387, 'Journal of the History of Philosophy', 225053, 0.587, 'Q1', 24, 28, 1542, 64, 78, '2', '1975-1976, 1980-1983, 1999-2020', 'Philosophy (Q1)'), (8388, 'Journal of Urban Management', 25890360, 0.587, 'Q1', 11, 32, 1289, 210, 60, '16', '2012-2020', 'Urban Studies (Q1); Geography, Planning and Development (Q2); Public Administration (Q2)'), (8389, 'North American Journal of Fisheries Managemen', 15488675, 0.587, 'Q2', 72, 152, 8077, 500, 360, '2', '1981-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2)'), (8390, 'Obstetrics and Gynecology Science', 22878580, 0.587, 'Q2', 10, 96, 2632, 438, 262, '13', '2017-2020', 'Obstetrics and Gynecology (Q2)'), (8391, 'Psychology and Sexuality', 19419902, 0.587, 'Q1', 26, 63, 3848, 171, 82, '3', '2010-2020', 'Gender Studies (Q1); Applied Psychology (Q2); Health (social science) (Q2); Social Psychology (Q2)'), (8392, 'Syntax', 13680005, 0.587, 'Q1', 24, 13, 742, 33, 39, '3', '2005-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (8393, 'Time and Society', 961463, 0.587, 'Q1', 46, 52, 2793, 170, 113, '3', '1992-2020', 'Sociology and Political Science (Q1)'), (8394, 'Acta Orthopaedica et Traumatologica Turcica', 1017995, 0.586, 'Q2', 28, 107, 2308, 413, 284, '18', '2002-2020', 'Medicine (miscellaneous) (Q2); Orthopedics and Sports Medicine (Q2); Surgery (Q2)'), (8395, 'Asian Englishes', 13488678, 0.586, 'Q1', 13, 38, 1610, 78, 55, '3', '1998-2012, 2014-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (8396, 'Chiropractic and Manual Therapies', 2045709, 0.586, 'Q1', 32, 68, 3152, 300, 144, '3', '2011-2020', 'Chiropractics (Q1); Complementary and Alternative Medicine (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (8397, 'Current Radiopharmaceuticals', 18744710, 0.586, 'Q2', 25, 23, 922, 211, 85, '52', '2009-2020', 'Radiology, Nuclear Medicine and Imaging (Q2); Pharmacology (Q3)'), (8398, 'Gaodianya Jishu/High Voltage Engineering', 10036520, 0.586, 'Q2', 52, 496, 13227, 3708, 1544, '1', '2001-2020', 'Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)'), (8399, 'Journal of Neuro-Ophthalmology', 10708022, 0.586, 'Q2', 55, 130, 58, 500, 260, '2', '1994-2020', 'Medicine (miscellaneous) (Q2); Neurology (clinical) (Q3); Ophthalmology (Q3)'), (8400, 'Leisure Sciences', 15210588, 0.586, 'Q1', 67, 132, 6228, 399, 156, '3', '1977-2020', 'Sociology and Political Science (Q1); Environmental Science (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (8401, 'Marketing Education Review', 10528008, 0.586, 'Q2', 5, 32, 1100, 99, 54, '3', '2018-2020', 'Education (Q2)'), (8402, 'Oral and Maxillofacial Surgery Clinics of Nor', 15581365, 0.586, 'Q2', 36, 60, 2026, 310, 141, '3', '2001-2020', 'Oral Surgery (Q2); Otorhinolaryngology (Q2); Surgery (Q2)'), (8403, 'Persian Journal of Acarology', 22518169, 0.586, 'Q2', 5, 26, 863, 70, 74, '15', '2017-2020', 'Animal Science and Zoology (Q2); Insect Science (Q2)'), (8404, 'Advances in Oto-Rhino-Laryngology', 16622847, 0.585, 'Q2', 37, 39, 1882, 129, 72, '19', '1970, 1972-1974, 1977-1979, 1981-1984, 1986-1993, 1995, 1997-2002, 2005-2007, 2009-2020', 'Medicine (miscellaneous) (Q2); Otorhinolaryngology (Q2)'), (8405, 'Asian Journal of Communication', 1292986, 0.585, 'Q1', 27, 25, 1645, 188, 99, '2', '1990-2020', 'Communication (Q1); Education (Q2)'), (8406, 'Bulletin of Symbolic Logic', 10798986, 0.585, 'Q1', 36, 6, 174, 73, 38, '3', '1995-2019', 'Philosophy (Q1); Logic (Q2)'), (8407, 'Engineering, Construction and Architectural M', 1365232, 0.585, 'Q1', 58, 200, 14444, 1277, 355, '3', '1994-2020', 'Architecture (Q1); Building and Construction (Q2); Business, Management and Accounting (miscellaneous) (Q2); Civil and Structural Engineering (Q2)'), (8408, 'European Journal of Migration and Law', 1388364, 0.585, 'Q1', 30, 33, 1067, 67, 54, '16', '1999-2020', 'Law (Q1); Demography (Q2)'), (8409, 'Experimental Agriculture', 144797, 0.585, 'Q2', 44, 38, 1560, 392, 214, '3', '1965-2020', 'Agronomy and Crop Science (Q2)'), (8410, 'Experimental Parasitology', 144894, 0.585, 'Q2', 74, 146, 6368, 902, 432, '2', '1951-2020', 'Medicine (miscellaneous) (Q2); Infectious Diseases (Q3); Parasitology (Q3); Immunology (Q4)'), (8411, 'Indagationes Mathematicae', 193577, 0.585, 'Q2', 31, 76, 1664, 351, 254, '16', '1969, 1972-2009, 2011-2020', 'Mathematics (miscellaneous) (Q2)'), (8412, 'International Journal of Geotechnical Enginee', 19386362, 0.585, 'Q2', 19, 114, 4057, 460, 213, '3', '2007-2020', 'Environmental Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2); Soil Science (Q2)'), (8413, 'Journal of Clinical Tuberculosis and Other My', 24055794, 0.585, 'Q3', 10, 67, 2053, 183, 98, '3', '2015-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3); Pulmonary and Respiratory Medicine (Q3)'), (8414, 'Journal of Community Psychology', 15206629, 0.585, 'Q2', 86, 185, 10062, 535, 272, '2', '1973-2020', 'Social Psychology (Q2); Social Work (Q2)'), (8415, 'Journal of Computational Biology', 15578666, 0.585, 'Q2', 95, 147, 4868, 503, 340, '2', '1994-2020', 'Computational Mathematics (Q2); Computational Theory and Mathematics (Q2); Modeling and Simulation (Q2); Genetics (Q3); Molecular Biology (Q3)'), (8416, 'Journal of Environmental Pathology, Toxicolog', 7318898, 0.585, 'Q2', 46, 32, 1692, 267, 88, '2', '1984-1990, 1992-2020', 'Health, Toxicology and Mutagenesis (Q2); Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Toxicology (Q3)'), (8417, 'Journal of Mathematical Inequalities', 1846579, 0.585, 'Q2', 26, 91, 2127, 381, 267, '58', '2011-2019', 'Analysis (Q2)'), (8418, 'Journal of Place Management and Development', 17538343, 0.585, 'Q2', 28, 32, 2115, 259, 102, '3', '2008-2020', 'Business and International Management (Q2); Geography, Planning and Development (Q2); Marketing (Q2); Strategy and Management (Q2); Tourism, Leisure and Hospitality Management (Q2); Urban Studies (Q2)'), (8419, 'Language Acquisition', 15327817, 0.585, 'Q1', 23, 23, 1492, 69, 61, '3', '1990, 1992-1993, 1995, 2005-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (8420, 'Magnetic Resonance Materials in Physics, Biol', 13528661, 0.585, 'Q2', 62, 103, 3984, 352, 185, '5', '1984, 1993-2020', 'Biophysics (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (8421, 'Pilot and Feasibility Studies', 20555784, 0.585, 'Q2', 17, 181, 8264, 636, 417, '3', '2015-2020', 'Medicine (miscellaneous) (Q2)'), (8422, 'Twin Research and Human Genetics', 18392628, 0.585, 'Q2', 82, 85, 1846, 307, 248, '3', '2005-2020', 'Obstetrics and Gynecology (Q2); Pediatrics, Perinatology and Child Health (Q2); Genetics (clinical) (Q3)'), (8423, 'WMU Journal of Maritime Affairs', 1651436, 0.585, 'Q1', 19, 26, 825, 169, 82, '5', '2002-2020', 'Safety Research (Q1); Human Factors and Ergonomics (Q2); Management, Monitoring, Policy and Law (Q2); Ocean Engineering (Q2); Transportation (Q2)'), (8424, 'AEJ - Alexandria Engineering Journal', 11100168, 0.584, 'Q1', 58, 446, 17503, 2854, 619, '32', '2000-2020', 'Engineering (miscellaneous) (Q1)'), (8425, 'Animals', 20762615, 0.584, 'Q1', 34, 2440, 132860, 4093, 1466, '19', '2011-2020', 'Veterinary (miscellaneous) (Q1); Animal Science and Zoology (Q2)'), (8426, 'Bulletin - Societie Geologique de France', 379409, 0.584, 'Q2', 53, 38, 3901, 103, 60, '8', '1978-1983, 1985, 1988-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2)'), (8427, 'Community College Journal of Research and Pra', 10668926, 0.584, 'Q2', 29, 117, 5195, 214, 240, '2', '1993-2020', 'Education (Q2)'), (8428, 'European Early Childhood Education Research J', 1350293, 0.584, 'Q2', 34, 69, 3080, 288, 181, '3', '1993-1995, 1999, 2002-2003, 2007-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (8429, 'Gynecological Endocrinology', 9513590, 0.584, 'Q3', 60, 293, 8139, 1421, 697, '3', '1987-2020', 'Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Obstetrics and Gynecology (Q3)'), (8430, 'Italian Journal of Geosciences', 20381719, 0.584, 'Q2', 37, 32, 2903, 165, 95, '7', '2001, 2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2)'), (8431, 'Journal of Mediterranean Archaeology', 17431700, 0.584, 'Q1', 28, 10, 885, 28, 28, '3', '1988-2019', 'Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (8432, 'Journal of the History of International Law', 1388199, 0.584, 'Q1', 9, 27, 1679, 30, 53, '16', '2007-2020', 'History (Q1); Law (Q1); Political Science and International Relations (Q1)'), (8433, 'Knowledge and Management of Aquatic Ecosystem', 19619502, 0.584, 'Q2', 27, 48, 2664, 224, 116, '8', '2008-2020', 'Aquatic Science (Q2); Ecology (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2); Water Science and Technology (Q2)'), (8434, 'Lab Animal', 15484475, 0.584, 'Q1', 33, 235, 806, 268, 195, '3', '1995-2020', 'Veterinary (miscellaneous) (Q1); Animal Science and Zoology (Q2)'), (8435, 'Music Perception', 7307829, 0.584, 'Q1', 57, 5, 339, 124, 92, '2', '1983-2001, 2005-2020', 'Music (Q1)'), (8436, 'Tissue and Cell', 408166, 0.584, 'Q2', 51, 109, 4930, 628, 261, '3', '1969-2020', 'Medicine (miscellaneous) (Q2); Cell Biology (Q4); Developmental Biology (Q4)'), (8437, 'Acta Mathematica Scientia', 2529602, 0.583, 'Q2', 34, 123, 3358, 494, 369, '16', '1996-2004, 2006-2020', 'Mathematics (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (8438, 'Applied Nanoscience (Switzerland)', 21905517, 0.583, 'Q2', 50, 519, 21221, 1685, 479, '19', '2011-2020', 'Atomic and Molecular Physics, and Optics (Q2); Biotechnology (Q2); Electrical and Electronic Engineering (Q2); Materials Science (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Cell Bio'), (8439, 'Armed Forces and Society', 15560848, 0.583, 'Q1', 39, 71, 3822, 163, 114, '2', '1974-2020', 'Safety Research (Q1); Social Sciences (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (8440, 'European Journal of Dental Education', 16000579, 0.583, 'Q2', 41, 166, 5158, 548, 255, '3', '1997-2020', 'Dentistry (miscellaneous) (Q2); Education (Q2)'), (8441, 'Inquiry (United Kingdom)', 15023923, 0.583, 'Q1', 29, 151, 5495, 195, 197, '3', '1958-1976, 1978-2020', 'Philosophy (Q1); Health Policy (Q2)'), (8442, 'International Journal of Auditing', 10991123, 0.583, 'Q1', 21, 24, 1789, 198, 85, '3', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Accounting (Q2)'), (8443, 'International Journal of Hospitality and Tour', 15256480, 0.583, 'Q2', 32, 52, 3687, 182, 75, '2', '2000-2020', 'Tourism, Leisure and Hospitality Management (Q2)'), (8444, 'International Journal of Paleopathology', 18799817, 0.583, 'Q1', 23, 56, 4679, 265, 199, '2', '2011-2020', 'Archeology (arts and humanities) (Q1); Pathology and Forensic Medicine (Q2)'), (8445, 'Journal of Child and Adolescent Trauma', 19361521, 0.583, 'Q2', 19, 65, 3139, 241, 142, '19', '2010-2020', 'Critical Care and Intensive Care Medicine (Q2); Emergency Medicine (Q2)'), (8446, 'Journal of LGBT Youth', 19361661, 0.583, 'Q2', 33, 49, 2580, 149, 66, '2', '2007-2020', 'Education (Q2); Gender Studies (Q2)'), (8447, 'Journal of Vacuum Science and Technology A: V', 7342101, 0.583, 'Q2', 112, 285, 14091, 1611, 674, '2', '1970, 1982-2020', 'Condensed Matter Physics (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)'), (8448, 'Open Quaternary', 2055298, 0.583, 'Q1', 9, 12, 941, 38, 24, '3', '2015-2020', 'Anthropology (Q1); Archeology (Q1); Ecology (Q2); Environmental Science (miscellaneous) (Q2); Global and Planetary Change (Q3)'), (8449, 'Plant Breeding', 14390523, 0.583, 'Q2', 71, 113, 6275, 529, 291, '3', '1986-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2); Genetics (Q3)'), (8450, 'Quantum Information Processing', 15700755, 0.583, 'Q2', 61, 429, 17711, 3250, 1030, '2', '2004-2020', 'Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Modeling and Simulation (Q2); Signal Processing (Q2); Theoretical Computer Science (Q2); Statistical and No'), (8451, 'Urban Research and Practice', 17535069, 0.583, 'Q2', 24, 54, 3149, 182, 82, '3', '2008-2020', 'Geography, Planning and Development (Q2); Urban Studies (Q2)'), (8452, 'Archives of endocrinology and metabolism', 23593997, 0.582, 'Q3', 50, 117, 3565, 586, 253, '14', '2015-2020', 'Endocrinology, Diabetes and Metabolism (Q3)'), (8453, 'Behavioral Sciences', 2076328, 0.582, 'Q2', 25, 157, 8178, 1017, 355, '19', '2011-2020', 'Development (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Psychology (miscellaneous) (Q2); Behavioral Neuroscience (Q3); Genetics (Q3)'), (8454, 'Community and Junior College Libraries', 2763915, 0.582, 'Q1', 9, 0, 0, 3, 8, '2', '1882, 1982-1989, 1991, 1995, 1999-2017', 'Library and Information Sciences (Q1); Education (Q2); E-learning (Q2)'), (8455, 'Drug Development Research', 2724391, 0.582, 'Q2', 60, 145, 7895, 567, 181, '2', '1981-2020', 'Drug Discovery (Q2)'), (8456, 'Foot and Ankle Specialist', 19387636, 0.582, 'Q1', 28, 153, 3887, 308, 227, '3', '2008-2020', 'Podiatry (Q1); Medicine (miscellaneous) (Q2); Surgery (Q2); Orthopedics and Sports Medicine (Q3)'), (8457, 'Information Polity', 18758754, 0.582, 'Q1', 35, 30, 1547, 199, 61, '16', '2002-2020', 'Sociology and Political Science (Q1); Communication (Q2); Geography, Planning and Development (Q2); Information Systems (Q2); Public Administration (Q2)'), (8458, 'Journal of Applied School Psychology', 15377903, 0.582, 'Q2', 27, 29, 1394, 76, 56, '2', '2002-2020', 'Applied Psychology (Q2); Education (Q2); Psychiatry and Mental Health (Q2); Developmental and Educational Psychology (Q3)'), (8459, 'Journal of Consumer Affairs', 220078, 0.582, 'Q1', 62, 63, 4225, 363, 134, '2', '1967-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Sociology and Political Science (Q1)'), (8460, 'Sleep Science', 19840659, 0.582, 'Q2', 17, 50, 1820, 208, 116, '14', '2008-2020', 'Medicine (miscellaneous) (Q2); Behavioral Neuroscience (Q3); Neuroscience (miscellaneous) (Q3)'), (8461, 'Buildings', 20755309, 0.581, 'Q1', 29, 244, 12450, 1705, 535, '19', '2001, 2011-2020', 'Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2)'), (8462, 'Computer Supported Cooperative Work', 9259724, 0.581, 'Q1', 64, 28, 2072, 304, 90, '16', '1992-2020', 'Computer Science (miscellaneous) (Q1)'), (8463, 'International Journal of Modern Physics A', 217751, 0.581, 'Q2', 108, 358, 15407, 2207, 1020, '37', '1989, 1996-2020', 'Atomic and Molecular Physics, and Optics (Q2); Nuclear and High Energy Physics (Q2); Astronomy and Astrophysics (Q3)'), (8464, 'International Journal of Neuroscience', 207454, 0.581, 'Q2', 66, 380, 14840, 951, 462, '3', '1970-1973, 1975-2020', 'Medicine (miscellaneous) (Q2); Neuroscience (miscellaneous) (Q3)'), (8465, 'Journal of Aggression, Maltreatment and Traum', 10926771, 0.581, 'Q2', 46, 105, 5329, 395, 211, '2', '1997-1998, 2000-2020', 'Clinical Psychology (Q2); Health Professions (miscellaneous) (Q2); Psychiatry and Mental Health (Q2)'), (8466, 'Journal of Vector Borne Diseases', 9729062, 0.581, 'Q2', 41, 0, 0, 293, 154, '4', '2003-2019', 'Medicine (miscellaneous) (Q2); Infectious Diseases (Q3); Parasitology (Q3)'), (8467, 'Library Trends', 15590682, 0.581, 'Q1', 48, 31, 1272, 114, 109, '2', '1980-2020', 'Library and Information Sciences (Q1)'), (8468, 'Marine Biodiversity', 18671616, 0.581, 'Q2', 36, 112, 7077, 830, 552, '5', '2009-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Oceanography (Q2)'), (8469, 'Marriage and Family Review', 15409635, 0.581, 'Q1', 39, 37, 2210, 202, 121, '2', '1978-2020', 'Social Sciences (miscellaneous) (Q1)'), (8470, 'Microgravity Science and Technology', 9380108, 0.581, 'Q1', 33, 104, 3319, 452, 218, '16', '1990-1999, 2001-2020', 'Engineering (miscellaneous) (Q1); Applied Mathematics (Q2); Modeling and Simulation (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (8471, 'PET Clinics', 15568598, 0.581, 'Q2', 24, 59, 3318, 284, 126, '2', '2006-2020', 'Medicine (miscellaneous) (Q2); Radiation (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (8472, 'Physica E: Low-Dimensional Systems and Nanost', 13869477, 0.581, 'Q2', 94, 510, 23123, 3871, 1113, '16', '1974, 1997-2021', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Nanoscience and Nanotechnology (Q2)'), (8473, 'Radiologia Medica', 338362, 0.581, 'Q2', 47, 151, 5101, 1052, 370, '7', '1947-1971, 1973-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (8474, 'Sport Psychologist', 15432793, 0.581, 'Q2', 70, 34, 1742, 165, 87, '2', '1996-2019', 'Applied Psychology (Q2); Sports Science (Q3)'), (8475, 'Tetrahedron', 14645416, 0.581, 'Q2', 221, 465, 26230, 5335, 2349, '3', '1957-2020', 'Drug Discovery (Q2); Organic Chemistry (Q2); Biochemistry (Q3)'), (8476, 'Asian Economic Policy Review', 18328105, 0.58, 'Q1', 20, 38, 481, 68, 34, '11', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1); Management, Monitoring, Policy and Law (Q2)'), (8477, 'Canadian Association of Radiologists Journal', 8465371, 0.58, 'Q2', 34, 150, 4278, 389, 190, '9', '1973-2020', 'Medicine (miscellaneous) (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (8478, 'Complementary Therapies in Medicine', 18736963, 0.58, 'Q1', 64, 284, 12340, 1512, 562, '2', '1993-2020', 'Advanced and Specialized Nursing (Q1); Complementary and Alternative Medicine (Q1); Complementary and Manual Therapy (Q1)'), (8479, 'Comptes Rendus - Geoscience', 16310713, 0.58, 'Q2', 78, 32, 1466, 343, 153, '8', '2002-2019', 'Earth and Planetary Sciences (miscellaneous) (Q2); Global and Planetary Change (Q3)'), (8480, 'Global Journal of Engineering Education', 13283154, 0.58, 'Q1', 12, 31, 542, 160, 111, '11', '2010-2020', 'Computer Science (miscellaneous) (Q1); Education (Q2)'), (8481, 'Gynecological Surgery', 16132076, 0.58, 'Q2', 23, 14, 304, 109, 60, '5', '2005-2020', 'Surgery (Q2); Obstetrics and Gynecology (Q3)'), (8482, 'Journal of Basic Microbiology', 233111, 0.58, 'Q2', 54, 96, 4348, 806, 323, '5', '1985-2020', 'Applied Microbiology and Biotechnology (Q2); Medicine (miscellaneous) (Q2)'), (8483, 'Journal of Vascular Research', 10181172, 0.58, 'Q2', 74, 44, 1342, 221, 113, '19', '1964-2020', 'Cardiology and Cardiovascular Medicine (Q2); Physiology (Q3)'), (8484, 'Open Learning', 2680513, 0.58, 'Q2', 34, 52, 2531, 126, 54, '3', '1970, 1986-2020', 'Education (Q2); E-learning (Q2)'), (8485, 'Polar Science', 18739652, 0.58, 'Q2', 27, 76, 4143, 330, 164, '16', '2007-2020', 'Aquatic Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8486, 'Preventing School Failure', 1045988, 0.58, 'Q2', 13, 43, 1906, 127, 97, '3', '1996, 2014-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (8487, 'Acta Radiologica', 2841851, 0.579, 'Q2', 72, 348, 10189, 1067, 602, '3', '1921-2020', 'Medicine (miscellaneous) (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (8488, 'Antibody Therapeutics', 25164236, 0.579, 'Q3', 5, 13, 610, 31, 13, '2', '2018-2020', 'Immunology and Allergy (Q3); Immunology (Q4)'), (8489, 'Avian Diseases', 52086, 0.579, 'Q2', 80, 86, 2410, 387, 230, '2', '1963, 1965-2020', 'Animal Science and Zoology (Q2); Food Animals (Q2); Immunology and Microbiology (miscellaneous) (Q3)'), (8490, 'Basic and Clinical Andrology', 20514190, 0.579, 'Q2', 18, 19, 841, 134, 51, '3', '2009, 2013-2020', 'Reproductive Medicine (Q2); Urology (Q2)'), (8491, 'Boundary Value Problems', 16872770, 0.579, 'Q2', 38, 152, 4292, 1078, 566, '3', '2006-2020', 'Algebra and Number Theory (Q2); Analysis (Q2)'), (8492, 'European Physical Journal: Special Topics', 19516355, 0.579, 'Q2', 79, 248, 11795, 1786, 567, '5', '2007-2020', 'Materials Science (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (8493, 'IET Intelligent Transport Systems', 17519578, 0.579, 'Q1', 45, 227, 8579, 1724, 454, '3', '2007-2020', 'Law (Q1); Environmental Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Transportation (Q2)'), (8494, 'International Journal of Qualitative Studies ', 17482631, 0.579, 'Q1', 31, 93, 4691, 389, 196, '3', '2006-2020', 'Fundamentals and Skills (Q1); Issues, Ethics and Legal Aspects (Q1); Gerontology (Q2); Health Policy (Q2)'), (8495, 'Journal of Cancer Education', 15430154, 0.579, 'Q2', 43, 380, 10276, 951, 508, '2', '1986-2020', 'Public Health, Environmental and Occupational Health (Q2); Oncology (Q3)'), (8496, 'Journal of Function Spaces', 23148888, 0.579, 'Q2', 28, 260, 7558, 658, 351, '32', '2014-2020', 'Analysis (Q2)'), (8497, 'Journal of Information Technology Education: ', 2165316, 0.579, 'Q1', 9, 7, 329, 73, 33, '2', '2015-2020', 'Computer Science (miscellaneous) (Q1); Education (Q2)'), (8498, 'Journal of Liposome Research', 8982104, 0.579, 'Q2', 51, 59, 3170, 339, 105, '3', '1988-1990, 1992-2020', 'Pharmaceutical Science (Q2)'), (8499, 'Journal of Public Health Research', 22799036, 0.579, 'Q2', 13, 109, 2977, 143, 62, '7', '2014-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (8500, 'Pharmacogenetics and Genomics', 17446880, 0.579, 'Q2', 140, 30, 1138, 336, 123, '2', '2005-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Genetics (Q3); Molecular Biology (Q3); Molecular Medicine (Q3); Genetics (clinical) (Q4)'), (8501, 'Anales de Psicologia', 16952294, 0.578, 'Q2', 31, 60, 3257, 512, 211, '12', '2008-2020', 'Psychology (miscellaneous) (Q2)'), (8502, 'Computer Graphics Forum', 1677055, 0.578, 'Q2', 120, 261, 14134, 3301, 808, '3', '1982-2020', 'Computer Graphics and Computer-Aided Design (Q2); Computer Networks and Communications (Q2)'), (8503, 'Corporate Communications', 13563289, 0.578, 'Q2', 56, 64, 3840, 228, 124, '3', '1996-2020', 'Industrial Relations (Q2); Organizational Behavior and Human Resource Management (Q2)'), (8504, 'Current Microbiology', 3438651, 0.578, 'Q2', 90, 463, 19411, 1387, 601, '2', '1978-2020', 'Medicine (miscellaneous) (Q2); Applied Microbiology and Biotechnology (Q3); Microbiology (Q3)'), (8505, 'Environmental Pollutants and Bioavailability', 26395940, 0.578, 'Q2', 30, 20, 945, 188, 73, '3', '2019-2020', 'Chemical Health and Safety (Q2); Health, Toxicology and Mutagenesis (Q2); Toxicology (Q3)'), (8506, 'Forum Qualitative Sozialforschung', 14385627, 0.578, 'Q1', 44, 62, 3474, 389, 198, '5', '2002-2020', 'Social Sciences (miscellaneous) (Q1)'), (8507, 'GFF', 11035897, 0.578, 'Q2', 38, 27, 1772, 122, 81, '3', '1872-2020', 'Geology (Q2); Paleontology (Q2)'), (8508, 'Harvard International Law Journal', 178063, 0.578, 'Q1', 41, 0, 0, 26, 25, '2', '1979, 1992, 1996-2019', 'Law (Q1); Political Science and International Relations (Q1)'), (8509, 'Indian Journal of Medical Research', 9715916, 0.578, 'Q2', 87, 199, 4315, 1149, 513, '4', '1945-1947, 1950-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q2)'), (8510, 'International Journal of Lean Six Sigma', 20404166, 0.578, 'Q2', 38, 47, 4037, 546, 113, '3', '2010-2020', 'Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)'), (8511, 'International Microbiology', 16181905, 0.578, 'Q3', 65, 64, 3293, 238, 95, '12', '1998-2020', 'Microbiology (Q3); Microbiology (medical) (Q3)'), (8512, 'Journal of Criminal Law and Criminology', 914169, 0.578, 'Q1', 46, 24, 0, 77, 45, '2', '1974-1985, 1987, 1991, 1996-2020', 'Law (Q1)'), (8513, 'Journal of Library Administration', 1930826, 0.578, 'Q1', 28, 68, 1565, 154, 175, '2', '1980-2020', 'Library and Information Sciences (Q1); Public Administration (Q2)'), (8514, 'Journal of the Society for Information Displa', 10710922, 0.578, 'Q2', 52, 92, 2873, 488, 224, '2', '1993-2020', 'Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (8515, 'Molecular Cytogenetics', 17558166, 0.578, 'Q3', 30, 50, 1541, 258, 159, '3', '2008-2020', 'Biochemistry (Q3); Biochemistry (medical) (Q3); Genetics (Q3); Molecular Biology (Q3); Molecular Medicine (Q3); Genetics (clinical) (Q4)'), (8516, 'Netherlands Heart Journal', 18766250, 0.578, 'Q2', 37, 148, 3019, 410, 227, '16', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (8517, 'Wildlife Society Bulletin', 917648, 0.578, 'Q2', 82, 93, 4200, 367, 266, '2', '1979-1980, 1983-2006, 2011-2020', 'Nature and Landscape Conservation (Q2)'), (8518, 'Archiv der Mathematik', 3889, 0.577, 'Q2', 43, 145, 2041, 339, 388, '19', '1948-1949, 1952-2020', 'Mathematics (miscellaneous) (Q2)'), (8519, 'Design Science', 20534701, 0.577, 'Q1', 15, 33, 2467, 207, 57, '3', '2015-2020', 'Engineering (miscellaneous) (Q1); Visual Arts and Performing Arts (Q1); Modeling and Simulation (Q2)'), (8520, 'European Journal of Education', 14653435, 0.577, 'Q2', 45, 25, 1032, 278, 128, '3', '2005-2020', 'Education (Q2)'), (8521, 'Feminist Theory', 14647001, 0.577, 'Q2', 42, 41, 1747, 74, 62, '3', '2000-2020', 'Gender Studies (Q2)'), (8522, 'Italian Botanist', 25314033, 0.577, 'Q2', 17, 15, 647, 121, 50, '61', '1999-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (8523, 'Journal of Academic Ethics', 15701727, 0.577, 'Q1', 20, 46, 2273, 125, 68, '16', '2005-2020', 'Philosophy (Q1); Sociology and Political Science (Q1); Arts and Humanities (miscellaneous) (Q2); Education (Q2)'), (8524, 'Journal of Advanced Transportation', 1976729, 0.577, 'Q1', 46, 438, 17331, 2071, 648, '32', '1979-2020', 'Automotive Engineering (Q1); Computer Science Applications (Q2); Economics and Econometrics (Q2); Mechanical Engineering (Q2); Strategy and Management (Q2)'), (8525, 'Journal of Topology and Analysis', 17937167, 0.577, 'Q2', 19, 71, 1733, 106, 138, '37', '2009-2020', 'Analysis (Q2); Geometry and Topology (Q2)'), (8526, 'Nursing Research', 15389847, 0.577, 'Q2', 91, 80, 1095, 370, 175, '2', '1952-2020', 'Medicine (miscellaneous) (Q2); Nursing (miscellaneous) (Q2)'), (8527, 'Philosophical Magazine', 14786443, 0.577, 'Q2', 90, 167, 7042, 1045, 532, '3', '1975, 1977, 2003-2020', 'Condensed Matter Physics (Q2)'), (8528, 'Plant Molecular Biology Reporter', 7359640, 0.577, 'Q2', 61, 68, 3830, 285, 170, '2', '1983-2020', 'Plant Science (Q2); Molecular Biology (Q3)'), (8529, 'Polymer Composites', 2728397, 0.577, 'Q1', 82, 446, 20137, 4793, 1715, '2', '1980-2020', 'Polymers and Plastics (Q1); Ceramics and Composites (Q2); Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2)'), (8530, 'Salamandra', 363375, 0.577, 'Q2', 16, 46, 2165, 182, 85, '5', '2008-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8531, 'Supply Chain Forum', 16246039, 0.577, 'Q2', 12, 29, 1580, 191, 70, '3', '2013-2020', 'Business and International Management (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2)'), (8532, 'Accountability in Research', 15455815, 0.576, 'Q1', 28, 52, 2405, 174, 70, '3', '1989-2020', 'Library and Information Sciences (Q1); Education (Q2); Medicine (miscellaneous) (Q2)'), (8533, 'Analytical Cellular Pathology', 22107185, 0.576, 'Q2', 24, 44, 1912, 282, 106, '32', '2010-2020', 'Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2); Molecular Medicine (Q3); Cancer Research (Q4); Cell Biology (Q4)'), (8534, 'Applicable Analysis', 10267360, 0.576, 'Q2', 42, 394, 10821, 789, 600, '3', '1971-2020', 'Analysis (Q2); Applied Mathematics (Q2)'), (8535, 'Archives of Insect Biochemistry and Physiolog', 15206327, 0.576, 'Q2', 66, 107, 5370, 344, 187, '3', '1983-2020', 'Insect Science (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Physiology (Q3)'), (8536, 'Asymptotic Analysis', 18758576, 0.576, 'Q2', 45, 55, 1660, 168, 135, '16', '1988-2020', 'Mathematics (miscellaneous) (Q2)'), (8537, 'Beitrage zur Algebra und Geometrie', 1384821, 0.576, 'Q2', 21, 98, 1769, 126, 150, '5', '2000-2002, 2004-2020', 'Algebra and Number Theory (Q2); Geometry and Topology (Q2)'), (8538, 'Communications of the Association for Informa', 15293181, 0.576, 'Q2', 48, 68, 5369, 457, 189, '2', '2006, 2009-2020', 'Information Systems (Q2)'), (8539, 'Defence and Peace Economics', 14768267, 0.576, 'Q2', 38, 93, 5167, 289, 148, '3', '1994-2020', 'Economics and Econometrics (Q2); Social Sciences (miscellaneous) (Q2)'), (8540, 'Emergency Medicine Clinics of North America', 15580539, 0.576, 'Q2', 54, 71, 4125, 382, 162, '3', '1983-2020', 'Emergency Medicine (Q2)'), (8541, 'International Journal of Biomaterials', 16878787, 0.576, 'Q2', 28, 13, 526, 260, 71, '2', '2011-2020', 'Biomedical Engineering (Q2); Biomaterials (Q3)'), (8542, 'International Journal of Work-Integrated Lear', 25381032, 0.576, 'Q2', 15, 45, 2000, 187, 78, '41', '2018-2020', 'Education (Q2)'), (8543, 'JOGNN - Journal of Obstetric, Gynecologic, an', 8842175, 0.576, 'Q1', 73, 71, 3102, 483, 261, '3', '1972-2020', 'Critical Care Nursing (Q1); Maternity and Midwifery (Q1); Pediatrics (Q1); Medicine (miscellaneous) (Q2)'), (8544, 'Journal of Digital Learning in Teacher Educat', 21532974, 0.576, 'Q2', 20, 31, 1032, 127, 45, '3', '2010-2020', 'Computer Science Applications (Q2); Education (Q2)'), (8545, 'Journal of Solid State Electrochemistry', 14328488, 0.576, 'Q2', 84, 345, 14437, 2751, 1062, '5', '1997-2020', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electrochemistry (Q2); Materials Science (miscellaneous) (Q2)'), (8546, 'Match', 3406253, 0.576, 'Q2', 62, 57, 1534, 560, 234, '55', '1996-2020', 'Applied Mathematics (Q2); Chemistry (miscellaneous) (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2)'), (8547, 'Recent Patents on Inflammation and Allergy Dr', 1872213, 0.576, 'Q2', 26, 13, 1511, 136, 45, '52', '2007-2020', 'Drug Discovery (Q2); Medicine (miscellaneous) (Q2); Immunology and Allergy (Q3)'), (8548, 'Safety and Health at Work', 20937997, 0.576, 'Q1', 30, 80, 2952, 623, 193, '13', '2010-2020', 'Safety Research (Q1); Chemical Health and Safety (Q2); Public Health, Environmental and Occupational Health (Q2); Safety, Risk, Reliability and Quality (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (8549, 'Statistics and Probability Letters', 1677152, 0.576, 'Q2', 66, 241, 4066, 1014, 860, '16', '1982-2021', 'Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (8550, 'Symbiosis', 3345114, 0.576, 'Q1', 46, 76, 4895, 464, 215, '16', '1973, 1985, 1987, 1990-1991, 1993-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q1)'), (8551, 'Advances in Geometry', 1615715, 0.575, 'Q2', 24, 40, 870, 122, 106, '5', '2001-2020', 'Geometry and Topology (Q2)'), (8552, 'Biochemia Medica', 13300962, 0.575, 'Q3', 41, 53, 1489, 445, 181, '58', '2006-2020', 'Biochemistry (medical) (Q3); Clinical Biochemistry (Q3)'), (8553, 'Canadian Family Physician', 8350, 0.575, 'Q2', 66, 341, 4229, 1072, 649, '9', '1977-1983, 1985, 1987-2020', 'Family Practice (Q2); Medicine (miscellaneous) (Q2)'), (8554, 'Ecological Engineering: X', 25902903, 0.575, 'Q2', 3, 4, 292, 32, 11, '16', '2019-2020', 'Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)'), (8555, 'Environmental Health Insights', 11786302, 0.575, 'Q2', 20, 40, 1572, 141, 47, '2', '2008-2020', 'Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Public Health, Environmental and Occupational Health (Q2); Health, Toxicology and Mutagenesis (Q3)'), (8556, 'European journal of prosthodontics and restor', 9657452, 0.575, 'Q2', 26, 21, 0, 134, 72, '3', '1992-2020', 'Medicine (miscellaneous) (Q2)'), (8557, 'Journal of Applied Polymer Science', 218995, 0.575, 'Q1', 166, 1255, 54441, 9838, 3570, '2', '1959-2020', 'Polymers and Plastics (Q1); Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2)'), (8558, 'Journal of Transportation Engineering Part A:', 24732893, 0.575, 'Q2', 11, 179, 6675, 485, 212, '2', '2017-2020', 'Civil and Structural Engineering (Q2); Transportation (Q2)'), (8559, 'Microbial Risk Analysis', 23523522, 0.575, 'Q3', 12, 31, 1647, 138, 57, '16', '2016-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3); Epidemiology (Q4)'), (8560, 'Micromachines', 2072666, 0.575, 'Q2', 44, 1129, 56834, 5741, 1863, '19', '2010-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2)'), (8561, 'Particuology', 22104291, 0.575, 'Q2', 61, 116, 5136, 1050, 313, '16', '2008-2020', 'Chemical Engineering (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)'), (8562, 'Plant Biosystems', 17245575, 0.575, 'Q2', 49, 230, 12828, 862, 350, '3', '1993, 1997-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (8563, 'Regenerative Engineering and Translational Me', 23644133, 0.575, 'Q2', 11, 62, 3953, 177, 77, '19', '2015-2020', 'Biomedical Engineering (Q2); Medicine (miscellaneous) (Q2); Biomaterials (Q3); Cell Biology (Q4)'), (8564, 'Traffic Injury Prevention', 15389588, 0.575, 'Q2', 51, 136, 2885, 1057, 605, '3', '2002-2020', 'Public Health, Environmental and Occupational Health (Q2); Safety Research (Q2)'), (8565, 'Acta Haematologica', 15792, 0.574, 'Q2', 56, 127, 3484, 390, 205, '19', '1948-2020', 'Medicine (miscellaneous) (Q2); Hematology (Q3)'), (8566, 'Advances in Nursing Science', 1619268, 0.574, 'Q2', 60, 48, 1829, 190, 105, '2', '1978-2020', 'Nursing (miscellaneous) (Q2)'), (8567, 'Earth and Environmental Science Transactions ', 17556910, 0.574, 'Q2', 57, 17, 1212, 237, 139, '3', '2007-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)'), (8568, 'Electroanalysis', 15214109, 0.574, 'Q2', 128, 372, 17626, 2778, 999, '5', '1989-2020', 'Analytical Chemistry (Q2); Electrochemistry (Q3)'), (8569, 'Electronic Journal of e-Learning', 14794403, 0.574, 'Q2', 24, 42, 1928, 205, 63, '3', '2011-2020', 'Computer Science Applications (Q2); Education (Q2); E-learning (Q2)'), (8570, 'Gesture', 15699773, 0.574, 'Q1', 35, 0, 0, 48, 45, '16', '2001-2014, 2016-2018', 'Cultural Studies (Q1); Linguistics and Language (Q1); Communication (Q2); Experimental and Cognitive Psychology (Q3)'), (8571, 'IEEE Transactions on Nanotechnology', 1536125, 0.574, 'Q2', 82, 122, 3933, 1342, 481, '2', '2002-2020', 'Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Nanoscience and Nanotechnology (Q2)'), (8572, 'International Journal of Community Based Nurs', 23224835, 0.574, 'Q1', 13, 36, 1227, 211, 105, '15', '2015-2020', 'Community and Home Care (Q1); Family Practice (Q2); Health (social science) (Q2); Maternity and Midwifery (Q2)'), (8573, 'Interventional Neuroradiology', 15910199, 0.574, 'Q2', 34, 169, 3610, 544, 343, '7', '1996-2020', 'Cardiology and Cardiovascular Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Neurology (clinical) (Q3)'), (8574, 'JETP Letters', 10906487, 0.574, 'Q2', 79, 256, 7051, 1600, 883, '10', '1969-1971, 1980, 1988, 1996-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (8575, 'Journal of King Saud University - Science', 10183647, 0.574, 'Q1', 38, 498, 16685, 1344, 342, '29', '1994, 2009-2020', 'Multidisciplinary (Q1)'), (8576, 'Journal of Ultrasound in Medicine', 2784297, 0.574, 'Q2', 91, 421, 11807, 1949, 910, '2', '1982-2020', 'Medicine (miscellaneous) (Q2); Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2)'), (8577, 'Nursing Administration Quarterly', 3639568, 0.574, 'Q2', 38, 58, 765, 161, 150, '2', '1976-2020', 'Leadership and Management (Q2); Medicine (miscellaneous) (Q2)'), (8578, 'Phytochemical Analysis', 9580344, 0.574, 'Q1', 72, 112, 4284, 594, 198, '3', '1990-2020', 'Complementary and Alternative Medicine (Q1); Analytical Chemistry (Q2); Drug Discovery (Q2); Food Science (Q2); Medicine (miscellaneous) (Q2); Plant Science (Q2); Biochemistry (Q3); Molecular Medicine'), (8579, 'Policy Futures in Education', 14782103, 0.574, 'Q2', 16, 86, 4433, 257, 178, '3', '2009-2020', 'Education (Q2)'), (8580, 'Public Administration and Development', 2712075, 0.574, 'Q2', 44, 25, 1570, 108, 58, '3', '1981-2020', 'Development (Q2); Public Administration (Q2)'), (8581, 'SERIEs', 18694187, 0.574, 'Q1', 15, 22, 818, 49, 49, '5', '2010-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (8582, 'Veterinary Clinics of North America. Equine P', 15584224, 0.574, 'Q2', 51, 46, 2232, 211, 113, '3', '1985-2020', 'Equine (Q2)'), (8583, '4OR', 16142411, 0.573, 'Q2', 41, 41, 1524, 110, 53, '5', '2003-2020', 'Computational Theory and Mathematics (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q2); Theoretical Computer Science (Q2)'), (8584, 'Animal Reproduction Science', 3784320, 0.573, 'Q2', 104, 214, 9393, 1462, 691, '16', '1936, 1978-2020', 'Animal Science and Zoology (Q2); Food Animals (Q2); Medicine (miscellaneous) (Q2); Endocrinology (Q3)'), (8585, 'Australian Journal of Earth Sciences', 8120099, 0.573, 'Q2', 75, 90, 6194, 318, 192, '3', '1984-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (8586, 'Cardiology Journal', 18975593, 0.573, 'Q2', 33, 163, 3057, 461, 232, '17', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q2)'), (8587, 'European Journal of Cultural and Political So', 23254815, 0.573, 'Q1', 11, 23, 1098, 86, 47, '3', '2014-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q1)'), (8588, 'European Journal of Drug Metabolism and Pharm', 21070180, 0.573, 'Q2', 37, 73, 2702, 551, 239, '8', '1976-2020', 'Pharmacology (medical) (Q2); Pharmacology (Q3)'), (8589, 'European Neurology', 14219913, 0.573, 'Q3', 77, 102, 2973, 423, 233, '19', '1897-2020', 'Neurology (Q3); Neurology (clinical) (Q3)'), (8590, 'Hydrology', 23065338, 0.573, 'Q2', 17, 97, 5480, 504, 211, '19', '2014-2020', 'Earth-Surface Processes (Q2); Oceanography (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2)'), (8591, 'International Journal of Geo-Engineering', 20929196, 0.573, 'Q2', 10, 22, 767, 175, 67, '37', '2015-2020', 'Energy (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2); Mechanics of Materials (Q2)'), (8592, 'Italian Journal of Animal Science', 15944077, 0.573, 'Q2', 37, 159, 6850, 868, 382, '3', '2002-2020', 'Animal Science and Zoology (Q2)'), (8593, 'Journal of Computer and System Sciences', 10902724, 0.573, 'Q2', 99, 46, 1626, 568, 245, '2', '1967-2021', 'Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Theoretical Computer Science (Q2)'), (8594, 'Journal of Environmental and Engineering Geop', 10831363, 0.573, 'Q2', 32, 51, 1841, 221, 131, '2', '2003-2020', 'Environmental Engineering (Q2); Geophysics (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (8595, 'Lithic Technology', 1977261, 0.573, 'Q1', 13, 23, 1342, 53, 46, '3', '1977-1979, 1981, 1984, 1986-1987, 1993-1994, 2013-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)'), (8596, 'Acta Crystallographica Section F:Structural B', 2053230, 0.572, 'Q2', 37, 85, 2717, 349, 326, '3', '2014-2020', 'Condensed Matter Physics (Q2); Medicine (miscellaneous) (Q2); Biochemistry (Q3); Biophysics (Q3); Genetics (Q3); Structural Biology (Q3)'), (8597, 'Analytica Chimica Acta: X', 25901346, 0.572, 'Q2', 5, 9, 373, 40, 16, '16', '2019-2020', 'Analytical Chemistry (Q2); Spectroscopy (Q2); Biochemistry (Q3); Environmental Chemistry (Q3)'), (8598, 'Annali di igiene : medicina preventiva e di c', 11209135, 0.572, 'Q2', 24, 72, 2556, 468, 198, '7', '1989-2020', 'Public Health, Environmental and Occupational Health (Q2); Infectious Diseases (Q3)'), (8599, 'Asia-Pacific Journal of Public Health', 10105395, 0.572, 'Q2', 37, 141, 2484, 432, 247, '2', '1987-1992, 1994-1996, 1998-2020', 'Medicine (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (8600, 'Biotechnology Progress', 87567938, 0.572, 'Q2', 129, 191, 8713, 1285, 491, '2', '1985-2020', 'Biotechnology (Q2)'), (8601, 'Emerging Adulthood', 21676984, 0.572, 'Q2', 27, 99, 5186, 238, 140, '3', '2013-2020', 'Life-span and Life-course Studies (Q2); Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q3)'), (8602, 'Human and Experimental Toxicology', 9603271, 0.572, 'Q2', 78, 181, 8831, 1100, 374, '2', '1981-2020', 'Medicine (miscellaneous) (Q2); Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)'), (8603, 'Indoor and Built Environment', 1420326, 0.572, 'Q2', 44, 233, 10153, 956, 298, '3', '1992-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (8604, 'International Journal of Innovation Managemen', 13639196, 0.572, 'Q2', 44, 123, 10439, 650, 231, '37', '2008-2020', 'Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (8605, 'Journal of African Earth Sciences', 1464343, 0.572, 'Q2', 76, 277, 20170, 1920, 912, '3', '1983-2020', 'Earth-Surface Processes (Q2); Geology (Q2)'), (8606, 'Journal of Bisexuality', 15299716, 0.572, 'Q1', 35, 31, 1392, 166, 83, '3', '2000-2020', 'Cultural Studies (Q1); Gender Studies (Q2)'), (8607, 'Journal of Library and Information Services i', 15332918, 0.572, 'Q1', 13, 12, 446, 70, 74, '2', '2004-2007, 2009-2020', 'Library and Information Sciences (Q1); E-learning (Q2)'), (8608, 'Journal of Wood Science', 14350211, 0.572, 'Q3', 58, 85, 2561, 529, 232, '6', '1998-2020', 'Biomaterials (Q3)'), (8609, 'Mitteilungen aus dem Museum fur Naturkunde in', 14351951, 0.572, 'Q2', 17, 12, 740, 27, 25, '5', '1954-1955, 1957, 1959-1963, 1965-1974, 1976-1995, 1998-2020', 'Insect Science (Q2)'), (8610, 'New Left Review', 286060, 0.572, 'Q1', 68, 0, 0, 99, 78, '3', '1984, 1987, 1996-2019', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1)'), (8611, 'Parks', 24112119, 0.572, 'Q2', 14, 20, 785, 91, 55, '19', '2012-2020', 'Nature and Landscape Conservation (Q2)'), (8612, 'Regenerative Medicine', 17460751, 0.572, 'Q2', 63, 98, 4917, 619, 237, '3', '2006-2020', 'Biomedical Engineering (Q2); Embryology (Q2)'), (8613, 'Transnational Environmental Law', 20471033, 0.572, 'Q1', 18, 26, 1304, 112, 70, '3', '2012-2020', 'Law (Q1); Management, Monitoring, Policy and Law (Q2)'), (8614, 'Aquatic Microbial Ecology', 16161564, 0.571, 'Q2', 106, 32, 2296, 205, 108, '5', '1995-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8615, 'Asia Pacific Viewpoint', 14678373, 0.571, 'Q2', 38, 48, 2895, 167, 86, '3', '1996-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (8616, 'Cytogenetic and Genome Research', 14248581, 0.571, 'Q3', 88, 65, 2565, 401, 243, '19', '1962-1997, 2002-2020', 'Genetics (Q3); Molecular Biology (Q3); Genetics (clinical) (Q4)'), (8617, 'Health, Risk and Society', 13698575, 0.571, 'Q2', 49, 26, 1483, 102, 65, '3', '1999-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (8618, 'Jahrbuch fur Regional Wissenschaft', 1737600, 0.571, 'Q2', 17, 11, 586, 51, 25, '5', '1998-2020', 'Geography, Planning and Development (Q2)'), (8619, 'Johnson Matthey Technology Review', 20565135, 0.571, 'Q1', 49, 48, 2188, 205, 76, '3', '2014-2020', 'Metals and Alloys (Q1); Process Chemistry and Technology (Q2); Electrochemistry (Q3)'), (8620, 'Journal of Occupational Science', 14427591, 0.571, 'Q1', 44, 91, 4461, 345, 134, '3', '1993-2020', 'Sociology and Political Science (Q1); Social Sciences (miscellaneous) (Q2)'), (8621, 'Journal of Polymers and the Environment', 15728900, 0.571, 'Q2', 74, 294, 15100, 2686, 785, '2', '2000-2020', 'Environmental Engineering (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)'), (8622, 'Journal of Transportation Engineering', 733947, 0.571, 'Q2', 75, 0, 0, 92, 41, '2', '1975, 1981-2017', 'Civil and Structural Engineering (Q2); Transportation (Q2)'), (8623, 'Science China Technological Sciences', 16747321, 0.571, 'Q1', 60, 253, 13180, 2022, 600, '5', '2009-2020', 'Engineering (miscellaneous) (Q1); Materials Science (miscellaneous) (Q2)'), (8624, 'Skeletal Radiology', 3642348, 0.571, 'Q2', 91, 269, 7376, 1198, 632, '5', '1976-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (8625, 'Social Theory and Health', 14778211, 0.571, 'Q1', 32, 41, 2319, 144, 82, '3', '2003-2020', 'Sociology and Political Science (Q1); Health (social science) (Q2)'), (8626, 'Agribusiness', 7424477, 0.57, 'Q2', 43, 61, 3117, 256, 126, '2', '1985-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Economics and Econometrics (Q2); Food Science (Q2); Geography, Planning and Development (Q2)'), (8627, 'Annals of Animal Science', 23008733, 0.57, 'Q2', 22, 112, 6277, 462, 175, '5', '2008-2020', 'Animal Science and Zoology (Q2); Food Animals (Q2); Small Animals (Q2)'), (8628, 'Comparative Cognition and Behavior Reviews', 19114745, 0.57, 'Q1', 8, 7, 969, 40, 28, '9', '2016-2019', 'Veterinary (miscellaneous) (Q1); Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8629, 'Dental Press Journal of Orthodontics', 21776709, 0.57, 'Q2', 22, 61, 1385, 345, 182, '14', '2010-2020', 'Oral Surgery (Q2); Orthodontics (Q2)'), (8630, 'eNeurologicalSci', 24056502, 0.57, 'Q3', 12, 74, 1210, 235, 107, '16', '2015-2020', 'Neurology (Q3)'), (8631, 'Fibers', 20796439, 0.57, 'Q2', 21, 72, 2932, 809, 243, '19', '2013-2020', 'Ceramics and Composites (Q2); Civil and Structural Engineering (Q2); Mechanics of Materials (Q2); Biomaterials (Q3)'), (8632, 'Geomicrobiology Journal', 1490451, 0.57, 'Q2', 77, 102, 5708, 625, 269, '3', '1978-1981, 1983-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3); Microbiology (Q3)'), (8633, 'Image and Vision Computing', 2628856, 0.57, 'Q2', 132, 123, 5745, 1464, 276, '3', '1983-2020', 'Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2)'), (8634, 'International Journal of Agricultural and Bio', 19346352, 0.57, 'Q1', 31, 182, 6183, 1309, 494, '1', '2008-2020', 'Engineering (miscellaneous) (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2)'), (8635, 'International Journal of Industrial Ergonomic', 1698141, 0.57, 'Q2', 79, 119, 6070, 1089, 342, '16', '1986-2020', 'Human Factors and Ergonomics (Q2); Public Health, Environmental and Occupational Health (Q2)'), (8636, 'Journal of Internet Services and Applications', 18674828, 0.57, 'Q2', 24, 10, 500, 339, 63, '3', '2010-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2)'), (8637, 'Journal of Music Therapy', 222917, 0.57, 'Q1', 49, 17, 745, 92, 48, '2', '1964-2020', 'Complementary and Manual Therapy (Q1); Music (Q1); Medicine (miscellaneous) (Q2)'), (8638, 'Macromolecular Chemistry and Physics', 10221352, 0.57, 'Q2', 112, 209, 9041, 1798, 775, '5', '1994-2020', 'Condensed Matter Physics (Q2); Materials Chemistry (Q2); Organic Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Polymers and Plastics (Q2)'), (8639, 'Metals', 20754701, 0.57, 'Q1', 36, 1693, 69401, 7627, 2949, '19', '2011-2020', 'Metals and Alloys (Q1); Materials Science (miscellaneous) (Q2)'), (8640, 'Shape Memory and Superelasticity', 2199384, 0.57, 'Q2', 18, 39, 1474, 227, 126, '2', '2015-2020', 'Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (8641, 'Statistics in Biosciences', 18671764, 0.57, 'Q2', 14, 34, 1119, 106, 101, '2', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Statistics and Probability (Q2)'), (8642, 'Applied Economics', 36846, 0.569, 'Q2', 85, 439, 19802, 2331, 1263, '3', '1969-2020', 'Economics and Econometrics (Q2)'), (8643, 'Child Abuse Review', 9529136, 0.569, 'Q1', 41, 48, 1670, 156, 94, '3', '1992-2020', 'Law (Q1); Pediatrics, Perinatology and Child Health (Q2); Social Work (Q2)'), (8644, 'Earthquake and Structures', 20927614, 0.569, 'Q2', 29, 84, 3461, 610, 301, '13', '2010-2020', 'Civil and Structural Engineering (Q2)'), (8645, 'First Language', 17402344, 0.569, 'Q1', 40, 57, 2508, 130, 95, '3', '1980-1984, 1986-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (8646, 'Gels', 23102861, 0.569, 'Q2', 7, 49, 3075, 145, 41, '19', '2019-2020', 'Bioengineering (Q2); Organic Chemistry (Q2); Polymers and Plastics (Q2); Biomaterials (Q3)'), (8647, 'International Journal of Stem Cells', 20055447, 0.569, 'Q4', 23, 35, 1677, 259, 96, '13', '2008-2020', 'Cell Biology (Q4); Developmental Biology (Q4)'), (8648, 'Journal of East Asian Linguistics', 15728560, 0.569, 'Q1', 29, 14, 913, 25, 37, '16', '1992-2020', 'History and Philosophy of Science (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1)'), (8649, 'Journal of Forensic and Legal Medicine', 1752928, 0.569, 'Q1', 47, 134, 3921, 668, 407, '3', '2007-2020', 'Law (Q1); Medicine (miscellaneous) (Q2); Pathology and Forensic Medicine (Q2)'), (8650, 'Journal of Microscopy', 222720, 0.569, 'Q2', 111, 113, 4659, 610, 322, '3', '1969-2020', 'Pathology and Forensic Medicine (Q2); Histology (Q3)'), (8651, 'Medical Engineering and Physics', 18734030, 0.569, 'Q2', 107, 165, 7049, 1245, 475, '16', '1994-2020', 'Biomedical Engineering (Q2); Biophysics (Q3)'), (8652, 'Molecular and Cellular Probes', 10961194, 0.569, 'Q4', 68, 143, 5025, 484, 206, '2', '1987-2020', 'Cell Biology (Q4); Molecular Biology (Q4)'), (8653, 'Pediatrics and Neonatology', 18759572, 0.569, 'Q2', 36, 139, 2617, 639, 333, '37', '2008-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (8654, 'Recycling', 23134321, 0.569, 'Q2', 14, 31, 1595, 380, 122, '19', '2016-2020', 'Management, Monitoring, Policy and Law (Q2); Materials Science (miscellaneous) (Q2); Waste Management and Disposal (Q2)'), (8655, 'Russian Geology and Geophysics', 10687971, 0.569, 'Q2', 43, 84, 4218, 430, 358, '16', '2007-2020', 'Geology (Q2); Geophysics (Q2)'), (8656, 'Singapore Dental Journal', 3775291, 0.569, 'Q2', 11, 0, 0, 32, 18, '37', '1974, 1976-1977, 1979-1990, 1993-1997, 2000-2001, 2004-2007, 2010-2013, 2017', 'Dentistry (miscellaneous) (Q2)'), (8657, 'Social and Legal Studies', 9646639, 0.569, 'Q1', 42, 63, 4424, 139, 104, '3', '1992-2020', 'Law (Q1); Sociology and Political Science (Q1); Social Sciences (miscellaneous) (Q2)'), (8658, 'Soil and Water Research', 18059384, 0.569, 'Q2', 21, 27, 927, 195, 83, '31', '2007-2020', 'Aquatic Science (Q2); Soil Science (Q2)'), (8659, 'Therapeutic Innovation and Regulatory Science', 21684790, 0.569, 'Q2', 44, 188, 2194, 437, 339, '2', '1970, 1972, 1974-2006, 2008-2011, 2013-2020', 'Pharmacology (medical) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q2)'), (8660, 'Tohoku Mathematical Journal', 408735, 0.569, 'Q2', 36, 32, 762, 95, 91, '6', '1949-2019', 'Mathematics (miscellaneous) (Q2)'), (8661, 'World Mycotoxin Journal', 18750710, 0.569, 'Q2', 35, 46, 2739, 349, 124, '16', '2009-2020', 'Food Science (Q2); Public Health, Environmental and Occupational Health (Q2); Toxicology (Q3)'), (8662, 'Acta Mechanica Sinica/Lixue Xuebao', 16143116, 0.568, 'Q1', 47, 113, 4815, 665, 285, '5', '1985-2020', 'Computational Mechanics (Q1); Mechanical Engineering (Q2)'), (8663, 'Anatolian Studies', 661546, 0.568, 'Q1', 19, 8, 811, 32, 26, '3', '1951-2020', 'Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)'), (8664, 'Electrochemical Society Interface', 10648208, 0.568, 'Q3', 46, 42, 998, 162, 86, '2', '1992-2020', 'Electrochemistry (Q3)'), (8665, 'European Journal of Spatial Development', 16509544, 0.568, 'Q2', 10, 0, 0, 15, 7, '20', '2008-2019', 'Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Urban Studies (Q2)'), (8666, 'Frontiers of Earth Science', 20950195, 0.568, 'Q2', 27, 67, 3496, 437, 193, '1', '2007-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (8667, 'International Journal for Ion Mobility Spectr', 18654584, 0.568, 'Q2', 23, 21, 602, 73, 40, '5', '2008-2020', 'Spectroscopy (Q2)'), (8668, 'Journal of Elliptic and Parabolic Equations', 22969020, 0.568, 'Q2', 7, 40, 1065, 53, 47, '19', '2015-2020', 'Analysis (Q2); Applied Mathematics (Q2); Numerical Analysis (Q2)'), (8669, 'Journal of Food Quality', 17454557, 0.568, 'Q2', 43, 154, 6985, 1232, 443, '3', '1977-2020', 'Food Science (Q2); Safety, Risk, Reliability and Quality (Q2)'), (8670, 'Journal of Research in Medical Sciences', 17357136, 0.568, 'Q2', 39, 67, 1894, 636, 299, '15', '2005-2020', 'Medicine (miscellaneous) (Q2)'), (8671, 'Journal of the Korean Astronomical Society', 12254614, 0.568, 'Q3', 22, 15, 487, 119, 56, '13', '1993, 2008-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (8672, 'Korean Journal of Pediatrics', 17831061, 0.568, 'Q1', 28, 95, 2589, 354, 185, '13', '2010-2020', 'Pediatrics (Q1); Pediatrics, Perinatology and Child Health (Q2)'), (8673, 'Physical Medicine and Rehabilitation Clinics ', 15581381, 0.568, 'Q2', 58, 65, 2642, 426, 169, '3', '1995-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)'), (8674, 'Postgraduate Medical Journal', 14690756, 0.568, 'Q2', 99, 354, 5996, 737, 309, '3', '1927, 1929-2020', 'Medicine (miscellaneous) (Q2)'), (8675, 'Regional Statistics', 20648243, 0.568, 'Q2', 10, 20, 875, 151, 62, '50', '2015-2020', 'Economics and Econometrics (Q2); Statistics and Probability (Q2); Statistics, Probability and Uncertainty (Q2)'), (8676, 'Trends in Organized Crime', 10844791, 0.568, 'Q1', 24, 34, 2389, 116, 51, '2', '1995-2002, 2004-2020', 'Law (Q1)'), (8677, 'Australian Forestry', 49158, 0.567, 'Q1', 31, 27, 983, 150, 88, '3', '1936-1941, 1943-1972, 1974-2020', 'Forestry (Q1)'), (8678, 'Current Molecular Medicine', 15665240, 0.567, 'Q2', 105, 82, 4955, 467, 212, '52', '2001-2020', 'Medicine (miscellaneous) (Q2); Biochemistry (Q3); Molecular Medicine (Q3); Molecular Biology (Q4)'), (8679, 'Far Eastern Entomologist', 1026051, 0.567, 'Q2', 9, 60, 949, 132, 195, '10', '2015-2020', 'Insect Science (Q2)'), (8680, 'IForest', 19717458, 0.567, 'Q2', 29, 72, 3631, 658, 297, '7', '2008-2020', 'Ecology (Q2); Forestry (Q2); Nature and Landscape Conservation (Q2)'), (8681, 'Indonesian Journal of Science and Technology', 25278045, 0.567, 'Q1', 11, 38, 961, 150, 62, '21', '2016-2020', 'Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1); Chemical Engineering (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2); Space and Planetary Science ('), (8682, 'International Journal of Culture, Tourism and', 17506182, 0.567, 'Q2', 31, 47, 3276, 279, 111, '3', '2007-2020', 'Geography, Planning and Development (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (8683, 'Journal of Comparative Effectiveness Research', 20426305, 0.567, 'Q2', 23, 120, 4087, 451, 283, '3', '2012-2020', 'Health Policy (Q2)'), (8684, 'Journal of Engineering for Gas Turbines and P', 15288919, 0.567, 'Q2', 84, 54, 1848, 1729, 903, '2', '1960-2020', 'Aerospace Engineering (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Mechanical Engineering (Q2); Nuclear Energy and Engineering (Q2)'), (8685, 'Journal of Interactive Media in Education', 1365893, 0.567, 'Q2', 6, 20, 694, 67, 28, '3', '2018-2020', 'Communication (Q2); Computer Networks and Communications (Q2); Education (Q2)'), (8686, 'Microarrays', 20763905, 0.567, 'Q2', 4, 0, 0, 17, 8, '19', '2017', 'Biomedical Engineering (Q2); Biotechnology (Q2); Biochemistry (Q3); Bioengineering (Q3)'), (8687, 'Mires and Peat', 1819754, 0.567, 'Q2', 13, 25, 1442, 208, 117, '5', '2015-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2); Soil Science (Q2)'), (8688, 'Nanotechnology for Environmental Engineering', 23656387, 0.567, 'Q2', 12, 29, 1756, 185, 51, '19', '2016-2020', 'Environmental Engineering (Q2); Bioengineering (Q3); Environmental Chemistry (Q3)'), (8689, 'Nematology', 15685411, 0.567, 'Q2', 53, 149, 5814, 342, 242, '16', '1999-2020', 'Agronomy and Crop Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8690, 'Zeitschrift fur Analysis und ihre Anwendung', 2322064, 0.567, 'Q2', 35, 22, 547, 84, 68, '5', '1996-2020', 'Analysis (Q2); Applied Mathematics (Q2)'), (8691, 'Architectural Science Review', 38628, 0.566, 'Q1', 36, 57, 2616, 293, 126, '3', '1958-2020', 'Architecture (Q1)'), (8692, 'Asiascape: Digital Asia', 22142312, 0.566, 'Q1', 7, 9, 584, 46, 32, '16', '2014-2020', 'Anthropology (Q1); Cultural Studies (Q1); Communication (Q2)'), (8693, 'Bioanalysis', 17576180, 0.566, 'Q2', 58, 163, 4671, 986, 515, '3', '2009-2020', 'Analytical Chemistry (Q2); Medical Laboratory Technology (Q2); Medicine (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Clinical Biochemistry (Q3)'), (8694, 'Critical Policy Studies', 19460171, 0.566, 'Q1', 27, 40, 2567, 175, 75, '3', '2010-2020', 'Sociology and Political Science (Q1); Public Administration (Q2)'), (8695, 'Current Opinion in Supportive and Palliative ', 17514258, 0.566, 'Q2', 38, 49, 495, 394, 185, '2', '2007-2020', 'Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q2); Oncology (nursing) (Q2); Oncology (Q3)'), (8696, 'Education for Chemical Engineers', 17497728, 0.566, 'Q2', 21, 39, 1755, 213, 83, '16', '2006-2020', 'Chemical Engineering (miscellaneous) (Q2); Education (Q2)'), (8697, 'International Journal of Refugee Law', 14643715, 0.566, 'Q1', 32, 20, 1314, 98, 86, '3', '1989-2019', 'Law (Q1); Demography (Q2); Management, Monitoring, Policy and Law (Q2)'), (8698, 'JCRPE Journal of Clinical Research in Pediatr', 13085727, 0.566, 'Q2', 35, 72, 2197, 397, 192, '18', '2008-2020', 'Pediatrics, Perinatology and Child Health (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (8699, 'Journal of Cosmetic and Laser Therapy', 14764172, 0.566, 'Q2', 50, 35, 768, 432, 244, '3', '1999-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q2); Surgery (Q2)'), (8700, 'Journal of Non-Equilibrium Thermodynamics', 3400204, 0.566, 'Q2', 36, 30, 1361, 291, 88, '5', '1976-2020', 'Chemistry (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (8701, 'Stochastics and Dynamics', 2194937, 0.566, 'Q2', 26, 87, 2529, 218, 139, '37', '2005-2020', 'Modeling and Simulation (Q2)'), (8702, 'Wildlife Biology', 9096396, 0.566, 'Q2', 52, 82, 5203, 152, 98, '25', '1995-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)'), (8703, 'Acta Chimica Sinica', 5677351, 0.565, 'Q2', 40, 142, 8896, 911, 390, '1', '1982, 1996-2020', 'Chemistry (miscellaneous) (Q2)'), (8704, 'AIMS Microbiology', 24711888, 0.565, 'Q3', 6, 28, 2137, 85, 33, '2', '2019-2020', 'Microbiology (Q3); Microbiology (medical) (Q3)'), (8705, 'Big Data Research', 22145796, 0.565, 'Q2', 25, 11, 547, 324, 69, '2', '2014-2020', 'Computer Science Applications (Q2); Information Systems (Q2); Information Systems and Management (Q2); Management Information Systems (Q2)'), (8706, 'Critical Asian Studies', 14672715, 0.565, 'Q1', 35, 30, 1878, 143, 88, '3', '1968-1993, 1995-2020', 'Sociology and Political Science (Q1); Geography, Planning and Development (Q2)'), (8707, 'Current Clinical Pharmacology', 15748847, 0.565, 'Q2', 41, 28, 1263, 199, 89, '52', '2006-2020', 'Medicine (miscellaneous) (Q2); Pharmacology (medical) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)'), (8708, 'Horticulture Environment and Biotechnology', 22113460, 0.565, 'Q1', 24, 98, 4193, 499, 248, '13', '2011-2020', 'Horticulture (Q1); Biotechnology (Q2); Plant Science (Q2)'), (8709, 'New Criminal Law Review', 19334206, 0.565, 'Q1', 16, 6, 329, 48, 54, '2', '2007-2020', 'Law (Q1)'), (8710, 'Optical Fiber Technology', 10959912, 0.565, 'Q2', 62, 266, 8368, 1862, 670, '2', '1970, 1994-2020', 'Atomic and Molecular Physics, and Optics (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Instrumentation (Q2)'), (8711, 'Plant Health Progress', 15351025, 0.565, 'Q1', 9, 67, 1652, 203, 158, '2', '2014-2020', 'Horticulture (Q1); Plant Science (Q2)'), (8712, 'Rivista Italiana di Geotecnica', 5571405, 0.565, 'Q2', 12, 9, 604, 68, 44, '7', '1976-1984, 2011-2019', 'Geotechnical Engineering and Engineering Geology (Q2)'), (8713, 'Social Semiotics', 10350330, 0.565, 'Q1', 31, 79, 3941, 167, 134, '3', '1991-2020', 'Cultural Studies (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2)'), (8714, 'Solid State Sciences', 12932558, 0.565, 'Q2', 89, 313, 14102, 1729, 601, '8', '1999-2020', 'Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)'), (8715, 'Aequationes Mathematicae', 19054, 0.564, 'Q2', 35, 91, 2072, 237, 211, '19', '1968-2020', 'Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2); Mathematics (miscellaneous) (Q2)'), (8716, 'Biophysical Chemistry', 3014622, 0.564, 'Q2', 97, 93, 5195, 578, 273, '16', '1973-2020', 'Organic Chemistry (Q2); Biochemistry (Q3); Biophysics (Q3)'), (8717, 'Cultural Geographies', 14744740, 0.564, 'Q1', 57, 48, 0, 183, 114, '3', '1994-1998, 2002-2020', 'Cultural Studies (Q1); Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (8718, 'Current Gerontology and Geriatrics Research', 16877063, 0.564, 'Q3', 28, 13, 588, 102, 37, '2', '2010-2020', 'Geriatrics and Gerontology (Q3)'), (8719, 'Health Informatics Journal', 14604582, 0.564, 'Q2', 39, 212, 9477, 560, 191, '3', '1995, 1998-2020', 'Health Informatics (Q2)'), (8720, 'Impact Assessment and Project Appraisal', 14615517, 0.564, 'Q2', 52, 62, 2900, 301, 111, '3', '1998-2020', 'Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)'), (8721, 'International Journal of Industrial Engineeri', 19232934, 0.564, 'Q2', 26, 40, 1575, 305, 89, '9', '2010-2020', 'Industrial and Manufacturing Engineering (Q2)'), (8722, 'Journal of Aging Research', 20902212, 0.564, 'Q3', 43, 36, 1611, 169, 77, '2', '2010-2020', 'Geriatrics and Gerontology (Q3)'), (8723, 'Journal of Geography', 17526868, 0.564, 'Q2', 31, 29, 1439, 146, 61, '3', '1902-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)'), (8724, 'Journal of integrative medicine', 20954964, 0.564, 'Q1', 31, 67, 3625, 540, 175, '37', '2013-2020', 'Complementary and Alternative Medicine (Q1)'), (8725, 'Journal of Photonics for Energy', 19477988, 0.564, 'Q2', 27, 39, 1748, 361, 182, '2', '2011-2020', 'Atomic and Molecular Physics, and Optics (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (8726, 'Linguistic and Philosophical Investigations', 18412394, 0.564, 'Q1', 10, 10, 385, 59, 23, '2', '2013-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1)'), (8727, 'Metal ions in life sciences', 20419821, 0.564, 'Q2', 38, 12, 0, 88, 31, '5', '2007, 2010-2020', 'Inorganic Chemistry (Q2); Biochemistry (Q3); Medicine (miscellaneous) (Q3)'), (8728, 'Public Culture', 15278018, 0.564, 'Q2', 75, 25, 985, 91, 77, '2', '1996-2020', 'Arts and Humanities (miscellaneous) (Q2); Communication (Q2); Social Psychology (Q2)'), (8729, 'TripleC', 1726670, 0.564, 'Q2', 21, 49, 2387, 177, 126, '28', '2010-2020', 'Communication (Q2); Computer Science Applications (Q2)'), (8730, 'Veterinary Parasitology: Regional Studies and', 24059390, 0.564, 'Q2', 12, 137, 5043, 541, 306, '16', '2015-2020', 'Veterinary (miscellaneous) (Q2); Parasitology (Q3)'), (8731, 'Electronic Commerce Research', 13895753, 0.563, 'Q1', 39, 88, 4924, 502, 127, '16', '2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Human-Computer Interaction (Q2)'), (8732, 'GAIA', 9405550, 0.563, 'Q1', 28, 47, 787, 280, 217, '5', '2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Environmental Science (miscellaneous) (Q2)'), (8733, 'Geografiska Annaler, Series A: Physical Geogr', 4353676, 0.563, 'Q2', 51, 30, 1780, 123, 63, '3', '1979-2020', 'Geography, Planning and Development (Q2); Geology (Q2)'), (8734, 'International Tax and Public Finance', 15736970, 0.563, 'Q2', 49, 75, 2953, 195, 139, '2', '1994-2020', 'Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)'), (8735, 'Journal of Cancer Policy', 22135383, 0.563, 'Q2', 13, 50, 1599, 143, 113, '3', '2013-2020', 'Health Policy (Q2); Oncology (Q3)'), (8736, 'Journal of Hymenoptera Research', 13142607, 0.563, 'Q2', 20, 49, 1611, 201, 131, '2', '2007-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (8737, 'Journal of Toxicological Sciences', 18803989, 0.563, 'Q3', 50, 70, 2599, 489, 191, '6', '1976-2020', 'Medicine (miscellaneous) (Q3); Toxicology (Q3)'), (8738, 'New Zealand Journal of Marine and Freshwater ', 288330, 0.563, 'Q2', 55, 62, 3769, 222, 110, '3', '1967-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Water Science and Technology (Q2)'), (8739, 'Nursing and Health Sciences', 14422018, 0.563, 'Q2', 47, 137, 5539, 410, 201, '3', '1999-2020', 'Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (8740, 'Onderstepoort Journal of Veterinary Research', 22190635, 0.563, 'Q2', 35, 20, 946, 171, 85, '27', '1965-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (8741, 'Perspectives on Terrorism', 23343745, 0.563, 'Q1', 8, 56, 5113, 194, 147, '2', '2017-2020', 'Law (Q1); Political Science and International Relations (Q1); Safety Research (Q2)'), (8742, 'Sexual Medicine', 20501161, 0.563, 'Q2', 19, 91, 3625, 362, 141, '2', '2013-2020', 'Dermatology (Q2); Reproductive Medicine (Q2); Urology (Q2); Behavioral Neuroscience (Q3)'), (8743, 'Smart Structures and Systems', 17381584, 0.563, 'Q2', 47, 120, 6134, 1105, 360, '13', '2006-2020', 'Computer Science Applications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)'), (8744, 'Educational Research and Evaluation', 17444187, 0.562, 'Q2', 35, 0, 0, 92, 58, '3', '1995, 1997, 2004-2020', 'Education (Q2)'), (8745, 'Herpetologica', 180831, 0.562, 'Q2', 50, 44, 1737, 166, 113, '2', '1981-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (8746, 'Integral Transforms and Special Functions', 14768291, 0.562, 'Q2', 42, 97, 2054, 231, 197, '3', '1993-2020', 'Analysis (Q2); Applied Mathematics (Q2)'), (8747, 'Journal of Bryology', 17432820, 0.562, 'Q2', 34, 40, 1726, 155, 115, '3', '1972-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (8748, 'Journal of Navigation', 3734633, 0.562, 'Q2', 56, 86, 2554, 787, 273, '3', '1948-2020', 'Ocean Engineering (Q2); Oceanography (Q2)'), (8749, 'Molecular Genetics and Metabolism Reports', 22144269, 0.562, 'Q3', 18, 148, 4153, 520, 217, '16', '2014-2020', 'Endocrinology (Q3); Genetics (Q3); Molecular Biology (Q4)'), (8750, 'Studies in Political Economy', 7078552, 0.562, 'Q1', 17, 17, 849, 56, 54, '3', '2004-2020', 'Political Science and International Relations (Q1); Economics and Econometrics (Q2)'), (8751, 'Surface Science', 396028, 0.562, 'Q2', 146, 136, 6167, 1026, 544, '16', '1964-2021', 'Condensed Matter Physics (Q2); Materials Chemistry (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)'), (8752, 'Case Studies in Engineering Failure Analysis', 22132902, 0.561, 'Q2', 18, 0, 0, 81, 25, '3', '2013-2017', 'Safety, Risk, Reliability and Quality (Q2)'), (8753, 'Current HIV Research', 18734251, 0.561, 'Q3', 52, 61, 4341, 175, 137, '52', '2003-2020', 'Infectious Diseases (Q3); Virology (Q4)'), (8754, 'HPB Surgery', 8948569, 0.561, 'Q2', 26, 0, 0, 30, 11, '2', '1988-2000, 2008-2018', 'Surgery (Q2); Hepatology (Q3)'), (8755, 'Journal of Cryptographic Engineering', 21908516, 0.561, 'Q2', 26, 38, 1504, 270, 73, '2', '2011-2020', 'Computer Networks and Communications (Q2); Software (Q2)'), (8756, 'Journal of Human Trafficking', 23322705, 0.561, 'Q1', 13, 71, 4059, 131, 65, '2', '2015-2020', 'Anthropology (Q1); Law (Q1); Sociology and Political Science (Q1); Demography (Q2); Transportation (Q2)'), (8757, 'Journal of Laryngology and Otology', 17485460, 0.561, 'Q2', 63, 212, 4520, 748, 594, '3', '1891, 1921-2020', 'Otorhinolaryngology (Q2); Medicine (miscellaneous) (Q3)'), (8758, 'Management Research Review', 20408269, 0.561, 'Q2', 53, 74, 6862, 751, 243, '3', '2009-2020', 'Business, Management and Accounting (miscellaneous) (Q2)'), (8759, 'Nanobiomedicine', 18495435, 0.561, 'Q2', 12, 0, 0, 25, 7, '3', '2014-2019', 'Biomedical Engineering (Q2); Biotechnology (Q2)'), (8760, 'Toxicon', 18793150, 0.561, 'Q3', 128, 483, 13087, 1868, 703, '3', '1962-2020', 'Toxicology (Q3)'), (8761, 'Applied Linguistics Review', 18686303, 0.56, 'Q1', 17, 73, 3539, 171, 96, '17', '2012-2013, 2015-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (8762, 'Defence Technology', 22149147, 0.56, 'Q1', 28, 228, 8353, 959, 261, '1', '2013-2020', 'Metals and Alloys (Q1); Ceramics and Composites (Q2); Computational Mechanics (Q2); Mechanical Engineering (Q2)'), (8763, 'Journal of Antibiotics', 218820, 0.56, 'Q3', 80, 125, 4013, 1261, 438, '3', '1953-2020', 'Drug Discovery (Q3); Pharmacology (Q3)'), (8764, 'Journal of LGBT Issues in Counseling', 15538338, 0.56, 'Q2', 24, 21, 776, 85, 55, '2', '2006-2020', 'Applied Psychology (Q2); Clinical Psychology (Q2); Gender Studies (Q2); Psychiatry and Mental Health (Q2)'), (8765, 'Journal of Psychotherapy Integration', 10530479, 0.56, 'Q2', 33, 55, 1895, 169, 121, '2', '1996-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (8766, 'Journal of Spatial Information Science', 1948660, 0.56, 'Q2', 19, 29, 1068, 63, 27, '2', '2010-2020', 'Computers in Earth Sciences (Q2); Geography, Planning and Development (Q2); Information Systems (Q2)'), (8767, 'Learning and Behavior', 15434508, 0.56, 'Q3', 56, 56, 2107, 203, 140, '2', '2003-2020', 'Behavioral Neuroscience (Q3); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)'), (8768, 'Liquid Crystals', 2678292, 0.56, 'Q2', 75, 293, 11910, 2309, 685, '3', '1986-2020', 'Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2)'), (8769, 'Propellants, Explosives, Pyrotechnics', 15214087, 0.56, 'Q2', 65, 198, 5840, 1060, 483, '5', '1976-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)'), (8770, 'Social Compass', 377686, 0.56, 'Q1', 30, 42, 1875, 103, 106, '3', '1953-1957, 1959-1960, 1962, 1965, 1967, 1969-1970, 1972-1974, 1985-2020', 'Anthropology (Q1); Religious Studies (Q1); Sociology and Political Science (Q1)'), (8771, 'Theory and Applications of Categories', 1201561, 0.56, 'Q2', 36, 51, 1276, 151, 122, '9', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (8772, 'Tourism Analysis', 10835423, 0.56, 'Q2', 36, 35, 1690, 255, 128, '2', '2001-2020', 'Tourism, Leisure and Hospitality Management (Q2)'), (8773, 'American Journal of Human Biology', 10420533, 0.559, 'Q1', 81, 187, 11005, 599, 346, '2', '1989-2020', 'Anthropology (Q1); Anatomy (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3)'), (8774, 'Annals of Surgical Treatment and Research', 22886575, 0.559, 'Q2', 25, 88, 2152, 509, 292, '13', '2014-2020', 'Surgery (Q2)'), (8775, 'British Poultry Science', 71668, 0.559, 'Q2', 91, 98, 4142, 583, 292, '3', '1960-2020', 'Animal Science and Zoology (Q2); Food Science (Q2); Medicine (miscellaneous) (Q3)'), (8776, 'Bulletin of Insectology', 17218861, 0.559, 'Q2', 34, 36, 1791, 203, 117, '7', '2002-2020', 'Insect Science (Q2)'), (8777, 'Canadian Journal of Physiology and Pharmacolo', 84212, 0.559, 'Q3', 84, 113, 4879, 1068, 490, '9', '1964-2020', 'Medicine (miscellaneous) (Q3); Pharmacology (Q3); Physiology (Q3); Physiology (medical) (Q3)'), (8778, 'Eurasian Soil Science', 10642293, 0.559, 'Q2', 30, 168, 7449, 765, 460, '10', '1992-2020', 'Earth-Surface Processes (Q2); Soil Science (Q2)'), (8779, 'International Clinical Psychopharmacology', 2681315, 0.559, 'Q2', 91, 56, 2232, 208, 136, '2', '1986-2020', 'Psychiatry and Mental Health (Q2); Pharmacology (medical) (Q3)'), (8780, 'International Journal of Energy and Environme', 20089163, 0.559, 'Q2', 30, 36, 1947, 292, 100, '2', '2010-2020', 'Energy (miscellaneous) (Q2); Environmental Engineering (Q2)'), (8781, 'Journal of Asian Ceramic Societies', 21870764, 0.559, 'Q2', 33, 128, 5187, 582, 174, '3', '2013-2020', 'Ceramics and Composites (Q2)'), (8782, 'Journal of Computational Mathematics', 2549409, 0.559, 'Q2', 38, 45, 1299, 124, 112, '1', '1996-2017, 2019-2020', 'Computational Mathematics (Q2)'), (8783, 'Journal of Offshore Mechanics and Arctic Engi', 1528896, 0.559, 'Q2', 46, 26, 894, 399, 275, '2', '1987-2021', 'Energy (miscellaneous) (Q2); Mechanical Engineering (Q2); Ocean Engineering (Q2)'), (8784, 'Monthly Review', 270520, 0.559, 'Q1', 32, 34, 1358, 95, 135, '2', '1977, 1980-1982, 1984, 1987, 1996-2020', 'Sociology and Political Science (Q1); Gender Studies (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)'), (8785, 'Seed Science Research', 14752735, 0.559, 'Q2', 64, 47, 2612, 207, 101, '3', '1991-2020', 'Plant Science (Q2)'), (8786, 'Yantu Gongcheng Xuebao/Chinese Journal of Geo', 10004548, 0.559, 'Q2', 49, 369, 7648, 1399, 1176, '1', '1998, 2001-2020', 'Geotechnical Engineering and Engineering Geology (Q2)'), (8787, 'ACM Transactions on Multimedia Computing, Com', 15516865, 0.558, 'Q1', 49, 91, 4847, 1130, 240, '2', '2005-2020', 'Hardware and Architecture (Q1); Computer Networks and Communications (Q2)'), (8788, 'Applicable Algebra in Engineering, Communicat', 14320622, 0.558, 'Q2', 35, 70, 1705, 120, 95, '5', '1990-2020', 'Algebra and Number Theory (Q2); Applied Mathematics (Q2)'), (8789, 'Applied Biochemistry and Biotechnology', 2732289, 0.558, 'Q2', 111, 322, 13752, 2406, 862, '2', '1981-2020', 'Biotechnology (Q2); Environmental Engineering (Q2); Applied Microbiology and Biotechnology (Q3); Biochemistry (Q3); Bioengineering (Q3); Medicine (miscellaneous) (Q3); Molecular Biology (Q4)'), (8790, 'Aslib Journal of Information Management', 20503806, 0.558, 'Q1', 42, 57, 3278, 329, 137, '3', '2014-2020', 'Library and Information Sciences (Q1); Information Systems (Q2)'), (8791, 'Central European Forestry Journal', 2454034, 0.558, 'Q2', 12, 19, 1026, 121, 67, '17', '2017-2020', 'Forestry (Q2)'), (8792, 'Cereal Chemistry', 19433638, 0.558, 'Q2', 100, 132, 4864, 679, 330, '2', '1974, 1978-1979, 1981, 1983-1984, 1986, 1989, 1993-2020', 'Food Science (Q2); Organic Chemistry (Q2)'), (8793, 'European Policy Analysis', 23806567, 0.558, 'Q2', 12, 29, 1298, 80, 43, '2', '2015-2020', 'Health Policy (Q2); Management, Monitoring, Policy and Law (Q2); Public Administration (Q2)'), (8794, 'Geobios', 166995, 0.558, 'Q2', 49, 38, 3183, 178, 118, '8', '1966, 1968-2020', 'Paleontology (Q2); Stratigraphy (Q2); Space and Planetary Science (Q3)'), (8795, 'Indian Journal of Gastroenterology', 2548860, 0.558, 'Q3', 41, 107, 2855, 357, 218, '4', '1982-2020', 'Gastroenterology (Q3)'), (8796, 'International Journal of Computational Method', 2198762, 0.558, 'Q1', 37, 159, 5618, 609, 301, '37', '2006-2020', 'Computer Science (miscellaneous) (Q1); Computational Mathematics (Q2)'), (8797, 'International Journal of Training and Develop', 14682419, 0.558, 'Q2', 26, 25, 1261, 134, 60, '3', '2008-2020', 'Education (Q2); Organizational Behavior and Human Resource Management (Q2)'), (8798, 'Journal of Biomedical Nanotechnology', 15507041, 0.558, 'Q2', 75, 80, 72, 1474, 538, '2', '2007-2020', 'Biomedical Engineering (Q2); Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q2); Pharmaceutical Science (Q2); Bioengineering (Q3); Medicine (miscellaneous) (Q3)'), (8799, 'Journal of Economic Studies', 1443585, 0.558, 'Q1', 43, 176, 9435, 525, 206, '3', '1974-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (8800, 'Journal of Eurasian Studies', 18793665, 0.558, 'Q1', 17, 8, 485, 93, 35, '13', '2010-2018, 2020', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q1)'), (8801, 'Journal of Nematology', 22300, 0.558, 'Q2', 58, 82, 2793, 300, 192, '2', '1981, 1987-1989, 1993-2020', 'Agronomy and Crop Science (Q2)'), (8802, 'Journal of Phase Equilibria and Diffusion', 18637345, 0.558, 'Q2', 51, 76, 2745, 392, 245, '2', '2004-2020', 'Condensed Matter Physics (Q2); Materials Chemistry (Q2); Metals and Alloys (Q2)'), (8803, 'Medecine et Maladies Infectieuses', 399077, 0.558, 'Q3', 37, 195, 4655, 407, 228, '8', '1971-1973, 1975-2020', 'Infectious Diseases (Q3)'), (8804, 'Mineralogical Magazine', 26461, 0.558, 'Q2', 68, 83, 4167, 395, 281, '3', '1969-1970, 1978-1989, 1993-2020', 'Geochemistry and Petrology (Q2)'), (8805, 'Minerva Anestesiologica', 18271596, 0.558, 'Q2', 59, 279, 5708, 897, 404, '7', '1953-2020', 'Anesthesiology and Pain Medicine (Q2)'), (8806, 'Mobilization', 1086671, 0.558, 'Q1', 41, 1, 69, 110, 73, '2', '2005-2019', 'Sociology and Political Science (Q1); Transportation (Q2)'), (8807, 'Sexual Addiction and Compulsivity', 10720162, 0.558, 'Q2', 41, 12, 458, 76, 61, '3', '1994-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q2)'), (8808, '3 Biotech', 2190572, 0.557, 'Q2', 37, 548, 28419, 3677, 1332, '19', '2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biotechnology (Q2); Environmental Science (miscellaneous) (Q2)'), (8809, 'ASCE-ASME Journal of Risk and Uncertainty in ', 23767642, 0.557, 'Q2', 17, 63, 2909, 317, 132, '2', '2015-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)'), (8810, 'Beyond Behavior', 21635323, 0.557, 'Q2', 9, 19, 696, 57, 57, '2', '2012-2020', 'Clinical Psychology (Q2); Education (Q2); Developmental and Educational Psychology (Q3)'), (8811, 'Gerontology and Geriatrics Education', 2701960, 0.557, 'Q2', 24, 90, 2398, 225, 127, '2', '1980-2020', 'Education (Q2); Geriatrics and Gerontology (Q3)'), (8812, 'Gynecologic Oncology Reports', 23525789, 0.557, 'Q3', 15, 149, 2183, 462, 314, '16', '2014-2020', 'Obstetrics and Gynecology (Q3); Oncology (Q3)'), (8813, 'International Journal of Innovation Studies', 20962487, 0.557, 'Q2', 8, 10, 714, 82, 19, '1', '2018, 2020', 'Information Systems and Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (8814, 'Journal of Biopharmaceutical Statistics', 10543406, 0.557, 'Q3', 50, 93, 2448, 223, 246, '2', '1991-2020', 'Pharmacology (Q3); Pharmacology (medical) (Q3); Statistics and Probability (Q3)'), (8815, 'Journal of General Plant Pathology', 13452630, 0.557, 'Q2', 34, 78, 1991, 252, 182, '6', '2001, 2004-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2)'), (8816, 'Journal of Operational Oceanography', 17558778, 0.557, 'Q2', 27, 23, 1745, 130, 53, '3', '2008-2020', 'Oceanography (Q2)'), (8817, 'Journal of Ophthalmic and Vision Research', 2008322, 0.557, 'Q3', 27, 90, 2230, 378, 222, '15', '2006-2020', 'Ophthalmology (Q3)'), (8818, 'Pain Management Nursing', 15249042, 0.557, 'Q1', 48, 117, 4557, 399, 197, '3', '2000-2020', 'Advanced and Specialized Nursing (Q1)'), (8819, 'Science China Information Sciences', 1674733, 0.557, 'Q1', 56, 342, 9822, 2625, 656, '1', '2010-2021', 'Computer Science (miscellaneous) (Q1)'), (8820, 'Water, Air, and Soil Pollution', 496979, 0.557, 'Q2', 111, 575, 28928, 3042, 1161, '16', '1971-2020', 'Environmental Engineering (Q2); Pollution (Q2); Water Science and Technology (Q2); Ecological Modeling (Q3); Environmental Chemistry (Q3)'), (8821, 'Advances in Engineering Education', 19411766, 0.556, 'Q1', 21, 22, 596, 76, 56, '2', '2009-2020', 'Engineering (miscellaneous) (Q1); Education (Q2)'), (8822, 'Affilia - Journal of Women and Social Work', 15523020, 0.556, 'Q2', 36, 50, 2739, 190, 100, '2', '1986-2020', 'Gender Studies (Q2); Social Sciences (miscellaneous) (Q2); Social Work (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (8823, 'Bioinformatics and Biology Insights', 11779322, 0.556, 'Q2', 23, 19, 1306, 101, 44, '41', '2009-2020', 'Applied Mathematics (Q2); Computational Mathematics (Q2); Computer Science Applications (Q2); Biochemistry (Q3); Molecular Biology (Q4)'), (8824, 'Biopolymers', 63525, 0.556, 'Q2', 125, 39, 2342, 358, 155, '2', '1963-2020', 'Organic Chemistry (Q2); Biochemistry (Q3); Biomaterials (Q3); Biophysics (Q3); Medicine (miscellaneous) (Q3)'), (8825, 'Canadian Journal of Science, Mathematics and ', 19424051, 0.556, 'Q2', 23, 61, 2448, 120, 75, '2', '2001-2020', 'Education (Q2)'), (8826, 'Central-European Journal of Immunology', 16444124, 0.556, 'Q3', 22, 36, 1413, 393, 193, '17', '1996-2020', 'Immunology and Allergy (Q3); Immunology (Q4)'), (8827, 'Climate Change Economics', 20100086, 0.556, 'Q2', 26, 31, 1334, 89, 66, '37', '2010-2020', 'Economics and Econometrics (Q2); Management, Monitoring, Policy and Law (Q2); Global and Planetary Change (Q3)'), (8828, 'Computer Standards and Interfaces', 9205489, 0.556, 'Q1', 63, 36, 2302, 1013, 243, '16', '1985-2020', 'Law (Q1); Hardware and Architecture (Q2); Software (Q2)'), (8829, 'Diqiu Kexue - Zhongguo Dizhi Daxue Xuebao/Ear', 10002383, 0.556, 'Q2', 38, 325, 15238, 1451, 883, '1', '1981, 2001-2020', 'Building and Construction (Q2); Computer Science Applications (Q2); Earth and Planetary Sciences (miscellaneous) (Q2)'), (8830, 'European archives of paediatric dentistry : o', 19969805, 0.556, 'Q2', 38, 108, 3475, 386, 167, '5', '2006-2020', 'Dentistry (miscellaneous) (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (8831, 'IEEE Transactions on Computer-Aided Design of', 2780070, 0.556, 'Q2', 119, 536, 15952, 2324, 622, '2', '1982-2020', 'Computer Graphics and Computer-Aided Design (Q2); Electrical and Electronic Engineering (Q2); Software (Q2)'), (8832, 'International Journal of Forensic Mental Heal', 19329903, 0.556, 'Q2', 36, 44, 2685, 144, 87, '3', '2002-2020', 'Pathology and Forensic Medicine (Q2); Psychiatric Mental Health (Q2); Psychiatry and Mental Health (Q3)'), (8833, 'International Journal of Medical Robotics and', 1478596, 0.556, 'Q2', 53, 122, 3912, 817, 279, '3', '2004-2020', 'Computer Science Applications (Q2); Surgery (Q2); Biophysics (Q3)'), (8834, 'Journal of Applied Research on Medicinal and ', 22147861, 0.556, 'Q2', 20, 41, 2008, 462, 138, '5', '2014-2020', 'Plant Science (Q2); Drug Discovery (Q3)'), (8835, 'Journal of Plastic Surgery and Hand Surgery', 20006764, 0.556, 'Q2', 45, 83, 2411, 296, 189, '3', '2010-2020', 'Surgery (Q2)'), (8836, 'Journal of Robotic Surgery', 18632483, 0.556, 'Q2', 25, 192, 4503, 625, 294, '3', '2007-2020', 'Health Informatics (Q2); Surgery (Q2)'), (8837, 'Journal of Theoretical and Applied Electronic', 7181876, 0.556, 'Q2', 30, 35, 2474, 191, 42, '45', '2007-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Computer Science Applications (Q2)'), (8838, 'Journal of Transcultural Nursing', 10436596, 0.556, 'Q2', 49, 127, 4197, 370, 199, '2', '1989-2020', 'Nursing (miscellaneous) (Q2)'), (8839, 'Mining Technology: Transactions of the Instit', 25726668, 0.556, 'Q2', 26, 20, 562, 100, 64, '3', '2018-2020', 'Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (8840, 'Public Health Ethics', 17549973, 0.556, 'Q1', 22, 33, 1221, 118, 73, '3', '2009-2020', 'Issues, Ethics and Legal Aspects (Q1); Health Policy (Q2)'), (8841, 'Review of International Business and Strategy', 20596014, 0.556, 'Q2', 29, 34, 2948, 221, 68, '3', '2016-2020', 'Business and International Management (Q2); Strategy and Management (Q2)'), (8842, 'Revista INVI', 7181299, 0.556, 'Q1', 12, 25, 898, 54, 62, '45', '2008-2020', 'Architecture (Q1); Urban Studies (Q2)'), (8843, 'Soccer and Society', 17439590, 0.556, 'Q1', 26, 91, 3615, 250, 208, '3', '2009-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q1); Social Psychology (Q2)'), (8844, 'Symmetry, Integrability and Geometry: Methods', 18150659, 0.556, 'Q2', 42, 141, 4323, 555, 337, '44', '2005-2020', 'Analysis (Q2); Mathematical Physics (Q2); Geometry and Topology (Q3)'), (8845, 'Theoretical Issues in Ergonomics Science', 1464536, 0.556, 'Q2', 50, 65, 4129, 253, 113, '3', '2000-2020', 'Human Factors and Ergonomics (Q2)'), (8846, 'Biology Methods and Protocols', 23968923, 0.555, 'Q2', 5, 5, 162, 58, 47, '3', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (8847, 'Building Acoustics', 1351010, 0.555, 'Q2', 23, 35, 1402, 135, 55, '3', '1997-2020', 'Acoustics and Ultrasonics (Q2); Building and Construction (Q2); Mechanical Engineering (Q2)'), (8848, 'Clinical and Experimental Hypertension', 15256006, 0.555, 'Q3', 49, 110, 3967, 567, 341, '2', '1978-2020', 'Internal Medicine (Q3); Medicine (miscellaneous) (Q3); Physiology (Q3)'), (8849, 'Current Pharmaceutical Biotechnology', 13892010, 0.555, 'Q2', 85, 163, 9603, 899, 355, '52', '2000-2020', 'Biotechnology (Q2); Pharmaceutical Science (Q2)'), (8850, 'Death Studies', 10917683, 0.555, 'Q2', 68, 225, 9112, 546, 279, '2', '1985-2020', 'Arts and Humanities (miscellaneous) (Q2); Clinical Psychology (Q2); Developmental and Educational Psychology (Q3)'), (8851, 'Educational Forum', 19388098, 0.555, 'Q2', 27, 43, 1779, 93, 88, '3', '1936-2020', 'Education (Q2)'), (8852, 'Ethics and International Affairs', 8926794, 0.555, 'Q1', 46, 39, 1046, 131, 83, '3', '1987-2020', 'Philosophy (Q1); Political Science and International Relations (Q1)'), (8853, 'Evaluation and Program Planning', 1497189, 0.555, 'Q2', 62, 107, 5140, 753, 350, '3', '1978-2020', 'Business and International Management (Q2); Geography, Planning and Development (Q2); Public Health, Environmental and Occupational Health (Q2); Social Psychology (Q2); Strategy and Management (Q2)'), (8854, 'Glass Structures and Engineering', 23635150, 0.555, 'Q1', 11, 32, 926, 108, 62, '19', '2016-2020', 'Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2)'), (8855, 'IET Microwaves, Antennas and Propagation', 17518725, 0.555, 'Q2', 69, 292, 8021, 2628, 994, '3', '2007-2020', 'Electrical and Electronic Engineering (Q2)'), (8856, 'International Heart Journal', 13492365, 0.555, 'Q2', 45, 197, 4998, 972, 585, '6', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q3)'), (8857, 'International Journal of Fertility and Steril', 2008076, 0.555, 'Q2', 26, 60, 1837, 350, 154, '15', '2008-2020', 'Reproductive Medicine (Q2); Obstetrics and Gynecology (Q3)'), (8858, 'JMM International Journal on Media Management', 14241250, 0.555, 'Q2', 19, 8, 326, 73, 37, '3', '2009-2020', 'Communication (Q2); Strategy and Management (Q2)'), (8859, 'Journal of Complex Networks', 20511310, 0.555, 'Q2', 23, 63, 3287, 446, 133, '2', '2013-2020', 'Applied Mathematics (Q2); Computational Mathematics (Q2); Computer Networks and Communications (Q2); Control and Optimization (Q2); Management Science and Operations Research (Q2)'), (8860, 'Journal of Experimental Pharmacology', 11791454, 0.555, 'Q3', 12, 55, 3286, 113, 34, '41', '2010, 2012-2020', 'Molecular Medicine (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (8861, 'Korean Journal of Parasitology', 17380006, 0.555, 'Q3', 42, 89, 2767, 422, 278, '13', '1977-2020', 'Infectious Diseases (Q3); Parasitology (Q3)'), (8862, 'Latin American Politics and Society', 15482456, 0.555, 'Q1', 42, 27, 1689, 99, 72, '2', '2001-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q1); Geography, Planning and Development (Q2)'), (8863, 'Reviews in Cardiovascular Medicine', 15306550, 0.555, 'Q2', 39, 67, 4045, 148, 78, '2', '2000-2020', 'Cardiology and Cardiovascular Medicine (Q2); Medicine (miscellaneous) (Q3)'), (8864, 'Asia Pacific Education Review', 15981037, 0.554, 'Q2', 32, 44, 2912, 247, 134, '16', '2005-2020', 'Education (Q2)'), (8865, 'Biomimetics', 23137673, 0.554, 'Q2', 12, 66, 5587, 303, 108, '19', '2016-2020', 'Biotechnology (Q2); Biochemistry (Q3); Bioengineering (Q3); Biomaterials (Q3); Biomedical Engineering (Q3); Molecular Medicine (Q3)'), (8866, 'Catalysis Surveys from Asia', 15728803, 0.554, 'Q2', 53, 26, 1545, 183, 63, '2', '2002-2020', 'Chemistry (miscellaneous) (Q2); Catalysis (Q3)'), (8867, 'Chemistry Central Journal', 1752153, 0.554, 'Q2', 57, 0, 0, 1069, 277, '3', '2007-2018', 'Chemistry (miscellaneous) (Q2)'), (8868, 'Combustion Science and Technology', 1563521, 0.554, 'Q2', 76, 271, 10721, 842, 437, '3', '1969-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (8869, 'Electronic Library', 2640473, 0.554, 'Q1', 39, 62, 2988, 409, 211, '3', '1983-2020', 'Library and Information Sciences (Q1); Computer Science Applications (Q2)'), (8870, 'Genomics and Informatics', 22340742, 0.554, 'Q2', 3, 46, 1009, 65, 40, '13', '2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3); Health Informatics (Q3)'), (8871, 'Heritage Science', 20507445, 0.554, 'Q1', 20, 121, 5580, 535, 221, '2', '2013-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Conservation (Q1)'), (8872, 'Industrial Health', 18808026, 0.554, 'Q2', 59, 61, 2094, 425, 181, '6', '1963-2020', 'Public Health, Environmental and Occupational Health (Q2); Health, Toxicology and Mutagenesis (Q3)'), (8873, 'Island Arc', 10384871, 0.554, 'Q2', 58, 42, 2829, 184, 124, '3', '1992-2020', 'Geology (Q2)'), (8874, 'Journal of Nursing Care Quality', 10573631, 0.554, 'Q2', 47, 75, 1650, 272, 194, '2', '1986-1987, 1989-2020', 'Nursing (miscellaneous) (Q2)'), (8875, 'Journal of Research in Childhood Education', 2568543, 0.554, 'Q2', 31, 63, 3880, 187, 112, '3', '1986-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (8876, 'Mathematical Structures in Computer Science', 9601295, 0.554, 'Q2', 45, 37, 1166, 278, 167, '3', '1991-2020', 'Computer Science Applications (Q2); Mathematics (miscellaneous) (Q2)'), (8877, 'Nuclear Medicine and Biology', 9698051, 0.554, 'Q2', 88, 65, 2637, 491, 217, '2', '1986-2020', 'Radiology, Nuclear Medicine and Imaging (Q2); Molecular Medicine (Q3); Cancer Research (Q4)'), (8878, 'Porta Linguarum', 16977467, 0.554, 'Q1', 13, 29, 1290, 80, 75, '12', '2008-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (8879, 'Qualitative Social Work', 14733250, 0.554, 'Q2', 42, 116, 4787, 291, 147, '2', '2002-2020', 'Health (social science) (Q2); Social Sciences (miscellaneous) (Q2); Social Work (Q2)'), (8880, 'Simulation Modelling Practice and Theory', 1569190, 0.554, 'Q2', 69, 132, 5805, 1227, 312, '16', '2002-2021', 'Hardware and Architecture (Q2); Modeling and Simulation (Q2); Software (Q2)'), (8881, 'Wounds', 19432704, 0.554, 'Q1', 40, 85, 202, 400, 269, '2', '1996-2020', 'Medical and Surgical Nursing (Q1); Surgery (Q2)'), (8882, 'Brodogradnja', 18455859, 0.553, 'Q2', 14, 29, 786, 143, 98, '58', '1985-1988, 1994, 1996-2020', 'Mechanical Engineering (Q2); Ocean Engineering (Q2)'), (8883, 'Clinics in Plastic Surgery', 941298, 0.553, 'Q2', 63, 68, 2584, 398, 204, '3', '1974-2020', 'Surgery (Q2)'), (8884, 'Community, Work and Family', 14693615, 0.553, 'Q2', 39, 62, 3377, 184, 110, '3', '2003-2020', 'Development (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (8885, 'Current Applied Physics', 15671739, 0.553, 'Q2', 86, 226, 8675, 1703, 715, '16', '2001-2020', 'Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (8886, 'Digital Applications in Archaeology and Cultu', 22120548, 0.553, 'Q1', 14, 29, 1155, 197, 74, '3', '2014-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Computer Science Applications (Q2)'), (8887, 'Ethnography and Education', 17457823, 0.553, 'Q1', 18, 41, 1914, 117, 86, '3', '2010-2020', 'Cultural Studies (Q1); Education (Q2); Gender Studies (Q2)'), (8888, 'International Journal of Early Years Educatio', 9669760, 0.553, 'Q2', 32, 77, 3381, 153, 85, '3', '1993-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (8889, 'Journal of Aesthetics and Art Criticism', 15406245, 0.553, 'Q1', 32, 50, 1282, 71, 91, '2', '1996-2020', 'Music (Q1); Philosophy (Q1); Visual Arts and Performing Arts (Q1)'), (8890, 'Lichenologist', 242829, 0.553, 'Q2', 48, 36, 1931, 161, 128, '3', '1958-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (8891, 'Mathematica Scandinavica', 255521, 0.553, 'Q2', 30, 10, 212, 111, 107, '25', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (8892, 'Microelectronic Engineering', 1679317, 0.553, 'Q2', 99, 164, 5654, 1771, 743, '16', '1983-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Nanoscience and Nanotechnolog'), (8893, 'Oncology Research and Treatment', 22965270, 0.553, 'Q3', 48, 92, 2209, 651, 371, '19', '1978-1997, 2013-2020', 'Hematology (Q3); Oncology (Q3); Cancer Research (Q4)'), (8894, 'Open Archaeology', 23006560, 0.553, 'Q1', 12, 25, 1841, 95, 78, '17', '2015-2020', 'Archeology (arts and humanities) (Q1); Conservation (Q1); Education (Q2)'), (8895, 'Photonics and Nanostructures - Fundamentals a', 15694429, 0.553, 'Q2', 40, 64, 2400, 475, 174, '16', '2003-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Hardware and Architecture (Q2'), (8896, 'Primary health care research &amp; developmen', 14634236, 0.553, 'Q1', 27, 64, 2579, 388, 251, '3', '2000-2020', 'Care Planning (Q1); Public Health, Environmental and Occupational Health (Q2)'), (8897, 'Thunderbird International Business Review', 10964762, 0.553, 'Q1', 37, 66, 4297, 443, 181, '2', '2005-2020', 'Political Science and International Relations (Q1); Business and International Management (Q2); Geography, Planning and Development (Q2)'), (8898, 'Aquatic Living Resources', 9907440, 0.552, 'Q2', 65, 25, 1397, 149, 96, '8', '1988-2020', 'Aquatic Science (Q2)'), (8899, 'Coastal Management', 8920753, 0.552, 'Q2', 49, 35, 2060, 183, 99, '3', '1987-2020', 'Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3)'), (8900, 'Evidence-based Complementary and Alternative ', 17414288, 0.552, 'Q1', 90, 1164, 54414, 5560, 2160, '2', '2005-2020', 'Complementary and Alternative Medicine (Q1)'), (8901, 'Forum: A Journal of Applied Research in Conte', 15408884, 0.552, 'Q2', 19, 20, 1039, 67, 81, '5', '2000, 2004-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (8902, 'Innovation in Language Learning and Teaching', 17501237, 0.552, 'Q1', 17, 55, 2494, 154, 75, '3', '2009-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (8903, 'International Journal of Breast Cancer', 20903170, 0.552, 'Q3', 15, 10, 346, 87, 41, '32', '2014-2020', 'Oncology (Q3); Pharmacology (medical) (Q3); Cancer Research (Q4)'), (8904, 'Journal of Astronomical Telescopes, Instrumen', 23294221, 0.552, 'Q2', 28, 100, 3537, 669, 240, '2', '2015-2020', 'Control and Systems Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Instrumentation (Q2); Mechanical Engineering (Q2); Astronomy and Astrophysics (Q3); Space and Planetary Science ('), (8905, 'Journal of Geography in Higher Education', 3098265, 0.552, 'Q2', 48, 55, 2975, 245, 112, '3', '1977-2020', 'Education (Q2); Geography, Planning and Development (Q2)'), (8906, 'Journal of Knot Theory and its Ramifications', 2182165, 0.552, 'Q3', 39, 138, 2484, 325, 403, '37', '1996-2020', 'Algebra and Number Theory (Q3)'), (8907, 'Library Management', 1435124, 0.552, 'Q1', 33, 63, 2290, 154, 139, '3', '1979-2020', 'Library and Information Sciences (Q1)'), (8908, 'Methodist DeBakey cardiovascular journal', 19476108, 0.552, 'Q3', 23, 75, 0, 323, 186, '2', '2009-2020', 'Medicine (miscellaneous) (Q3)'), (8909, 'Modeling Earth Systems and Environment', 23636203, 0.552, 'Q2', 25, 344, 14587, 1070, 379, '19', '2015-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Statistics, Probability and Uncertainty (Q2); Computers in Earth Sciences (Q3)'), (8910, 'Optimization and Engineering', 13894420, 0.552, 'Q2', 41, 109, 4624, 335, 112, '16', '2005-2020', 'Aerospace Engineering (Q2); Civil and Structural Engineering (Q2); Control and Optimization (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Software (Q2)'), (8911, 'Western Journal of Nursing Research', 15528456, 0.552, 'Q2', 62, 200, 7093, 531, 290, '2', '1979-2020', 'Nursing (miscellaneous) (Q2)'), (8912, 'Acta Cardiologica Sinica', 10116842, 0.551, 'Q2', 17, 90, 2519, 432, 199, '22', '1988-2020', 'Cardiology and Cardiovascular Medicine (Q2)'), (8913, 'Australian Accounting Review', 10356908, 0.551, 'Q2', 36, 31, 1236, 291, 119, '3', '1991-2020', 'Accounting (Q2)'), (8914, 'BioPsychoSocial Medicine', 17510759, 0.551, 'Q2', 30, 28, 1049, 172, 81, '3', '2007-2020', 'Psychology (miscellaneous) (Q2); Social Psychology (Q2); Psychiatry and Mental Health (Q3); Biological Psychiatry (Q4)'), (8915, 'Differential Geometry and its Applications', 18726984, 0.551, 'Q2', 38, 73, 1455, 259, 258, '16', '1991-2020', 'Analysis (Q2); Computational Theory and Mathematics (Q2); Geometry and Topology (Q3)'), (8916, 'Heat and Mass Transfer', 9477411, 0.551, 'Q2', 68, 244, 8647, 2025, 892, '5', '1995-2020', 'Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2)'), (8917, 'International Journal of Engineering Educatio', 949149, 0.551, 'Q1', 50, 160, 6725, 667, 480, '42', '1996-2020', 'Engineering (miscellaneous) (Q1); Education (Q2)'), (8918, 'International Journal of Nephrology', 20902158, 0.551, 'Q2', 29, 38, 1511, 122, 76, '2', '2012-2020', 'Nephrology (Q2)'), (8919, 'Journal of Insect Science', 15362442, 0.551, 'Q2', 49, 108, 5849, 606, 367, '2', '2001-2020', 'Insect Science (Q2); Medicine (miscellaneous) (Q3)'), (8920, 'Journal of Mountain Science', 19930321, 0.551, 'Q2', 34, 213, 12012, 1360, 609, '1', '2007-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2); Geology (Q2); Nature and Landscape Conservation (Q2); Global and Planetary Change (Q3)'), (8921, 'Journal of the Intensive Care Society', 17511437, 0.551, 'Q2', 14, 131, 3107, 315, 168, '3', '2010-2020', 'Critical Care and Intensive Care Medicine (Q2); Critical Care Nursing (Q2)'), (8922, 'Complementary Therapies in Clinical Practice', 17443881, 0.55, 'Q2', 51, 162, 7061, 903, 364, '3', '2005-2020', 'Complementary and Alternative Medicine (Q2)'), (8923, 'Contributions to Nephrology', 3025144, 0.55, 'Q3', 51, 0, 0, 295, 164, '19', '1975-2019', 'Nephrology (Q3)'), (8924, 'Current Problems in Pediatric and Adolescent ', 15383199, 0.55, 'Q2', 44, 59, 1897, 247, 105, '2', '1996-2020', 'Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3)'), (8925, 'Electronic Materials Letters', 17388090, 0.55, 'Q2', 33, 75, 2432, 554, 248, '13', '2008-2020', 'Electronic, Optical and Magnetic Materials (Q2)'), (8926, 'Fat Studies', 2160486, 0.55, 'Q1', 12, 37, 1039, 73, 63, '3', '2012-2020', 'Anthropology (Q1); Cultural Studies (Q1); Gender Studies (Q2); Health (social science) (Q2); Social Psychology (Q2); Nutrition and Dietetics (Q3)'), (8927, 'International Spectator', 17519721, 0.55, 'Q1', 25, 36, 2081, 150, 106, '3', '1983-2020', 'Political Science and International Relations (Q1)'), (8928, 'Irish Veterinary Journal', 3680762, 0.55, 'Q2', 29, 25, 1061, 141, 72, '3', '1973-1979, 1996-2020', 'Veterinary (miscellaneous) (Q2)'), (8929, 'Journal of Alternative and Complementary Medi', 15577708, 0.55, 'Q1', 90, 168, 5656, 978, 434, '2', '1995-2020', 'Complementary and Alternative Medicine (Q1)'), (8930, 'Journal of Applied Analysis and Computation', 2156907, 0.55, 'Q2', 21, 168, 5222, 580, 355, '2', '2015-2020', 'Mathematics (miscellaneous) (Q2)'), (8931, 'Journal of Environmental Science and Health, ', 26896591, 0.55, 'Q3', 51, 20, 1768, 136, 46, '2', '2020', 'Health, Toxicology and Mutagenesis (Q3); Cancer Research (Q4)'), (8932, 'Journal of primary care &amp; community healt', 21501327, 0.55, 'Q1', 19, 215, 6256, 240, 128, '2', '2010-2020', 'Community and Home Care (Q1); Public Health, Environmental and Occupational Health (Q2)'), (8933, 'Journal of Solar Energy Engineering, Transact', 15288986, 0.55, 'Q2', 83, 27, 1028, 676, 301, '2', '1980-2021', 'Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (8934, 'Juncture', 1744540, 0.55, 'Q1', 8, 0, 0, 23, 10, '3', '2013-2017', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q2)'), (8935, 'Life Sciences, Society and Policy', 21957819, 0.55, 'Q1', 15, 13, 626, 156, 48, '19', '2013-2020', 'Philosophy (Q1); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q2)'), (8936, 'Marine Genomics', 18747787, 0.55, 'Q2', 32, 63, 2885, 344, 186, '16', '2008-2020', 'Aquatic Science (Q2); Genetics (Q3)'), (8937, 'Nursing Open', 20541058, 0.55, 'Q2', 12, 264, 10942, 465, 245, '2', '2014-2020', 'Nursing (miscellaneous) (Q2)'), (8938, 'Paediatrics and Child Health', 12057088, 0.55, 'Q2', 43, 127, 2479, 393, 302, '9', '2000-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (8939, 'Planning Practice and Research', 13600583, 0.55, 'Q2', 42, 48, 2617, 149, 99, '3', '1986-2020', 'Geography, Planning and Development (Q2)'), (8940, 'Scandinavian Cardiovascular Journal', 16512006, 0.55, 'Q3', 42, 74, 2009, 232, 162, '3', '1967-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (8941, 'Veterinary World', 22310916, 0.55, 'Q2', 29, 377, 14328, 1773, 803, '4', '2008-2020', 'Veterinary (miscellaneous) (Q2)'), (8942, 'African Journal of AIDS Research', 17279445, 0.549, 'Q2', 28, 39, 1583, 143, 124, '3', '2003-2020', 'Public Health, Environmental and Occupational Health (Q2); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Virology (Q4)'), (8943, 'China Finance Review International', 20441398, 0.549, 'Q2', 9, 20, 1126, 140, 89, '3', '2011-2020', 'Finance (Q2)'), (8944, 'Educational Action Research', 17475074, 0.549, 'Q2', 36, 107, 4734, 267, 140, '3', '1993-2020', 'Education (Q2)'), (8945, 'Flora: Morphology, Distribution, Functional E', 3672530, 0.549, 'Q2', 56, 133, 7749, 900, 448, '5', '1975-1976, 1980-1988, 1990-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (8946, 'Genetics and Molecular Biology', 14154757, 0.549, 'Q3', 55, 165, 8693, 577, 269, '14', '1998-2020', 'Genetics (Q3); Molecular Biology (Q4)'), (8947, 'Genomics Data', 22135960, 0.549, 'Q2', 20, 0, 0, 196, 102, '2', '2013-2017', 'Biotechnology (Q2); Biochemistry (Q3); Genetics (Q3); Molecular Medicine (Q3)'), (8948, 'Journal of Civil Structural Health Monitoring', 21905479, 0.549, 'Q2', 26, 70, 2813, 383, 154, '2', '2011-2020', 'Civil and Structural Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)'), (8949, 'Journal of Intellectual Property, Information', 21903387, 0.549, 'Q1', 3, 23, 1595, 24, 16, '5', '2019-2020', 'Law (Q1)'), (8950, 'Journal of Laser Applications', 1042346, 0.549, 'Q2', 52, 93, 2788, 692, 368, '2', '1988-2020', 'Atomic and Molecular Physics, and Optics (Q2); Electronic, Optical and Magnetic Materials (Q2); Instrumentation (Q2); Biomedical Engineering (Q3)'), (8951, 'Journal of Political Power', 21583803, 0.549, 'Q2', 22, 27, 1325, 90, 61, '3', '2008-2020', 'Sociology and Political Science (Q2)'), (8952, 'Proceedings of the Yorkshire Geological Socie', 20414811, 0.549, 'Q2', 22, 9, 833, 34, 37, '3', '1839, 1842, 1849, 1859, 1869, 1871, 1878-1897, 1899-1911, 1914-1916, 1918, 1922-1923, 1925-1945, 194', 'Geology (Q2)'), (8953, 'Roeper Review', 1940865, 0.549, 'Q2', 39, 31, 1040, 73, 67, '3', '1978-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (8954, 'Scientia Agricola', 1039016, 0.549, 'Q2', 52, 133, 4970, 420, 184, '14', '1997-2021', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2)'), (8955, 'Aquaculture International', 1573143, 0.548, 'Q2', 54, 164, 8814, 884, 400, '16', '1993-2020', 'Agronomy and Crop Science (Q2); Aquatic Science (Q2)'), (8956, 'Azerbaijan Journal of Mathematics', 22219501, 0.548, 'Q2', 11, 26, 540, 61, 69, '92', '2011-2020', 'Mathematics (miscellaneous) (Q2)'), (8957, 'Biotechnology Letters', 15736776, 0.548, 'Q2', 107, 241, 8646, 1239, 514, '16', '1979-2020', 'Biotechnology (Q2); Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Medicine (miscellaneous) (Q3)'), (8958, 'Eurasip Journal on Information Security', 2510523, 0.548, 'Q2', 25, 15, 576, 188, 46, '3', '2007-2020', 'Computer Science Applications (Q2); Signal Processing (Q2)'), (8959, 'Geografia Fisica e Dinamicca Quaternaria', 3919838, 0.548, 'Q2', 26, 2, 70, 72, 33, '7', '1978-2019', 'Earth-Surface Processes (Q2)'), (8960, 'Historical Archaeology', 4409213, 0.548, 'Q1', 23, 40, 4008, 90, 124, '2', '1977, 1981, 1984, 1987, 1999-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)'), (8961, 'IEEE Transactions on Network Science and Engi', 23274697, 0.548, 'Q2', 24, 301, 10613, 408, 100, '2', '2014-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2); Control and Systems Engineering (Q2)'), (8962, 'Indian Heart Journal', 194832, 0.548, 'Q3', 37, 134, 3087, 800, 448, '4', '1961, 1964-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (8963, 'Journal of Agricultural and Resource Economic', 10685502, 0.548, 'Q2', 48, 23, 942, 127, 85, '2', '1996-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Economics and Econometrics (Q2)'), (8964, 'Journal of Legal Pluralism and Unofficial Law', 7329113, 0.548, 'Q1', 20, 16, 940, 64, 51, '3', '1969-1990, 1992-2013, 2015-2020', 'Law (Q1)'), (8965, 'Journal of Oncology Pharmacy Practice', 1477092, 0.548, 'Q3', 34, 437, 9991, 760, 468, '3', '1995-2020', 'Medicine (miscellaneous) (Q3); Oncology (Q3); Pharmacology (medical) (Q3)'), (8966, 'Journal of Politeness Research', 16125681, 0.548, 'Q1', 34, 13, 777, 60, 36, '5', '2005-2020', 'Cultural Studies (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2); Social Psychology (Q2)'), (8967, 'Journal of Religion and Health', 15736571, 0.548, 'Q1', 40, 265, 11649, 905, 538, '2', '1961-2020', 'Religious Studies (Q1); Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (8968, 'Journal of Small Business Strategy', 10818510, 0.548, 'Q2', 13, 22, 1823, 127, 51, '2', '2013-2020', 'Strategy and Management (Q2)'), (8969, 'Journal of Social Work', 14680173, 0.548, 'Q2', 36, 108, 5864, 215, 113, '3', '2001-2020', 'Health (social science) (Q2); Social Sciences (miscellaneous) (Q2); Social Work (Q2)'), (8970, 'Journal of Sustainable Metallurgy', 21993823, 0.548, 'Q2', 22, 64, 2518, 499, 170, '19', '2015-2020', 'Environmental Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)'), (8971, 'Journal of Thermophysics and Heat Transfer', 15336808, 0.548, 'Q2', 67, 85, 2870, 589, 305, '2', '1987-2020', 'Aerospace Engineering (Q2); Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2); Space and Planetary Science (Q3)'), (8972, 'Journal of Water Reuse and Desalination', 22201319, 0.548, 'Q2', 16, 41, 1481, 418, 141, '3', '2011-2020', 'Water Science and Technology (Q2); Filtration and Separation (Q3)'), (8973, 'Medical Dosimetry', 18734022, 0.548, 'Q2', 40, 92, 2202, 304, 176, '2', '1988-2020', 'Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q2); Oncology (Q3)'), (8974, 'Minimally Invasive Surgery', 20901453, 0.548, 'Q2', 19, 10, 262, 55, 29, '2', '2010-2020', 'Surgery (Q2)'), (8975, 'PharmaNutrition', 22134344, 0.548, 'Q2', 20, 58, 4254, 236, 68, '16', '2013-2020', 'Food Science (Q2); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (8976, 'Advances in Neonatal Care', 15360911, 0.547, 'Q2', 41, 90, 1969, 382, 228, '2', '2002-2020', 'Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3)'), (8977, 'AEU - International Journal of Electronics an', 16180399, 0.547, 'Q2', 60, 396, 12947, 4641, 1232, '5', '2001-2020', 'Electrical and Electronic Engineering (Q2)'), (8978, 'Canadian Mineralogist', 84476, 0.547, 'Q2', 78, 42, 1843, 230, 192, '9', '1980-2020', 'Geochemistry and Petrology (Q2)'), (8979, 'Cardiology', 86312, 0.547, 'Q3', 63, 117, 3043, 415, 267, '19', '1937-2020', 'Cardiology and Cardiovascular Medicine (Q3); Pharmacology (medical) (Q3)'), (8980, 'CIN - Computers Informatics Nursing', 15382931, 0.547, 'Q2', 45, 113, 1970, 453, 292, '2', '2002-2020', 'Nursing (miscellaneous) (Q2); Health Informatics (Q3); Medicine (miscellaneous) (Q3)'), (8981, 'Community Development Journal', 103802, 0.547, 'Q2', 43, 42, 1459, 112, 104, '3', '1966-2020', 'Development (Q2)'), (8982, 'Computing in Science and Engineering', 15219615, 0.547, 'Q1', 67, 70, 966, 494, 196, '2', '1999-2020', 'Computer Science (miscellaneous) (Q1); Engineering (miscellaneous) (Q1)'), (8983, 'Dialectical Anthropology', 3044092, 0.547, 'Q1', 18, 46, 1199, 80, 88, '16', '1975, 1977-2001, 2003-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (8984, 'Engineering in Life Sciences', 16182863, 0.547, 'Q2', 57, 58, 2090, 805, 313, '5', '2004-2020', 'Biotechnology (Q2); Environmental Engineering (Q2); Bioengineering (Q3)'), (8985, 'Experimental Animals', 13411357, 0.547, 'Q2', 42, 87, 1771, 332, 204, '6', '1974-1980, 1995-2020', 'Animal Science and Zoology (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (8986, 'Frontiers in Robotics and AI', 22969144, 0.547, 'Q2', 32, 196, 10240, 1289, 290, '19', '2015-2020', 'Artificial Intelligence (Q2); Computer Science Applications (Q2)'), (8987, 'Ichnos', 10420940, 0.547, 'Q2', 37, 45, 2616, 107, 73, '3', '1990-2020', 'Paleontology (Q2)'), (8988, 'Information Systems', 3064379, 0.547, 'Q2', 85, 100, 4739, 1027, 255, '3', '1975-2021', 'Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)'), (8989, 'International Journal of Computer Mathematics', 207160, 0.547, 'Q2', 48, 213, 7100, 843, 433, '3', '1964, 1968, 1971-1972, 1974-2020', 'Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2)'), (8990, 'Journal of Arachnology', 1618202, 0.547, 'Q2', 46, 39, 2227, 168, 139, '2', '1987, 1993-2019', 'Insect Science (Q2)'), (8991, 'Journal of Continuing Education in the Health', 8941912, 0.547, 'Q2', 56, 46, 370, 162, 118, '2', '1988-2020', 'Education (Q2); E-learning (Q2); Medicine (miscellaneous) (Q3)'), (8992, 'Journal of Veterinary Science', 1229845, 0.547, 'Q2', 47, 92, 2607, 500, 281, '13', '2000-2020', 'Veterinary (miscellaneous) (Q2)'), (8993, 'Multicultural Perspectives', 15327892, 0.547, 'Q1', 15, 32, 735, 83, 110, '2', '2010-2020', 'Cultural Studies (Q1)'), (8994, 'Numerical Heat Transfer, Part B: Fundamentals', 15210626, 0.547, 'Q2', 57, 57, 1956, 226, 147, '3', '1989-2020', 'Computer Science Applications (Q2); Condensed Matter Physics (Q2); Mechanics of Materials (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q2)'), (8995, 'Powder Metallurgy', 17432901, 0.547, 'Q2', 46, 39, 1256, 268, 124, '3', '1958-2020', 'Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)'), (8996, 'Topics in Magnetic Resonance Imaging', 15361004, 0.547, 'Q2', 53, 36, 807, 200, 98, '2', '1988-1996, 1998-2011, 2014-2020', 'Radiology, Nuclear Medicine and Imaging (Q2)'), (8997, 'Annals of palliative medicine', 22245839, 0.546, 'Q1', 19, 411, 11168, 470, 233, '1', '2015-2020', 'Advanced and Specialized Nursing (Q1); Anesthesiology and Pain Medicine (Q2); Medicine (miscellaneous) (Q3)'), (8998, 'Canadian Journal on Aging', 7149808, 0.546, 'Q2', 44, 79, 3483, 190, 119, '9', '1982-2020', 'Community and Home Care (Q2); Gerontology (Q2); Health (social science) (Q2); Geriatrics and Gerontology (Q3)'), (8999, 'Clinical and Experimental Reproductive Medici', 22338241, 0.546, 'Q3', 22, 42, 1547, 191, 93, '13', '2011-2020', 'Reproductive Medicine (Q3)'), (9000, 'Clinical Hemorheology and Microcirculation', 13860291, 0.546, 'Q3', 54, 154, 6413, 775, 390, '16', '1991-2020', 'Cardiology and Cardiovascular Medicine (Q3); Hematology (Q3); Physiology (Q3); Physiology (medical) (Q3)'), (9001, 'Clinical Neuropsychiatry', 17244935, 0.546, 'Q3', 23, 53, 2500, 193, 119, '7', '2006-2020', 'Psychiatry and Mental Health (Q3)'), (9002, 'Clinical Supervisor, The', 7325223, 0.546, 'Q2', 28, 22, 1000, 110, 53, '2', '1983-2020', 'Clinical Psychology (Q2); Education (Q2); Psychiatry and Mental Health (Q3)'), (9003, 'Employee Relations', 1425455, 0.546, 'Q2', 52, 124, 9814, 556, 225, '3', '1979-2020', 'Industrial Relations (Q2); Organizational Behavior and Human Resource Management (Q2)'), (9004, 'Energy and Environment', 958305, 0.546, 'Q2', 29, 125, 6160, 592, 214, '2', '1981, 1995-2020', 'Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Environmental Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (9005, 'Geoheritage', 18672477, 0.546, 'Q2', 30, 95, 5934, 642, 236, '5', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Nature and Landscape Conservation (Q2)'), (9006, 'Innovative Higher Education', 7425627, 0.546, 'Q2', 40, 37, 1291, 161, 96, '16', '1983-2002, 2004-2020', 'Education (Q2)'), (9007, 'Interactive Cardiovascular and Thoracic Surge', 15699293, 0.546, 'Q2', 56, 271, 4859, 1659, 1072, '3', '2002-2020', 'Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)'), (9008, 'International Journal of Material Forming', 19606206, 0.546, 'Q2', 36, 107, 3960, 488, 208, '8', '2008-2020', 'Materials Science (miscellaneous) (Q2)'), (9009, 'JGH Open', 23979070, 0.546, 'Q3', 8, 221, 5705, 281, 167, '2', '2017-2020', 'Gastroenterology (Q3); Hepatology (Q3)'), (9010, 'Journal of Biomaterials Applications', 8853282, 0.546, 'Q3', 55, 126, 5689, 911, 348, '3', '1986-2020', 'Biomaterials (Q3); Biomedical Engineering (Q3)'), (9011, 'Journal of Biomechanical Engineering', 15288951, 0.546, 'Q3', 126, 80, 3861, 959, 455, '2', '1977-2020', 'Biomedical Engineering (Q3); Physiology (medical) (Q3)'), (9012, 'Journal of Exercise Rehabilitation', 2288176, 0.546, 'Q2', 13, 75, 2270, 689, 394, '13', '2017-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)'), (9013, 'Journal of Patient Safety', 15498425, 0.546, 'Q2', 34, 121, 3216, 361, 178, '2', '2006-2020', 'Leadership and Management (Q2); Public Health, Environmental and Occupational Health (Q2)'), (9014, 'Journal of Pharmacopuncture', 20936966, 0.546, 'Q2', 13, 23, 784, 238, 103, '13', '2016-2020', 'Complementary and Alternative Medicine (Q2); Pharmacology (Q3)'), (9015, 'Journal of the American Psychiatric Nurses As', 15325725, 0.546, 'Q2', 29, 102, 3259, 235, 124, '2', '1995-2020', 'Psychiatric Mental Health (Q2)'), (9016, 'Reproduction in Domestic Animals', 14390531, 0.546, 'Q2', 66, 223, 8851, 1329, 700, '3', '1966-2020', 'Animal Science and Zoology (Q2); Biotechnology (Q2); Endocrinology (Q3)'), (9017, 'AIMS Biophysics', 23779098, 0.545, 'Q3', 12, 27, 1141, 152, 54, '2', '2014-2020', 'Biochemistry (Q3); Biophysics (Q3); Structural Biology (Q3); Molecular Biology (Q4)'), (9018, 'Annals of Neurosciences', 9763260, 0.545, 'Q3', 19, 20, 457, 184, 71, '4', '2011-2020', 'Neuroscience (miscellaneous) (Q3)'), (9019, 'Applied Research in Quality of Life', 18712584, 0.545, 'Q2', 31, 151, 9026, 477, 202, '16', '2006-2020', 'Life-span and Life-course Studies (Q2)'), (9020, 'Biopreservation and Biobanking', 19475535, 0.545, 'Q2', 34, 82, 2522, 447, 218, '2', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Cell Biology (Q4)'), (9021, 'BMC Ear, Nose and Throat Disorders', 14726815, 0.545, 'Q2', 23, 0, 0, 55, 31, '3', '2001-2019', 'Otorhinolaryngology (Q2)'), (9022, 'Cross Cultural and Strategic Management', 20595794, 0.545, 'Q1', 40, 44, 3794, 230, 100, '3', '2016-2020', 'Cultural Studies (Q1); Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q2); Sociology and Political Science (Q2); Strategy and Management (Q2)'), (9023, 'Diseases of Aquatic Organisms', 16161580, 0.545, 'Q2', 99, 116, 5272, 635, 361, '5', '1990-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9024, 'European Journal of International Security', 20575637, 0.545, 'Q1', 10, 19, 1352, 88, 51, '3', '2016-2020', 'Political Science and International Relations (Q1); Safety Research (Q2); Sociology and Political Science (Q2)'), (9025, 'Experimental and Toxicologic Pathology', 9402993, 0.545, 'Q2', 66, 0, 0, 219, 83, '5', '1992-2017', 'Pathology and Forensic Medicine (Q2); Medicine (miscellaneous) (Q3); Toxicology (Q3); Cell Biology (Q4)'), (9026, 'Geospatial health', 19707096, 0.545, 'Q2', 36, 47, 1632, 208, 131, '7', '2006-2020', 'Geography, Planning and Development (Q2); Health Policy (Q2); Health (social science) (Q2); Medicine (miscellaneous) (Q3)'), (9027, 'Human Ecology', 15729915, 0.545, 'Q1', 71, 61, 3687, 388, 212, '2', '1972-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q2); Ecology (Q2); Environmental Science (miscellaneous) (Q2); Health (social science) (Q2); Public Health, Environmental and Occupational Healt'), (9028, 'IEEE Journal on Exploratory Solid-State Compu', 23299231, 0.545, 'Q2', 16, 26, 634, 143, 46, '2', '2015-2020', 'Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Hardware and Architecture (Q2)'), (9029, 'International journal of nursing knowledge', 20473087, 0.545, 'Q2', 23, 42, 1480, 135, 94, '5', '2012-2020', 'Fundamentals and Skills (Q2); Research and Theory (Q2)'), (9030, 'International Perspectives in Psychology: Res', 21573891, 0.545, 'Q2', 7, 8, 197, 73, 47, '2', '2017-2020', 'Clinical Psychology (Q2); Social Psychology (Q2); Applied Psychology (Q3)'), (9031, 'In Vivo', 17917549, 0.545, 'Q2', 60, 486, 14812, 1566, 722, '39', '1987-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Pharmacology (Q3)'), (9032, 'Journal of Multicultural Counseling and Devel', 8838534, 0.545, 'Q1', 42, 21, 816, 83, 51, '2', '1985-2020', 'Cultural Studies (Q1); Applied Psychology (Q3)'), (9033, 'Microscopy (Oxford, England)', 20505701, 0.545, 'Q2', 52, 47, 1863, 299, 157, '3', '1953-1958, 1960-1975, 1977-1981, 1983-1987, 1989-1994, 2013-2020', 'Instrumentation (Q2); Radiology, Nuclear Medicine and Imaging (Q3); Structural Biology (Q3)'), (9034, 'Newspaper Research Journal', 23764791, 0.545, 'Q2', 26, 30, 1582, 96, 101, '2', '1987, 1996-2020', 'Communication (Q2)'), (9035, 'Production and Manufacturing Research', 21693277, 0.545, 'Q2', 18, 22, 1341, 237, 73, '3', '2013-2020', 'Industrial and Manufacturing Engineering (Q2)'), (9036, 'Revista Catalana de Dret Public', 18858252, 0.545, 'Q1', 4, 55, 1954, 30, 33, '12', '2019-2020', 'Law (Q1); Public Administration (Q2)'), (9037, 'Studies in Conflict and Terrorism', 1057610, 0.545, 'Q1', 50, 150, 295, 461, 226, '3', '1992-2020', 'Political Science and International Relations (Q1); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Sociology and Political Science (Q2)'), (9038, 'Advances in Concrete Construction', 2287531, 0.544, 'Q2', 12, 73, 3178, 371, 129, '13', '2016-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Mechanics of Materials (Q2); Safety, Risk, Reliability and Quality (Q2)'), (9039, 'Aquaculture Environment Interactions', 1869215, 0.544, 'Q2', 31, 36, 2252, 240, 100, '5', '2010-2020', 'Aquatic Science (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)'), (9040, 'Arts in Psychotherapy', 1974556, 0.544, 'Q2', 36, 66, 3738, 314, 176, '3', '1973, 1975-2020', 'Clinical Psychology (Q2); Health Professions (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)'), (9041, 'Asian Studies Review', 10357823, 0.544, 'Q1', 28, 56, 3553, 166, 106, '3', '1970, 1990-2020', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)'), (9042, 'Biotechnology and Bioprocess Engineering', 12268372, 0.544, 'Q2', 54, 101, 4982, 767, 291, '13', '1996-2020', 'Biotechnology (Q2); Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biomedical Engineering (Q3)'), (9043, 'Bonn Zoological Bulletin', 21907307, 0.544, 'Q2', 9, 13, 520, 28, 35, '5', '2012-2019', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (9044, 'Cardiovascular Pathology', 10548807, 0.544, 'Q2', 69, 80, 2203, 376, 192, '2', '1992-2021', 'Pathology and Forensic Medicine (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (9045, 'Computers and Concrete', 1598818, 0.544, 'Q2', 31, 91, 4936, 1049, 365, '13', '2006-2020', 'Computational Mechanics (Q2)'), (9046, 'Fire Technology', 15728099, 0.544, 'Q2', 43, 143, 4961, 609, 268, '16', '1965-2020', 'Materials Science (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2)'), (9047, 'IAWA Journal', 22941932, 0.544, 'Q2', 51, 45, 2316, 213, 101, '16', '1980-1989, 1993-2020', 'Forestry (Q2); Plant Science (Q2)'), (9048, 'International Journal of Health Economics and', 21999023, 0.544, 'Q1', 8, 20, 896, 96, 64, '2', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Health Policy (Q2)'), (9049, 'Journal of Current Issues and Research in Adv', 10641734, 0.544, 'Q2', 34, 26, 1754, 95, 50, '3', '1992-2010, 2012-2020', 'Marketing (Q2)'), (9050, 'Journal of Nonlinear Mathematical Physics', 14029251, 0.544, 'Q2', 40, 42, 1136, 182, 121, '3', '1994-2020', 'Mathematical Physics (Q2); Statistical and Nonlinear Physics (Q3)'), (9051, 'Research in gerontological nursing', 19382464, 0.544, 'Q2', 25, 39, 1151, 150, 87, '2', '2008-2020', 'Gerontology (Q2); Health Policy (Q2); Nursing (miscellaneous) (Q2); Geriatrics and Gerontology (Q3)'), (9052, 'Signal Processing: Image Communication', 9235965, 0.544, 'Q2', 83, 166, 7262, 2102, 483, '16', '1989-2020', 'Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2); Software (Q2)'), (9053, 'Thin Solid Films', 406090, 0.544, 'Q2', 192, 550, 21957, 4387, 1998, '16', '1967-2020', 'Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Metals and Alloys (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)'), (9054, 'Bulletin of Environmental Contamination and T', 74861, 0.543, 'Q2', 70, 281, 10149, 1636, 768, '2', '1966-2020', 'Pollution (Q2); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Toxicology (Q3)'), (9055, 'Chinese Journal of Mechanical Engineering (En', 21928258, 0.543, 'Q2', 33, 91, 4141, 967, 356, '1', '1990, 1998-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)'), (9056, 'Counselling Psychology Quarterly', 9515070, 0.543, 'Q2', 33, 79, 3472, 119, 82, '3', '1988-2020', 'Clinical Psychology (Q2); Applied Psychology (Q3); Psychiatry and Mental Health (Q3)'), (9057, 'Energy, Ecology and Environment', 23637692, 0.543, 'Q2', 16, 53, 3279, 274, 94, '2', '2016-2020', 'Ecology (Q2); Energy (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)'), (9058, 'Folia Geobotanica', 18749348, 0.543, 'Q2', 46, 20, 1260, 165, 92, '16', '1994-2020', 'Paleontology (Q2); Plant Science (Q2)'), (9059, 'GMS Journal for Medical Education', 23665017, 0.543, 'Q2', 19, 101, 1923, 280, 183, '5', '2016-2020', 'Education (Q2); Medicine (miscellaneous) (Q3)'), (9060, 'Journal of Comparative Policy Analysis: Resea', 13876988, 0.543, 'Q2', 24, 64, 3799, 182, 94, '2', '2010-2020', 'Public Administration (Q2); Sociology and Political Science (Q2)'), (9061, 'Journal of Forecasting', 2776693, 0.543, 'Q2', 59, 127, 5564, 416, 176, '3', '1982-2020', 'Computer Science Applications (Q2); Management Science and Operations Research (Q2); Modeling and Simulation (Q2); Statistics, Probability and Uncertainty (Q2); Strategy and Management (Q2)'), (9062, 'Journal of Industrial and Business Economics', 3912078, 0.543, 'Q1', 11, 39, 1749, 130, 75, '19', '2013-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Business, Management and Accounting (miscellaneous) (Q2)'), (9063, 'Journal of Midwifery and Women s Health', 15269523, 0.543, 'Q2', 62, 130, 3443, 443, 244, '2', '2000-2020', 'Maternity and Midwifery (Q2); Medicine (miscellaneous) (Q3); Obstetrics and Gynecology (Q3)'), (9064, 'Journal of Research in Special Educational Ne', 14713802, 0.543, 'Q2', 27, 26, 1431, 143, 88, '3', '2007-2020', 'Education (Q2)'), (9065, 'Psychosomatics', 15457206, 0.543, 'Q2', 99, 183, 4600, 491, 236, '2', '1960-2020', 'Arts and Humanities (miscellaneous) (Q2); Applied Psychology (Q3); Psychiatry and Mental Health (Q3)'), (9066, 'Studying Teacher Education', 17425972, 0.543, 'Q2', 16, 24, 1161, 80, 60, '3', '2010-2020', 'Education (Q2)'), (9067, 'ACM Transactions on Cyber-Physical Systems', 23789638, 0.542, 'Q2', 14, 27, 1314, 429, 115, '2', '2017-2020', 'Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Control and Optimization (Q2); Hardware and Architecture (Q2); Human-Computer Interaction (Q2)'), (9068, 'Acta Neurobiologiae Experimentalis', 651400, 0.542, 'Q3', 55, 38, 2424, 196, 111, '17', '1970-2020', 'Medicine (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q3)'), (9069, 'Administratie si Management Public', 15839583, 0.542, 'Q2', 14, 21, 924, 208, 60, '43', '2013-2020', 'Public Administration (Q2); Sociology and Political Science (Q2)'), (9070, 'American Journal of Potato Research', 18749380, 0.542, 'Q2', 48, 58, 2504, 290, 191, '2', '1998-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2)'), (9071, 'Asia-Pacific Journal of Oncology Nursing', 23496673, 0.542, 'Q3', 9, 61, 1714, 260, 114, '4', '2018-2020', 'Oncology (Q3); Oncology (nursing) (Q3)'), (9072, 'Child and Youth Care Forum', 15733319, 0.542, 'Q2', 36, 57, 3563, 268, 143, '2', '1991-2020', 'Life-span and Life-course Studies (Q2); Social Sciences (miscellaneous) (Q2)'), (9073, 'Computer Communication Review', 19435819, 0.542, 'Q2', 170, 36, 1135, 362, 121, '2', '1995-2020', 'Computer Networks and Communications (Q2); Software (Q2)'), (9074, 'Differential Equations', 122661, 0.542, 'Q2', 30, 143, 2334, 360, 487, '10', '1996-2020', 'Mathematics (miscellaneous) (Q2); Analysis (Q3)'), (9075, 'Experimental and Applied Acarology', 1688162, 0.542, 'Q2', 68, 119, 6156, 658, 332, '16', '1985-2020', 'Ecology (Q2); Insect Science (Q2); Medicine (miscellaneous) (Q3)'), (9076, 'Indian Journal of Ophthalmology', 19983689, 0.542, 'Q3', 51, 1025, 14458, 1691, 1012, '4', '1946-1947, 1971-2020', 'Ophthalmology (Q3)'), (9077, 'Infinite Dimensional Analysis, Quantum Probab', 2190257, 0.542, 'Q2', 30, 29, 723, 95, 84, '37', '1998-2020', 'Applied Mathematics (Q2); Mathematical Physics (Q3); Statistical and Nonlinear Physics (Q3); Statistics and Probability (Q3)'), (9078, 'Infrared Physics and Technology', 13504495, 0.542, 'Q2', 65, 391, 13688, 2807, 914, '16', '1994-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (9079, 'International Journal for the Psychology of R', 10508619, 0.542, 'Q1', 28, 34, 1917, 85, 48, '2', '1991-1995, 2007-2020', 'Religious Studies (Q1); Psychology (miscellaneous) (Q2)'), (9080, 'International Relations of the Asia-Pacific', 1470482, 0.542, 'Q1', 29, 16, 939, 68, 44, '3', '2001-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q2)'), (9081, 'Journal of Agribusiness in Developing and Eme', 20440847, 0.542, 'Q2', 15, 64, 3497, 271, 95, '3', '2011-2013, 2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Development (Q2); Economics and Econometrics (Q2)'), (9082, 'Lifestyle Genomics', 25043188, 0.542, 'Q2', 30, 21, 958, 116, 53, '19', '2017-2020', 'Food Science (Q2); Genetics (Q3); Medicine (miscellaneous) (Q3)'), (9083, 'Limnology', 1439863, 0.542, 'Q2', 37, 49, 2353, 173, 95, '6', '2000-2020', 'Aquatic Science (Q2); Ecology (Q2); Water Science and Technology (Q2)'), (9084, 'Mathematical Medicine and Biology', 14778599, 0.542, 'Q2', 45, 22, 1002, 135, 72, '3', '1984-2020', 'Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Modeling and Simulation (Q2); Immunology and Microbiology (misc'), (9085, 'Oncology', 8909091, 0.542, 'Q3', 74, 138, 968, 482, 326, '2', '1973, 1987-2020', 'Oncology (Q3); Cancer Research (Q4)'), (9086, 'Pediatric Dermatology', 15251470, 0.542, 'Q2', 73, 384, 4730, 1087, 800, '3', '1983-2020', 'Dermatology (Q2); Pediatrics, Perinatology and Child Health (Q2)'), (9087, 'Plant Pathology Journal', 15982254, 0.542, 'Q2', 29, 62, 2710, 368, 194, '13', '2002-2020', 'Agronomy and Crop Science (Q2)'), (9088, 'American Journal of Physics', 29505, 0.541, 'Q2', 99, 144, 3651, 513, 351, '2', '1940-1989, 1991, 1996-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (9089, 'Applied In Vitro Toxicology', 23321512, 0.541, 'Q2', 9, 14, 491, 129, 54, '2', '2015-2020', 'Medical Laboratory Technology (Q2); Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (9090, 'Cardiovascular Engineering and Technology', 1869408, 0.541, 'Q3', 25, 62, 2666, 379, 147, '2', '2010-2020', 'Biomedical Engineering (Q3); Cardiology and Cardiovascular Medicine (Q3)'), (9091, 'Demonstratio Mathematica', 4201213, 0.541, 'Q2', 28, 28, 623, 141, 98, '17', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (9092, 'Educational Media International', 14695790, 0.541, 'Q2', 37, 21, 716, 142, 64, '3', '1978-1979, 1987-2020', 'Communication (Q2); Education (Q2)'), (9093, 'Harvard Law Review', 17811, 0.541, 'Q1', 80, 48, 124, 177, 101, '2', '1973-2020', 'Law (Q1)'), (9094, 'International Journal of Quality and Reliabil', 265671, 0.541, 'Q2', 86, 106, 6096, 1062, 335, '3', '1970, 1984-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Strategy and Management (Q2)'), (9095, 'Journal of B.U.ON.', 11070625, 0.541, 'Q3', 28, 401, 9787, 1706, 913, '39', '1999-2020', 'Hematology (Q3); Medicine (miscellaneous) (Q3); Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Cancer Research (Q4)'), (9096, 'Journal of graduate medical education', 19498349, 0.541, 'Q3', 24, 185, 0, 800, 476, '17', '2015-2020', 'Medicine (miscellaneous) (Q3)'), (9097, 'Leiden Journal of International Law', 9221565, 0.541, 'Q1', 34, 60, 3366, 107, 132, '3', '1988-2020', 'Law (Q1); Political Science and International Relations (Q1)'), (9098, 'Library Hi Tech', 7378831, 0.541, 'Q1', 38, 71, 3744, 444, 191, '3', '1983-2020', 'Library and Information Sciences (Q1); Information Systems (Q2)'), (9099, 'Mathematics and Computers in Simulation', 3784754, 0.541, 'Q1', 77, 260, 9685, 1372, 493, '16', '1958-2021', 'Computer Science (miscellaneous) (Q1); Applied Mathematics (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q2); Theoretical Computer Science (Q2)'), (9100, 'Methods and Protocols', 24099279, 0.541, 'Q2', 7, 84, 3151, 245, 116, '19', '2018-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biotechnology (Q3); Structural Biology (Q3)'), (9101, 'Petroleum Geoscience', 13540793, 0.541, 'Q2', 57, 4, 188, 240, 127, '3', '1995-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Economic Geology (Q2); Fuel Technology (Q2); Geology (Q2); Geochemistry and Petrology (Q3)'), (9102, 'Pharmacogenomics', 14622416, 0.541, 'Q3', 91, 120, 5591, 835, 405, '3', '2000-2020', 'Genetics (Q3); Molecular Medicine (Q3); Pharmacology (Q3)'), (9103, 'Propulsion and Power Research', 2212540, 0.541, 'Q2', 22, 35, 1243, 386, 99, '16', '2012-2020', 'Aerospace Engineering (Q2); Automotive Engineering (Q2); Fluid Flow and Transfer Processes (Q2); Fuel Technology (Q2); Mechanical Engineering (Q2)'), (9104, 'Synchrotron Radiation News', 8940886, 0.541, 'Q2', 23, 50, 1216, 225, 136, '3', '1988-2020', 'Atomic and Molecular Physics, and Optics (Q2); Nuclear and High Energy Physics (Q2)'), (9105, 'Tetrahedron Letters', 404039, 0.541, 'Q2', 168, 792, 30603, 6014, 2806, '3', '1959-2020', 'Organic Chemistry (Q2); Biochemistry (Q3); Drug Discovery (Q3)'), (9106, 'Veterinary Radiology and Ultrasound', 17408261, 0.541, 'Q2', 60, 103, 2341, 360, 282, '3', '1992-2020', 'Veterinary (miscellaneous) (Q2)'), (9107, 'Acta Mechanica Solida Sinica', 8949166, 0.54, 'Q2', 34, 65, 2240, 386, 178, '1', '1981-2020', 'Computational Mechanics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (9108, 'Applied Composite Materials', 929189, 0.54, 'Q2', 51, 54, 1736, 585, 262, '16', '1994-2020', 'Ceramics and Composites (Q2)'), (9109, 'Archive of Applied Mechanics', 14320681, 0.54, 'Q2', 59, 174, 6559, 899, 415, '5', '1991-2020', 'Mechanical Engineering (Q2)'), (9110, 'BMC Biophysics', 20461682, 0.54, 'Q3', 17, 1, 0, 47, 15, '3', '2011-2020', 'Biophysics (Q3)'), (9111, 'Communication Studies', 17451035, 0.54, 'Q2', 43, 54, 2853, 174, 114, '3', '1989-2020', 'Communication (Q2)'), (9112, 'Dementia e Neuropsychologia', 19805764, 0.54, 'Q3', 21, 64, 2101, 310, 176, '14', '2009-2020', 'Cognitive Neuroscience (Q3); Geriatrics and Gerontology (Q3); Neurology (Q3); Neurology (clinical) (Q3); Sensory Systems (Q4)'), (9113, 'Journal of Latinos and Education', 1532771, 0.54, 'Q1', 15, 77, 3678, 178, 135, '2', '2010-2020', 'Cultural Studies (Q1); Education (Q2)'), (9114, 'Journal of Social Ontology', 21969663, 0.54, 'Q1', 8, 18, 384, 26, 25, '5', '2015-2020', 'Anthropology (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); Language and Linguistics (Q1); Philosophy (Q1); Communication (Q2); Social Psychology (Q2)'), (9115, 'Molecular Physics', 268976, 0.54, 'Q2', 108, 374, 20200, 2034, 967, '3', '1958-2020', 'Condensed Matter Physics (Q2); Physical and Theoretical Chemistry (Q2); Biophysics (Q3); Molecular Biology (Q4)'), (9116, 'Neues Jahrbuch fur Geologie und Palaontologie', 777749, 0.54, 'Q2', 38, 89, 4867, 270, 239, '5', '1987, 1995-2020', 'Paleontology (Q2)'), (9117, 'New Review of Academic Librarianship', 13614533, 0.54, 'Q1', 20, 22, 898, 104, 85, '3', '1995-2020', 'Library and Information Sciences (Q1); E-learning (Q2)'), (9118, 'Tourism Review International', 15442721, 0.54, 'Q2', 8, 25, 1507, 110, 52, '2', '2016-2020', 'Tourism, Leisure and Hospitality Management (Q2)'), (9119, 'Vision (Switzerland)', 24115150, 0.54, 'Q3', 7, 46, 2691, 160, 135, '19', '2017-2020', 'Cognitive Neuroscience (Q3); Ophthalmology (Q3); Optometry (Q3); Sensory Systems (Q3); Cell Biology (Q4)'), (9120, 'Chemotherapy', 93157, 0.539, 'Q3', 54, 29, 882, 227, 109, '19', '1960-2020', 'Drug Discovery (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Oncology (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (9121, 'International Journal of Preventive Medicine', 20088213, 0.539, 'Q2', 39, 79, 2056, 696, 364, '4', '2010-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (9122, 'Journal of ISAKOS', 20597762, 0.539, 'Q2', 3, 57, 2189, 13, 16, '3', '2019-2020', 'Surgery (Q2); Orthopedics and Sports Medicine (Q3)'), (9123, 'Journal of Promotion Management', 10496491, 0.539, 'Q2', 27, 66, 4770, 353, 142, '3', '1992-1997, 1999-2002, 2004, 2006-2020', 'Marketing (Q2)'), (9124, 'Materiales de Construccion', 19883226, 0.539, 'Q2', 30, 33, 1412, 188, 99, '12', '1967-1971, 1996-2020', 'Building and Construction (Q2); Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (9125, 'Rheumatology Advances in Practice', 25141775, 0.539, 'Q3', 4, 47, 977, 53, 40, '3', '2017-2020', 'Rheumatology (Q3)'), (9126, 'Scandinavian Journal of Urology', 21681813, 0.539, 'Q2', 54, 93, 2127, 315, 234, '3', '2013-2020', 'Urology (Q2); Nephrology (Q3)'), (9127, 'Teaching Exceptional Children', 21635684, 0.539, 'Q2', 6, 74, 1440, 126, 99, '3', '2016, 2018-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (9128, 'Violence and Victims', 8866708, 0.539, 'Q1', 85, 49, 2546, 261, 188, '2', '1986-2020', 'Law (Q1); Health (social science) (Q2); Pathology and Forensic Medicine (Q2); Medicine (miscellaneous) (Q3)'), (9129, 'Australian Journal of Civil Engineering', 14488353, 0.538, 'Q2', 11, 37, 1240, 124, 42, '3', '2011-2020', 'Civil and Structural Engineering (Q2)'), (9130, 'Children and Society', 9510605, 0.538, 'Q2', 58, 48, 2451, 232, 127, '3', '1987-2020', 'Education (Q2); Health (social science) (Q2); Life-span and Life-course Studies (Q2); Social Work (Q2)'), (9131, 'Crystals', 20734352, 0.538, 'Q2', 37, 1146, 54017, 3963, 1493, '19', '2010-2020', 'Chemical Engineering (miscellaneous) (Q2); Condensed Matter Physics (Q2); Inorganic Chemistry (Q2); Materials Science (miscellaneous) (Q2)'), (9132, 'Dianli Zidonghua Shebei / Electric Power Auto', 10066047, 0.538, 'Q2', 40, 370, 8186, 2489, 1175, '1', '2005-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2)'), (9133, 'English in Education', 17548845, 0.538, 'Q1', 18, 43, 1587, 57, 54, '3', '1964-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q2)'), (9134, 'Frontiers of Optoelectronics', 20952767, 0.538, 'Q2', 19, 62, 3566, 275, 124, '2', '2012-2020', 'Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (9135, 'Geriatrics (Switzerland)', 23083417, 0.538, 'Q2', 11, 104, 4594, 356, 182, '19', '2016-2020', 'Gerontology (Q2); Health (social science) (Q2); Aging (Q3); Geriatrics and Gerontology (Q3)'), (9136, 'Implant Dentistry', 10566163, 0.538, 'Q3', 65, 0, 0, 667, 283, '2', '1992-2019', 'Oral Surgery (Q3)'), (9137, 'International Journal of Clinical Pharmacy', 22107711, 0.538, 'Q1', 59, 234, 7097, 976, 489, '16', '2011-2020', 'Pharmacy (Q1); Pharmaceutical Science (Q2); Pharmacology (Q3); Pharmacology (medical) (Q3); Toxicology (Q3)'), (9138, 'International Journal on Interactive Design a', 19552513, 0.538, 'Q2', 24, 139, 4534, 837, 316, '8', '2008-2020', 'Industrial and Manufacturing Engineering (Q2); Modeling and Simulation (Q2)'), (9139, 'Journal of Adventure Education and Outdoor Le', 17540402, 0.538, 'Q2', 22, 55, 2918, 156, 79, '3', '2010-2020', 'Education (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (9140, 'Journal of Combinatorial Optimization', 13826905, 0.538, 'Q2', 48, 185, 4610, 769, 502, '16', '1997-2020', 'Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Control and Optimization (Q2); Discrete Mathematics and Combinatorics (Q2)'), (9141, 'Journal of Computing and Information Science ', 15309827, 0.538, 'Q2', 50, 68, 2853, 391, 170, '2', '2001-2021', 'Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2); Industrial and Manufacturing Engineering (Q2); Software (Q2)'), (9142, 'Journal of Imaging', 2313433, 0.538, 'Q2', 21, 103, 4861, 1099, 299, '19', '2015-2020', 'Computer Graphics and Computer-Aided Design (Q2); Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Radiology, Nuclear Medicine and Imaging (Q3)'), (9143, 'Perspectives in Psychiatric Care', 17446163, 0.538, 'Q2', 35, 256, 9788, 453, 220, '2', '1963-1985, 1987, 1989-2020', 'Psychiatric Mental Health (Q2); Medicine (miscellaneous) (Q3)'), (9144, 'Regional and Federal Studies', 13597566, 0.538, 'Q1', 37, 50, 2571, 150, 90, '3', '1995-2020', 'Political Science and International Relations (Q1); Geography, Planning and Development (Q2)'), (9145, 'Revstat Statistical Journal', 16456726, 0.538, 'Q3', 15, 42, 1098, 99, 81, '26', '2010-2020', 'Statistics and Probability (Q3)'), (9146, 'Singapore Journal of Tropical Geography', 14679493, 0.538, 'Q2', 42, 31, 1623, 136, 74, '3', '1980-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)'), (9147, 'Statistics Education Research Journal', 15701824, 0.538, 'Q2', 14, 31, 1074, 116, 80, '41', '2011-2020', 'Education (Q2); Statistics and Probability (Q3)'), (9148, 'Tourist Studies', 17413206, 0.538, 'Q2', 47, 31, 2170, 145, 76, '3', '2001-2020', 'Tourism, Leisure and Hospitality Management (Q2)'), (9149, 'Annals of Human Genetics', 34800, 0.537, 'Q3', 77, 56, 1868, 224, 144, '3', '1954-2020', 'Genetics (Q3); Genetics (clinical) (Q4)'), (9150, 'Australasian Plant Pathology', 8153191, 0.537, 'Q2', 54, 76, 2985, 348, 205, '16', '1978-2020', 'Plant Science (Q2)'), (9151, 'Biodemography and Social Biology', 19485573, 0.537, 'Q1', 31, 5, 287, 88, 61, '3', '1990, 2008-2020', 'Anthropology (Q1); Demography (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3)'), (9152, 'Chinese Medical Journal', 25425641, 0.537, 'Q3', 63, 678, 5872, 2242, 1076, '1', '1946-1960, 1962-1966, 1973-2020', 'Medicine (miscellaneous) (Q3)'), (9153, 'Cuadernos de Investigacion Geografica', 2116820, 0.537, 'Q2', 20, 26, 1522, 256, 112, '12', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (9154, 'Dermato-Endocrinology', 19381972, 0.537, 'Q2', 39, 0, 0, 35, 12, '2', '2010-2018', 'Dermatology (Q2); Endocrinology, Diabetes and Metabolism (Q3)'), (9155, 'Ecological Complexity', 1476945, 0.537, 'Q2', 57, 48, 2609, 395, 172, '16', '2004-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Ecological Modeling (Q3)'), (9156, 'Emerging Markets Finance and Trade', 1540496, 0.537, 'Q1', 34, 294, 11590, 1310, 655, '2', '2002-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Finance (Q2)'), (9157, 'Folia Microbiologica', 18749356, 0.537, 'Q3', 48, 107, 5646, 548, 224, '16', '1957, 1959-2020', 'Medicine (miscellaneous) (Q3); Microbiology (Q3)'), (9158, 'Health Care Analysis', 15733394, 0.537, 'Q2', 38, 31, 1165, 152, 71, '16', '1993-2020', 'Health Policy (Q2); Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2)'), (9159, 'IEEE Transactions on Nuclear Science', 15581578, 0.537, 'Q2', 122, 336, 8725, 2065, 1074, '2', '1963-2020', 'Electrical and Electronic Engineering (Q2); Nuclear and High Energy Physics (Q2); Nuclear Energy and Engineering (Q2)'), (9160, 'Journal of Modern African Studies', 14697777, 0.537, 'Q2', 55, 25, 1331, 88, 67, '3', '1963-2020', 'Geography, Planning and Development (Q2); Sociology and Political Science (Q2)'), (9161, 'Journal of nursing research : JNR, The', 16823141, 0.537, 'Q2', 32, 80, 2200, 296, 168, '22', '2001-2020', 'Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9162, 'Journal of Sports Medicine and Physical Fitne', 18271928, 0.537, 'Q2', 65, 224, 7787, 1249, 727, '7', '1962-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)'), (9163, 'Journal of Thermal Science', 1993033, 0.537, 'Q2', 28, 173, 6658, 550, 250, '1', '1992-2020', 'Condensed Matter Physics (Q2)'), (9164, 'Revista Latina de Comunicacion Social', 11385820, 0.537, 'Q2', 16, 71, 3497, 419, 262, '12', '2011-2020', 'Communication (Q2)'), (9165, 'TQM Journal', 17542731, 0.537, 'Q2', 67, 139, 11196, 669, 176, '3', '2008-2020', 'Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2); Strategy and Management (Q2)'), (9166, 'Translator', 13556509, 0.537, 'Q1', 37, 20, 908, 49, 73, '3', '1995-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2)'), (9167, 'Veterinary Clinical Pathology', 2756382, 0.537, 'Q2', 51, 105, 2016, 295, 263, '2', '1977-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9168, 'ACM Transactions on Computer-Human Interactio', 10730516, 0.536, 'Q2', 90, 43, 4111, 752, 113, '2', '1994-1995, 1997-2020', 'Human-Computer Interaction (Q2)'), (9169, 'Acta Mathematica Hungarica', 15882632, 0.536, 'Q2', 41, 109, 2105, 271, 306, '16', '1983-2020', 'Mathematics (miscellaneous) (Q2)'), (9170, 'BMC Medical Imaging', 14712342, 0.536, 'Q3', 37, 124, 3496, 516, 226, '3', '2001-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (9171, 'Cell Biochemistry and Biophysics', 15590283, 0.536, 'Q3', 79, 54, 2526, 233, 113, '2', '1979, 1990, 1992, 1995-2020', 'Biochemistry (Q3); Biophysics (Q3); Medicine (miscellaneous) (Q3); Cell Biology (Q4)'), (9172, 'Contemporary South Asia', 9584935, 0.536, 'Q1', 21, 48, 1896, 101, 76, '3', '1992-2006, 2008-2020', 'Political Science and International Relations (Q1); Development (Q2); Geography, Planning and Development (Q2)'), (9173, 'Critical Reviews in Eukaryotic Gene Expressio', 10454403, 0.536, 'Q3', 61, 49, 2860, 261, 116, '2', '1990-2020', 'Genetics (Q3); Molecular Biology (Q4)'), (9174, 'Entomological Science', 13438786, 0.536, 'Q2', 28, 46, 2269, 199, 151, '2', '2005-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (9175, 'Financial Innovation', 21994730, 0.536, 'Q2', 18, 50, 2869, 352, 95, '5', '2015-2020', 'Finance (Q2); Management of Technology and Innovation (Q2)'), (9176, 'General Psychiatry', 2517729, 0.536, 'Q3', 23, 67, 1665, 296, 159, '3', '2018-2020', 'Neurology (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)'), (9177, 'Identities', 15473384, 0.536, 'Q1', 38, 71, 3447, 187, 132, '3', '1994-2020', 'Anthropology (Q1); Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)'), (9178, 'International Journal of Evidence-Based Healt', 17441595, 0.536, 'Q2', 34, 23, 45, 175, 89, '2', '2008-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (9179, 'Journal of Clinical Laboratory Analysis', 8878013, 0.536, 'Q2', 50, 530, 15830, 1512, 747, '2', '1987-2020', 'Medical Laboratory Technology (Q2); Public Health, Environmental and Occupational Health (Q2); Biochemistry (medical) (Q3); Clinical Biochemistry (Q3); Hematology (Q3); Immunology and Allergy (Q3); Mi'), (9180, 'Journal of Positive Psychology and Wellbeing', 25870130, 0.536, 'Q2', 5, 7, 480, 61, 34, '18', '2017-2020', 'Education (Q2); Life-span and Life-course Studies (Q2); Social Psychology (Q2); Applied Psychology (Q3)'), (9181, 'Journal of Raptor Research', 8921016, 0.536, 'Q2', 34, 55, 2185, 173, 127, '2', '1990-2020', 'Animal Science and Zoology (Q2)'), (9182, 'Meditteranean Politics', 17439418, 0.536, 'Q1', 29, 71, 3902, 161, 96, '3', '1996-2020', 'Political Science and International Relations (Q1); Geography, Planning and Development (Q2)'), (9183, 'Microscopy Research and Technique', 10970029, 0.536, 'Q2', 118, 203, 8020, 1337, 537, '2', '1992-2020', 'Anatomy (Q2); Instrumentation (Q2); Medical Laboratory Technology (Q2); Histology (Q3)'), (9184, 'Production Engineering', 9446524, 0.536, 'Q2', 33, 64, 1834, 391, 223, '5', '1977, 2008-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)'), (9185, 'Transnational Corporations', 10149562, 0.536, 'Q1', 24, 0, 0, 92, 36, '19', '2005-2012, 2015-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1); Business, Management and Accounting (miscellaneous) (Q2)'), (9186, 'Acta Chiropterologica', 15081109, 0.535, 'Q2', 37, 20, 1148, 147, 98, '17', '1999-2020', 'Animal Science and Zoology (Q2)'), (9187, 'CYTA - Journal of Food', 19476345, 0.535, 'Q2', 28, 89, 3842, 808, 334, '3', '2009-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Food Science (Q2); Industrial and Manufacturing Engineering (Q2)'), (9188, 'Dentistry Journal', 23046767, 0.535, 'Q2', 11, 118, 4887, 450, 182, '19', '2018-2020', 'Dentistry (miscellaneous) (Q2)'), (9189, 'European Journal of Economics and Economic Po', 20527764, 0.535, 'Q2', 14, 31, 1075, 63, 63, '3', '2004-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (9190, 'European Journal of Finance', 1351847, 0.535, 'Q1', 36, 138, 7483, 447, 236, '3', '1995-1996, 1998, 2000-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1)'), (9191, 'Forest Pathology', 14390329, 0.535, 'Q2', 49, 67, 2101, 346, 242, '3', '1999-2020', 'Ecology (Q2); Forestry (Q2)'), (9192, 'Geneva Papers on Risk and Insurance: Issues a', 10185895, 0.535, 'Q2', 32, 45, 1959, 143, 91, '2', '1999-2020', 'Accounting (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2); Finance (Q2)'), (9193, 'International Journal of Instruction', 1694609, 0.535, 'Q2', 19, 297, 12232, 1218, 503, '18', '2013-2020', 'Education (Q2)'), (9194, 'Journal of Hunger and Environmental Nutrition', 19320248, 0.535, 'Q2', 28, 95, 3645, 271, 146, '2', '2006-2020', 'Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q2); Nutrition and Dietetics (Q3)'), (9195, 'Journal of the Chinese Medical Association', 17264901, 0.535, 'Q3', 42, 225, 5970, 1014, 409, '22', '2003-2020', 'Medicine (miscellaneous) (Q3)'), (9196, 'Journal of the South African Veterinary Assoc', 10199128, 0.535, 'Q2', 31, 27, 686, 121, 70, '27', '1945, 1948, 1961, 1971-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9197, 'Materials for Renewable and Sustainable Energ', 21941459, 0.535, 'Q2', 15, 25, 1844, 197, 64, '19', '2014-2020', 'Electronic, Optical and Magnetic Materials (Q2); Fuel Technology (Q2); Materials Chemistry (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (9198, 'Minerva Ginecologica', 264784, 0.535, 'Q3', 32, 63, 1722, 334, 190, '7', '1949-2020', 'Obstetrics and Gynecology (Q3)'), (9199, 'Stochastic Analysis and Applications', 15329356, 0.535, 'Q2', 39, 93, 2688, 290, 171, '2', '1983-2020', 'Applied Mathematics (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (9200, 'Theory of Computing', 15572862, 0.535, 'Q2', 21, 3, 88, 123, 60, '2', '2005, 2014-2020', 'Computational Theory and Mathematics (Q2); Theoretical Computer Science (Q2)'), (9201, 'Vascular', 1708539, 0.535, 'Q2', 57, 190, 4572, 357, 260, '3', '1993-2020', 'Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (9202, 'Building Services Engineering Research and Te', 14770849, 0.534, 'Q2', 34, 51, 1701, 258, 130, '2', '1980-2020', 'Building and Construction (Q2)'), (9203, 'Conformal Geometry and Dynamics', 10884173, 0.534, 'Q3', 18, 10, 226, 45, 43, '2', '1997-2020', 'Geometry and Topology (Q3)'), (9204, 'Ecologica Montenegrina', 23370173, 0.534, 'Q2', 10, 110, 2381, 184, 164, '116', '2014-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Plant Science (Q2)'), (9205, 'Gender and Development', 13552074, 0.534, 'Q2', 40, 32, 1010, 135, 82, '3', '1993-2020', 'Development (Q2); Gender Studies (Q2); Geography, Planning and Development (Q2)'), (9206, 'Gene Regulation and Systems Biology', 11776250, 0.534, 'Q2', 18, 0, 0, 27, 12, '41', '2008-2018', 'Computer Science Applications (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3); Molecular Biology (Q4)'), (9207, 'Global Social Policy', 17412803, 0.534, 'Q2', 35, 46, 1433, 98, 66, '3', '2001-2020', 'Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Sociology and Political Science (Q2)'), (9208, 'IEEE Multimedia', 1070986, 0.534, 'Q1', 68, 48, 612, 500, 125, '2', '1994-2020', 'Media Technology (Q1); Computer Science Applications (Q2); Hardware and Architecture (Q2); Signal Processing (Q2); Software (Q2)'), (9209, 'International Journal of Data Science and Ana', 2364415, 0.534, 'Q2', 17, 58, 2992, 434, 126, '19', '2016-2020', 'Applied Mathematics (Q2); Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Information Systems (Q2); Modeling and Simulation (Q2)'), (9210, 'Intervention in School and Clinic', 10534512, 0.534, 'Q2', 31, 59, 1417, 162, 129, '2', '1965-2020', 'Clinical Psychology (Q2); Education (Q2); Developmental and Educational Psychology (Q3)'), (9211, 'Journal of Business and Technical Communicati', 15524574, 0.534, 'Q2', 37, 13, 660, 110, 48, '2', '1987-2020', 'Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Communication (Q2)'), (9212, 'Journal of Computer Virology and Hacking Tech', 22638733, 0.534, 'Q1', 37, 28, 851, 290, 63, '2', '2014-2020', 'Computer Science (miscellaneous) (Q1); Computational Theory and Mathematics (Q2); Hardware and Architecture (Q2); Software (Q2)'), (9213, 'Journal of Insect Behavior', 8927553, 0.534, 'Q2', 49, 24, 916, 167, 139, '2', '1988-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (9214, 'Journal of Medical Toxicology', 15569039, 0.534, 'Q3', 49, 70, 1630, 290, 116, '2', '2005-2020', 'Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)'), (9215, 'Journal of Police and Criminal Psychology', 19366469, 0.534, 'Q1', 23, 87, 4318, 207, 111, '5', '1985-2020', 'Law (Q1); Applied Psychology (Q3)'), (9216, 'Journal of Wood Chemistry and Technology', 15322319, 0.534, 'Q2', 45, 44, 1833, 296, 114, '2', '1981-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)'), (9217, 'Law and Policy', 2658240, 0.534, 'Q1', 45, 16, 1333, 99, 57, '3', '1979-2020', 'Law (Q1); Sociology and Political Science (Q2)'), (9218, 'New Space', 21680264, 0.534, 'Q2', 10, 28, 648, 103, 83, '2', '2013-2020', 'Aerospace Engineering (Q2); Energy Engineering and Power Technology (Q2); Safety, Risk, Reliability and Quality (Q2); Tourism, Leisure and Hospitality Management (Q2); Astronomy and Astrophysics (Q3)'), (9219, 'Nuclear Medicine and Molecular Imaging', 18693482, 0.534, 'Q3', 23, 50, 1494, 336, 186, '5', '2010-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (9220, 'Phi Delta Kappan', 317217, 0.534, 'Q2', 59, 143, 1280, 242, 321, '2', '1981, 1984, 1993-1994, 1996-2020', 'Education (Q2)'), (9221, 'Revista de Ciencia Politica', 7161417, 0.534, 'Q1', 18, 28, 1718, 85, 75, '45', '2002, 2006-2020', 'Political Science and International Relations (Q1)'), (9222, 'Agriculture (Switzerland)', 20770472, 0.533, 'Q2', 28, 646, 36094, 1688, 552, '19', '2011-2014, 2016-2020', 'Agronomy and Crop Science (Q2); Food Science (Q2); Plant Science (Q2)'), (9223, 'Breast Journal', 1075122, 0.533, 'Q2', 72, 602, 8002, 880, 402, '3', '1995-2020', 'Surgery (Q2); Internal Medicine (Q3); Oncology (Q3)'), (9224, 'Discrete Event Dynamic Systems: Theory and Ap', 15737594, 0.533, 'Q2', 47, 28, 1007, 111, 66, '16', '1991-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Modeling and Simulation (Q2)'), (9225, 'European Journal of the History of Economic T', 14695936, 0.533, 'Q1', 21, 54, 3937, 81, 146, '3', '1993-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); History and Philosophy of Science (Q1); Arts and Humanities (miscellaneous) (Q2)'), (9226, 'First Monday', 13960466, 0.533, 'Q1', 70, 1, 0, 343, 215, '2', '1996-2019', 'Law (Q1); Computer Networks and Communications (Q2); Human-Computer Interaction (Q2)'), (9227, 'Journal of Conservative Dentistry', 9745203, 0.533, 'Q2', 31, 124, 2865, 1073, 307, '4', '2013-2014, 2016-2019', 'Dentistry (miscellaneous) (Q2)'), (9228, 'Journal of International Development', 10991328, 0.533, 'Q2', 66, 64, 3260, 327, 178, '3', '1989-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (9229, 'Journal of Tourism Futures', 20555911, 0.533, 'Q2', 15, 49, 1850, 228, 82, '3', '2015-2020', 'Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (9230, 'Peptide Science', 24758817, 0.533, 'Q2', 7, 47, 3127, 142, 74, '3', '2018-2020', 'Organic Chemistry (Q2); Biochemistry (Q3); Biomaterials (Q3); Biophysics (Q3)'), (9231, 'American Family Physician', 2838, 0.532, 'Q2', 120, 379, 1133, 1173, 717, '2', '1970-2020', 'Family Practice (Q2); Medicine (miscellaneous) (Q3)'), (9232, 'Annals of Occupational and Environmental Medi', 20524374, 0.532, 'Q2', 19, 38, 1373, 270, 161, '3', '2014-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (9233, 'Bioenergy Research', 19391242, 0.532, 'Q2', 58, 155, 8395, 690, 261, '2', '2009-2020', 'Agronomy and Crop Science (Q2); Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (9234, 'Biomedical Research', 3886107, 0.532, 'Q2', 33, 29, 1045, 147, 98, '6', '1980-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9235, 'Critical Care Research and Practice', 20901305, 0.532, 'Q2', 27, 39, 1367, 127, 67, '32', '2012-2020', 'Critical Care and Intensive Care Medicine (Q2)'), (9236, 'European Journal of Transport and Infrastruct', 15677141, 0.532, 'Q2', 26, 28, 1326, 116, 73, '16', '2008-2020', 'Geography, Planning and Development (Q2); Transportation (Q2); Urban Studies (Q2)'), (9237, 'Hematology', 10245332, 0.532, 'Q3', 43, 76, 2100, 578, 330, '3', '1996-2020', 'Hematology (Q3)'), (9238, 'International Journal of Cosmetic Science', 1425463, 0.532, 'Q2', 62, 83, 2979, 523, 215, '3', '1979-2020', 'Chemistry (miscellaneous) (Q2); Dermatology (Q2); Pharmaceutical Science (Q2); Aging (Q3); Colloid and Surface Chemistry (Q3); Drug Discovery (Q3)'), (9239, 'International Journal of Early Childhood', 18784658, 0.532, 'Q2', 21, 21, 707, 119, 71, '16', '1969-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (9240, 'International Journal of Fashion Design, Tech', 17543266, 0.532, 'Q1', 15, 40, 1579, 205, 111, '3', '2008-2020', 'Visual Arts and Performing Arts (Q1); Education (Q2); Industrial and Manufacturing Engineering (Q2)'), (9241, 'Journal of Geoscience Education', 10899995, 0.532, 'Q2', 34, 52, 2661, 220, 93, '2', '1996-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Education (Q2)'), (9242, 'Journal of Gerontological Social Work', 15404048, 0.532, 'Q2', 43, 106, 2395, 240, 140, '2', '1978-2020', 'Nursing (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Social Work (Q2)'), (9243, 'Journal of Ship Research', 224502, 0.532, 'Q2', 42, 0, 0, 84, 54, '2', '1969-1975, 1977-2019', 'Applied Mathematics (Q2); Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Numerical Analysis (Q2); Ocean Engineering (Q2)'), (9244, 'Journal of Turbulence', 14685248, 0.532, 'Q2', 53, 37, 1413, 241, 132, '3', '2000-2020', 'Computational Mechanics (Q2); Condensed Matter Physics (Q2); Mechanics of Materials (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (9245, 'Molecular Biology Reports', 3014851, 0.532, 'Q3', 71, 915, 46972, 2178, 982, '16', '1973-1988, 1990-2020', 'Genetics (Q3); Medicine (miscellaneous) (Q3); Molecular Biology (Q4)'), (9246, 'Physical Geography', 2723646, 0.532, 'Q2', 40, 56, 3169, 175, 91, '3', '1975, 1980-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Atmospheric Science (Q3)'), (9247, 'Physica Status Solidi (A) Applications and Ma', 18626300, 0.532, 'Q2', 104, 368, 13939, 2646, 1366, '5', '1983, 1987, 2005-2020', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings a'), (9248, 'Animal Reproduction', 19843143, 0.531, 'Q2', 12, 58, 2917, 348, 219, '14', '2014-2020', 'Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)'), (9249, 'Anthropology and Education Quarterly', 1617761, 0.531, 'Q1', 46, 32, 1705, 106, 87, '2', '1977-2020', 'Anthropology (Q1); Education (Q2)'), (9250, 'Clinical Medicine', 14702118, 0.531, 'Q3', 56, 348, 4247, 730, 408, '3', '1973-1975, 2001-2020', 'Medicine (miscellaneous) (Q3)'), (9251, 'Contemporary Nurse', 10376178, 0.531, 'Q2', 42, 39, 1441, 255, 152, '3', '1992-2020', 'Nursing (miscellaneous) (Q2)'), (9252, 'Contributions to Plasma Physics', 15213986, 0.531, 'Q2', 47, 107, 3472, 482, 278, '5', '1988-2020', 'Condensed Matter Physics (Q2)'), (9253, 'Journal of Latina/o Psychology', 21681678, 0.531, 'Q1', 7, 0, 0, 82, 47, '2', '2017-2018', 'Anthropology (Q1); Cultural Studies (Q1); Clinical Psychology (Q2); Social Psychology (Q2); Applied Psychology (Q3)'), (9254, 'Journal of Musculoskeletal Neuronal Interacti', 11087161, 0.531, 'Q3', 63, 68, 2943, 372, 171, '39', '2002-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Orthopedics and Sports Medicine (Q3); Physiology (Q3)'), (9255, 'Proceedings of the Geologists Association', 167878, 0.531, 'Q2', 40, 71, 4632, 255, 165, '3', '1859, 1861-1864, 1871-2020', 'Geology (Q2); Paleontology (Q2)'), (9256, 'Review of Development Economics', 14679361, 0.531, 'Q2', 50, 94, 4112, 354, 258, '3', '1997-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (9257, 'Subjectivity', 17556341, 0.531, 'Q2', 9, 19, 857, 80, 64, '3', '2015-2020', 'Social Psychology (Q2); Applied Psychology (Q3)'), (9258, 'Wave Motion', 1652125, 0.531, 'Q2', 61, 104, 3881, 667, 313, '16', '1979-2020', 'Applied Mathematics (Q2); Computational Mathematics (Q2); Modeling and Simulation (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (9259, 'Zoosystema', 16389387, 0.531, 'Q2', 26, 32, 1941, 79, 71, '8', '1998-1999, 2002, 2004-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9260, 'Advances in Applied Ceramics', 17436761, 0.53, 'Q2', 45, 57, 2082, 435, 195, '3', '2004-2020', 'Ceramics and Composites (Q2); Industrial and Manufacturing Engineering (Q2)'), (9261, 'Applied Organometallic Chemistry', 2682605, 0.53, 'Q2', 71, 731, 42977, 5619, 1625, '3', '1987-2020', 'Chemistry (miscellaneous) (Q2); Inorganic Chemistry (Q2)'), (9262, 'Applied Psychophysiology Biofeedback', 15733270, 0.53, 'Q3', 63, 34, 1450, 205, 95, '2', '1997-2020', 'Applied Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)'), (9263, 'Drug, Healthcare and Patient Safety', 11791365, 0.53, 'Q2', 24, 32, 992, 70, 37, '41', '2009-2020', 'Health Policy (Q2); Pharmacology (Q3)'), (9264, 'IEEE Security and Privacy', 15584046, 0.53, 'Q1', 76, 62, 718, 678, 212, '2', '2003-2020', 'Law (Q1); Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2)'), (9265, 'Informatics in Education', 16485831, 0.53, 'Q2', 19, 31, 1388, 162, 55, '69', '2006-2020', 'Communication (Q2); Computer Science Applications (Q2); Education (Q2)'), (9266, 'International Journal of Emergency Medicine', 18651372, 0.53, 'Q2', 29, 59, 1300, 242, 124, '3', '2009-2020', 'Emergency Medicine (Q2)'), (9267, 'International Journal of Information and Lear', 20564899, 0.53, 'Q2', 29, 33, 1600, 238, 90, '3', '2015-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2); Education (Q2)'), (9268, 'International Journal of Mycobacteriology', 22125531, 0.53, 'Q3', 20, 85, 2286, 309, 219, '4', '2012-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3)'), (9269, 'International Journal of Transitional Justice', 17527724, 0.53, 'Q1', 26, 21, 821, 91, 82, '3', '2011-2020', 'Law (Q1)'), (9270, 'International Tinnitus Journal', 9465448, 0.53, 'Q2', 30, 8, 194, 107, 84, '2', '1998-2020', 'Speech and Hearing (Q2); Otorhinolaryngology (Q3); Sensory Systems (Q4)'), (9271, 'Journal of Commutative Algebra', 19390807, 0.53, 'Q3', 16, 10, 139, 81, 85, '2', '2009-2020', 'Algebra and Number Theory (Q3)'), (9272, 'Journal of Computer Assisted Tomography', 15323145, 0.53, 'Q3', 93, 149, 1357, 726, 466, '2', '1977-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (9273, 'Journal of Dental Education', 220337, 0.53, 'Q2', 68, 350, 5251, 929, 548, '2', '1946-1947, 1949-1951, 1965-2020', 'Dentistry (miscellaneous) (Q2); Education (Q2); Medicine (miscellaneous) (Q3)'), (9274, 'Journal of Economic Policy Reform', 17487889, 0.53, 'Q1', 22, 47, 2337, 120, 74, '3', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2)'), (9275, 'Journal of Mechanical Science and Technology', 1738494, 0.53, 'Q2', 54, 504, 13363, 3498, 1866, '13', '2005-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (9276, 'Journal of Phytopathology', 9311785, 0.53, 'Q2', 60, 75, 3062, 444, 258, '3', '1958-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2); Genetics (Q3); Physiology (Q3)'), (9277, 'Journal of Spinal Cord Medicine', 20457723, 0.53, 'Q3', 63, 208, 7335, 601, 343, '3', '1995-2020', 'Neurology (clinical) (Q3)'), (9278, 'Journal of Therapeutic Ultrasound', 20505736, 0.53, 'Q3', 22, 0, 0, 107, 37, '3', '2013-2018', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (9279, 'Kinesiology', 13311441, 0.53, 'Q2', 21, 35, 1322, 222, 114, '58', '2008-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sports Science (Q3)'), (9280, 'Linguistics', 243949, 0.53, 'Q1', 44, 52, 3360, 113, 117, '5', '1963-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (9281, 'Medicina', 1010660, 0.53, 'Q3', 36, 735, 31558, 2199, 950, '69', '2002-2020', 'Medicine (miscellaneous) (Q3)'), (9282, 'Ship Technology Research', 9377255, 0.53, 'Q2', 17, 20, 546, 61, 37, '3', '1995-1999, 2010-2020', 'Ocean Engineering (Q2)'), (9283, 'Visualization in Engineering', 22137459, 0.53, 'Q2', 19, 0, 0, 134, 30, '5', '2013-2019', 'Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Engineering (miscellaneous) (Q2); Modeling and Simulation (Q2)'), (9284, 'Wspolczesna Onkologia', 14282526, 0.53, 'Q3', 23, 31, 1028, 330, 152, '17', '2005-2020', 'Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (9285, 'Advances in Experimental Medicine and Biology', 652598, 0.529, 'Q2', 123, 1203, 105778, 11012, 356, '2', '1971-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9286, 'Animal Production Science', 18365787, 0.529, 'Q2', 76, 237, 11712, 1311, 862, '11', '2009-2020', 'Animal Science and Zoology (Q2); Food Science (Q2)'), (9287, 'Asia and the Pacific Policy Studies', 20502680, 0.529, 'Q1', 14, 22, 722, 207, 114, '3', '2014-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1); Public Administration (Q2); Sociology and Political Science (Q2); Strategy and Management '), (9288, 'Asian Business and Management', 14724782, 0.529, 'Q1', 20, 58, 4031, 169, 54, '3', '2008-2020', 'Political Science and International Relations (Q1); Business and International Management (Q2); Sociology and Political Science (Q2); Strategy and Management (Q2)'), (9289, 'Bulletin of Entomological Research', 14752670, 0.529, 'Q2', 69, 92, 5090, 444, 245, '3', '1910-2020', 'Agronomy and Crop Science (Q2); Insect Science (Q2); Medicine (miscellaneous) (Q3)'), (9290, 'Communication Quarterly', 1463373, 0.529, 'Q2', 45, 28, 1485, 113, 89, '3', '1976-2020', 'Communication (Q2)'), (9291, 'Comptes Rendus - Biologies', 17683238, 0.529, 'Q2', 84, 26, 814, 316, 149, '8', '1959, 2002-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous'), (9292, 'International Journal of Developmental Scienc', 21917485, 0.529, 'Q2', 21, 15, 674, 71, 34, '16', '2007-2020', 'Life-span and Life-course Studies (Q2); Social Psychology (Q2); Aging (Q3); Developmental and Educational Psychology (Q3); Developmental Neuroscience (Q4)'), (9293, 'International Journal of Political Economy', 15580970, 0.529, 'Q1', 19, 22, 1132, 52, 48, '3', '1996-2004, 2006-2020', 'Political Science and International Relations (Q1); Economics and Econometrics (Q2); Sociology and Political Science (Q2)'), (9294, 'International Journal of Recycling of Organic', 22517715, 0.529, 'Q2', 19, 32, 1733, 409, 170, '15', '2012-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Waste Management and Disposal (Q2)'), (9295, 'Journal of Applied Animal Research', 9741844, 0.529, 'Q2', 24, 81, 3558, 730, 420, '3', '1992-2020', 'Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)'), (9296, 'Journal of Civil Engineering and Management', 18223605, 0.529, 'Q2', 47, 47, 2884, 729, 219, '69', '2002-2020', 'Civil and Structural Engineering (Q2); Strategy and Management (Q2)'), (9297, 'Journal of Empirical Legal Studies', 17401453, 0.529, 'Q1', 24, 28, 1242, 117, 88, '3', '2011-2020', 'Law (Q1); Education (Q2)'), (9298, 'Journal of Enhanced Heat Transfer', 10265511, 0.529, 'Q2', 32, 33, 1635, 244, 93, '2', '1993-2020', 'Condensed Matter Physics (Q2); Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2)'), (9299, 'Journal of Environmental Law', 1464374, 0.529, 'Q1', 28, 24, 1250, 81, 65, '3', '1989-2020', 'Law (Q1); Management, Monitoring, Policy and Law (Q2)'), (9300, 'Journal of Fluids Engineering, Transactions o', 1528901, 0.529, 'Q2', 103, 41, 1437, 1114, 548, '2', '1960-2020', 'Mechanical Engineering (Q2)'), (9301, 'Journal of Lie Theory', 9495932, 0.529, 'Q3', 26, 54, 1275, 129, 156, '5', '1996-1998, 2000-2020', 'Algebra and Number Theory (Q3)'), (9302, 'Journal of Rational - Emotive and Cognitive -', 8949085, 0.529, 'Q2', 35, 51, 3102, 130, 76, '2', '1983-2020', 'Clinical Psychology (Q2); Experimental and Cognitive Psychology (Q3)'), (9303, 'Journal of the Economics of Ageing', 2212828, 0.529, 'Q2', 14, 60, 2769, 166, 87, '16', '2013-2020', 'Economics and Econometrics (Q2); Life-span and Life-course Studies (Q2)'), (9304, 'Journal of the Society for Social Work and Re', 1948822, 0.529, 'Q2', 15, 32, 1646, 139, 95, '2', '2014-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (9305, 'Journal of the Society of Laparoendoscopic Su', 19383797, 0.529, 'Q2', 55, 54, 1099, 343, 170, '2', '1997-2020', 'Surgery (Q2)'), (9306, 'Journal of Veterinary Diagnostic Investigatio', 19434936, 0.529, 'Q2', 78, 153, 4240, 658, 462, '2', '1989-2020', 'Veterinary (miscellaneous) (Q2)'), (9307, 'Maderas: Ciencia y Tecnologia', 7173644, 0.529, 'Q2', 26, 60, 2131, 300, 161, '45', '2001-2002, 2006-2020', 'Chemical Engineering (miscellaneous) (Q2); Forestry (Q2); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2)'), (9308, 'Neuroethics', 18745490, 0.529, 'Q2', 29, 57, 2988, 227, 96, '16', '2009-2020', 'Health Policy (Q2); Neurology (Q3); Psychiatry and Mental Health (Q3)'), (9309, 'PoLAR: Political and Legal Anthropology Revie', 10816976, 0.529, 'Q1', 27, 24, 1125, 57, 71, '5', '1973-1974, 1977-2020', 'Anthropology (Q1); Law (Q1); Sociology and Political Science (Q2)'), (9310, 'Quaestiones Mathematicae', 1727933, 0.529, 'Q2', 25, 219, 4530, 346, 273, '3', '1976-2020', 'Mathematics (miscellaneous) (Q2)'), (9311, 'Radiation Physics and Chemistry', 969806, 0.529, 'Q2', 82, 726, 23501, 2848, 1079, '3', '1978-1979, 1982-2020', 'Radiation (Q2)'), (9312, 'Scandinavian Journal of Clinical and Laborato', 365513, 0.529, 'Q3', 64, 112, 3090, 489, 279, '3', '1949-2020', 'Clinical Biochemistry (Q3); Medicine (miscellaneous) (Q3)'), (9313, 'Southern Communication Journal, The', 19303203, 0.529, 'Q2', 25, 27, 1063, 79, 70, '3', '1988-2020', 'Communication (Q2)'), (9314, 'Taiwanese Journal of Mathematics', 10275487, 0.529, 'Q2', 46, 69, 1689, 247, 222, '22', '1997-2020', 'Mathematics (miscellaneous) (Q2)'), (9315, 'Ultrasound', 17341344, 0.529, 'Q2', 17, 50, 1069, 134, 87, '3', '1993-2020', 'Radiological and Ultrasound Technology (Q2); Radiology, Nuclear Medicine and Imaging (Q3)'), (9316, 'Acta Protozoologica', 16890027, 0.528, 'Q2', 37, 11, 388, 69, 64, '17', '1973-1990, 1992-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (9317, 'Bollettino della Societa Paleontologica Itali', 3757633, 0.528, 'Q2', 30, 25, 2013, 107, 63, '7', '1979, 1983, 1992-2020', 'Paleontology (Q2)'), (9318, 'Engineering Solid Mechanics', 22918752, 0.528, 'Q2', 17, 43, 1303, 181, 86, '9', '2013-2020', 'Ceramics and Composites (Q2); Civil and Structural Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2); Polymers and Plastics (Q2)'), (9319, 'Intercultural Pragmatics', 1613365, 0.528, 'Q1', 34, 21, 1292, 79, 65, '5', '2004-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2)'), (9320, 'International Journal of Occupational and Env', 20086520, 0.528, 'Q2', 21, 30, 722, 173, 67, '15', '2010-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (9321, 'International Journal of Sustainable Energy P', 22462929, 0.528, 'Q2', 17, 39, 1915, 238, 84, '25', '2014-2020', 'Energy Engineering and Power Technology (Q2); Geography, Planning and Development (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (9322, 'Journal of Dynamic Systems, Measurement and C', 220434, 0.528, 'Q2', 89, 56, 2019, 1032, 588, '2', '1971-2020', 'Computer Science Applications (Q2); Control and Systems Engineering (Q2); Information Systems (Q2); Instrumentation (Q2); Mechanical Engineering (Q2)'), (9323, 'Journal of Electromagnetic Engineering and Sc', 26717255, 0.528, 'Q2', 12, 41, 739, 256, 113, '13', '2014, 2016-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Radiation (Q2)'), (9324, 'Journal of Moral Education', 14653877, 0.528, 'Q1', 41, 64, 3372, 195, 99, '3', '1971-2020', 'Religious Studies (Q1)'), (9325, 'Ophthalmic Plastic and Reconstructive Surgery', 15372677, 0.528, 'Q2', 56, 239, 3769, 852, 632, '2', '1984-2020', 'Surgery (Q2); Medicine (miscellaneous) (Q3); Ophthalmology (Q3)'), (9326, 'Pulmonary Medicine', 20901844, 0.528, 'Q3', 30, 17, 574, 44, 29, '32', '2011-2020', 'Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)'), (9327, 'Rapid Communications in Mass Spectrometry', 9514198, 0.528, 'Q2', 136, 376, 13878, 1623, 693, '3', '1987-2020', 'Analytical Chemistry (Q2); Organic Chemistry (Q2); Spectroscopy (Q3)'), (9328, 'Sexual Development', 16615433, 0.528, 'Q3', 44, 19, 730, 179, 80, '19', '2006-2020', 'Embryology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Developmental Biology (Q4)'), (9329, 'Social Responsibility Journal', 1758857, 0.528, 'Q2', 31, 76, 6090, 665, 242, '3', '2005-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (9330, 'SoftwareX', 23527110, 0.528, 'Q2', 21, 162, 4501, 654, 235, '16', '2015-2020', 'Computer Science Applications (Q2); Software (Q2)'), (9331, 'Surgical Laparoscopy, Endoscopy and Percutane', 15304515, 0.528, 'Q2', 62, 127, 2969, 510, 334, '2', '1991-1992, 1996-2020', 'Surgery (Q2)'), (9332, 'Clinical Medicine Insights: Endocrinology and', 11795514, 0.527, 'Q3', 15, 18, 1083, 90, 37, '3', '2009-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3)'), (9333, 'Corrosion Reviews', 3346005, 0.527, 'Q2', 34, 35, 2428, 271, 100, '5', '1979, 1981-1982, 1984, 1987-1990, 1992-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)'), (9334, 'Decision Analysis', 15458504, 0.527, 'Q2', 22, 22, 860, 142, 48, '2', '2010-2020', 'Decision Sciences (miscellaneous) (Q2)'), (9335, 'European Journal of Environmental and Civil E', 21167214, 0.527, 'Q2', 31, 348, 14259, 869, 409, '3', '2008-2020', 'Civil and Structural Engineering (Q2); Environmental Engineering (Q2)'), (9336, 'International Journal of Civil Engineering', 17350522, 0.527, 'Q2', 23, 108, 3996, 771, 379, '19', '2009-2020', 'Civil and Structural Engineering (Q2)'), (9337, 'Jornal Brasileiro de Pneumologia', 18063713, 0.527, 'Q3', 39, 151, 2919, 457, 198, '14', '2004-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (9338, 'Journal of Irrigation and Drainage Engineerin', 7339437, 0.527, 'Q2', 73, 77, 2141, 459, 234, '2', '1982-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Civil and Structural Engineering (Q2); Water Science and Technology (Q2)'), (9339, 'Journal of Poverty and Social Justice', 17598273, 0.527, 'Q2', 14, 20, 1078, 78, 66, '3', '2010-2020', 'Public Administration (Q2); Sociology and Political Science (Q2)'), (9340, 'Journal of Veterinary Pharmacology and Therap', 1407783, 0.527, 'Q2', 60, 104, 3865, 448, 311, '3', '1978-2020', 'Veterinary (miscellaneous) (Q2); Pharmacology (Q3)'), (9341, 'Kardiologia Polska', 229032, 0.527, 'Q3', 34, 284, 3919, 842, 498, '17', '1954-1955, 1961-1994, 1996-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (9342, 'Korean Journal of Pain', 20930569, 0.527, 'Q2', 22, 53, 1762, 236, 97, '13', '2011-2020', 'Anesthesiology and Pain Medicine (Q2)'), (9343, 'Nestle Nutrition Institute Workshop Series', 16642155, 0.527, 'Q2', 30, 79, 1927, 175, 94, '19', '2010-2020', 'Food Science (Q2); Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)'), (9344, 'Proceedings of the Institution of Mechanical ', 20413076, 0.527, 'Q2', 34, 136, 5413, 828, 331, '3', '1999-2020', 'Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (9345, 'Saudi Dental Journal', 10139052, 0.527, 'Q2', 24, 121, 4016, 513, 155, '29', '2009-2020', 'Dentistry (miscellaneous) (Q2)'), (9346, 'Sequential Analysis', 7474946, 0.527, 'Q2', 21, 27, 750, 92, 91, '2', '1984-1995, 2007-2020', 'Modeling and Simulation (Q2); Statistics and Probability (Q3)'), (9347, 'South African Medical Journal', 2569574, 0.527, 'Q3', 57, 333, 5640, 836, 621, '27', '1945-2020', 'Medicine (miscellaneous) (Q3)'), (9348, 'Strategic Change', 10861718, 0.527, 'Q2', 16, 64, 4048, 441, 153, '3', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Finance (Q2)'), (9349, 'Ursus', 15376176, 0.527, 'Q2', 40, 19, 916, 55, 45, '2', '1998-2001, 2003-2020', 'Animal Science and Zoology (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)'), (9350, 'Wood Material Science and Engineering', 17480272, 0.527, 'Q2', 22, 78, 3180, 244, 118, '3', '2006-2020', 'Materials Science (miscellaneous) (Q2)'), (9351, 'Annals of Actuarial Science', 17484995, 0.526, 'Q2', 5, 42, 1781, 47, 42, '3', '2018-2020', 'Economics and Econometrics (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (9352, 'Annals of Public and Cooperative Economics', 13704788, 0.526, 'Q2', 37, 47, 3057, 178, 90, '3', '1925-1942, 1948-2020', 'Economics and Econometrics (Q2); Sociology and Political Science (Q2)'), (9353, 'Bulletin of the Malaysian Mathematical Scienc', 1266705, 0.526, 'Q2', 27, 296, 7322, 642, 429, '37', '2008-2020', 'Mathematics (miscellaneous) (Q2)'), (9354, 'Cardiac Electrophysiology Clinics', 18779182, 0.526, 'Q3', 14, 66, 2348, 204, 177, '3', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q3); Physiology (medical) (Q3)'), (9355, 'Computational Mathematics and Mathematical Ph', 15556662, 0.526, 'Q2', 27, 168, 3694, 481, 487, '10', '1985, 1991-1996, 1999-2020', 'Computational Mathematics (Q2)'), (9356, 'Environmental Engineering Research', 2005968, 0.526, 'Q2', 21, 109, 4709, 487, 192, '13', '2011-2020', 'Environmental Engineering (Q2)'), (9357, 'Ethnos', 141844, 0.526, 'Q1', 42, 90, 4759, 249, 176, '3', '1936-2020', 'Anthropology (Q1); Archeology (Q1); Arts and Humanities (miscellaneous) (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (9358, 'Fishes', 24103888, 0.526, 'Q2', 10, 35, 2714, 280, 118, '19', '2016-2020', 'Aquatic Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9359, 'Industrial and Organizational Psychology', 17549426, 0.526, 'Q2', 36, 100, 2213, 174, 157, '3', '2011-2020', 'Social Psychology (Q2); Applied Psychology (Q3)'), (9360, 'International Forestry Review', 14655489, 0.526, 'Q2', 48, 36, 2660, 227, 131, '3', '1999-2020', 'Ecology (Q2); Forestry (Q2); Geography, Planning and Development (Q2)'), (9361, 'International Journal of Green Energy', 15435075, 0.526, 'Q2', 40, 86, 4065, 931, 367, '2', '2006-2020', 'Renewable Energy, Sustainability and the Environment (Q2)'), (9362, 'Journal of Biochemical and Molecular Toxicolo', 10956670, 0.526, 'Q3', 58, 181, 8838, 1437, 413, '2', '1998-2020', 'Biochemistry (Q3); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Molecular Medicine (Q3); Toxicology (Q3); Molecular Biology (Q4)'), (9363, 'Journal of Dietary Supplements', 19390211, 0.526, 'Q2', 27, 97, 4485, 442, 188, '2', '2008-2020', 'Food Science (Q2); Nutrition and Dietetics (Q3); Pharmacology (medical) (Q3)'), (9364, 'Journal of Physical and Chemical Reference Da', 15297845, 0.526, 'Q2', 94, 10, 1176, 148, 52, '2', '1972-2020', 'Chemistry (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (9365, 'Journal of Strategic Studies', 1402390, 0.526, 'Q1', 32, 67, 4385, 211, 136, '3', '1978-2020', 'Political Science and International Relations (Q1); Sociology and Political Science (Q2)'), (9366, 'Knowledge Management and E-Learning', 20737904, 0.526, 'Q2', 21, 18, 1172, 191, 88, '1', '2009-2020', 'Education (Q2); E-learning (Q2); Management of Technology and Innovation (Q2)'), (9367, 'LMS Journal of Computation and Mathematics', 14611570, 0.526, 'Q2', 18, 0, 0, 8, 3, '3', '2008, 2010-2018', 'Computational Theory and Mathematics (Q2); Mathematics (miscellaneous) (Q2)'), (9368, 'Mycobiology', 12298093, 0.526, 'Q2', 25, 65, 2461, 371, 168, '13', '2011-2020', 'Plant Science (Q2); Infectious Diseases (Q3); Microbiology (Q3)'), (9369, 'Neurochirurgie', 17730619, 0.526, 'Q2', 29, 106, 2616, 307, 199, '8', '1955-2020', 'Surgery (Q2); Neurology (clinical) (Q3)'), (9370, 'Plasmonics', 15571955, 0.526, 'Q2', 58, 252, 9026, 1770, 768, '2', '2006-2020', 'Nanoscience and Nanotechnology (Q2); Biochemistry (Q3); Biophysics (Q3); Biotechnology (Q3)'), (9371, 'Rare Metals', 10010521, 0.526, 'Q2', 34, 268, 10985, 1303, 446, '1', '1982-1987, 1989-2020', 'Condensed Matter Physics (Q2); Materials Chemistry (Q2); Metals and Alloys (Q2); Physical and Theoretical Chemistry (Q2)'), (9372, 'Review of Political Economy', 14653982, 0.526, 'Q1', 29, 49, 2729, 108, 92, '3', '1989-1996, 2002-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Political Science and International Relations (Q1)'), (9373, 'Asia-Pacific Education Researcher', 22437908, 0.525, 'Q2', 26, 66, 3305, 289, 132, '37', '2008-2020', 'Education (Q2)'), (9374, 'Canadian Journal of Earth Sciences', 14803313, 0.525, 'Q2', 75, 92, 6919, 319, 259, '9', '1968-1969, 1976-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (9375, 'Environmental Technology (United Kingdom)', 1479487, 0.525, 'Q2', 73, 695, 30876, 2799, 1095, '3', '1990-2020', 'Waste Management and Disposal (Q2); Water Science and Technology (Q2); Environmental Chemistry (Q3); Medicine (miscellaneous) (Q3)'), (9376, 'Industrial Relations Journal', 14682338, 0.525, 'Q2', 3, 29, 1434, 32, 30, '2', '2019-2020', 'Industrial Relations (Q2)'), (9377, 'Innovation', 13511610, 0.525, 'Q2', 34, 53, 3179, 192, 92, '3', '1988-2020', 'Geography, Planning and Development (Q2); Management of Technology and Innovation (Q2)'), (9378, 'International Journal of Research and Method ', 17437288, 0.525, 'Q2', 28, 53, 2910, 198, 105, '3', '2005-2020', 'Education (Q2)'), (9379, 'Journal of Atrial Fibrillation', 19416911, 0.525, 'Q3', 14, 79, 2385, 270, 215, '2', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (9380, 'Journal of Neurosurgical Sciences', 3905616, 0.525, 'Q2', 35, 100, 2366, 364, 218, '7', '1957-2020', 'Surgery (Q2); Neurology (clinical) (Q3)'), (9381, 'Problems of Information Transmission', 329460, 0.525, 'Q2', 19, 25, 602, 79, 80, '10', '1972-1991, 2005-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2)'), (9382, 'Translational Neuroscience', 20816936, 0.525, 'Q3', 26, 49, 1891, 198, 102, '17', '2010-2020', 'Neuroscience (miscellaneous) (Q3)'), (9383, 'Urban Forum', 10153802, 0.525, 'Q2', 35, 32, 1696, 98, 78, '16', '1990-2020', 'Geography, Planning and Development (Q2); Urban Studies (Q2)'), (9384, 'Advances in Rheumatology', 25233106, 0.524, 'Q3', 27, 49, 1787, 440, 232, '3', '2018-2020', 'Rheumatology (Q3)'), (9385, 'Ameghiniana', 18518044, 0.524, 'Q2', 39, 52, 3637, 151, 100, '46', '1985, 1992-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Paleontology (Q2)'), (9386, 'Australian Journal of Primary Health', 14487527, 0.524, 'Q2', 30, 89, 2339, 337, 244, '11', '2001-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (9387, 'Australian Journal of Public Administration', 14678500, 0.524, 'Q2', 41, 43, 2550, 269, 143, '3', '1937-2020', 'Public Administration (Q2); Sociology and Political Science (Q2)'), (9388, 'Business and Society Review', 453609, 0.524, 'Q2', 21, 22, 1266, 86, 70, '3', '2007-2020', 'Business and International Management (Q2); Industrial Relations (Q2); Sociology and Political Science (Q2); Strategy and Management (Q2)'), (9389, 'Cardiovascular Intervention and Therapeutics', 18684297, 0.524, 'Q3', 17, 121, 2308, 277, 193, '5', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (9390, 'Computers in the Schools', 7380569, 0.524, 'Q1', 26, 15, 668, 98, 54, '2', '1984-1997, 1999, 2001-2020', 'Computer Science (miscellaneous) (Q1); Library and Information Sciences (Q1); Education (Q2)'), (9391, 'Contact Dermatitis', 1051873, 0.524, 'Q2', 96, 295, 4344, 1715, 546, '3', '1975-2020', 'Dermatology (Q2); Immunology and Allergy (Q3)'), (9392, 'Electronic Journal of Qualitative Theory of D', 14173875, 0.524, 'Q2', 33, 86, 2112, 348, 298, '50', '2000-2020', 'Applied Mathematics (Q2)'), (9393, 'For the Learning of Mathematics', 2280671, 0.524, 'Q2', 11, 27, 286, 35, 38, '9', '2011-2020', 'Education (Q2); Mathematics (miscellaneous) (Q2)'), (9394, 'International Journal of Astrobiology', 14735504, 0.524, 'Q2', 40, 30, 1417, 278, 123, '3', '2002-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Physics and Astronomy (miscellaneous) (Q2); Space and Planetary Science (Q3)'), (9395, 'International Review of Hydrobiology', 15222632, 0.524, 'Q2', 52, 23, 1503, 79, 38, '5', '1998-2020', 'Aquatic Science (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9396, 'International Studies in Sociology of Educati', 9620214, 0.524, 'Q2', 34, 38, 1680, 60, 46, '3', '1991-2020', 'Education (Q2); Social Sciences (miscellaneous) (Q2)'), (9397, 'Law, Probability and Risk', 1470840, 0.524, 'Q1', 14, 12, 268, 55, 53, '3', '2011-2019', 'Law (Q1); Philosophy (Q1); Statistics, Probability and Uncertainty (Q3)'), (9398, 'Mathematical Methods of Operations Research', 14325217, 0.524, 'Q2', 48, 45, 1419, 186, 118, '5', '1996-2020', 'Management Science and Operations Research (Q2); Mathematics (miscellaneous) (Q2); Software (Q2)'), (9399, 'Microfluidics and Nanofluidics', 16134982, 0.524, 'Q2', 87, 92, 4136, 1211, 458, '5', '2004-2020', 'Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Nanoscience and Nanotechnology (Q3)'), (9400, 'Minerals', 2075163, 0.524, 'Q2', 35, 1131, 67850, 4476, 1606, '19', '2010-2020', 'Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (9401, 'Norwegian Archaeological Review', 293652, 0.524, 'Q1', 24, 11, 676, 40, 23, '3', '1968-2020', 'Archeology (arts and humanities) (Q1)'), (9402, 'Prison Journal', 328855, 0.524, 'Q1', 51, 36, 1826, 151, 114, '2', '1921-1992, 1996-2020', 'Law (Q1); Social Sciences (miscellaneous) (Q2)'), (9403, 'Proceedings of the Institution of Civil Engin', 13532618, 0.524, 'Q2', 40, 49, 1518, 203, 134, '3', '1994-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (9404, 'Results in Applied Mathematics', 25900374, 0.524, 'Q2', 3, 41, 1077, 29, 26, '16', '2019-2020', 'Applied Mathematics (Q2)'), (9405, 'TechTrends', 87563894, 0.524, 'Q2', 38, 111, 3873, 454, 258, '2', '1982, 1985-1996, 2000, 2004, 2006-2020', 'Computer Science Applications (Q2); Education (Q2)'), (9406, 'Advances in Polymer Technology', 7306679, 0.523, 'Q2', 44, 29, 1269, 1145, 521, '2', '1981-2020', 'Chemical Engineering (miscellaneous) (Q2); Organic Chemistry (Q2); Polymers and Plastics (Q2)'), (9407, 'Annales d Endocrinologie', 34266, 0.523, 'Q3', 37, 62, 1882, 287, 146, '8', '1946-1947, 1949-2020', 'Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Medicine (miscellaneous) (Q3)'), (9408, 'Chinese Annals of Mathematics. Series B', 18606261, 0.523, 'Q2', 37, 59, 1203, 209, 194, '5', '1980, 1996-2020', 'Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)'), (9409, 'English Language and Linguistics', 13606743, 0.523, 'Q1', 30, 46, 2352, 89, 76, '3', '1997-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (9410, 'Food, Culture and Society', 15528014, 0.523, 'Q1', 22, 43, 1840, 140, 113, '3', '2008-2020', 'Cultural Studies (Q1); Food Science (Q2); Social Psychology (Q2)'), (9411, 'Food Science and Technology International', 15321738, 0.523, 'Q2', 61, 101, 4339, 442, 195, '2', '1995-2020', 'Chemical Engineering (miscellaneous) (Q2); Food Science (Q2); Industrial and Manufacturing Engineering (Q2)'), (9412, 'Fossils and Strata', 3009491, 0.523, 'Q2', 23, 0, 0, 2, 1, '2', '1981, 1983, 1985, 1987-1989, 1991, 1996-1999, 2001, 2003-2006, 2008-2009, 2012-2013, 2016-2017', 'Paleontology (Q2)'), (9413, 'Geologica Acta', 16965728, 0.523, 'Q2', 45, 15, 1099, 88, 63, '12', '2003-2020', 'Geology (Q2)'), (9414, 'Indian Journal of Microbiology', 468991, 0.523, 'Q3', 46, 65, 2820, 490, 212, '4', '1973-1982, 1996-2020', 'Microbiology (Q3)'), (9415, 'Journalism and Mass Communication Educator', 21614326, 0.523, 'Q2', 22, 51, 1610, 101, 85, '3', '1996-2020', 'Communication (Q2); Education (Q2)'), (9416, 'Journal of Electronic Packaging, Transactions', 15289044, 0.523, 'Q2', 52, 36, 1078, 217, 129, '2', '1989-2021', 'Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Mechanics of Materials (Q2)'), (9417, 'Journal of the Institute of Brewing', 469750, 0.523, 'Q2', 51, 40, 1883, 381, 182, '2', '1904, 1908, 1910-1912, 1914-2020', 'Food Science (Q2)'), (9418, 'Journal of the Japanese and International Eco', 8891583, 0.523, 'Q1', 41, 27, 845, 134, 94, '2', '1987-2020', 'Political Science and International Relations (Q1); Economics and Econometrics (Q2); Finance (Q2)'), (9419, 'Russian Journal of Numerical Analysis and Mat', 15693988, 0.523, 'Q2', 21, 28, 776, 137, 97, '5', '1986-2020', 'Modeling and Simulation (Q2); Numerical Analysis (Q2)'), (9420, 'Small Ruminant Research', 9214488, 0.523, 'Q2', 81, 175, 7413, 1115, 656, '16', '1988-2020', 'Animal Science and Zoology (Q2); Food Animals (Q2)'), (9421, 'Zoosystematics and Evolution', 18600743, 0.523, 'Q2', 23, 40, 2520, 103, 86, '61', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (9422, 'Annales Geophysicae', 14320576, 0.522, 'Q2', 93, 93, 4814, 675, 326, '5', '1983-1985, 1988-1990, 1994-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2); Astronomy and Astrophysics (Q3); Atmospheric Science (Q3); Space and Planetary Science (Q3)'), (9423, 'Asian Economic Papers', 15360083, 0.522, 'Q1', 15, 22, 293, 78, 75, '2', '2008-2020', 'Political Science and International Relations (Q1); Economics and Econometrics (Q2); Finance (Q2)'), (9424, 'Canadian Journal of Neurological Sciences', 3171671, 0.522, 'Q3', 68, 173, 4058, 460, 283, '3', '1974-2020', 'Medicine (miscellaneous) (Q3); Neurology (Q3); Neurology (clinical) (Q3)'), (9425, 'Canadian Mathematical Bulletin', 14964287, 0.522, 'Q2', 29, 74, 1402, 227, 214, '9', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (9426, 'Contemporary Sociology', 19398638, 0.522, 'Q2', 22, 15, 77, 44, 22, '2', '1979, 1996-1998, 2000, 2002, 2004-2020', 'Sociology and Political Science (Q2)'), (9427, 'Education, Citizenship and Social Justice', 17461987, 0.522, 'Q2', 24, 34, 1805, 91, 61, '3', '2006-2020', 'Education (Q2)'), (9428, 'Journal of Developmental and Physical Disabil', 1056263, 0.522, 'Q2', 44, 85, 4464, 295, 162, '2', '1991-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Developmental and Educational Psychology (Q3)'), (9429, 'Journal of Orthoptera Research', 10826467, 0.522, 'Q2', 16, 19, 647, 56, 51, '2', '2001, 2005, 2008-2020', 'Insect Science (Q2)'), (9430, 'Journal of Sensor and Actuator Networks', 22242708, 0.522, 'Q2', 25, 45, 2148, 550, 134, '19', '2012-2020', 'Computer Networks and Communications (Q2); Control and Optimization (Q2); Instrumentation (Q2)'), (9431, 'Phlebology', 17581125, 0.522, 'Q3', 48, 128, 3333, 396, 228, '3', '1986-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (9432, 'Rubber Chemistry and Technology', 359475, 0.522, 'Q2', 65, 25, 1134, 254, 141, '2', '1970-1994, 1996-2020', 'Materials Chemistry (Q2); Polymers and Plastics (Q2)'), (9433, 'Seminars in Speech and Language', 10989056, 0.522, 'Q2', 41, 33, 1467, 178, 107, '2', '1984-1991, 1995-2020', 'LPN and LVN (Q2); Speech and Hearing (Q2)'), (9434, 'Sport in Society', 17430445, 0.522, 'Q1', 38, 236, 12473, 632, 375, '3', '2005-2020', 'Cultural Studies (Q1); Sports Science (Q3)'), (9435, 'Stochastics', 17442516, 0.522, 'Q2', 26, 78, 2137, 219, 162, '19', '1975, 1979-1984, 2007-2020', 'Modeling and Simulation (Q2); Statistics and Probability (Q3)'), (9436, 'Urban Rail Transit', 21996679, 0.522, 'Q2', 14, 21, 728, 146, 66, '5', '2015-2020', 'Automotive Engineering (Q2); Civil and Structural Engineering (Q2); Electrical and Electronic Engineering (Q2); Geography, Planning and Development (Q2); Transportation (Q2); Urban Studies (Q2)'), (9437, 'Africa', 19720, 0.521, 'Q1', 43, 45, 2398, 99, 136, '3', '1928-1940, 1943-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (9438, 'Biologia Plantarum', 15738264, 0.521, 'Q1', 79, 66, 3448, 493, 268, '16', '1959-2020', 'Horticulture (Q1); Plant Science (Q2)'), (9439, 'Computers and Composition', 87554615, 0.521, 'Q1', 35, 43, 2255, 159, 102, '3', '1983-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Computer Science (miscellaneous) (Q2); Education (Q2)'), (9440, 'European Journal for Sport and Society', 23805919, 0.521, 'Q2', 20, 33, 1829, 112, 56, '3', '2004-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Sociology and Political Science (Q2); Orthopedics and Sports Medicine (Q3)'), (9441, 'Health and Social Work', 15456854, 0.521, 'Q2', 55, 24, 717, 150, 109, '2', '1976-2020', 'Health (social science) (Q2); Social Work (Q3)'), (9442, 'Journal of Aerospace Engineering', 8931321, 0.521, 'Q2', 49, 103, 3514, 873, 444, '2', '1988-2020', 'Aerospace Engineering (Q2); Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (9443, 'Journal of Men s Studies, The', 10608265, 0.521, 'Q1', 13, 25, 1344, 77, 51, '2', '2012-2020', 'Cultural Studies (Q1); Gender Studies (Q2); Social Psychology (Q2)'), (9444, 'Journal of Thermal Analysis and Calorimetry', 15882926, 0.521, 'Q2', 92, 1509, 67058, 10063, 2808, '16', '1995-2020', 'Condensed Matter Physics (Q2); Physical and Theoretical Chemistry (Q2)'), (9445, 'Microscopy and Microanalysis', 14319276, 0.521, 'Q2', 69, 608, 7886, 731, 406, '3', '1995-2020', 'Instrumentation (Q2)'), (9446, 'Multisensory research', 22134808, 0.521, 'Q2', 50, 56, 3772, 227, 113, '16', '2013-2020', 'Computer Vision and Pattern Recognition (Q2); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Ophthalmology (Q3); Sensory Systems (Q4)'), (9447, 'Palaeobiodiversity and Palaeoenvironments', 18671608, 0.521, 'Q2', 34, 76, 6122, 149, 109, '5', '2010-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Geology (Q2); Paleontology (Q2); Global and Planetary Change (Q3)'), (9448, 'Palaontologische Zeitschrift', 18676812, 0.521, 'Q2', 27, 51, 3576, 182, 134, '5', '1914-1916, 1921-1924, 1926-1942, 1944, 1951-1997, 2007-2020', 'Paleontology (Q2)'), (9449, 'Parenting', 15295192, 0.521, 'Q2', 46, 28, 2054, 87, 67, '3', '2001-2020', 'Education (Q2); Social Psychology (Q2); Developmental and Educational Psychology (Q3)'), (9450, 'Skin Research and Technology', 16000846, 0.521, 'Q2', 69, 182, 4312, 624, 278, '3', '1995-2020', 'Dermatology (Q2); Medicine (miscellaneous) (Q3)'), (9451, 'Acta Ethologica', 14379546, 0.52, 'Q2', 30, 23, 1166, 108, 87, '5', '1998-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9452, 'Adult Education Quarterly', 7417136, 0.52, 'Q2', 47, 21, 940, 85, 48, '3', '1950-2020', 'Education (Q2); E-learning (Q2)'), (9453, 'Annals of Leisure Research', 11745398, 0.52, 'Q1', 22, 77, 5081, 284, 116, '2', '2008-2020', 'Cultural Studies (Q1); Geography, Planning and Development (Q2); Social Psychology (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (9454, 'Cognitive Systems Research', 13890417, 0.52, 'Q2', 49, 64, 2906, 1380, 339, '16', '1999-2020', 'Artificial Intelligence (Q2); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3)'), (9455, 'Decision Sciences Journal of Innovative Educa', 15404609, 0.52, 'Q2', 19, 28, 1300, 83, 50, '3', '2011-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2); Education (Q2)'), (9456, 'Europe s Journal of Psychology', 18410413, 0.52, 'Q2', 22, 42, 2330, 277, 150, '43', '2011-2020', 'Psychology (miscellaneous) (Q2)'), (9457, 'International Journal of Urban Sustainable De', 19463138, 0.52, 'Q2', 15, 35, 2070, 106, 59, '3', '2010-2020', 'Development (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Urban Studies (Q2)'), (9458, 'Ionics', 9477047, 0.52, 'Q2', 57, 598, 27421, 3475, 1362, '5', '1995-2020', 'Chemical Engineering (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (9459, 'Journal of Dynamical and Control Systems', 15738698, 0.52, 'Q2', 34, 66, 1527, 179, 120, '2', '1995-2020', 'Control and Optimization (Q2); Control and Systems Engineering (Q2); Algebra and Number Theory (Q3); Numerical Analysis (Q3)'), (9460, 'Journal of Family Therapy', 14676427, 0.52, 'Q2', 45, 42, 1539, 122, 93, '3', '1979-2020', 'Clinical Psychology (Q2); Social Psychology (Q2); Social Sciences (miscellaneous) (Q2)'), (9461, 'Journal of Seismology', 1573157, 0.52, 'Q2', 55, 79, 3904, 432, 274, '16', '1997-2020', 'Geophysics (Q2); Geochemistry and Petrology (Q3)'), (9462, 'Journal of Social Work Practice', 14653885, 0.52, 'Q1', 30, 60, 1942, 120, 97, '3', '1983-2020', 'Drug Guides (Q1); Health (social science) (Q2); Social Sciences (miscellaneous) (Q2); Social Work (Q3)'), (9463, 'Journal of the American Dental Association', 28177, 0.52, 'Q2', 116, 305, 4264, 954, 670, '2', '1946-2020', 'Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9464, 'Journal of wound care', 20522916, 0.52, 'Q2', 65, 244, 6705, 834, 414, '3', '1995-2020', 'Fundamentals and Skills (Q2); Nursing (miscellaneous) (Q2)'), (9465, 'Medical Gas Research', 20459912, 0.52, 'Q2', 24, 40, 1544, 245, 102, '4', '2011-2020', 'Anesthesiology and Pain Medicine (Q2); Neuroscience (miscellaneous) (Q3)'), (9466, 'Organogenesis', 15558592, 0.52, 'Q2', 49, 11, 530, 82, 43, '2', '2004-2005, 2007-2020', 'Transplantation (Q2); Biomedical Engineering (Q3); Embryology (Q3); Developmental Biology (Q4)'), (9467, 'Psychodynamic Psychiatry', 21622590, 0.52, 'Q2', 25, 22, 737, 53, 74, '2', '2012-2020', 'Clinical Psychology (Q2); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (9468, 'Research in Learning Technology', 21567077, 0.52, 'Q2', 26, 44, 1882, 194, 87, '3', '2012-2020', 'Computer Science Applications (Q2); Education (Q2)'), (9469, 'Semigroup Forum', 371912, 0.52, 'Q3', 38, 101, 1927, 231, 231, '2', '1970-2020', 'Algebra and Number Theory (Q3)'), (9470, 'Statistica Neerlandica', 390402, 0.52, 'Q3', 39, 31, 1084, 89, 71, '3', '1946, 1948-2020', 'Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (9471, 'Surface and Interface Analysis', 1422421, 0.52, 'Q2', 90, 162, 4513, 998, 525, '3', '1979-2020', 'Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)'), (9472, 'ACM Transactions on Economics and Computation', 21678375, 0.519, 'Q2', 18, 24, 902, 196, 51, '2', '2013-2020', 'Computational Mathematics (Q2); Computer Science (miscellaneous) (Q2); Economics and Econometrics (Q2); Marketing (Q2); Statistics and Probability (Q3)'), (9473, 'Biochemical Genetics', 62928, 0.519, 'Q2', 41, 56, 2916, 264, 126, '2', '1967-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Biochemistry (Q3); Genetics (Q3); Medicine (miscellaneous) (Q3); Molecular Biology (Q4)'), (9474, 'Case Studies in Structural Engineering', 22143998, 0.519, 'Q2', 11, 0, 0, 7, 2, '16', '2014-2017', 'Building and Construction (Q2); Civil and Structural Engineering (Q2)'), (9475, 'Communication Disorders Quarterly', 15257401, 0.519, 'Q1', 29, 49, 1840, 92, 77, '2', '1976, 1978-1990, 1992-1995, 1997-2020', 'Linguistics and Language (Q1); Speech and Hearing (Q2)'), (9476, 'Culture and Organization', 14772760, 0.519, 'Q1', 17, 38, 2794, 104, 73, '3', '2009-2020', 'Cultural Studies (Q1); Organizational Behavior and Human Resource Management (Q2)'), (9477, 'Educational Studies', 3055698, 0.519, 'Q2', 44, 123, 6140, 223, 126, '3', '1975-2020', 'Education (Q2)'), (9478, 'ERJ Open Research', 23120541, 0.519, 'Q3', 15, 1, 31, 9, 6, '19', '2015-2018, 2020', 'Pulmonary and Respiratory Medicine (Q3)'), (9479, 'Geographia Polonica', 167282, 0.519, 'Q1', 18, 31, 2024, 195, 86, '17', '1972, 1975-1986, 1988-1989, 1992-2020', 'Cultural Studies (Q1); Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2)'), (9480, 'History and Anthropology', 14772612, 0.519, 'Q1', 24, 57, 3353, 124, 134, '3', '1984-1987, 1989-2020', 'Anthropology (Q1); Cultural Studies (Q1); History (Q1)'), (9481, 'International Research in Geographical and En', 17477611, 0.519, 'Q2', 28, 40, 1702, 172, 67, '3', '1992-2020', 'Education (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)'), (9482, 'Iranian Biomedical Journal', 2008823, 0.519, 'Q2', 31, 53, 2192, 333, 149, '15', '1999-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Biochemistry (medical) (Q3); Clinical Biochemistry (Q3)'), (9483, 'Software-Intensive Cyber-Physical Systems', 25248510, 0.519, 'Q2', 29, 14, 396, 356, 101, '5', '2019-2020', 'Computational Theory and Mathematics (Q2); Computer Networks and Communications (Q2); Computer Science (miscellaneous) (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)'), (9484, 'Spatial Cognition and Computation', 13875868, 0.519, 'Q2', 33, 15, 993, 138, 41, '2', '2000, 2003-2020', 'Computer Graphics and Computer-Aided Design (Q2); Computer Vision and Pattern Recognition (Q2); Earth-Surface Processes (Q2); Modeling and Simulation (Q2); Experimental and Cognitive Psychology (Q3)'), (9485, 'Taiwan Journal of Ophthalmology', 22115056, 0.519, 'Q3', 9, 63, 1470, 153, 124, '4', '2011, 2013-2020', 'Ophthalmology (Q3)'), (9486, 'Acta Mathematica Sinica, English Series', 14397617, 0.518, 'Q2', 41, 101, 2302, 381, 367, '5', '1991-1992, 1996-2020', 'Applied Mathematics (Q2); Mathematics (miscellaneous) (Q2)'), (9487, 'Archives of Bone and Joint Surgery', 23454644, 0.518, 'Q2', 19, 110, 2574, 360, 225, '15', '2013-2020', 'Surgery (Q2); Orthopedics and Sports Medicine (Q3)'), (9488, 'Bioengineered', 21655987, 0.518, 'Q3', 34, 117, 5006, 517, 156, '3', '2012-2020', 'Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3)'), (9489, 'Cambridge Review of International Affairs', 9557571, 0.518, 'Q1', 39, 112, 6473, 173, 85, '3', '1986, 1988-2020', 'Political Science and International Relations (Q1)'), (9490, 'Clinical, Cosmetic and Investigational Dentis', 11791357, 0.518, 'Q2', 23, 60, 2098, 163, 92, '41', '2009-2020', 'Dentistry (miscellaneous) (Q2)'), (9491, 'Cognition, Technology and Work', 14355558, 0.518, 'Q1', 36, 90, 4996, 449, 150, '3', '2002-2020', 'Philosophy (Q1); Computer Science Applications (Q2); Human-Computer Interaction (Q2)'), (9492, 'Complex Analysis and Operator Theory', 16618262, 0.518, 'Q2', 23, 86, 2010, 440, 413, '19', '2007-2020', 'Applied Mathematics (Q2); Computational Mathematics (Q2); Computational Theory and Mathematics (Q2)'), (9493, 'Drugs: Education, Prevention and Policy', 14653370, 0.518, 'Q2', 42, 83, 4535, 328, 158, '3', '1994-2020', 'Health (social science) (Q2); Medicine (miscellaneous) (Q3)'), (9494, 'Dynamics of Atmospheres and Oceans', 3770265, 0.518, 'Q2', 46, 27, 1391, 175, 107, '16', '1976-2020', 'Geology (Q2); Oceanography (Q2); Atmospheric Science (Q3); Computers in Earth Sciences (Q3)'), (9495, 'Ecopsychology', 19429347, 0.518, 'Q2', 23, 39, 1422, 148, 92, '2', '2009-2020', 'Social Psychology (Q2); Applied Psychology (Q3)'), (9496, 'Endocrine, Metabolic and Immune Disorders - D', 18715303, 0.518, 'Q3', 52, 172, 11632, 675, 248, '52', '2006-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Immunology and Allergy (Q3)'), (9497, 'Holzforschung', 183830, 0.518, 'Q3', 75, 140, 5782, 754, 352, '5', '1947-2020', 'Biomaterials (Q3)'), (9498, 'Hortscience: A Publication of the American So', 185345, 0.518, 'Q1', 90, 306, 11261, 1393, 902, '2', '1977-1978, 1980-1981, 1983, 1985-2020', 'Horticulture (Q1)'), (9499, 'International Journal of Trade and Global Mar', 1742755, 0.518, 'Q1', 9, 33, 1467, 151, 85, '19', '2018, 2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2)'), (9500, 'Journal of Career Development', 8948453, 0.518, 'Q2', 45, 100, 5665, 335, 154, '2', '1972-1973, 1975-2020', 'Education (Q2); Organizational Behavior and Human Resource Management (Q2); Psychology (miscellaneous) (Q2); Applied Psychology (Q3)'), (9501, 'Journal of English Linguistics', 754242, 0.518, 'Q1', 29, 13, 747, 35, 39, '3', '1967-1981, 1983-1989, 1996-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (9502, 'Journal of Family Business Management', 20436238, 0.518, 'Q1', 16, 57, 4500, 216, 79, '3', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Strategy and Management (Q2)'), (9503, 'Journal of Hospitality and Tourism Education', 23256540, 0.518, 'Q2', 24, 34, 1910, 137, 66, '3', '1997-2013, 2015-2020', 'Education (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (9504, 'Journal of International Advanced Otology', 13087649, 0.518, 'Q3', 13, 88, 1853, 339, 266, '18', '2009-2020', 'Medicine (miscellaneous) (Q3); Otorhinolaryngology (Q3)'), (9505, 'Multilingua', 1678507, 0.518, 'Q1', 29, 50, 2214, 121, 91, '5', '1982-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2)'), (9506, 'New Zealand Veterinary Journal', 480169, 0.518, 'Q2', 54, 54, 1790, 251, 153, '3', '1952-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9507, 'Peer-to-Peer Networking and Applications', 19366450, 0.518, 'Q2', 32, 215, 7199, 1089, 321, '2', '2009-2020', 'Computer Networks and Communications (Q2); Software (Q2)'), (9508, 'Proceedings of the Institution of Civil Engin', 17550750, 0.518, 'Q2', 35, 23, 711, 123, 71, '3', '2008-2020', 'Building and Construction (Q2); Geotechnical Engineering and Engineering Geology (Q2); Mechanics of Materials (Q2); Soil Science (Q2)'), (9509, 'Proceedings of the Institution of Mechanical ', 17480078, 0.518, 'Q2', 29, 97, 3861, 439, 205, '3', '2006-2020', 'Safety, Risk, Reliability and Quality (Q2)'), (9510, 'Taiwanese Journal of Obstetrics and Gynecolog', 10284559, 0.518, 'Q3', 35, 211, 4998, 900, 525, '22', '2004-2020', 'Obstetrics and Gynecology (Q3)'), (9511, 'Cellular Reprogramming', 21524998, 0.517, 'Q3', 60, 36, 1579, 238, 119, '2', '2010-2020', 'Biotechnology (Q3); Cell Biology (Q4); Developmental Biology (Q4)'), (9512, 'Ecologia Austral', 3275477, 0.517, 'Q2', 30, 42, 2077, 203, 135, '46', '1991, 1993-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9513, 'European Journal of Contemporary Education', 23049650, 0.517, 'Q2', 14, 66, 2220, 409, 234, '53', '2016-2020', 'Education (Q2)'), (9514, 'Expert Systems with Applications: X', 25901885, 0.517, 'Q2', 4, 8, 487, 51, 9, '3', '2019-2020', 'Artificial Intelligence (Q2); Computer Science Applications (Q2); Engineering (miscellaneous) (Q2)'), (9515, 'Feminist Review', 14664380, 0.517, 'Q2', 45, 46, 1688, 113, 94, '3', '1994-2020', 'Arts and Humanities (miscellaneous) (Q2); Gender Studies (Q2)'), (9516, 'Interest Groups and Advocacy', 20477414, 0.517, 'Q2', 13, 31, 1364, 90, 58, '3', '2014-2020', 'Sociology and Political Science (Q2)'), (9517, 'Japanese Journal of Infectious Diseases', 13446304, 0.517, 'Q3', 54, 97, 1977, 411, 312, '6', '1961-1963, 1999-2020', 'Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3)'), (9518, 'Journal of Industrial Textiles', 15308057, 0.517, 'Q2', 37, 269, 11401, 967, 327, '3', '1971-1998, 2000-2020', 'Chemical Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2); Polymers and Plastics (Q2)'), (9519, 'Journal of Islamic Marketing', 17590833, 0.517, 'Q2', 39, 130, 10161, 1004, 266, '3', '2010-2020', 'Marketing (Q2)'), (9520, 'Journal of Microencapsulation', 2652048, 0.517, 'Q2', 78, 52, 2389, 557, 189, '3', '1984-2020', 'Organic Chemistry (Q2); Pharmaceutical Science (Q2); Physical and Theoretical Chemistry (Q2); Bioengineering (Q3); Colloid and Surface Chemistry (Q3)'), (9521, 'Journal of Preventive Medicine and Hygiene', 11212233, 0.517, 'Q2', 27, 69, 2313, 462, 185, '7', '1992-1995, 2004-2020', 'Public Health, Environmental and Occupational Health (Q2); Infectious Diseases (Q3)'), (9522, 'Medicine, Health Care and Philosophy', 15728633, 0.517, 'Q2', 41, 73, 3095, 308, 162, '16', '1998-2020', 'Education (Q2); Health Policy (Q2); Health (social science) (Q2)'), (9523, 'New Zealand Journal of Psychology', 112109, 0.517, 'Q2', 30, 6, 310, 53, 63, '41', '1996-2019', 'Psychology (miscellaneous) (Q2)'), (9524, 'Revista Brasileira de Engenharia Agricola e A', 14154366, 0.517, 'Q2', 35, 125, 3204, 550, 431, '14', '2006-2020', 'Agronomy and Crop Science (Q2); Environmental Engineering (Q2)'), (9525, 'Theoretical and Experimental Plant Physiology', 21970025, 0.517, 'Q2', 15, 27, 1639, 147, 84, '2', '2014-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2)'), (9526, 'Zoomorphology', 1432234, 0.517, 'Q2', 39, 41, 1835, 168, 129, '5', '1980-2020', 'Animal Science and Zoology (Q2); Developmental Biology (Q4)'), (9527, 'Algebra Universalis', 14208911, 0.516, 'Q2', 31, 56, 1024, 181, 206, '19', '1971-2020', 'Logic (Q2); Algebra and Number Theory (Q3)'), (9528, 'European Journal of Pediatric Surgery', 9397248, 0.516, 'Q2', 48, 111, 3260, 457, 242, '5', '1980-2020', 'Pediatrics, Perinatology and Child Health (Q2); Surgery (Q2)'), (9529, 'Global Finance Journal', 10440283, 0.516, 'Q2', 34, 68, 3733, 289, 109, '16', '1989-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (9530, 'High Altitude Medicine and Biology', 15578682, 0.516, 'Q2', 52, 76, 2003, 277, 166, '2', '2000-2020', 'Public Health, Environmental and Occupational Health (Q2); Medicine (miscellaneous) (Q3); Physiology (Q3); Sports Science (Q3)'), (9531, 'International and Comparative Law Quarterly', 205893, 0.516, 'Q1', 48, 27, 1735, 108, 115, '3', '1952-2020', 'Law (Q1); Political Science and International Relations (Q1)'), (9532, 'Journal of Divorce and Remarriage', 10502556, 0.516, 'Q1', 31, 35, 1662, 123, 115, '2', '1990-2020', 'Law (Q1); Demography (Q2)'), (9533, 'Knowledge Management Research and Practice', 14778238, 0.516, 'Q1', 38, 95, 6608, 459, 142, '3', '2006-2020', 'Library and Information Sciences (Q1); Business and International Management (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2); Management Science and Operations '), (9534, 'New Zealand Journal of Ecology', 1106465, 0.516, 'Q2', 47, 22, 1282, 112, 92, '41', '1980, 1982-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9535, 'Oeno One', 24941271, 0.516, 'Q1', 13, 79, 4020, 307, 122, '8', '2016-2020', 'Horticulture (Q1); Food Science (Q2)'), (9536, 'Research in Astronomy and Astrophysics', 16744527, 0.516, 'Q3', 47, 211, 11731, 1021, 470, '3', '2009-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (9537, 'Russian Meteorology and Hydrology', 10683739, 0.516, 'Q2', 18, 107, 2464, 295, 311, '10', '1993-2020', 'Fluid Flow and Transfer Processes (Q2); Water Science and Technology (Q2); Atmospheric Science (Q3)'), (9538, 'Amphibian and Reptile Conservation', 1083446, 0.515, 'Q2', 8, 48, 2064, 66, 55, '2', '2016-2020', 'Animal Science and Zoology (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Nature and Landscape Conservation (Q2)'), (9539, 'Applied Categorical Structures', 9272852, 0.515, 'Q2', 31, 36, 865, 157, 137, '16', '1993-2020', 'Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q2); Algebra and Number Theory (Q3)'), (9540, 'Australian Planner', 21506841, 0.515, 'Q2', 21, 24, 980, 67, 45, '3', '1982-2018, 2020', 'Geography, Planning and Development (Q2); Urban Studies (Q2)'), (9541, 'Clinical Nursing Research', 10547738, 0.515, 'Q2', 42, 117, 4591, 281, 154, '2', '1992-2020', 'Nursing (miscellaneous) (Q2)'), (9542, 'Hastings Center Report', 1552146, 0.515, 'Q1', 63, 117, 1488, 406, 275, '2', '1971-2020', 'Philosophy (Q1); Health Policy (Q2); Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2)'), (9543, 'Health Promotion Journal of Australia', 10361073, 0.515, 'Q2', 32, 151, 5785, 286, 153, '11', '2005-2020', 'Community and Home Care (Q2); Public Health, Environmental and Occupational Health (Q2)'), (9544, 'Imaging Science in Dentistry', 22337830, 0.515, 'Q2', 22, 44, 1077, 220, 119, '13', '2011-2020', 'Dentistry (miscellaneous) (Q2); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (9545, 'International Journal of Gastronomy and Food ', 18784518, 0.515, 'Q1', 18, 77, 3669, 372, 123, '16', '2012, 2014-2020', 'Cultural Studies (Q1); Food Science (Q2)'), (9546, 'International Journal of Tourism Cities', 20565615, 0.515, 'Q2', 12, 58, 3844, 334, 131, '3', '2015-2020', 'Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (9547, 'Journal of African Archaeology', 16121651, 0.515, 'Q1', 24, 12, 857, 32, 29, '5', '2003-2019', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1); Visual Arts and Performing Arts (Q1)'), (9548, 'Journal of Atmospheric and Solar-Terrestrial ', 13646826, 0.515, 'Q2', 89, 180, 8954, 1256, 620, '3', '1997-2020', 'Geophysics (Q2); Atmospheric Science (Q3); Space and Planetary Science (Q3)'), (9549, 'Journal of Chemotherapy', 1120009, 0.515, 'Q3', 50, 89, 3205, 309, 181, '3', '1989-2020', 'Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Oncology (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (9550, 'Journal of Craniofacial Surgery', 10492275, 0.515, 'Q2', 73, 926, 3332, 2359, 2485, '2', '1990-2020', 'Surgery (Q2); Medicine (miscellaneous) (Q3); Otorhinolaryngology (Q3)'), (9551, 'Journal of Law, Medicine and Ethics', 1748720, 0.515, 'Q2', 57, 146, 6528, 420, 283, '2', '1973-2020', 'Health Policy (Q2); Issues, Ethics and Legal Aspects (Q2); Medicine (miscellaneous) (Q3)'), (9552, 'Journal of Medical Screening', 9691413, 0.515, 'Q2', 64, 51, 1394, 191, 111, '3', '1994-2020', 'Health Policy (Q2); Public Health, Environmental and Occupational Health (Q2)'), (9553, 'Legal Medicine', 18734162, 0.515, 'Q2', 44, 105, 3168, 368, 251, '16', '1999-2020', 'Issues, Ethics and Legal Aspects (Q2); Pathology and Forensic Medicine (Q2)'), (9554, 'Seminars in Pediatric Neurology', 10719091, 0.515, 'Q2', 57, 34, 2184, 258, 138, '3', '1994-2020', 'Pediatrics, Perinatology and Child Health (Q2); Neurology (clinical) (Q3)'), (9555, 'Ultrasonic Imaging', 1617346, 0.515, 'Q3', 47, 20, 847, 128, 69, '2', '1979-2020', 'Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (9556, 'Western Pacific surveillance and response jou', 20947313, 0.515, 'Q3', 16, 13, 0, 80, 74, '63', '2013-2019', 'Medicine (miscellaneous) (Q3)'), (9557, 'DESIDOC Journal of Library and Information Te', 9740643, 0.514, 'Q1', 13, 53, 1271, 212, 171, '4', '2012-2020', 'Library and Information Sciences (Q1)'), (9558, 'Indian Journal of Dermatology, Venereology an', 3786323, 0.514, 'Q2', 45, 205, 2229, 469, 214, '4', '1976-1982, 1985-1995, 2002-2020', 'Dermatology (Q2); Infectious Diseases (Q3)'), (9559, 'Information and Communications Technology Law', 13600834, 0.514, 'Q1', 17, 20, 0, 121, 46, '3', '1992-2001, 2003-2020', 'Law (Q1); Communication (Q2); Computer Science Applications (Q2)'), (9560, 'Information and Computation', 10902651, 0.514, 'Q2', 77, 127, 4126, 414, 252, '2', '1987-2020', 'Computational Theory and Mathematics (Q2); Computer Science Applications (Q2); Information Systems (Q2); Theoretical Computer Science (Q2)'), (9561, 'International Journal of Precision Engineerin', 22347593, 0.514, 'Q2', 50, 202, 6077, 1292, 632, '13', '2008-2020', 'Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)'), (9562, 'Journal of Environmental Engineering and Land', 18224199, 0.514, 'Q2', 28, 19, 770, 222, 83, '69', '2004-2020', 'Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Nature and Landscape Conservation (Q2)'), (9563, 'Journal of Molluscan Studies', 14643766, 0.514, 'Q2', 46, 36, 2082, 175, 131, '3', '1899, 1903, 1928, 1935-1940, 1942-1969, 1971-1974, 1976-1978, 1981-1984, 1986-2020', 'Animal Science and Zoology (Q2); Aquatic Science (Q2)'), (9564, 'Journal of Research in International Educatio', 14752409, 0.514, 'Q2', 28, 15, 676, 61, 50, '3', '2002-2020', 'Education (Q2)'), (9565, 'Korean Journal of Physiology and Pharmacology', 20933827, 0.514, 'Q3', 29, 56, 2231, 368, 204, '13', '1997-2020', 'Pharmacology (Q3); Physiology (Q3)'), (9566, 'Motor Control', 10871640, 0.514, 'Q2', 46, 38, 1781, 124, 93, '2', '1997-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Neurology (clinical) (Q3); Physiology (medical) (Q3); Sports Science (Q3)'), (9567, 'Phytocoenologia', 340269, 0.514, 'Q2', 34, 16, 1180, 116, 68, '5', '1987, 1989, 1996-2020', 'Plant Science (Q2)'), (9568, 'Tohoku Journal of Experimental Medicine', 13493329, 0.514, 'Q2', 59, 107, 3693, 593, 312, '6', '1920-1945, 1947-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9569, 'Acta Cytologica', 15547, 0.513, 'Q2', 57, 82, 3022, 356, 177, '19', '1960-2020', 'Pathology and Forensic Medicine (Q2); Histology (Q3); Medicine (miscellaneous) (Q3)'), (9570, 'Advanced Manufacturing: Polymer and Composite', 20550359, 0.513, 'Q2', 13, 20, 811, 115, 43, '3', '2015-2020', 'Electrical and Electronic Engineering (Q2); Management of Technology and Innovation (Q2); Polymers and Plastics (Q2)'), (9571, 'Baltic Journal of Management', 17465265, 0.513, 'Q2', 28, 45, 3383, 289, 102, '3', '2006-2020', 'Business and International Management (Q2); Management of Technology and Innovation (Q2); Marketing (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)'), (9572, 'Economic Research-Ekonomska Istrazivanja', 1331677, 0.513, 'Q2', 27, 328, 18413, 1309, 439, '3', '2000-2020', 'Economics and Econometrics (Q2)'), (9573, 'Hellenic Journal of Cardiology', 22415955, 0.513, 'Q3', 19, 176, 4094, 504, 110, '39', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (9574, 'International Journal of Automation Technolog', 18838022, 0.513, 'Q2', 18, 111, 2714, 424, 293, '6', '2011-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2)'), (9575, 'International Journal of Conflict Management', 10444068, 0.513, 'Q2', 53, 43, 3515, 247, 110, '3', '1990-2020', 'Communication (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (9576, 'Iranian Endodontic Journal', 20082746, 0.513, 'Q2', 22, 36, 1574, 333, 252, '15', '2016-2020', 'Dentistry (miscellaneous) (Q2)'), (9577, 'Journal of Crystal Growth', 220248, 0.513, 'Q2', 149, 451, 12968, 3052, 1675, '16', '1967-2020', 'Condensed Matter Physics (Q2); Inorganic Chemistry (Q2); Materials Chemistry (Q2)'), (9578, 'Journal of Nondestructive Evaluation', 15734862, 0.513, 'Q2', 43, 87, 3154, 561, 261, '2', '1980-1982, 1984-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (9579, 'Journal of Organizational Change Management', 9534814, 0.513, 'Q2', 70, 76, 5408, 485, 233, '3', '1988-2020', 'Decision Sciences (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)'), (9580, 'Journal of Wine Economics', 1931437, 0.513, 'Q1', 7, 24, 613, 84, 51, '3', '2018-2020', 'Horticulture (Q1); Business, Management and Accounting (miscellaneous) (Q2); Food Science (Q2)'), (9581, 'Journal on Mathematics Education', 24070610, 0.513, 'Q2', 18, 30, 1292, 243, 79, '21', '2010-2020', 'Education (Q2); Mathematics (miscellaneous) (Q2)'), (9582, 'Plasma Chemistry and Plasma Processing', 2724324, 0.513, 'Q2', 65, 95, 4235, 735, 264, '2', '1981-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q2); Surfaces, Coatings and Films (Q2)'), (9583, 'Polar Geography', 19390513, 0.513, 'Q2', 27, 21, 1499, 127, 53, '3', '1977-1979, 1995-2005, 2007-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (9584, 'Pramana - Journal of Physics', 3044289, 0.513, 'Q2', 52, 164, 6212, 1313, 548, '4', '1973-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (9585, 'Random Matrices: Theory and Application', 20103263, 0.513, 'Q2', 22, 54, 1585, 85, 50, '37', '2012-2020', 'Discrete Mathematics and Combinatorics (Q2); Algebra and Number Theory (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (9586, 'Review of International Economics', 9657576, 0.513, 'Q2', 58, 68, 2684, 164, 168, '3', '1992-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (9587, 'Annals of Rehabilitation Medicine', 22340653, 0.512, 'Q2', 27, 55, 1360, 486, 321, '13', '2012-2020', 'Rehabilitation (Q2)'), (9588, 'Asian Pacific Journal of Cancer Prevention', 15137368, 0.512, 'Q2', 75, 526, 16148, 3024, 1549, '40', '2000-2020', 'Public Health, Environmental and Occupational Health (Q2); Oncology (Q3); Cancer Research (Q4); Epidemiology (Q4)'), (9589, 'Canadian Journal of Human Sexuality', 22917063, 0.512, 'Q2', 35, 23, 1024, 108, 80, '9', '1994, 1996-2020', 'Psychology (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)'), (9590, 'Central European Journal of Energetic Materia', 17337178, 0.512, 'Q2', 25, 28, 917, 192, 142, '17', '2009, 2011-2020', 'Materials Chemistry (Q2); Organic Chemistry (Q3)'), (9591, 'Chemoecology', 14230445, 0.512, 'Q2', 51, 29, 1537, 109, 61, '19', '1990-1994, 1996, 1998-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Biochemistry (Q3)'), (9592, 'Cytopathology', 13652303, 0.512, 'Q3', 48, 130, 2428, 472, 268, '3', '1990-2020', 'Histology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)'), (9593, 'Geotechnical and Geological Engineering', 9603182, 0.512, 'Q1', 56, 470, 15706, 1685, 890, '16', '1991-2020', 'Architecture (Q1); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Soil Science (Q2)'), (9594, 'International Journal of Environmental Scienc', 17351472, 0.512, 'Q2', 75, 533, 25912, 3388, 1255, '15', '2005-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Engineering (Q2); Environmental Chemistry (Q3)'), (9595, 'Internet Reference Services Quarterly', 15404749, 0.512, 'Q1', 19, 4, 141, 19, 19, '2', '1996-2002, 2004-2019', 'Library and Information Sciences (Q1); E-learning (Q2)'), (9596, 'JAOCS, Journal of the American Oil Chemists ', 15589331, 0.512, 'Q2', 117, 124, 4510, 767, 388, '5', '1947-2020', 'Chemical Engineering (miscellaneous) (Q2); Organic Chemistry (Q2)'), (9597, 'Journal of Global Mobility', 20498802, 0.512, 'Q2', 18, 19, 1594, 120, 60, '3', '2013-2020', 'Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q2)'), (9598, 'Journal of Natural Medicines', 13403443, 0.512, 'Q2', 46, 93, 2431, 667, 278, '5', '2006-2020', 'Complementary and Alternative Medicine (Q2); Organic Chemistry (Q2); Pharmaceutical Science (Q2); Drug Discovery (Q3); Medicine (miscellaneous) (Q3)'), (9599, 'Rehabilitation Counseling Bulletin', 343552, 0.512, 'Q2', 41, 41, 1928, 107, 64, '2', '1994-2020', 'Public Health, Environmental and Occupational Health (Q2); Rehabilitation (Q2); Applied Psychology (Q3)'), (9600, 'Scientia Pharmaceutica', 22180532, 0.512, 'Q2', 41, 57, 2933, 423, 121, '19', '1949, 1960-1961, 1973-2020', 'Pharmaceutical Science (Q2)'), (9601, 'Toxicology and Industrial Health', 7482337, 0.512, 'Q2', 57, 101, 3957, 584, 238, '3', '1985-2020', 'Public Health, Environmental and Occupational Health (Q2); Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)'), (9602, 'Academic Pathology', 23742895, 0.511, 'Q3', 9, 68, 1239, 152, 99, '3', '2014-2020', 'Pathology and Forensic Medicine (Q3)'), (9603, 'Acta Entomologica Musei Nationalis Pragae', 18046487, 0.511, 'Q2', 20, 41, 1816, 126, 159, '31', '2005-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (9604, 'Big Data and Cognitive Computing', 25042289, 0.511, 'Q2', 12, 39, 2547, 406, 95, '19', '2017-2020', 'Artificial Intelligence (Q2); Computer Science Applications (Q2); Information Systems (Q2); Management Information Systems (Q2)'), (9605, 'Earth Science Informatics', 18650473, 0.511, 'Q2', 22, 118, 5049, 342, 131, '5', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (9606, 'Frontiers in Built Environment', 22973362, 0.511, 'Q2', 18, 210, 9286, 682, 291, '19', '2015-2020', 'Building and Construction (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2)'), (9607, 'International Journal of Mass Spectrometry', 13873806, 0.511, 'Q2', 112, 112, 4829, 1046, 538, '16', '1998-2020', 'Condensed Matter Physics (Q2); Instrumentation (Q2); Physical and Theoretical Chemistry (Q2); Spectroscopy (Q3)'), (9608, 'Journal of Cognitive Engineering and Decision', 21695032, 0.511, 'Q2', 31, 14, 665, 198, 72, '2', '2007-2020', 'Computer Science Applications (Q2); Engineering (miscellaneous) (Q2); Applied Psychology (Q3); Human Factors and Ergonomics (Q3)'), (9609, 'Journal of Food Processing and Preservation', 1458892, 0.511, 'Q2', 48, 671, 28493, 3086, 1463, '2', '1977-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Food Science (Q2)'), (9610, 'Journal of Geometric Mechanics', 19414889, 0.511, 'Q2', 17, 27, 801, 80, 68, '2', '2011-2020', 'Applied Mathematics (Q2); Control and Optimization (Q2); Mechanics of Materials (Q2); Geometry and Topology (Q3)'), (9611, 'Journal of Health Care for the Poor and Under', 10492089, 0.511, 'Q2', 59, 158, 5379, 443, 317, '2', '1990-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (9612, 'Journal of Natural History', 222933, 0.511, 'Q2', 46, 120, 6154, 470, 449, '3', '1967-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (9613, 'Journal of Neurogenetics', 15635260, 0.511, 'Q3', 35, 65, 4611, 124, 86, '3', '1983-1987, 1989-2020', 'Genetics (Q3); Cellular and Molecular Neuroscience (Q4)'), (9614, 'Journal of Pesticide Sciences', 13490923, 0.511, 'Q2', 37, 32, 1361, 206, 99, '6', '1975-2020', 'Insect Science (Q2); Health, Toxicology and Mutagenesis (Q3)'), (9615, 'Journal of Primary Prevention', 278095, 0.511, 'Q2', 53, 41, 1688, 223, 108, '2', '1981-2020', 'Public Health, Environmental and Occupational Health (Q2)'), (9616, 'Journal of Transportation Engineering Part B:', 25735438, 0.511, 'Q2', 8, 86, 2796, 216, 113, '2', '2017-2020', 'Civil and Structural Engineering (Q2); Transportation (Q2)'), (9617, 'Micron', 18784291, 0.511, 'Q2', 84, 84, 3420, 791, 374, '3', '1971, 1977-1983, 1993-2020', 'Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Structural Biology (Q3); Cell Biology (Q4)'), (9618, 'Pharmaceutical Development and Technology', 10837450, 0.511, 'Q2', 58, 127, 6090, 994, 369, '2', '1996-2020', 'Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3)'), (9619, 'PhytoKeys', 13142003, 0.511, 'Q2', 16, 191, 6557, 463, 347, '61', '2014-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (9620, 'Psychologica Belgica', 332879, 0.511, 'Q2', 33, 25, 1315, 89, 60, '24', '1978, 1996-2020', 'Psychology (miscellaneous) (Q2)'), (9621, 'Social Inclusion', 21832803, 0.511, 'Q2', 17, 122, 5164, 423, 247, '26', '2013-2020', 'Social Psychology (Q2); Sociology and Political Science (Q2)'), (9622, 'Young', 11033088, 0.511, 'Q2', 31, 38, 1906, 155, 91, '2', '1993-2020', 'Health (social science) (Q2); Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3)'), (9623, 'American Anthropologist', 27294, 0.51, 'Q1', 85, 126, 5466, 366, 194, '2', '1888-1959, 1961, 1963, 1965-1966, 1970-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q2)'), (9624, 'British Food Journal', 7070, 0.51, 'Q2', 80, 267, 16093, 2045, 743, '3', '1899-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Food Science (Q2)'), (9625, 'Cognitive Processing', 16124782, 0.51, 'Q2', 44, 57, 3473, 263, 151, '5', '2005-2020', 'Artificial Intelligence (Q2); Cognitive Neuroscience (Q3); Experimental and Cognitive Psychology (Q3); Medicine (miscellaneous) (Q3)'), (9626, 'Cultural Studies - Critical Methodologies', 15327086, 0.51, 'Q1', 33, 61, 2434, 199, 152, '2', '2001-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)'), (9627, 'Current Plant Biology', 22146628, 0.51, 'Q2', 16, 51, 3149, 159, 65, '16', '2014-2020', 'Plant Science (Q2); Biochemistry (Q3); Genetics (Q3); Cell Biology (Q4); Developmental Biology (Q4)'), (9628, 'Facets', 23711671, 0.51, 'Q1', 9, 57, 3768, 186, 91, '9', '2018-2020', 'Multidisciplinary (Q1)'), (9629, 'Frontline Learning Research', 22953159, 0.51, 'Q2', 7, 33, 1569, 56, 33, '24', '2018-2020', 'Education (Q2)'), (9630, 'International Journal of Design', 1994036, 0.51, 'Q2', 40, 23, 1473, 147, 52, '22', '2007-2020', 'Computer Graphics and Computer-Aided Design (Q2); Industrial and Manufacturing Engineering (Q2); Marketing (Q2); Strategy and Management (Q2)'), (9631, 'Journal of Information Technology Education:R', 15393585, 0.51, 'Q2', 19, 31, 1864, 178, 73, '2', '2011-2020', 'Computer Science (miscellaneous) (Q2); Education (Q2); E-learning (Q2)'), (9632, 'Journal of Venomous Animals and Toxins Includ', 16789199, 0.51, 'Q2', 30, 47, 2685, 359, 106, '3', '2006-2020', 'Animal Science and Zoology (Q2); Infectious Diseases (Q3); Parasitology (Q3); Toxicology (Q3)'), (9633, 'Journal of Veterinary Medical Science', 13477439, 0.51, 'Q2', 60, 294, 8306, 1302, 641, '6', '1991-2020', 'Veterinary (miscellaneous) (Q2)'), (9634, 'Pharmacology', 317012, 0.51, 'Q3', 59, 84, 3111, 456, 238, '19', '1959-2020', 'Medicine (miscellaneous) (Q3); Pharmacology (Q3)'), (9635, 'Physica Status Solidi (B): Basic Research', 15213951, 0.51, 'Q2', 109, 413, 17268, 1933, 1019, '5', '1961-2020', 'Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (9636, 'Reading and Writing Quarterly', 15210693, 0.51, 'Q1', 38, 49, 2979, 166, 110, '3', '1992-2020', 'Linguistics and Language (Q1); Education (Q2)'), (9637, 'REVESCO Revista de Estudios Cooperativos', 18858031, 0.51, 'Q2', 11, 42, 2239, 135, 99, '12', '2011-2020', 'Economics and Econometrics (Q2); Social Sciences (miscellaneous) (Q2)'), (9638, 'Rudarsko Geolosko Naftni Zbornik', 3534529, 0.51, 'Q2', 12, 36, 1327, 160, 105, '58', '1994-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Energy (miscellaneous) (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Water Science and Technology (Q2)'), (9639, 'Science and Technology for the Built Environm', 2374474, 0.51, 'Q2', 58, 154, 5546, 577, 320, '3', '2015-2020', 'Building and Construction (Q2); Environmental Engineering (Q2); Fluid Flow and Transfer Processes (Q2)'), (9640, 'Scientia Marina', 18868134, 0.51, 'Q2', 68, 38, 2382, 208, 137, '12', '1996-2020', 'Aquatic Science (Q2); Oceanography (Q2)'), (9641, 'Simulation and Gaming', 1552826, 0.51, 'Q2', 60, 54, 2478, 263, 115, '2', '1970-1976, 1978-1983, 1985, 1987-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Computer Science Applications (Q2)'), (9642, 'Archives of Plastic Surgery', 22346163, 0.509, 'Q2', 31, 104, 1731, 406, 257, '13', '2012-2020', 'Surgery (Q2)'), (9643, 'Biodiversity Data Journal', 13142828, 0.509, 'Q2', 21, 145, 6434, 360, 238, '61', '2013-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9644, 'Bioscience, Biotechnology and Biochemistry', 9168451, 0.509, 'Q2', 116, 295, 10550, 1703, 890, '3', '1988-1989, 1992-2020', 'Analytical Chemistry (Q2); Applied Microbiology and Biotechnology (Q3); Biochemistry (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3); Organic Chemistry (Q3); Molecular Biology (Q4)'), (9645, 'Chemical Physics Letters', 92614, 0.509, 'Q2', 235, 991, 38409, 5574, 2459, '16', '1967-2020', 'Physical and Theoretical Chemistry (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (9646, 'Culture and Psychology', 14617056, 0.509, 'Q1', 46, 67, 2958, 146, 88, '3', '1995-2020', 'Anthropology (Q1); Cultural Studies (Q1); Sociology and Political Science (Q2); Social Psychology (Q3)'), (9647, 'International Review of Economics Education', 14773880, 0.509, 'Q2', 18, 21, 804, 125, 64, '3', '2003-2011, 2013-2020', 'Education (Q2)'), (9648, 'Italian Journal of Agronomy', 11254718, 0.509, 'Q2', 24, 39, 1736, 283, 120, '7', '2008-2020', 'Agronomy and Crop Science (Q2)'), (9649, 'Journal of Applied Statistics', 2664763, 0.509, 'Q3', 57, 334, 11055, 760, 515, '3', '1970-1971, 1973-2020', 'Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (9650, 'Journal of Crustacean Biology', 1937240, 0.509, 'Q2', 54, 98, 6134, 369, 272, '16', '1984, 1992-2020', 'Aquatic Science (Q2)'), (9651, 'Journal of Healthcare Engineering', 20402295, 0.509, 'Q2', 29, 132, 5088, 1711, 508, '32', '2010-2020', 'Surgery (Q2); Biomedical Engineering (Q3); Biotechnology (Q3); Health Informatics (Q3)'), (9652, 'Journal of Shellfish Research', 7308000, 0.509, 'Q2', 62, 64, 3781, 352, 250, '2', '1993-2020', 'Aquatic Science (Q2)'), (9653, 'Journal of Trust Research', 2151559, 0.509, 'Q3', 16, 6, 345, 70, 32, '2', '2011-2020', 'Applied Psychology (Q3); Social Psychology (Q3)'), (9654, 'Natural Gas Geoscience', 16721926, 0.509, 'Q2', 29, 154, 5118, 598, 524, '1', '2013-2020', 'Geology (Q2)'), (9655, 'Occupational Medicine', 9627480, 0.509, 'Q2', 85, 161, 2179, 533, 318, '3', '1948-1949, 1951-2020', 'Public Health, Environmental and Occupational Health (Q2); Medicine (miscellaneous) (Q3)'), (9656, 'Physiotherapy Research International', 14712865, 0.509, 'Q2', 49, 75, 2653, 212, 116, '2', '1996-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (9657, 'Reviews on Recent Clinical Trials', 15748871, 0.509, 'Q3', 31, 44, 1867, 185, 118, '52', '2006-2020', 'Medicine (miscellaneous) (Q3); Pharmacology (Q3)'), (9658, 'Advances in Mental Health', 18387357, 0.508, 'Q3', 17, 31, 980, 92, 50, '3', '2010-2020', 'Psychiatry and Mental Health (Q3)'), (9659, 'Anti-Cancer Agents in Medicinal Chemistry', 18715206, 0.508, 'Q3', 96, 232, 14858, 1422, 577, '52', '2005-2018', 'Molecular Medicine (Q3); Pharmacology (Q3); Cancer Research (Q4)'), (9660, 'China Communications', 16735447, 0.508, 'Q2', 42, 227, 6632, 2012, 607, '1', '2008-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2)'), (9661, 'International Journal of Impotence Research', 14765489, 0.508, 'Q2', 84, 209, 5568, 380, 158, '3', '1993-2020', 'Urology (Q2)'), (9662, 'International Journal of Sustainable Energy', 1478646, 0.508, 'Q2', 28, 80, 3921, 401, 185, '3', '2003, 2005-2020', 'Energy (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q2); Fuel Technology (Q2); Process Chemistry and Technology (Q2); Renewable Energy, Sustainability and the Environment (Q2)'), (9663, 'Journal of Back and Musculoskeletal Rehabilit', 18786324, 0.508, 'Q2', 29, 123, 4189, 624, 428, '16', '1992-2000, 2002-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)'), (9664, 'Journal of Education for Business', 8832323, 0.508, 'Q2', 46, 94, 2728, 232, 161, '1', '1996-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Education (Q2)'), (9665, 'Law, Innovation and Technology', 1757997, 0.508, 'Q1', 15, 12, 0, 98, 35, '3', '2009-2020', 'Law (Q1); Artificial Intelligence (Q2); Computer Science Applications (Q2); Computer Science (miscellaneous) (Q2); Biotechnology (Q3)'), (9666, 'Marine Geophysical Researches', 15730581, 0.508, 'Q2', 48, 21, 1071, 255, 104, '16', '1970-1998, 2000-2020', 'Geophysics (Q2); Oceanography (Q2); Geochemistry and Petrology (Q3)'), (9667, 'Polar Research', 17518369, 0.508, 'Q2', 49, 24, 1112, 180, 115, '3', '1982-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Oceanography (Q2); Environmental Chemistry (Q3)'), (9668, 'Reading Psychology', 2702711, 0.508, 'Q1', 38, 43, 2370, 110, 93, '3', '1979-2020', 'Linguistics and Language (Q1); Education (Q2); Developmental and Educational Psychology (Q3)'), (9669, 'Small-scale Forestry', 18737617, 0.508, 'Q2', 24, 30, 1517, 153, 86, '16', '2008-2020', 'Forestry (Q2)'), (9670, 'Advances in Cognitive Psychology', 18951171, 0.507, 'Q2', 31, 29, 1644, 106, 71, '17', '2007-2020', 'Clinical Psychology (Q2); Psychology (miscellaneous) (Q2); Applied Psychology (Q3); Experimental and Cognitive Psychology (Q3); Neuroscience (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (9671, 'Animal Cells and Systems', 21512485, 0.507, 'Q2', 13, 43, 1446, 244, 162, '3', '2008-2020', 'Animal Science and Zoology (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (9672, 'Asian Pacific Journal of Tropical Biomedicine', 22211691, 0.507, 'Q2', 61, 67, 2672, 936, 335, '16', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2)'), (9673, 'AStA Advances in Statistical Analysis', 1863818, 0.507, 'Q2', 28, 35, 1242, 108, 72, '5', '2008-2020', 'Applied Mathematics (Q2); Economics and Econometrics (Q2); Modeling and Simulation (Q2); Social Sciences (miscellaneous) (Q2); Analysis (Q3); Statistics and Probability (Q3)'), (9674, 'Behaviormetrika', 3857417, 0.507, 'Q2', 8, 22, 841, 78, 72, '6', '1986, 2017-2020', 'Applied Mathematics (Q2); Clinical Psychology (Q2); Analysis (Q3); Experimental and Cognitive Psychology (Q3)'), (9675, 'Interactive Technology and Smart Education', 17415659, 0.507, 'Q2', 19, 33, 1991, 171, 74, '3', '2004-2020', 'Computer Science (miscellaneous) (Q2); Education (Q2); E-learning (Q2)'), (9676, 'Izvestiya, Physics of the Solid Earth', 10693513, 0.507, 'Q2', 24, 71, 2666, 233, 225, '10', '1996-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)'), (9677, 'Journal of Aquatic Animal Health', 8997659, 0.507, 'Q3', 52, 21, 825, 182, 100, '2', '1989-2020', 'Aquatic Science (Q3)'), (9678, 'Journal of Chinese Governance', 23812354, 0.507, 'Q1', 9, 48, 2613, 125, 68, '3', '2016-2020', 'Political Science and International Relations (Q1); Public Administration (Q2); Sociology and Political Science (Q2)'), (9679, 'Journal of Food Biochemistry', 17454514, 0.507, 'Q2', 47, 394, 19252, 1857, 747, '2', '1977-2020', 'Food Science (Q2); Biophysics (Q3); Pharmacology (Q3); Cell Biology (Q4)'), (9680, 'Journal of Food Process Engineering', 1458876, 0.507, 'Q2', 45, 297, 12496, 1937, 828, '2', '1977-2020', 'Chemical Engineering (miscellaneous) (Q2); Food Science (Q2)'), (9681, 'Journal of Geographical Systems', 14355949, 0.507, 'Q2', 55, 27, 1182, 110, 61, '5', '1999-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)'), (9682, 'Journal of International and Intercultural Co', 17513065, 0.507, 'Q1', 21, 33, 1929, 90, 58, '2', '2008-2020', 'Cultural Studies (Q1); Communication (Q2)'), (9683, 'Journal of Policy Research in Tourism, Leisur', 19407963, 0.507, 'Q2', 23, 50, 2864, 185, 73, '2', '2009-2020', 'Geography, Planning and Development (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (9684, 'Nongye Jixie Xuebao/Transactions of the Chine', 10001298, 0.507, 'Q2', 42, 711, 21561, 3728, 2018, '1', '2001-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (9685, 'Patient Safety in Surgery', 17549493, 0.507, 'Q2', 23, 46, 1384, 192, 106, '3', '2010-2020', 'Anesthesiology and Pain Medicine (Q2); Surgery (Q2); Orthopedics and Sports Medicine (Q3)'), (9686, 'Systematic Botany', 15482324, 0.507, 'Q2', 74, 65, 2580, 298, 236, '2', '1994-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2); Genetics (Q3)'), (9687, 'Applied Spatial Analysis and Policy', 18744621, 0.506, 'Q2', 22, 65, 3524, 212, 106, '16', '2009-2020', 'Geography, Planning and Development (Q2)'), (9688, 'Hypatia', 8875367, 0.506, 'Q1', 28, 46, 1946, 136, 144, '2', '1986-1999, 2001-2002, 2004, 2006, 2011-2020', 'Philosophy (Q1); Gender Studies (Q2)'), (9689, 'IEEE Transactions on Very Large Scale Integra', 15579999, 0.506, 'Q2', 105, 257, 8001, 2867, 878, '2', '1993-2020', 'Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Software (Q2)'), (9690, 'International Journal of Environmental Health', 9603123, 0.506, 'Q2', 49, 146, 7345, 452, 192, '3', '1991-2020', 'Pollution (Q2); Public Health, Environmental and Occupational Health (Q2); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3)'), (9691, 'Journal of Food Measurement and Characterizat', 21934134, 0.506, 'Q2', 20, 341, 15119, 1994, 875, '2', '2012-2020', 'Chemical Engineering (miscellaneous) (Q2); Food Science (Q2); Industrial and Manufacturing Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)'), (9692, 'Journal of Japanese Linguistics', 25121413, 0.506, 'Q1', 2, 10, 293, 6, 8, '5', '2019-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (9693, 'Journal of Manufacturing and Materials Proces', 25044494, 0.506, 'Q2', 9, 94, 3650, 247, 96, '19', '2019-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (9694, 'Letters in Biomathematics', 23737867, 0.506, 'Q2', 8, 6, 185, 127, 52, '3', '2014-2020', 'Applied Mathematics (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Statistics and Probability (Q3)'), (9695, 'Metaphor and Symbol', 15327868, 0.506, 'Q1', 26, 19, 891, 77, 53, '2', '2007-2020', 'Linguistics and Language (Q1); Communication (Q2); Experimental and Cognitive Psychology (Q3)'), (9696, 'Nutrition Research and Practice', 19761457, 0.506, 'Q2', 34, 61, 2425, 369, 178, '13', '2010-2020', 'Food Science (Q2); Nutrition and Dietetics (Q3)'), (9697, 'Research and Reports in Urology', 22532447, 0.506, 'Q2', 20, 79, 2768, 192, 107, '41', '2012-2020', 'Urology (Q2)'), (9698, 'Shoulder and Elbow', 17585740, 0.506, 'Q2', 15, 134, 4115, 228, 152, '2', '2009-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Surgery (Q2); Orthopedics and Sports Medicine (Q3)'), (9699, 'Ain Shams Engineering Journal', 20904479, 0.505, 'Q2', 46, 169, 6901, 1849, 475, '32', '2010-2020', 'Engineering (miscellaneous) (Q2)'), (9700, 'Buletin Ekonomi Moneter dan Perbankan', 14108046, 0.505, 'Q2', 4, 42, 2072, 38, 19, '21', '2019-2020', 'Finance (Q2)'), (9701, 'Canadian Journal of Agricultural Economics', 83976, 0.505, 'Q2', 37, 41, 1339, 100, 80, '2', '1952-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Ecology (Q2); Economics and Econometrics (Q2); Global and Planetary Change (Q3)'), (9702, 'Colombia Internacional', 1215612, 0.505, 'Q1', 7, 29, 1751, 79, 88, '47', '2011-2020', 'History (Q1); Political Science and International Relations (Q1); Sociology and Political Science (Q2)'), (9703, 'Functional Neurology', 19713274, 0.505, 'Q3', 42, 0, 0, 181, 84, '7', '1986-2019', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q3)'), (9704, 'International Journal of Construction Managem', 15623599, 0.505, 'Q2', 25, 257, 15390, 817, 241, '3', '2009-2020', 'Building and Construction (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (9705, 'International Journal of Finance and Economic', 10991158, 0.505, 'Q2', 39, 566, 31880, 431, 157, '3', '1996-2020', 'Accounting (Q2); Economics and Econometrics (Q2); Finance (Q2)'), (9706, 'Journal of the American Association for Labor', 15596109, 0.505, 'Q2', 50, 69, 208, 269, 243, '2', '2006-2020', 'Animal Science and Zoology (Q2)'), (9707, 'LDI issue brief', 15530671, 0.505, 'Q3', 10, 0, 0, 9, 9, '2', '1999-2014, 2016-2018', 'Medicine (miscellaneous) (Q3)'), (9708, 'Notre Dame Journal of Formal Logic', 294527, 0.505, 'Q2', 29, 28, 531, 74, 97, '2', '1960-2020', 'Logic (Q2)'), (9709, 'Partner Abuse', 19466560, 0.505, 'Q1', 6, 22, 1537, 87, 68, '2', '2017-2020', 'Law (Q1); Clinical Psychology (Q2); Gender Studies (Q2); Health (social science) (Q2); Pediatrics, Perinatology and Child Health (Q2); Social Psychology (Q3)'), (9710, 'Revista Brasileira de Ciencia do Solo', 1000683, 0.505, 'Q2', 51, 44, 2201, 316, 181, '14', '2004-2020', 'Agronomy and Crop Science (Q2); Soil Science (Q2)'), (9711, 'Revista Europea de Estudios Latinoamericanos ', 18794750, 0.505, 'Q1', 11, 14, 915, 71, 47, '16', '1996, 2001, 2012-2020', 'History (Q1); Sociology and Political Science (Q2)'), (9712, 'Computational and Applied Mathematics', 18070302, 0.504, 'Q2', 29, 329, 11703, 1526, 678, '2', '2003-2020', 'Applied Mathematics (Q2); Computational Mathematics (Q2)'), (9713, 'Coronary Artery Disease', 9546928, 0.504, 'Q3', 62, 143, 3298, 338, 281, '2', '1990-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (9714, 'Current Medical Science', 2523899, 0.504, 'Q3', 29, 144, 5219, 811, 444, '1', '2018-2020', 'Biochemistry (Q3); Genetics (Q3)'), (9715, 'Disability and Rehabilitation: Assistive Tech', 17483115, 0.504, 'Q2', 41, 277, 10996, 811, 339, '3', '2006-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Speech and Hearing (Q2); Biomedical Engineering (Q3); Orthopedics and Sports Medicine (Q3)'), (9716, 'Journal of Mathematical Imaging and Vision', 9249907, 0.504, 'Q2', 74, 76, 3165, 546, 225, '16', '1992-2020', 'Applied Mathematics (Q2); Computer Vision and Pattern Recognition (Q2); Condensed Matter Physics (Q2); Modeling and Simulation (Q2); Geometry and Topology (Q3); Statistics and Probability (Q3)'), (9717, 'Journal of Transportation Safety and Security', 19439970, 0.504, 'Q2', 20, 119, 4890, 293, 140, '3', '2009-2020', 'Safety Research (Q2); Transportation (Q3)'), (9718, 'Memory Studies', 17506999, 0.504, 'Q1', 31, 107, 6033, 170, 138, '3', '2008-2020', 'Cultural Studies (Q1); Experimental and Cognitive Psychology (Q3); Social Psychology (Q3)'), (9719, 'Pixel-Bit, Revista de Medios y Educacion', 11338482, 0.504, 'Q2', 6, 32, 1297, 138, 63, '12', '2018-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2); Education (Q2); Information Systems (Q2)'), (9720, 'Polish Journal of Food and Nutrition Sciences', 20836007, 0.504, 'Q2', 27, 37, 1789, 259, 108, '17', '2009-2020', 'Food Science (Q2); Nutrition and Dietetics (Q3)'), (9721, 'Procedia Manufacturing', 23519789, 0.504, 'Q2', 43, 1390, 27760, 8346, 3572, '16', '2015-2020', 'Artificial Intelligence (Q2); Industrial and Manufacturing Engineering (Q2)'), (9722, 'Quantum Information and Computation', 15337146, 0.504, 'Q2', 73, 34, 1312, 287, 132, '2', '2001-2020', 'Computational Theory and Mathematics (Q2); Physics and Astronomy (miscellaneous) (Q2); Theoretical Computer Science (Q2); Mathematical Physics (Q3); Nuclear and High Energy Physics (Q3); Statistical a'), (9723, 'Social Choice and Welfare', 1761714, 0.504, 'Q2', 52, 70, 2648, 250, 194, '2', '1984-2020', 'Economics and Econometrics (Q2); Social Sciences (miscellaneous) (Q2)'), (9724, 'South African Journal of Botany', 2546299, 0.504, 'Q2', 59, 441, 23684, 2394, 947, '16', '1982-1986, 1988-1990, 1993-2020', 'Plant Science (Q2)'), (9725, 'Veterinary Record Open', 23992050, 0.504, 'Q2', 12, 21, 729, 112, 82, '3', '2014-2020', 'Veterinary (miscellaneous) (Q2)'), (9726, 'Vocations and Learning', 1874785, 0.504, 'Q2', 24, 26, 1529, 140, 64, '16', '2009-2020', 'Education (Q2)'), (9727, 'American Journal of Dentistry', 8948275, 0.503, 'Q2', 76, 59, 1743, 277, 180, '2', '1988-2020', 'Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9728, 'Arctic', 19231245, 0.503, 'Q2', 59, 41, 2668, 158, 99, '9', '1973, 1975, 1977-1981, 1983-1984, 1986, 1988-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (9729, 'Biologicals', 10958320, 0.503, 'Q3', 56, 76, 2236, 442, 233, '2', '1990-2020', 'Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biotechnology (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3)'), (9730, 'Biorheology', 18785034, 0.503, 'Q3', 67, 8, 300, 55, 35, '16', '1965-2020', 'Physiology (Q3); Physiology (medical) (Q3)'), (9731, 'Current Pharmacology Reports', 2198641, 0.503, 'Q3', 21, 40, 3327, 218, 121, '19', '2015-2020', 'Biochemistry (Q3); Drug Discovery (Q3); Genetics (Q3); Pharmacology (Q3)'), (9732, 'Current protocols in chemical biology', 21604762, 0.503, 'Q3', 14, 13, 399, 84, 54, '3', '2013-2020', 'Biochemistry (Q3); Biophysics (Q3); Molecular Biology (Q4)'), (9733, 'Group Decision and Negotiation', 9262644, 0.503, 'Q2', 60, 54, 2854, 370, 144, '16', '1992-2020', 'Arts and Humanities (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Social Sciences (miscellaneous) (Q2); Strategy and Management (Q2)'), (9734, 'International Journal of Shipping and Transpo', 17566517, 0.503, 'Q2', 22, 29, 1272, 135, 84, '3', '2010-2014', 'Business and International Management (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Transportation (Q3)'), (9735, 'Iranian Journal of Psychiatry', 17354587, 0.503, 'Q3', 17, 47, 1745, 225, 120, '15', '2011-2020', 'Psychiatry and Mental Health (Q3)'), (9736, 'Journal of Correctional Health Care', 10783458, 0.503, 'Q2', 25, 43, 1149, 119, 107, '2', '1994-2020', 'Community and Home Care (Q2); Public Health, Environmental and Occupational Health (Q3)'), (9737, 'Journal of Integrative Environmental Sciences', 19438168, 0.503, 'Q2', 20, 15, 734, 70, 24, '3', '2010-2020', 'Environmental Science (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (9738, 'KSCE Journal of Civil Engineering', 12267988, 0.503, 'Q2', 38, 331, 11128, 2806, 1304, '5', '2009-2020', 'Civil and Structural Engineering (Q2)'), (9739, 'Polymer Engineering and Science', 15482634, 0.503, 'Q2', 111, 298, 13096, 1747, 816, '2', '1961-2020', 'Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)'), (9740, 'Radiologia Brasileira', 1003984, 0.503, 'Q3', 17, 81, 1531, 339, 170, '14', '2006-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (9741, 'Reproductive Biomedicine and Society Online', 24056618, 0.503, 'Q1', 12, 23, 968, 108, 50, '3', '2015-2020', 'Cultural Studies (Q1); Health (social science) (Q2); Reproductive Medicine (Q3); Developmental Biology (Q4)'), (9742, 'Revista da Sociedade Brasileira de Medicina T', 378682, 0.503, 'Q3', 52, 276, 5060, 791, 483, '14', '1972-1976, 1986-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3); Parasitology (Q3)'), (9743, 'Spirituality in Clinical Practice', 23264519, 0.503, 'Q1', 14, 22, 749, 96, 71, '2', '2014-2020', 'Complementary and Manual Therapy (Q1); Clinical Psychology (Q2); Complementary and Alternative Medicine (Q2); Psychiatry and Mental Health (Q3)'), (9744, 'Anthrozoos', 8927936, 0.502, 'Q1', 51, 45, 2360, 275, 146, '3', '1990, 1992-1993, 1996-2020', 'Anthropology (Q1); Animal Science and Zoology (Q2); Education (Q2); Sociology and Political Science (Q2); Veterinary (miscellaneous) (Q2)'), (9745, 'Austral Entomology', 2052174, 0.502, 'Q2', 39, 64, 3701, 244, 174, '2', '2014-2020', 'Agronomy and Crop Science (Q2); Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2)'), (9746, 'Dose-Response', 15593258, 0.502, 'Q3', 36, 192, 7831, 662, 228, '2', '2008-2020', 'Chemical Health and Safety (Q3); Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)'), (9747, 'Evolutionary Bioinformatics', 11769343, 0.502, 'Q2', 32, 49, 2364, 184, 105, '41', '2007-2020', 'Computer Science Applications (Q2); Ecology, Evolution, Behavior and Systematics (Q2); Genetics (Q3)'), (9748, 'Information Technology and Libraries', 7309295, 0.502, 'Q1', 34, 45, 700, 82, 72, '2', '1971-1974, 1988-2020', 'Library and Information Sciences (Q1); Information Systems (Q2)'), (9749, 'International Journal of Environmental Resear', 17356865, 0.502, 'Q2', 38, 56, 3056, 557, 229, '19', '2007-2020', 'Environmental Science (miscellaneous) (Q2)'), (9750, 'International Journal of Minerals, Metallurgy', 1869103, 0.502, 'Q2', 38, 180, 7085, 1103, 496, '1', '2009-2020', 'Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2); Geochemistry and Petrology (Q3)'), (9751, 'Journal of Fluorine Chemistry', 221139, 0.502, 'Q2', 89, 137, 6120, 1074, 505, '16', '1971-2020', 'Inorganic Chemistry (Q2); Physical and Theoretical Chemistry (Q2); Biochemistry (Q3); Environmental Chemistry (Q3); Organic Chemistry (Q3)'), (9752, 'Journal of Greek Linguistics', 15665844, 0.502, 'Q1', 6, 17, 668, 14, 19, '16', '2010-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (9753, 'Journal of Pediatric Endocrinology and Metabo', 334018, 0.502, 'Q2', 65, 223, 6251, 890, 577, '5', '1985-2020', 'Pediatrics, Perinatology and Child Health (Q2); Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (9754, 'Journal of Visual Communication and Image Rep', 10473203, 0.502, 'Q1', 81, 169, 7411, 2863, 764, '2', '1990-2020', 'Media Technology (Q1); Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2)'), (9755, 'Open Microbiology Journal', 18742858, 0.502, 'Q3', 27, 48, 1814, 286, 121, '16', '2011-2020', 'Immunology and Microbiology (miscellaneous) (Q3)'), (9756, 'Plant Biotechnology Reports', 18635474, 0.502, 'Q2', 34, 70, 3373, 261, 143, '6', '2008-2020', 'Plant Science (Q2); Biotechnology (Q3)'), (9757, 'Plant, Soil and Environment', 12141178, 0.502, 'Q2', 55, 86, 2506, 518, 266, '31', '2003-2020', 'Soil Science (Q2)'), (9758, 'South African Journal of Economics', 382280, 0.502, 'Q2', 31, 31, 1618, 170, 80, '2', '1933-2020', 'Economics and Econometrics (Q2)'), (9759, 'Web Semantics', 15708268, 0.502, 'Q2', 83, 26, 1080, 341, 79, '16', '2003-2020', 'Computer Networks and Communications (Q2); Human-Computer Interaction (Q2); Software (Q2)'), (9760, 'Zhongguo Gonglu Xuebao/China Journal of Highw', 10017372, 0.502, 'Q2', 30, 241, 8481, 1236, 807, '1', '1994, 1998, 2001-2020', 'Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Transportation (Q3)'), (9761, 'Acta Geophysica Sinica', 15733, 0.501, 'Q2', 57, 322, 14067, 1416, 1205, '1', '1979-2020', 'Geophysics (Q2); Geochemistry and Petrology (Q3)'), (9762, 'American Journal of Physiology - Advances in ', 10434046, 0.501, 'Q3', 60, 113, 2639, 502, 285, '2', '1998-2020', 'Medicine (miscellaneous) (Q3); Physiology (Q3)'), (9763, 'Archaeology in Oceania', 38121, 0.501, 'Q1', 26, 15, 963, 50, 43, '2', '1966-1980, 2002-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1)'), (9764, 'BioInvasions Records', 22421300, 0.501, 'Q2', 19, 91, 3477, 408, 228, '38', '2012-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9765, 'Blood Pressure', 16511999, 0.501, 'Q3', 52, 56, 1707, 236, 130, '3', '1992-2020', 'Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3); Medicine (miscellaneous) (Q3)'), (9766, 'International Journal of the Economics of Bus', 14661829, 0.501, 'Q2', 34, 26, 1329, 71, 63, '3', '1994-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)'), (9767, 'Journal of Corporate Real Estate', 1463001, 0.501, 'Q2', 26, 16, 798, 109, 56, '3', '1998-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Finance (Q2)'), (9768, 'Journal of Emergency Medicine', 7364679, 0.501, 'Q2', 77, 441, 8938, 1468, 1002, '2', '1983-2020', 'Emergency Medicine (Q2)'), (9769, 'Journal of Pension Economics and Finance', 14747472, 0.501, 'Q2', 29, 40, 1632, 80, 78, '3', '2002-2020', 'Economics and Econometrics (Q2); Finance (Q2); Organizational Behavior and Human Resource Management (Q2)'), (9770, 'Journal of Philosophy of Education', 14679752, 0.501, 'Q1', 41, 131, 3886, 135, 146, '3', '1967-2020', 'History (Q1); Philosophy (Q1); Education (Q2)'), (9771, 'Journal of the American Society of Brewing Ch', 3610470, 0.501, 'Q2', 39, 61, 3124, 196, 107, '2', '1994-2020', 'Food Science (Q2); Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3)'), (9772, 'Learning Health Systems', 23796146, 0.501, 'Q3', 9, 40, 1393, 122, 49, '2', '2017-2020', 'Health Informatics (Q3); Health Information Management (Q3); Public Health, Environmental and Occupational Health (Q3)'), (9773, 'REICE. Revista Iberoamericana Sobre Calidad, ', 16964713, 0.501, 'Q1', 6, 34, 1596, 99, 54, '12', '2018-2020', 'Cultural Studies (Q1); Education (Q2); Sociology and Political Science (Q2)'), (9774, 'Surface Engineering', 2670844, 0.501, 'Q1', 44, 195, 7279, 921, 372, '3', '1985-2020', 'Conservation (Q1); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Surfaces and Interfaces (Q2); Surfaces, Coatings and Films (Q2)'), (9775, 'Violence and Gender', 23267852, 0.501, 'Q1', 10, 30, 1004, 147, 81, '2', '2014-2020', 'Cultural Studies (Q1); Gender Studies (Q2); Health (social science) (Q2); Psychiatry and Mental Health (Q3); Social Psychology (Q3)'), (9776, 'Anatomical Science International', 1447073, 0.5, 'Q2', 36, 66, 2316, 285, 159, '2', '2002-2020', 'Anatomy (Q2); Medicine (miscellaneous) (Q3)'), (9777, 'Asian Journal of Social Psychology', 1467839, 0.5, 'Q2', 49, 66, 4028, 128, 82, '3', '1998-2020', 'Social Sciences (miscellaneous) (Q2); Social Psychology (Q3)'), (9778, 'Environmental Processes', 21987505, 0.5, 'Q2', 25, 69, 3799, 447, 195, '2', '2014-2020', 'Environmental Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2); Water Science and Technology (Q2); Health, Toxicology and Mutagenesis (Q3)'), (9779, 'Intersecciones en Antropologia', 16662105, 0.5, 'Q1', 11, 17, 716, 57, 54, '46', '2010-2019', 'Anthropology (Q1)'), (9780, 'Journal of Electrocardiology', 220736, 0.5, 'Q3', 60, 236, 4442, 798, 565, '2', '1968-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (9781, 'Journal of oral science', 13434934, 0.5, 'Q2', 50, 105, 3430, 481, 254, '6', '1998-2020', 'Dentistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9782, 'Journal of Polymer Research', 15728935, 0.5, 'Q2', 54, 384, 17565, 2055, 768, '16', '1994-2020', 'Materials Chemistry (Q2); Polymers and Plastics (Q2); Organic Chemistry (Q3)'), (9783, 'Journal of Singularities', 19492006, 0.5, 'Q2', 12, 49, 1095, 75, 56, '2', '2011-2020', 'Applied Mathematics (Q2); Geometry and Topology (Q3)'), (9784, 'Journal of the Marine Biological Association ', 14697769, 0.5, 'Q3', 68, 132, 8108, 708, 525, '3', '1887-1900, 1902-1904, 1906-2020', 'Aquatic Science (Q3)'), (9785, 'Morphology', 18715656, 0.5, 'Q1', 16, 20, 1313, 53, 48, '16', '2006-2020', 'Language and Linguistics (Q1)'), (9786, 'Omega: Journal of Death and Dying', 15413764, 0.5, 'Q2', 40, 198, 8674, 363, 185, '2', '1970, 1973-2020', 'Critical Care and Intensive Care Medicine (Q2); Health (social science) (Q2); Life-span and Life-course Studies (Q2)'), (9787, 'Psychoanalytic Perspectives', 1551806, 0.5, 'Q2', 9, 38, 714, 46, 102, '2', '2003-2020', 'Psychology (miscellaneous) (Q2)'), (9788, 'SAE International Journal of Commercial Vehic', 1946391, 0.5, 'Q2', 20, 10, 268, 134, 106, '2', '2009-2020', 'Automotive Engineering (Q2)'), (9789, 'Seminars in Plastic Surgery', 15360067, 0.5, 'Q2', 25, 42, 1484, 213, 99, '2', '2010-2020', 'Surgery (Q2)'), (9790, 'Strategies in Trauma and Limb Reconstruction', 18288928, 0.5, 'Q3', 24, 20, 559, 112, 79, '7', '2007-2019', 'Orthopedics and Sports Medicine (Q3)'), (9791, 'Tropical Animal Health and Production', 15737438, 0.5, 'Q2', 49, 441, 16870, 1320, 806, '16', '1969-2020', 'Animal Science and Zoology (Q2); Food Animals (Q3)'), (9792, 'Work', 18759270, 0.5, 'Q2', 50, 294, 11044, 884, 556, '16', '1990-2020', 'Rehabilitation (Q2); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (9793, 'Young Consumers', 17473616, 0.5, 'Q1', 27, 23, 2052, 246, 90, '3', '2002-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Life-span and Life-course Studies (Q3)'), (9794, 'Zoo Biology', 10982361, 0.5, 'Q2', 54, 49, 2004, 213, 158, '2', '1982-2020', 'Animal Science and Zoology (Q2); Medicine (miscellaneous) (Q3)'), (9795, 'African Journal of Ecology', 13652028, 0.499, 'Q2', 54, 126, 5241, 362, 274, '3', '1963-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (9796, 'Applied Mathematics and Mechanics (English Ed', 2534827, 0.499, 'Q2', 43, 115, 4202, 888, 349, '16', '1980-2020', 'Applied Mathematics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (9797, 'Asia Pacific Journal of Clinical Nutrition', 14406047, 0.499, 'Q3', 78, 109, 3302, 747, 438, '11', '1996-2020', 'Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)'), (9798, 'Astronomy Letters', 10637737, 0.499, 'Q3', 44, 77, 2676, 414, 209, '10', '1996-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (9799, 'Bryologist', 72745, 0.499, 'Q2', 49, 38, 1861, 139, 119, '2', '1981-1985, 1990-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Plant Science (Q2)'), (9800, 'Bulletin of the Council for Research in Music', 21627223, 0.499, 'Q1', 17, 20, 776, 28, 38, '2', '2002-2020', 'Music (Q1); Education (Q2)'), (9801, 'Clinical Social Work Journal', 15733343, 0.499, 'Q2', 33, 61, 3389, 185, 109, '2', '1973-2020', 'Health (social science) (Q2); Public Health, Environmental and Occupational Health (Q3); Social Work (Q3)'), (9802, 'Intellectual Economics', 18228038, 0.499, 'Q1', 5, 10, 304, 26, 22, '69', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Philosophy (Q1); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Sociology and Polit'), (9803, 'Journal for Specialists in Pediatric Nursing', 15390136, 0.499, 'Q2', 38, 37, 1268, 135, 78, '2', '2002-2020', 'Pediatrics (Q2)'), (9804, 'Journal of Chemical Education', 19381328, 0.499, 'Q2', 84, 688, 21396, 3224, 1171, '2', '1924-2020', 'Chemistry (miscellaneous) (Q2); Education (Q2)'), (9805, 'Journal of Educators Online', 1547500, 0.499, 'Q2', 16, 30, 987, 98, 73, '2', '2009-2020', 'Education (Q2); E-learning (Q2)'), (9806, 'Journal of Information Science', 1655515, 0.499, 'Q1', 64, 124, 6005, 608, 165, '3', '1979-2020', 'Library and Information Sciences (Q1); Information Systems (Q2)'), (9807, 'Media International Australia', 1329878, 0.499, 'Q1', 20, 61, 2673, 171, 125, '11', '2008-2020', 'Cultural Studies (Q1); Communication (Q2)'), (9808, 'Pediatric Hematology and Oncology', 8880018, 0.499, 'Q2', 42, 113, 2850, 240, 135, '3', '1984-2020', 'Pediatrics, Perinatology and Child Health (Q2); Hematology (Q3); Oncology (Q3)'), (9809, 'Physics Letters, Section A: General, Atomic a', 3759601, 0.499, 'Q2', 174, 645, 25723, 4976, 1761, '16', '1963, 1965, 1967-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (9810, 'Revista Espanola de Orientacion y Psicopedago', 11397853, 0.499, 'Q2', 11, 26, 1068, 88, 62, '12', '2010-2020', 'Education (Q2); Applied Psychology (Q3)'), (9811, 'University of Pennsylvania Law Review', 19428537, 0.499, 'Q1', 58, 19, 3510, 181, 105, '2', '1974, 1977-1978, 1986, 1989-1990, 1992-1993, 1996-2020', 'Law (Q1)'), (9812, 'BioMedicine (Netherlands)', 22118020, 0.498, 'Q2', 26, 28, 1152, 170, 79, '22', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9813, 'Cardiovascular Endocrinology and Metabolism', 25740954, 0.498, 'Q3', 8, 33, 1085, 109, 52, '2', '2018-2020', 'Cardiology and Cardiovascular Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q3)'), (9814, 'Current Psychology', 19364733, 0.498, 'Q2', 41, 823, 47332, 1312, 751, '2', '1981-1982, 1984-2020', 'Psychology (miscellaneous) (Q2)'), (9815, 'Dianli Xitong Baohu yu Kongzhi/Power System P', 16743415, 0.498, 'Q2', 47, 510, 13845, 3282, 1676, '1', '2009-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)'), (9816, 'Discrete Mathematics and Theoretical Computer', 13658050, 0.498, 'Q2', 25, 0, 0, 156, 116, '8', '1998-2000, 2004-2019', 'Computer Science (miscellaneous) (Q2); Discrete Mathematics and Combinatorics (Q2); Theoretical Computer Science (Q2)'), (9817, 'East Asian Science, Technology and Society', 18752152, 0.498, 'Q2', 15, 32, 1125, 73, 71, '2', '2008-2020', 'Social Sciences (miscellaneous) (Q2)'), (9818, 'Evaluation and the Health Professions', 15523918, 0.498, 'Q2', 53, 56, 2097, 175, 70, '2', '1978-2020', 'Health Policy (Q2)'), (9819, 'Human Service Organizations Management, Leade', 2330314, 0.498, 'Q2', 15, 31, 1841, 194, 83, '3', '2014-2020', 'Health (social science) (Q2); Public Administration (Q2); Sociology and Political Science (Q2); Strategy and Management (Q2)'), (9820, 'INFOR', 3155986, 0.498, 'Q2', 33, 25, 878, 107, 62, '9', '1971-1989, 1996-2019', 'Computer Science Applications (Q2); Information Systems (Q2); Signal Processing (Q2)'), (9821, 'Journal of Dairy Research', 220299, 0.498, 'Q2', 77, 117, 3504, 447, 240, '3', '1929-2020', 'Animal Science and Zoology (Q2); Food Science (Q2); Medicine (miscellaneous) (Q3)'), (9822, 'Journal of Inverse and Ill-Posed Problems', 9280219, 0.498, 'Q2', 34, 95, 2662, 318, 159, '5', '1993-2020', 'Applied Mathematics (Q2)'), (9823, 'Journal of Materials Engineering and Performa', 10599495, 0.498, 'Q2', 65, 799, 28851, 4011, 2067, '2', '1992-2020', 'Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (9824, 'Journal of Occupational and Environmental Hyg', 15459624, 0.498, 'Q3', 57, 74, 2065, 599, 330, '3', '2004-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (9825, 'Journal of Oil Palm Research', 15112780, 0.498, 'Q2', 22, 41, 1578, 379, 176, '23', '2008-2020', 'Agronomy and Crop Science (Q2); Food Science (Q2); Biomaterials (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (9826, 'Journal of Remanufacturing', 2210464, 0.498, 'Q2', 18, 22, 947, 55, 33, '16', '2011-2020', 'Industrial and Manufacturing Engineering (Q2); Management, Monitoring, Policy and Law (Q2); Waste Management and Disposal (Q2)'), (9827, 'Journal of the International Association for ', 1028365, 0.498, 'Q2', 23, 27, 457, 88, 74, '12', '1969-2020', 'Arts and Humanities (miscellaneous) (Q2); Building and Construction (Q2); Civil and Structural Engineering (Q2); Mechanical Engineering (Q2)'), (9828, 'Journal of Tribology', 15288897, 0.498, 'Q2', 84, 36, 1313, 863, 443, '2', '1967-1975, 1977-2021', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)'), (9829, 'Leading Edge', 1070485, 0.498, 'Q2', 82, 114, 1213, 1040, 698, '2', '1958, 1982-1984, 1986-2020', 'Geology (Q2); Geophysics (Q2)'), (9830, 'NursingPlus Open', 23529008, 0.498, 'Q2', 8, 0, 0, 14, 5, '16', '2015-2018', 'Nursing (miscellaneous) (Q2)'), (9831, 'Preventive Nutrition and Food Science', 22871098, 0.498, 'Q2', 24, 55, 2136, 372, 165, '13', '2012-2020', 'Food Science (Q2); Nutrition and Dietetics (Q3)'), (9832, 'Southern Forests', 20702639, 0.498, 'Q2', 25, 41, 2323, 194, 116, '3', '2008-2020', 'Forestry (Q2)'), (9833, 'University of Chicago Law Review', 419494, 0.498, 'Q1', 56, 27, 4465, 117, 104, '2', '1977-1978, 1986, 1991-1992, 1995-2020', 'Law (Q1)'), (9834, 'Biosurface and Biotribology', 24054518, 0.497, 'Q2', 4, 19, 797, 32, 18, '3', '2019-2020', 'Mechanical Engineering (Q2); Surfaces, Coatings and Films (Q2); Biomaterials (Q3); Biomedical Engineering (Q3); Biophysics (Q3)'), (9835, 'BMC Biochemistry', 14712091, 0.497, 'Q3', 51, 0, 0, 80, 32, '3', '2000-2019', 'Biochemistry (Q3); Molecular Biology (Q4)'), (9836, 'Celebrity Studies', 19392400, 0.497, 'Q1', 21, 67, 2876, 193, 135, '3', '2010-2020', 'Cultural Studies (Q1)'), (9837, 'Current Treatment Options in Psychiatry', 21963061, 0.497, 'Q2', 15, 36, 2362, 158, 95, '19', '2014-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q3)'), (9838, 'Data Science and Engineering', 23641541, 0.497, 'Q2', 14, 34, 1274, 306, 78, '5', '2016-2020', 'Computational Mechanics (Q2); Computer Science Applications (Q2)'), (9839, 'Foreign Affairs', 157120, 0.497, 'Q1', 94, 0, 0, 560, 274, '2', '1965, 1974, 1977-1981, 1985, 1989, 1991-1992, 1996-2019', 'Political Science and International Relations (Q1); Sociology and Political Science (Q2)'), (9840, 'Geografisk Tidsskrift', 167223, 0.497, 'Q2', 25, 13, 870, 78, 39, '3', '1972-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (9841, 'Journal of Automated Reasoning', 15730670, 0.497, 'Q2', 56, 57, 2122, 382, 127, '16', '1985-2020', 'Artificial Intelligence (Q2); Computational Theory and Mathematics (Q2); Software (Q2)'), (9842, 'Journal of Law, Information and Science', 22003517, 0.497, 'Q1', 5, 0, 0, 5, 6, '11', '2014-2017', 'Law (Q1); Library and Information Sciences (Q2)'), (9843, 'Journal of Pharmacy and Pharmaceutical Scienc', 14821826, 0.497, 'Q2', 78, 38, 1882, 306, 150, '9', '1998-2020', 'Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3); Pharmacology (Q3)'), (9844, 'Oxford Journal of Legal Studies', 14643820, 0.497, 'Q1', 29, 34, 2211, 119, 109, '3', '1981-1996, 1998, 2000-2001, 2005-2020', 'Law (Q1)'), (9845, 'Ozone: Science and Engineering', 1919512, 0.497, 'Q2', 49, 85, 3153, 376, 150, '3', '1979-2020', 'Environmental Engineering (Q2); Environmental Chemistry (Q3)'), (9846, 'Perceptual and Motor Skills', 1558688, 0.497, 'Q3', 69, 60, 2856, 371, 206, '2', '1962-2020', 'Experimental and Cognitive Psychology (Q3); Sensory Systems (Q4)'), (9847, 'Revista Latinoamericana de Psicologia', 1200534, 0.497, 'Q2', 27, 16, 917, 120, 63, '47', '1980, 1984, 1992, 1996-2020', 'Psychology (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (9848, 'Topology and its Applications', 1668641, 0.497, 'Q3', 48, 422, 8202, 845, 927, '16', '1980-2020', 'Geometry and Topology (Q3)'), (9849, 'Diachronica', 1764225, 0.496, 'Q1', 23, 15, 1070, 37, 44, '16', '1984-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1)'), (9850, 'Disaster Prevention and Management', 9653562, 0.496, 'Q2', 53, 58, 2467, 314, 180, '3', '1992-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Health (social science) (Q2); Management, Monitoring, Policy and Law (Q2); Public Health, Environmental and Occupational Health (Q3)'), (9851, 'European Journal on Criminal Policy and Resea', 9281371, 0.496, 'Q1', 32, 55, 3200, 184, 90, '16', '1993-2001, 2004-2020', 'Law (Q1)'), (9852, 'GENEVA Risk and Insurance Review', 1554964, 0.496, 'Q2', 20, 13, 533, 24, 25, '3', '1975-1979, 1996-2002, 2005-2020', 'Accounting (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2); Finance (Q2)'), (9853, 'IEEE Transactions on Components, Packaging an', 21563950, 0.496, 'Q2', 49, 238, 6595, 1604, 722, '2', '2011-2020', 'Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Industrial and Manufacturing Engineering (Q2)'), (9854, 'Improving Schools', 13654802, 0.496, 'Q2', 23, 33, 1516, 70, 53, '3', '1998-2020', 'Education (Q2)'), (9855, 'International Journal of Mathematical Educati', 14645211, 0.496, 'Q2', 33, 187, 6343, 311, 200, '3', '1970-2020', 'Applied Mathematics (Q2); Education (Q2); Mathematics (miscellaneous) (Q2)'), (9856, 'Journal of Continuing Education in Nursing', 220124, 0.496, 'Q2', 42, 111, 1607, 292, 291, '2', '1970-2020', 'Education (Q2); Nursing (miscellaneous) (Q2); Review and Exam Preparation (Q2)'), (9857, 'Journal of Fusion Energy', 15729591, 0.496, 'Q2', 29, 56, 1633, 142, 107, '2', '1981-1983, 1985-2020', 'Nuclear Energy and Engineering (Q2); Nuclear and High Energy Physics (Q3)'), (9858, 'Journal of New Materials for Electrochemical ', 14802422, 0.496, 'Q2', 42, 40, 1081, 186, 73, '9', '1998-2020', 'Materials Science (miscellaneous) (Q2); Electrochemistry (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (9859, 'Physiotherapy Theory and Practice', 15325040, 0.496, 'Q2', 46, 279, 11853, 667, 420, '3', '1985-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (9860, 'Polyhedron', 2775387, 0.496, 'Q2', 97, 499, 26256, 4950, 1932, '3', '1982-2020', 'Inorganic Chemistry (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q2)'), (9861, 'Voprosy Ekonomiki', 428736, 0.496, 'Q2', 15, 93, 3247, 258, 302, '10', '1978-1982, 1984-1985, 1996, 1998, 2003-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (9862, 'Canadian Water Resources Journal', 7011784, 0.495, 'Q2', 37, 28, 1390, 132, 75, '3', '1976-2020', 'Water Science and Technology (Q2)'), (9863, 'Current Aging Science', 18746128, 0.495, 'Q3', 33, 20, 1269, 163, 74, '52', '2008-2020', 'Aging (Q3); Geriatrics and Gerontology (Q3)'), (9864, 'Du Bois Review', 1742058, 0.495, 'Q1', 36, 17, 1236, 95, 85, '3', '2004-2019', 'Anthropology (Q1); Cultural Studies (Q1); Sociology and Political Science (Q2)'), (9865, 'Ensenanza de las Ciencias', 2124521, 0.495, 'Q2', 15, 31, 1202, 111, 91, '12', '2009-2020', 'Education (Q2)'), (9866, 'Environmental Progress and Sustainable Energy', 19447450, 0.495, 'Q2', 66, 230, 9733, 1877, 789, '2', '2009-2020', 'Chemical Engineering (miscellaneous) (Q2); Environmental Engineering (Q2); Environmental Science (miscellaneous) (Q2); Waste Management and Disposal (Q2); Water Science and Technology (Q2); Environmen'), (9867, 'Environments - MDPI', 20763298, 0.495, 'Q2', 20, 111, 6096, 973, 343, '19', '2014-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Environmental Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3)'), (9868, 'Geochemistry International', 167029, 0.495, 'Q2', 30, 113, 4450, 368, 335, '10', '1977-1978, 1980-2020', 'Geophysics (Q2); Geochemistry and Petrology (Q3)'), (9869, 'International Review on Public and Nonprofit ', 18651992, 0.495, 'Q2', 15, 39, 1820, 144, 64, '5', '2001, 2009-2020', 'Economics and Econometrics (Q2); Marketing (Q2)'), (9870, 'In Vitro Cellular and Developmental Biology -', 14752689, 0.495, 'Q2', 70, 96, 4457, 428, 200, '2', '1985, 1991-2020', 'Plant Science (Q2); Biotechnology (Q3); Cell Biology (Q4); Developmental Biology (Q4)'), (9871, 'Journal of Business Strategy', 2756668, 0.495, 'Q2', 38, 64, 862, 227, 162, '3', '1980-2020', 'Management Information Systems (Q2); Strategy and Management (Q2)'), (9872, 'Journal of Poultry Science', 13467395, 0.495, 'Q2', 29, 43, 1528, 166, 117, '6', '2001-2004, 2006-2020', 'Animal Science and Zoology (Q2)'), (9873, 'Journal of Reproduction and Infertility', 22285482, 0.495, 'Q3', 22, 44, 1256, 214, 96, '15', '2011-2020', 'Reproductive Medicine (Q3)'), (9874, 'Journal of Research in Marketing and Entrepre', 14715201, 0.495, 'Q2', 21, 13, 952, 80, 33, '3', '1999-2007, 2009-2020', 'Business and International Management (Q2); Marketing (Q2); Strategy and Management (Q2)'), (9875, 'Journal of Science Communication', 18242049, 0.495, 'Q2', 17, 74, 3095, 229, 156, '7', '2009-2020', 'Communication (Q2)'), (9876, 'Mathematics', 22277390, 0.495, 'Q2', 32, 2251, 83329, 4670, 1625, '19', '2013-2020', 'Mathematics (miscellaneous) (Q2)'), (9877, 'Origins of Life and Evolution of Biospheres', 1696149, 0.495, 'Q2', 64, 12, 608, 144, 77, '16', '1984-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Medicine (miscellaneous) (Q3); Space and Planetary Science (Q3)'), (9878, 'Visual Informatics', 25432656, 0.495, 'Q2', 11, 28, 1299, 241, 51, '16', '2017-2020', 'Computer Graphics and Computer-Aided Design (Q2); Human-Computer Interaction (Q2); Software (Q2)'), (9879, 'Anaesthesia and Intensive Care', 310057, 0.494, 'Q2', 62, 87, 2201, 368, 234, '11', '1972-2020', 'Anesthesiology and Pain Medicine (Q2); Critical Care and Intensive Care Medicine (Q2)'), (9880, 'Annals of Noninvasive Electrocardiology', 1082720, 0.494, 'Q3', 48, 103, 2512, 334, 249, '3', '1996-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Physiology (medical) (Q3)'), (9881, 'Annals of Transplantation', 14259524, 0.494, 'Q2', 38, 84, 2591, 403, 283, '2', '1996-2020', 'Transplantation (Q2); Medicine (miscellaneous) (Q3)'), (9882, 'Applied neuropsychology. Adult', 23279095, 0.494, 'Q3', 49, 185, 10003, 446, 236, '2', '2012-2020', 'Developmental and Educational Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)'), (9883, 'Biocontrol Science and Technology', 13600478, 0.494, 'Q2', 59, 112, 4692, 474, 285, '3', '1991-2020', 'Agronomy and Crop Science (Q2); Insect Science (Q2)'), (9884, 'Bioethics', 14678519, 0.494, 'Q1', 55, 113, 24, 497, 278, '3', '1987-2020', 'Philosophy (Q1); Health Policy (Q2); Health (social science) (Q2)'), (9885, 'Chemical Physics', 3010104, 0.494, 'Q2', 121, 347, 15486, 1668, 780, '16', '1973-2020', 'Physics and Astronomy (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (9886, 'China Perspectives', 19964617, 0.494, 'Q1', 19, 15, 172, 79, 90, '1', '2007-2020', 'Cultural Studies (Q1); Political Science and International Relations (Q1); Geography, Planning and Development (Q2)'), (9887, 'Communication Research Reports', 8824096, 0.494, 'Q2', 36, 28, 723, 194, 132, '3', '1988-1996, 2000-2020', 'Communication (Q2)'), (9888, 'Computational Statistics', 9434062, 0.494, 'Q2', 44, 119, 4153, 299, 236, '5', '1996-2020', 'Computational Mathematics (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (9889, 'Global Knowledge, Memory and Communication', 25149350, 0.494, 'Q2', 30, 58, 3130, 179, 138, '3', '2018-2020', 'Library and Information Sciences (Q2)'), (9890, 'International Journal of Trichology', 9747753, 0.494, 'Q2', 22, 48, 674, 233, 146, '4', '2009-2020', 'Dermatology (Q2)'), (9891, 'Journal of Experimental Algorithmics', 10846654, 0.494, 'Q2', 37, 14, 482, 142, 44, '2', '1996-2019', 'Theoretical Computer Science (Q2)'), (9892, 'Journal of International Studies', 20718330, 0.494, 'Q2', 17, 90, 4347, 636, 264, '17', '2009-2020', 'Business and International Management (Q2); Economics and Econometrics (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (9893, 'Journal of Micromechanics and Microengineerin', 13616439, 0.494, 'Q2', 132, 183, 7186, 1538, 741, '3', '1991-2020', 'Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Nanoscience and Nanotechnology (Q3)'), (9894, 'Lake and Reservoir Management', 7438141, 0.494, 'Q2', 40, 36, 2270, 160, 102, '3', '1984, 1986-1991, 1993-2020', 'Water Science and Technology (Q2); Aquatic Science (Q3)'), (9895, 'Neotropical Entomology', 16788052, 0.494, 'Q2', 49, 92, 4769, 412, 285, '2', '2001-2020', 'Insect Science (Q2)'), (9896, 'Operational Research', 11092858, 0.494, 'Q2', 22, 170, 7966, 458, 195, '5', '2009-2020', 'Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Modeling and Simulation (Q2); Strategy and Management (Q2); Computational Theory and Mathematics (Q3); Nu'), (9897, 'Reflective Practice', 14623943, 0.494, 'Q1', 22, 62, 2454, 207, 179, '3', '2003, 2009-2020', 'Philosophy (Q1)'), (9898, 'Thrombosis', 20901488, 0.494, 'Q3', 3, 0, 0, 5, 1, '2', '2014, 2016-2017', 'Cardiology and Cardiovascular Medicine (Q3); Hematology (Q3)'), (9899, 'Transforming Government: People, Process and ', 17506166, 0.494, 'Q2', 37, 56, 3600, 195, 55, '3', '2007-2020', 'Computer Science Applications (Q2); E-learning (Q2); Information Systems and Management (Q2); Public Administration (Q2)'), (9900, 'Women and Criminal Justice', 8974454, 0.494, 'Q1', 28, 43, 2501, 121, 72, '2', '1989-2007, 2009-2020', 'Law (Q1); Gender Studies (Q2)'), (9901, 'Australian Economic History Review', 14678446, 0.493, 'Q1', 16, 18, 968, 29, 45, '3', '1974, 1983-1984, 1988, 1990-1991, 1993-2001, 2006-2020', 'History (Q1); Economics and Econometrics (Q2)'), (9902, 'Current Problems in Surgery', 15356337, 0.493, 'Q2', 44, 40, 2534, 72, 36, '2', '1964-2020', 'Surgery (Q2); Medicine (miscellaneous) (Q3)'), (9903, 'DFI Journal', 19375247, 0.493, 'Q2', 5, 0, 0, 12, 10, '3', '2014-2018', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (9904, 'Ecology and Industry of Russia', 24136042, 0.493, 'Q2', 8, 145, 1916, 422, 419, '10', '2016-2020', 'Ecology (Q2); Management, Monitoring, Policy and Law (Q2); Pollution (Q2)'), (9905, 'Ecoscience', 11956860, 0.493, 'Q2', 70, 20, 1305, 118, 83, '3', '1994-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9906, 'European Journal of Science and Theology', 18410464, 0.493, 'Q1', 18, 99, 2427, 210, 328, '43', '2008-2020', 'History and Philosophy of Science (Q1); Multidisciplinary (Q1); Religious Studies (Q1); Engineering (miscellaneous) (Q2)'), (9907, 'Facial Plastic Surgery Clinics of North Ameri', 10647406, 0.493, 'Q2', 32, 66, 1353, 273, 148, '3', '2001-2020', 'Surgery (Q2)'), (9908, 'GMS German Medical Science', 16123174, 0.493, 'Q3', 23, 11, 562, 86, 38, '5', '2009-2020', 'Medicine (miscellaneous) (Q3)'), (9909, 'Ichthyological Research', 16163915, 0.493, 'Q2', 35, 63, 2041, 159, 146, '6', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q2)'), (9910, 'International Journal of Agronomy', 16878159, 0.493, 'Q2', 16, 68, 3215, 238, 110, '2', '2013-2020', 'Agronomy and Crop Science (Q2)'), (9911, 'International Journal of Constitutional Law', 14742659, 0.493, 'Q1', 33, 27, 972, 134, 180, '3', '2005-2020', 'Law (Q1)'), (9912, 'International Studies Perspectives', 15283577, 0.493, 'Q1', 45, 20, 1712, 82, 50, '3', '2000-2020', 'Political Science and International Relations (Q1); Geography, Planning and Development (Q2)'), (9913, 'Journal of Arthropod-Borne Diseases', 23222271, 0.493, 'Q3', 21, 43, 1741, 196, 143, '15', '2012-2020', 'Infectious Diseases (Q3); Parasitology (Q3)'), (9914, 'Journal of Bionic Engineering', 16726529, 0.493, 'Q3', 48, 102, 4479, 783, 251, '1', '2006-2020', 'Bioengineering (Q3); Biophysics (Q3); Biotechnology (Q3)'), (9915, 'Jurnal Pendidikan IPA Indonesia', 20894392, 0.493, 'Q2', 16, 60, 2791, 435, 171, '21', '2012-2020', 'Education (Q2)'), (9916, 'Phytopathologia Mediterranea', 319465, 0.493, 'Q2', 46, 37, 1825, 248, 130, '7', '1999-2020', 'Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2)'), (9917, 'Sign Language and Linguistics (Online)', 13879316, 0.493, 'Q1', 20, 11, 487, 32, 45, '16', '1998-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (9918, 'Superlattices and Microstructures', 10963677, 0.493, 'Q2', 74, 301, 13056, 4014, 1615, '2', '1985-2020', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Materials Science (miscellaneous) (Q2)'), (9919, 'Swiss Journal of Palaeontology', 16642376, 0.493, 'Q2', 10, 8, 494, 94, 74, '19', '2011-2020', 'Paleontology (Q2)'), (9920, 'Toxicology Mechanisms and Methods', 15376524, 0.493, 'Q3', 41, 75, 3854, 609, 227, '3', '1991-2020', 'Health, Toxicology and Mutagenesis (Q3); Toxicology (Q3)'), (9921, 'BMC Dermatology', 14715945, 0.492, 'Q2', 36, 24, 729, 87, 44, '3', '2001-2020', 'Dermatology (Q2)'), (9922, 'Chemistry Letters', 3667022, 0.492, 'Q2', 114, 341, 12618, 1764, 1310, '6', '1973, 1979, 1981, 1988, 1996-2020', 'Chemistry (miscellaneous) (Q2)'), (9923, 'Critical Studies on Terrorism', 17539153, 0.492, 'Q1', 25, 32, 2502, 185, 89, '3', '2008-2020', 'Political Science and International Relations (Q1)'), (9924, 'Current Rheumatology Reviews', 15733971, 0.492, 'Q3', 22, 52, 2048, 207, 115, '52', '2006-2020', 'Rheumatology (Q3)'), (9925, 'Disaster Medicine and Public Health Preparedn', 19357893, 0.492, 'Q3', 41, 503, 10591, 601, 412, '3', '2007-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (9926, 'Evidence-based nursing', 13676539, 0.492, 'Q2', 25, 137, 722, 164, 43, '3', '1998-2020', 'Fundamentals and Skills (Q2)'), (9927, 'Foresight and STI Governance', 23129972, 0.492, 'Q1', 16, 30, 1406, 212, 88, '10', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2); '), (9928, 'Frontiers in Education', 2504284, 0.492, 'Q2', 11, 265, 15545, 555, 313, '19', '2016-2020', 'Education (Q2)'), (9929, 'Geological Field Trips and Maps', 26116189, 0.492, 'Q2', 2, 2, 133, 14, 10, '7', '2018-2020', 'Economic Geology (Q2); Geology (Q2); Stratigraphy (Q2); Global and Planetary Change (Q3)'), (9930, 'International Journal of Corpus Linguistics', 15699811, 0.492, 'Q1', 41, 19, 823, 87, 50, '16', '1996-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (9931, 'International Journal of River Basin Manageme', 15715124, 0.492, 'Q2', 35, 89, 4429, 322, 146, '3', '2003-2020', 'Water Science and Technology (Q2)'), (9932, 'Journal of Economic and Social Measurement', 7479662, 0.492, 'Q2', 23, 8, 227, 17, 23, '16', '1985-1986, 1989-2002, 2004-2020', 'Social Sciences (miscellaneous) (Q2)'), (9933, 'Public Money and Management', 14679302, 0.492, 'Q2', 48, 150, 4522, 446, 213, '3', '1988-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Public Administration (Q2); Sociology and Political Science (Q2)'), (9934, 'Theoretical and Applied Ecology', 19954301, 0.492, 'Q2', 5, 92, 2065, 281, 196, '10', '2017-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q2)'), (9935, 'Universal Access in the Information Society', 16155289, 0.492, 'Q2', 42, 121, 7261, 628, 191, '5', '2003-2020', 'Computer Networks and Communications (Q2); Human-Computer Interaction (Q2); Information Systems (Q2); Software (Q2)'), (9936, 'Aquatic Insects', 1650424, 0.491, 'Q2', 21, 30, 1327, 47, 60, '3', '1979-2014, 2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q2); Insect Science (Q2); Aquatic Science (Q3)'), (9937, 'Asian Pacific Journal of Tropical Medicine', 23524146, 0.491, 'Q3', 52, 89, 2834, 895, 375, '4', '2010-2020', 'Medicine (miscellaneous) (Q3)'), (9938, 'Computer Optics', 1342452, 0.491, 'Q2', 29, 121, 3152, 976, 367, '10', '2008-2020', 'Atomic and Molecular Physics, and Optics (Q2); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Engineering (miscellaneous)'), (9939, 'Economic Botany', 130001, 0.491, 'Q2', 70, 29, 2185, 167, 96, '2', '1947-2020', 'Horticulture (Q2); Plant Science (Q2)'), (9940, 'Families, Systems and Health', 10917527, 0.491, 'Q3', 47, 96, 5151, 253, 171, '2', '1996-2020', 'Applied Psychology (Q3); Psychiatry and Mental Health (Q3)'), (9941, 'Global Media and Communication', 17427665, 0.491, 'Q2', 22, 24, 1526, 63, 55, '3', '2005-2020', 'Arts and Humanities (miscellaneous) (Q2); Communication (Q2)'), (9942, 'IEEE Transactions on Molecular, Biological, a', 23327804, 0.491, 'Q2', 21, 23, 1020, 176, 60, '2', '2015-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Modeling and Simulation (Q2); Bioengineering (Q3); Biotechnology (Q3)'), (9943, 'International Journal of Entrepreneurial Vent', 17425379, 0.491, 'Q2', 17, 28, 2303, 113, 73, '19', '2009, 2011-2014, 2020', 'Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (9944, 'Journal of Language Evolution', 2058458, 0.491, 'Q1', 8, 12, 933, 55, 38, '3', '2016-2020', 'Linguistics and Language (Q1); Developmental and Educational Psychology (Q3); Developmental Neuroscience (Q4)'), (9945, 'Journal of Vascular Access', 11297298, 0.491, 'Q2', 34, 303, 7114, 670, 375, '7', '2001-2020', 'Surgery (Q2); Nephrology (Q3)'), (9946, 'Macromolecular Research', 15985032, 0.491, 'Q2', 49, 170, 6658, 1032, 499, '13', '2002-2020', 'Chemical Engineering (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2); Organic Chemistry (Q3)'), (9947, 'Mathematical Modelling and Analysis', 13926292, 0.491, 'Q2', 25, 41, 1117, 190, 121, '69', '1996-2020', 'Modeling and Simulation (Q2); Analysis (Q3)'), (9948, 'Outlooks on Pest Management', 14658933, 0.491, 'Q2', 32, 31, 531, 140, 70, '3', '2004-2020', 'Agronomy and Crop Science (Q2); Food Science (Q2); Insect Science (Q2); Biotechnology (Q3)'), (9949, 'Psychological Record', 332933, 0.491, 'Q2', 52, 79, 3767, 212, 138, '19', '1973-1975, 1989-1990, 1996-2020', 'Arts and Humanities (miscellaneous) (Q2); Psychology (miscellaneous) (Q2)'), (9950, 'REACH', 23523093, 0.491, 'Q2', 8, 1, 124, 43, 19, '5', '2016-2019', 'Aerospace Engineering (Q2); Radiation (Q2); Human Factors and Ergonomics (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (9951, 'System Dynamics Review', 10991727, 0.491, 'Q2', 57, 21, 1106, 92, 46, '3', '1985-2020', 'Management of Technology and Innovation (Q2); Social Sciences (miscellaneous) (Q2); Strategy and Management (Q2)'), (9952, 'Zoology in the Middle East', 9397140, 0.491, 'Q2', 22, 45, 1062, 122, 145, '3', '1986, 1988-2020', 'Animal Science and Zoology (Q2)'), (9953, 'AEM Education and Training', 24725390, 0.49, 'Q1', 9, 137, 3691, 266, 125, '2', '2017-2020', 'Emergency Nursing (Q1); Education (Q2); Emergency Medicine (Q2)'), (9954, 'African Journal of Laboratory Medicine', 22252002, 0.49, 'Q2', 11, 42, 1021, 79, 63, '27', '2014, 2016-2020', 'Medical Laboratory Technology (Q2); Clinical Biochemistry (Q3); Public Health, Environmental and Occupational Health (Q3)'), (9955, 'American Philosophical Quarterly', 30481, 0.49, 'Q1', 25, 0, 0, 54, 92, '2', '1973, 1977, 1979-1980, 1988, 2001-2019', 'Philosophy (Q1)'), (9956, 'Archives of Iranian Medicine', 10292977, 0.49, 'Q3', 47, 163, 4475, 538, 358, '15', '2002-2020', 'Medicine (miscellaneous) (Q3)'), (9957, 'British Journal of Music Education', 2650517, 0.49, 'Q1', 22, 25, 1090, 46, 51, '3', '1984-1998, 2007-2020', 'Music (Q1); Education (Q2)'), (9958, 'Comparative Cytogenetics', 1993078, 0.49, 'Q2', 20, 35, 2077, 178, 109, '61', '2010-2020', 'Animal Science and Zoology (Q2); Plant Science (Q2); Biotechnology (Q3); Genetics (Q3)'), (9959, 'Disputatio', 873626, 0.49, 'Q1', 10, 23, 756, 57, 56, '26', '2000-2020', 'Philosophy (Q1)'), (9960, 'European Journal of Radiology Open', 23520477, 0.49, 'Q3', 15, 88, 2513, 205, 119, '3', '2014-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (9961, 'IT Professional', 15209202, 0.49, 'Q2', 50, 79, 914, 687, 210, '2', '1999-2020', 'Computer Science Applications (Q2); Hardware and Architecture (Q2); Software (Q2)'), (9962, 'Journal of Health Organization and Management', 14777266, 0.49, 'Q2', 42, 64, 3267, 301, 178, '3', '2003-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Health Policy (Q3)'), (9963, 'Journal of Pseudo-Differential Operators and ', 1662999, 0.49, 'Q2', 17, 87, 2507, 142, 121, '19', '2010-2020', 'Applied Mathematics (Q2); Analysis (Q3)'), (9964, 'Journal of Structural Integrity and Maintenan', 24705322, 0.49, 'Q2', 5, 23, 773, 82, 48, '3', '2018-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (9965, 'Modern Physics Letters A', 2177323, 0.49, 'Q2', 88, 409, 17224, 2120, 881, '37', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q2); Astronomy and Astrophysics (Q3); Nuclear and High Energy Physics (Q3)'), (9966, 'NETNOMICS: Economic Research and Electronic N', 13859587, 0.49, 'Q2', 16, 7, 311, 62, 26, '16', '2005, 2007-2019', 'Computer Networks and Communications (Q2); Economics and Econometrics (Q2); Information Systems (Q2)'), (9967, 'Neuroradiology Journal', 23851996, 0.49, 'Q3', 22, 99, 2414, 422, 240, '7', '2006-2020', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (9968, 'Pediatrics International', 13288067, 0.49, 'Q2', 63, 318, 5856, 911, 545, '3', '1958-1961, 1963-1981, 1983-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (9969, 'Polymer-Plastics Technology and Materials', 2574089, 0.49, 'Q2', 53, 179, 10082, 1223, 479, '3', '2019-2020', 'Chemical Engineering (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)'), (9970, 'Representation', 17494001, 0.49, 'Q2', 23, 59, 3363, 78, 76, '3', '1960-1986, 1988-2020', 'Sociology and Political Science (Q2)'), (9971, 'Revue Suisse de Zoologie', 35418, 0.49, 'Q3', 26, 30, 1244, 61, 79, '19', '1964-1979, 1994-2019', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (9972, 'Russian Entomological Journal', 1328069, 0.49, 'Q2', 8, 64, 1402, 110, 162, '10', '2015-2020', 'Insect Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (9973, 'Women s Studies in Communication', 7491409, 0.49, 'Q2', 26, 38, 1890, 125, 102, '3', '1977-1979, 1981-2020', 'Communication (Q2); Gender Studies (Q2)'), (9974, 'IET Radar, Sonar and Navigation', 17518784, 0.489, 'Q2', 82, 226, 7043, 1663, 629, '3', '2007-2020', 'Electrical and Electronic Engineering (Q2)'), (9975, 'Indian Journal of Medical Research, Supplemen', 3679012, 0.489, 'Q2', 21, 14, 383, 111, 36, '4', '2004-2005, 2012-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (9976, 'International Review of Finance', 14682443, 0.489, 'Q2', 18, 91, 3373, 202, 118, '3', '2011-2020', 'Economics and Econometrics (Q2); Finance (Q2)'), (9977, 'Journal of Agricultural Science', 218596, 0.489, 'Q2', 72, 66, 2877, 540, 312, '3', '1898, 1905-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Genetics (Q3)'), (9978, 'Journal of Experiential Education', 10538259, 0.489, 'Q2', 33, 43, 1786, 193, 71, '3', '1996-2020', 'Education (Q2)'), (9979, 'Journal of Materials Science: Materials in El', 9574522, 0.489, 'Q2', 75, 2258, 97920, 15584, 6898, '2', '1990-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Bioengineering (Q3); Biomater'), (9980, 'Journal of the Urban Planning and Development', 7339488, 0.489, 'Q2', 45, 95, 4908, 373, 176, '2', '1979-2020', 'Civil and Structural Engineering (Q2); Development (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2)'), (9981, 'Latin American Research Review', 238791, 0.489, 'Q1', 48, 45, 2174, 132, 139, '2', '1970, 1978-2020', 'Anthropology (Q1); Cultural Studies (Q1); Economics, Econometrics and Finance (miscellaneous) (Q1); History (Q1); Literature and Literary Theory (Q1); Multidisciplinary (Q1); Political Science and Int'), (9982, 'Nuclear Medicine Communications', 14735628, 0.489, 'Q3', 73, 201, 5323, 758, 470, '2', '1980-2020', 'Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (9983, 'Personalized Medicine', 17410541, 0.489, 'Q3', 31, 38, 2033, 311, 159, '3', '2006-2020', 'Medicine (miscellaneous) (Q3); Molecular Medicine (Q3); Pharmacology (Q3)'), (9984, 'Solvent Extraction and Ion Exchange', 15322262, 0.489, 'Q2', 63, 55, 2619, 302, 123, '2', '1983-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)'), (9985, 'Advances in Civil Engineering Materials', 23791357, 0.488, 'Q2', 11, 38, 1563, 252, 196, '2', '2015-2020', 'Ceramics and Composites (Q2); Civil and Structural Engineering (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2); Polymers and Plastics (Q2)'), (9986, 'Brazilian Journal of Otorhinolaryngology', 18088694, 0.488, 'Q3', 33, 269, 6348, 549, 364, '14', '2005-2020', 'Otorhinolaryngology (Q3)'), (9987, 'Business Strategy and Development', 25723170, 0.488, 'Q1', 7, 72, 4838, 134, 56, '2', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Development (Q2); Strategy and Management (Q2)'), (9988, 'Cytotechnology', 9209069, 0.488, 'Q3', 62, 79, 2906, 607, 319, '16', '1987-2020', 'Bioengineering (Q3); Biomedical Engineering (Q3); Biotechnology (Q3); Clinical Biochemistry (Q3); Cell Biology (Q4)'), (9989, 'ECS Journal of Solid State Science and Techno', 21628777, 0.488, 'Q2', 51, 473, 19422, 2262, 975, '2', '2012-2020', 'Electronic, Optical and Magnetic Materials (Q2)'), (9990, 'European Endocrinology', 17583780, 0.488, 'Q3', 11, 33, 1445, 95, 45, '3', '2011-2020', 'Endocrinology (Q3); Endocrinology, Diabetes and Metabolism (Q3); Endocrine and Autonomic Systems (Q4)'), (9991, 'European Journal of Wood and Wood Products', 1436736, 0.488, 'Q2', 60, 127, 4703, 768, 396, '5', '1937-1944, 1951-2020', 'Forestry (Q2); Materials Science (miscellaneous) (Q2)'), (9992, 'Folia Primatologica', 155713, 0.488, 'Q2', 46, 41, 2362, 121, 97, '19', '1963-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (9993, 'Food Science and Technology', 1012061, 0.488, 'Q2', 43, 240, 8692, 1053, 518, '14', '2006-2020', 'Food Science (Q2); Biotechnology (Q3)'), (9994, 'Herpetological Conservation and Biology', 19317603, 0.488, 'Q2', 23, 62, 3308, 209, 192, '2', '2008-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (9995, 'Journal of Neurological Surgery, Part A: Cent', 21936323, 0.488, 'Q2', 33, 104, 3070, 330, 258, '5', '2012-2020', 'Surgery (Q2); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)'), (9996, 'Journal of Neurological Surgery, Part B: Skul', 2193634, 0.488, 'Q3', 42, 153, 3884, 486, 372, '2', '2012-2020', 'Neurology (clinical) (Q3)'), (9997, 'Learning and Motivation', 239690, 0.488, 'Q2', 44, 58, 2824, 142, 91, '2', '1970-2020', 'Education (Q2); Health (social science) (Q2); Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)'), (9998, 'Planning Perspectives', 2665433, 0.488, 'Q2', 26, 67, 3919, 80, 114, '3', '1986-2020', 'Geography, Planning and Development (Q2)'), (9999, 'Reviews of Environmental Contamination and To', 1795953, 0.488, 'Q2', 80, 32, 4096, 244, 9, '2', '1987-2020', 'Pollution (Q2); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10000, 'Transplant Immunology', 9663274, 0.488, 'Q2', 61, 42, 1711, 244, 157, '16', '1993-2020', 'Transplantation (Q2); Immunology and Allergy (Q3); Immunology (Q4)'), (10001, 'Water Policy', 13667017, 0.488, 'Q2', 56, 82, 3850, 340, 234, '3', '1998, 2000-2020', 'Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2)'), (10002, 'American Journal of Health-System Pharmacy', 10792082, 0.487, 'Q1', 96, 359, 5280, 1321, 880, '2', '1995-2020', 'Pharmacy (Q1); Health Policy (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3)'), (10003, 'Asian Development Review', 1161105, 0.487, 'Q2', 23, 17, 675, 63, 49, '2', '1987-2000, 2002-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (10004, 'EuroChoices', 14780917, 0.487, 'Q1', 15, 43, 436, 98, 59, '2', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q1); Geography, Planning and Development (Q2)'), (10005, 'European Zoological Journal', 24750263, 0.487, 'Q2', 37, 63, 4014, 248, 133, '3', '2017-2020', 'Animal Science and Zoology (Q2)'), (10006, 'Infectious Disease Reports', 20367449, 0.487, 'Q3', 17, 57, 1091, 74, 44, '7', '2010-2020', 'Infectious Diseases (Q3)'), (10007, 'International Journal of Islamic and Middle E', 17538394, 0.487, 'Q2', 29, 62, 4073, 333, 116, '3', '2008-2020', 'Business and International Management (Q2); Finance (Q2); Strategy and Management (Q2)'), (10008, 'Japanese Journal of Applied Physics, Part 1: ', 13474065, 0.487, 'Q2', 129, 1186, 43234, 5906, 3817, '6', '1963-2008, 2010-2020', 'Engineering (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (10009, 'Maritime Studies', 22129790, 0.487, 'Q2', 17, 55, 2598, 149, 76, '5', '2012-2020', 'Development (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2); Water Science and Technology (Q2); Aquatic Science (Q3)'), (10010, 'Materials and Corrosion - Werkstoffe und Korr', 15214176, 0.487, 'Q2', 55, 194, 6954, 949, 481, '3', '1950-1951, 1953-2020', 'Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2); Surfaces, Coatings and Films (Q2); Environmental Chemistry (Q3)'), (10011, 'Refugee Survey Quarterly', 1471695, 0.487, 'Q1', 24, 35, 2143, 81, 61, '3', '1982, 1985, 1988-1990, 1992, 1994-1995, 1997, 2000-2020', 'Political Science and International Relations (Q1); Geography, Planning and Development (Q2)'), (10012, 'Stratigraphy and Geological Correlation', 8695938, 0.487, 'Q2', 34, 45, 2537, 116, 123, '10', '1994, 1996-2020', 'Geology (Q2); Paleontology (Q2); Stratigraphy (Q2)'), (10013, 'Action in Teacher Education', 21586098, 0.486, 'Q2', 24, 43, 2232, 67, 72, '3', '1996-2020', 'Education (Q2)'), (10014, 'Advances in Clinical and Experimental Medicin', 18995276, 0.486, 'Q3', 27, 167, 5422, 1276, 665, '17', '2001-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (10015, 'Archaeology, Ethnology and Anthropology of Eu', 15630110, 0.486, 'Q1', 16, 45, 1425, 80, 161, '10', '2006-2019', 'Archeology (arts and humanities) (Q1); Cultural Studies (Q1)'), (10016, 'Beton- und Stahlbetonbau', 14371006, 0.486, 'Q2', 25, 120, 2234, 241, 276, '2', '1969-2020', 'Building and Construction (Q2)'), (10017, 'Clinical Neuropharmacology', 1537162, 0.486, 'Q3', 78, 49, 1149, 280, 165, '2', '1982-2020', 'Neurology (clinical) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (10018, 'Current Hypertension Reviews', 18756506, 0.486, 'Q3', 20, 31, 1914, 103, 58, '52', '2006-2020', 'Internal Medicine (Q3)'), (10019, 'Invertebrate Biology', 10778306, 0.486, 'Q2', 42, 30, 1627, 135, 89, '2', '1995-2020', 'Animal Science and Zoology (Q2)'), (10020, 'Journal of Radio and Audio Media', 19376537, 0.486, 'Q2', 11, 36, 1706, 75, 73, '2', '2010-2020', 'Communication (Q2)'), (10021, 'Journal of Sport and Tourism', 14775085, 0.486, 'Q2', 44, 17, 1061, 123, 44, '3', '1993-2014, 2016-2020', 'Tourism, Leisure and Hospitality Management (Q2)'), (10022, 'Language Testing in Asia', 22290443, 0.486, 'Q1', 9, 16, 853, 94, 60, '2', '2011-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (10023, 'Pharmaceutical Nanotechnology', 22117385, 0.486, 'Q2', 7, 37, 1838, 114, 37, '16', '2014-2016, 2018-2020', 'Pharmaceutical Science (Q2); Biomedical Engineering (Q3)'), (10024, 'Wetlands Ecology and Management', 15729834, 0.486, 'Q2', 62, 69, 4015, 309, 181, '16', '1982, 1989-2020', 'Management, Monitoring, Policy and Law (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (10025, 'Applied Physics A: Materials Science and Proc', 14320630, 0.485, 'Q2', 149, 947, 39661, 5902, 2524, '5', '1988, 1995-2020', 'Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)'), (10026, 'Architectural Engineering and Design Manageme', 17527589, 0.485, 'Q1', 27, 58, 2822, 206, 81, '3', '2005-2020', 'Architecture (Q1); Building and Construction (Q2); Business, Management and Accounting (miscellaneous) (Q2)'), (10027, 'Emergencias', 11376821, 0.485, 'Q2', 27, 152, 1805, 446, 175, '12', '2014-2020', 'Emergency Medicine (Q2)'), (10028, 'Fuel Cells', 16156846, 0.485, 'Q2', 69, 79, 3209, 614, 252, '3', '2003-2020', 'Energy Engineering and Power Technology (Q2); Renewable Energy, Sustainability and the Environment (Q3)'), (10029, 'Indian Journal of Psychiatry', 195545, 0.485, 'Q3', 34, 226, 4909, 646, 364, '4', '1970, 1973-1984, 2009-2020', 'Psychiatry and Mental Health (Q3)'), (10030, 'International Journal of Occupational Medicin', 12321087, 0.485, 'Q3', 46, 69, 2443, 407, 193, '17', '1994-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10031, 'Journal of Business Economics and Management', 20294433, 0.485, 'Q2', 37, 77, 4581, 471, 173, '69', '2003-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)'), (10032, 'Journal of Counselor Leadership and Advocacy', 23267178, 0.485, 'Q2', 7, 12, 556, 41, 41, '2', '2014-2020', 'Clinical Psychology (Q2); Education (Q2); Applied Psychology (Q3); Psychiatry and Mental Health (Q3)'), (10033, 'Journal of Network and Systems Management', 15737705, 0.485, 'Q2', 35, 66, 3087, 373, 111, '2', '1993-2020', 'Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Strategy and Management (Q2)'), (10034, 'Management (France)', 12864692, 0.485, 'Q2', 23, 24, 1748, 99, 106, '8', '1998-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Strategy and Management (Q2)'), (10035, 'Physica B: Condensed Matter', 9214526, 0.485, 'Q2', 113, 541, 21802, 4868, 2025, '16', '1984, 1988-2020', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (10036, 'Refuge', 2295113, 0.485, 'Q1', 22, 14, 622, 84, 54, '9', '2003-2020', 'Cultural Studies (Q1); Demography (Q2)'), (10037, 'Separations', 22978739, 0.485, 'Q2', 13, 72, 3274, 394, 142, '19', '2016-2020', 'Analytical Chemistry (Q2); Filtration and Separation (Q3)'), (10038, 'Small Wars and Insurgencies', 17439558, 0.485, 'Q1', 22, 77, 4427, 194, 129, '3', '1990-2005, 2007-2020', 'Political Science and International Relations (Q1)'), (10039, 'Veterinary Medicine and Science', 20531095, 0.485, 'Q2', 11, 176, 7233, 237, 128, '3', '2015-2020', 'Veterinary (miscellaneous) (Q2)'), (10040, 'Australasian Journal of Environmental Managem', 14486563, 0.484, 'Q2', 25, 25, 1506, 134, 73, '3', '1996-2020', 'Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q2)'), (10041, 'Coatings', 20796412, 0.484, 'Q2', 37, 1263, 59384, 4404, 1500, '19', '2011-2020', 'Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)'), (10042, 'Emergency Medicine International', 20902840, 0.484, 'Q2', 4, 0, 0, 1, 1, '32', '2014-2017', 'Emergency Medicine (Q2)'), (10043, 'Family Medicine', 7423225, 0.484, 'Q2', 66, 160, 1846, 409, 335, '2', '1985-2020', 'Family Practice (Q2)'), (10044, 'Geo Journal', 15729893, 0.484, 'Q2', 67, 320, 19836, 627, 307, '16', '1977-2002, 2004-2020', 'Geography, Planning and Development (Q2)'), (10045, 'IMA Journal of Management Mathematics', 1471678, 0.484, 'Q2', 34, 23, 981, 93, 54, '3', '1986, 1988-1989, 1991-1993, 1995-2020', 'Applied Mathematics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q2); Modeling and Simulation (Q2); '), (10046, 'International Journal of Educational Psycholo', 20143591, 0.484, 'Q2', 6, 12, 632, 57, 26, '12', '2018-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (10047, 'International Journal of Quantum Chemistry', 1097461, 0.484, 'Q2', 105, 276, 16473, 1432, 625, '2', '1967-2020', 'Atomic and Molecular Physics, and Optics (Q2); Condensed Matter Physics (Q2); Physical and Theoretical Chemistry (Q3)'), (10048, 'Journal of Cold Regions Engineering - ASCE', 887381, 0.484, 'Q2', 28, 34, 1116, 124, 81, '2', '1987-2020', 'Geotechnical Engineering and Engineering Geology (Q2); Industrial and Manufacturing Engineering (Q2)'), (10049, 'Journal of Human Reproductive Sciences', 19984766, 0.484, 'Q3', 31, 59, 1321, 302, 167, '4', '2009-2020', 'Reproductive Medicine (Q3)'), (10050, 'Journal of Medical Radiation Sciences', 20513909, 0.484, 'Q3', 18, 64, 1380, 283, 105, '2', '2013-2020', 'Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (10051, 'Journal of Oral Implantology', 1606972, 0.484, 'Q3', 52, 74, 2219, 334, 210, '2', '1977-2020', 'Oral Surgery (Q3)'), (10052, 'Journal of Organometallic Chemistry', 22328, 0.484, 'Q2', 124, 322, 17266, 2848, 1284, '16', '1963-2020', 'Inorganic Chemistry (Q2); Materials Chemistry (Q2); Biochemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (10053, 'Logical Methods in Computer Science', 18605974, 0.484, 'Q2', 39, 81, 2920, 473, 300, '5', '2005-2020', 'Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q2)'), (10054, 'Neurologia i Neurochirurgia Polska', 283843, 0.484, 'Q2', 26, 93, 2217, 398, 260, '17', '1967-2020', 'Surgery (Q2); Neurology (clinical) (Q3)'), (10055, 'Oral and Maxillofacial Surgery', 18651550, 0.484, 'Q2', 30, 101, 2579, 271, 198, '5', '2003, 2008-2020', 'Surgery (Q2); Oral Surgery (Q3); Otorhinolaryngology (Q3)'), (10056, 'Revista Brasileira de Parasitologia Veterinar', 103846, 0.484, 'Q2', 31, 121, 4457, 430, 280, '14', '2005-2020', 'Veterinary (miscellaneous) (Q2); Parasitology (Q3)'), (10057, 'Allergologia et Immunopathologia', 15781267, 0.483, 'Q3', 37, 117, 3612, 425, 260, '12', '1973-2020', 'Immunology and Allergy (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3); Immunology (Q4)'), (10058, 'Annals of Human Biology', 3014460, 0.483, 'Q3', 57, 89, 3642, 400, 233, '3', '1974-2020', 'Genetics (Q3); Public Health, Environmental and Occupational Health (Q3); Aging (Q4); Epidemiology (Q4); Physiology (Q4)'), (10059, 'Applied Radiation and Isotopes', 9698043, 0.483, 'Q2', 78, 400, 11572, 1936, 1255, '3', '1986-1987, 1993-2020', 'Radiation (Q2)'), (10060, 'Computational Particle Mechanics', 21964386, 0.483, 'Q2', 23, 101, 4231, 313, 131, '19', '2014-2020', 'Civil and Structural Engineering (Q2); Computational Mathematics (Q2); Computational Mechanics (Q2); Fluid Flow and Transfer Processes (Q2); Modeling and Simulation (Q2); Numerical Analysis (Q3)'), (10061, 'Critical Military Studies', 23337486, 0.483, 'Q1', 14, 48, 2332, 104, 70, '3', '2015-2020', 'History (Q1); Law (Q1); Political Science and International Relations (Q1); Management Science and Operations Research (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (10062, 'Dialectica', 122017, 0.483, 'Q1', 27, 0, 0, 44, 73, '2', '1947-2019', 'Philosophy (Q1)'), (10063, 'Facta Universitatis, Series: Mechanical Engin', 23350164, 0.483, 'Q2', 16, 45, 1425, 359, 111, '55', '2015-2020', 'Civil and Structural Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Polymers and Plastics (Q2)'), (10064, 'Fishery Bulletin', 900656, 0.483, 'Q3', 66, 28, 1158, 121, 100, '2', '1979-1986, 1988-2020', 'Aquatic Science (Q3)'), (10065, 'Frontiers in Surgery', 2296875, 0.483, 'Q2', 25, 141, 4976, 460, 209, '19', '2014-2020', 'Surgery (Q2)'), (10066, 'Geotectonics', 15561976, 0.483, 'Q2', 27, 58, 2915, 135, 131, '10', '1978-1988, 2004-2020', 'Geology (Q2)'), (10067, 'Health Promotion Practice', 15248399, 0.483, 'Q2', 49, 210, 5390, 442, 316, '2', '2000-2020', 'Nursing (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3)'), (10068, 'Journal of Herbal Medicine', 22108041, 0.483, 'Q2', 21, 104, 5441, 386, 133, '5', '2011-2020', 'Complementary and Alternative Medicine (Q2)'), (10069, 'Magnetic Resonance in Chemistry', 7491581, 0.483, 'Q2', 72, 142, 5780, 632, 329, '3', '1985-2020', 'Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)'), (10070, 'Photogrammetric Engineering and Remote Sensin', 991112, 0.483, 'Q3', 127, 13, 366, 294, 178, '2', '1975-2020', 'Computers in Earth Sciences (Q3)'), (10071, 'Progress in Computational Fluid Dynamics', 14684349, 0.483, 'Q2', 29, 30, 1018, 132, 102, '3', '2001-2014, 2020', 'Computer Science Applications (Q2); Condensed Matter Physics (Q2)'), (10072, 'Advances in Meteorology', 16879317, 0.482, 'Q2', 32, 101, 5090, 762, 399, '32', '2012-2020', 'Geophysics (Q2); Pollution (Q2); Atmospheric Science (Q3)'), (10073, 'BioSystems', 3032647, 0.482, 'Q2', 74, 122, 7351, 654, 300, '42', '1967-2020', 'Applied Mathematics (Q2); Modeling and Simulation (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Statistics and Probability (Q3)'), (10074, 'Demokratizatsiya', 10746846, 0.482, 'Q2', 24, 22, 1590, 52, 66, '2', '1996-2020', 'Geography, Planning and Development (Q2); Political Science and International Relations (Q2)'), (10075, 'Fire and Materials', 3080501, 0.482, 'Q2', 58, 127, 4412, 595, 261, '3', '1976, 1978-1989, 1991-2020', 'Ceramics and Composites (Q2); Chemistry (miscellaneous) (Q2); Electronic, Optical and Magnetic Materials (Q2); Metals and Alloys (Q2); Polymers and Plastics (Q2)'), (10076, 'Frontiers of Mathematics in China', 16733452, 0.482, 'Q2', 29, 75, 1755, 361, 238, '1', '2006-2020', 'Mathematics (miscellaneous) (Q2)'), (10077, 'Glasgow Mathematical Journal', 1469509, 0.482, 'Q2', 33, 73, 1501, 137, 132, '3', '1967-2020', 'Mathematics (miscellaneous) (Q2)'), (10078, 'International Journal of Doctoral Studies', 15568873, 0.482, 'Q2', 22, 32, 1878, 119, 70, '2', '2010-2020', 'Education (Q2)'), (10079, 'International Journal of General Systems', 3081079, 0.482, 'Q2', 47, 42, 1184, 261, 124, '3', '1974-2020', 'Computer Science Applications (Q2); Control and Systems Engineering (Q2); Information Systems (Q2); Modeling and Simulation (Q2); Theoretical Computer Science (Q3)'), (10080, 'International Journal of Neonatal Screening', 2409515, 0.482, 'Q2', 10, 72, 2273, 183, 109, '19', '2015-2020', 'Pediatrics, Perinatology and Child Health (Q2); Immunology and Microbiology (miscellaneous) (Q3); Obstetrics and Gynecology (Q3)'), (10081, 'International Relations', 17412862, 0.482, 'Q2', 38, 48, 0, 124, 88, '3', '1957-1965, 1967-1972, 1975-2020', 'Political Science and International Relations (Q2)'), (10082, 'Journal of the Knowledge Economy', 18687873, 0.482, 'Q2', 27, 147, 9775, 595, 226, '5', '2010-2020', 'Economics and Econometrics (Q2)'), (10083, 'Journal of Water and Health', 14778920, 0.482, 'Q2', 59, 96, 4334, 509, 273, '3', '2003-2020', 'Waste Management and Disposal (Q2); Water Science and Technology (Q2); Infectious Diseases (Q3); Microbiology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10084, 'Matematychni Studii', 10274634, 0.482, 'Q2', 8, 44, 757, 96, 121, '44', '2017-2020', 'Mathematics (miscellaneous) (Q2)'), (10085, 'Medical Devices: Evidence and Research', 11791470, 0.482, 'Q3', 30, 40, 1649, 263, 116, '41', '2008-2020', 'Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)'), (10086, 'Muscles, Ligaments and Tendons Journal', 22404554, 0.482, 'Q3', 35, 89, 3120, 347, 214, '7', '2011-2020', 'Orthopedics and Sports Medicine (Q3)'), (10087, 'Optik', 304026, 0.482, 'Q2', 66, 2043, 62920, 12347, 4974, '5', '1946, 1968-1988, 1993-2020', 'Atomic and Molecular Physics, and Optics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (10088, 'Proceedings of the Institution of Mechanical ', 2041305, 0.482, 'Q2', 56, 224, 7462, 690, 411, '3', '1994-2020', 'Mechanical Engineering (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)'), (10089, 'Rangeland Journal', 10369872, 0.482, 'Q2', 38, 40, 1839, 191, 152, '11', '1998-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10090, 'Religion', 10961151, 0.482, 'Q1', 31, 51, 2231, 86, 88, '3', '1971-2020', 'History (Q1); Sociology and Political Science (Q2)'), (10091, 'Social Science Quarterly', 384941, 0.482, 'Q2', 90, 155, 7226, 545, 376, '3', '1970, 1974, 1976-1984, 1987, 1989-1992, 1994, 1996-2020', 'Social Sciences (miscellaneous) (Q2)'), (10092, 'Tropical Plant Biology', 19359764, 0.482, 'Q2', 24, 32, 2146, 97, 58, '2', '2009-2020', 'Plant Science (Q2); Genetics (Q3)'), (10093, 'Acta Informatica', 14320525, 0.481, 'Q2', 40, 42, 1279, 163, 72, '5', '1971-2020', 'Computer Networks and Communications (Q2); Information Systems (Q2); Software (Q2)'), (10094, 'Annals of Silvicultural Research', 2284354, 0.481, 'Q2', 11, 25, 978, 64, 39, '7', '2013-2020', 'Ecology (Q2); Forestry (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10095, 'British Journal of Aesthetics', 70904, 0.481, 'Q1', 26, 25, 956, 40, 81, '3', '1960-2020', 'Philosophy (Q1)'), (10096, 'Cultural Trends', 14693690, 0.481, 'Q1', 27, 30, 1153, 93, 61, '3', '1989-1995, 1998, 2004-2008, 2010-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Communication (Q2)'), (10097, 'Discrete and Continuous Dynamical Systems - S', 19371632, 0.481, 'Q2', 34, 151, 4498, 805, 323, '2', '2008-2020', 'Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2); Analysis (Q3)'), (10098, 'Education Economics', 9645292, 0.481, 'Q2', 35, 36, 1566, 177, 110, '3', '1993-2020', 'Economics and Econometrics (Q2); Education (Q2)'), (10099, 'Forensic Science International: Synergy', 2589871, 0.481, 'Q1', 5, 74, 7463, 79, 33, '16', '2019-2020', 'Law (Q1); Pathology and Forensic Medicine (Q3)'), (10100, 'Journal of Building Physics', 17442591, 0.481, 'Q2', 35, 34, 1202, 201, 91, '3', '2000-2020', 'Building and Construction (Q2); Materials Science (miscellaneous) (Q2)'), (10101, 'Journal of Clinical and Experimental Dentistr', 19895488, 0.481, 'Q2', 23, 168, 4282, 1058, 614, '12', '2010-2020', 'Dentistry (miscellaneous) (Q2)'), (10102, 'Journal of Couple and Relationship Therapy', 15332683, 0.481, 'Q2', 22, 30, 1732, 77, 55, '2', '2002-2020', 'Gender Studies (Q2); Social Sciences (miscellaneous) (Q2); Applied Psychology (Q3); Social Psychology (Q3)'), (10103, 'Methodology and Computing in Applied Probabil', 13875841, 0.481, 'Q2', 32, 121, 3391, 256, 209, '16', '2004-2020', 'Mathematics (miscellaneous) (Q2); Statistics and Probability (Q3)'), (10104, 'Molecular Informatics', 18681751, 0.481, 'Q2', 68, 77, 3339, 536, 185, '5', '2010-2020', 'Computer Science Applications (Q2); Drug Discovery (Q3); Molecular Medicine (Q3); Organic Chemistry (Q3); Structural Biology (Q3)'), (10105, 'Opuscula Mathematica', 23006919, 0.481, 'Q2', 16, 41, 834, 166, 138, '17', '2012-2020', 'Mathematics (miscellaneous) (Q2)'), (10106, 'ORL', 14230275, 0.481, 'Q3', 44, 40, 957, 173, 123, '19', '1938-1940, 1942-2020', 'Otorhinolaryngology (Q3)'), (10107, 'Physics and Chemistry of Liquids', 10290451, 0.481, 'Q2', 36, 103, 4251, 356, 194, '3', '1968-2020', 'Condensed Matter Physics (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q3)'), (10108, 'Plant Biotechnology', 13476114, 0.481, 'Q2', 40, 68, 1981, 135, 93, '6', '1997-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2); Biotechnology (Q3)'), (10109, 'Proceedings of Institution of Civil Engineers', 17476526, 0.481, 'Q2', 17, 9, 332, 83, 46, '3', '2008-2020', 'Civil and Structural Engineering (Q2); Waste Management and Disposal (Q2)'), (10110, 'African Geographical Review', 19376812, 0.48, 'Q2', 13, 47, 2638, 96, 64, '3', '2009-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)'), (10111, 'Analysis Mathematica', 1588273, 0.48, 'Q2', 18, 45, 941, 126, 123, '16', '1975-2020', 'Mathematics (miscellaneous) (Q2); Analysis (Q3)'), (10112, 'Australian Journal of Rural Health', 14401584, 0.48, 'Q2', 49, 97, 1769, 299, 226, '3', '1992-2020', 'Family Practice (Q2); Public Health, Environmental and Occupational Health (Q3)'), (10113, 'Data and Knowledge Engineering', 169023, 0.48, 'Q2', 87, 37, 1512, 440, 152, '16', '1985, 1987-2020', 'Information Systems and Management (Q2)'), (10114, 'Ethics and Behavior', 15327019, 0.48, 'Q2', 43, 72, 4079, 234, 107, '2', '1991-2020', 'Psychology (miscellaneous) (Q2); Social Psychology (Q3)'), (10115, 'European Journal of Dermatology', 11671122, 0.48, 'Q3', 71, 239, 2898, 657, 291, '8', '1993-2020', 'Dermatology (Q3)'), (10116, 'Geburtshilfe und Frauenheilkunde', 14388804, 0.48, 'Q2', 28, 341, 3521, 510, 327, '5', '1947-1948, 1950-2020', 'Maternity and Midwifery (Q2); Obstetrics and Gynecology (Q3)'), (10117, 'Hungarian Geographical Bulletin', 20645147, 0.48, 'Q2', 14, 22, 1327, 146, 67, '50', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (10118, 'Israel Journal of Health Policy Research', 20454015, 0.48, 'Q3', 18, 75, 2549, 304, 176, '3', '2012-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10119, 'Journal of Environmental Science and Health -', 10934529, 0.48, 'Q2', 71, 183, 8699, 913, 439, '2', '1978-1979, 1987, 1996-2020', 'Environmental Engineering (Q2); Medicine (miscellaneous) (Q3)'), (10120, 'Journal of Innovation and Entrepreneurship', 21925372, 0.48, 'Q2', 14, 27, 1866, 132, 48, '5', '2014-2015, 2017-2020', 'Economics and Econometrics (Q2); Information Systems (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2); Sociology and Political Science (Q2)'), (10121, 'Materials Transactions', 13459678, 0.48, 'Q2', 102, 363, 10025, 1118, 939, '6', '1993, 2001-2020', 'Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10122, 'Measurement Science and Technology', 9570233, 0.48, 'Q2', 136, 591, 19293, 3369, 1399, '3', '1990-2020', 'Applied Mathematics (Q2); Engineering (miscellaneous) (Q2); Instrumentation (Q2)'), (10123, 'Noise Mapping', 2084879, 0.48, 'Q2', 13, 25, 845, 44, 21, '5', '2014-2020', 'Acoustics and Ultrasonics (Q2); Urban Studies (Q2); Management, Monitoring, Policy and Law (Q3)'), (10124, 'Analyses of Social Issues and Public Policy', 15297489, 0.479, 'Q2', 31, 38, 2164, 67, 53, '3', '2005-2020', 'Social Sciences (miscellaneous) (Q2); Management, Monitoring, Policy and Law (Q3)'), (10125, 'Bulletin of the Australian Mathematical Socie', 49727, 0.479, 'Q2', 42, 167, 1970, 329, 368, '3', '1969-2020', 'Mathematics (miscellaneous) (Q2)'), (10126, 'Canadian Journal of Political Science', 17449324, 0.479, 'Q2', 37, 62, 2360, 146, 144, '3', '1968-2020', 'Sociology and Political Science (Q2)'), (10127, 'Estudios Atacamenos', 7181043, 0.479, 'Q1', 16, 54, 3609, 86, 120, '45', '2007-2020', 'Anthropology (Q1); Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)'), (10128, 'Ethiopian journal of health sciences', 10291857, 0.479, 'Q3', 20, 55, 0, 456, 269, '67', '2013-2020', 'Medicine (miscellaneous) (Q3)'), (10129, 'Evolutionary Ecology Research', 15220613, 0.479, 'Q3', 73, 6, 413, 97, 97, '2', '1999-2014, 2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (10130, 'International Journal of Food Science', 23567015, 0.479, 'Q2', 18, 77, 3410, 208, 83, '32', '2013-2020', 'Food Science (Q2)'), (10131, 'Journal of Forestry Research', 1007662, 0.479, 'Q2', 28, 345, 17451, 1090, 545, '1', '1997, 2004, 2007-2020', 'Forestry (Q2)'), (10132, 'Journal of Information Literacy', 17505968, 0.479, 'Q2', 10, 13, 641, 73, 57, '3', '2014-2020', 'Education (Q2); E-learning (Q2); Library and Information Sciences (Q2)'), (10133, 'Journal of Investigative Psychology and Offen', 15444759, 0.479, 'Q3', 22, 25, 1141, 93, 62, '3', '2009-2020', 'Applied Psychology (Q3); Social Psychology (Q3)'), (10134, 'Journal of Structural Fire Engineering', 20402317, 0.479, 'Q2', 13, 24, 662, 117, 91, '3', '2010-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2); Safety, Risk, Reliability and Quality (Q2)'), (10135, 'Journal of Theoretical and Computational Acou', 25917811, 0.479, 'Q2', 38, 48, 1727, 142, 110, '37', '2018-2020', 'Acoustics and Ultrasonics (Q2); Applied Mathematics (Q2); Computer Science Applications (Q2)'), (10136, 'Nationalities Papers', 14653923, 0.479, 'Q1', 28, 68, 4197, 170, 199, '3', '1972-1985, 1987-2020', 'History (Q1); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)'), (10137, 'Numerical Functional Analysis and Optimizatio', 15322467, 0.479, 'Q2', 47, 99, 2727, 326, 277, '2', '1979-2020', 'Computer Science Applications (Q2); Control and Optimization (Q2); Signal Processing (Q2); Analysis (Q3)'), (10138, 'Nutrition and Dietetics', 14466368, 0.479, 'Q3', 31, 81, 2893, 439, 203, '2', '2006-2008, 2012-2020', 'Nutrition and Dietetics (Q3)'), (10139, 'Operators and Matrices', 18463886, 0.479, 'Q3', 19, 66, 1186, 189, 229, '58', '2009-2020', 'Algebra and Number Theory (Q3); Analysis (Q3)'), (10140, 'Teacher Educator', 8878730, 0.479, 'Q2', 20, 29, 1527, 72, 73, '3', '1971-2020', 'Education (Q2)'), (10141, 'Theory of Computing Systems', 14330490, 0.479, 'Q3', 44, 76, 1874, 391, 223, '2', '1996-2020', 'Computational Theory and Mathematics (Q3); Theoretical Computer Science (Q3)'), (10142, 'Computer Applications in Engineering Educatio', 10990542, 0.478, 'Q2', 29, 158, 6285, 814, 371, '2', '1992-2020', 'Computer Science (miscellaneous) (Q2); Education (Q2); Engineering (miscellaneous) (Q2)'), (10143, 'Critical Review of International Social and P', 13698230, 0.478, 'Q1', 19, 116, 3758, 176, 179, '3', '2008, 2010-2020', 'Philosophy (Q1); Sociology and Political Science (Q2)'), (10144, 'Critical Reviews in Oncogenesis', 8939675, 0.478, 'Q3', 49, 34, 2855, 178, 93, '2', '1989-2000, 2006-2009, 2011-2020', 'Medicine (miscellaneous) (Q3); Cancer Research (Q4)'), (10145, 'Epijournal de Geometrie Algebrique', 24916765, 0.478, 'Q3', 5, 22, 573, 55, 45, '8', '2017-2019', 'Algebra and Number Theory (Q3); Geometry and Topology (Q3)'), (10146, 'Episodes', 7053797, 0.478, 'Q2', 71, 67, 6512, 201, 97, '9', '1979-1989, 1992, 1996-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (10147, 'European Journal of Political Theory', 17412730, 0.478, 'Q2', 30, 58, 2646, 132, 113, '3', '2002-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10148, 'Few-Body Systems', 1777963, 0.478, 'Q2', 45, 47, 2690, 578, 368, '28', '1986-2020', 'Atomic and Molecular Physics, and Optics (Q2)'), (10149, 'Frontiers of Materials Science', 20950268, 0.478, 'Q2', 32, 46, 2052, 298, 123, '1', '2011-2020', 'Materials Science (miscellaneous) (Q2)'), (10150, 'Journal of International Consumer Marketing', 8961530, 0.478, 'Q2', 45, 48, 3932, 167, 81, '2', '1988-1993, 1995-2020', 'Management Information Systems (Q2); Marketing (Q2)'), (10151, 'Journal of Pipeline Systems Engineering and P', 19491190, 0.478, 'Q2', 23, 89, 3234, 305, 145, '2', '2010-2020', 'Civil and Structural Engineering (Q2); Mechanical Engineering (Q2)'), (10152, 'Journal of Psycholinguistic Research', 15736555, 0.478, 'Q1', 57, 77, 3701, 293, 244, '2', '1971-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Psychology (miscellaneous) (Q2); Experimental and Cognitive Psychology (Q3)'), (10153, 'Journal of Sustainable Water in the Built Env', 23796111, 0.478, 'Q2', 10, 35, 1794, 126, 65, '2', '2015-2020', 'Water Science and Technology (Q2); Management, Monitoring, Policy and Law (Q3)'), (10154, 'Natural Product Research', 14786427, 0.478, 'Q2', 51, 1319, 26355, 4204, 1916, '3', '2003-2020', 'Analytical Chemistry (Q2); Plant Science (Q2); Biochemistry (Q3); Organic Chemistry (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (10155, 'New Zealand Journal of Agricultural Research', 288233, 0.478, 'Q2', 45, 64, 2988, 175, 98, '3', '1958-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Plant Science (Q2); Soil Science (Q2)'), (10156, 'Petroleum Research', 20962495, 0.478, 'Q2', 8, 38, 1145, 157, 93, '1', '2016-2020', 'Energy Engineering and Power Technology (Q2); Geology (Q2); Geochemistry and Petrology (Q3)'), (10157, 'Photonic Sensors', 21907439, 0.478, 'Q2', 31, 58, 2026, 348, 140, '5', '2011-2020', 'Electronic, Optical and Magnetic Materials (Q2); Atomic and Molecular Physics, and Optics (Q3)'), (10158, 'Political Theory', 905917, 0.478, 'Q1', 58, 55, 0, 112, 91, '2', '1973-2020', 'History (Q1); Sociology and Political Science (Q2)'), (10159, 'Revista de Psicologia del Trabajo y de las Or', 15765962, 0.478, 'Q2', 17, 21, 1650, 166, 70, '12', '2011-2019', 'Organizational Behavior and Human Resource Management (Q2); Social Psychology (Q3)'), (10160, 'Romanian Journal of Physics', 1221146, 0.478, 'Q2', 30, 74, 2173, 327, 207, '43', '2008-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (10161, 'Sotsiologicheskiy Zhurnal', 15622495, 0.478, 'Q2', 4, 32, 828, 50, 119, '10', '2017-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (10162, 'Australian Social Work', 312407, 0.477, 'Q2', 31, 75, 2439, 200, 124, '3', '1971-2004, 2006-2020', 'Health (social science) (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Work (Q3)'), (10163, 'Biofuels', 17597277, 0.477, 'Q2', 40, 121, 4804, 718, 295, '3', '2010-2020', 'Waste Management and Disposal (Q2); Renewable Energy, Sustainability and the Environment (Q3)'), (10164, 'Energy Sources, Part A: Recovery, Utilization', 15567230, 0.477, 'Q2', 45, 946, 34526, 3440, 1287, '3', '2006-2020', 'Energy Engineering and Power Technology (Q2); Fuel Technology (Q2); Nuclear Energy and Engineering (Q2); Renewable Energy, Sustainability and the Environment (Q3)'), (10165, 'Frontiers in Bioscience - Elite', 19450508, 0.477, 'Q3', 49, 15, 911, 166, 79, '2', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (10166, 'Invasive Plant Science and Management', 1939747, 0.477, 'Q2', 30, 33, 1847, 113, 94, '2', '2008-2020', 'Plant Science (Q2)'), (10167, 'Iranian Journal of Parasitology', 17357020, 0.477, 'Q3', 27, 82, 2320, 363, 246, '15', '2008-2020', 'Infectious Diseases (Q3); Parasitology (Q3)'), (10168, 'Journal of Communication Inquiry', 1968599, 0.477, 'Q1', 31, 32, 1634, 66, 59, '2', '1974-1982, 1984-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Communication (Q2)'), (10169, 'Journal of Mathematical Physics, Analysis, Ge', 18175805, 0.477, 'Q3', 11, 20, 399, 80, 70, '44', '2008-2020', 'Analysis (Q3); Geometry and Topology (Q3); Mathematical Physics (Q3)'), (10170, 'Journal of Porous Materials', 15734854, 0.477, 'Q2', 54, 172, 7537, 1240, 524, '16', '1995-2020', 'Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10171, 'Journal of the Canadian Urological Associatio', 19116470, 0.477, 'Q3', 38, 0, 0, 94, 43, '9', '2007-2018', 'Oncology (Q3); Urology (Q3)'), (10172, 'Knowledge Engineering Review', 14698005, 0.477, 'Q2', 62, 35, 1399, 132, 33, '3', '1984, 1987-2020', 'Artificial Intelligence (Q2); Software (Q2)'), (10173, 'Outlook on Agriculture', 307270, 0.477, 'Q2', 30, 40, 1645, 198, 102, '3', '1973, 1976, 1979-1981, 1984-1989, 1991-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Ecology (Q2)'), (10174, 'Pediatric and Developmental Pathology', 10935266, 0.477, 'Q2', 60, 70, 1647, 280, 212, '2', '1998-2020', 'Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)'), (10175, 'Proceedings of the Institution of Civil Engin', 17417597, 0.477, 'Q2', 21, 13, 473, 70, 36, '3', '2001-2002, 2004-2020', 'Ocean Engineering (Q2)'), (10176, 'Reference Librarian', 2763877, 0.477, 'Q2', 23, 19, 502, 93, 69, '2', '1982-2020', 'Library and Information Sciences (Q2)'), (10177, 'Revista Brasileira de Entomologia', 855626, 0.477, 'Q2', 31, 51, 1831, 218, 156, '14', '2003, 2005-2020', 'Insect Science (Q2)'), (10178, 'Strain', 14751305, 0.477, 'Q2', 47, 33, 1412, 190, 98, '3', '1965-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10179, 'Translational Animal Science', 25732102, 0.477, 'Q2', 10, 198, 6704, 467, 366, '4', '2017-2019', 'Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)'), (10180, 'Advances in Natural Sciences: Nanoscience and', 20436262, 0.476, 'Q2', 40, 74, 3237, 690, 225, '3', '2010-2020', 'Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2)'), (10181, 'Alcheringa', 3115518, 0.476, 'Q2', 32, 43, 2950, 176, 127, '3', '1975-2020', 'Paleontology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10182, 'Annals of Functional Analysis', 20088752, 0.476, 'Q2', 16, 85, 1628, 129, 134, '15', '2010-2020', 'Control and Optimization (Q2); Algebra and Number Theory (Q3); Analysis (Q3)'), (10183, 'Annals of Microbiology', 18692044, 0.476, 'Q3', 47, 62, 3232, 651, 302, '5', '1997-2020', 'Applied Microbiology and Biotechnology (Q3)'), (10184, 'Blumea: Journal of Plant Taxonomy and Plant G', 65196, 0.476, 'Q2', 25, 27, 784, 69, 70, '16', '1993-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10185, 'Cardiovascular Revascularization Medicine', 15538389, 0.476, 'Q3', 35, 509, 10448, 816, 568, '2', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (10186, 'Current Urology', 16617649, 0.476, 'Q3', 13, 38, 1205, 194, 147, '19', '2008-2020', 'Oncology (Q3); Reproductive Medicine (Q3); Urology (Q3)'), (10187, 'Discussiones Mathematicae - Graph Theory', 20835892, 0.476, 'Q2', 19, 115, 2181, 221, 230, '17', '2009-2020', 'Applied Mathematics (Q2); Discrete Mathematics and Combinatorics (Q2)'), (10188, 'Journal of Cardiothoracic Surgery', 17498090, 0.476, 'Q2', 45, 333, 6677, 797, 466, '3', '2006-2020', 'Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)'), (10189, 'Journal of Comparative Pathology', 219975, 0.476, 'Q2', 71, 116, 3273, 337, 249, '3', '1950-2020', 'Veterinary (miscellaneous) (Q2); Pathology and Forensic Medicine (Q3)'), (10190, 'Journal of International Society of Preventiv', 22310762, 0.476, 'Q2', 14, 94, 2645, 481, 262, '4', '2016-2020', 'Dentistry (miscellaneous) (Q2)'), (10191, 'Modern Asian Studies', 26749, 0.476, 'Q1', 39, 81, 6070, 145, 204, '3', '1967-2020', 'History (Q1); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)'), (10192, 'Robotica', 2635747, 0.476, 'Q2', 64, 147, 5752, 793, 347, '3', '1983-2020', 'Computer Science Applications (Q2); Control and Systems Engineering (Q2); Mathematics (miscellaneous) (Q2); Software (Q2)'), (10193, 'Zeitschrift fur Soziologie', 3401804, 0.476, 'Q2', 31, 26, 1891, 103, 77, '5', '1981, 1983-1984, 1986-1987, 1989-1991, 1994-2020', 'Sociology and Political Science (Q2)'), (10194, 'Acta Naturae', 20758251, 0.475, 'Q3', 26, 48, 3709, 293, 147, '10', '2013-2020', 'Biochemistry (Q3); Biotechnology (Q3); Molecular Medicine (Q3); Molecular Biology (Q4)'), (10195, 'Agricultural and Resource Economics Review', 10682805, 0.475, 'Q2', 29, 24, 1073, 99, 76, '2', '2004-2020', 'Agronomy and Crop Science (Q2); Economics and Econometrics (Q2)'), (10196, 'Canadian Modern Language Review', 84506, 0.475, 'Q1', 48, 18, 1073, 54, 73, '9', '1996-2020', 'Linguistics and Language (Q1); Education (Q2)'), (10197, 'CESifo Economic Studies', 1610241, 0.475, 'Q2', 27, 14, 418, 81, 72, '3', '2005-2019', 'Economics and Econometrics (Q2); Geography, Planning and Development (Q2)'), (10198, 'Contemporary Readings in Law and Social Justi', 21622752, 0.475, 'Q1', 14, 20, 597, 135, 56, '2', '2013-2020', 'Law (Q1); Sociology and Political Science (Q2)'), (10199, 'Early Child Development and Care', 14768275, 0.475, 'Q2', 45, 340, 17813, 716, 539, '3', '1971-1974, 1976, 1978-2020', 'Pediatrics (Q2); Developmental and Educational Psychology (Q3); Social Psychology (Q3)'), (10200, 'Experimental Aging Research', 10964657, 0.475, 'Q2', 49, 30, 1558, 126, 91, '3', '1975-2020', 'Arts and Humanities (miscellaneous) (Q2); Psychology (miscellaneous) (Q2); Geriatrics and Gerontology (Q3); Aging (Q4)'), (10201, 'Genetic Resources and Crop Evolution', 9259864, 0.475, 'Q2', 66, 159, 7873, 756, 451, '16', '1992-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q3)'), (10202, 'International Journal of Metalcasting', 19395981, 0.475, 'Q2', 19, 143, 3760, 384, 235, '2', '2007-2020', 'Industrial and Manufacturing Engineering (Q2); Materials Chemistry (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)'), (10203, 'Journal of Cancer Research and Therapeutics', 9731482, 0.475, 'Q3', 39, 345, 8646, 1647, 987, '4', '2005-2020', 'Medicine (miscellaneous) (Q3); Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (10204, 'Journal of Logic and Computation', 955792, 0.475, 'Q2', 54, 62, 1830, 224, 197, '3', '1990-2020', 'Arts and Humanities (miscellaneous) (Q2); Hardware and Architecture (Q2); Logic (Q2); Software (Q2); Theoretical Computer Science (Q3)'), (10205, 'Journal of Mass Spectrometry', 10969888, 0.475, 'Q3', 121, 189, 6953, 595, 316, '2', '1995-2020', 'Medicine (miscellaneous) (Q3); Spectroscopy (Q3)'), (10206, 'Journal of Peptide Science', 10752617, 0.475, 'Q3', 66, 47, 1900, 457, 237, '3', '1995-2020', 'Biochemistry (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Molecular Medicine (Q3); Organic Chemistry (Q3); Pharmacology (Q3); Molecular Biology (Q4); Structural Biology (Q4)'), (10207, 'Journal of Renewable and Sustainable Energy', 19417012, 0.475, 'Q3', 43, 153, 6734, 1661, 718, '2', '2010-2020', 'Renewable Energy, Sustainability and the Environment (Q3)'), (10208, 'Metaphilosophy', 14679973, 0.475, 'Q1', 35, 45, 1239, 132, 122, '3', '1970-2020', 'Philosophy (Q1)'), (10209, 'Pain Research and Treatment', 20901542, 0.475, 'Q2', 29, 0, 0, 105, 46, '2', '2010-2019', 'Anesthesiology and Pain Medicine (Q2); Neurology (clinical) (Q3)'), (10210, 'PaleoAmerica', 20555563, 0.475, 'Q2', 13, 29, 2454, 105, 82, '3', '2015-2020', 'Paleontology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10211, 'Physics and Chemistry of Minerals', 14322021, 0.475, 'Q2', 71, 55, 2744, 293, 219, '5', '1977-2020', 'Materials Science (miscellaneous) (Q2); Geochemistry and Petrology (Q3)'), (10212, 'Ratio', 14679329, 0.475, 'Q1', 29, 38, 1014, 88, 96, '3', '1988-2020', 'Philosophy (Q1)'), (10213, 'Acta Botanica Brasilica', 1023306, 0.474, 'Q2', 47, 56, 3103, 353, 221, '14', '1997-2020', 'Plant Science (Q2)'), (10214, 'Acta Neurologica Belgica', 3009009, 0.474, 'Q3', 34, 423, 8348, 471, 256, '7', '1959-1965, 1970-2020', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)'), (10215, 'Boletin de Filologia', 7189303, 0.474, 'Q1', 6, 32, 1695, 40, 66, '45', '2014-2020', 'History (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (10216, 'Chilean Journal of Agricultural Research', 7185820, 0.474, 'Q2', 31, 57, 2181, 305, 173, '45', '2008-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2)'), (10217, 'Foot', 9582592, 0.474, 'Q2', 34, 76, 2175, 284, 190, '3', '1991-2020', 'Podiatry (Q2); Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3)'), (10218, 'HOPOS', 21525188, 0.474, 'Q1', 5, 22, 1188, 30, 42, '2', '2015-2020', 'History and Philosophy of Science (Q1)'), (10219, 'International Food and Agribusiness Managemen', 10967508, 0.474, 'Q2', 35, 50, 2418, 270, 168, '2', '1998-2020', 'Business and International Management (Q2); Food Science (Q2)'), (10220, 'Journal of East Asian Studies', 15982408, 0.474, 'Q2', 22, 22, 1170, 57, 50, '3', '2008-2020', 'Development (Q2); Economics and Econometrics (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10221, 'Mind, Culture, and Activity', 10749039, 0.474, 'Q1', 51, 36, 1329, 109, 72, '3', '1994-2020', 'Anthropology (Q1); Cultural Studies (Q1); Language and Linguistics (Q1); Education (Q2); Cognitive Neuroscience (Q3); Developmental and Educational Psychology (Q3); Social Psychology (Q3)'), (10222, 'Negotiation and Conflict Management Research', 17504716, 0.474, 'Q2', 15, 28, 1735, 82, 61, '2', '2011-2020', 'Communication (Q2); Strategy and Management (Q2)'), (10223, 'Religion, State and Society', 9637494, 0.474, 'Q1', 19, 27, 1196, 73, 69, '3', '1992-2020', 'Religious Studies (Q1); Sociology and Political Science (Q2)'), (10224, 'Review of Faith and International Affairs', 19317743, 0.474, 'Q1', 11, 42, 1391, 94, 102, '3', '2009-2020', 'Religious Studies (Q1); Sociology and Political Science (Q2)'), (10225, 'Scientifica', 2090908, 0.474, 'Q2', 21, 72, 3048, 162, 78, '32', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)'), (10226, 'Surface Science Spectra', 10555269, 0.474, 'Q2', 13, 44, 733, 127, 83, '2', '1992-1994, 2006-2020', 'Condensed Matter Physics (Q2); Surfaces, Coatings and Films (Q2); Surfaces and Interfaces (Q3)'), (10227, 'Systems Engineering', 15206858, 0.474, 'Q2', 50, 47, 2800, 234, 109, '2', '1998-2020', 'Computer Networks and Communications (Q2); Hardware and Architecture (Q2)'), (10228, 'Traumatology', 15347656, 0.474, 'Q2', 37, 42, 811, 270, 130, '2', '1996-1999, 2002-2006, 2008-2020', 'Emergency Medicine (Q2); Nursing (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3)'), (10229, 'Acta Geographica Slovenica', 15816613, 0.473, 'Q2', 20, 23, 1188, 122, 63, '60', '2003-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (10230, 'Aerospace', 22264310, 0.473, 'Q2', 19, 179, 7585, 662, 262, '19', '2014-2020', 'Aerospace Engineering (Q2)'), (10231, 'Clinical Mass Spectrometry', 23769998, 0.473, 'Q3', 8, 23, 970, 115, 62, '16', '2016-2020', 'Spectroscopy (Q3)'), (10232, 'Entertainment Computing', 18759521, 0.473, 'Q2', 29, 32, 1430, 318, 120, '16', '2009-2021', 'Computer Science Applications (Q2); Human-Computer Interaction (Q2); Software (Q2)'), (10233, 'Folia Horticulturae', 8671761, 0.473, 'Q2', 9, 37, 1619, 169, 86, '17', '2016-2020', 'Horticulture (Q2)'), (10234, 'International Journal of Modelling and Simula', 2286203, 0.473, 'Q2', 18, 56, 1946, 137, 74, '3', '1996-2020', 'Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Industrial and Manufacturing Engineering (Q2); Mechanics of Materials (Q2); Modeling and Simulation (Q2); Software (Q2)'), (10235, 'IZA Journal of Labor Policy', 21939004, 0.473, 'Q2', 16, 18, 595, 62, 37, '3', '2012-2019', 'Economics and Econometrics (Q2); Industrial Relations (Q2); Organizational Behavior and Human Resource Management (Q2)'), (10236, 'Journal of Ethnic and Cultural Diversity in S', 15313204, 0.473, 'Q2', 29, 57, 2448, 134, 79, '2', '2000-2020', 'Education (Q2); Health (social science) (Q2); Social Work (Q3)'), (10237, 'Journal of Gastrointestinal Cancer', 19416636, 0.473, 'Q3', 47, 288, 8184, 483, 345, '2', '2007-2020', 'Gastroenterology (Q3); Oncology (Q3)'), (10238, 'Journal of Management and Governance', 1572963, 0.473, 'Q2', 50, 74, 5903, 264, 115, '2', '1997-2020', 'Business and International Management (Q2)'), (10239, 'Journal of Psoriasis and Psoriatic Arthritis', 24755311, 0.473, 'Q3', 3, 27, 711, 25, 27, '3', '2018-2020', 'Dermatology (Q3); Rheumatology (Q3)'), (10240, 'Mathematical Logic Quarterly', 9425616, 0.473, 'Q3', 28, 44, 696, 58, 113, '5', '1955-2020', 'Logic (Q3)'), (10241, 'Medical Ultrasonography', 20668643, 0.473, 'Q2', 28, 90, 2102, 382, 215, '43', '2010-2020', 'Acoustics and Ultrasonics (Q2); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (10242, 'PMLA', 308129, 0.473, 'Q1', 36, 47, 1982, 99, 236, '2', '2002-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (10243, 'Thermophysics and Aeromechanics', 8698643, 0.473, 'Q2', 22, 85, 1754, 291, 268, '10', '2006-2020', 'Aerospace Engineering (Q2); Energy Engineering and Power Technology (Q2); Modeling and Simulation (Q2); Radiation (Q2); Nuclear and High Energy Physics (Q3)'), (10244, 'Acta Montanistica Slovaca', 13351788, 0.472, 'Q2', 21, 38, 1466, 223, 117, '53', '2007-2020', 'Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Geochemistry and Petrology (Q3)'), (10245, 'Basic Income Studies', 19320183, 0.472, 'Q2', 10, 6, 442, 40, 27, '5', '2009-2011, 2013-2020', 'Economics and Econometrics (Q2)'), (10246, 'Brazilian Journal of Biology', 15196984, 0.472, 'Q2', 53, 129, 4596, 486, 306, '14', '2000-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (10247, 'California Agriculture', 10970967, 0.472, 'Q2', 25, 23, 489, 101, 88, '2', '1973-1975, 1979, 1981-1982, 1985, 2008-2020', 'Agronomy and Crop Science (Q2); Forestry (Q2); Plant Science (Q2)'), (10248, 'Designed Monomers and Polymers', 15685551, 0.472, 'Q2', 36, 19, 806, 245, 93, '3', '1998-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2)'), (10249, 'Ecological Management and Restoration', 14427001, 0.472, 'Q2', 42, 37, 1044, 154, 105, '3', '2000-2020', 'Nature and Landscape Conservation (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Management, Monitoring, Policy and Law (Q3)'), (10250, 'Economia Politica', 1973820, 0.472, 'Q2', 13, 49, 2854, 129, 100, '19', '2008-2020', 'Economics and Econometrics (Q2); Finance (Q2); Sociology and Political Science (Q2)'), (10251, 'International braz j urol : official journal ', 16776119, 0.472, 'Q3', 39, 273, 4215, 717, 477, '14', '2002-2020', 'Medicine (miscellaneous) (Q3); Urology (Q3)'), (10252, 'International Journal of Multicultural Educat', 19345267, 0.472, 'Q1', 16, 21, 1051, 91, 62, '2', '2007-2020', 'Anthropology (Q1); Cultural Studies (Q1); Education (Q2); Social Sciences (miscellaneous) (Q2)'), (10253, 'J. AGRICULTURAL METEOROLOGY', 18810136, 0.472, 'Q2', 20, 23, 773, 99, 68, '6', '1943-1944, 1948-2020', 'Agronomy and Crop Science (Q2); Atmospheric Science (Q3)'), (10254, 'Journal of Criminal Justice Education', 10511253, 0.472, 'Q1', 28, 37, 1711, 94, 88, '3', '1990-1995, 2005-2020', 'Law (Q1); Education (Q2)'), (10255, 'Journal of English as an International Langua', 22002014, 0.472, 'Q1', 2, 8, 287, 25, 26, '11', '2018-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q2)'), (10256, 'Journal of Pediatric Health Care', 8915245, 0.472, 'Q2', 48, 91, 2873, 395, 271, '2', '1987-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (10257, 'Journal of the Mechanical Behavior of Materia', 21910243, 0.472, 'Q2', 9, 22, 689, 139, 61, '5', '1997, 2017-2020', 'Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (10258, 'Sports Coaching Review', 21640637, 0.472, 'Q2', 14, 22, 1297, 65, 35, '3', '2012-2020', 'Business and International Management (Q2); Social Sciences (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q2)'), (10259, 'Turk Uroloji Dergisi', 13005804, 0.472, 'Q3', 14, 0, 0, 64, 37, '18', '2003-2017', 'Urology (Q3)'), (10260, 'AMA journal of ethics', 23766980, 0.471, 'Q2', 22, 178, 2466, 611, 465, '2', '2015-2020', 'Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3)'), (10261, 'Atlantic Geology', 8435561, 0.471, 'Q2', 19, 9, 584, 28, 34, '9', '1989-2019', 'Geology (Q2)'), (10262, 'Bogoslovni Vestnik', 15812987, 0.471, 'Q1', 9, 64, 2194, 225, 200, '60', '2011-2020', 'Religious Studies (Q1)'), (10263, 'Genes and Genomics', 19769571, 0.471, 'Q3', 20, 136, 6256, 630, 396, '13', '2008-2020', 'Biochemistry (Q3); Genetics (Q3); Molecular Biology (Q4)'), (10264, 'Information Technology and Management', 1385951, 0.471, 'Q2', 38, 17, 750, 147, 49, '16', '2005-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Communication (Q2); Information Systems (Q2)'), (10265, 'International Journal of Medicinal Mushrooms', 15219437, 0.471, 'Q3', 30, 110, 3926, 618, 305, '2', '2005-2020', 'Applied Microbiology and Biotechnology (Q3); Drug Discovery (Q3); Pharmacology (Q3)'), (10266, 'International Journal of Quality and Service ', 1756669, 0.471, 'Q2', 30, 35, 2187, 289, 98, '3', '2009-2020', 'Business, Management and Accounting (miscellaneous) (Q2)'), (10267, 'Journal of Applied Remote Sensing', 19313195, 0.471, 'Q2', 45, 246, 9992, 1458, 774, '2', '2007-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (10268, 'Journal of Clinical Orthopaedics and Trauma', 9765662, 0.471, 'Q3', 20, 376, 9810, 696, 454, '16', '2010-2020', 'Orthopedics and Sports Medicine (Q3)'), (10269, 'Journal of Molecular Structure', 222860, 0.471, 'Q2', 103, 1781, 86710, 11802, 4128, '16', '1967-2021', 'Analytical Chemistry (Q2); Inorganic Chemistry (Q3); Organic Chemistry (Q3); Spectroscopy (Q3)'), (10270, 'Journal of Pediatric Oncology Nursing', 10434542, 0.471, 'Q2', 50, 40, 1468, 239, 124, '2', '1984-2020', 'Pediatrics (Q2); Oncology (nursing) (Q3)'), (10271, 'Journal of Radiological Protection', 9524746, 0.471, 'Q2', 46, 133, 3523, 395, 289, '3', '1988-2020', 'Waste Management and Disposal (Q2); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10272, 'Malaysian Journal of Library and Information ', 13946234, 0.471, 'Q2', 24, 20, 1007, 81, 60, '23', '1996-2020', 'Library and Information Sciences (Q2)'), (10273, 'Psychology Learning and Teaching', 14757257, 0.471, 'Q2', 11, 27, 940, 105, 66, '3', '2011-2020', 'Education (Q2); Psychology (miscellaneous) (Q3)'), (10274, 'Public Health Nursing', 7371209, 0.471, 'Q2', 55, 144, 4555, 368, 239, '3', '1945-1952, 1984-2020', 'Nursing (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3)'), (10275, 'Systematic Parasitology', 15735192, 0.471, 'Q3', 48, 65, 1984, 274, 193, '16', '1979-2020', 'Parasitology (Q3)'), (10276, 'Thoracic Surgery Clinics', 15474127, 0.471, 'Q2', 47, 51, 283, 334, 159, '3', '2004-2020', 'Surgery (Q2); Pulmonary and Respiratory Medicine (Q3)'), (10277, 'Transfusion Medicine', 9587578, 0.471, 'Q3', 59, 90, 2058, 301, 177, '3', '1991-2020', 'Hematology (Q3)'), (10278, 'Capital and Class', 3098168, 0.47, 'Q1', 34, 48, 2493, 119, 79, '2', '1977-2020', 'History (Q1); Economics and Econometrics (Q2); Sociology and Political Science (Q2)'), (10279, 'Caspian Journal of Internal Medicine', 20086172, 0.47, 'Q3', 24, 72, 2182, 330, 191, '15', '2010-2020', 'Internal Medicine (Q3)'), (10280, 'Communications in Statistics - Theory and Met', 1532415, 0.47, 'Q3', 57, 883, 22093, 1727, 1775, '2', '1976-2020', 'Statistics and Probability (Q3)'), (10281, 'Eksploatacja i Niezawodnosc', 15072711, 0.47, 'Q2', 27, 80, 2794, 549, 240, '17', '2008-2020', 'Industrial and Manufacturing Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)'), (10282, 'European Physical Journal E', 12928941, 0.47, 'Q2', 94, 76, 3364, 925, 415, '2', '2000-2020', 'Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Biophysics (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3); Surfaces and Interfaces (Q3)'), (10283, 'IBM Journal of Research and Development', 21518556, 0.47, 'Q2', 95, 55, 1371, 464, 130, '2', '1969-2020', 'Computer Science (miscellaneous) (Q2)'), (10284, 'International Journal of Education in Mathema', 2147611, 0.47, 'Q2', 5, 11, 721, 66, 46, '18', '2018-2020', 'Education (Q2); Mathematics (miscellaneous) (Q2)'), (10285, 'Journal of Chemometrics', 1099128, 0.47, 'Q2', 92, 116, 3981, 631, 257, '3', '1992-2020', 'Applied Mathematics (Q2); Analytical Chemistry (Q3)'), (10286, 'Journal of International Students', 21623104, 0.47, 'Q2', 15, 103, 3504, 312, 220, '2', '2015-2020', 'Education (Q2)'), (10287, 'Journal of Statistics Education', 10691898, 0.47, 'Q2', 32, 39, 1331, 78, 59, '3', '2002-2020', 'Education (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (10288, 'Journal of the Australian Mathematical Societ', 14467887, 0.47, 'Q2', 36, 71, 1790, 168, 150, '3', '1959-2020', 'Mathematics (miscellaneous) (Q2)'), (10289, 'Medieval Archaeology', 1745817, 0.47, 'Q1', 18, 14, 1163, 25, 40, '3', '1967, 1981, 2002-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)'), (10290, 'Pleura and Peritoneum', 2364768, 0.47, 'Q3', 10, 23, 495, 126, 56, '5', '2016-2020', 'Internal Medicine (Q3)'), (10291, 'Security Journal', 17434645, 0.47, 'Q1', 23, 62, 3678, 203, 127, '3', '1995, 2000, 2009-2020', 'Law (Q1); Safety Research (Q2); Strategy and Management (Q2)'), (10292, 'Copeia', 458511, 0.469, 'Q2', 67, 74, 4089, 231, 190, '2', '1980, 1982, 1986, 1992-2020', 'Animal Science and Zoology (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (10293, 'Crime Prevention and Community Safety', 17434629, 0.469, 'Q1', 21, 22, 1128, 110, 60, '3', '1999-2020', 'Law (Q1); Safety Research (Q2); Sociology and Political Science (Q2)'), (10294, 'Dimensions of Critical Care Nursing', 7304625, 0.469, 'Q2', 29, 57, 987, 189, 134, '2', '1982-2020', 'Critical Care Nursing (Q2); Emergency Nursing (Q2)'), (10295, 'European Journal of Horticultural Science', 16114426, 0.469, 'Q2', 29, 53, 2191, 206, 120, '5', '2003-2020', 'Horticulture (Q2)'), (10296, 'IMA Journal of Applied Mathematics', 14643634, 0.469, 'Q3', 42, 40, 1543, 185, 129, '3', '1965-2020', 'Applied Mathematics (Q3)'), (10297, 'International Journal of Theoretical and Appl', 2190249, 0.469, 'Q2', 35, 57, 1979, 184, 166, '37', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2)'), (10298, 'Intractable and Rare Diseases Research', 2186361, 0.469, 'Q3', 20, 38, 1210, 259, 169, '6', '2012-2020', 'Medicine (miscellaneous) (Q3)'), (10299, 'Journal of Applied Fluid Mechanics', 17353645, 0.469, 'Q2', 30, 188, 5717, 968, 543, '15', '2009-2020', 'Condensed Matter Physics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10300, 'Journal of Orthodontics', 14653133, 0.469, 'Q2', 47, 51, 0, 149, 161, '3', '2000-2020', 'Orthodontics (Q2); Medicine (miscellaneous) (Q3)'), (10301, 'Journal of Peace Education', 17400201, 0.469, 'Q2', 14, 19, 900, 69, 49, '3', '2010-2020', 'Education (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10302, 'Journal of Veterinary Research (Poland)', 24507393, 0.469, 'Q2', 25, 64, 2047, 416, 225, '17', '2016-2020', 'Veterinary (miscellaneous) (Q2)'), (10303, 'Longitudinal and Life Course Studies', 17579597, 0.469, 'Q3', 14, 27, 1178, 87, 69, '3', '2014-2020', 'Life-span and Life-course Studies (Q3)'), (10304, 'Qualitative Theory of Dynamical Systems', 16623592, 0.469, 'Q2', 23, 97, 2449, 205, 147, '2', '1999-2005, 2008-2020', 'Discrete Mathematics and Combinatorics (Q2); Applied Mathematics (Q3)'), (10305, 'Steroids', 39128, 0.469, 'Q3', 104, 141, 6408, 1026, 433, '2', '1963-2020', 'Biochemistry (Q3); Clinical Biochemistry (Q3); Organic Chemistry (Q3); Pharmacology (Q3); Endocrinology (Q4); Molecular Biology (Q4)'), (10306, 'Archiv der Pharmazie', 15214184, 0.468, 'Q2', 61, 121, 6497, 817, 261, '5', '1822-1831, 1835-1933, 1937-1938, 1940, 1943-1944, 1950-2020', 'Pharmaceutical Science (Q2); Drug Discovery (Q3)'), (10307, 'Australian Journal of Environmental Education', 2049775, 0.468, 'Q2', 19, 27, 1552, 70, 44, '3', '1984-1999, 2001-2020', 'Education (Q2); Environmental Science (miscellaneous) (Q2)'), (10308, 'Biotechnology and Applied Biochemistry', 14708744, 0.468, 'Q2', 70, 243, 13306, 673, 300, '2', '1986-2020', 'Process Chemistry and Technology (Q2); Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biomedical Engineering (Q3); Biotechnology (Q3); Drug Discovery (Q3); Medicine (miscellaneous) '), (10309, 'Brazilian Journal of Geology', 23174692, 0.468, 'Q2', 19, 46, 3053, 181, 114, '14', '2013-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (10310, 'Canadian Pharmacists Journal', 17151635, 0.468, 'Q2', 21, 71, 1174, 266, 110, '9', '2005-2020', 'Pharmaceutical Science (Q2); Pharmacy (Q2)'), (10311, 'Chemical Physics Letters: X', 25901419, 0.468, 'Q2', 4, 4, 112, 39, 22, '16', '2019-2020', 'Physics and Astronomy (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q3)'), (10312, 'Chungara', 7161182, 0.468, 'Q1', 24, 32, 1872, 113, 126, '45', '2000-2002, 2004, 2006-2020', 'Anthropology (Q1); Archeology (Q1)'), (10313, 'Entropy', 10994300, 0.468, 'Q2', 74, 1424, 66967, 8621, 2737, '19', '1999-2020', 'Electrical and Electronic Engineering (Q2); Information Systems (Q2); Physics and Astronomy (miscellaneous) (Q2); Mathematical Physics (Q3)'), (10314, 'Environment', 19399154, 0.468, 'Q2', 50, 37, 0, 115, 32, '2', '1969-2020', 'Environmental Engineering (Q2); Water Science and Technology (Q2); Global and Planetary Change (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (10315, 'Ethnobiology and Conservation', 22384782, 0.468, 'Q1', 16, 42, 2852, 96, 47, '14', '2012-2021', 'Anthropology (Q1); Animal Science and Zoology (Q2); Ecology (Q2); Nature and Landscape Conservation (Q2); Plant Science (Q2)'), (10316, 'Geosciences Journal', 12264806, 0.468, 'Q2', 37, 72, 3815, 455, 221, '13', '1997-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)'), (10317, 'International Archives of Otorhinolaryngology', 18099777, 0.468, 'Q3', 17, 107, 2916, 304, 215, '2', '2011-2020', 'Otorhinolaryngology (Q3)'), (10318, 'International Journal of Cartography', 23729341, 0.468, 'Q2', 10, 21, 716, 96, 57, '3', '2015-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Computers in Earth Sciences (Q3)'), (10319, 'Journal of Children and Media', 17482801, 0.468, 'Q1', 17, 49, 2395, 180, 87, '3', '2014-2020', 'Cultural Studies (Q1); Communication (Q2)'), (10320, 'Journal of Economic Structures', 21932409, 0.468, 'Q2', 14, 52, 2572, 176, 105, '3', '2012-2020', 'Economics and Econometrics (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)'), (10321, 'Journal of Hospitality, Leisure, Sport and To', 14738376, 0.468, 'Q2', 24, 57, 3501, 275, 97, '3', '2008-2020', 'Education (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (10322, 'Minerva Gastroenterologica e Dietologica', 1121421, 0.468, 'Q3', 28, 49, 1602, 277, 118, '7', '1965-1977, 1991-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Gastroenterology (Q3); Internal Medicine (Q3); Nutrition and Dietetics (Q3)'), (10323, 'Progress in Industrial Ecology', 14788764, 0.468, 'Q2', 21, 19, 617, 195, 80, '3', '2004-2010, 2012-2013', 'Development (Q2); Ecology (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Waste Management and Disposal (Q2); Management, Monitoring, Policy and Law (Q3)'), (10324, 'Publicationes Mathematicae', 333883, 0.468, 'Q2', 37, 65, 1218, 171, 196, '50', '1997-2020', 'Mathematics (miscellaneous) (Q2)'), (10325, 'Siberian Electronic Mathematical Reports', 18133304, 0.468, 'Q2', 11, 112, 2446, 245, 424, '10', '2011-2020', 'Mathematics (miscellaneous) (Q2)'), (10326, 'Sustainable Development of Mountain Territori', 19984502, 0.468, 'Q2', 8, 50, 1240, 174, 160, '10', '2017-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2); Mechanical Engineering (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law ('), (10327, 'TESOL Journal', 10567941, 0.468, 'Q1', 14, 77, 2720, 198, 150, '2', '2014-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (10328, 'Annales Zoologici Fennici', 3455, 0.467, 'Q2', 54, 14, 670, 74, 55, '38', '1974-1977, 1979-2019', 'Animal Science and Zoology (Q2); Ecology (Q2); Nature and Landscape Conservation (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10329, 'Annals of Combinatorics', 2180006, 0.467, 'Q2', 25, 38, 804, 159, 132, '19', '2005-2020', 'Discrete Mathematics and Combinatorics (Q2)'), (10330, 'Aquatic Ecology', 13862588, 0.467, 'Q3', 58, 85, 5761, 210, 123, '16', '1996-2020', 'Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (10331, 'Critical Studies in Television', 17496039, 0.467, 'Q1', 7, 26, 1270, 65, 83, '3', '2014-2020', 'Cultural Studies (Q1); Communication (Q2)'), (10332, 'Current Breast Cancer Reports', 19434588, 0.467, 'Q3', 18, 49, 2996, 135, 115, '2', '2009-2020', 'Oncology (Q3)'), (10333, 'European Journal of Tourism Research', 13140817, 0.467, 'Q2', 16, 37, 2328, 216, 106, '61', '2008-2020', 'Geography, Planning and Development (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (10334, 'Gender in Management', 17542413, 0.467, 'Q2', 51, 61, 4342, 262, 112, '3', '2008-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Gender Studies (Q2)'), (10335, 'IEEE Transactions on Applied Superconductivit', 10518223, 0.467, 'Q2', 84, 604, 11001, 4479, 2407, '2', '1991-2021', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2)'), (10336, 'Innovations: Technology and Techniques in Car', 15569845, 0.467, 'Q2', 24, 109, 2092, 314, 272, '2', '2007-2020', 'Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)'), (10337, 'International Journal of Machining and Machin', 17485711, 0.467, 'Q2', 23, 29, 954, 174, 88, '3', '2006-2014', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10338, 'Journal of Bodywork and Movement Therapies', 15329283, 0.467, 'Q1', 51, 190, 7893, 747, 417, '2', '1996-2020', 'Complementary and Manual Therapy (Q1); Complementary and Alternative Medicine (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)'), (10339, 'Journal of Genetic Psychology', 19400896, 0.467, 'Q2', 51, 38, 2138, 135, 85, '2', '1945-2020', 'Clinical Psychology (Q2); Developmental and Educational Psychology (Q3); Life-span and Life-course Studies (Q3)'), (10340, 'Journal of Parasitology', 19372345, 0.467, 'Q3', 92, 102, 579, 396, 346, '2', '1945-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Medicine (miscellaneous) (Q3); Parasitology (Q3)'), (10341, 'Marine Fisheries Review', 901830, 0.467, 'Q2', 32, 1, 85, 25, 22, '2', '1974, 1977-1984, 1987-2019', 'Agronomy and Crop Science (Q2); Aquatic Science (Q3)'), (10342, 'Practical Assessment, Research and Evaluation', 15317714, 0.467, 'Q2', 52, 10, 321, 81, 40, '2', '1989, 1991, 1993, 1995, 1997, 1999, 2001, 2003-2019', 'Education (Q2)'), (10343, 'Reports of Biochemistry and Molecular Biology', 23223480, 0.467, 'Q3', 8, 33, 1054, 180, 94, '15', '2017-2020', 'Biochemistry (Q3); Biochemistry (medical) (Q3); Medicine (miscellaneous) (Q3); Molecular Biology (Q4)'), (10344, 'Advanced Robotics', 1691864, 0.466, 'Q2', 64, 127, 3995, 694, 280, '3', '1986-2020', 'Computer Science Applications (Q2); Control and Systems Engineering (Q2); Hardware and Architecture (Q2); Human-Computer Interaction (Q2); Software (Q2)'), (10345, 'Annals of Forest Research', 18448135, 0.466, 'Q2', 18, 14, 841, 98, 54, '43', '2009-2020', 'Ecology (Q2); Forestry (Q2); Plant Science (Q2)'), (10346, 'Australian Systematic Botany', 10301887, 0.466, 'Q2', 39, 22, 1724, 101, 86, '11', '1988-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10347, 'Clothing and Textiles Research Journal', 19402473, 0.466, 'Q2', 38, 43, 1779, 124, 59, '2', '1982-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Polymers and Plastics (Q2)'), (10348, 'Ethology Ecology and Evolution', 3949370, 0.466, 'Q2', 41, 53, 2865, 145, 128, '3', '1989-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10349, 'Fluid Dynamics Research', 1695983, 0.466, 'Q2', 50, 65, 2167, 286, 228, '3', '1986-2020', 'Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (10350, 'Gene Expression Patterns', 1567133, 0.466, 'Q3', 63, 42, 1835, 129, 116, '16', '2001-2020', 'Genetics (Q3); Developmental Biology (Q4); Molecular Biology (Q4)'), (10351, 'IET Networks', 20474962, 0.466, 'Q2', 21, 48, 1478, 433, 132, '3', '2014-2020', 'Computer Networks and Communications (Q2); Control and Optimization (Q2); Management Science and Operations Research (Q2)'), (10352, 'International Journal of Automotive Technolog', 12299138, 0.466, 'Q2', 43, 150, 3569, 688, 346, '13', '2000-2020', 'Automotive Engineering (Q2)'), (10353, 'Journal - American Water Works Association', 15518833, 0.466, 'Q2', 74, 146, 382, 300, 325, '2', '1946, 1969-2020', 'Chemistry (miscellaneous) (Q2); Water Science and Technology (Q2)'), (10354, 'Journal of Anaesthesiology Clinical Pharmacol', 9709185, 0.466, 'Q2', 32, 177, 3097, 464, 244, '4', '1996-1999, 2002-2020', 'Anesthesiology and Pain Medicine (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3)'), (10355, 'Journal of Clinical Neuromuscular Disease', 15371611, 0.466, 'Q3', 29, 42, 36, 112, 97, '2', '1999-2020', 'Medicine (miscellaneous) (Q3); Neurology (Q3); Neurology (clinical) (Q3)'), (10356, 'Journal of Experimental Nanoscience', 17458080, 0.466, 'Q2', 37, 29, 1122, 215, 71, '3', '2006-2020', 'Materials Science (miscellaneous) (Q2); Bioengineering (Q3); Biomedical Engineering (Q3); Nanoscience and Nanotechnology (Q3)'), (10357, 'Journal of Global Information Technology Mana', 1097198, 0.466, 'Q2', 31, 20, 1088, 142, 40, '3', '1998-2020', 'E-learning (Q2); Information Systems (Q2); Information Systems and Management (Q2)'), (10358, 'Journal of Leisure Research', 222216, 0.466, 'Q2', 69, 53, 3448, 90, 37, '2', '1978-1989, 1991, 1996-2016, 2018-2020', 'Environmental Science (miscellaneous) (Q2); Sociology and Political Science (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (10359, 'Journal of Spatial Science', 14498596, 0.466, 'Q2', 25, 57, 2044, 144, 78, '3', '2004-2020', 'Energy (miscellaneous) (Q2); Geography, Planning and Development (Q2); Atmospheric Science (Q3)'), (10360, 'Levant', 758914, 0.466, 'Q1', 21, 2, 179, 52, 48, '3', '1969-1988, 1990-1995, 1998-1999, 2002-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)'), (10361, 'Materials Technology', 17535557, 0.466, 'Q2', 32, 221, 8797, 859, 301, '3', '1970-1971, 1973-1980, 1986, 1994-2020', 'Condensed Matter Physics (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10362, 'Regular and Chaotic Dynamics', 14684845, 0.466, 'Q2', 37, 48, 1535, 285, 165, '10', '1998-2020', 'Mathematics (miscellaneous) (Q2)'), (10363, 'Revista Chilena de Derecho', 7183437, 0.466, 'Q1', 9, 26, 1171, 41, 111, '45', '2007-2019', 'Law (Q1)'), (10364, 'Revista Complutense de Educacion', 11302496, 0.466, 'Q2', 14, 47, 2001, 276, 217, '12', '2009-2020', 'Education (Q2)'), (10365, 'Vasa - European Journal of Vascular Medicine', 16642872, 0.466, 'Q3', 38, 94, 3189, 350, 192, '19', '1972-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (10366, 'Archives of Orofacial Sciences', 22317163, 0.465, 'Q2', 2, 19, 494, 94, 50, '23', '2017-2020', 'Orthodontics (Q2); Oral Surgery (Q3)'), (10367, 'Cambridge Quarterly of Healthcare Ethics', 9631801, 0.465, 'Q2', 36, 89, 2749, 187, 197, '3', '1992-2020', 'Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3)'), (10368, 'Carbohydrate Research', 86215, 0.465, 'Q3', 132, 202, 8836, 1066, 519, '3', '1965-2020', 'Analytical Chemistry (Q3); Biochemistry (Q3); Medicine (miscellaneous) (Q3); Organic Chemistry (Q3)'), (10369, 'Emergency Radiology', 14381435, 0.465, 'Q2', 42, 106, 2657, 402, 270, '2', '1994-2020', 'Emergency Medicine (Q2); Radiology, Nuclear Medicine and Imaging (Q3)'), (10370, 'European Journal of Entomology', 12105759, 0.465, 'Q3', 56, 50, 2608, 264, 183, '31', '1993-2020', 'Insect Science (Q3)'), (10371, 'International Journal of Public Administratio', 15324265, 0.465, 'Q2', 44, 156, 8881, 606, 329, '2', '1979-2020', 'Business and International Management (Q2); Public Administration (Q2)'), (10372, 'Journal of Electrostatics', 3043886, 0.465, 'Q2', 76, 83, 2506, 523, 264, '16', '1975-2020', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Surfaces, Coatings and Films (Q2); Biotechnology (Q3)'), (10373, 'Journal of Limnology', 11295767, 0.465, 'Q2', 44, 23, 1289, 247, 156, '7', '1997-2020', 'Ecology (Q2); Water Science and Technology (Q2); Aquatic Science (Q3)'), (10374, 'Journal of Oral and Facial Pain and Headache', 23330384, 0.465, 'Q2', 42, 52, 793, 257, 150, '2', '1993-2020', 'Anesthesiology and Pain Medicine (Q2); Dentistry (miscellaneous) (Q2); Neurology (clinical) (Q3)'), (10375, 'Journal of Plant Diseases and Protection', 18613829, 0.465, 'Q2', 25, 111, 4525, 380, 208, '5', '2006-2020', 'Agronomy and Crop Science (Q2); Horticulture (Q2); Plant Science (Q2)'), (10376, 'Journal of Public Health Policy', 1975897, 0.465, 'Q3', 50, 55, 1593, 186, 109, '3', '1980-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10377, 'Journal of Science and Technology Policy Mana', 20534639, 0.465, 'Q2', 16, 32, 2218, 324, 100, '3', '2014-2020', 'Industrial Relations (Q2); Management of Technology and Innovation (Q2); Management Science and Operations Research (Q2); Strategy and Management (Q2)'), (10378, 'Mountain Research and Development', 2764741, 0.465, 'Q2', 57, 22, 1197, 212, 122, '19', '1981-2019', 'Development (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3)'), (10379, 'Nordic Journal of Digital Literacy', 1891943, 0.465, 'Q2', 14, 21, 956, 60, 33, '33', '2012-2020', 'Computer Science Applications (Q2); Education (Q2); E-learning (Q2)'), (10380, 'Order', 15729273, 0.465, 'Q3', 27, 57, 1123, 113, 103, '16', '1984-2020', 'Algebra and Number Theory (Q3); Computational Theory and Mathematics (Q3); Geometry and Topology (Q3)'), (10381, 'Pacific Conservation Biology', 10382097, 0.465, 'Q2', 39, 62, 2930, 170, 124, '11', '1993, 1995-2020', 'Ecology (Q2); Nature and Landscape Conservation (Q2)'), (10382, 'Policy, Politics, and Nursing Practice', 15271544, 0.465, 'Q2', 30, 32, 1016, 72, 45, '2', '2000-2020', 'Issues, Ethics and Legal Aspects (Q2); Leadership and Management (Q2); Medicine (miscellaneous) (Q3)'), (10383, 'Post-Communist Economies', 14653958, 0.465, 'Q2', 27, 83, 4915, 176, 114, '3', '1999-2020', 'Economics and Econometrics (Q2)'), (10384, 'Swiss Medical Weekly', 14247860, 0.465, 'Q3', 70, 273, 5628, 773, 545, '19', '2001-2020', 'Medicine (miscellaneous) (Q3)'), (10385, 'Xenobiotica', 498254, 0.465, 'Q3', 81, 164, 6765, 711, 416, '3', '1971-2020', 'Biochemistry (Q3); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Toxicology (Q3)'), (10386, 'African Journal of Range and Forage Science', 10220119, 0.464, 'Q2', 28, 36, 2043, 148, 79, '3', '1993-2020', 'Animal Science and Zoology (Q2); Ecology (Q2)'), (10387, 'Arid Land Research and Management', 15324990, 0.464, 'Q2', 36, 37, 1844, 155, 82, '3', '2001-2020', 'Soil Science (Q2)'), (10388, 'Canadian Journal of Electrical and Computer E', 8408688, 0.464, 'Q2', 26, 38, 935, 181, 74, '9', '1988-2010, 2013-2020', 'Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2)'), (10389, 'Chinese Journal of Integrative Medicine', 16720415, 0.464, 'Q2', 34, 188, 6473, 760, 426, '1', '2003-2020', 'Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)'), (10390, 'Clinical and Experimental Dental Research', 20574347, 0.464, 'Q2', 9, 107, 3465, 238, 151, '2', '2015-2020', 'Dentistry (miscellaneous) (Q2)'), (10391, 'Family and Community Health', 1606379, 0.464, 'Q3', 46, 34, 1475, 154, 109, '2', '1978-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (10392, 'International Journal of Intellectual Propert', 14789647, 0.464, 'Q1', 10, 23, 1221, 26, 11, '19', '2006-2014, 2020', 'Law (Q1); Business and International Management (Q2); Strategy and Management (Q2)'), (10393, 'International Zoo Yearbook', 749664, 0.464, 'Q2', 27, 19, 809, 72, 63, '3', '1960-1963, 1965-1982, 1984, 1986-1995, 1997-1998, 2000, 2003, 2005-2020', 'Nature and Landscape Conservation (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10394, 'Journal of Berry Research', 18785093, 0.464, 'Q2', 25, 43, 2177, 207, 95, '16', '2010-2020', 'Agronomy and Crop Science (Q2); Food Science (Q2); Horticulture (Q2); Plant Science (Q2); Soil Science (Q2); Biochemistry (Q3)'), (10395, 'Journal of Marine Science and Engineering', 20771312, 0.464, 'Q2', 22, 1011, 47027, 1755, 665, '19', '2013-2020', 'Civil and Structural Engineering (Q2); Ocean Engineering (Q2); Water Science and Technology (Q2)'), (10396, 'Journal of Organizational and End User Comput', 15465012, 0.464, 'Q2', 32, 13, 670, 237, 60, '2', '2004-2020', 'Computer Science Applications (Q2); Human-Computer Interaction (Q2); Strategy and Management (Q2)'), (10397, 'Journal of Tropical Pediatrics', 14653664, 0.464, 'Q2', 51, 57, 1290, 277, 255, '3', '1955-2020', 'Pediatrics, Perinatology and Child Health (Q2); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)'), (10398, 'Mir Rossii', 18110398, 0.464, 'Q2', 6, 28, 1026, 55, 96, '10', '2016-2020', 'Demography (Q2); Development (Q2); Economics and Econometrics (Q2); Sociology and Political Science (Q2)'), (10399, 'Public Library Quarterly', 1616846, 0.464, 'Q2', 16, 60, 1939, 101, 83, '2', '1979-1986, 1988-2020', 'Library and Information Sciences (Q2)'), (10400, 'Regional Studies in Marine Science', 23524855, 0.464, 'Q2', 19, 430, 26193, 811, 470, '16', '2015-2020', 'Animal Science and Zoology (Q2); Ecology (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (10401, 'Reviews in Analytical Chemistry', 7930135, 0.464, 'Q3', 23, 20, 1841, 61, 25, '5', '1980-1983, 1985-1987, 1989, 1991-1992, 1994-2020', 'Analytical Chemistry (Q3)'), (10402, 'Schizophrenia Research and Treatment', 20902085, 0.464, 'Q3', 7, 3, 223, 31, 16, '32', '2014-2020', 'Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)'), (10403, 'Theoretical Computer Science', 3043975, 0.464, 'Q2', 122, 587, 16251, 1839, 1144, '16', '1975-2020', 'Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q3)'), (10404, 'World Wide Web', 15731413, 0.464, 'Q2', 42, 151, 6144, 918, 268, '2', '2001, 2003-2020', 'Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Software (Q2)'), (10405, 'Zhongguo Shiyou Daxue Xuebao (Ziran Kexue Ban', 16735005, 0.464, 'Q2', 26, 126, 3053, 376, 391, '1', '2006-2020', 'Chemical Engineering (miscellaneous) (Q2); Control and Systems Engineering (Q2); Energy Engineering and Power Technology (Q2); Geotechnical Engineering and Engineering Geology (Q2); Mechanical Enginee'), (10406, 'Annals of Thoracic and Cardiovascular Surgery', 13411098, 0.463, 'Q2', 41, 52, 1099, 244, 150, '6', '1998-2020', 'Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Gastroenterology (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)'), (10407, 'Applied Entomology and Zoology', 36862, 0.463, 'Q3', 45, 56, 1953, 256, 192, '6', '1966-2020', 'Insect Science (Q3)'), (10408, 'China Information', 920203, 0.463, 'Q2', 24, 27, 1356, 76, 53, '3', '1986-2020', 'Arts and Humanities (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (10409, 'Geo: Geography and Environment', 20544049, 0.463, 'Q2', 12, 5, 382, 57, 28, '3', '2014-2020', 'Geography, Planning and Development (Q2); Atmospheric Science (Q3); Global and Planetary Change (Q3); Management, Monitoring, Policy and Law (Q3)'), (10410, 'Global Discourse', 23269995, 0.463, 'Q2', 12, 47, 1276, 113, 87, '3', '2010-2011, 2013-2014, 2016-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10411, 'Higher Education Pedagogies', 23752696, 0.463, 'Q2', 7, 23, 1043, 123, 79, '3', '2016-2020', 'Education (Q2)'), (10412, 'IFLA Journal', 3400352, 0.463, 'Q2', 20, 37, 1694, 93, 74, '3', '1975-2020', 'Library and Information Sciences (Q2)'), (10413, 'International Journal of Geosynthetics and Gr', 21999260, 0.463, 'Q2', 16, 58, 2261, 165, 104, '2', '2015-2020', 'Civil and Structural Engineering (Q2); Polymers and Plastics (Q2)'), (10414, 'International Journal of Sustainable Engineer', 19397038, 0.463, 'Q2', 29, 82, 3776, 279, 111, '3', '2008-2020', 'Engineering (miscellaneous) (Q2)'), (10415, 'International Social Work', 208728, 0.463, 'Q2', 43, 158, 5764, 401, 321, '3', '1959-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Work (Q3)'), (10416, 'JDDG - Journal of the German Society of Derma', 16100387, 0.463, 'Q3', 60, 401, 6035, 910, 523, '3', '2003-2020', 'Dermatology (Q3)'), (10417, 'Journal of Arrhythmia', 18832148, 0.463, 'Q3', 21, 176, 3858, 463, 385, '16', '2005-2011, 2014-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (10418, 'Journal of Coastal Conservation', 18747841, 0.463, 'Q2', 39, 67, 3413, 456, 246, '16', '1995-2004, 2007-2020', 'Ecology (Q2); Nature and Landscape Conservation (Q2); Oceanography (Q2)'), (10419, 'Journal of Nanomaterials', 16874129, 0.463, 'Q2', 66, 207, 9580, 2228, 869, '2', '2006-2020', 'Materials Science (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (10420, 'Journal of Offender Rehabilitation', 15408558, 0.463, 'Q1', 38, 24, 1297, 101, 93, '2', '1990-2020', 'Law (Q1); Rehabilitation (Q2)'), (10421, 'Journal of the Canadian Society of Forensic S', 85030, 0.463, 'Q3', 18, 12, 414, 36, 37, '3', '1968-2020', 'Pathology and Forensic Medicine (Q3)'), (10422, 'Nano Communication Networks', 18787789, 0.463, 'Q2', 36, 17, 718, 299, 87, '16', '2010-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Applied Mathematics (Q3)'), (10423, 'Neural Processing Letters', 13704621, 0.463, 'Q2', 54, 311, 13357, 1783, 540, '16', '1994-2020', 'Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Software (Q2); Neuroscience (miscellaneous) (Q3)'), (10424, 'Paladyn', 20814836, 0.463, 'Q2', 8, 32, 1491, 180, 65, '17', '2016-2020', 'Artificial Intelligence (Q2); Human-Computer Interaction (Q2); Behavioral Neuroscience (Q3); Cognitive Neuroscience (Q3); Developmental Neuroscience (Q4)'), (10425, 'Zoosystematica Rossica', 3209180, 0.463, 'Q2', 8, 38, 854, 57, 93, '10', '2014-2020', 'Animal Science and Zoology (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (10426, 'Aerosol Science and Engineering', 2510375, 0.462, 'Q2', 7, 28, 1457, 76, 47, '19', '2017-2020', 'Materials Science (miscellaneous) (Q2); Environmental Chemistry (Q3); Pollution (Q3)'), (10427, 'Applied Earth Science: Transactions of the In', 25726846, 0.462, 'Q2', 5, 20, 589, 51, 27, '3', '2018-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2); Geochemistry and Petrology (Q3)'), (10428, 'Archives of Physiology and Biochemistry', 13813455, 0.462, 'Q3', 50, 279, 13781, 625, 276, '3', '1921-1927, 1929-1931, 1933-1943, 1946-2004, 2006-2020', 'Medicine (miscellaneous) (Q3); Physiology (medical) (Q3); Physiology (Q4)'), (10429, 'Boletin de la Sociedad Espanola de Ceramica y', 3663175, 0.462, 'Q2', 24, 92, 1132, 263, 90, '12', '2001-2020', 'Ceramics and Composites (Q2); Industrial and Manufacturing Engineering (Q2); Mechanics of Materials (Q2)'), (10430, 'Computational and Mathematical Methods in Med', 17486718, 0.462, 'Q2', 48, 225, 8057, 1193, 412, '2', '2006-2020', 'Modeling and Simulation (Q2); Applied Mathematics (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q3); Medicine (miscellaneous) ('), (10431, 'Future Virology', 17460794, 0.462, 'Q4', 34, 90, 4816, 332, 250, '3', '2007-2020', 'Virology (Q4)'), (10432, 'Health Science Reports', 23988835, 0.462, 'Q3', 7, 62, 1733, 161, 100, '2', '2018-2020', 'Medicine (miscellaneous) (Q3)'), (10433, 'Howard Journal of Crime and Justice', 20591101, 0.462, 'Q1', 7, 28, 1861, 85, 80, '2', '2016-2020', 'Law (Q1)'), (10434, 'Journal of Multi-Criteria Decision Analysis', 10579214, 0.462, 'Q2', 47, 30, 1320, 145, 56, '3', '1992-2003, 2005-2006, 2008-2020', 'Decision Sciences (miscellaneous) (Q2); Strategy and Management (Q2)'), (10435, 'Journal of Nonlinear and Convex Analysis', 13454773, 0.462, 'Q2', 29, 111, 3080, 469, 496, '6', '2010-2020', 'Control and Optimization (Q2); Analysis (Q3); Applied Mathematics (Q3); Geometry and Topology (Q3)'), (10436, 'Journal of Plant Nutrition', 1904167, 0.462, 'Q2', 77, 282, 13139, 1302, 737, '2', '1979-2020', 'Agronomy and Crop Science (Q2); Physiology (Q4)'), (10437, 'Kew Bulletin', 1874933, 0.462, 'Q2', 31, 64, 2138, 164, 171, '3', '1993-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10438, 'New Zealand Medical Journal', 288446, 0.462, 'Q3', 50, 298, 1794, 597, 489, '41', '1945-2020', 'Medicine (miscellaneous) (Q3)'), (10439, 'Periodica Mathematica Hungarica', 315303, 0.462, 'Q2', 23, 66, 1034, 166, 145, '16', '1971-2020', 'Mathematics (miscellaneous) (Q2)'), (10440, 'Qualitative Research in Accounting and Manage', 11766093, 0.462, 'Q2', 26, 29, 2428, 124, 69, '3', '2004-2020', 'Accounting (Q2); Business and International Management (Q2)'), (10441, 'Requirements Engineering', 9473602, 0.462, 'Q2', 56, 26, 1511, 258, 69, '3', '1996, 1998-2002, 2005-2020', 'Information Systems (Q2); Software (Q2)'), (10442, 'Social Work in Health Care', 981389, 0.462, 'Q2', 43, 45, 2056, 254, 176, '2', '1975-2020', 'Community and Home Care (Q2); Psychiatry and Mental Health (Q3); Social Work (Q3)'), (10443, 'Urology Journal', 17351308, 0.462, 'Q3', 29, 138, 2917, 345, 276, '15', '2007-2020', 'Urology (Q3)'), (10444, 'Anais Brasileiros de Dermatologia', 3650596, 0.461, 'Q3', 44, 182, 3620, 941, 550, '14', '1963-1977, 1979-1980, 1990-2020', 'Dermatology (Q3)'), (10445, 'Applied Environmental Biotechnology', 23826436, 0.461, 'Q2', 6, 5, 155, 42, 39, '37', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Engineering (Q2); Biotechnology (Q3); Environmental Chemistry (Q3)'), (10446, 'Clinical Pediatric Endocrinology', 9185739, 0.461, 'Q2', 16, 33, 698, 111, 76, '6', '1992-2020', 'Pediatrics, Perinatology and Child Health (Q2); Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)'), (10447, 'Eurasip Journal on Wireless Communications an', 16871499, 0.461, 'Q2', 64, 254, 8975, 2506, 801, '3', '2004-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2); Signal Processing (Q2)'), (10448, 'Facilities', 2632772, 0.461, 'Q1', 46, 56, 2755, 371, 177, '3', '1983-2020', 'Architecture (Q1); Building and Construction (Q2); Human Factors and Ergonomics (Q3)'), (10449, 'High Ability Studies', 13598139, 0.461, 'Q2', 33, 23, 1519, 62, 44, '3', '1996-2020', 'Education (Q2)'), (10450, 'Human Psychopharmacology', 10991077, 0.461, 'Q3', 78, 39, 1951, 300, 128, '3', '1986-2020', 'Neurology (Q3); Neurology (clinical) (Q3); Pharmacology (medical) (Q3); Psychiatry and Mental Health (Q3)'), (10451, 'International Journal of Game Theory', 14321270, 0.461, 'Q2', 44, 60, 1554, 120, 160, '5', '1971, 1973-2020', 'Economics and Econometrics (Q2); Mathematics (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (10452, 'International Journal of Ventilation', 14733315, 0.461, 'Q2', 20, 41, 1228, 96, 64, '3', '2005-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2)'), (10453, 'JAAD Case Reports', 23525126, 0.461, 'Q3', 16, 430, 3533, 947, 817, '2', '2015-2020', 'Dermatology (Q3)'), (10454, 'Journal of Bioethical Inquiry', 11767529, 0.461, 'Q2', 25, 113, 3203, 256, 165, '16', '2004-2020', 'Health (social science) (Q2); Health Policy (Q3)'), (10455, 'Journal of Clinical Dentistry', 8958831, 0.461, 'Q2', 41, 0, 0, 66, 50, '2', '1988-2019', 'Dentistry (miscellaneous) (Q2)'), (10456, 'Journal of Facilities Management', 17410983, 0.461, 'Q2', 32, 38, 1978, 204, 80, '3', '2002-2003, 2005-2020', 'Business and International Management (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (10457, 'Journal of Mathematical Control Science and A', 9740570, 0.461, 'Q2', 9, 8, 529, 106, 27, '4', '2015-2019', 'Control and Optimization (Q2); Applied Mathematics (Q3)'), (10458, 'Teacher Development', 13664530, 0.461, 'Q2', 26, 38, 2030, 131, 112, '3', '1997-2020', 'Education (Q2)'), (10459, 'Transactions of the Institute of Measurement ', 14770369, 0.461, 'Q2', 42, 311, 10946, 1973, 946, '3', '1972, 1979-2020', 'Instrumentation (Q2)'), (10460, 'Wiener Klinische Wochenschrift', 435325, 0.461, 'Q3', 51, 174, 4978, 542, 313, '28', '1946-2020', 'Medicine (miscellaneous) (Q3)'), (10461, 'Child s Nervous System', 2567040, 0.46, 'Q2', 84, 482, 12312, 1215, 848, '5', '1985-2020', 'Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)'), (10462, 'Environmental Engineering Science', 10928758, 0.46, 'Q2', 65, 87, 3643, 736, 375, '2', '1997-2020', 'Waste Management and Disposal (Q2); Environmental Chemistry (Q3); Pollution (Q3)'), (10463, 'Event Management', 15259951, 0.46, 'Q2', 32, 51, 3463, 263, 192, '2', '2006-2020', 'Business and International Management (Q2); Marketing (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (10464, 'IEEE Transactions on Plasma Science', 933813, 0.46, 'Q2', 106, 574, 14496, 2567, 1731, '2', '1973-2020', 'Condensed Matter Physics (Q2); Nuclear and High Energy Physics (Q3)'), (10465, 'Industrial and Commercial Training', 197858, 0.46, 'Q2', 33, 24, 1464, 207, 107, '3', '1969-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Education (Q2); Organizational Behavior and Human Resource Management (Q2)'), (10466, 'Journal of Economic Issues', 213624, 0.46, 'Q2', 46, 78, 3456, 157, 219, '3', '1982, 1985, 1988, 1990-1992, 1996-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q2)'), (10467, 'Journal of Energetic Materials', 7370652, 0.46, 'Q2', 31, 63, 1940, 263, 122, '3', '1983-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (10468, 'Journal of Marine Science and Application', 19935048, 0.46, 'Q2', 22, 62, 2914, 222, 155, '1', '2007-2020', 'Mechanical Engineering (Q2); Ocean Engineering (Q2)'), (10469, 'Journal of Parasitology Research', 20900031, 0.46, 'Q3', 27, 59, 2294, 128, 68, '2', '2009-2020', 'Infectious Diseases (Q3); Parasitology (Q3)'), (10470, 'New Zealand Journal of Zoology', 3014223, 0.46, 'Q2', 35, 30, 1713, 81, 76, '3', '1974-2020', 'Animal Science and Zoology (Q2)'), (10471, 'Novos Estudos CEBRAP', 1013300, 0.46, 'Q2', 16, 33, 1124, 69, 67, '14', '2007-2020', 'Social Sciences (miscellaneous) (Q2)'), (10472, 'Review of Radical Political Economics', 4866134, 0.46, 'Q1', 30, 49, 2127, 107, 126, '2', '1969-2020', 'Philosophy (Q1); Economics and Econometrics (Q2)'), (10473, 'Vascular and Endovascular Surgery', 15385744, 0.46, 'Q2', 45, 136, 2823, 380, 333, '2', '1967-1973, 1975-2020', 'Surgery (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (10474, 'Adoption Quarterly', 10926755, 0.459, 'Q1', 31, 17, 960, 49, 48, '2', '1997-2020', 'Law (Q1); Demography (Q2); Sociology and Political Science (Q2)'), (10475, 'American Mathematical Monthly', 29890, 0.459, 'Q2', 51, 121, 1090, 218, 195, '2', '1977, 1996-2020', 'Mathematics (miscellaneous) (Q2)'), (10476, 'British Journal of Neurosurgery', 2688697, 0.459, 'Q3', 65, 412, 8385, 664, 473, '3', '1987-2020', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Surgery (Q3)'), (10477, 'Cancer Treatment and Research Communications', 24682942, 0.459, 'Q3', 10, 100, 3603, 129, 89, '3', '2016-2020', 'Oncology (Q3); Cancer Research (Q4)'), (10478, 'Economics and Philosophy', 2662671, 0.459, 'Q1', 37, 26, 1348, 45, 59, '3', '1985-2020', 'Philosophy (Q1); Economics and Econometrics (Q2)'), (10479, 'Expert Review of Ophthalmology', 17469899, 0.459, 'Q3', 23, 38, 2913, 132, 101, '3', '2006-2020', 'Biomedical Engineering (Q3); Ophthalmology (Q3); Optometry (Q3)'), (10480, 'Folia Neuropathologica', 16414640, 0.459, 'Q3', 37, 26, 1146, 201, 115, '17', '1994-2020', 'Neurology (clinical) (Q3); Pathology and Forensic Medicine (Q3)'), (10481, 'Journal of Applied Biomaterials and Functiona', 22808000, 0.459, 'Q3', 31, 44, 1482, 395, 155, '3', '2012-2020', 'Bioengineering (Q3); Biomaterials (Q3); Biomedical Engineering (Q3); Biophysics (Q3); Medicine (miscellaneous) (Q3)'), (10482, 'Journal of Applied Economics', 16676726, 0.459, 'Q2', 22, 38, 1522, 93, 58, '3', '2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (10483, 'Journal of Biosciences', 2505991, 0.459, 'Q2', 73, 151, 9091, 524, 311, '4', '1979-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (10484, 'Journal of Fractal Geometry', 23081309, 0.459, 'Q3', 3, 13, 316, 16, 16, '19', '2019-2020', 'Applied Mathematics (Q3); Geometry and Topology (Q3)'), (10485, 'Journal of Micropalaeontology', 262821, 0.459, 'Q2', 29, 13, 1100, 104, 70, '3', '1982-2020', 'Paleontology (Q2)'), (10486, 'Journal of Open Innovation: Technology, Marke', 21998531, 0.459, 'Q2', 22, 194, 13528, 715, 190, '19', '2015-2020', 'Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (10487, 'Journal of Strategy and Management', 1755425, 0.459, 'Q2', 20, 34, 2929, 203, 92, '3', '2008-2020', 'Business and International Management (Q2); Strategy and Management (Q2)'), (10488, 'New Genetics and Society', 14636778, 0.459, 'Q2', 34, 37, 2166, 114, 54, '3', '1996-1997, 1999-2020', 'Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3); Genetics (Q4)'), (10489, 'Radiation and Environmental Biophysics', 301634, 0.459, 'Q2', 54, 60, 3019, 254, 139, '5', '1974-2020', 'Environmental Science (miscellaneous) (Q2); Radiation (Q2); Biophysics (Q3)'), (10490, 'Speech Communication', 1676393, 0.459, 'Q1', 106, 68, 3826, 818, 259, '16', '1982-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2); Computer Science Applications (Q2); Computer Vision and Pattern Recognition (Q2); Modeling and Simulation (Q2); Softwa'), (10491, 'Virus Adaptation and Treatment', 11791624, 0.459, 'Q3', 9, 0, 0, 11, 6, '41', '2010-2018', 'Infectious Diseases (Q3); Immunology (Q4); Virology (Q4)'), (10492, 'Advances in Genetics', 652660, 0.458, 'Q3', 67, 21, 1895, 99, 18, '2', '1947-1948, 1950-1951, 1953-1956, 1958, 1961, 1963-1965, 1968, 1970-1971, 1973, 1976-1977, 1979, 1982', 'Medicine (miscellaneous) (Q3); Genetics (Q4)'), (10493, 'AMIA ... Annual Symposium proceedings / AMIA ', 15594076, 0.458, 'Q3', 56, 0, 0, 867, 445, '2', '2003, 2005-2019', 'Medicine (miscellaneous) (Q3)'), (10494, 'Botany', 19162790, 0.458, 'Q2', 84, 64, 3307, 315, 220, '9', '2008-2020', 'Ecology (Q2); Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10495, 'British Journal for the History of Philosophy', 9608788, 0.458, 'Q1', 20, 83, 3198, 78, 163, '3', '1993-2020', 'Philosophy (Q1)'), (10496, 'Contemporary British History', 13619462, 0.458, 'Q1', 15, 37, 2257, 51, 78, '3', '2001, 2007-2020', 'Cultural Studies (Q1); History (Q1); Development (Q2); Political Science and International Relations (Q2); Safety Research (Q2)'), (10497, 'Global Crime', 17440572, 0.458, 'Q1', 27, 16, 960, 109, 45, '3', '2007-2020', 'Law (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10498, 'Interdisciplinaria Archaeologica', 1804848, 0.458, 'Q1', 6, 17, 782, 41, 41, '31', '2014-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (10499, 'International Finance', 13670271, 0.458, 'Q2', 39, 31, 1010, 96, 54, '3', '1998-2020', 'Development (Q2); Finance (Q2); Geography, Planning and Development (Q2)'), (10500, 'International Journal of Low-Carbon Technolog', 17481317, 0.458, 'Q1', 26, 51, 1544, 414, 163, '3', '2007-2020', 'Architecture (Q1); Civil and Structural Engineering (Q2); Environmental Science (miscellaneous) (Q2)'), (10501, 'International Journal of Psychiatry in Medici', 15413527, 0.458, 'Q3', 55, 66, 1369, 174, 116, '2', '1973-1975, 1977-1978, 1980-2020', 'Psychiatry and Mental Health (Q3)'), (10502, 'International Journal of Steel Structures', 20936311, 0.458, 'Q2', 23, 152, 4311, 588, 404, '13', '2010-2020', 'Civil and Structural Engineering (Q2)'), (10503, 'International Journal of Wine Business Resear', 17511070, 0.458, 'Q2', 36, 32, 2102, 209, 107, '3', '2007-2020', 'Business, Management and Accounting (miscellaneous) (Q2)'), (10504, 'Journal of Addictive Diseases', 10550887, 0.458, 'Q2', 61, 100, 3814, 103, 68, '2', '1991-2018, 2020', 'Clinical Psychology (Q2); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (10505, 'Journal of Animal and Feed Sciences', 12301388, 0.458, 'Q2', 34, 30, 1034, 204, 120, '17', '1996-2020', 'Animal Science and Zoology (Q2); Food Science (Q2)'), (10506, 'Journal of Cardiovascular Medicine', 15582027, 0.458, 'Q3', 47, 179, 2504, 596, 448, '2', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (10507, 'Journal of Global Marketing', 8911762, 0.458, 'Q2', 33, 32, 2332, 149, 67, '2', '1987-2020', 'Business and International Management (Q2); Marketing (Q3)'), (10508, 'Journal of Industrial and Production Engineer', 21681023, 0.458, 'Q2', 28, 36, 1288, 269, 146, '3', '2013-2020', 'Control and Systems Engineering (Q2); Industrial and Manufacturing Engineering (Q2)'), (10509, 'Journal of Linguistics', 14697742, 0.458, 'Q1', 38, 34, 2149, 67, 69, '3', '1965-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1)'), (10510, 'Journal of Micro and Nano-Manufacturing', 21660468, 0.458, 'Q2', 13, 18, 345, 170, 102, '2', '2013-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanics of Materials (Q2); Process Chemistry and Technology (Q2)'), (10511, 'Optimal Control Applications and Methods', 10991514, 0.458, 'Q2', 44, 134, 4903, 694, 263, '3', '1980-2020', 'Control and Optimization (Q2); Control and Systems Engineering (Q2); Software (Q2); Applied Mathematics (Q3)'), (10512, 'Protein Expression and Purification', 10960279, 0.458, 'Q3', 88, 162, 5606, 822, 506, '2', '1990-2021', 'Biotechnology (Q3)'), (10513, 'Theory of Probability and its Applications', 40585, 0.458, 'Q3', 32, 38, 694, 124, 152, '2', '1996-2020', 'Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (10514, 'Thoracic and Cardiovascular Surgeon', 14391902, 0.458, 'Q3', 52, 168, 3598, 446, 297, '5', '1973-2020', 'Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3); Surgery (Q3)'), (10515, 'Acta Geochimica', 23657499, 0.457, 'Q3', 21, 68, 4379, 378, 227, '19', '2016-2020', 'Geochemistry and Petrology (Q3)'), (10516, 'BioResearch Open Access', 21647860, 0.457, 'Q3', 26, 24, 1262, 118, 56, '2', '2012-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (10517, 'Bothalia', 23119284, 0.457, 'Q2', 20, 10, 301, 186, 94, '27', '1978, 1993-2019', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10518, 'Chaos, Solitons and Fractals: X', 25900544, 0.457, 'Q2', 5, 12, 447, 61, 17, '3', '2019-2020', 'Mathematics (miscellaneous) (Q2)'), (10519, 'Complex Variables and Elliptic Equations', 17476933, 0.457, 'Q2', 27, 251, 6456, 343, 353, '3', '2007-2020', 'Computational Mathematics (Q2); Analysis (Q3); Applied Mathematics (Q3); Numerical Analysis (Q3)'), (10520, 'Fashion and Textiles', 21980802, 0.457, 'Q1', 13, 36, 1467, 236, 89, '37', '2014-2020', 'Cultural Studies (Q1); Materials Science (miscellaneous) (Q2); Strategy and Management (Q2); Marketing (Q3); Social Psychology (Q3)'), (10521, 'Indian Geotechnical Journal', 9719555, 0.457, 'Q2', 15, 96, 3315, 245, 162, '4', '1972-1989, 2012-2020', 'Geotechnical Engineering and Engineering Geology (Q2)'), (10522, 'Journal of Animal Science and Technology', 26720191, 0.457, 'Q2', 6, 77, 2679, 144, 75, '3', '2015, 2018-2020', 'Animal Science and Zoology (Q2); Ecology (Q2); Food Science (Q2); Veterinary (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (10523, 'Journal of Engineering Thermophysics', 18102328, 0.457, 'Q2', 20, 60, 1514, 239, 150, '10', '2007-2020', 'Condensed Matter Physics (Q2); Energy Engineering and Power Technology (Q2); Environmental Engineering (Q2); Modeling and Simulation (Q2)'), (10524, 'Journal of Hospice and Palliative Nursing', 15222179, 0.457, 'Q1', 23, 83, 1291, 279, 248, '2', '1999-2009, 2017-2020', 'Advanced and Specialized Nursing (Q1); Community and Home Care (Q2)'), (10525, 'Journal of Orthopaedic Surgery', 10225536, 0.457, 'Q3', 40, 239, 6176, 686, 609, '2', '1993-2020', 'Surgery (Q3)'), (10526, 'Journal of Thyroid Research', 20420072, 0.457, 'Q3', 31, 10, 346, 69, 41, '2', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q3)'), (10527, 'Journal of Veterinary Medical Education', 748321, 0.457, 'Q2', 35, 93, 2408, 264, 185, '9', '1996-1998, 2000-2020', 'Education (Q2); Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (10528, 'JRAAS - Journal of the Renin-Angiotensin-Aldo', 14703203, 0.457, 'Q3', 46, 44, 1665, 105, 69, '3', '2000-2020', 'Internal Medicine (Q3); Endocrinology (Q4)'), (10529, 'Lung India', 974598, 0.457, 'Q3', 25, 144, 2635, 412, 267, '4', '2009-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (10530, 'Mental Lexicon, The', 18711340, 0.457, 'Q1', 25, 21, 1007, 39, 50, '16', '2006-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Cognitive Neuroscience (Q4)'), (10531, 'Online Journal of Issues in Nursing', 10913734, 0.457, 'Q2', 41, 0, 0, 136, 75, '2', '1996-2019', 'Issues, Ethics and Legal Aspects (Q2)'), (10532, 'Open Medicine (Poland)', 23915463, 0.457, 'Q3', 14, 150, 4680, 486, 213, '5', '2013-2020', 'Medicine (miscellaneous) (Q3)'), (10533, 'Pediatric Transplantation', 13973142, 0.457, 'Q2', 69, 295, 8429, 786, 610, '3', '1997-2020', 'Pediatrics, Perinatology and Child Health (Q2); Transplantation (Q3)'), (10534, 'Queue', 15427730, 0.457, 'Q2', 44, 39, 267, 265, 117, '2', '2003-2020', 'Computer Science (miscellaneous) (Q2)'), (10535, 'Research Ethics', 17470161, 0.457, 'Q1', 10, 28, 995, 92, 60, '3', '2014-2020', 'Philosophy (Q1); Education (Q2)'), (10536, 'Sexuality and Disability', 15736717, 0.457, 'Q2', 39, 60, 2289, 138, 101, '2', '1978-1987, 1991-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2)'), (10537, 'Social Network Analysis and Mining', 18695450, 0.457, 'Q1', 36, 92, 4472, 650, 186, '28', '2011-2020', 'Media Technology (Q1); Communication (Q2); Computer Science Applications (Q2); Human-Computer Interaction (Q2); Information Systems (Q2)'), (10538, 'Solid-State Electronics', 381101, 0.457, 'Q2', 96, 161, 4160, 1000, 529, '3', '1960-2020', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2)'), (10539, 'Youth Justice', 14732254, 0.457, 'Q1', 27, 41, 2565, 77, 40, '2', '2001-2020', 'Law (Q1); Developmental and Educational Psychology (Q3)'), (10540, 'Advances in Pediatrics', 653101, 0.456, 'Q2', 37, 15, 675, 87, 48, '2', '1948, 1952-1953, 1955-1957, 1960, 1962, 1964, 1966, 1968-1970, 1973-1974, 1976-2002, 2004-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (10541, 'Agri Gene', 23522151, 0.456, 'Q2', 8, 4, 157, 85, 62, '2', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biotechnology (Q3); Genetics (Q4)'), (10542, 'Analysis and Mathematical Physics', 1664235, 0.456, 'Q3', 16, 84, 2270, 353, 208, '2', '2011-2020', 'Algebra and Number Theory (Q3); Analysis (Q3); Mathematical Physics (Q3)'), (10543, 'Dermatology Research and Practice', 16876113, 0.456, 'Q3', 29, 38, 1148, 153, 60, '32', '2009-2020', 'Dermatology (Q3)'), (10544, 'Endocrine Regulations', 12100668, 0.456, 'Q3', 32, 31, 1225, 153, 78, '5', '1991-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)'), (10545, 'Environmental Hazards', 14642867, 0.456, 'Q2', 46, 44, 2321, 152, 71, '3', '1983, 1999-2003, 2005, 2007, 2009-2020', 'Development (Q2); Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2); Sociology and Political Science (Q2); Global and Planetary Change (Q3)'), (10546, 'Environmental Modeling and Assessment', 14202026, 0.456, 'Q2', 49, 70, 3462, 298, 142, '16', '1997-2020', 'Environmental Science (miscellaneous) (Q2)'), (10547, 'Global Governance', 10752846, 0.456, 'Q2', 56, 34, 1601, 87, 99, '2', '1996-2020', 'Environmental Science (miscellaneous) (Q2); Political Science and International Relations (Q2); Safety Research (Q2); Sociology and Political Science (Q2)'), (10548, 'Indian Journal of Endocrinology and Metabolis', 22309500, 0.456, 'Q3', 28, 84, 2779, 664, 401, '4', '2014-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)'), (10549, 'Irish Political Studies', 7907184, 0.456, 'Q2', 21, 34, 1450, 80, 66, '3', '1986-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10550, 'Journal of Agricultural &amp; Applied Economi', 10740708, 0.456, 'Q2', 9, 36, 1469, 145, 94, '2', '1995, 2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3)'), (10551, 'Journal of Enterprising Communities', 17506204, 0.456, 'Q2', 26, 41, 3531, 292, 111, '3', '2007-2020', 'Business and International Management (Q2); Economics and Econometrics (Q2); Strategy and Management (Q2)'), (10552, 'Journal of Invasive Cardiology', 15572501, 0.456, 'Q3', 57, 204, 1433, 457, 334, '2', '1990-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (10553, 'Journal of Natural Fibers', 1544046, 0.456, 'Q2', 30, 523, 17016, 1246, 357, '2', '2004-2020', 'Materials Science (miscellaneous) (Q2)'), (10554, 'Journal of Pediatric Pharmacology and Therape', 15516776, 0.456, 'Q2', 15, 98, 2573, 291, 194, '2', '2015-2020', 'Pediatrics, Perinatology and Child Health (Q2); Pharmacology (medical) (Q3)'), (10555, 'OCL - Oilseeds and fats, Crops and Lipids', 22726977, 0.456, 'Q2', 26, 58, 2435, 259, 125, '8', '2013-2020', 'Agronomy and Crop Science (Q2); Food Science (Q2); Biochemistry (Q3)'), (10556, 'Proceedings of the Institution of Mechanical ', 20412967, 0.456, 'Q2', 60, 154, 5349, 441, 205, '3', '1983-2020', 'Energy Engineering and Power Technology (Q2); Mechanical Engineering (Q2)'), (10557, 'Surgical Innovation', 15533514, 0.456, 'Q3', 47, 159, 3272, 468, 259, '2', '1994-2002, 2004-2020', 'Surgery (Q3)'), (10558, 'Accounting in Europe', 17449499, 0.455, 'Q2', 20, 22, 1593, 101, 58, '3', '2006, 2010-2020', 'Accounting (Q2); Business and International Management (Q2); Finance (Q2)'), (10559, 'African journal of reproductive health', 11184841, 0.455, 'Q3', 41, 93, 3007, 178, 143, '51', '1997-1998, 2000-2020', 'Obstetrics and Gynecology (Q3); Public Health, Environmental and Occupational Health (Q3); Reproductive Medicine (Q3)'), (10560, 'BJGP Open', 23983795, 0.455, 'Q2', 8, 112, 3275, 195, 171, '3', '2017-2020', 'Family Practice (Q2)'), (10561, 'Clinical Imaging', 18734499, 0.455, 'Q3', 48, 289, 7997, 912, 594, '2', '1989-2021', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (10562, 'Colombia Medica', 16579534, 0.455, 'Q3', 18, 37, 743, 134, 98, '47', '1946, 1990, 1996-2002, 2004-2020', 'Medicine (miscellaneous) (Q3)'), (10563, 'Construction Innovation', 14770857, 0.455, 'Q1', 39, 47, 2737, 253, 86, '3', '2001-2020', 'Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q2); Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2)'), (10564, 'Contemporary Justice Review', 10282580, 0.455, 'Q1', 14, 34, 1709, 81, 71, '3', '2010-2020', 'Law (Q1)'), (10565, 'Forest Systems', 21719845, 0.455, 'Q2', 25, 31, 1519, 150, 96, '12', '2010-2020', 'Forestry (Q2); Soil Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10566, 'Heliyon', 24058440, 0.455, 'Q1', 28, 2721, 132717, 7639, 2688, '16', '2015-2020', 'Multidisciplinary (Q1)'), (10567, 'IEEE Transactions on Multi-Scale Computing Sy', 23327766, 0.455, 'Q2', 19, 0, 0, 281, 96, '2', '2015-2018', 'Control and Systems Engineering (Q2); Hardware and Architecture (Q2); Information Systems (Q2)'), (10568, 'International Journal of Accounting and Infor', 17589037, 0.455, 'Q2', 22, 45, 3363, 248, 81, '3', '2007-2020', 'Accounting (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q2)'), (10569, 'International Journal of School and Education', 21683603, 0.455, 'Q2', 12, 80, 4929, 150, 88, '3', '2013-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (10570, 'Journal of Advances in Management Research', 9727981, 0.455, 'Q2', 20, 37, 2739, 291, 111, '3', '2003-2020', 'Business, Management and Accounting (miscellaneous) (Q2)'), (10571, 'Journal of Oral and Maxillofacial Pathology', 1998393, 0.455, 'Q3', 25, 136, 2724, 551, 398, '4', '2011-2020', 'Otorhinolaryngology (Q3); Pathology and Forensic Medicine (Q3)'), (10572, 'Kolner Zeitschrift fur Soziologie und Sozialp', 232653, 0.455, 'Q2', 34, 44, 2799, 222, 134, '5', '1983, 1988-1989, 1992-1993, 1996-2020', 'Sociology and Political Science (Q2); Social Psychology (Q3)'), (10573, 'Landscape and Ecological Engineering', 18601871, 0.455, 'Q2', 26, 30, 1603, 166, 92, '6', '2006-2020', 'Ecology (Q2); Nature and Landscape Conservation (Q2); Management, Monitoring, Policy and Law (Q3)'), (10574, 'Media, War and Conflict', 17506352, 0.455, 'Q2', 20, 54, 3529, 128, 84, '3', '2007-2020', 'Arts and Humanities (miscellaneous) (Q2); Communication (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10575, 'Middle East Critique', 19436149, 0.455, 'Q1', 14, 29, 1177, 83, 69, '2', '2010-2020', 'Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2)'), (10576, 'Modern Stochastics: Theory and Applications', 23516046, 0.455, 'Q2', 5, 23, 550, 74, 49, '69', '2018-2020', 'Modeling and Simulation (Q2); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (10577, 'Revista Espanola de Cardiologia', 15792242, 0.455, 'Q3', 66, 382, 5595, 1009, 854, '12', '1961-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (10578, 'Swarm Intelligence', 19353820, 0.455, 'Q2', 39, 12, 773, 140, 40, '2', '2008-2020', 'Artificial Intelligence (Q2)'), (10579, 'Zdravstveno Varstvo', 18542476, 0.455, 'Q3', 10, 45, 1518, 137, 88, '5', '2010-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (10580, 'Acta Agriculturae Scandinavica - Section B So', 16511913, 0.454, 'Q2', 36, 72, 2846, 408, 242, '3', '1992-2020', 'Agronomy and Crop Science (Q2); Soil Science (Q2)'), (10581, 'American Journal of Dermatopathology', 15330311, 0.454, 'Q3', 73, 288, 1347, 617, 570, '2', '1979-2020', 'Dermatology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)'), (10582, 'Cadernos Pagu', 1048333, 0.454, 'Q2', 12, 55, 1792, 75, 135, '14', '2008-2020', 'Gender Studies (Q2)'), (10583, 'Canadian Journal of Occupational Therapy', 84174, 0.454, 'Q1', 55, 45, 1941, 180, 100, '2', '1933-2020', 'Occupational Therapy (Q1)'), (10584, 'Comptes Rendus - Mecanique', 18737234, 0.454, 'Q2', 53, 34, 1120, 580, 252, '8', '2002-2019', 'Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (10585, 'Contemporary Economic Policy', 14657287, 0.454, 'Q2', 49, 52, 2141, 146, 134, '3', '1982-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Public Administration (Q2); Economics and Econometrics (Q3)'), (10586, 'IEEE Journal on Multiscale and Multiphysics C', 23798793, 0.454, 'Q2', 12, 27, 972, 173, 82, '2', '2016-2020', 'Computational Mathematics (Q2); Modeling and Simulation (Q2); Physics and Astronomy (miscellaneous) (Q2); Mathematical Physics (Q3)'), (10587, 'International Journal of Dream Research', 18667953, 0.454, 'Q3', 13, 47, 1832, 86, 64, '5', '2011-2020', 'Psychology (miscellaneous) (Q3)'), (10588, 'International Journal of Emerging Technologie', 18688799, 0.454, 'Q2', 24, 456, 14408, 1806, 766, '5', '2008-2020', 'Education (Q2); E-learning (Q2); Engineering (miscellaneous) (Q2)'), (10589, 'International Journal of Plant Genomics', 16875389, 0.454, 'Q2', 30, 0, 0, 7, 3, '2', '2007-2017', 'Plant Science (Q2); Genetics (Q4)'), (10590, 'Isotopes in Environmental and Health Studies', 10256016, 0.454, 'Q2', 41, 54, 2453, 222, 128, '3', '1995-2020', 'Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3); Inorganic Chemistry (Q3)'), (10591, 'Journal of Current Southeast Asian Affairs', 18684882, 0.454, 'Q2', 9, 22, 1241, 58, 43, '5', '2015-2019', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10592, 'Journal of Management History', 17587751, 0.454, 'Q1', 21, 44, 3219, 112, 79, '3', '2006-2020', 'History and Philosophy of Science (Q1); Business, Management and Accounting (miscellaneous) (Q2)'), (10593, 'Journal of Ocean Engineering and Science', 24680133, 0.454, 'Q2', 14, 30, 904, 281, 95, '1', '2016-2020', 'Ocean Engineering (Q2); Oceanography (Q2); Environmental Engineering (Q3)'), (10594, 'Journal of Oral Biology and Craniofacial Rese', 22124276, 0.454, 'Q2', 18, 149, 4352, 407, 175, '16', '2011-2020', 'Dentistry (miscellaneous) (Q2); Otorhinolaryngology (Q3)'), (10595, 'Journal of Visualization', 13438875, 0.454, 'Q2', 29, 84, 2607, 400, 237, '5', '1998-2020', 'Condensed Matter Physics (Q2); Electrical and Electronic Engineering (Q2)'), (10596, 'Materials at High Temperatures', 9603409, 0.454, 'Q2', 38, 46, 1490, 233, 170, '3', '1991-2020', 'Ceramics and Composites (Q2); Condensed Matter Physics (Q2); Materials Chemistry (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)'), (10597, 'Medical mycology journal', 18820476, 0.454, 'Q3', 25, 9, 205, 71, 71, '6', '2009, 2011-2020', 'Infectious Diseases (Q3); Microbiology (Q3)'), (10598, 'Turkish Journal of Mathematics', 13000098, 0.454, 'Q2', 27, 161, 3439, 570, 595, '18', '1995-2002, 2006-2020', 'Mathematics (miscellaneous) (Q2)'), (10599, 'Educational Philosophy and Theory', 14695812, 0.453, 'Q1', 47, 317, 9727, 720, 473, '3', '1969-2020', 'History and Philosophy of Science (Q1); Education (Q2)'), (10600, 'Educational Psychology in Practice', 2667363, 0.453, 'Q3', 30, 26, 1237, 82, 82, '3', '1985-2020', 'Developmental and Educational Psychology (Q3)'), (10601, 'Education Sciences', 22277102, 0.453, 'Q2', 19, 389, 20377, 1298, 584, '19', '2011-2020', 'Computer Science Applications (Q2); Computer Science (miscellaneous) (Q2); Education (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Public Administration (Q2); Developmental and Educa'), (10602, 'Egyptian Journal of Biological Pest Control', 11101768, 0.453, 'Q2', 13, 143, 5105, 427, 229, '32', '2008-2020', 'Agronomy and Crop Science (Q2); Ecology (Q2); Plant Science (Q2); Insect Science (Q3)'), (10603, 'Endocrine Research', 15324206, 0.453, 'Q3', 42, 29, 1115, 138, 93, '2', '1974-1982, 1984-2020', 'Medicine (miscellaneous) (Q3); Endocrinology (Q4)'), (10604, 'Ethnography', 17412714, 0.453, 'Q1', 46, 65, 3186, 125, 107, '3', '2000-2020', 'Anthropology (Q1); Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)'), (10605, 'Human Fertility', 14647273, 0.453, 'Q3', 39, 90, 3464, 249, 137, '3', '1998-2020', 'Medicine (miscellaneous) (Q3); Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (10606, 'Journal of Food Products Marketing', 15404102, 0.453, 'Q2', 26, 36, 2348, 344, 152, '2', '1992-2020', 'Business and International Management (Q2); Food Science (Q2); Marketing (Q3)'), (10607, 'Journal of Inorganic and Organometallic Polym', 15741443, 0.453, 'Q2', 45, 489, 23648, 1984, 730, '2', '1996-2001, 2003-2020', 'Materials Chemistry (Q2); Polymers and Plastics (Q2)'), (10608, 'Journal of Nanoparticle Research', 13880764, 0.453, 'Q2', 121, 383, 18035, 2117, 1012, '16', '1999-2020', 'Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Modeling and Simulation (Q2); Atomic and Molecular Physics, and Optics (Q3); Bioengineering (Q3); Condensed Matter Physics (Q3);'), (10609, 'Molecular Simulation', 8927022, 0.453, 'Q2', 57, 188, 9774, 976, 483, '3', '1987-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Information Systems (Q2); Materials Science (miscellaneous) (Q2); Modeling and Simulation (Q2); Condensed Matter Physics (Q3)'), (10610, 'Nongye Gongcheng Xuebao/Transactions of the C', 10026819, 0.453, 'Q2', 51, 902, 31749, 4897, 2895, '1', '1998-1999, 2001-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (10611, 'Open Review of Educational Research', 23265507, 0.453, 'Q1', 10, 0, 0, 70, 35, '3', '2014-2019', 'History (Q1); Philosophy (Q1); Education (Q2)'), (10612, 'Opto-electronics Review', 12303402, 0.453, 'Q2', 40, 22, 998, 372, 134, '16', '1996-2020', 'Electrical and Electronic Engineering (Q2); Materials Science (miscellaneous) (Q2); Radiation (Q3)'), (10613, 'Scientific World Journal, The', 23566140, 0.453, 'Q2', 93, 168, 7305, 549, 237, '32', '2000-2020', 'Environmental Science (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (10614, 'Studies in Nonlinear Dynamics and Econometric', 15583708, 0.453, 'Q2', 31, 57, 2786, 103, 97, '5', '2002-2020', 'Social Sciences (miscellaneous) (Q2); Analysis (Q3); Economics and Econometrics (Q3)'), (10615, 'Tumori', 3008916, 0.453, 'Q3', 52, 149, 4117, 410, 294, '7', '1946-2020', 'Medicine (miscellaneous) (Q3); Oncology (Q3); Cancer Research (Q4)'), (10616, 'Acta Biochimica Polonica', 1734154, 0.452, 'Q3', 78, 84, 2501, 526, 261, '17', '1955-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (10617, 'Analysis', 14678284, 0.452, 'Q1', 45, 36, 700, 104, 161, '3', '1933-1940, 1947-1994, 1996-2020', 'Philosophy (Q1)'), (10618, 'Anatolia', 13004220, 0.452, 'Q2', 29, 79, 3567, 321, 173, '3', '1999-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)'), (10619, 'Australasian Journal of Engineering Education', 13245821, 0.452, 'Q2', 7, 20, 842, 40, 28, '3', '2013, 2015-2020', 'Education (Q2); Engineering (miscellaneous) (Q2); Human-Computer Interaction (Q2)'), (10620, 'Computer Speech and Language', 8852308, 0.452, 'Q2', 71, 61, 3112, 898, 228, '2', '1986-1987, 1989-2021', 'Human-Computer Interaction (Q2); Software (Q2); Theoretical Computer Science (Q3)'), (10621, 'Energy Systems', 18683967, 0.452, 'Q2', 27, 73, 3101, 308, 139, '5', '2010-2020', 'Energy (miscellaneous) (Q2); Modeling and Simulation (Q2); Economics and Econometrics (Q3)'), (10622, 'Foundations and Trends in Electronic Design A', 15513947, 0.452, 'Q2', 16, 1, 312, 36, 7, '2', '2006-2019', 'Computer Graphics and Computer-Aided Design (Q2); Hardware and Architecture (Q2)'), (10623, 'Information Development', 17416469, 0.452, 'Q2', 26, 76, 4413, 321, 143, '3', '1985-2020', 'Library and Information Sciences (Q2)'), (10624, 'International Journal of Rehabilitation Resea', 3425282, 0.452, 'Q2', 52, 62, 1851, 277, 172, '2', '1978-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Medicine (miscellaneous) (Q3)'), (10625, 'Iranian Journal of Public Health', 22516085, 0.452, 'Q3', 39, 388, 8744, 1183, 676, '15', '1973-1980, 1987, 2004-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (10626, 'Journal of British Studies', 219371, 0.452, 'Q1', 35, 29, 2316, 30, 77, '3', '1962-2020', 'Cultural Studies (Q1); History (Q1)'), (10627, 'Minerva Endocrinologica', 3911977, 0.452, 'Q3', 35, 52, 2224, 241, 132, '7', '1984-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3); Medicine (miscellaneous) (Q3); Endocrinology (Q4)'), (10628, 'Mining of Mineral Deposits', 24153443, 0.452, 'Q2', 12, 62, 1875, 243, 170, '44', '2016-2020', 'Engineering (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2); Geochemistry and Petrology (Q3)'), (10629, 'Public Integrity', 15580989, 0.452, 'Q1', 20, 72, 3436, 195, 110, '3', '2000-2020', 'Law (Q1); Philosophy (Q1); Business and International Management (Q2); Public Administration (Q2); Sociology and Political Science (Q2)'), (10630, 'Singapore Medical Journal', 375675, 0.452, 'Q3', 61, 123, 2189, 499, 299, '37', '1960-2020', 'Medicine (miscellaneous) (Q3)'), (10631, 'Social Anthropology', 14698676, 0.452, 'Q1', 40, 164, 2310, 182, 104, '2', '1982, 1992-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q2); Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3)'), (10632, 'Teaching Mathematics and its Applications', 14716976, 0.452, 'Q2', 18, 19, 633, 40, 33, '3', '1982-2020', 'Education (Q2); Mathematics (miscellaneous) (Q2)'), (10633, 'Topics in Companion Animal Medicine', 19389736, 0.452, 'Q2', 43, 46, 1781, 145, 96, '2', '2008-2020', 'Small Animals (Q2)'), (10634, 'Web Ecology', 21933081, 0.452, 'Q2', 17, 13, 1005, 48, 31, '5', '2000-2003, 2005-2020', 'Ecology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10635, 'Aquatic Biology', 18647790, 0.451, 'Q2', 44, 15, 867, 81, 49, '5', '2007-2020', 'Ecology (Q2); Oceanography (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (10636, 'Botanica Marina', 68055, 0.451, 'Q2', 56, 46, 2699, 265, 155, '5', '1959-2020', 'Plant Science (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (10637, 'Ethics and Social Welfare', 17496535, 0.451, 'Q1', 9, 41, 1584, 109, 80, '2', '2015-2020', 'Philosophy (Q1); Sociology and Political Science (Q2)'), (10638, 'European Annals of Allergy and Clinical Immun', 17641489, 0.451, 'Q3', 33, 39, 1161, 184, 113, '7', '2003-2020', 'Immunology and Allergy (Q3)'), (10639, 'European Physical Journal B', 14346028, 0.451, 'Q2', 130, 222, 10582, 1519, 844, '5', '1998-2020', 'Electronic, Optical and Magnetic Materials (Q2); Condensed Matter Physics (Q3)'), (10640, 'European Politics and Society', 23745126, 0.451, 'Q2', 23, 84, 4682, 147, 101, '3', '2014-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10641, 'Industrial Law Journal', 3059332, 0.451, 'Q1', 26, 25, 854, 52, 60, '3', '1972-2020', 'Law (Q1)'), (10642, 'Informatics', 22279709, 0.451, 'Q2', 12, 41, 2126, 316, 95, '19', '2018-2020', 'Communication (Q2); Computer Networks and Communications (Q2); Human-Computer Interaction (Q2)'), (10643, 'ISH Journal of Hydraulic Engineering', 9715010, 0.451, 'Q2', 17, 115, 3963, 376, 175, '3', '1995-2020', 'Civil and Structural Engineering (Q2); Fluid Flow and Transfer Processes (Q2); Water Science and Technology (Q2); Environmental Engineering (Q3)'), (10644, 'Journal of Economics/ Zeitschrift fur Nationa', 16177134, 0.451, 'Q2', 33, 35, 1308, 143, 112, '28', '1930-1939, 1941-1944, 1948-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q3)'), (10645, 'LUTS: Lower Urinary Tract Symptoms', 17575664, 0.451, 'Q3', 15, 47, 1345, 215, 154, '6', '2010-2020', 'Neurology (Q3); Urology (Q3)'), (10646, 'Mathematical Biosciences and Engineering', 15471063, 0.451, 'Q2', 45, 447, 16588, 1281, 571, '2', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Computational Mathematics (Q2); Modeling and Simulation (Q2); Applied Mathematics (Q3); Medicine (miscellaneous) (Q3)'), (10647, 'Radiography', 15322831, 0.451, 'Q3', 30, 203, 6757, 454, 253, '3', '1995-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (10648, 'Raffles Bulletin of Zoology', 2172445, 0.451, 'Q3', 37, 71, 3292, 109, 120, '37', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (10649, 'Translation and Interpreting Studies', 19322798, 0.451, 'Q1', 11, 24, 1290, 41, 70, '16', '2011-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (10650, 'Utilitas', 17416183, 0.451, 'Q1', 22, 48, 1549, 48, 70, '3', '1989-2007, 2010-2020', 'Philosophy (Q1); Sociology and Political Science (Q2)'), (10651, 'World journal for pediatric &amp; congenital ', 2150136, 0.451, 'Q2', 21, 0, 0, 286, 243, '2', '2010-2019', 'Pediatrics, Perinatology and Child Health (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Surgery (Q3)'), (10652, 'Asia-Pacific Journal of Sports Medicine, Arth', 22146873, 0.45, 'Q2', 10, 29, 717, 63, 53, '37', '2014-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)'), (10653, 'Canadian Journal of Veterinary Research', 8309000, 0.45, 'Q2', 51, 46, 1480, 192, 137, '9', '1986-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (10654, 'Chemistry and Ecology', 2757540, 0.45, 'Q2', 37, 66, 3562, 387, 192, '3', '1982-1984, 1986-2001, 2003-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Ecology (Q2); Environmental Science (miscellaneous) (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10655, 'Clinica Terapeutica', 19726007, 0.45, 'Q3', 24, 96, 3202, 437, 199, '7', '1958-2020', 'Medicine (miscellaneous) (Q3)'), (10656, 'Greenhouse Gases: Science and Technology', 21523878, 0.45, 'Q3', 32, 85, 4041, 474, 230, '3', '2011-2020', 'Environmental Chemistry (Q3); Environmental Engineering (Q3)'), (10657, 'Healthcare Technology Letters', 20533713, 0.45, 'Q3', 19, 29, 997, 426, 141, '3', '2014-2020', 'Health Informatics (Q3); Health Information Management (Q3)'), (10658, 'International Journal of Acarology', 1647954, 0.45, 'Q3', 30, 94, 3120, 178, 202, '3', '1975-2020', 'Insect Science (Q3)'), (10659, 'Journal of Aging and Social Policy', 15450821, 0.45, 'Q2', 31, 73, 2350, 176, 84, '2', '1989-2020', 'Demography (Q2); Gerontology (Q2); Life-span and Life-course Studies (Q3)'), (10660, 'Journal of Applied Mathematics and Computing', 15985865, 0.45, 'Q2', 36, 154, 5083, 554, 309, '5', '1997-2020', 'Computational Mathematics (Q2); Applied Mathematics (Q3)'), (10661, 'Journal of Combustion', 20901976, 0.45, 'Q2', 18, 6, 169, 64, 35, '2', '2010-2020', 'Chemical Engineering (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Condensed Matter Physics (Q3); Fuel Technology (Q3)'), (10662, 'Journal of Vocational Rehabilitation', 10522263, 0.45, 'Q2', 36, 47, 1886, 199, 210, '16', '1991-2020', 'Occupational Therapy (Q2); Rehabilitation (Q2)'), (10663, 'Reumatologia', 346233, 0.45, 'Q3', 14, 60, 1798, 313, 161, '17', '1960-1961, 1963-2020', 'Immunology and Allergy (Q3); Rheumatology (Q3); Immunology (Q4)'), (10664, 'SAR and QSAR in Environmental Research', 1029046, 0.45, 'Q3', 48, 49, 2590, 422, 166, '3', '1993-2020', 'Bioengineering (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Molecular Medicine (Q4)'), (10665, 'Transfusion and Apheresis Science', 14730502, 0.45, 'Q3', 55, 271, 6767, 749, 478, '3', '1996-2020', 'Hematology (Q3)'), (10666, 'Virtual Archaeology Review', 19899947, 0.45, 'Q1', 10, 20, 879, 118, 57, '12', '2017-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Conservation (Q1); Computer Science Applications (Q2)'), (10667, 'American Journal of Sexuality Education', 15546136, 0.449, 'Q2', 16, 31, 1130, 116, 80, '2', '2005-2020', 'Education (Q2)'), (10668, 'Annales Societatis Geologorum Poloniae', 2089068, 0.449, 'Q2', 20, 18, 1566, 86, 62, '17', '2008-2020', 'Economic Geology (Q2); Geology (Q2); Stratigraphy (Q2)'), (10669, 'BMJ Sexual and Reproductive Health', 25152009, 0.449, 'Q3', 39, 100, 2031, 221, 143, '3', '2018-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (10670, 'Bragantia', 68705, 0.449, 'Q2', 32, 58, 2004, 258, 175, '14', '1977, 1979, 1985, 1992-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)'), (10671, 'Contemporary Psychoanalysis', 107530, 0.449, 'Q2', 30, 28, 921, 33, 90, '3', '1964-2020', 'Clinical Psychology (Q2); Psychiatry and Mental Health (Q3)'), (10672, 'Cosmetics', 20799284, 0.449, 'Q2', 21, 94, 4796, 525, 175, '19', '2014-2020', 'Chemical Engineering (miscellaneous) (Q2); Pharmaceutical Science (Q2); Dermatology (Q3); Surgery (Q3); Aging (Q4)'), (10673, 'Current Drug Delivery', 15672018, 0.449, 'Q2', 62, 76, 5298, 726, 304, '52', '2004-2020', 'Pharmaceutical Science (Q2)'), (10674, 'Current protocols in toxicology / editorial b', 19349254, 0.449, 'Q3', 23, 10, 268, 91, 66, '2', '2001-2020', 'Medicine (miscellaneous) (Q3); Toxicology (Q3)'), (10675, 'Current Therapeutic Research', 11393, 0.449, 'Q3', 39, 43, 1512, 141, 65, '2', '1959-2020', 'Pharmacology (Q3); Pharmacology (medical) (Q3)'), (10676, 'Filomat', 3545180, 0.449, 'Q2', 34, 383, 9278, 1712, 1680, '55', '2010-2020', 'Mathematics (miscellaneous) (Q2)'), (10677, 'Gong Cheng Li Xue/Engineering Mechanics', 10004750, 0.449, 'Q2', 33, 355, 8797, 1180, 1150, '1', '1997-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10678, 'International Journal of Ambient Energy', 21628246, 0.449, 'Q2', 27, 467, 13940, 1380, 581, '3', '1980-2020', 'Building and Construction (Q2); Renewable Energy, Sustainability and the Environment (Q3)'), (10679, 'International Journal of Energy Economics and', 21464553, 0.449, 'Q2', 33, 474, 17890, 2009, 736, '18', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Energy (miscellaneous) (Q2)'), (10680, 'Journal of audiology and otology', 23841621, 0.449, 'Q3', 14, 30, 720, 115, 100, '13', '2016-2020', 'Otorhinolaryngology (Q3); Speech and Hearing (Q3); Sensory Systems (Q4)'), (10681, 'Journal of International Dispute Settlement', 20403585, 0.449, 'Q1', 17, 23, 738, 31, 73, '3', '2010-2020', 'Law (Q1); Political Science and International Relations (Q2)'), (10682, 'KN - Journal of Cartography and Geographic In', 25244957, 0.449, 'Q2', 5, 25, 647, 44, 16, '19', '2019-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Earth-Surface Processes (Q2); Computers in Earth Sciences (Q3)'), (10683, 'Pediatric Emergency Care', 7495161, 0.449, 'Q2', 65, 305, 5275, 788, 750, '2', '1985-2020', 'Emergency Medicine (Q2); Pediatrics, Perinatology and Child Health (Q2); Medicine (miscellaneous) (Q3)'), (10684, 'Tempo Social', 1032070, 0.449, 'Q2', 10, 45, 2080, 87, 129, '14', '2007-2020', 'Social Sciences (miscellaneous) (Q2)'), (10685, 'ZAMM Zeitschrift fur Angewandte Mathematik un', 442267, 0.449, 'Q2', 51, 147, 5221, 601, 333, '5', '1921-1944, 1947-2020', 'Computational Mechanics (Q2); Applied Mathematics (Q3)'), (10686, 'Zeitschrift fur Erziehungswissenschaft', 18625215, 0.449, 'Q2', 19, 58, 3234, 183, 175, '5', '2008-2020', 'Education (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (10687, 'Annals of Pediatric Endocrinology and Metabol', 22871012, 0.448, 'Q2', 8, 44, 1467, 135, 83, '13', '2015-2016, 2018-2020', 'Pediatrics, Perinatology and Child Health (Q2); Endocrinology, Diabetes and Metabolism (Q3)'), (10688, 'Arhiv za Higijenu Rada i Toksikologiju', 18486312, 0.448, 'Q3', 32, 36, 1742, 261, 112, '58', '1953-2020', 'Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)'), (10689, 'Biomedical Glasses', 22993932, 0.448, 'Q2', 12, 5, 304, 88, 37, '5', '2015-2020', 'Ceramics and Composites (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2)'), (10690, 'British Journal of Biomedical Science', 9674845, 0.448, 'Q3', 43, 48, 1471, 329, 118, '3', '1993-2020', 'Biochemistry (medical) (Q3); Clinical Biochemistry (Q3); Immunology and Allergy (Q3); Infectious Diseases (Q3); Microbiology (Q3); Microbiology (medical) (Q3); Immunology (Q4)'), (10691, 'Cell Regeneration', 20459769, 0.448, 'Q4', 17, 23, 1657, 37, 17, '16', '2012-2020', 'Cell Biology (Q4); Developmental Biology (Q4)'), (10692, 'Chinese Journal of International Law', 15401650, 0.448, 'Q1', 18, 27, 1189, 47, 75, '3', '2008-2019', 'Law (Q1); Political Science and International Relations (Q2)'), (10693, 'Gastroenterology and Hepatology from Bed to B', 20084234, 0.448, 'Q3', 26, 66, 2035, 364, 225, '15', '2011-2020', 'Gastroenterology (Q3); Hepatology (Q3)'), (10694, 'International Journal of Entrepreneurship and', 14761297, 0.448, 'Q2', 33, 78, 5490, 324, 248, '3', '2004-2014, 2018-2020', 'Business and International Management (Q2); Economics and Econometrics (Q3)'), (10695, 'Journal of Applied Biobehavioral Research', 17519861, 0.448, 'Q1', 26, 0, 0, 161, 100, '2', '1993-1994, 1998-2019', 'Cultural Studies (Q1); Clinical Psychology (Q2); Social Sciences (miscellaneous) (Q2); Experimental and Cognitive Psychology (Q3)'), (10696, 'Journal of Biomolecular Structure and Dynamic', 7391102, 0.448, 'Q3', 69, 1224, 65795, 3027, 862, '3', '1981, 1983-2020', 'Medicine (miscellaneous) (Q3); Molecular Biology (Q4); Structural Biology (Q4)'), (10697, 'Journal of Manipulative and Physiological The', 1614754, 0.448, 'Q2', 70, 100, 4239, 357, 235, '2', '1982-2020', 'Chiropractics (Q2)'), (10698, 'Journal of Sol-Gel Science and Technology', 15734846, 0.448, 'Q2', 91, 293, 13131, 1927, 912, '16', '1993-2020', 'Ceramics and Composites (Q2); Chemistry (miscellaneous) (Q2); Electronic, Optical and Magnetic Materials (Q2); Materials Chemistry (Q2); Biomaterials (Q3); Condensed Matter Physics (Q3)'), (10699, 'RELIEVE - Revista Electronica de Investigacio', 11344032, 0.448, 'Q2', 18, 18, 828, 42, 28, '12', '2001-2019', 'Education (Q2)'), (10700, 'Sugar Tech', 9740740, 0.448, 'Q2', 27, 133, 4654, 450, 288, '4', '2003-2020', 'Agronomy and Crop Science (Q2)'), (10701, 'Surface Innovations', 20506260, 0.448, 'Q2', 19, 45, 2223, 250, 99, '3', '2013-2020', 'Materials Chemistry (Q2); Process Chemistry and Technology (Q2); Surfaces, Coatings and Films (Q2)'), (10702, 'Unmanned Systems', 23013850, 0.448, 'Q2', 18, 31, 1009, 128, 57, '37', '2013-2015, 2017-2020', 'Aerospace Engineering (Q2); Automotive Engineering (Q2); Control and Optimization (Q2); Control and Systems Engineering (Q2)'), (10703, 'Vulnerable Children and Youth Studies', 17450136, 0.448, 'Q2', 22, 47, 1296, 132, 99, '3', '2006-2020', 'Health (social science) (Q2); Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3)'), (10704, 'Biostatistics and Epidemiology', 24709379, 0.447, 'Q3', 5, 20, 923, 62, 33, '3', '2017-2020', 'Health Informatics (Q3); Epidemiology (Q4)'), (10705, 'BJA Education', 20585357, 0.447, 'Q2', 37, 61, 1244, 258, 184, '3', '2015-2020', 'Anesthesiology and Pain Medicine (Q2)'), (10706, 'Complexity', 10762787, 0.447, 'Q1', 61, 1426, 55931, 5002, 1669, '32', '1995-2020', 'Multidisciplinary (Q1); Computer Science (miscellaneous) (Q2)'), (10707, 'Current Problems in Diagnostic Radiology', 15356302, 0.447, 'Q3', 31, 160, 4387, 358, 218, '2', '1976-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (10708, 'Economics and Sociology', 2071789, 0.447, 'Q2', 21, 74, 3589, 538, 249, '17', '2008-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (10709, 'Electronic Journal of Linear Algebra', 10813810, 0.447, 'Q3', 31, 63, 1151, 143, 150, '2', '1996-2020', 'Algebra and Number Theory (Q3)'), (10710, 'Forest Science', 15749, 0.447, 'Q2', 77, 72, 3657, 264, 207, '2', '1970, 1974-1976, 1978-1991, 1993-2020', 'Ecology (Q2); Forestry (Q2); Ecological Modeling (Q3)'), (10711, 'German Journal of Exercise and Sport Research', 25093150, 0.447, 'Q2', 11, 50, 2424, 195, 143, '5', '1999, 2017-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)'), (10712, 'HeartRhythm Case Reports', 22140271, 0.447, 'Q3', 12, 239, 2363, 388, 453, '2', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (10713, 'International Journal of Technological Learni', 17531942, 0.447, 'Q2', 21, 16, 1200, 58, 49, '3', '2007-2008, 2011-2013', 'Computer Science Applications (Q2); Education (Q2); Management of Technology and Innovation (Q2)'), (10714, 'Journal of Computers in Education', 21979995, 0.447, 'Q2', 7, 26, 1640, 74, 23, '5', '2019-2020', 'Computer Science Applications (Q2); Education (Q2)'), (10715, 'Journal of Environmental Health Science and E', 2052336, 0.447, 'Q2', 45, 153, 7906, 416, 152, '19', '2012-2020', 'Waste Management and Disposal (Q2); Water Science and Technology (Q2); Applied Microbiology and Biotechnology (Q3); Environmental Engineering (Q3); Health, Toxicology and Mutagenesis (Q3); Pollution ('), (10716, 'Journal of Micro-Bio Robotics', 21946426, 0.447, 'Q2', 15, 19, 964, 74, 31, '2', '2013-2020', 'Electrical and Electronic Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Biomedical Engineering (Q3); Biotechnology (Q3)'), (10717, 'Mentoring and Tutoring: Partnership in Learni', 14699745, 0.447, 'Q2', 35, 35, 1690, 115, 87, '3', '1994-2020', 'Education (Q2)'), (10718, 'Rhetoric Society Quarterly', 1930322, 0.447, 'Q1', 22, 27, 1519, 63, 75, '3', '1976-2020', 'Linguistics and Language (Q1); Communication (Q2)'), (10719, 'SCIRES-IT', 22394303, 0.447, 'Q1', 5, 37, 1036, 70, 57, '7', '2016-2019', 'Conservation (Q1); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Information Systems (Q2); Library and Information Sciences (Q2)'), (10720, 'Survival', 396338, 0.447, 'Q2', 48, 81, 0, 225, 171, '3', '1959-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10721, 'X-Ray Spectrometry', 498246, 0.447, 'Q3', 45, 108, 2764, 319, 204, '3', '1972-2020', 'Spectroscopy (Q3)'), (10722, 'Applied Neuropsychology: Child', 21622973, 0.446, 'Q3', 17, 85, 4846, 202, 136, '3', '2012-2020', 'Developmental and Educational Psychology (Q3); Neuropsychology and Physiological Psychology (Q3)'), (10723, 'Archnet-IJAR', 26316862, 0.446, 'Q1', 14, 43, 1724, 173, 159, '3', '2011-2020', 'Architecture (Q1); Urban Studies (Q2)'), (10724, 'BJPsych International', 20564740, 0.446, 'Q3', 9, 35, 334, 78, 33, '3', '2020', 'Psychiatry and Mental Health (Q3)'), (10725, 'Blood Pressure Monitoring', 14735725, 0.446, 'Q1', 61, 73, 1391, 217, 176, '2', '1996-2020', 'Assessment and Diagnosis (Q1); Advanced and Specialized Nursing (Q2); Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3); Medicine (miscellaneous) (Q3)'), (10726, 'ChemEngineering', 23057084, 0.446, 'Q2', 11, 65, 2970, 372, 167, '19', '2017-2020', 'Chemical Engineering (miscellaneous) (Q2); Energy (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)'), (10727, 'International Journal of Cognitive Therapy', 19371209, 0.446, 'Q3', 31, 33, 1843, 80, 70, '2', '2008-2020', 'Experimental and Cognitive Psychology (Q3)'), (10728, 'International Journal of Multimedia Informati', 21926611, 0.446, 'Q1', 21, 21, 1546, 295, 59, '3', '2012-2020', 'Media Technology (Q1); Information Systems (Q2); Library and Information Sciences (Q2)'), (10729, 'Journal of Applied Accounting Research', 9675426, 0.446, 'Q2', 23, 36, 2193, 247, 105, '3', '1999-2002, 2004-2006, 2008-2020', 'Accounting (Q2)'), (10730, 'Journal of Contemporary African Studies', 14699397, 0.446, 'Q2', 32, 50, 2419, 103, 85, '3', '1981-1984, 1986-2020', 'Development (Q2); Geography, Planning and Development (Q2); Political Science and International Relations (Q2)'), (10731, 'Journal of educational administration and his', 14787431, 0.446, 'Q2', 19, 44, 1804, 86, 74, '3', '1968-2000, 2010-2020', 'Education (Q2); Sociology and Political Science (Q2)'), (10732, 'Journal of Ethnobiology', 2780771, 0.446, 'Q1', 26, 35, 2237, 152, 101, '2', '2005-2020', 'Anthropology (Q1); Animal Science and Zoology (Q2); Plant Science (Q2)'), (10733, 'Journal of Functional Morphology and Kinesiol', 24115142, 0.446, 'Q2', 12, 77, 3492, 234, 177, '19', '2016-2020', 'Anatomy (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Histology (Q3); Orthopedics and Sports Medicine (Q3); Rheumatology (Q3)'), (10734, 'Journal of Pacific Rim Psychology', 18344909, 0.446, 'Q3', 15, 24, 924, 93, 72, '3', '2008-2020', 'Social Psychology (Q3)'), (10735, 'Language Sciences', 3880001, 0.446, 'Q1', 39, 40, 2192, 159, 172, '3', '1979-2021', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (10736, 'Law and Social Inquiry', 1545696, 0.446, 'Q1', 47, 40, 3627, 174, 178, '2', '1976-2020', 'Law (Q1); Social Sciences (miscellaneous) (Q2)'), (10737, 'Nonlinear Dynamics, Psychology, and Life Scie', 15736652, 0.446, 'Q3', 29, 24, 1192, 88, 74, '2', '2003-2020', 'Applied Mathematics (Q3)'), (10738, 'Ostrich', 306525, 0.446, 'Q3', 25, 49, 2091, 144, 115, '3', '1930-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (10739, 'Security and Communication Networks', 19390122, 0.446, 'Q2', 43, 239, 8772, 1915, 596, '32', '2009-2020', 'Computer Networks and Communications (Q2); Information Systems (Q2)'), (10740, 'Sociological Inquiry', 1475682, 0.446, 'Q2', 51, 56, 3531, 114, 85, '3', '1961-2020', 'Sociology and Political Science (Q2)'), (10741, 'Spanish in Context', 15710718, 0.446, 'Q1', 17, 21, 772, 57, 57, '16', '2004-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (10742, 'Veterinary and Animal Science', 2451943, 0.446, 'Q2', 7, 63, 2174, 102, 56, '16', '2016-2020', 'Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2)'), (10743, 'Advances in Accounting', 10465715, 0.445, 'Q2', 30, 17, 1040, 145, 91, '2', '2000-2003, 2005-2020', 'Accounting (Q2); Finance (Q2)'), (10744, 'Australian Journal of Forensic Sciences', 450618, 0.445, 'Q3', 23, 132, 4047, 307, 241, '3', '1968-2020', 'Pathology and Forensic Medicine (Q3)'), (10745, 'Economies', 22277099, 0.445, 'Q2', 11, 83, 4989, 490, 237, '19', '2017-2020', 'Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)'), (10746, 'Emotional and Behavioural Difficulties', 17412692, 0.445, 'Q3', 28, 26, 1204, 100, 84, '3', '1996-2020', 'Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Psychiatry and Mental Health (Q3)'), (10747, 'Forum for Development Studies', 8039410, 0.445, 'Q2', 20, 24, 1089, 108, 69, '3', '1992-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (10748, 'International Journal of Reproductive BioMedi', 24764108, 0.445, 'Q3', 29, 107, 3095, 475, 281, '15', '2011-2013, 2015-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (10749, 'Journal of Environmental Science and Health -', 3601234, 0.445, 'Q2', 50, 131, 5681, 677, 317, '2', '1976-2020', 'Food Science (Q2); Medicine (miscellaneous) (Q3); Pollution (Q3)'), (10750, 'Journal of Supercomputing', 15730484, 0.445, 'Q2', 61, 536, 18904, 2893, 964, '16', '1987-2020', 'Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2); Theoretical Computer Science (Q3)'), (10751, 'Journal of Sustainable Finance and Investment', 20430809, 0.445, 'Q2', 16, 73, 3750, 115, 57, '3', '2011-2020', 'Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2)'), (10752, 'Journal of the Textile Institute', 17542340, 0.445, 'Q2', 44, 354, 11709, 1323, 658, '3', '1967-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q2); Polymers and Plastics (Q2)'), (10753, 'Mathematica Slovaca', 1399918, 0.445, 'Q2', 23, 118, 2504, 319, 357, '17', '2007-2020', 'Mathematics (miscellaneous) (Q2)'), (10754, 'Microelectronics Reliability', 262714, 0.445, 'Q2', 91, 344, 8384, 2563, 1246, '3', '1962-2020', 'Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q2); Safety, Risk, Reliability and Quality (Q2); Surfaces, Coatings and Films (Q2); Atomic and Molecular Physics'), (10755, 'Mobile Networks and Applications', 1383469, 0.445, 'Q2', 85, 321, 9266, 1673, 482, '16', '1996-2020', 'Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)'), (10756, 'Permanente journal,The', 15525767, 0.445, 'Q3', 30, 165, 0, 572, 407, '2', '2012-2020', 'Medicine (miscellaneous) (Q3)'), (10757, 'Psyecology', 19899386, 0.445, 'Q2', 11, 22, 824, 58, 39, '3', '2010-2020', 'Environmental Science (miscellaneous) (Q2); Applied Psychology (Q3); Experimental and Cognitive Psychology (Q3)'), (10758, 'Revista Panamericana de Salud Publica/Pan Ame', 16805348, 0.445, 'Q3', 57, 156, 4661, 289, 183, '2', '1997-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (10759, 'Acta Geologica Sinica', 17556724, 0.444, 'Q2', 61, 241, 10654, 822, 624, '1', '1979-2020', 'Geology (Q2)'), (10760, 'Annales: Anali za istrske in mediteranske stu', 13189425, 0.444, 'Q1', 9, 37, 1951, 46, 152, '60', '2011-2020', 'History (Q1); Social Sciences (miscellaneous) (Q2)'), (10761, 'Australasian Psychiatry', 10398562, 0.444, 'Q3', 38, 251, 2837, 482, 427, '3', '1967-2020', 'Psychiatry and Mental Health (Q3)'), (10762, 'Clean - Soil, Air, Water', 18630650, 0.444, 'Q2', 66, 37, 1929, 548, 279, '5', '2007-2020', 'Water Science and Technology (Q2); Environmental Chemistry (Q3); Pollution (Q3)'), (10763, 'Fibers and Polymers', 12299197, 0.444, 'Q2', 52, 325, 11752, 1963, 898, '13', '2000-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Polymers and Plastics (Q2)'), (10764, 'Frontiers of Architectural Research', 20952635, 0.444, 'Q1', 24, 51, 2364, 342, 146, '16', '2012-2020', 'Archeology (Q1); Architecture (Q1); Building and Construction (Q2); Urban Studies (Q2)'), (10765, 'Gaceta Sanitaria', 2139111, 0.444, 'Q3', 42, 194, 5079, 490, 304, '12', '1987-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (10766, 'Hospitality and Society', 20427921, 0.444, 'Q2', 15, 15, 1145, 64, 43, '3', '2011-2020', 'Social Sciences (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (10767, 'IEEE Microwave Magazine', 15273342, 0.444, 'Q2', 78, 168, 2747, 621, 332, '2', '2000-2020', 'Electrical and Electronic Engineering (Q2); Condensed Matter Physics (Q3); Radiation (Q3)'), (10768, 'Industry and Higher Education', 20436858, 0.444, 'Q2', 24, 69, 3490, 196, 113, '2', '1996-2020', 'Business and International Management (Q2); Education (Q2)'), (10769, 'International Journal of Sport Finance', 15586235, 0.444, 'Q2', 23, 4, 164, 72, 58, '2', '2008-2019', 'Business and International Management (Q2); Finance (Q2); Marketing (Q3); Sports Science (Q3)'), (10770, 'Journal of Cryptology', 14321378, 0.444, 'Q2', 77, 46, 2195, 268, 101, '2', '1988-2020', 'Computer Science Applications (Q2); Software (Q2); Applied Mathematics (Q3)'), (10771, 'Journal of Earth System Science', 23474327, 0.444, 'Q2', 52, 229, 12106, 872, 471, '4', '2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (10772, 'Journal of Equine Science', 13403516, 0.444, 'Q2', 17, 18, 410, 66, 35, '6', '1994-2020', 'Equine (Q2)'), (10773, 'Journal of International Accounting, Auditing', 10619518, 0.444, 'Q2', 41, 32, 2095, 178, 59, '3', '1992-2020', 'Accounting (Q2); Finance (Q2)'), (10774, 'Journal of Neonatal-Perinatal Medicine', 18784429, 0.444, 'Q2', 17, 97, 2674, 251, 184, '16', '2008-2020', 'Pediatrics, Perinatology and Child Health (Q2)'), (10775, 'Mathematical Communications', 13310623, 0.444, 'Q3', 18, 20, 443, 62, 60, '58', '2008-2020', 'Algebra and Number Theory (Q3); Analysis (Q3); Applied Mathematics (Q3); Geometry and Topology (Q3)'), (10776, 'Nonlinear Engineering', 21928029, 0.444, 'Q2', 15, 34, 1343, 376, 134, '5', '2013-2020', 'Chemical Engineering (miscellaneous) (Q2); Computer Networks and Communications (Q2); Engineering (miscellaneous) (Q2); Modeling and Simulation (Q2)'), (10777, 'Ocular Oncology and Pathology', 22964681, 0.444, 'Q2', 10, 70, 1493, 243, 194, '19', '2015-2020', 'Nursing (miscellaneous) (Q2)'), (10778, 'Studies in Gender and Sexuality', 19409206, 0.444, 'Q2', 16, 45, 852, 49, 118, '3', '2005-2020', 'Gender Studies (Q2)'), (10779, 'Analysis and Metaphysics', 15848574, 0.443, 'Q1', 11, 12, 367, 70, 28, '2', '2013-2019', 'Philosophy (Q1)'), (10780, 'Education for Primary Care', 14739879, 0.443, 'Q2', 19, 116, 1818, 193, 194, '3', '2001-2020', 'Family Practice (Q2); Public Health, Environmental and Occupational Health (Q3)'), (10781, 'Electronic Journal of Graph Theory and Applic', 23382287, 0.443, 'Q3', 5, 27, 442, 82, 89, '21', '2016-2020', 'Applied Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)'), (10782, 'Identity', 15283488, 0.443, 'Q1', 31, 24, 1424, 106, 66, '3', '2005-2020', 'Anthropology (Q1); Sociology and Political Science (Q2)'), (10783, 'Journal of Holistic Nursing', 15525724, 0.443, 'Q2', 40, 64, 2558, 166, 110, '2', '1983-2020', 'Nursing (miscellaneous) (Q2)'), (10784, 'Journal of Lasers in Medical Sciences', 22286721, 0.443, 'Q2', 21, 98, 3558, 382, 177, '15', '2010-2020', 'Dentistry (miscellaneous) (Q2); Dermatology (Q3); Nephrology (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3); Urology (Q3)'), (10785, 'Journal of Modern Transportation', 2095087, 0.443, 'Q2', 22, 0, 0, 202, 77, '1', '2011-2019', 'Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Transportation (Q3)'), (10786, 'Journal of Psychophysiology', 21512124, 0.443, 'Q3', 46, 28, 1930, 72, 59, '2', '1987-2020', 'Neuropsychology and Physiological Psychology (Q3); Neuroscience (miscellaneous) (Q3); Physiology (Q4)'), (10787, 'Miskolc Mathematical Notes', 17872405, 0.443, 'Q2', 17, 74, 1514, 209, 160, '50', '2010-2020', 'Control and Optimization (Q2); Algebra and Number Theory (Q3); Analysis (Q3); Discrete Mathematics and Combinatorics (Q3); Numerical Analysis (Q3)'), (10788, 'Multimedia Tools and Applications', 13807501, 0.443, 'Q1', 70, 1906, 80147, 13292, 4277, '16', '1995-2020', 'Media Technology (Q1); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Software (Q2)'), (10789, 'Phytotaxa', 11793163, 0.443, 'Q2', 36, 985, 36588, 2728, 2349, '41', '2010-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10790, 'Plant Protection Science', 12122580, 0.443, 'Q2', 21, 42, 1831, 170, 103, '31', '2007-2020', 'Agronomy and Crop Science (Q2); Soil Science (Q2)'), (10791, 'Polymer Crystallization', 25737619, 0.443, 'Q2', 9, 45, 2112, 144, 77, '2', '2020', 'Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2); Polymers and Plastics (Q2); Physical and Theoretical Chemistry (Q3)'), (10792, 'Qualitative Research in Psychology', 14780895, 0.443, 'Q3', 38, 60, 2820, 204, 100, '3', '2004-2020', 'Psychology (miscellaneous) (Q3)'), (10793, 'Reference and User Services Quarterly', 10949054, 0.443, 'Q2', 34, 0, 0, 67, 94, '2', '1997-2019', 'Information Systems (Q2); Library and Information Sciences (Q2)'), (10794, 'Revista de Historia Economica - Journal of Ib', 20413335, 0.443, 'Q1', 21, 38, 1992, 53, 48, '3', '1983-2020', 'History (Q1); Economics and Econometrics (Q3)'), (10795, 'Spanish Journal of Psychology', 19882904, 0.443, 'Q1', 43, 60, 2767, 322, 131, '3', '1998-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Psychology (miscellaneous) (Q3)'), (10796, 'Steel Construction', 18670520, 0.443, 'Q2', 8, 37, 666, 115, 108, '2', '2017-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)'), (10797, 'Vietnam Journal of Mathematics', 2305221, 0.443, 'Q2', 13, 87, 2141, 203, 151, '2', '2013-2020', 'Mathematics (miscellaneous) (Q2)'), (10798, 'British Journal of Psychotherapy', 17520118, 0.442, 'Q3', 17, 44, 1104, 43, 113, '2', '1984-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (10799, 'Chemical Engineering Communications', 986445, 0.442, 'Q2', 50, 223, 10364, 1000, 423, '3', '1973-1976, 1978-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)'), (10800, 'Chinese Journal of Traumatology - English Edi', 10081275, 0.442, 'Q3', 26, 78, 2262, 423, 222, '16', '2001-2020', 'Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (10801, 'Contemporary Southeast Asia', 129797, 0.442, 'Q1', 14, 10, 639, 84, 77, '37', '1980-1981, 1984-1985, 2006, 2012-2020', 'History (Q1); Development (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10802, 'Diagnostica', 121924, 0.442, 'Q3', 48, 24, 1057, 83, 65, '5', '1996-2020', 'Clinical Psychology (Q3)'), (10803, 'Eastern Mediterranean Health Journal', 10203397, 0.442, 'Q3', 47, 226, 5997, 519, 338, '19', '1996-2020', 'Medicine (miscellaneous) (Q3)'), (10804, 'Gayana - Botanica', 165301, 0.442, 'Q2', 16, 7, 220, 90, 85, '45', '1981-1982, 1984, 2002-2019', 'Ecology (Q2); Horticulture (Q2); Plant Science (Q2)'), (10805, 'Heron', 15744078, 0.442, 'Q2', 23, 0, 0, 34, 30, '16', '1970, 1972-1994, 1996-2019', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Materials Science (miscellaneous) (Q2)'), (10806, 'International Review of Law and Economics', 1448188, 0.442, 'Q1', 42, 47, 1724, 106, 110, '2', '1981-2020', 'Law (Q1); Finance (Q2); Economics and Econometrics (Q3)'), (10807, 'Journal of Loss and Trauma', 15325024, 0.442, 'Q2', 39, 87, 2533, 201, 148, '2', '1996-2020', 'Psychiatric Mental Health (Q2); Social Sciences (miscellaneous) (Q2); Psychiatry and Mental Health (Q3); Social Psychology (Q3)'), (10808, 'Journal of Marine Research', 15439542, 0.442, 'Q3', 66, 0, 0, 85, 64, '2', '1969-2015, 2017-2019', 'Oceanography (Q3)'), (10809, 'Journal of Quantitative Analysis in Sports', 15590410, 0.442, 'Q2', 17, 27, 600, 65, 50, '5', '2011-2020', 'Decision Sciences (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (10810, 'Journal of the American Helicopter Society', 28711, 0.442, 'Q2', 54, 34, 1000, 225, 122, '2', '1969-2020', 'Aerospace Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10811, 'Marine Geodesy', 1490419, 0.442, 'Q2', 47, 32, 1124, 153, 86, '3', '1977-2020', 'Oceanography (Q2)'), (10812, 'Military Medicine', 1930613, 0.442, 'Q3', 67, 548, 13326, 1386, 1066, '2', '1954-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10813, 'Molecular and Clinical Oncology', 20499450, 0.442, 'Q3', 7, 230, 6244, 191, 117, '3', '2016-2020', 'Oncology (Q3); Cancer Research (Q4)'), (10814, 'Physical Activity Review', 23005076, 0.442, 'Q2', 8, 26, 877, 101, 84, '17', '2017-2020', 'Education (Q2); Health (social science) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Orthopedics and Sports Medicine (Q3)'), (10815, 'Real-Time Systems', 9226443, 0.442, 'Q2', 56, 16, 473, 188, 70, '16', '1989-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Control and Optimization (Q3); Modeling'), (10816, 'Rodriguesia', 3706583, 0.442, 'Q2', 32, 135, 5602, 411, 419, '14', '1980-1981, 1984-1985, 1989, 1999-2020', 'Horticulture (Q2); Plant Science (Q2)'), (10817, 'Western Journal of Communication', 10570314, 0.442, 'Q1', 43, 51, 2857, 118, 105, '3', '1992-2020', 'Language and Linguistics (Q1); Communication (Q2)'), (10818, 'Zhongguo Tiedao Kexue/China Railway Science', 10014632, 0.442, 'Q2', 27, 112, 2069, 306, 334, '1', '2003-2020', 'Mechanical Engineering (Q2)'), (10819, 'Annales Mathematiques du Quebec', 21954763, 0.441, 'Q2', 9, 19, 398, 52, 52, '19', '2013-2020', 'Mathematics (miscellaneous) (Q2)'), (10820, 'Brazilian Journal of Probability and Statisti', 1030752, 0.441, 'Q3', 18, 49, 1476, 122, 116, '14', '2009-2020', 'Statistics and Probability (Q3)'), (10821, 'Bulletin of the Geological Society of Malaysi', 1266187, 0.441, 'Q2', 12, 30, 1232, 106, 83, '23', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (10822, 'European Journal of Development Research', 17439728, 0.441, 'Q2', 47, 104, 5716, 326, 164, '3', '1989-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (10823, 'European Journal of Industrial Engineering', 17515254, 0.441, 'Q2', 26, 30, 1380, 161, 96, '3', '2007-2015, 2017, 2020', 'Industrial and Manufacturing Engineering (Q2)'), (10824, 'Global Intellectual History', 23801883, 0.441, 'Q1', 4, 63, 3001, 29, 60, '3', '2016-2020', 'Cultural Studies (Q1); History (Q1); Arts and Humanities (miscellaneous) (Q2); Library and Information Sciences (Q2)'), (10825, 'Gynecology and Minimally Invasive Therapy', 22133089, 0.441, 'Q3', 12, 59, 906, 166, 133, '4', '2012-2020', 'Obstetrics and Gynecology (Q3)'), (10826, 'International Journal of American Linguistics', 207071, 0.441, 'Q1', 18, 25, 1007, 35, 71, '2', '1996-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (10827, 'Journal of Agricultural and Environmental Eth', 11877863, 0.441, 'Q1', 47, 30, 1720, 258, 148, '16', '1991-2020', 'History (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3)'), (10828, 'Journal of Artificial Organs', 14347229, 0.441, 'Q3', 39, 85, 1535, 302, 197, '6', '1998-2020', 'Biomaterials (Q3); Biomedical Engineering (Q3); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (10829, 'Journal of Echocardiography', 13490222, 0.441, 'Q3', 11, 65, 864, 126, 105, '6', '2003-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (10830, 'Management in Education', 17419883, 0.441, 'Q2', 17, 46, 1366, 98, 67, '3', '1987-2020', 'Education (Q2); Strategy and Management (Q2)'), (10831, 'Medical Hypotheses', 3069877, 0.441, 'Q3', 87, 816, 28666, 1452, 883, '2', '1975-2020', 'Medicine (miscellaneous) (Q3)'), (10832, 'Review of Contemporary Philosophy', 18415261, 0.441, 'Q1', 10, 10, 379, 67, 26, '2', '2013, 2015-2019', 'Philosophy (Q1)'), (10833, 'Revue d Epidemiologie et de Sante Publique', 17730627, 0.441, 'Q3', 39, 45, 1585, 190, 144, '8', '1976-2020', 'Public Health, Environmental and Occupational Health (Q3); Epidemiology (Q4)'), (10834, 'Sexuality and Culture', 10955143, 0.441, 'Q1', 28, 124, 6558, 311, 232, '2', '2005-2020', 'Cultural Studies (Q1); Gender Studies (Q2)'), (10835, 'Advances in Applied Clifford Algebras', 1887009, 0.44, 'Q3', 27, 70, 1709, 548, 372, '19', '2004-2020', 'Applied Mathematics (Q3)'), (10836, 'American Indian and Alaska Native Mental Heal', 15337731, 0.44, 'Q1', 24, 10, 389, 57, 49, '2', '1987-1990, 1992-2020', 'Anthropology (Q1); History (Q1); Education (Q2); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3)'), (10837, 'Anuario de Psicologia Juridica', 11330740, 0.44, 'Q1', 9, 12, 627, 52, 36, '12', '2013-2020', 'Law (Q1); Applied Psychology (Q3); Pathology and Forensic Medicine (Q3)'), (10838, 'Art and Perception', 22134905, 0.44, 'Q1', 9, 19, 866, 28, 25, '16', '2013-2020', 'History (Q1); Visual Arts and Performing Arts (Q1); Applied Psychology (Q3)'), (10839, 'Autonomic and Autacoid Pharmacology', 14748673, 0.44, 'Q3', 21, 0, 0, 10, 7, '3', '2002-2017', 'Pharmacology (Q3)'), (10840, 'Electrochemistry', 13443542, 0.44, 'Q3', 42, 114, 3309, 276, 201, '6', '1996-2020', 'Electrochemistry (Q3)'), (10841, 'Eurasian Economic Review', 1309422, 0.44, 'Q2', 11, 33, 1404, 136, 66, '19', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (10842, 'Geofluids', 14688115, 0.44, 'Q2', 56, 386, 16387, 1209, 586, '3', '2001-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (10843, 'Haseltonia', 10700048, 0.44, 'Q2', 12, 26, 724, 25, 35, '2', '2002, 2004-2010, 2012, 2014-2018, 2020', 'Plant Science (Q2)'), (10844, 'Informatics in Medicine Unlocked', 23529148, 0.44, 'Q3', 21, 208, 9529, 798, 217, '3', '2015-2020', 'Health Informatics (Q3)'), (10845, 'International Journal of Agile Systems and Ma', 17419174, 0.44, 'Q1', 21, 20, 1247, 133, 51, '19', '2020', 'Multidisciplinary (Q1); Computer Science (miscellaneous) (Q2); Decision Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Management Infor'), (10846, 'Journal of Bioactive and Compatible Polymers', 15308030, 0.44, 'Q2', 48, 37, 1697, 249, 119, '3', '1986-2020', 'Materials Chemistry (Q2); Polymers and Plastics (Q2); Bioengineering (Q3); Biomaterials (Q3)'), (10847, 'Journal of Cutaneous and Aesthetic Surgery', 9745157, 0.44, 'Q3', 13, 59, 875, 182, 132, '4', '2015-2020', 'Dermatology (Q3); Surgery (Q3)'), (10848, 'Journal of Geosciences (Czech Republic)', 18026222, 0.44, 'Q2', 30, 21, 937, 111, 60, '31', '2007-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2)'), (10849, 'Mechanics of Time-Dependent Materials', 13852000, 0.44, 'Q2', 44, 64, 2331, 247, 103, '16', '1997-2020', 'Aerospace Engineering (Q2); Chemical Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (10850, 'Pediatric Gastroenterology, Hepatology and Nu', 22348646, 0.44, 'Q3', 19, 54, 1929, 251, 161, '13', '2012-2020', 'Gastroenterology (Q3); Hepatology (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (10851, 'Russian Politics', 24518913, 0.44, 'Q1', 6, 20, 1089, 52, 71, '16', '2016-2019', 'Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (10852, 'Acta Microbiologica et Immunologica Hungarica', 12178950, 0.439, 'Q3', 28, 42, 1532, 281, 125, '50', '1994-2020', 'Medicine (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q4)'), (10853, 'Agricultural Economics (Czech Republic)', 139570, 0.439, 'Q2', 22, 58, 1734, 287, 166, '31', '2007-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)'), (10854, 'Arnold Mathematical Journal', 21996806, 0.439, 'Q2', 9, 38, 782, 84, 73, '19', '2015-2020', 'Mathematics (miscellaneous) (Q2)'), (10855, 'Astronomy Reports', 10637729, 0.439, 'Q3', 33, 93, 3721, 501, 308, '10', '1996-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (10856, 'Contemporary Educational Technology', 1309517, 0.439, 'Q2', 7, 32, 1281, 96, 48, '18', '2018-2020', 'Education (Q2); Management of Technology and Innovation (Q2)'), (10857, 'Enzyme Research', 20900414, 0.439, 'Q3', 39, 0, 0, 42, 16, '2', '2010-2019', 'Biochemistry (Q3); Molecular Biology (Q4)'), (10858, 'Journal of Agromedicine', 1059924, 0.439, 'Q3', 30, 98, 2772, 214, 128, '2', '1994-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (10859, 'Journal of International Migration and Integr', 14883473, 0.439, 'Q1', 26, 114, 6442, 268, 187, '16', '2004, 2007-2020', 'Anthropology (Q1); Cultural Studies (Q1); Demography (Q2)'), (10860, 'Journal of Statistical Theory and Practice', 15598616, 0.439, 'Q3', 17, 67, 1736, 128, 154, '2', '2007-2020', 'Statistics and Probability (Q3)'), (10861, 'Kaohsiung Journal of Medical Sciences', 1607551, 0.439, 'Q3', 36, 154, 3690, 667, 362, '37', '1996-2020', 'Medicine (miscellaneous) (Q3)'), (10862, 'Pure and Applied Chemistry', 334545, 0.439, 'Q2', 149, 142, 7072, 791, 409, '2', '1960-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2)'), (10863, 'Slavisticna Revija', 3506894, 0.439, 'Q1', 8, 44, 1283, 49, 132, '60', '2008-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (10864, 'Strabismus', 9273972, 0.439, 'Q3', 30, 41, 774, 106, 96, '3', '1993-2020', 'Ophthalmology (Q3)'), (10865, 'Tumu Gongcheng Xuebao/China Civil Engineering', 1000131, 0.439, 'Q1', 35, 250, 5659, 748, 652, '1', '1984-1989, 2006-2020', 'Architecture (Q1); Arts and Humanities (miscellaneous) (Q2); Building and Construction (Q2); Civil and Structural Engineering (Q2)'), (10866, 'ACM Transactions on the Web', 15591131, 0.438, 'Q2', 44, 18, 1309, 250, 71, '2', '2007-2020', 'Computer Networks and Communications (Q2)'), (10867, 'Acta Scientiarum - Agronomy', 18078621, 0.438, 'Q2', 28, 62, 2044, 218, 160, '14', '2008-2021', 'Agronomy and Crop Science (Q2)'), (10868, 'Anesthesiology and Pain Medicine', 22287531, 0.438, 'Q2', 26, 83, 2272, 327, 204, '16', '2011-2020', 'Anesthesiology and Pain Medicine (Q2)'), (10869, 'Arts Education Policy Review', 19404395, 0.438, 'Q1', 23, 45, 1848, 89, 64, '3', '1996-2020', 'Visual Arts and Performing Arts (Q1); Education (Q2)'), (10870, 'Biodiversity', 14888386, 0.438, 'Q2', 26, 28, 992, 81, 52, '3', '2000-2020', 'Ecology (Q2); Nature and Landscape Conservation (Q2); Global and Planetary Change (Q3)'), (10871, 'Diabetic Foot and Ankle', 2000625, 0.438, 'Q2', 19, 0, 0, 50, 18, '20', '2010-2019', 'Podiatry (Q2); Internal Medicine (Q3)'), (10872, 'HNO', 176192, 0.438, 'Q3', 36, 171, 3928, 447, 416, '5', '1948, 1953-2020', 'Otorhinolaryngology (Q3)'), (10873, 'Intelligent Buildings International', 17566932, 0.438, 'Q2', 20, 42, 1819, 122, 48, '3', '2009-2020', 'Building and Construction (Q2); Computer Science Applications (Q2)'), (10874, 'Journal of Agricultural and Urban Entomology', 15235475, 0.438, 'Q3', 28, 9, 313, 25, 20, '2', '1996-2010, 2012-2019', 'Insect Science (Q3)'), (10875, 'Journal of Cybersecurity', 20572093, 0.438, 'Q1', 16, 69, 3654, 176, 39, '3', '2015-2020', 'Law (Q1); Computer Networks and Communications (Q2); Computer Science Applications (Q2); Computer Science (miscellaneous) (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Political Scie'), (10876, 'Journal of Environmental Engineering, ASCE', 7339372, 0.438, 'Q2', 95, 215, 10074, 776, 431, '2', '1973-2020', 'Civil and Structural Engineering (Q2); Environmental Science (miscellaneous) (Q2); Environmental Chemistry (Q3); Environmental Engineering (Q3)'), (10877, 'Journal of Health Care Chaplaincy', 15286916, 0.438, 'Q1', 19, 37, 1323, 68, 34, '2', '1987-1994, 1997-2002, 2004, 2008, 2010-2020', 'Religious Studies (Q1); Health (social science) (Q2); Clinical Psychology (Q3)'), (10878, 'Paddy and Water Environment', 16112490, 0.438, 'Q2', 33, 55, 2668, 366, 230, '5', '2005-2020', 'Agronomy and Crop Science (Q2); Water Science and Technology (Q2); Environmental Engineering (Q3)'), (10879, 'Phycological Research', 13220829, 0.438, 'Q2', 44, 38, 1556, 203, 114, '2', '1995, 1997-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Plant Science (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Physiology (Q4)'), (10880, 'Quarterly Journal of Engineering Geology and ', 14709236, 0.438, 'Q2', 42, 36, 1399, 199, 147, '3', '2001-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (10881, 'SA Journal of Industrial Psychology', 20710763, 0.438, 'Q3', 21, 31, 1978, 144, 81, '27', '2011-2020', 'Applied Psychology (Q3); Social Psychology (Q3)'), (10882, 'Social Epistemology', 2691728, 0.438, 'Q1', 29, 60, 2474, 127, 112, '3', '1987-2020', 'Philosophy (Q1); Social Sciences (miscellaneous) (Q2)'), (10883, 'Annales Medico-Psychologiques', 34487, 0.437, 'Q2', 21, 187, 5605, 206, 435, '8', '1946-1947, 1949-2020', 'Arts and Humanities (miscellaneous) (Q2); Applied Psychology (Q3); Psychiatry and Mental Health (Q3)'), (10884, 'Belgian Journal of Zoology', 7776276, 0.437, 'Q2', 30, 9, 854, 43, 27, '24', '1990-2020', 'Animal Science and Zoology (Q2)'), (10885, 'Canadian Journal of Behavioural Science', 8400, 0.437, 'Q3', 53, 39, 1407, 131, 84, '2', '1973-1978, 1981, 1990, 1992-1993, 1996-2020', 'Psychology (miscellaneous) (Q3)'), (10886, 'Cardiology Research and Practice', 20900597, 0.437, 'Q3', 35, 116, 4501, 245, 147, '2', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (10887, 'ChemistrySelect', 23656549, 0.437, 'Q2', 34, 1775, 90959, 11175, 5645, '3', '2016-2020', 'Chemistry (miscellaneous) (Q2)'), (10888, 'Ciencia e Agrotecnologia', 14137054, 0.437, 'Q2', 30, 58, 2275, 331, 177, '14', '2007-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Food Science (Q2); Soil Science (Q2); Veterinary (miscellaneous) (Q2)'), (10889, 'Corpus Linguistics and Linguistic Theory', 16137027, 0.437, 'Q1', 23, 28, 1555, 74, 43, '5', '2005-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (10890, 'Environmental Justice', 19394071, 0.437, 'Q2', 23, 25, 937, 109, 91, '2', '2009-2020', 'Geography, Planning and Development (Q2); Health, Toxicology and Mutagenesis (Q3); Management, Monitoring, Policy and Law (Q3)'), (10891, 'European Journal of Training and Development', 20469012, 0.437, 'Q2', 57, 75, 5865, 300, 133, '3', '2012-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Education (Q2); Organizational Behavior and Human Resource Management (Q2)'), (10892, 'Inorganica Chimica Acta', 18733255, 0.437, 'Q2', 99, 653, 36160, 4503, 1917, '16', '1967-2021', 'Materials Chemistry (Q2); Inorganic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (10893, 'International Journal of Engineering Pedagogy', 21924880, 0.437, 'Q2', 7, 48, 1263, 175, 95, '5', '2018-2020', 'Education (Q2); Engineering (miscellaneous) (Q2)'), (10894, 'International Journal of Turbomachinery, Prop', 2504186, 0.437, 'Q2', 8, 25, 679, 113, 84, '19', '2016-2020', 'Aerospace Engineering (Q2); Energy Engineering and Power Technology (Q2); Mechanical Engineering (Q2)'), (10895, 'Journal of Aerospace Information Systems', 23273097, 0.437, 'Q2', 33, 63, 2260, 271, 130, '2', '2013-2020', 'Aerospace Engineering (Q2); Computer Science Applications (Q2); Electrical and Electronic Engineering (Q2)'), (10896, 'Journal of Global Infectious Diseases', 974777, 0.437, 'Q3', 25, 50, 1720, 180, 94, '4', '2011-2020', 'Infectious Diseases (Q3)'), (10897, 'Journal of Heuristics', 13811231, 0.437, 'Q2', 67, 44, 1470, 222, 93, '16', '1995-2020', 'Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Information Systems (Q2); Management Science and Operations Research (Q2); Software (Q2); Control and Optimization (Q3)'), (10898, 'Journal of Public Child Welfare', 15548732, 0.437, 'Q2', 21, 58, 2742, 121, 87, '3', '2006-2020', 'Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3)'), (10899, 'Journal of Volcanology and Seismology', 7420463, 0.437, 'Q2', 17, 33, 1099, 78, 105, '10', '2007-2020', 'Geology (Q2); Geophysics (Q2); Geochemistry and Petrology (Q3)'), (10900, 'Journal of Web Librarianship', 19322909, 0.437, 'Q2', 17, 7, 179, 37, 44, '2', '2007-2020', 'Computer Science Applications (Q2); Library and Information Sciences (Q2)'), (10901, 'Journal of Workplace Behavioral Health', 15555259, 0.437, 'Q3', 17, 21, 988, 72, 47, '2', '2005-2020', 'Applied Psychology (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10902, 'Leprosy Review', 3057518, 0.437, 'Q3', 43, 48, 1134, 101, 140, '3', '1945-1948, 1950-2020', 'Dermatology (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)'), (10903, 'Lodz Papers in Pragmatics', 18956106, 0.437, 'Q1', 7, 13, 550, 48, 33, '5', '2015-2018, 2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2)'), (10904, 'Petrophysics', 15299074, 0.437, 'Q2', 36, 36, 1032, 246, 146, '2', '2000-2012, 2017-2019', 'Energy (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q2)'), (10905, 'Polymer Bulletin', 14362449, 0.437, 'Q2', 60, 636, 28367, 2353, 1002, '5', '1978-2020', 'Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Polymers and Plastics (Q2); Condensed Matter Physics (Q3)'), (10906, 'Progress in Electromagnetics Research', 10704698, 0.437, 'Q2', 89, 30, 1231, 198, 88, '2', '2000-2020', 'Electrical and Electronic Engineering (Q2); Condensed Matter Physics (Q3); Radiation (Q3)'), (10907, 'Saudi Medical Journal', 16583175, 0.437, 'Q3', 51, 197, 4904, 834, 524, '29', '1979-2020', 'Medicine (miscellaneous) (Q3)'), (10908, 'Sign Language Studies', 15336263, 0.437, 'Q1', 22, 30, 1007, 40, 57, '2', '2002-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (10909, 'Software - Practice and Experience', 1097024, 0.437, 'Q2', 70, 143, 6896, 907, 277, '3', '1971-2020', 'Software (Q2)'), (10910, 'Transport', 16484142, 0.437, 'Q2', 31, 50, 2064, 414, 221, '69', '1980-1992, 2002-2020', 'Automotive Engineering (Q2); Mechanical Engineering (Q2)'), (10911, 'Water and Environment Journal', 17476585, 0.437, 'Q3', 37, 187, 8137, 383, 199, '2', '1987-2020', 'Environmental Engineering (Q3); Management, Monitoring, Policy and Law (Q3); Pollution (Q3); Water Science and Technology (Q3)'), (10912, 'ACM Transactions on Autonomous and Adaptive S', 15564665, 0.436, 'Q2', 41, 7, 394, 179, 56, '2', '2006-2020', 'Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2); Software (Q2)'), (10913, 'Acta Ornithologica', 16454, 0.436, 'Q2', 30, 36, 1933, 72, 51, '17', '1981, 1983-1989, 1991-2018, 2020', 'Animal Science and Zoology (Q2)'), (10914, 'BMJ Open Quality', 23996641, 0.436, 'Q2', 8, 160, 2917, 331, 292, '3', '2018-2020', 'Leadership and Management (Q2); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)'), (10915, 'Communication and the Public', 20570481, 0.436, 'Q2', 9, 23, 582, 74, 71, '2', '2016-2020', 'Communication (Q2)'), (10916, 'Critique of Anthropology', 14603721, 0.436, 'Q1', 44, 28, 1084, 80, 68, '3', '1974-1981, 1985-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q2)'), (10917, 'Deutsches A&amp;#x0308;rzteblatt internationa', 18660452, 0.436, 'Q3', 60, 775, 4933, 1918, 1277, '5', '2009-2020', 'Medicine (miscellaneous) (Q3)'), (10918, 'Disease-a-Month', 115029, 0.436, 'Q3', 38, 60, 2727, 192, 90, '2', '1954-2020', 'Medicine (miscellaneous) (Q3)'), (10919, 'Duke Law Journal', 127086, 0.436, 'Q1', 42, 31, 2220, 112, 97, '2', '1978, 1980-1981, 1983-1986, 1988-1994, 1996-2020', 'Law (Q1)'), (10920, 'European Journal of Futures Research', 21952248, 0.436, 'Q2', 15, 8, 359, 90, 47, '5', '2017-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Tourism, Leisure and'), (10921, 'Hydrological Research Letters', 18823416, 0.436, 'Q2', 10, 23, 595, 65, 44, '6', '2015-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Water Science and Technology (Q3)'), (10922, 'Informatica', 8684952, 0.436, 'Q2', 39, 39, 1738, 299, 106, '16', '1990-2020', 'Information Systems (Q2); Applied Mathematics (Q3)'), (10923, 'International Journal of Hematology-Oncology ', 17351243, 0.436, 'Q3', 16, 32, 975, 196, 125, '15', '2009-2020', 'Hematology (Q3); Oncology (Q3); Transplantation (Q3)'), (10924, 'Journal of Asia-Pacific Entomology', 12268615, 0.436, 'Q3', 35, 187, 7547, 782, 567, '16', '1998-2020', 'Insect Science (Q3)'), (10925, 'Journal of Chemistry', 20909071, 0.436, 'Q2', 50, 408, 16263, 2051, 789, '2', '2013-2020', 'Chemistry (miscellaneous) (Q2)'), (10926, 'Journal of Child and Adolescent Mental Health', 17280591, 0.436, 'Q3', 17, 12, 524, 79, 54, '3', '2005-2020', 'Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3)'), (10927, 'Journal of Iron and Steel Research Internatio', 22103988, 0.436, 'Q2', 41, 174, 5536, 739, 463, '37', '1996-2020', 'Materials Chemistry (Q2); Mechanics of Materials (Q2); Metals and Alloys (Q2)'), (10928, 'Journal of the History of Biology', 15730387, 0.436, 'Q1', 30, 27, 1837, 56, 72, '16', '1968-2020', 'History and Philosophy of Science (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2)'), (10929, 'Landscape Online', 18651542, 0.436, 'Q2', 14, 8, 493, 50, 28, '5', '2007-2020', 'Nature and Landscape Conservation (Q2); Ecology (Q3)'), (10930, 'Leadership in Health Services', 17511879, 0.436, 'Q2', 23, 28, 1347, 202, 118, '3', '2007-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Health Policy (Q3)'), (10931, 'Mammalia', 18641547, 0.436, 'Q2', 36, 61, 2803, 252, 254, '5', '1936-1937, 1939-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10932, 'Marine Biodiversity Records', 17552672, 0.436, 'Q3', 17, 11, 662, 105, 77, '2', '2011-2020', 'Aquatic Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Oceanography (Q3)'), (10933, 'Ocean Systems Engineering', 20936702, 0.436, 'Q2', 7, 12, 384, 59, 64, '13', '2017-2020', 'Automotive Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2); Ocean Engineering (Q2); Modeling and Simulation (Q3); Water Science and Technology (Q3)'), (10934, 'Polish Archives of Internal Medicine', 323772, 0.436, 'Q3', 35, 251, 4830, 621, 352, '17', '1953-2020', 'Internal Medicine (Q3)'), (10935, 'Urban Design International', 13575317, 0.436, 'Q2', 30, 37, 2015, 101, 60, '3', '1996-2020', 'Geography, Planning and Development (Q2); Urban Studies (Q2)'), (10936, 'Advanced Steel Construction', 1816112, 0.435, 'Q2', 23, 38, 1034, 142, 105, '1', '2005-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q2)'), (10937, 'Applied Sciences (Switzerland)', 20763417, 0.435, 'Q2', 52, 9082, 406459, 29319, 9308, '19', '2011, 2015-2020', 'Computer Science Applications (Q2); Engineering (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q2); Instrumentation (Q2); Materials Science (miscellaneous) (Q2); Process Chemistry and Techno'), (10938, 'Australasian Emergency Care', 25891375, 0.435, 'Q2', 25, 61, 2222, 163, 83, '11', '2018-2020', 'Emergency Nursing (Q2)'), (10939, 'Bioelectromagnetics', 1978462, 0.435, 'Q3', 81, 61, 2257, 354, 155, '2', '1980-2020', 'Biophysics (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Physiology (Q4)'), (10940, 'Energy Exploration and Exploitation', 1445987, 0.435, 'Q2', 30, 134, 6077, 492, 223, '2', '1983-1985, 1987-1988, 1995-2020', 'Energy Engineering and Power Technology (Q2); Nuclear Energy and Engineering (Q2); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (10941, 'Eurasia Journal of Mathematics, Science and T', 13058223, 0.435, 'Q2', 38, 107, 5290, 1744, 1035, '18', '2006-2020', 'Education (Q2); Applied Mathematics (Q3)'), (10942, 'Facial Plastic Surgery', 10988793, 0.435, 'Q3', 42, 128, 3423, 304, 267, '2', '1983-2020', 'Surgery (Q3)'), (10943, 'Human-Wildlife Interactions', 21553858, 0.435, 'Q2', 15, 43, 1823, 101, 85, '2', '2011-2020', 'Nature and Landscape Conservation (Q2); Ecology (Q3)'), (10944, 'International Journal of Manpower', 1437720, 0.435, 'Q2', 58, 81, 4831, 479, 249, '3', '1970, 1980-2020', 'Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)'), (10945, 'International Journal of Polymeric Materials ', 1563535, 0.435, 'Q2', 38, 204, 12476, 826, 340, '3', '1971-2020', 'Chemical Engineering (miscellaneous) (Q2); Polymers and Plastics (Q2); Analytical Chemistry (Q3)'), (10946, 'International Review of Victimology', 2697580, 0.435, 'Q1', 28, 21, 1397, 65, 56, '2', '1990-2010, 2012-2020', 'Law (Q1); Sociology and Political Science (Q2)'), (10947, 'Journal of Accounting in Emerging Economies', 20421168, 0.435, 'Q2', 7, 27, 2123, 148, 61, '3', '2018-2020', 'Accounting (Q2); Development (Q2); Sociology and Political Science (Q2)'), (10948, 'Journal of Adult Development', 10680667, 0.435, 'Q3', 42, 36, 2182, 136, 82, '2', '1994-2020', 'Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q3); Life-span and Life-course Studies (Q3)'), (10949, 'Journal of Cognition and Culture', 15677095, 0.435, 'Q1', 40, 18, 932, 69, 70, '16', '2001-2019', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Experimental and Cognitive Psychology (Q3); Social Psychology (Q3)'), (10950, 'Journal of the American Animal Hospital Assoc', 15473317, 0.435, 'Q2', 65, 43, 0, 180, 177, '2', '1973-2020', 'Small Animals (Q2)'), (10951, 'New Astronomy', 13841092, 0.435, 'Q2', 72, 78, 3915, 465, 277, '16', '1996-2021', 'Instrumentation (Q2); Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (10952, 'Proceedings of the Institution of Mechanical ', 20413068, 0.435, 'Q2', 37, 56, 1938, 292, 149, '3', '1999-2020', 'Mechanical Engineering (Q2); Condensed Matter Physics (Q3)'), (10953, 'Proceedings of the Steklov Institute of Mathe', 815438, 0.435, 'Q2', 23, 110, 2566, 285, 438, '10', '2006-2020', 'Mathematics (miscellaneous) (Q2)'), (10954, 'Seminars in Musculoskeletal Radiology', 1098898, 0.435, 'Q3', 45, 68, 4046, 241, 160, '2', '1999-2020', 'Orthopedics and Sports Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (10955, 'Technical Communication Quarterly', 15427625, 0.435, 'Q2', 31, 39, 1805, 100, 71, '2', '1992-1995, 1998-2000, 2005-2020', 'Communication (Q2); Education (Q2)'), (10956, 'Tel Aviv', 3344355, 0.435, 'Q1', 26, 15, 1038, 40, 43, '3', '1974-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)'), (10957, 'Transactions on Embedded Computing Systems', 15583465, 0.435, 'Q2', 56, 53, 2561, 947, 342, '2', '2002-2020', 'Hardware and Architecture (Q2); Software (Q2)'), (10958, 'Asia Europe Journal', 16102932, 0.434, 'Q2', 17, 37, 1565, 113, 81, '5', '2003-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (10959, 'Australian and New Zealand Journal of Statist', 1467842, 0.434, 'Q3', 41, 26, 702, 91, 74, '3', '1998-2020', 'Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (10960, 'Critical Review', 8913811, 0.434, 'Q1', 26, 6, 175, 48, 70, '3', '1986-2000, 2003, 2005-2019', 'Literature and Literary Theory (Q1); Political Science and International Relations (Q2)'), (10961, 'E-Learning', 20427530, 0.434, 'Q2', 17, 39, 2052, 124, 65, '3', '2009-2020', 'Computer Science Applications (Q2); Education (Q2)'), (10962, 'Future Internet', 19995903, 0.434, 'Q2', 28, 231, 11092, 1694, 467, '19', '2012-2020', 'Computer Networks and Communications (Q2)'), (10963, 'General Thoracic and Cardiovascular Surgery', 18636705, 0.434, 'Q3', 37, 279, 4769, 518, 435, '6', '2007-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3); Surgery (Q3)'), (10964, 'Green Processing and Synthesis', 21919550, 0.434, 'Q2', 23, 67, 3441, 596, 229, '5', '2012-2020', 'Chemical Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Environmental Chemistry (Q3); Fuel Technology (Q3); Health, Toxicology and Mutagenesis (Q3); Renewable Energy,'), (10965, 'HEC Forum', 9562737, 0.434, 'Q2', 22, 46, 1699, 117, 72, '16', '1989-2020', 'Health (social science) (Q2); Issues, Ethics and Legal Aspects (Q2); Health Policy (Q3); Medicine (miscellaneous) (Q3)'), (10966, 'Human Resource Development International', 13678868, 0.434, 'Q2', 49, 57, 3198, 155, 80, '3', '1998-2020', 'Organizational Behavior and Human Resource Management (Q2)'), (10967, 'IET Biometrics', 20474938, 0.434, 'Q2', 28, 32, 1665, 579, 158, '3', '2012-2020', 'Computer Vision and Pattern Recognition (Q2); Signal Processing (Q2); Software (Q2)'), (10968, 'Indian Journal of Orthopaedics', 19983727, 0.434, 'Q3', 33, 258, 6319, 408, 304, '4', '1974-1982, 2007-2020', 'Orthopedics and Sports Medicine (Q3)'), (10969, 'International Journal of Technology', 20869614, 0.434, 'Q2', 15, 156, 4077, 716, 499, '21', '2010-2020', 'Engineering (miscellaneous) (Q2); Management of Technology and Innovation (Q2); Strategy and Management (Q2)'), (10970, 'Journal of Modelling in Management', 17465672, 0.434, 'Q2', 29, 89, 5881, 345, 143, '3', '2006-2020', 'Management Science and Operations Research (Q2); Strategy and Management (Q2); Decision Sciences (miscellaneous) (Q3)'), (10971, 'Journal of Sensors and Sensor Systems', 21948771, 0.434, 'Q2', 18, 45, 1057, 293, 132, '5', '2012-2020', 'Electrical and Electronic Engineering (Q2); Instrumentation (Q2)'), (10972, 'Laser and Particle Beams', 1469803, 0.434, 'Q2', 52, 39, 1347, 269, 211, '3', '1983-2020', 'Electrical and Electronic Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3)'), (10973, 'Nuclear receptor signaling', 15507629, 0.434, 'Q3', 33, 0, 0, 9, 3, '2', '2007-2016, 2018', 'Medicine (miscellaneous) (Q3)'), (10974, 'Oral Radiology', 16139674, 0.434, 'Q3', 16, 79, 2122, 139, 121, '6', '1985-2020', 'Dentistry (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (10975, 'Transportation Planning and Technology', 10290354, 0.434, 'Q2', 42, 49, 1541, 227, 151, '3', '1972-2020', 'Geography, Planning and Development (Q2); Transportation (Q3)'), (10976, 'Advances in Geosciences', 16807340, 0.433, 'Q2', 39, 55, 2044, 177, 100, '5', '2003, 2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Space and Planetary Science (Q3)'), (10977, 'Annals of African Medicine', 15963519, 0.433, 'Q3', 26, 50, 1315, 175, 110, '4', '2005-2020', 'Medicine (miscellaneous) (Q3)'), (10978, 'Clinical and Experimental Emergency Medicine', 23834625, 0.433, 'Q2', 7, 51, 1074, 132, 91, '13', '2018-2020', 'Emergency Medicine (Q2); Emergency Nursing (Q2)'), (10979, 'Coupled Systems Mechanics', 22342184, 0.433, 'Q2', 9, 23, 909, 188, 102, '13', '2017-2020', 'Civil and Structural Engineering (Q2); Mechanics of Materials (Q2)'), (10980, 'Critical Perspectives on International Busine', 17422043, 0.433, 'Q2', 27, 22, 1867, 117, 84, '3', '2005-2020', 'Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2)'), (10981, 'Drug Research', 21949379, 0.433, 'Q3', 63, 92, 2319, 603, 291, '5', '1972, 2013-2020', 'Drug Discovery (Q3); Medicine (miscellaneous) (Q3)'), (10982, 'Education for Information', 18758649, 0.433, 'Q2', 19, 38, 1011, 101, 69, '16', '1983-2020', 'Education (Q2); Information Systems (Q2); Library and Information Sciences (Q2)'), (10983, 'EMS Surveys in Mathematical Sciences', 2308216, 0.433, 'Q2', 1, 0, 0, 14, 5, '5', '2019', 'Mathematics (miscellaneous) (Q2)'), (10984, 'High Temperature', 18151, 0.433, 'Q2', 33, 115, 3550, 675, 426, '10', '1968-1990, 1996-2020', 'Engineering (miscellaneous) (Q2); Condensed Matter Physics (Q3)'), (10985, 'IET Wireless Sensor Systems', 20436386, 0.433, 'Q2', 27, 37, 1363, 342, 117, '3', '2011-2020', 'Industrial and Manufacturing Engineering (Q2)'), (10986, 'International Journal of Emerging Markets', 17468809, 0.433, 'Q2', 30, 133, 10853, 643, 249, '3', '2006-2020', 'Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2)'), (10987, 'International Journal of Modern Physics E', 17936608, 0.433, 'Q2', 58, 122, 6965, 515, 368, '37', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q2); Nuclear and High Energy Physics (Q3)'), (10988, 'International Labour Review', 207780, 0.433, 'Q2', 46, 22, 1182, 113, 78, '2', '1945-1948, 1973-2020', 'Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2); Strategy and Management (Q2)'), (10989, 'Limnology and Oceanography Bulletin', 1539607, 0.433, 'Q3', 10, 43, 186, 47, 31, '2', '2007-2020', 'Aquatic Science (Q3); Oceanography (Q3); Water Science and Technology (Q3)'), (10990, 'Multimodal Technologies and Interaction', 24144088, 0.433, 'Q2', 14, 92, 4873, 612, 176, '19', '2017-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2); Human-Computer Interaction (Q2); Neuroscience (miscellaneous) (Q3)'), (10991, 'Surgical Neurology International', 21527806, 0.433, 'Q3', 34, 409, 6909, 616, 465, '4', '2011-2020', 'Neurology (clinical) (Q3); Surgery (Q3)'), (10992, 'Acta Technologica Agriculturae', 13352555, 0.432, 'Q2', 8, 32, 818, 90, 76, '17', '2015-2020', 'Agronomy and Crop Science (Q2); Mechanical Engineering (Q2); Waste Management and Disposal (Q3)'), (10993, 'American Journal of Ophthalmology Case Report', 24519936, 0.432, 'Q3', 10, 415, 6255, 557, 502, '2', '2016-2020', 'Ophthalmology (Q3)'), (10994, 'Australian Mammalogy', 18367402, 0.432, 'Q2', 24, 66, 2845, 164, 134, '11', '2000-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (10995, 'Autonomous Agents and Multi-Agent Systems', 15737454, 0.432, 'Q2', 72, 55, 2891, 339, 100, '16', '1998-2020', 'Artificial Intelligence (Q2)'), (10996, 'Election Law Journal: Rules, Politics, and Po', 15578062, 0.432, 'Q1', 9, 31, 1850, 122, 86, '2', '2016-2020', 'Law (Q1)'), (10997, 'European Journal of Probation', 20662203, 0.432, 'Q1', 18, 17, 976, 38, 36, '3', '2009-2020', 'Law (Q1)'), (10998, 'Humboldt Journal of Social Relations', 1604341, 0.432, 'Q2', 11, 0, 0, 34, 26, '2', '1980, 1989, 1999, 2005-2006, 2009-2010, 2012-2017', 'Sociology and Political Science (Q2)'), (10999, 'International Journal of Intelligent Robotics', 23665971, 0.432, 'Q2', 13, 40, 1279, 241, 101, '37', '2017-2020', 'Artificial Intelligence (Q2); Computer Science Applications (Q2)'), (11000, 'International Journal of Surgical Oncology', 20901410, 0.432, 'Q3', 22, 10, 297, 48, 24, '2', '2012-2020', 'Oncology (Q3); Surgery (Q3)'), (11001, 'International Journal of Toxicology', 10915818, 0.432, 'Q3', 58, 64, 2751, 270, 159, '2', '1982-2020', 'Toxicology (Q3)'), (11002, 'Journal of AOAC International', 10603271, 0.432, 'Q2', 87, 97, 2706, 1078, 737, '2', '1993-2020', 'Agronomy and Crop Science (Q2); Food Science (Q2); Analytical Chemistry (Q3); Environmental Chemistry (Q3); Pharmacology (Q3)'), (11003, 'Journal of Community Practice', 15433706, 0.432, 'Q2', 32, 32, 1043, 95, 82, '2', '1994-2020', 'Development (Q2); Public Administration (Q2); Sociology and Political Science (Q2)'), (11004, 'Journal of Labelled Compounds and Radiopharma', 3624803, 0.432, 'Q3', 47, 63, 2037, 396, 269, '3', '1976-2020', 'Analytical Chemistry (Q3); Biochemistry (Q3); Drug Discovery (Q3); Organic Chemistry (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Spectroscopy (Q3)'), (11005, 'Journal of Pediatric Orthopaedics Part B', 14735865, 0.432, 'Q3', 52, 119, 2745, 315, 291, '2', '1989, 1992-2020', 'Orthopedics and Sports Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (11006, 'Labor History', 23656, 0.432, 'Q1', 20, 46, 2453, 76, 133, '3', '1960-2020', 'History (Q1); Organizational Behavior and Human Resource Management (Q2)'), (11007, 'Management and Organizational History', 17449359, 0.432, 'Q1', 22, 14, 950, 71, 55, '3', '2006-2020', 'History (Q1); Business and International Management (Q2); Strategy and Management (Q2)'), (11008, 'NASSP Bulletin', 19301405, 0.432, 'Q2', 25, 15, 739, 47, 47, '3', '1917-1921, 1926-2020', 'Education (Q2)'), (11009, 'North American Journal of Aquaculture', 15222055, 0.432, 'Q3', 41, 43, 1860, 197, 126, '2', '1999-2020', 'Aquatic Science (Q3)'), (11010, 'Protein and Peptide Letters', 9298665, 0.432, 'Q3', 58, 134, 7724, 621, 345, '52', '1994-2020', 'Biochemistry (Q3); Medicine (miscellaneous) (Q3); Structural Biology (Q4)'), (11011, 'Revista Argentina de Microbiologia', 3257541, 0.432, 'Q3', 26, 76, 1943, 322, 191, '12', '1979-2020', 'Medicine (miscellaneous) (Q3); Microbiology (Q3); Microbiology (medical) (Q3)'), (11012, 'Revista Brasileira de Farmacognosia', 102695, 0.432, 'Q2', 46, 77, 2370, 713, 321, '14', '2007-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)'), (11013, 'Soil Science Annual', 23004975, 0.432, 'Q2', 12, 22, 911, 105, 81, '17', '2012-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Soil Science (Q2)'), (11014, 'Sports Engineering', 14602687, 0.432, 'Q2', 22, 24, 882, 136, 98, '2', '2009-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q2); Biomedical Engineering (Q3); Modeling and Simulation (Q3); Orthopedics and Sports Me'), (11015, 'Visual Communication', 14703572, 0.432, 'Q1', 35, 40, 1787, 94, 88, '3', '2002-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q2)'), (11016, 'Applied and Environmental Soil Science', 16877667, 0.431, 'Q2', 23, 35, 1741, 96, 49, '2', '2012-2020', 'Earth-Surface Processes (Q2); Soil Science (Q2)'), (11017, 'Early Years', 14724421, 0.431, 'Q2', 31, 62, 2658, 139, 103, '2', '1980-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (11018, 'Fuzzy Information and Engineering', 16168658, 0.431, 'Q2', 14, 21, 796, 108, 62, '3', '2014-2018, 2020', 'Artificial Intelligence (Q2); Control and Systems Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Information Systems (Q2); Management Science and Operations Research (Q2); Applied Ma'), (11019, 'International Journal of Management in Educat', 17503868, 0.431, 'Q2', 11, 32, 1780, 120, 65, '19', '2007, 2012-2014, 2020', 'Business, Management and Accounting (miscellaneous) (Q2); Education (Q2)'), (11020, 'International Journal of Plant Production', 17358043, 0.431, 'Q2', 28, 54, 2615, 176, 98, '19', '2008-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2)'), (11021, 'International Ophthalmology Clinics', 15369617, 0.431, 'Q3', 41, 46, 2166, 162, 142, '2', '1961-2020', 'Ophthalmology (Q3)'), (11022, 'Journal de Chirurgie Viscerale', 1878786, 0.431, 'Q3', 19, 0, 0, 23, 11, '8', '2010-2017', 'Surgery (Q3)'), (11023, 'Journal of Latin American Studies', 22216, 0.431, 'Q2', 44, 27, 1674, 56, 73, '3', '1969-2020', 'Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)'), (11024, 'Journal of Swine Health and Production', 1537209, 0.431, 'Q2', 35, 29, 252, 73, 75, '2', '1996-2020', 'Animal Science and Zoology (Q2); Food Animals (Q3)'), (11025, 'Journal of the Brazilian Society of Mechanica', 16785878, 0.431, 'Q2', 40, 624, 24227, 3587, 1532, '5', '2003-2020', 'Aerospace Engineering (Q2); Automotive Engineering (Q2); Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Applied Mathematics (Q3)'), (11026, 'NAD Nordic Studies on Alcohol and Drugs', 3587024, 0.431, 'Q2', 17, 46, 1938, 152, 107, '2', '1989-1994, 1996-2020', 'Health (social science) (Q2); Health Policy (Q3)'), (11027, 'Photomedicine and Laser Surgery', 15495418, 0.431, 'Q3', 84, 0, 0, 501, 196, '2', '2004-2018', 'Biomedical Engineering (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11028, 'Revista Brasileira de Terapia Intensiva', 19824335, 0.431, 'Q2', 19, 90, 1673, 330, 194, '14', '2012-2020', 'Critical Care and Intensive Care Medicine (Q2); Medicine (miscellaneous) (Q3)'), (11029, 'Theoretical Chemistry Accounts', 1432881, 0.431, 'Q3', 108, 183, 9899, 719, 436, '2', '1996-2020', 'Physical and Theoretical Chemistry (Q3)'), (11030, 'Chirality', 1520636, 0.43, 'Q3', 77, 130, 5093, 696, 316, '2', '1989-2020', 'Analytical Chemistry (Q3); Catalysis (Q3); Drug Discovery (Q3); Organic Chemistry (Q3); Pharmacology (Q3); Spectroscopy (Q3)'), (11031, 'Drugs - Real World Outcomes', 21991154, 0.43, 'Q3', 13, 41, 1282, 118, 67, '19', '2014-2020', 'Pharmacology (medical) (Q3)'), (11032, 'Erwerbs-Obstbau', 140309, 0.43, 'Q2', 15, 71, 2298, 167, 149, '5', '1983, 1996-2020', 'Horticulture (Q2)'), (11033, 'Folia Cryptogamica Estonica', 17367786, 0.43, 'Q2', 13, 11, 589, 53, 45, '71', '2009-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (11034, 'Humor', 16133722, 0.43, 'Q1', 43, 27, 1328, 66, 84, '5', '1988-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Sociology and Political Science (Q2); Psychology (miscellaneous) (Q3)'), (11035, 'Illinois Journal of Mathematics', 192082, 0.43, 'Q2', 40, 28, 712, 75, 64, '2', '1957-2020', 'Mathematics (miscellaneous) (Q2)'), (11036, 'International Journal for Multiscale Computat', 15431649, 0.43, 'Q2', 28, 32, 1323, 139, 87, '2', '2006-2020', 'Computational Mechanics (Q2); Computer Networks and Communications (Q2); Control and Systems Engineering (Q2)'), (11037, 'International Journal of Strategic Property M', 1648715, 0.43, 'Q2', 30, 28, 1603, 257, 110, '69', '2004-2020', 'Strategy and Management (Q2)'), (11038, 'Journal of Dynamic Behavior of Materials', 21997446, 0.43, 'Q2', 18, 46, 2073, 234, 127, '19', '2015-2020', 'Materials Science (miscellaneous) (Q2); Mechanics of Materials (Q2)'), (11039, 'Journal of Infection Prevention', 17571774, 0.43, 'Q2', 20, 47, 896, 134, 101, '3', '2015-2020', 'Advanced and Specialized Nursing (Q2); Health Policy (Q3); Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11040, 'Journal of Information Technology in Construc', 14006529, 0.43, 'Q2', 45, 31, 1662, 168, 67, '20', '1995-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Computer Science Applications (Q2)'), (11041, 'Journal of Zhejiang University: Science A', 1673565, 0.43, 'Q2', 39, 74, 2884, 496, 209, '1', '2003-2004, 2007-2020', 'Engineering (miscellaneous) (Q2)'), (11042, 'Malawi Medical Journal', 19957270, 0.43, 'Q3', 18, 36, 1017, 194, 167, '103', '1991-1993, 2008-2020', 'Medicine (miscellaneous) (Q3)'), (11043, 'Medical Reference Services Quarterly', 2763869, 0.43, 'Q2', 22, 39, 561, 214, 135, '2', '1982-2020', 'Library and Information Sciences (Q2); Health Informatics (Q3)'), (11044, 'National Tax Journal', 280283, 0.43, 'Q2', 57, 0, 0, 29, 35, '2', '1985, 1989, 1995-2018', 'Accounting (Q2); Finance (Q2); Economics and Econometrics (Q3)'), (11045, 'Neurologist', 10747931, 0.43, 'Q3', 60, 51, 52, 183, 148, '2', '1996-2013, 2015-2020', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)'), (11046, 'Phytoparasitica', 3342123, 0.43, 'Q2', 44, 87, 4075, 261, 199, '16', '1973-2020', 'Plant Science (Q2); Insect Science (Q3)'), (11047, 'Records of Natural Products', 13076167, 0.43, 'Q2', 31, 49, 1263, 387, 214, '18', '2009-2021', 'Plant Science (Q2); Drug Discovery (Q3); Organic Chemistry (Q3); Pharmacology (Q3)'), (11048, 'Revista Espanola de Quimioterapia', 2143429, 0.43, 'Q3', 25, 80, 2051, 324, 232, '12', '1989-2020', 'Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3); Pharmacology (Q3)'), (11049, 'TESOL International Journal', 20943938, 0.43, 'Q1', 4, 17, 717, 33, 30, '63', '2018-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (11050, 'Textile Reseach Journal', 405175, 0.43, 'Q2', 84, 276, 10050, 1703, 876, '3', '1931-2020', 'Chemical Engineering (miscellaneous) (Q2); Polymers and Plastics (Q2)'), (11051, 'Transactions of the London Mathematical Socie', 20524986, 0.43, 'Q2', 7, 3, 83, 18, 15, '2', '2019', 'Mathematics (miscellaneous) (Q2)'), (11052, 'Zemdirbyste', 13923196, 0.43, 'Q2', 20, 48, 1752, 203, 143, '69', '2008-2020', 'Agronomy and Crop Science (Q2)'), (11053, 'Advances in Human-Computer Interaction', 16875893, 0.429, 'Q3', 21, 11, 540, 138, 46, '32', '2010-2020', 'Human-Computer Interaction (Q3)'), (11054, 'Archivio Italiano di Urologia Andrologia', 11243562, 0.429, 'Q3', 23, 96, 1969, 252, 206, '7', '1993-2020', 'Urology (Q3)'), (11055, 'Clinical Medicine Insights: Circulatory, Resp', 11795484, 0.429, 'Q3', 17, 20, 729, 29, 25, '41', '2010-2011, 2013-2020', 'Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)'), (11056, 'European Journal of Law and Economics', 9291261, 0.429, 'Q1', 30, 44, 2084, 117, 120, '16', '1994-2020', 'Law (Q1); Business and International Management (Q2); Economics and Econometrics (Q3)'), (11057, 'Journal of Ethology', 2890771, 0.429, 'Q2', 34, 43, 1676, 102, 102, '6', '1983-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (11058, 'Journal of Family Social Work', 10522158, 0.429, 'Q2', 21, 35, 1410, 101, 72, '2', '1994-2020', 'Development (Q2); Sociology and Political Science (Q2); Social Work (Q3)'), (11059, 'Journal of Horticultural Science and Biotechn', 14620316, 0.429, 'Q2', 59, 97, 4802, 358, 228, '3', '1996-2020', 'Horticulture (Q2); Genetics (Q4)'), (11060, 'Journal of Marine Biology', 1687949, 0.429, 'Q2', 10, 0, 0, 24, 14, '2', '2011, 2014-2019', 'Animal Science and Zoology (Q2); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (11061, 'Journal of Molecular Graphics and Modelling', 10933263, 0.429, 'Q2', 73, 244, 12884, 1617, 682, '2', '1997-2020', 'Computer Graphics and Computer-Aided Design (Q2); Materials Chemistry (Q2); Physical and Theoretical Chemistry (Q3); Spectroscopy (Q3)'), (11062, 'Journal of Vacuum Science and Technology B:Na', 21662746, 0.429, 'Q2', 119, 198, 6958, 1108, 693, '2', '1991-1992, 2009-2020', 'Electrical and Electronic Engineering (Q2); Instrumentation (Q2); Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials'), (11063, 'Medizinische Genetik', 9365931, 0.429, 'Q4', 8, 38, 1278, 116, 74, '5', '1994-2019', 'Genetics (Q4); Genetics (clinical) (Q4)'), (11064, 'Nuclear Instruments and Methods in Physics Re', 168583, 0.429, 'Q2', 119, 514, 15630, 2403, 1750, '16', '1983-2020', 'Instrumentation (Q2); Nuclear and High Energy Physics (Q3)'), (11065, 'Nutrition and Health', 2601060, 0.429, 'Q3', 24, 65, 2598, 154, 96, '3', '1982-2004, 2006-2009, 2011-2013, 2017-2020', 'Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)'), (11066, 'Oral health &amp; preventive dentistry', 17579996, 0.429, 'Q2', 34, 132, 3487, 282, 218, '2', '2003-2020', 'Dental Hygiene (Q2)'), (11067, 'Pacific Science', 15346188, 0.429, 'Q1', 42, 24, 827, 104, 106, '2', '1979-2020', 'Multidisciplinary (Q1)'), (11068, 'Phytochemistry Letters', 18767486, 0.429, 'Q2', 38, 186, 5078, 1242, 719, '16', '2008-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q2); Biochemistry (Q3); Biotechnology (Q3)'), (11069, 'Solid State Communications', 381098, 0.429, 'Q2', 131, 193, 7252, 1157, 647, '3', '1963-2020', 'Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Condensed Matter Physics (Q3)'), (11070, 'Team Performance Management', 13527592, 0.429, 'Q2', 35, 29, 1818, 144, 73, '3', '1995-2020', 'Management Information Systems (Q2); Management of Technology and Innovation (Q2); Organizational Behavior and Human Resource Management (Q2)'), (11071, 'Thought', 21612234, 0.429, 'Q1', 8, 33, 751, 54, 93, '2', '2012, 2014-2020', 'Philosophy (Q1)'), (11072, 'Women s Studies International Forum', 2775395, 0.429, 'Q1', 59, 58, 3654, 371, 265, '3', '1982-2020', 'Law (Q1); Development (Q2); Education (Q2); Sociology and Political Science (Q2)'), (11073, 'Animal Welfare', 9627286, 0.428, 'Q2', 66, 40, 2219, 229, 119, '3', '1994, 1996-2020', 'Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (11074, 'Behaviour Change', 20497768, 0.428, 'Q3', 37, 22, 1149, 66, 47, '3', '1984-2020', 'Clinical Psychology (Q3); Experimental and Cognitive Psychology (Q3)'), (11075, 'BMC Clinical Pathology', 14726890, 0.428, 'Q3', 33, 0, 0, 75, 47, '3', '2001-2019', 'Histology (Q3); Pathology and Forensic Medicine (Q3)'), (11076, 'IEEE Magnetics Letters', 1949307, 0.428, 'Q3', 23, 63, 1370, 436, 284, '2', '2010-2020', 'Electronic, Optical and Magnetic Materials (Q3)'), (11077, 'International Journal for Philosophy of Relig', 207047, 0.428, 'Q1', 16, 44, 773, 49, 105, '16', '1970-2020', 'Philosophy (Q1)'), (11078, 'International Transactions on Electrical Ener', 20507038, 0.428, 'Q2', 42, 504, 19629, 1966, 704, '3', '2012-2020', 'Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q2); Modeling and Simulation (Q3)'), (11079, 'Journal of Cardiac Surgery', 8860440, 0.428, 'Q3', 58, 787, 12173, 668, 589, '3', '1986-2020', 'Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3); Surgery (Q3)'), (11080, 'Journal of Clinical Pediatric Dentistry', 10534628, 0.428, 'Q3', 42, 71, 2172, 286, 240, '2', '1990-2020', 'Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (11081, 'Journal of International Criminal Justice', 14781395, 0.428, 'Q1', 37, 34, 771, 63, 134, '3', '2005-2019', 'Law (Q1); Sociology and Political Science (Q2)'), (11082, 'Journal of Seed Science', 23171537, 0.428, 'Q2', 27, 43, 1488, 172, 133, '14', '2013-2020', 'Agronomy and Crop Science (Q2)'), (11083, 'Journal of Statistical Mechanics: Theory and ', 17425468, 0.428, 'Q3', 92, 320, 15134, 2608, 958, '3', '2004-2020', 'Statistical and Nonlinear Physics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (11084, 'Luminescence', 15227243, 0.428, 'Q2', 45, 173, 6977, 1035, 519, '3', '1997-2020', 'Chemistry (miscellaneous) (Q2); Biophysics (Q3)'), (11085, 'Open Dentistry Journal', 18742106, 0.428, 'Q3', 25, 106, 3281, 422, 268, '52', '2011-2020', 'Dentistry (miscellaneous) (Q3)'), (11086, 'Retinal Cases and Brief Reports', 19371578, 0.428, 'Q3', 14, 90, 244, 403, 358, '2', '2009-2020', 'Medicine (miscellaneous) (Q3); Ophthalmology (Q3)'), (11087, 'Review of World Economics', 16102878, 0.428, 'Q2', 52, 37, 1890, 129, 91, '5', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11088, 'Tsinghua Science and Technology', 10070214, 0.428, 'Q1', 43, 69, 2169, 564, 199, '1', '2003-2021', 'Multidisciplinary (Q1)'), (11089, 'Zeitschrift fur Physikalische Chemie', 9429352, 0.428, 'Q3', 49, 127, 6688, 701, 301, '5', '1954-2020', 'Physical and Theoretical Chemistry (Q3)'), (11090, 'Annals of Indian Academy of Neurology', 9722327, 0.427, 'Q3', 31, 266, 4591, 301, 232, '4', '2006-2020', 'Neurology (clinical) (Q3)'), (11091, 'BMJ Health and Care Informatics', 26321009, 0.427, 'Q2', 37, 53, 1248, 170, 106, '3', '2019-2020', 'Computer Science Applications (Q2); Health Informatics (Q3); Health Information Management (Q3)'), (11092, 'Central Nervous System Agents in Medicinal Ch', 18715249, 0.427, 'Q3', 32, 20, 1147, 131, 68, '52', '2006-2020', 'Neuropsychology and Physiological Psychology (Q3); Molecular Medicine (Q4); Neuroscience (miscellaneous) (Q4)'), (11093, 'Chemistry and Biodiversity', 16121872, 0.427, 'Q2', 70, 285, 12322, 1610, 680, '2', '2004-2020', 'Chemistry (miscellaneous) (Q2); Biochemistry (Q3); Bioengineering (Q3); Medicine (miscellaneous) (Q3); Molecular Biology (Q4); Molecular Medicine (Q4)'), (11094, 'Chinese Journal of Sociology', 2057150, 0.427, 'Q2', 9, 23, 1362, 64, 65, '3', '2015-2020', 'Social Sciences (miscellaneous) (Q2)'), (11095, 'Chromatographia', 95893, 0.427, 'Q3', 67, 137, 4700, 821, 468, '5', '1968-2020', 'Analytical Chemistry (Q3); Biochemistry (Q3); Clinical Biochemistry (Q3); Organic Chemistry (Q3)'), (11096, 'Dolomites Research Notes on Approximation', 20356803, 0.427, 'Q2', 11, 8, 223, 88, 60, '7', '2013-2020', 'Mathematics (miscellaneous) (Q2); Applied Mathematics (Q3)'), (11097, 'Frontiers in ICT', 2297198, 0.427, 'Q2', 17, 1, 32, 303, 77, '19', '2014-2020', 'Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)'), (11098, 'International Journal of Accounting', 10944060, 0.427, 'Q2', 54, 26, 1453, 107, 51, '3', '1996-2020', 'Accounting (Q2); Finance (Q2)'), (11099, 'International Journal of Educational Manageme', 951354, 0.427, 'Q2', 51, 98, 5777, 590, 324, '3', '1987-2020', 'Education (Q2); Organizational Behavior and Human Resource Management (Q2)'), (11100, 'International Journal of Innovation Science', 17572223, 0.427, 'Q2', 13, 33, 2340, 232, 89, '3', '2010-2020', 'Engineering (miscellaneous) (Q2); Management of Technology and Innovation (Q2)'), (11101, 'International Journal of the Sociology of Lan', 16133668, 0.427, 'Q1', 36, 56, 1700, 110, 144, '5', '1974-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (11102, 'Journal for Labour Market Research', 18678343, 0.427, 'Q2', 17, 15, 598, 89, 45, '19', '2009-2020', 'Industrial Relations (Q2); Organizational Behavior and Human Resource Management (Q2); Economics and Econometrics (Q3)'), (11103, 'Journal of Experimental and Theoretical Physi', 10637761, 0.427, 'Q2', 58, 202, 7538, 919, 660, '10', '1980, 1983, 1992, 1997-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (11104, 'Journal of Food Safety', 1496085, 0.427, 'Q2', 43, 137, 6386, 757, 400, '2', '1977-1978, 1980-2020', 'Food Science (Q2); Microbiology (Q4); Parasitology (Q4)'), (11105, 'Journal of Religion and Spirituality in Socia', 15426440, 0.427, 'Q1', 21, 28, 1523, 71, 64, '2', '2004-2020', 'Religious Studies (Q1); Public Health, Environmental and Occupational Health (Q3); Social Work (Q3)'), (11106, 'Pesquisa Agropecuaria Brasileira', 100204, 0.427, 'Q2', 56, 96, 2781, 534, 403, '14', '1978, 1983-1984, 1986-1987, 1996-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2)'), (11107, 'Proceedings of the Institution of Mechanical ', 9544070, 0.427, 'Q2', 65, 267, 8992, 955, 554, '3', '1989, 1991-2020', 'Aerospace Engineering (Q2); Mechanical Engineering (Q2)'), (11108, 'QJM - Monthly Journal of the Association of P', 14602393, 0.427, 'Q3', 118, 321, 3287, 688, 412, '3', '1907-1974, 1976-1982, 1985-2020', 'Medicine (miscellaneous) (Q3)'), (11109, 'Quality Assurance in Education', 9684883, 0.427, 'Q2', 50, 18, 916, 189, 100, '3', '1993-2020', 'Education (Q2)'), (11110, 'Soil and Sediment Contamination', 15497887, 0.427, 'Q3', 47, 64, 3110, 285, 150, '3', '1996-2020', 'Environmental Chemistry (Q3); Health, Toxicology and Mutagenesis (Q3); Pollution (Q3); Soil Science (Q3)'), (11111, 'Advances in Skin and Wound Care', 15388654, 0.426, 'Q2', 61, 159, 2611, 373, 251, '2', '2000-2020', 'Advanced and Specialized Nursing (Q2); Dermatology (Q3)'), (11112, 'ANZ Journal of Surgery', 14451433, 0.426, 'Q3', 70, 932, 14441, 1425, 1045, '3', '2001-2020', 'Medicine (miscellaneous) (Q3); Surgery (Q3)'), (11113, 'Business and Professional Communication Quart', 23294922, 0.426, 'Q2', 34, 25, 877, 106, 70, '2', '2014-2020', 'Arts and Humanities (miscellaneous) (Q2); Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11114, 'Communications in Statistics Part B: Simulati', 15324141, 0.426, 'Q3', 46, 507, 13833, 1253, 1259, '2', '1976-2020', 'Modeling and Simulation (Q3); Statistics and Probability (Q3)'), (11115, 'Computational and Mathematical Organization T', 1381298, 0.426, 'Q2', 27, 28, 1343, 184, 67, '16', '1995, 2005-2020', 'Computer Science (miscellaneous) (Q2); Applied Mathematics (Q3); Computational Mathematics (Q3); Decision Sciences (miscellaneous) (Q3); Modeling and Simulation (Q3)'), (11116, 'EMJ - Engineering Management Journal', 10429247, 0.426, 'Q2', 35, 44, 2851, 155, 65, '3', '1989-2020', 'Engineering (miscellaneous) (Q2)'), (11117, 'Forensic Imaging', 26662256, 0.426, 'Q3', 17, 70, 2219, 134, 114, '3', '2020', 'Pathology and Forensic Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11118, 'Imaging in Medicine', 17555191, 0.426, 'Q3', 18, 0, 0, 2, 1, '3', '2010-2014, 2016-2017', 'Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11119, 'International Journal of Photoenergy', 1110662, 0.426, 'Q2', 51, 90, 3070, 606, 274, '2', '1999-2020', 'Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Atomic and Molecular Physics, and Optics (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (11120, 'Inverse Problems in Science and Engineering', 17415985, 0.426, 'Q2', 33, 130, 4431, 462, 246, '3', '2004-2020', 'Computer Science Applications (Q2); Engineering (miscellaneous) (Q2); Applied Mathematics (Q3)'), (11121, 'Journal of Early Childhood Teacher Education', 17455642, 0.426, 'Q2', 20, 51, 2459, 80, 62, '3', '1990-2020', 'Education (Q2); Social Sciences (miscellaneous) (Q2)'), (11122, 'Journal of Sustainable Forestry', 1540756, 0.426, 'Q2', 29, 122, 6639, 274, 154, '3', '1992-2020', 'Food Science (Q2); Forestry (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (11123, 'Medical Principles and Practice', 10117571, 0.426, 'Q3', 45, 86, 1613, 503, 277, '19', '1989-1990, 1992, 1994, 1996-2020', 'Medicine (miscellaneous) (Q3)'), (11124, 'Metal Powder Report', 18734065, 0.426, 'Q2', 24, 48, 575, 225, 138, '3', '1983-2020', 'Aerospace Engineering (Q2); Automotive Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q3)'), (11125, 'Oceanology', 14370, 0.426, 'Q3', 27, 95, 2609, 251, 325, '10', '1972-1973, 1976-1980, 1982-1984, 1986-1990, 1992, 1996-2020', 'Oceanography (Q3)'), (11126, 'Queueing Systems', 15729443, 0.426, 'Q2', 54, 47, 1228, 185, 118, '16', '1986-2020', 'Computer Science Applications (Q2); Management Science and Operations Research (Q2); Computational Theory and Mathematics (Q3); Statistics and Probability (Q3)'), (11127, 'Revue Francaise de Science Politique', 352950, 0.426, 'Q2', 26, 24, 1243, 68, 96, '8', '1989, 1992, 2001-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11128, 'Space and Culture', 12063312, 0.426, 'Q1', 36, 73, 2750, 126, 128, '2', '1997-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (11129, 'Surgical and Radiologic Anatomy', 9301038, 0.426, 'Q2', 60, 245, 5555, 733, 568, '8', '1986-2020', 'Anatomy (Q2); Pathology and Forensic Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Surgery (Q3)'), (11130, 'Tokyo Journal of Mathematics', 3873870, 0.426, 'Q2', 20, 21, 389, 87, 119, '6', '1978-2019', 'Mathematics (miscellaneous) (Q2)'), (11131, 'Advances in Archaeological Practice', 23263768, 0.425, 'Q1', 7, 41, 1729, 79, 76, '3', '2018-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (11132, 'Australian Journal of Botany', 671924, 0.425, 'Q2', 68, 57, 4010, 240, 178, '11', '1953-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (11133, 'Health Care for Women International', 7399332, 0.425, 'Q2', 52, 153, 6372, 317, 254, '3', '1984-2020', 'Health Professions (miscellaneous) (Q2)'), (11134, 'IIMB Management Review', 9703896, 0.425, 'Q2', 20, 36, 1672, 220, 82, '3', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics and Econometrics (Q3)'), (11135, 'International Aquatic Research', 20086970, 0.425, 'Q3', 15, 29, 1380, 180, 96, '15', '2012-2020', 'Aquatic Science (Q3)'), (11136, 'international journal of esthetic dentistry,T', 2198591, 0.425, 'Q3', 23, 49, 0, 111, 99, '5', '2014-2020', 'Medicine (miscellaneous) (Q3)'), (11137, 'International Journal of Palliative Nursing', 13576321, 0.425, 'Q2', 39, 66, 1623, 228, 218, '3', '2000-2020', 'Advanced and Specialized Nursing (Q2)'), (11138, 'Journal of the Geological Society of India', 167622, 0.425, 'Q2', 44, 134, 5964, 829, 546, '4', '1979-2020', 'Geology (Q2)'), (11139, 'L1-Educational Studies in Language and Litera', 15676617, 0.425, 'Q1', 14, 17, 1041, 54, 69, '16', '2001-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q2); Health Professions (miscellaneous) (Q2); Psychology (miscellaneous) (Q3)'), (11140, 'Russian Journal of Pacific Geology', 18197159, 0.425, 'Q2', 13, 41, 1571, 90, 123, '10', '2007-2020', 'Geology (Q2); Geophysics (Q2); Geochemistry and Petrology (Q3); Oceanography (Q3); Paleontology (Q3); Stratigraphy (Q3)'), (11141, 'South African Journal of Psychiatry', 16089685, 0.425, 'Q3', 13, 35, 1291, 96, 74, '27', '2001-2020', 'Psychiatry and Mental Health (Q3)'), (11142, 'Stochastic Models', 15326349, 0.425, 'Q3', 37, 34, 818, 70, 72, '2', '2002-2020', 'Applied Mathematics (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q3)'), (11143, 'Teaching Statistics', 14679639, 0.425, 'Q2', 13, 28, 315, 26, 60, '2', '1979-2020', 'Education (Q2); Statistics and Probability (Q3)'), (11144, 'Asia Pacific Business Review', 1743792, 0.424, 'Q2', 34, 48, 3752, 213, 108, '3', '1994-2020', 'Business and International Management (Q2)'), (11145, 'Automated Software Engineering', 9288910, 0.424, 'Q2', 45, 11, 703, 221, 68, '16', '1994-2020', 'Software (Q2)'), (11146, 'Current Sports Medicine Reports', 15378918, 0.424, 'Q3', 51, 111, 2580, 425, 263, '2', '2002-2020', 'Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Public Health, Environmental and Occupational Health (Q3); Sports Science (Q3)'), (11147, 'International Journal of Biomathematics', 17935245, 0.424, 'Q3', 27, 85, 3093, 580, 328, '37', '2008-2020', 'Applied Mathematics (Q3); Modeling and Simulation (Q3)'), (11148, 'Jamba: Journal of Disaster Risk Studies', 2072845, 0.424, 'Q2', 12, 19, 789, 182, 101, '27', '2013-2020', 'Safety Research (Q2); Management, Monitoring, Policy and Law (Q3)'), (11149, 'Journal of Intelligent Information Systems', 15737675, 0.424, 'Q2', 55, 61, 3105, 396, 146, '16', '1992-2020', 'Artificial Intelligence (Q2); Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2)'), (11150, 'Journal of Manual and Manipulative Therapy', 10669817, 0.424, 'Q2', 38, 55, 2327, 179, 96, '3', '1993-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2)'), (11151, 'Journal of the American Mosquito Control Asso', 8756971, 0.424, 'Q3', 61, 76, 1558, 152, 142, '2', '1985-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11152, 'Performance Evaluation', 1665316, 0.424, 'Q2', 65, 35, 1168, 274, 131, '16', '1981-2020', 'Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Software (Q2); Modeling and Simulation (Q3)'), (11153, 'Research on Chemical Intermediates', 9226168, 0.424, 'Q2', 49, 325, 15909, 3270, 1336, '16', '1984-2020', 'Chemistry (miscellaneous) (Q2)'), (11154, 'Revista Ciencia Agronomica', 456888, 0.424, 'Q2', 26, 72, 3054, 318, 246, '14', '2008-2020', 'Agronomy and Crop Science (Q2); Horticulture (Q2); Soil Science (Q3)'), (11155, 'Silicon', 18769918, 0.424, 'Q3', 26, 652, 23788, 1911, 731, '16', '2009-2020', 'Electronic, Optical and Magnetic Materials (Q3)'), (11156, 'Thesis Eleven', 7255136, 0.424, 'Q1', 28, 59, 1844, 91, 136, '3', '1980-1994, 1996-2020', 'Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11157, 'Vibrational Spectroscopy', 9242031, 0.424, 'Q3', 78, 150, 5900, 800, 330, '16', '1990-2020', 'Spectroscopy (Q3)'), (11158, 'Acta Polymerica Sinica', 10003304, 0.423, 'Q2', 23, 128, 6426, 633, 446, '1', '1996-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Polymers and Plastics (Q2)'), (11159, 'Bolletino dell Unione Matematica Italiana', 21982759, 0.423, 'Q2', 28, 57, 1329, 99, 119, '19', '2008-2020', 'Mathematics (miscellaneous) (Q2)'), (11160, 'Equality, Diversity and Inclusion', 17587093, 0.423, 'Q1', 26, 63, 3922, 287, 178, '3', '2010-2020', 'Cultural Studies (Q1); Gender Studies (Q2); Sociology and Political Science (Q2); Organizational Behavior and Human Resource Management (Q3)'), (11161, 'Giornale Italiano di Psicopatologia', 15921107, 0.423, 'Q3', 13, 44, 1886, 125, 83, '7', '2001-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (11162, 'High Energy Density Physics', 15741818, 0.423, 'Q3', 37, 97, 3203, 231, 137, '16', '2005-2020', 'Nuclear and High Energy Physics (Q3); Radiation (Q3)'), (11163, 'Human Heredity', 14230062, 0.423, 'Q4', 62, 14, 542, 45, 53, '19', '1950-1954, 1956-2020', 'Genetics (Q4); Genetics (clinical) (Q4)'), (11164, 'IEEE Embedded Systems Letters', 19430663, 0.423, 'Q2', 27, 61, 451, 224, 85, '2', '2009-2020', 'Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2)'), (11165, 'Ius et Praxis', 7180012, 0.423, 'Q1', 7, 45, 2358, 45, 137, '45', '2001-2002, 2006-2020', 'Law (Q1)'), (11166, 'Journal of Mid-Life Health', 9767819, 0.423, 'Q2', 11, 46, 1021, 177, 121, '4', '2016-2020', 'Health (social science) (Q2); Medicine (miscellaneous) (Q3)'), (11167, 'Monte Carlo Methods and Applications', 9299629, 0.423, 'Q3', 26, 25, 492, 68, 72, '5', '1995-2020', 'Applied Mathematics (Q3); Statistics and Probability (Q3)'), (11168, 'Proceedings of the Japan Academy Series A: Ma', 3862194, 0.423, 'Q2', 22, 17, 233, 64, 67, '6', '1996-2020', 'Mathematics (miscellaneous) (Q2)'), (11169, 'Publications', 23046775, 0.423, 'Q1', 10, 52, 2378, 225, 124, '19', '2017-2020', 'Media Technology (Q1); Business and International Management (Q2); Communication (Q2); Computer Science Applications (Q2); Library and Information Sciences (Q2)'), (11170, 'Southern California Law Review', 383910, 0.423, 'Q1', 33, 5, 645, 83, 85, '2', '1973-1979, 1981-1982, 1985-1988, 1991-1992, 1996-2020', 'Law (Q1)'), (11171, 'Veterinary Parasitology: X', 25901389, 0.423, 'Q2', 4, 12, 453, 34, 17, '16', '2019-2020', 'Veterinary (miscellaneous) (Q2); Parasitology (Q4)'), (11172, 'Zeitschrift fur Evidenz, Fortbildung und Qual', 22120289, 0.423, 'Q2', 28, 73, 2175, 267, 221, '5', '2008-2020', 'Education (Q2); Health Policy (Q3); Medicine (miscellaneous) (Q3)'), (11173, 'Acta Histochemica et Cytochemica', 13475800, 0.422, 'Q3', 26, 16, 686, 75, 51, '6', '1968-2020', 'Biochemistry (Q3); Histology (Q3); Pathology and Forensic Medicine (Q3); Cell Biology (Q4); Physiology (Q4)'), (11174, 'Blood Research', 2287979, 0.422, 'Q3', 22, 66, 1637, 208, 122, '13', '2013-2020', 'Hematology (Q3)'), (11175, 'Chinese Journal of Population Resources and E', 23254262, 0.422, 'Q2', 12, 0, 0, 162, 107, '3', '1992, 2004-2013, 2015-2019', 'Demography (Q2); Environmental Science (miscellaneous) (Q2); Toxicology (Q3)'), (11176, 'Communication and Critical/ Cultural Studies', 14791420, 0.422, 'Q1', 20, 38, 0, 128, 60, '2', '2010-2020', 'Cultural Studies (Q1); Communication (Q2)'), (11177, 'Drug and Chemical Toxicology', 1480545, 0.422, 'Q3', 44, 223, 11770, 598, 285, '2', '1977-2020', 'Chemical Health and Safety (Q3); Health, Toxicology and Mutagenesis (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q3)'), (11178, 'Education Inquiry', 20004508, 0.422, 'Q2', 17, 37, 1776, 120, 62, '3', '2010-2020', 'Education (Q2); Public Administration (Q2); Sociology and Political Science (Q2)'), (11179, 'Experimental Mathematics', 10586458, 0.422, 'Q2', 37, 62, 1502, 198, 200, '3', '1992-2020', 'Mathematics (miscellaneous) (Q2)'), (11180, 'IEEE Transactions on Professional Communicati', 15581500, 0.422, 'Q2', 44, 31, 1397, 124, 86, '2', '1972-2020', 'Electrical and Electronic Engineering (Q2); Industrial Relations (Q2)'), (11181, 'International Journal of Computers, Communica', 18419836, 0.422, 'Q2', 33, 59, 1918, 454, 175, '43', '2007-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q2); Computational Theory and Mathematics (Q3)'), (11182, 'International Journal of Organizational Analy', 19348835, 0.422, 'Q2', 25, 103, 8665, 460, 214, '3', '2005-2020', 'Strategy and Management (Q2); Organizational Behavior and Human Resource Management (Q3)'), (11183, 'Journal of Electronic Materials', 3615235, 0.422, 'Q2', 99, 849, 32680, 5027, 2748, '2', '1972-2020', 'Electrical and Electronic Engineering (Q2); Materials Chemistry (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (11184, 'Journal of the Korean Ceramic Society', 12297801, 0.422, 'Q2', 19, 77, 3250, 365, 216, '13', '2007-2020', 'Ceramics and Composites (Q2)'), (11185, 'Journal of Thermoplastic Composite Materials', 15307980, 0.422, 'Q2', 45, 198, 9033, 823, 388, '3', '1988-2020', 'Ceramics and Composites (Q2); Condensed Matter Physics (Q3)'), (11186, 'Managerial Auditing Journal', 2686902, 0.422, 'Q2', 55, 39, 2786, 323, 142, '3', '1986-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Accounting (Q3); Organizational Behavior and Human Resource Management (Q3)'), (11187, 'Medical Mycology Case Reports', 22117539, 0.422, 'Q3', 15, 66, 1125, 239, 184, '16', '2012-2020', 'Infectious Diseases (Q3); Microbiology (Q4)'), (11188, 'Paleontological Journal', 15556174, 0.422, 'Q3', 29, 120, 4441, 296, 389, '10', '1990-2020', 'Paleontology (Q3)'), (11189, 'Planta Medica', 14390221, 0.422, 'Q2', 116, 157, 7078, 1378, 446, '5', '1961, 1965-2020', 'Complementary and Alternative Medicine (Q2); Pharmaceutical Science (Q2); Analytical Chemistry (Q3); Drug Discovery (Q3); Organic Chemistry (Q3); Pharmacology (Q3); Molecular Medicine (Q4)'), (11190, 'Plant Ecology and Evolution', 20323913, 0.422, 'Q2', 23, 42, 2249, 140, 115, '24', '2010-2020', 'Plant Science (Q2)'), (11191, 'Acta Geophysica', 18957455, 0.421, 'Q2', 35, 127, 6168, 668, 357, '19', '2006-2020', 'Geophysics (Q2)'), (11192, 'AIP Advances', 21583226, 0.421, 'Q2', 58, 1480, 48582, 7700, 4647, '2', '2011-2020', 'Physics and Astronomy (miscellaneous) (Q2); Nanoscience and Nanotechnology (Q3)'), (11193, 'Australian journal of general practice', 2208794, 0.421, 'Q2', 42, 177, 2737, 526, 421, '11', '2018-2020', 'Family Practice (Q2)'), (11194, 'Clinical Liver Disease', 20462484, 0.421, 'Q3', 14, 131, 2508, 314, 243, '3', '2013-2020', 'Hepatology (Q3)'), (11195, 'Clinical Optometry', 11792752, 0.421, 'Q3', 7, 28, 900, 76, 53, '41', '2014-2020', 'Ophthalmology (Q3); Sensory Systems (Q4)'), (11196, 'Clinical Reviews in Bone and Mineral Metaboli', 15590119, 0.421, 'Q3', 24, 5, 314, 59, 44, '2', '2002, 2004-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Orthopedics and Sports Medicine (Q3); Endocrinology (Q4)'), (11197, 'Control Theory and Technology', 20956983, 0.421, 'Q2', 32, 45, 1308, 155, 96, '2', '2014-2020', 'Aerospace Engineering (Q2); Control and Systems Engineering (Q2); Control and Optimization (Q3)'), (11198, 'East Asian Journal on Applied Mathematics', 20797362, 0.421, 'Q3', 17, 54, 1949, 201, 140, '1', '2011-2020', 'Applied Mathematics (Q3)'), (11199, 'Entomological Research', 17382297, 0.421, 'Q3', 20, 68, 2684, 247, 171, '3', '2007-2020', 'Insect Science (Q3)'), (11200, 'European Journal of Physics', 1430807, 0.421, 'Q2', 51, 209, 5286, 765, 651, '3', '1980-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (11201, 'European Urology Open Science', 26661683, 0.421, 'Q3', 32, 42, 1062, 53, 34, '16', '2020', 'Urology (Q3)'), (11202, 'Health Education Journal', 178969, 0.421, 'Q3', 34, 81, 3204, 318, 240, '3', '1943-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (11203, 'International Journal of Aeroacoustics', 20484003, 0.421, 'Q2', 20, 19, 569, 151, 91, '3', '2011-2020', 'Acoustics and Ultrasonics (Q2); Aerospace Engineering (Q2)'), (11204, 'International Journal of Event and Festival M', 17582954, 0.421, 'Q2', 26, 29, 1969, 134, 61, '3', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (11205, 'International Journal of Human Rights in Heal', 20564902, 0.421, 'Q2', 11, 46, 1871, 95, 100, '3', '2015-2020', 'Public Administration (Q2); Sociology and Political Science (Q2); Health Policy (Q3); Health (social science) (Q3); Social Psychology (Q3)'), (11206, 'International Journal of Nonlinear Sciences a', 15651339, 0.421, 'Q2', 57, 107, 3796, 350, 193, '5', '2000-2020', 'Computational Mechanics (Q2); Engineering (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q2); Applied Mathematics (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3); Statist'), (11207, 'International Journal of Prisoner Health', 17449200, 0.421, 'Q3', 18, 35, 1734, 125, 92, '3', '2005-2009, 2011-2020', 'Health Professions (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (11208, 'Irrigation and Drainage', 15310353, 0.421, 'Q2', 38, 158, 5274, 371, 250, '3', '2001-2020', 'Agronomy and Crop Science (Q2); Soil Science (Q3)'), (11209, 'Journal of Biomolecular Techniques', 15240215, 0.421, 'Q4', 46, 166, 579, 150, 187, '2', '1999-2020', 'Molecular Biology (Q4)'), (11210, 'Journal of Gay and Lesbian Social Services', 10538720, 0.421, 'Q2', 41, 26, 1340, 102, 77, '2', '1994-2020', 'Gender Studies (Q2); Sociology and Political Science (Q2)'), (11211, 'Journal of Innovative Optical Health Sciences', 17935458, 0.421, 'Q3', 24, 50, 2589, 300, 179, '37', '2008-2020', 'Atomic and Molecular Physics, and Optics (Q3); Biomedical Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Medicine (miscellaneous) (Q3)'), (11212, 'Journal of International Medical Research', 14732300, 0.421, 'Q3', 57, 1296, 35008, 2445, 1612, '3', '1972-2020', 'Biochemistry (Q3); Biochemistry (medical) (Q3); Medicine (miscellaneous) (Q3); Cell Biology (Q4)'), (11213, 'Journal of Mathematical Chemistry', 2599791, 0.421, 'Q2', 64, 113, 5685, 733, 375, '16', '1987-2020', 'Chemistry (miscellaneous) (Q2); Applied Mathematics (Q3)'), (11214, 'Journal of Negro Education, The', 21676437, 0.421, 'Q1', 33, 7, 344, 76, 82, '2', '1972, 1976-1977, 1980-1982, 1984, 1996-2000, 2005-2019', 'Anthropology (Q1); Education (Q2)'), (11215, 'Journal of Numerical Cognition', 23638761, 0.421, 'Q3', 2, 18, 972, 19, 20, '5', '2019-2020', 'Applied Mathematics (Q3); Experimental and Cognitive Psychology (Q3); Numerical Analysis (Q3)'), (11216, 'Journal of Osteoporosis', 20908059, 0.421, 'Q3', 19, 7, 221, 54, 19, '2', '2012-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)'), (11217, 'Journal of Water and Climate Change', 20402244, 0.421, 'Q3', 22, 142, 7059, 327, 183, '3', '2010-2020', 'Atmospheric Science (Q3); Global and Planetary Change (Q3); Management, Monitoring, Policy and Law (Q3); Water Science and Technology (Q3)'), (11218, 'Legal Theory', 13523252, 0.421, 'Q1', 30, 10, 410, 27, 35, '3', '1995-2020', 'Law (Q1); Philosophy (Q1)'), (11219, 'Pacific Affairs', 30851, 0.421, 'Q2', 35, 21, 0, 85, 57, '9', '1979, 1981-1982, 1984, 1991-2020', 'Geography, Planning and Development (Q2); Sociology and Political Science (Q2)'), (11220, 'Performance Measurement and Metrics', 14678047, 0.421, 'Q1', 22, 12, 401, 74, 59, '3', '2000-2020', 'Literature and Literary Theory (Q1); Library and Information Sciences (Q2)'), (11221, 'Polish Polar Research', 1380338, 0.421, 'Q3', 32, 11, 652, 98, 64, '17', '1980-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (11222, 'Russian Journal of Plant Physiology', 16083407, 0.421, 'Q2', 46, 121, 4421, 477, 309, '10', '1996-2020', 'Plant Science (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (11223, 'Seminars in Ultrasound, CT and MRI', 15585034, 0.421, 'Q3', 45, 53, 2558, 250, 146, '3', '1984-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (11224, 'Software and Systems Modeling', 16191374, 0.421, 'Q2', 49, 92, 4640, 716, 225, '5', '2005-2020', 'Software (Q2); Modeling and Simulation (Q3)'), (11225, 'Southeastern Geographer', 15496929, 0.421, 'Q2', 19, 24, 787, 81, 53, '2', '1979-1994, 1996-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (11226, 'Annals of Cardiac Anaesthesia', 9745181, 0.42, 'Q2', 27, 132, 2231, 453, 279, '4', '2007-2020', 'Anesthesiology and Pain Medicine (Q2); Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (11227, 'Arts and Health', 17533023, 0.42, 'Q2', 15, 26, 1185, 120, 66, '3', '2012-2020', 'Arts and Humanities (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (11228, 'Australasian Journal of Combinatorics', 10344942, 0.42, 'Q3', 30, 75, 1488, 219, 255, '11', '1996-2020', 'Discrete Mathematics and Combinatorics (Q3)'), (11229, 'European Journal of Philosophy', 9668373, 0.42, 'Q1', 36, 98, 3976, 139, 235, '3', '1993-2020', 'Philosophy (Q1)'), (11230, 'Infrastructures', 24123811, 0.42, 'Q2', 10, 114, 4748, 374, 151, '19', '2016-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q2); Computer Science Applications (Q2); Geotechnical Engineering and Engineering Geology (Q2); Materials Science (miscellaneous) (Q2)'), (11231, 'International Journal of Pharmacy Practice', 9617671, 0.42, 'Q2', 37, 101, 3120, 312, 195, '3', '1991-2020', 'Pharmaceutical Science (Q2); Pharmacy (Q2); Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11232, 'International Journal of Zoology', 16878485, 0.42, 'Q2', 16, 10, 419, 26, 18, '2', '2009-2020', 'Animal Science and Zoology (Q2)'), (11233, 'Journal of Applied Poultry Research', 15370437, 0.42, 'Q2', 63, 91, 3743, 355, 280, '2', '1992-2020', 'Animal Science and Zoology (Q2)'), (11234, 'Journal of Forensic Psychiatry and Psychology', 14789957, 0.42, 'Q3', 45, 66, 2823, 193, 171, '3', '2003-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (11235, 'Journal of Mining and Metallurgy, Section B: ', 14505339, 0.42, 'Q2', 20, 45, 1195, 194, 143, '55', '2007-2020', 'Geotechnical Engineering and Engineering Geology (Q2); Materials Chemistry (Q2); Metals and Alloys (Q2); Mechanics of Materials (Q3)'), (11236, 'Journal of the Korean Statistical Society', 12263192, 0.42, 'Q3', 20, 79, 2158, 153, 141, '13', '2008-2020', 'Statistics and Probability (Q3)'), (11237, 'Operative Orthopadie und Traumatologie', 9346694, 0.42, 'Q3', 28, 60, 1133, 162, 128, '5', '1989-2020', 'Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (11238, 'Pragmatics', 10182101, 0.42, 'Q1', 23, 25, 1278, 50, 62, '24', '2005-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1)'), (11239, 'Renal Replacement Therapy', 20591381, 0.42, 'Q3', 10, 62, 1745, 211, 167, '3', '2015-2020', 'Nephrology (Q3); Transplantation (Q3); Urology (Q3)'), (11240, 'Respiratory Medicine Case Reports', 22130071, 0.42, 'Q3', 14, 349, 5435, 634, 611, '16', '2012-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (11241, 'South Asian Journal of Business Studies', 2398628, 0.42, 'Q1', 8, 40, 3183, 186, 66, '3', '2017-2020', 'Cultural Studies (Q1); Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q2); Strategy and Management (Q2); Mar'), (11242, 'Wilderness and Environmental Medicine', 10806032, 0.42, 'Q2', 43, 97, 2067, 352, 227, '2', '1995-2020', 'Emergency Medicine (Q2); Public Health, Environmental and Occupational Health (Q3); Sports Science (Q3)'), (11243, 'Wireless Communications and Mobile Computing', 15308677, 0.42, 'Q2', 64, 367, 12703, 3055, 989, '32', '2001-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2)'), (11244, 'Anthropology Today', 268540, 0.419, 'Q1', 24, 49, 941, 121, 100, '2', '1988, 1999, 2002, 2008-2020', 'Anthropology (Q1)'), (11245, 'Australian Journal of Management', 13272020, 0.419, 'Q2', 39, 49, 3718, 182, 94, '3', '1976-2020', 'Business, Management and Accounting (miscellaneous) (Q2)'), (11246, 'Biopharmaceutics and Drug Disposition', 1099081, 0.419, 'Q2', 58, 28, 1438, 238, 131, '3', '1979-2020', 'Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (11247, 'BMS Bulletin of Sociological Methodology/ Bul', 7591063, 0.419, 'Q2', 17, 28, 1240, 47, 58, '2', '1983-2020', 'Sociology and Political Science (Q2)'), (11248, 'Comparative Population Studies', 18698980, 0.419, 'Q2', 15, 10, 593, 38, 37, '5', '2010-2011, 2013-2020', 'Demography (Q2)'), (11249, 'Future Neurology', 14796708, 0.419, 'Q3', 32, 18, 716, 113, 78, '3', '2007-2020', 'Neurology (Q3); Neurology (clinical) (Q3)'), (11250, 'Global Business Review', 9730664, 0.419, 'Q2', 25, 248, 14519, 818, 415, '4', '2000-2020', 'Business and International Management (Q2)'), (11251, 'Global Responsibility to Protect', 1875984, 0.419, 'Q2', 11, 28, 1031, 38, 60, '16', '2013-2020', 'Political Science and International Relations (Q2)'), (11252, 'Immunological Medicine', 25785826, 0.419, 'Q3', 14, 43, 2162, 153, 104, '3', '2018-2020', 'Immunology and Allergy (Q3); Immunology (Q4)'), (11253, 'Inorganic Chemistry Communication', 13877003, 0.419, 'Q2', 72, 546, 23431, 2335, 1083, '16', '1998-2020', 'Materials Chemistry (Q2); Inorganic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (11254, 'International Journal of Children s Rights', 15718182, 0.419, 'Q2', 32, 36, 2300, 101, 96, '16', '1993-2020', 'Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (11255, 'International Quarterly of Community Health E', 272684, 0.419, 'Q2', 17, 82, 2682, 103, 75, '2', '1980, 1988, 1999, 2004-2020', 'Education (Q2); Health (social science) (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11256, 'Journal of Anthropological Research', 917710, 0.419, 'Q1', 37, 20, 1164, 54, 49, '2', '1976-1979, 1981-1983, 1991, 1993, 1996-2020', 'Anthropology (Q1); Arts and Humanities (miscellaneous) (Q2)'), (11257, 'Journal of Cell Death', 11790660, 0.419, 'Q3', 15, 0, 0, 15, 10, '41', '2008-2018', 'Biochemistry (Q3); Cell Biology (Q4)'), (11258, 'Journal of Indian Prosthodontic Society, The', 19984057, 0.419, 'Q3', 20, 49, 1298, 192, 167, '4', '2005-2020', 'Dentistry (miscellaneous) (Q3); Oral Surgery (Q3)'), (11259, 'Journal of Low Frequency Noise Vibration and ', 2630923, 0.419, 'Q2', 25, 133, 4084, 684, 254, '3', '1996-2020', 'Acoustics and Ultrasonics (Q2); Building and Construction (Q2); Civil and Structural Engineering (Q2); Geophysics (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q3)'), (11260, 'Journal of Public Procurement', 15350118, 0.419, 'Q2', 14, 21, 1415, 91, 56, '3', '2012-2020', 'Public Administration (Q2)'), (11261, 'Journal of Zoo and Wildlife Medicine', 10427260, 0.419, 'Q2', 45, 134, 3703, 372, 451, '2', '1993-1994, 1996-2020', 'Animal Science and Zoology (Q2); Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (11262, 'Koedoe', 20710771, 0.419, 'Q3', 29, 36, 1447, 62, 47, '27', '1980-1984, 1987-2006, 2008-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (11263, 'New Zealand Journal of Forestry Science', 11795395, 0.419, 'Q2', 29, 14, 802, 74, 56, '19', '1979, 1981, 1983-2020', 'Chemical Engineering (miscellaneous) (Q2); Forestry (Q2); Plant Science (Q2); Ecology (Q3)'), (11264, 'Plant Species Biology', 913557, 0.419, 'Q2', 36, 39, 2006, 139, 92, '3', '1986-2020', 'Plant Science (Q2); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (11265, 'South African Journal of Enology and Viticult', 253939, 0.419, 'Q2', 25, 23, 1204, 127, 71, '27', '2004, 2007-2020', 'Food Science (Q2); Horticulture (Q2)'), (11266, 'Text and Talk', 18607330, 0.419, 'Q1', 44, 30, 1180, 70, 105, '5', '2005-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1); Communication (Q2)'), (11267, 'Tree-Ring Research', 15361098, 0.419, 'Q2', 23, 9, 419, 58, 46, '2', '2005-2020', 'Forestry (Q2); Atmospheric Science (Q3); Geology (Q3); Paleontology (Q3)'), (11268, 'Art Therapy', 7421656, 0.418, 'Q2', 31, 52, 1283, 98, 76, '3', '1983-2020', 'Complementary and Manual Therapy (Q2); Clinical Psychology (Q3)'), (11269, 'Atomization and Sprays', 19362684, 0.418, 'Q2', 52, 47, 1506, 209, 169, '2', '1996-2020', 'Chemical Engineering (miscellaneous) (Q2)'), (11270, 'Caikuang yu Anquan Gongcheng Xuebao/Journal o', 16733363, 0.418, 'Q2', 29, 145, 3456, 629, 504, '1', '2009-2020', 'Safety, Risk, Reliability and Quality (Q2)'), (11271, 'California Law Review', 81221, 0.418, 'Q1', 53, 24, 4603, 156, 127, '2', '1973-1979, 1982-1983, 1986-1988, 1990-1992, 1994, 1996-2019', 'Law (Q1)'), (11272, 'Clinical Medicine Insights: Arthritis and Mus', 11795441, 0.418, 'Q3', 21, 16, 581, 82, 52, '41', '2010-2020', 'Immunology and Allergy (Q3); Rheumatology (Q3)'), (11273, 'Coaching', 17521890, 0.418, 'Q3', 13, 20, 1087, 43, 33, '2', '2010-2020', 'Developmental and Educational Psychology (Q3); Organizational Behavior and Human Resource Management (Q3); Social Psychology (Q3)'), (11274, 'Community Dental Health', 265539, 0.418, 'Q3', 50, 49, 1201, 153, 126, '3', '1984-2020', 'Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11275, 'Design Automation for Embedded Systems', 15728080, 0.418, 'Q2', 31, 17, 481, 151, 39, '16', '1996-2003, 2005, 2007-2020', 'Hardware and Architecture (Q2); Software (Q2)'), (11276, 'Drugs of Today', 257656, 0.418, 'Q3', 52, 60, 2543, 296, 162, '12', '1968, 1978-2020', 'Medicine (miscellaneous) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (11277, 'Healthcare Management Forum', 8404704, 0.418, 'Q3', 16, 67, 1534, 201, 159, '2', '1988-2020', 'Health Policy (Q3)'), (11278, 'IET Science, Measurement and Technology', 17518822, 0.418, 'Q2', 49, 153, 4541, 1119, 448, '3', '2007-2020', 'Electrical and Electronic Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3)'), (11279, 'International Journal of Productivity and Per', 17410401, 0.418, 'Q2', 61, 153, 12789, 918, 303, '3', '2004-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Strategy and Management (Q2)'), (11280, 'Journal of Semiconductors', 16744926, 0.418, 'Q2', 28, 147, 6607, 864, 524, '3', '2009-2020', 'Electrical and Electronic Engineering (Q2); Materials Chemistry (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (11281, 'Journal of the American Academy of Religion', 14774585, 0.418, 'Q1', 30, 38, 2549, 78, 110, '2', '1933-2020', 'Religious Studies (Q1)'), (11282, 'Journal of Women and Minorities in Science an', 10728325, 0.418, 'Q2', 22, 21, 1678, 51, 48, '2', '2006-2020', 'Engineering (miscellaneous) (Q2); Gender Studies (Q2)'), (11283, 'Korean Journal of Family Medicine', 20926715, 0.418, 'Q2', 19, 68, 1793, 249, 171, '13', '2009-2020', 'Family Practice (Q2)'), (11284, 'Quantum Electronics', 10637818, 0.418, 'Q2', 45, 201, 5796, 766, 615, '3', '1984, 1988, 1993-2020', 'Electrical and Electronic Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3); Statistical and Nonlinear Physics (Q3)'), (11285, 'Revista Brasileira de Zootecnia', 18069290, 0.418, 'Q2', 53, 72, 2692, 424, 323, '14', '1996-2020', 'Animal Science and Zoology (Q2)'), (11286, 'Shock and Vibration', 10709622, 0.418, 'Q2', 45, 613, 19768, 2317, 1335, '32', '1975, 1993-2020', 'Civil and Structural Engineering (Q2); Mechanical Engineering (Q2); Condensed Matter Physics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Mechanics of Materials (Q3)'), (11287, 'Social Marketing Quarterly', 15394093, 0.418, 'Q3', 26, 28, 1039, 133, 58, '2', '1994-2020', 'Economics and Econometrics (Q3); Marketing (Q3)'), (11288, 'Teaching and Learning Inquiry', 21674787, 0.418, 'Q2', 13, 29, 1036, 74, 63, '9', '2013-2020', 'Education (Q2)'), (11289, 'Techniques in Vascular and Interventional Rad', 15579808, 0.418, 'Q3', 39, 39, 1350, 219, 112, '3', '1998-2020', 'Cardiology and Cardiovascular Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11290, 'Technology and Economics of Smart Grids and S', 21994706, 0.418, 'Q2', 10, 25, 851, 118, 55, '37', '2016-2020', 'Electrical and Electronic Engineering (Q2); Energy (miscellaneous) (Q2); Economics and Econometrics (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (11291, 'Tropical Parasitology', 22297758, 0.418, 'Q3', 11, 37, 769, 96, 65, '4', '2016-2020', 'Infectious Diseases (Q3); Microbiology (Q4); Parasitology (Q4)'), (11292, 'Turkish Studies', 14683849, 0.418, 'Q1', 22, 49, 2677, 110, 103, '3', '2009-2020', 'History (Q1); Political Science and International Relations (Q2)'), (11293, 'Acta Botanica Hungarica', 15882578, 0.417, 'Q2', 19, 22, 800, 71, 67, '50', '1986-1989, 2001-2004, 2007-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (11294, 'Actas Espanolas de Psiquiatria', 15782735, 0.417, 'Q3', 31, 47, 1411, 141, 88, '12', '1996-2020', 'Psychiatry and Mental Health (Q3)'), (11295, 'American Historical Review', 28762, 0.417, 'Q1', 63, 97, 3039, 122, 181, '2', '1970-1974, 1977-1979, 1981, 1984-1987, 1990-2020', 'Archeology (Q1); History (Q1); Museology (Q1)'), (11296, 'Applied Biological Chemistry', 24680842, 0.417, 'Q3', 21, 85, 3329, 430, 231, '16', '2016-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Organic Chemistry (Q3)'), (11297, 'Archives Animal Breeding', 39438, 0.417, 'Q2', 30, 50, 2005, 294, 173, '5', '1999-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q2); Plant Science (Q2); Food Animals (Q3); Genetics (Q4)'), (11298, 'Australian Journal of Social Issues', 1576321, 0.417, 'Q2', 30, 48, 2238, 120, 71, '11', '1975-1976, 1980-1982, 1984, 1986, 1989-1993, 1996-2020', 'Sociology and Political Science (Q2)'), (11299, 'Biotechnology and Biotechnological Equipment', 13102818, 0.417, 'Q3', 35, 135, 6092, 946, 507, '3', '1990-2020', 'Biotechnology (Q3)'), (11300, 'Diagnostic Cytopathology', 10970339, 0.417, 'Q3', 65, 235, 4990, 830, 587, '2', '1985-2020', 'Histology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)'), (11301, 'Educational Research for Policy and Practice', 15702081, 0.417, 'Q2', 23, 30, 1958, 60, 46, '16', '2004-2020', 'Education (Q2); Sociology and Political Science (Q2)'), (11302, 'Functional Materials Letters', 17936047, 0.417, 'Q2', 28, 126, 4150, 601, 336, '37', '2008-2020', 'Materials Science (miscellaneous) (Q2)'), (11303, 'GeroPsych: The Journal of Gerontopsychology a', 16629647, 0.417, 'Q3', 19, 32, 1559, 73, 50, '2', '2010-2020', 'Geriatrics and Gerontology (Q3); Gerontology (Q3)'), (11304, 'Indian Journal of Psychological Medicine', 2537176, 0.417, 'Q3', 24, 48, 1371, 429, 323, '4', '2012-2013, 2017-2020', 'Clinical Psychology (Q3)'), (11305, 'International Journal of Lower Extremity Woun', 15347346, 0.417, 'Q3', 39, 165, 5280, 269, 128, '2', '2002-2020', 'Medicine (miscellaneous) (Q3); Surgery (Q3)'), (11306, 'Journal of Child and Adolescent Substance Abu', 1067828, 0.417, 'Q2', 33, 29, 1324, 143, 120, '2', '1994-2020', 'Education (Q2); Psychology (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Social Psychology (Q3)'), (11307, 'Journal of Engineering Mathematics', 15732703, 0.417, 'Q2', 53, 40, 1278, 296, 172, '16', '1967-2020', 'Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q2)'), (11308, 'Journal of Ethnicity in Criminal Justice', 15377938, 0.417, 'Q1', 18, 16, 1258, 60, 54, '2', '2003-2020', 'Anthropology (Q1); Law (Q1)'), (11309, 'Journal of Small Business and Entrepreneurshi', 8276331, 0.417, 'Q2', 28, 82, 6409, 211, 81, '3', '1996-1998, 2000-2014, 2016-2020', 'Business and International Management (Q2); Strategy and Management (Q2)'), (11310, 'Noropsikiyatri Arsivi', 13000667, 0.417, 'Q3', 14, 66, 1968, 245, 182, '18', '1973-1974, 1976-1977, 1994-1995, 2009-2020', 'Psychiatry and Mental Health (Q3); Neuroscience (miscellaneous) (Q4)'), (11311, 'Physiology International', 2498602, 0.417, 'Q3', 29, 43, 1659, 165, 97, '50', '2016-2020', 'Physiology (medical) (Q3)'), (11312, 'PsyCh Journal', 20460260, 0.417, 'Q3', 14, 94, 4988, 161, 112, '3', '2014-2020', 'Psychology (miscellaneous) (Q3)'), (11313, 'Regional Research of Russia', 20799713, 0.417, 'Q2', 10, 57, 1323, 97, 118, '10', '2011-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2); Publi'), (11314, 'Revista de Derecho Privado', 1234366, 0.417, 'Q2', 4, 46, 2134, 23, 76, '47', '2015-2020', 'Law (Q2)'), (11315, 'Science and Technology of Nuclear Installatio', 16876083, 0.417, 'Q2', 24, 50, 1238, 140, 170, '32', '2008-2020', 'Nuclear Energy and Engineering (Q2)'), (11316, 'Sexual and Relationship Therapy', 14681749, 0.417, 'Q3', 41, 67, 3335, 128, 109, '3', '2000-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (11317, 'Wireless Networks', 10220038, 0.417, 'Q2', 89, 451, 17091, 2307, 803, '16', '1995-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Information Systems (Q2)'), (11318, 'African Journal of Emergency Medicine', 2211419, 0.416, 'Q2', 17, 95, 2165, 328, 122, '27', '2011-2020', 'Critical Care Nursing (Q2); Emergency Medicine (Q2); Emergency Nursing (Q2); Geochemistry and Petrology (Q3); Gerontology (Q3)'), (11319, 'Ardea', 3732266, 0.416, 'Q2', 46, 22, 1123, 55, 56, '16', '1981-1985, 1987, 1990-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (11320, 'Computational Biology and Chemistry', 14769271, 0.416, 'Q3', 60, 189, 10036, 1376, 543, '3', '2003-2020', 'Biochemistry (Q3); Computational Mathematics (Q3); Organic Chemistry (Q3); Structural Biology (Q4)'), (11321, 'Computer Aided Geometric Design', 1678396, 0.416, 'Q2', 69, 92, 2975, 378, 187, '16', '1984-2020', 'Aerospace Engineering (Q2); Automotive Engineering (Q2); Computer Graphics and Computer-Aided Design (Q2); Modeling and Simulation (Q3)'), (11322, 'Electromagnetic Biology and Medicine', 15368386, 0.416, 'Q3', 40, 43, 2052, 199, 92, '3', '1982-2020', 'Biophysics (Q3); Medicine (miscellaneous) (Q3)'), (11323, 'International Journal of Applied Mathematics ', 1641876, 0.416, 'Q2', 47, 64, 2349, 388, 173, '5', '2001-2002, 2006-2020', 'Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Applied Mathematics (Q3)'), (11324, 'Journal of Baltic Science Education', 16483898, 0.416, 'Q2', 17, 77, 3906, 350, 211, '69', '2008-2020', 'Education (Q2)'), (11325, 'Journal of Economic Interaction and Coordinat', 1860711, 0.416, 'Q2', 21, 45, 2089, 147, 80, '5', '2006-2020', 'Business and International Management (Q2); Economics and Econometrics (Q3)'), (11326, 'Journal of Pediatric Ophthalmology and Strabi', 19382405, 0.416, 'Q3', 46, 103, 1262, 238, 248, '2', '1978-2020', 'Medicine (miscellaneous) (Q3); Ophthalmology (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (11327, 'Lingua', 243841, 0.416, 'Q1', 58, 111, 6345, 234, 252, '16', '1949, 1952, 1954-1957, 1959, 1961-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (11328, 'Logic and Logical Philosophy', 23009802, 0.416, 'Q1', 10, 27, 773, 49, 72, '17', '2011-2020', 'Philosophy (Q1)'), (11329, 'Managing Sport and Leisure', 23750480, 0.416, 'Q3', 35, 116, 6512, 150, 78, '3', '2015-2020', 'Tourism, Leisure and Hospitality Management (Q3)'), (11330, 'Materials Discovery', 23529245, 0.416, 'Q2', 12, 0, 0, 126, 31, '3', '2015-2018', 'Information Systems (Q2); Materials Science (miscellaneous) (Q2)'), (11331, 'Optical Switching and Networking', 15734277, 0.416, 'Q2', 29, 33, 1277, 382, 131, '16', '1970, 2005-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2)'), (11332, 'Periodico di Mineralogia', 22391002, 0.416, 'Q3', 27, 16, 650, 84, 56, '7', '1979-1988, 1990-1991, 1994-1997, 1999-2020', 'Geochemistry and Petrology (Q3); Geology (Q3); Geophysics (Q3)'), (11333, 'Personal and Ubiquitous Computing', 16174909, 0.416, 'Q2', 88, 160, 6581, 891, 276, '3', '1997-2020', 'Computer Science Applications (Q2); Hardware and Architecture (Q2); Management Science and Operations Research (Q3)'), (11334, 'Saudi Journal of Anaesthesia', 1658354, 0.416, 'Q2', 24, 161, 1977, 453, 262, '4', '2011-2020', 'Anesthesiology and Pain Medicine (Q2)'), (11335, 'Theoretical and Mathematical Physics(Russian ', 15739333, 0.416, 'Q3', 45, 124, 3121, 457, 393, '10', '1969-2020', 'Mathematical Physics (Q3); Statistical and Nonlinear Physics (Q3)'), (11336, 'Zygote', 14698730, 0.416, 'Q4', 46, 81, 3311, 299, 216, '3', '1993-2020', 'Cell Biology (Q4); Developmental Biology (Q4)'), (11337, 'Applied Spectroscopy', 37028, 0.415, 'Q2', 110, 154, 6649, 1205, 532, '2', '1970-2020', 'Instrumentation (Q2); Spectroscopy (Q3)'), (11338, 'Arabian Journal of Geosciences', 18667538, 0.415, 'Q2', 48, 1285, 58866, 4056, 2126, '5', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2)'), (11339, 'Arquivos de Neuro-Psiquiatria', 16784227, 0.415, 'Q3', 48, 160, 3770, 507, 362, '14', '1945-1965, 1971-2020', 'Neurology (clinical) (Q3); Biological Psychiatry (Q4)'), (11340, 'Bioremediation Journal', 15476529, 0.415, 'Q2', 35, 32, 1730, 118, 34, '3', '1997-2020', 'Environmental Science (miscellaneous) (Q2)'), (11341, 'Bulletin of the American Schools of Oriental ', 21618062, 0.415, 'Q1', 15, 26, 2024, 42, 57, '2', '1979, 2011-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); History (Q1)'), (11342, 'Cardiovascular and Hematological Agents in Me', 18715257, 0.415, 'Q3', 39, 17, 759, 95, 43, '52', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q3); Hematology (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3)'), (11343, 'Epilepsy Currents', 15357511, 0.415, 'Q3', 22, 121, 2308, 265, 187, '2', '2011-2020', 'Neurology (clinical) (Q3)'), (11344, 'Information Processing Letters', 200190, 0.415, 'Q2', 80, 85, 1190, 611, 390, '16', '1971-2020', 'Computer Science Applications (Q2); Information Systems (Q2); Signal Processing (Q2); Theoretical Computer Science (Q3)'), (11345, 'International Journal of Market Research', 14707853, 0.415, 'Q2', 54, 54, 2338, 246, 118, '3', '1996-2020', 'Business and International Management (Q2); Economics and Econometrics (Q3); Marketing (Q3)'), (11346, 'Issues in Accounting Education', 7393172, 0.415, 'Q2', 24, 24, 917, 87, 67, '2', '2009-2020', 'Education (Q2); Accounting (Q3)'), (11347, 'Nursing Science Quarterly', 15527409, 0.415, 'Q2', 36, 69, 1126, 158, 203, '2', '1988-2020', 'Nursing (miscellaneous) (Q2)'), (11348, 'Philosophy, Ethics, and Humanities in Medicin', 17475341, 0.415, 'Q1', 29, 12, 538, 80, 31, '3', '2006-2020', 'History and Philosophy of Science (Q1); Health Policy (Q3); Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3)'), (11349, 'Physica Scripta', 318949, 0.415, 'Q2', 83, 883, 36278, 2195, 860, '3', '1970-2020', 'Physics and Astronomy (miscellaneous) (Q2); Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Mathematical Physics (Q3)'), (11350, 'Sustainable Water Resources Management', 23635045, 0.415, 'Q3', 14, 120, 5688, 426, 265, '19', '2015-2020', 'Renewable Energy, Sustainability and the Environment (Q3); Water Science and Technology (Q3)'), (11351, 'Therapeutic Apheresis and Dialysis', 17449979, 0.415, 'Q3', 53, 169, 3670, 323, 240, '3', '2003-2020', 'Hematology (Q3); Nephrology (Q3)'), (11352, 'Acta Zoologica', 14636395, 0.414, 'Q2', 37, 72, 3717, 127, 108, '3', '1920-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Cell Biology (Q4)'), (11353, 'Australian Feminist Studies', 8164649, 0.414, 'Q2', 27, 20, 943, 85, 92, '3', '1985-2020', 'Gender Studies (Q2)'), (11354, 'Biotribology', 23525738, 0.414, 'Q2', 13, 29, 1189, 146, 66, '3', '2015-2020', 'Surfaces, Coatings and Films (Q2); Biomaterials (Q3)'), (11355, 'Bulletin of the Menninger Clinic', 259284, 0.414, 'Q2', 40, 23, 1152, 56, 58, '2', '1945-2020', 'Psychiatric Mental Health (Q2); Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (11356, 'Canadian Review of Sociology', 17556171, 0.414, 'Q2', 35, 48, 1834, 133, 100, '9', '1964-1995, 2003, 2008-2020', 'Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (11357, 'Civil Wars', 13698249, 0.414, 'Q1', 15, 26, 1838, 84, 66, '2', '2010-2020', 'History (Q1); Political Science and International Relations (Q2)'), (11358, 'Clinical Advances in Hematology and Oncology', 15430790, 0.414, 'Q3', 38, 84, 1671, 272, 230, '2', '2003-2020', 'Hematology (Q3); Medicine (miscellaneous) (Q3); Oncology (Q3)'), (11359, 'Clinical Journal of Gastroenterology', 18657257, 0.414, 'Q3', 17, 227, 5122, 401, 287, '6', '2009-2020', 'Gastroenterology (Q3); Medicine (miscellaneous) (Q3)'), (11360, 'Critical Studies in Media Communication', 14795809, 0.414, 'Q2', 46, 34, 1517, 243, 96, '3', '1996-2020', 'Communication (Q2)'), (11361, 'Development Studies Research', 21665095, 0.414, 'Q2', 12, 13, 754, 51, 31, '3', '2014-2020', 'Development (Q2)'), (11362, 'Empiria', 21740682, 0.414, 'Q2', 7, 30, 1581, 61, 64, '12', '2013-2020', 'Social Sciences (miscellaneous) (Q2)'), (11363, 'Empirical Research in Vocational Education an', 18776337, 0.414, 'Q2', 13, 18, 1010, 88, 42, '2', '2009-2020', 'Education (Q2)'), (11364, 'Forum for Health Economics and Policy', 21946191, 0.414, 'Q2', 5, 3, 166, 13, 18, '5', '2014-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Health Policy (Q3)'), (11365, 'Genetica', 166707, 0.414, 'Q2', 87, 26, 1632, 180, 139, '16', '1919-1941, 1943, 1949-2020', 'Animal Science and Zoology (Q2); Plant Science (Q2); Insect Science (Q3); Medicine (miscellaneous) (Q3); Genetics (Q4)'), (11366, 'High Performance Polymers', 9540083, 0.414, 'Q2', 41, 145, 5440, 740, 381, '3', '1989-2020', 'Materials Chemistry (Q2); Polymers and Plastics (Q2); Organic Chemistry (Q3)'), (11367, 'International Journal of Artificial Organs', 3913988, 0.414, 'Q3', 58, 146, 4059, 394, 237, '7', '1978-2020', 'Bioengineering (Q3); Biomaterials (Q3); Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)'), (11368, 'International Journal of Geometric Methods in', 2198878, 0.414, 'Q2', 39, 239, 10022, 1402, 638, '37', '2005-2020', 'Physics and Astronomy (miscellaneous) (Q2)'), (11369, 'Journal of Basic and Clinical Physiology and ', 21910286, 0.414, 'Q3', 33, 150, 6236, 404, 228, '5', '1985-1988, 1990-2020', 'Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Physiology (Q4)'), (11370, 'Journal of Petroleum Exploration and Producti', 21900558, 0.414, 'Q2', 27, 339, 12076, 1022, 453, '5', '2011-2020', 'Energy (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q3)'), (11371, 'Journal of the American Association of Nurse ', 23276886, 0.414, 'Q2', 19, 151, 997, 401, 327, '3', '2013-2020', 'Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (11372, 'Journal of Water Sanitation and Hygiene for D', 20439083, 0.414, 'Q2', 22, 98, 3348, 310, 218, '3', '2011-2020', 'Development (Q2); Pollution (Q3); Public Health, Environmental and Occupational Health (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3)'), (11373, 'Occupational Therapy International', 15570703, 0.414, 'Q2', 37, 37, 1347, 133, 87, '32', '1994-2020', 'Occupational Therapy (Q2); Medicine (miscellaneous) (Q3)'), (11374, 'Processes', 22279717, 0.414, 'Q2', 28, 1678, 86196, 3871, 1234, '19', '2013-2020', 'Chemical Engineering (miscellaneous) (Q2); Bioengineering (Q3); Process Chemistry and Technology (Q3)'), (11375, 'Psychiatria Polska', 332674, 0.414, 'Q3', 22, 60, 2302, 408, 253, '17', '1967-2020', 'Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (11376, 'Quarterly Journal of Nuclear Medicine and Mol', 18244785, 0.414, 'Q3', 61, 42, 2374, 213, 120, '7', '2000, 2004-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (11377, 'Siberian Advances in Mathematics', 10551344, 0.414, 'Q3', 11, 20, 375, 26, 53, '10', '2008-2020', 'Mathematics (miscellaneous) (Q3)'), (11378, 'Zhurnal Issledovanii Sotsial noi Politiki', 17270634, 0.414, 'Q2', 6, 43, 1125, 78, 132, '10', '2016-2020', 'Public Administration (Q2); Sociology and Political Science (Q2)'), (11379, 'Applied Stochastic Models in Business and Ind', 15264025, 0.413, 'Q2', 40, 102, 2856, 422, 197, '3', '1999-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Management Science and Operations Research (Q3); Modeling and Simulation (Q3)'), (11380, 'Artificial Intelligence for Engineering Desig', 8900604, 0.413, 'Q2', 53, 42, 1944, 232, 106, '3', '1987-2020', 'Industrial and Manufacturing Engineering (Q2); Artificial Intelligence (Q3)'), (11381, 'Baltic Journal of Coleopterology', 14078619, 0.413, 'Q3', 14, 29, 375, 41, 82, '77', '2003-2019', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (11382, 'Current Fungal Infection Reports', 19363761, 0.413, 'Q3', 24, 42, 2984, 121, 95, '2', '2008-2020', 'Infectious Diseases (Q3)'), (11383, 'Economic Change and Restructuring', 15740277, 0.413, 'Q3', 20, 62, 3807, 147, 55, '16', '1996-2002, 2005-2020', 'Economics and Econometrics (Q3)'), (11384, 'Endokrynologia Polska', 423104, 0.413, 'Q3', 27, 100, 2491, 325, 208, '17', '1961-1989, 1991-1993, 2005-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)'), (11385, 'Functional Analysis and its Applications', 15738485, 0.413, 'Q3', 28, 24, 324, 91, 116, '2', '1967-2020', 'Analysis (Q3); Applied Mathematics (Q3)'), (11386, 'Gender and Language', 1747633, 0.413, 'Q1', 9, 19, 831, 73, 66, '3', '2013-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1); Gender Studies (Q2)'), (11387, 'Hiroshima Mathematical Journal', 182079, 0.413, 'Q3', 12, 20, 352, 43, 56, '6', '1959, 1961-1995, 2008-2020', 'Algebra and Number Theory (Q3); Analysis (Q3); Geometry and Topology (Q3)'), (11388, 'Infants and Young Children', 8963746, 0.413, 'Q3', 44, 25, 1080, 73, 55, '2', '1988-2020', 'Developmental and Educational Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3)'), (11389, 'Investigations in Mathematics Learning', 19477503, 0.413, 'Q2', 8, 26, 997, 39, 48, '2', '2008-2020', 'Education (Q2); Mathematics (miscellaneous) (Q3)'), (11390, 'Journal of Economic Asymmetries', 17034949, 0.413, 'Q2', 12, 44, 2019, 137, 53, '16', '2013-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11391, 'Journal of Equine Veterinary Science', 15427412, 0.413, 'Q3', 39, 284, 10023, 844, 622, '3', '1981-2020', 'Equine (Q3)'), (11392, 'Journal of Molecular Spectroscopy', 222852, 0.413, 'Q3', 69, 77, 2959, 585, 345, '2', '1957-2020', 'Atomic and Molecular Physics, and Optics (Q3); Physical and Theoretical Chemistry (Q3); Spectroscopy (Q3)'), (11393, 'Natural Computing', 15677818, 0.413, 'Q2', 40, 81, 3104, 392, 161, '16', '2003-2020', 'Computer Science Applications (Q2)'), (11394, 'Nephron Extra', 16645529, 0.413, 'Q3', 7, 0, 0, 22, 10, '19', '2015-2018', 'Nephrology (Q3)'), (11395, 'PDA Journal of Pharmaceutical Science and Tec', 19482124, 0.413, 'Q2', 38, 58, 163, 133, 145, '2', '1994-2020', 'Pharmaceutical Science (Q2)'), (11396, 'Postepy Dermatologii I Alergologii', 1642395, 0.413, 'Q3', 25, 133, 4614, 521, 274, '17', '2005-2020', 'Dermatology (Q3); Immunology and Allergy (Q3)'), (11397, 'Proceedings of the Entomological Society of W', 138797, 0.413, 'Q3', 28, 87, 2123, 127, 184, '2', '1981, 1993-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (11398, 'Revista Brasileira de Ginecologia e Obstetric', 18069339, 0.413, 'Q3', 23, 133, 3582, 398, 306, '14', '2006-2020', 'Obstetrics and Gynecology (Q3)'), (11399, 'Russian Journal of Linguistics', 26868024, 0.413, 'Q1', 5, 43, 1925, 73, 102, '10', '2018-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (11400, 'Southeastern Europe', 944467, 0.413, 'Q1', 9, 15, 922, 34, 42, '16', '1976-1980, 1983-1990, 2002, 2007, 2009-2019', 'Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11401, 'Acta Virologica', 13362305, 0.412, 'Q3', 33, 57, 725, 219, 171, '53', '1957-2020', 'Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Virology (Q4)'), (11402, 'Bird Study', 63657, 0.412, 'Q3', 49, 47, 2234, 181, 201, '3', '1954-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3)'), (11403, 'Curved and Layered Structures', 23537396, 0.412, 'Q1', 16, 20, 711, 120, 60, '17', '2014-2020', 'Architecture (Q1); Aerospace Engineering (Q2); Building and Construction (Q2); Computational Mechanics (Q2); Safety, Risk, Reliability and Quality (Q2); Civil and Structural Engineering (Q3); Mechanic'), (11404, 'Fisheries Science', 9199268, 0.412, 'Q3', 64, 107, 4366, 409, 310, '2', '1994-2020', 'Aquatic Science (Q3)'), (11405, 'FME Transactions', 14512092, 0.412, 'Q2', 23, 134, 3572, 586, 301, '55', '2008-2020', 'Mechanical Engineering (Q2); Mechanics of Materials (Q3)'), (11406, 'Forests Trees and Livelihoods', 14728028, 0.412, 'Q2', 26, 19, 621, 82, 52, '3', '1999-2020', 'Forestry (Q2)'), (11407, 'Geo-Marine Letters', 2760460, 0.412, 'Q2', 56, 79, 4574, 192, 119, '5', '1981-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Geotechnical Engineering and Engineering Geology (Q3); Oceanography (Q3)'), (11408, 'Geopolitics, History, and International Relat', 23744383, 0.412, 'Q1', 10, 20, 625, 120, 59, '2', '2017-2020', 'History (Q1); Political Science and International Relations (Q2)'), (11409, 'Georgetown Law Journal', 168092, 0.412, 'Q2', 47, 0, 0, 96, 84, '2', '1973-1974, 1976-1977, 1979, 1981, 1983-1986, 1988, 1992, 1994-2019', 'Law (Q2)'), (11410, 'Hematology, Transfusion and Cell Therapy', 25311387, 0.412, 'Q3', 23, 154, 3190, 245, 180, '14', '2018-2020', 'Hematology (Q3); Immunology and Allergy (Q3)'), (11411, 'International Review of Neurobiology', 747742, 0.412, 'Q3', 79, 74, 8012, 945, 16, '2', '1959-1972, 1974-1977, 1979, 1981-1986, 1988-1990, 1992-2020', 'Neurology (clinical) (Q3); Cellular and Molecular Neuroscience (Q4)'), (11412, 'Journal of Chinese Economic and Business Stud', 14765284, 0.412, 'Q2', 15, 29, 780, 86, 65, '2', '2010-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11413, 'Journal of Health and Pollution', 21569614, 0.412, 'Q3', 9, 50, 2244, 230, 114, '2', '2017-2020', 'Health, Toxicology and Mutagenesis (Q3); Pollution (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11414, 'Journal of Material Culture', 13591835, 0.412, 'Q1', 47, 25, 1438, 83, 74, '3', '1996-2020', 'Anthropology (Q1); Archeology (Q1); Arts and Humanities (miscellaneous) (Q2)'), (11415, 'Journal of Motor Behavior', 222895, 0.412, 'Q3', 70, 101, 4884, 257, 205, '2', '1969-2020', 'Biophysics (Q3); Experimental and Cognitive Psychology (Q3); Orthopedics and Sports Medicine (Q3); Sports Science (Q3); Cognitive Neuroscience (Q4)'), (11416, 'Nanomaterials and Nanotechnology', 18479804, 0.412, 'Q2', 21, 26, 1183, 174, 71, '3', '2011-2020', 'Ceramics and Composites (Q2); Electrical and Electronic Engineering (Q2); Biotechnology (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (11417, 'Nova Hedwigia', 14389134, 0.412, 'Q2', 40, 47, 2268, 175, 190, '5', '1993-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (11418, 'Orthopedic Reviews', 20358164, 0.412, 'Q3', 13, 66, 2328, 106, 91, '7', '2013-2020', 'Orthopedics and Sports Medicine (Q3)'), (11419, 'Research in Comparative and International Edu', 17454999, 0.412, 'Q2', 18, 29, 1401, 122, 87, '3', '2009-2020', 'Education (Q2)'), (11420, 'SPE Drilling and Completion', 10646671, 0.412, 'Q2', 44, 45, 1399, 204, 93, '2', '1993-2020', 'Energy Engineering and Power Technology (Q2); Mechanical Engineering (Q2)'), (11421, 'Acta Geologica Polonica', 15709, 0.411, 'Q3', 36, 18, 1939, 94, 87, '17', '1981, 1984-1988, 1990-2020', 'Geology (Q3)'), (11422, 'Atmospheric and Oceanic Optics', 10248560, 0.411, 'Q2', 18, 97, 2731, 453, 287, '10', '2009-2020', 'Earth-Surface Processes (Q2); Atmospheric Science (Q3); Atomic and Molecular Physics, and Optics (Q3); Oceanography (Q3)'), (11423, 'Australian Journal of Career Development', 22006974, 0.411, 'Q2', 10, 21, 1112, 59, 56, '3', '2012-2020', 'Education (Q2); Organizational Behavior and Human Resource Management (Q3)'), (11424, 'Bulletin of Irkutsk State University, Series ', 25418785, 0.411, 'Q3', 3, 26, 408, 27, 40, '10', '2019-2020', 'Mathematics (miscellaneous) (Q3)'), (11425, 'China Foundry', 16726421, 0.411, 'Q2', 18, 58, 1612, 259, 187, '37', '2008-2020', 'Materials Chemistry (Q2); Metals and Alloys (Q2)'), (11426, 'Diabetology International', 21901686, 0.411, 'Q3', 17, 54, 2305, 147, 104, '6', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3)'), (11427, 'EuPA Open Proteomics', 22129685, 0.411, 'Q3', 17, 1, 39, 27, 15, '16', '2013-2019', 'Biochemistry (Q3)'), (11428, 'International Journal of Bio-Inspired Computa', 17580374, 0.411, 'Q2', 38, 47, 1716, 406, 134, '19', '2009-2014, 2017, 2020', 'Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q3)'), (11429, 'International Journal of Information Systems ', 21827788, 0.411, 'Q2', 13, 17, 986, 140, 49, '26', '2013-2020', 'Information Systems and Management (Q2); Management Information Systems (Q2); Strategy and Management (Q2)'), (11430, 'International Journal of Vascular Medicine', 20902824, 0.411, 'Q3', 27, 19, 493, 50, 33, '32', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (11431, 'Journal of International Food and Agribusines', 8974438, 0.411, 'Q2', 23, 51, 3028, 133, 65, '2', '1989-2020', 'Business and International Management (Q2); Food Science (Q3); Marketing (Q3)'), (11432, 'Journal of Reliable Intelligent Environments', 21994668, 0.411, 'Q2', 11, 24, 1076, 126, 47, '19', '2015-2020', 'Computer Science (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3)'), (11433, 'Latin American Journal of Sedimentology and B', 18514979, 0.411, 'Q3', 16, 3, 164, 32, 26, '46', '2005-2020', 'Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)'), (11434, 'North American Fungi', 1937786, 0.411, 'Q2', 11, 0, 0, 4, 5, '2', '2010-2018', 'Plant Science (Q2)'), (11435, 'Physics Teacher', 31921, 0.411, 'Q2', 38, 182, 1968, 363, 489, '2', '1983, 1996-2020', 'Education (Q2); Physics and Astronomy (miscellaneous) (Q2)'), (11436, 'Proceedings of the Institution of Mechanical ', 20412983, 0.411, 'Q2', 59, 695, 25559, 2439, 1268, '3', '1983-2020', 'Mechanical Engineering (Q2)'), (11437, 'Study Abroad Research in Second Language Acqu', 24055530, 0.411, 'Q1', 2, 11, 604, 8, 17, '16', '2018-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (11438, 'Yonago Acta Medica', 5135710, 0.411, 'Q3', 18, 53, 1313, 187, 120, '6', '1965-1977, 1986-2020', 'Medicine (miscellaneous) (Q3)'), (11439, 'Annali dell Universita di Ferrara', 18271510, 0.41, 'Q3', 21, 25, 614, 67, 73, '7', '1950, 1952-1959, 1961-1962, 1967-1973, 1975-1991, 1993-2020', 'Mathematics (miscellaneous) (Q3)'), (11440, 'Applied Animal Science', 25902873, 0.41, 'Q2', 34, 93, 3768, 270, 229, '2', '2019-2020', 'Animal Science and Zoology (Q2); Food Science (Q3)'), (11441, 'Arab Journal of Basic and Applied Sciences', 25765299, 0.41, 'Q2', 24, 42, 2152, 447, 137, '3', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Energy (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q2); Materials Science (miscellaneous) (Q'), (11442, 'Boreal Environment Research', 12396095, 0.41, 'Q2', 56, 9, 410, 70, 56, '38', '1996-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Atmospheric Science (Q3); Ecological Modeling (Q3); Pollution (Q3)'), (11443, 'Crime, Law and Social Change', 15730751, 0.41, 'Q2', 46, 60, 3781, 320, 183, '16', '1991-2020', 'Law (Q2); Social Sciences (miscellaneous) (Q2); Pathology and Forensic Medicine (Q3)'), (11444, 'Electronic Journal of Information Systems in ', 16814835, 0.41, 'Q2', 18, 39, 2365, 279, 136, '1', '2012-2020', 'Information Systems (Q2); E-learning (Q3)'), (11445, 'Heat Transfer - Asian Research', 15231496, 0.41, 'Q2', 30, 59, 2446, 858, 386, '2', '1996-2020', 'Fluid Flow and Transfer Processes (Q2); Condensed Matter Physics (Q3)'), (11446, 'Insights: the UKSG Journal', 20487754, 0.41, 'Q2', 14, 26, 546, 79, 97, '3', '2012-2020', 'Library and Information Sciences (Q2)'), (11447, 'International Journal of Immunogenetics', 1744313, 0.41, 'Q3', 47, 53, 2414, 155, 129, '3', '1974-1996, 2005-2020', 'Medicine (miscellaneous) (Q3); Genetics (Q4); Genetics (clinical) (Q4); Immunology (Q4); Molecular Biology (Q4)'), (11448, 'International Journal of Information Technolo', 2196220, 0.41, 'Q2', 42, 61, 4664, 486, 190, '37', '2002, 2005-2020', 'Computer Science (miscellaneous) (Q2)'), (11449, 'International Journal of Speleology', 1827806, 0.41, 'Q2', 32, 19, 1081, 136, 84, '7', '2007-2020', 'Earth-Surface Processes (Q2); Geology (Q3)'), (11450, 'Journal for Advancement of Marketing Educatio', 15375137, 0.41, 'Q2', 8, 6, 417, 30, 26, '2', '2012-2020', 'Education (Q2); Marketing (Q3)'), (11451, 'Journal for Critical Education Policy Studies', 17402743, 0.41, 'Q2', 9, 28, 1814, 61, 78, '3', '2015-2020', 'Education (Q2)'), (11452, 'Journal of Architectural Engineering', 10760431, 0.41, 'Q1', 35, 69, 2381, 241, 140, '2', '1995-2020', 'Architecture (Q1); Visual Arts and Performing Arts (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q3)'), (11453, 'Journal of Bio- and Tribo-Corrosion', 21984220, 0.41, 'Q2', 18, 135, 6040, 648, 230, '19', '2015-2020', 'Materials Chemistry (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Metals and Alloys (Q2); Mechanics of Materials (Q3)'), (11454, 'Journal of Chinese Political Science', 10806954, 0.41, 'Q2', 19, 36, 2114, 122, 94, '16', '1995-1996, 2003, 2008-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11455, 'Journal of Freshwater Ecology', 2705060, 0.41, 'Q3', 35, 33, 1915, 180, 144, '3', '1981-2020', 'Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (11456, 'Journal of International Trade and Economic D', 9638199, 0.41, 'Q2', 31, 53, 2578, 245, 144, '3', '1992-2020', 'Aerospace Engineering (Q2); Development (Q2); Geography, Planning and Development (Q2)'), (11457, 'Journal of Nutritional Science and Vitaminolo', 18817742, 0.41, 'Q3', 56, 172, 4670, 370, 239, '6', '1973-2020', 'Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)'), (11458, 'Journal of Space Safety Engineering', 24688975, 0.41, 'Q2', 6, 79, 1477, 68, 77, '3', '2014-2020', 'Aerospace Engineering (Q2); Safety, Risk, Reliability and Quality (Q2)'), (11459, 'Journal of Thermal Science and Engineering Ap', 19485093, 0.41, 'Q2', 27, 50, 1578, 431, 298, '2', '2009-2021', 'Engineering (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q2); Materials Science (miscellaneous) (Q2); Condensed Matter Physics (Q3)'), (11460, 'Michigan Law Review', 262234, 0.41, 'Q2', 51, 34, 20, 69, 56, '2', '1974-1980, 1982-1983, 1991, 1993-2020', 'Law (Q2)'), (11461, 'New Zealand Journal of Geology, and Geophysic', 288306, 0.41, 'Q2', 54, 51, 3835, 166, 106, '3', '1958-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geology (Q3); Geophysics (Q3)'), (11462, 'Pediatric Annals', 904481, 0.41, 'Q3', 34, 106, 2157, 335, 250, '2', '1974-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (11463, 'Prehled Vyzkumu', 12117250, 0.41, 'Q1', 3, 10, 363, 21, 35, '31', '2017-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (11464, 'Radiological Physics and Technology', 18650341, 0.41, 'Q2', 20, 49, 1173, 296, 163, '6', '2008-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q2); Medicine (miscellaneous) (Q3); Radiation (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11465, 'Smart Health', 23526483, 0.41, 'Q2', 9, 28, 1456, 210, 69, '16', '2018-2020', 'Information Systems (Q2); Computer Science Applications (Q3); Health Informatics (Q3); Health Information Management (Q3); Medicine (miscellaneous) (Q3)'), (11466, 'Turk Jinekoloji ve Obstetrik Dernegi Dergisi', 13054252, 0.41, 'Q3', 9, 27, 616, 163, 117, '18', '2009-2020', 'Obstetrics and Gynecology (Q3)'), (11467, 'Washington Quarterly', 15309177, 0.41, 'Q2', 46, 39, 0, 136, 119, '3', '1978-2020', 'Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11468, 'Air, Soil and Water Research', 11786221, 0.409, 'Q2', 12, 40, 2679, 103, 43, '2', '2008-2020', 'Environmental Science (miscellaneous) (Q2)'), (11469, 'AJOB Neuroscience', 21507740, 0.409, 'Q4', 27, 72, 1317, 97, 26, '2', '2010-2020', 'Neuroscience (miscellaneous) (Q4)'), (11470, 'Ardeola', 5707358, 0.409, 'Q2', 26, 25, 1343, 59, 52, '12', '1980-1981, 1987, 1996-2010, 2012-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (11471, 'Computing (Vienna/New York)', 14365057, 0.409, 'Q2', 60, 125, 4787, 593, 198, '28', '1966-2020', 'Software (Q2); Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Numerical Analysis (Q3); Theoretical Computer Science (Q3)'), (11472, 'Enfermedades Infecciosas y Microbiologia Clin', 213005, 0.409, 'Q3', 42, 258, 4539, 534, 490, '12', '1989-2020', 'Microbiology (medical) (Q3)'), (11473, 'ESAIM - Probability and Statistics', 12928100, 0.409, 'Q3', 30, 41, 1158, 74, 66, '8', '1997-2020', 'Statistics and Probability (Q3)'), (11474, 'Exploration Geophysics', 18347533, 0.409, 'Q3', 43, 91, 3006, 178, 187, '11', '1970-2020', 'Geology (Q3); Geophysics (Q3)'), (11475, 'Health Promotion Perspectives', 22286497, 0.409, 'Q2', 8, 45, 1698, 165, 87, '15', '2018-2020', 'Education (Q2); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11476, 'Herpetological Journal', 2680130, 0.409, 'Q2', 38, 31, 1499, 96, 98, '3', '1987, 1994-2020', 'Animal Science and Zoology (Q2); Ecological Modeling (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3)'), (11477, 'International Journal for Research in Vocatio', 21978646, 0.409, 'Q2', 10, 17, 925, 57, 48, '5', '2014-2020', 'Education (Q2)'), (11478, 'International Journal of Disability, Developm', 1465346, 0.409, 'Q2', 41, 171, 7999, 237, 142, '3', '1989-2020', 'Education (Q2); Developmental and Educational Psychology (Q3); Health Professions (miscellaneous) (Q3); Health (social science) (Q3)'), (11479, 'International Journal of Economic Policy in E', 17520452, 0.409, 'Q3', 13, 51, 2116, 176, 100, '19', '2007, 2011-2014, 2016, 2018-2020', 'Economics and Econometrics (Q3)'), (11480, 'International Journal of Offshore and Polar E', 10535381, 0.409, 'Q2', 40, 54, 1255, 166, 153, '2', '1991-2020', 'Mechanical Engineering (Q2); Ocean Engineering (Q2); Civil and Structural Engineering (Q3)'), (11481, 'International Studies of Management and Organ', 208825, 0.409, 'Q2', 22, 16, 1142, 155, 72, '3', '2009-2020', 'Business and International Management (Q2); Strategy and Management (Q2)'), (11482, 'Iranian Journal of Nursing and Midwifery Rese', 17359066, 0.409, 'Q2', 19, 83, 2498, 331, 246, '4', '2015-2016, 2018-2020', 'Advanced and Specialized Nursing (Q2); Assessment and Diagnosis (Q2); Maternity and Midwifery (Q2); Nursing (miscellaneous) (Q2); Issues, Ethics and Legal Aspects (Q3)'), (11483, 'IZA Journal of Migration', 21939039, 0.409, 'Q1', 16, 0, 0, 14, 6, '3', '2012-2017', 'Anthropology (Q1); Demography (Q2); Sociology and Political Science (Q2)'), (11484, 'Journal of Contemporary European Studies', 14782790, 0.409, 'Q1', 20, 64, 4021, 128, 92, '3', '2007-2020', 'Cultural Studies (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11485, 'Journal of Extra-Corporeal Technology', 221058, 0.409, 'Q3', 33, 45, 0, 179, 122, '2', '1975-2020', 'Cardiology and Cardiovascular Medicine (Q3); Health Professions (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (11486, 'Journal of Family Studies', 13229400, 0.409, 'Q2', 22, 107, 5817, 155, 106, '3', '1995, 1997-2002, 2005-2020', 'Social Sciences (miscellaneous) (Q2)'), (11487, 'Led i Sneg', 20766734, 0.409, 'Q2', 5, 24, 593, 92, 139, '10', '2017-2020', 'Earth-Surface Processes (Q2); Geochemistry and Petrology (Q3); Global and Planetary Change (Q3); Water Science and Technology (Q3)'), (11488, 'Natura Croatica', 13300520, 0.409, 'Q3', 20, 22, 712, 53, 87, '58', '1992-2019', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (11489, 'Signal, Image and Video Processing', 18631711, 0.409, 'Q2', 42, 216, 6474, 1303, 569, '3', '2007-2020', 'Electrical and Electronic Engineering (Q2); Signal Processing (Q2)'), (11490, 'SOCAR Proceedings', 22186867, 0.409, 'Q2', 11, 45, 1037, 82, 113, '92', '2010-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Energy (miscellaneous) (Q2); Applied Mathematics (Q3); Fuel Technology (Q3); Ge'), (11491, 'Social Influence', 15534529, 0.409, 'Q3', 27, 6, 164, 48, 43, '3', '2007-2020', 'Social Psychology (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (11492, 'Curationis', 3798577, 0.408, 'Q3', 21, 22, 0, 138, 84, '27', '1978-2020', 'Medicine (miscellaneous) (Q3)'), (11493, 'Ethical Theory and Moral Practice', 13862820, 0.408, 'Q1', 26, 63, 2214, 210, 193, '16', '1999-2002, 2004-2020', 'Philosophy (Q1); Social Sciences (miscellaneous) (Q2)'), (11494, 'Gold Bulletin', 171557, 0.408, 'Q2', 59, 19, 551, 137, 72, '5', '1971-2020', 'Materials Science (miscellaneous) (Q2); Inorganic Chemistry (Q3)'), (11495, 'Home Health Care Services Quarterly', 1621424, 0.408, 'Q2', 28, 17, 526, 62, 50, '2', '1979-2020', 'Community and Home Care (Q2); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11496, 'Human Factors and Ergonomics In Manufacturing', 10908471, 0.408, 'Q2', 39, 36, 1661, 207, 106, '2', '1996-2020', 'Industrial and Manufacturing Engineering (Q2); Human Factors and Ergonomics (Q3)'), (11497, 'International Journal of Healthcare Managemen', 20479700, 0.408, 'Q2', 14, 210, 7782, 435, 182, '3', '2014-2020', 'Leadership and Management (Q2); Health Policy (Q3)'), (11498, 'International Journal of Health Care Quality ', 9526862, 0.408, 'Q2', 47, 29, 1179, 382, 261, '3', '1988-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Health Policy (Q3)'), (11499, 'JBIS - Journal of the British Interplanetary ', 7084, 0.408, 'Q2', 26, 55, 1381, 109, 164, '3', '1968-1971, 1974-1990, 1992-1993, 1995-2019', 'Aerospace Engineering (Q2); Space and Planetary Science (Q3)'), (11500, 'Journal of Cross-Cultural Gerontology', 1693816, 0.408, 'Q3', 42, 28, 1321, 114, 78, '2', '1986-2020', 'Geriatrics and Gerontology (Q3); Health (social science) (Q3)'), (11501, 'Journal of Humanistic Psychology', 1552650, 0.408, 'Q1', 34, 107, 4582, 269, 166, '2', '1961-2020', 'Philosophy (Q1); Sociology and Political Science (Q2); Social Psychology (Q3)'), (11502, 'Journal of Stomatology, Oral and Maxillofacia', 24687855, 0.408, 'Q3', 19, 232, 5622, 371, 319, '16', '2017-2020', 'Oral Surgery (Q3); Otorhinolaryngology (Q3); Surgery (Q3)'), (11503, 'Journal of Teacher Education for Sustainabili', 16914147, 0.408, 'Q2', 15, 11, 418, 110, 61, '17', '2007-2020', 'Education (Q2)'), (11504, 'Journal of the American Academy of Psychiatry', 19433662, 0.408, 'Q3', 56, 108, 2098, 185, 148, '2', '1997-2020', 'Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3)'), (11505, 'Journal of the American Society for Horticult', 31062, 0.408, 'Q2', 80, 39, 1830, 175, 148, '2', '1974-1981, 1983-1989, 1991, 1993-2020', 'Horticulture (Q2); Genetics (Q4)'), (11506, 'Metallurgist', 260894, 0.408, 'Q2', 20, 143, 2341, 434, 500, '2', '1957-2020', 'Materials Chemistry (Q2); Metals and Alloys (Q2); Condensed Matter Physics (Q3); Mechanics of Materials (Q3)'), (11507, 'Mitochondrial DNA Part A: DNA Mapping, Sequen', 24701394, 0.408, 'Q4', 13, 41, 2009, 578, 478, '3', '2016-2020', 'Genetics (Q4); Molecular Biology (Q4)'), (11508, 'Open Access Emergency Medicine', 11791500, 0.408, 'Q2', 14, 56, 1842, 119, 78, '41', '2010-2020', 'Emergency Medicine (Q2); Emergency Nursing (Q2)'), (11509, 'Open Linguistics', 23009969, 0.408, 'Q1', 8, 36, 1849, 81, 108, '5', '2015-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (11510, 'Rivista di Psichiatria', 356484, 0.408, 'Q3', 19, 65, 2705, 185, 130, '7', '1975-1982, 1988-2020', 'Psychiatry and Mental Health (Q3)'), (11511, 'South African Journal of Education', 20763433, 0.408, 'Q2', 27, 87, 3629, 271, 193, '27', '2003, 2008-2020', 'Education (Q2)'), (11512, 'Surface Topography: Metrology and Properties', 2051672, 0.408, 'Q2', 23, 117, 4754, 418, 184, '3', '2013-2020', 'Instrumentation (Q2); Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2); Process Chemistry and Technology (Q3)'), (11513, 'Willdenowia', 5119618, 0.408, 'Q2', 15, 14, 1187, 92, 98, '5', '1985-1989, 1991-1997, 2011-2020', 'Plant Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (11514, 'Xinxing Tan Cailiao/New Carbon Materials', 10078827, 0.408, 'Q2', 38, 80, 3229, 460, 217, '1', '2004-2020', 'Materials Science (miscellaneous) (Q2)'), (11515, 'Applied Network Science', 23648228, 0.407, 'Q1', 13, 96, 4689, 513, 213, '3', '2016-2020', 'Multidisciplinary (Q1); Computer Networks and Communications (Q2); Computational Mathematics (Q3)'), (11516, 'Aquatic Ecosystem Health and Management', 15394077, 0.407, 'Q3', 41, 47, 1375, 149, 127, '3', '1998-2020', 'Aquatic Science (Q3); Ecology (Q3); Management, Monitoring, Policy and Law (Q3)'), (11517, 'Development Southern Africa', 14703637, 0.407, 'Q2', 41, 104, 5541, 218, 155, '3', '1984-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (11518, 'Game Studies', 16047982, 0.407, 'Q1', 27, 0, 0, 21, 21, '33', '2002-2006, 2008-2018', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Applied Mathematics (Q3); Statistics, Probability and Uncertainty (Q3)'), (11519, 'International Journal of Injury Control and S', 17457300, 0.407, 'Q2', 35, 75, 2879, 262, 154, '3', '2005-2020', 'Safety Research (Q2); Public Health, Environmental and Occupational Health (Q3)'), (11520, 'International Journal of Molecular and Cellul', 22519645, 0.407, 'Q3', 11, 19, 1098, 139, 89, '15', '2016-2020', 'Biochemistry (Q3); Biotechnology (Q3); Cell Biology (Q4); Genetics (Q4); Molecular Biology (Q4); Molecular Medicine (Q4)'), (11521, 'International Review of Education', 15730638, 0.407, 'Q2', 36, 43, 2071, 205, 105, '16', '1955-2020', 'Education (Q2); E-learning (Q3)'), (11522, 'Journal of Analytical Methods in Chemistry', 20908873, 0.407, 'Q2', 25, 105, 3791, 698, 332, '2', '2012-2020', 'Chemical Engineering (miscellaneous) (Q2); Instrumentation (Q2); Analytical Chemistry (Q3); Computer Science Applications (Q3)'), (11523, 'Journal of Child Psychotherapy', 14699370, 0.407, 'Q3', 23, 19, 425, 39, 61, '3', '1963-2020', 'Clinical Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3)'), (11524, 'Journal of Ethnicity in Substance Abuse', 15332659, 0.407, 'Q3', 29, 121, 6163, 173, 127, '2', '2002-2020', 'Health (social science) (Q3); Medicine (miscellaneous) (Q3)'), (11525, 'Journal of Facade Design and Engineering', 22133038, 0.407, 'Q1', 6, 7, 136, 83, 62, '16', '2017-2019', 'Architecture (Q1); Building and Construction (Q2); Civil and Structural Engineering (Q3)'), (11526, 'Journal of Pharmacy Practice', 8971900, 0.407, 'Q2', 28, 259, 6302, 480, 330, '2', '1988-2020', 'Pharmacy (Q2); Pharmacology (medical) (Q3)'), (11527, 'Journal of Physics Communications', 23996528, 0.407, 'Q3', 17, 223, 8324, 1024, 577, '2', '2017-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (11528, 'Journal of Pressure Vessel Technology, Transa', 949930, 0.407, 'Q2', 49, 51, 1336, 369, 319, '2', '1974-2020', 'Mechanical Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Mechanics of Materials (Q3)'), (11529, 'Journal of Strain Analysis for Engineering De', 3093247, 0.407, 'Q2', 51, 40, 1482, 251, 145, '3', '1965-2020', 'Mechanical Engineering (Q2); Applied Mathematics (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3)'), (11530, 'Journal of Women and Aging', 15407322, 0.407, 'Q2', 35, 78, 3642, 186, 122, '2', '1989-2020', 'Gender Studies (Q2); Geriatrics and Gerontology (Q3)'), (11531, 'RMLE Online', 19404476, 0.407, 'Q2', 16, 10, 369, 33, 30, '3', '2002-2020', 'Education (Q2)'), (11532, 'Adsorption', 15728757, 0.406, 'Q2', 73, 117, 5610, 603, 303, '16', '1995-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Surfaces and Interfaces (Q3)'), (11533, 'Analytical Chemistry Insights', 11773901, 0.406, 'Q2', 17, 0, 0, 40, 14, '41', '2008-2018', 'Medical Laboratory Technology (Q2); Analytical Chemistry (Q3); Biochemistry (Q3)'), (11534, 'Biocontrol Science', 18840205, 0.406, 'Q3', 24, 22, 660, 123, 98, '6', '1996-2020', 'Applied Microbiology and Biotechnology (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11535, 'China Review', 16802012, 0.406, 'Q1', 19, 35, 2284, 79, 63, '1', '2005-2020', 'Cultural Studies (Q1)'), (11536, 'Computational and Theoretical Chemistry', 2210271, 0.406, 'Q3', 89, 204, 10083, 1359, 802, '16', '2011-2020', 'Biochemistry (Q3); Condensed Matter Physics (Q3); Physical and Theoretical Chemistry (Q3)'), (11537, 'Corrosion Engineering Science and Technology', 1478422, 0.406, 'Q2', 41, 106, 3574, 455, 266, '3', '2003-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2)'), (11538, 'Frontiers of Computer Science', 20952228, 0.406, 'Q2', 35, 96, 3587, 618, 250, '2', '2013-2021', 'Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q3)'), (11539, 'Frontiers of Information Technology and Elect', 20959230, 0.406, 'Q2', 32, 133, 5866, 1277, 411, '2', '2015-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Signal Processing (Q2)'), (11540, 'Horticulture Journal', 21890102, 0.406, 'Q2', 36, 73, 2645, 210, 194, '6', '2015-2020', 'Horticulture (Q2); Plant Science (Q3)'), (11541, 'Indian Journal of Economics and Business', 9725784, 0.406, 'Q2', 5, 13, 720, 104, 31, '4', '2019', 'Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Strategy and Management (Q2)'), (11542, 'Information and Learning Science', 23985348, 0.406, 'Q2', 29, 64, 2346, 204, 150, '3', '2017-2020', 'Education (Q2); Library and Information Sciences (Q2); Computer Science Applications (Q3)'), (11543, 'Journal of Analysis and Testing', 25094696, 0.406, 'Q2', 10, 31, 1606, 189, 94, '37', '2017-2020', 'Instrumentation (Q2); Materials Chemistry (Q2); Analytical Chemistry (Q3); Electrochemistry (Q3); Environmental Chemistry (Q3); Spectroscopy (Q3)'), (11544, 'Journal of Public Affairs Education', 23289643, 0.406, 'Q2', 23, 37, 1473, 110, 79, '2', '1998-2020', 'Education (Q2); Public Administration (Q2)'), (11545, 'New Zealand Journal of Crop and Horticultural', 1140671, 0.406, 'Q2', 37, 26, 1067, 100, 68, '3', '1989-2020', 'Agronomy and Crop Science (Q2); Horticulture (Q2)'), (11546, 'Obstetric Medicine', 1753495, 0.406, 'Q3', 15, 73, 2426, 147, 122, '3', '2013-2020', 'Obstetrics and Gynecology (Q3)'), (11547, 'Periodica Polytechnica: Civil Engineering', 5536626, 0.406, 'Q3', 19, 119, 3990, 558, 318, '50', '1972-1974, 1977, 1979-1983, 1985-2020', 'Civil and Structural Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (11548, 'Probability in the Engineering and Informatio', 2699648, 0.406, 'Q2', 39, 84, 2332, 113, 101, '3', '1987-2020', 'Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (11549, 'Rationality and Society', 14617358, 0.406, 'Q2', 46, 18, 1217, 71, 57, '3', '1989-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (11550, 'Region', 24095370, 0.406, 'Q2', 7, 13, 525, 63, 44, '24', '2014-2020', 'Geography, Planning and Development (Q2); Economics and Econometrics (Q3)'), (11551, 'Water Science and Technology', 2731223, 0.406, 'Q3', 137, 515, 19225, 3650, 1751, '3', '1970, 1980-2020', 'Environmental Engineering (Q3); Water Science and Technology (Q3)'), (11552, 'Asian Pacific Journal of Allergy and Immunolo', 22288694, 0.405, 'Q3', 33, 37, 1509, 138, 110, '40', '1983-2020', 'Immunology and Allergy (Q3); Medicine (miscellaneous) (Q3); Immunology (Q4)'), (11553, 'Canadian Journal of Urology', 11959479, 0.405, 'Q3', 40, 104, 0, 280, 253, '9', '2000-2020', 'Medicine (miscellaneous) (Q3); Urology (Q3)'), (11554, 'Chemical Engineering Science: X', 25901400, 0.405, 'Q2', 6, 31, 1563, 78, 37, '3', '2019-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2)'), (11555, 'Chemosensory Perception', 19365810, 0.405, 'Q4', 30, 23, 1078, 62, 41, '2', '2008-2020', 'Cellular and Molecular Neuroscience (Q4); Sensory Systems (Q4)'), (11556, 'Clinical Medicine Insights: Blood Disorders', 1179545, 0.405, 'Q3', 10, 4, 144, 47, 22, '41', '2010-2020', 'Hematology (Q3)'), (11557, 'Condensed Matter', 24103896, 0.405, 'Q3', 12, 80, 4118, 280, 143, '19', '2019-2020', 'Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (11558, 'Florida Entomologist', 154040, 0.405, 'Q3', 53, 60, 2011, 383, 406, '2', '1982, 1993-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (11559, 'Genetic Testing and Molecular Biomarkers', 19450265, 0.405, 'Q3', 47, 117, 3574, 484, 345, '2', '2009-2020', 'Medicine (miscellaneous) (Q3); Genetics (clinical) (Q4)'), (11560, 'Homeopathy', 14754916, 0.405, 'Q2', 38, 49, 1563, 165, 91, '2', '1998-2020', 'Complementary and Alternative Medicine (Q2)'), (11561, 'IIC International Review of Intellectual Prop', 189855, 0.405, 'Q2', 17, 46, 1597, 69, 99, '5', '1982, 1989, 1991, 1994-2020', 'Law (Q2); Political Science and International Relations (Q2)'), (11562, 'Indian Journal of Pediatrics', 9737693, 0.405, 'Q3', 49, 352, 4608, 778, 450, '4', '1936-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (11563, 'Internet Mathematics', 15427951, 0.405, 'Q3', 39, 1, 74, 26, 15, '3', '2004-2009, 2011-2020', 'Applied Mathematics (Q3); Computational Mathematics (Q3); Modeling and Simulation (Q3)'), (11564, 'JBI Database of Systematic Reviews and Implem', 22024433, 0.405, 'Q2', 21, 12, 0, 704, 551, '11', '2010, 2012, 2014-2020', 'Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (11565, 'Journal of Cluster Science', 15728862, 0.405, 'Q2', 45, 260, 12414, 1430, 544, '2', '1990-2020', 'Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Biochemistry (Q3); Condensed Matter Physics (Q3)'), (11566, 'Journal of Ethnic Foods', 23526181, 0.405, 'Q2', 18, 42, 1794, 214, 105, '16', '2015-2020', 'Anthropology (Q2); Food Science (Q3)'), (11567, 'Journal of Mining Science', 10627391, 0.405, 'Q3', 28, 72, 1466, 315, 377, '10', '1991-2020', 'Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (11568, 'Journal of Plastic Film and Sheeting', 87560879, 0.405, 'Q2', 24, 32, 1624, 113, 53, '3', '1985-2020', 'Materials Chemistry (Q2); Polymers and Plastics (Q2); Surfaces, Coatings and Films (Q2)'), (11569, 'Journal of Postgraduate Medicine', 9722823, 0.405, 'Q3', 52, 64, 923, 211, 139, '4', '1961-2020', 'Medicine (miscellaneous) (Q3)'), (11570, 'Journal of the International Phonetic Associa', 251003, 0.405, 'Q1', 34, 43, 2216, 81, 68, '3', '1971-1985, 1987-2020', 'Anthropology (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Speech and Hearing (Q3)'), (11571, 'Mental Health, Religion and Culture', 14699737, 0.405, 'Q3', 44, 85, 3962, 247, 231, '3', '2000-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (11572, 'OTJR Occupation, Participation and Health', 15394492, 0.405, 'Q2', 40, 30, 1000, 140, 82, '2', '2002-2020', 'Occupational Therapy (Q2)'), (11573, 'Perfiles Educativos', 1852698, 0.405, 'Q2', 10, 52, 1899, 100, 148, '30', '2004-2005, 2009-2020', 'Education (Q2)'), (11574, 'Revista Brasileira de Ortopedia', 19824378, 0.405, 'Q3', 16, 130, 2999, 357, 360, '14', '1996-2000, 2011-2020', 'Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (11575, 'Revista de Psicologia del Deporte', 1132239, 0.405, 'Q3', 27, 38, 1366, 316, 245, '12', '2008-2020', 'Applied Psychology (Q3); Sports Science (Q3)'), (11576, 'American Journal of Lifestyle Medicine', 15598276, 0.404, 'Q3', 37, 113, 4598, 338, 246, '2', '2007-2014, 2016-2020', 'Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11577, 'Asian Journal of Atmospheric Environment', 19766912, 0.404, 'Q2', 16, 31, 1365, 141, 84, '6', '2007-2020', 'Environmental Science (miscellaneous) (Q2); Atmospheric Science (Q3)'), (11578, 'Azania', 67270, 0.404, 'Q1', 17, 23, 1548, 62, 57, '3', '1966-1994, 2010-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (11579, 'BioResources', 19302126, 0.404, 'Q3', 69, 503, 18541, 3087, 1733, '2', '2007-2020', 'Bioengineering (Q3); Environmental Engineering (Q3); Waste Management and Disposal (Q3)'), (11580, 'Bulletins et Memoires de la Societe d Anthrop', 17775469, 0.404, 'Q1', 11, 0, 0, 42, 53, '5', '1973-1979, 2010-2019', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Cultural Studies (Q1); Anthropology (Q2)'), (11581, 'Canadian Journal of Chemical Engineering', 84034, 0.404, 'Q2', 67, 320, 15194, 1581, 830, '2', '1958-2020', 'Chemical Engineering (miscellaneous) (Q2)'), (11582, 'China Ocean Engineering', 8905487, 0.404, 'Q2', 25, 80, 2405, 305, 238, '2', '1987-1993, 1996-2020', 'Mechanical Engineering (Q2); Ocean Engineering (Q2); Oceanography (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (11583, 'Computers', 2073431, 0.404, 'Q2', 19, 102, 4811, 510, 184, '19', '2012-2020', 'Computer Networks and Communications (Q2); Human-Computer Interaction (Q3)'), (11584, 'Drug Discoveries and Therapeutics', 1881784, 0.404, 'Q2', 23, 1, 0, 92, 59, '6', '1997, 2010-2018, 2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)'), (11585, 'Echocardiography', 7422822, 0.404, 'Q3', 62, 333, 6846, 1027, 922, '3', '1984-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11586, 'Frontiers in Heat and Mass Transfer', 21518629, 0.404, 'Q2', 18, 44, 1584, 346, 202, '2', '2010-2020', 'Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q3)'), (11587, 'Geographica Helvetica', 167312, 0.404, 'Q2', 20, 37, 2161, 117, 92, '5', '1946-2020', 'Anthropology (Q2); Earth-Surface Processes (Q2); Geography, Planning and Development (Q2); Global and Planetary Change (Q3)'), (11588, 'Information Discovery and Delivery', 23986247, 0.404, 'Q2', 16, 32, 1595, 135, 75, '3', '2017-2020', 'Computer Science (miscellaneous) (Q2); Library and Information Sciences (Q2)'), (11589, 'International Journal of Product Lifecycle Ma', 17435110, 0.404, 'Q2', 20, 7, 287, 54, 42, '3', '2005-2013, 2016, 2018', 'Business and International Management (Q2); Safety, Risk, Reliability and Quality (Q2); Management Science and Operations Research (Q3)'), (11590, 'Issues in Educational Research', 3137155, 0.404, 'Q2', 22, 84, 4095, 249, 181, '11', '2002-2020', 'Education (Q2)'), (11591, 'Journal of Molecular Microbiology and Biotech', 14753774, 0.404, 'Q3', 79, 10, 407, 114, 67, '19', '1999-2020', 'Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Microbiology (Q4); Molecular Biology (Q4)'), (11592, 'Journal of Southern Hemisphere Earth Systems ', 22065865, 0.404, 'Q3', 7, 28, 1120, 22, 24, '11', '2016-2018', 'Atmospheric Science (Q3); Global and Planetary Change (Q3); Oceanography (Q3)'), (11593, 'Learning: Research and Practice', 23735082, 0.404, 'Q2', 10, 16, 681, 55, 29, '2', '2015-2020', 'Education (Q2)'), (11594, 'Politikon', 2589346, 0.404, 'Q2', 22, 28, 1405, 75, 78, '3', '1974-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11595, 'Studies in Graduate and Postdoctoral Educatio', 23984694, 0.404, 'Q2', 4, 15, 756, 46, 36, '3', '2017-2020', 'Education (Q2)'), (11596, 'Survey Review', 17522706, 0.404, 'Q2', 26, 83, 3003, 300, 153, '3', '1963-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Civil and Structural Engineering (Q3); Computers in Earth Sciences (Q3)'), (11597, 'Toxicon: X', 25901710, 0.404, 'Q4', 5, 44, 2880, 41, 17, '3', '2019-2020', 'Toxicology (Q4)'), (11598, 'Turkish Journal of Gastroenterology', 13004948, 0.404, 'Q3', 28, 153, 3254, 490, 351, '18', '1996-2020', 'Gastroenterology (Q3)'), (11599, 'Advances in Materials Research (South Korea)', 2234179, 0.403, 'Q2', 8, 3, 88, 105, 45, '13', '2017-2020', 'Metals and Alloys (Q2); Polymers and Plastics (Q2); Biomaterials (Q3); Ceramics and Composites (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (11600, 'Australasian Journal of Early Childhood', 18369391, 0.403, 'Q2', 13, 31, 1131, 115, 104, '11', '2010-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (11601, 'Central European Journal of Urology', 20804873, 0.403, 'Q3', 20, 76, 1997, 240, 182, '17', '2009-2020', 'Urology (Q3)'), (11602, 'Chemical Engineering and Technology', 9307516, 0.403, 'Q2', 81, 270, 10395, 1423, 822, '5', '1978, 1987-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2)'), (11603, 'College and Undergraduate Libraries', 10691316, 0.403, 'Q2', 19, 12, 232, 78, 88, '2', '1994-2004, 2006-2020', 'Education (Q2); Library and Information Sciences (Q2); E-learning (Q3)'), (11604, 'European Journal of Obstetrics and Gynecology', 25901613, 0.403, 'Q3', 4, 19, 649, 95, 73, '42', '2019-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (11605, 'Fragmenta Entomologica', 22844880, 0.403, 'Q3', 6, 34, 901, 63, 73, '7', '2016-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (11606, 'Global Journal of Environmental Science and M', 23833866, 0.403, 'Q2', 19, 50, 2183, 328, 146, '15', '2015-2020', 'Environmental Science (miscellaneous) (Q2)'), (11607, 'Grana', 173134, 0.403, 'Q3', 38, 46, 2633, 145, 101, '3', '1970-1974, 1978-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (11608, 'International Journal of Occupational Safety ', 10803548, 0.403, 'Q2', 34, 178, 7956, 498, 258, '3', '1995-2020', 'Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Public Health, Environmental and Occupational Health (Q3)'), (11609, 'International Journal of Pest Management', 9670874, 0.403, 'Q2', 44, 108, 5086, 207, 136, '3', '1993-2020', 'Agronomy and Crop Science (Q2); Insect Science (Q3)'), (11610, 'International Review of Aerospace Engineering', 19737459, 0.403, 'Q2', 16, 24, 753, 195, 102, '7', '2014-2020', 'Aerospace Engineering (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Fluid Flow and Transfer Processes (Q2)'), (11611, 'Journal of Borderlands Studies', 21591229, 0.403, 'Q2', 22, 91, 4852, 152, 124, '3', '1986-2020', 'Geography, Planning and Development (Q2); Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11612, 'Journal of Clinical Sport Psychology', 19329261, 0.403, 'Q3', 28, 23, 980, 162, 105, '2', '2007-2020', 'Applied Psychology (Q3)'), (11613, 'Journal of Coatings Technology Research', 15470091, 0.403, 'Q2', 43, 134, 5311, 930, 411, '2', '2004-2020', 'Chemistry (miscellaneous) (Q2); Surfaces, Coatings and Films (Q2); Colloid and Surface Chemistry (Q3); Surfaces and Interfaces (Q3)'), (11614, 'Journal of the Korean Association of Oral and', 22347550, 0.403, 'Q3', 8, 69, 1729, 179, 138, '13', '2017-2020', 'Oral Surgery (Q3); Surgery (Q3)'), (11615, 'Journal of the Korean Mathematical Society', 3049914, 0.403, 'Q3', 31, 78, 1743, 207, 275, '13', '1997-2020', 'Mathematics (miscellaneous) (Q3)'), (11616, 'Labour', 11217081, 0.403, 'Q1', 34, 20, 1006, 64, 66, '3', '1987-2020', 'History (Q1); Demography (Q2); Geography, Planning and Development (Q2); Industrial Relations (Q2); Organizational Behavior and Human Resource Management (Q3)'), (11617, 'Logistics Research', 18650368, 0.403, 'Q2', 21, 10, 552, 40, 32, '5', '2009-2010, 2012-2020', 'Control and Systems Engineering (Q2); Information Systems (Q2); Management Information Systems (Q2); Computer Science Applications (Q3); Management Science and Operations Research (Q3)'), (11618, 'Mental Health and Prevention', 22126570, 0.403, 'Q3', 11, 16, 789, 149, 104, '5', '2013-2020', 'Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11619, 'Petroleum Science and Technology', 15322459, 0.403, 'Q2', 47, 129, 2129, 1245, 942, '2', '1997-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Energy Engineering and Power Technology (Q2); Fuel Technology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (11620, 'Pharmaceutical Medicine', 11782595, 0.403, 'Q3', 17, 47, 1240, 112, 97, '3', '2000-2001, 2008-2020', 'Pharmacology (Q3); Pharmacology (medical) (Q3)'), (11621, 'Risks', 22279091, 0.403, 'Q2', 10, 134, 5254, 443, 260, '19', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Strategy and Management (Q2); Accounting (Q3)'), (11622, 'Tuexenia', 722494, 0.403, 'Q3', 16, 27, 1625, 36, 26, '5', '1985, 2011-2018', 'Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Plant Science (Q3)'), (11623, 'Assay and Drug Development Technologies', 1540658, 0.402, 'Q3', 56, 48, 1257, 160, 115, '2', '2002-2020', 'Drug Discovery (Q3); Molecular Medicine (Q4)'), (11624, 'Australian Journal of Structural Engineering', 13287982, 0.402, 'Q2', 17, 21, 618, 107, 76, '3', '2008-2020', 'Mechanical Engineering (Q2); Civil and Structural Engineering (Q3); Mechanics of Materials (Q3)'), (11625, 'City, Territory and Architecture', 21952701, 0.402, 'Q1', 9, 21, 1232, 82, 48, '3', '2014-2020', 'Architecture (Q1); Geography, Planning and Development (Q2); Urban Studies (Q2)'), (11626, 'Clinical Nutrition Experimental', 23529393, 0.402, 'Q3', 11, 26, 929, 143, 90, '3', '2015-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Nutrition and Dietetics (Q3)'), (11627, 'Competitiveness Review', 20513143, 0.402, 'Q2', 27, 75, 5616, 261, 92, '3', '1996-2020', 'Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2)'), (11628, 'German Journal of Human Resource Management', 23970022, 0.402, 'Q3', 6, 25, 2226, 51, 35, '3', '2016-2020', 'Organizational Behavior and Human Resource Management (Q3)'), (11629, 'Harvard Environmental Law Review', 1478257, 0.402, 'Q2', 30, 13, 3130, 39, 35, '2', '1979-1983, 1987, 1989, 1996-2019', 'Environmental Science (miscellaneous) (Q2); Law (Q2); Management, Monitoring, Policy and Law (Q3)'), (11630, 'HortTechnology', 19437714, 0.402, 'Q2', 56, 105, 3262, 358, 353, '2', '1993-2020', 'Horticulture (Q2)'), (11631, 'International Journal of English Studies', 15787044, 0.402, 'Q1', 8, 20, 912, 26, 36, '12', '2013-2020', 'Cultural Studies (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1); Education (Q2)'), (11632, 'Journal of Medical Investigation', 13431420, 0.402, 'Q3', 45, 71, 1705, 249, 192, '6', '1996-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (11633, 'Journal of Private Enterprise', 890913, 0.402, 'Q2', 9, 24, 865, 50, 71, '2', '2008-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11634, 'Nota Lepidopterologica', 3427536, 0.402, 'Q2', 14, 24, 700, 33, 44, '61', '1995-2020', 'Animal Science and Zoology (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (11635, 'Pain Management', 17581877, 0.402, 'Q2', 21, 0, 0, 224, 120, '3', '2014-2019', 'Anesthesiology and Pain Medicine (Q2)'), (11636, 'Toxin Reviews', 15569543, 0.402, 'Q4', 43, 127, 8122, 467, 178, '3', '1982-2020', 'Toxicology (Q4)'), (11637, 'Xinan Shiyou Xueyuan Xuebao/Journal of Southw', 16745086, 0.402, 'Q2', 20, 119, 3109, 251, 342, '1', '1998, 2001-2020', 'Energy Engineering and Power Technology (Q2); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (11638, 'ACM Journal on Emerging Technologies in Compu', 15504832, 0.401, 'Q2', 38, 42, 2036, 407, 125, '2', '2005-2020', 'Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Software (Q2); Nanoscience and Nanotechnology (Q3)'), (11639, 'Acta Pharmaceutica', 18469558, 0.401, 'Q2', 59, 38, 1268, 274, 127, '58', '1986, 1992-2021', 'Pharmaceutical Science (Q2); Medicine (miscellaneous) (Q3); Pharmacology (Q3)'), (11640, 'Advances in Operator Theory', 2538225, 0.401, 'Q3', 10, 95, 2078, 169, 146, '15', '2016-2020', 'Algebra and Number Theory (Q3); Analysis (Q3)'), (11641, 'Health Services Management Research', 17581044, 0.401, 'Q3', 32, 47, 1663, 113, 63, '3', '1988-2020', 'Health Policy (Q3)'), (11642, 'Herpetology Notes', 20715773, 0.401, 'Q2', 16, 212, 5259, 343, 295, '5', '2008-2020', 'Animal Science and Zoology (Q2)'), (11643, 'IET Image Processing', 17519659, 0.401, 'Q2', 45, 503, 20391, 2127, 722, '3', '2007-2020', 'Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q2); Software (Q2)'), (11644, 'Interdisciplinary sciences, computational lif', 19132751, 0.401, 'Q3', 19, 54, 2302, 400, 196, '5', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Computer Science Applications (Q3); Health Informatics (Q3)'), (11645, 'International Review of Applied Economics', 14653486, 0.401, 'Q3', 40, 62, 3030, 175, 119, '3', '1987-2020', 'Economics and Econometrics (Q3)'), (11646, 'Issues in Mental Health Nursing', 10964673, 0.401, 'Q2', 59, 224, 8705, 641, 438, '3', '1978-1986, 1988-2020', 'Psychiatric Mental Health (Q2)'), (11647, 'Journal of Molecular Recognition', 9523499, 0.401, 'Q4', 79, 48, 2284, 395, 199, '3', '1988-2020', 'Molecular Biology (Q4); Structural Biology (Q4)'), (11648, 'Organic Agriculture', 18794238, 0.401, 'Q2', 15, 81, 3580, 183, 103, '2', '2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (11649, 'Perspectives in Biology and Medicine', 15298795, 0.401, 'Q2', 49, 60, 1667, 156, 143, '2', '1957-2020', 'History and Philosophy of Science (Q2); Health Policy (Q3); Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3)'), (11650, 'Proceedings of the Institution of Civil Engin', 9650911, 0.401, 'Q2', 38, 85, 2180, 238, 211, '3', '1992-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q3)'), (11651, 'Quality Management in Health Care', 15505154, 0.401, 'Q2', 34, 53, 1290, 114, 118, '2', '1992-2020', 'Care Planning (Q2); Leadership and Management (Q2); Health Policy (Q3); Health (social science) (Q3)'), (11652, 'Soil Science', 38075, 0.401, 'Q3', 89, 0, 0, 81, 55, '2', '1916-2019', 'Soil Science (Q3)'), (11653, 'Techniques in Hand and Upper Extremity Surger', 10893393, 0.401, 'Q3', 29, 45, 806, 61, 104, '2', '2001-2020', 'Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (11654, 'Wideochirurgia I Inne Techniki Maloinwazyjne', 18954588, 0.401, 'Q3', 17, 81, 2334, 274, 226, '17', '2008-2020', 'Gastroenterology (Q3); Obstetrics and Gynecology (Q3); Surgery (Q3); Urology (Q3)'), (11655, 'Acta Agrobotanica', 2300357, 0.4, 'Q2', 9, 26, 853, 118, 93, '17', '1953-1962, 1964-1979, 1987, 2013-2020', 'Agronomy and Crop Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (11656, 'Aquatic Mammals', 1675427, 0.4, 'Q2', 26, 69, 2805, 245, 171, '16', '2008-2020', 'Animal Science and Zoology (Q2); Aquatic Science (Q3); Nature and Landscape Conservation (Q3)'), (11657, 'Arquivos Brasileiros de Cardiologia', 66782, 0.4, 'Q3', 53, 359, 9372, 776, 425, '14', '1950-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (11658, 'Biomedical Chromatography', 10990801, 0.4, 'Q3', 65, 278, 8469, 1410, 836, '3', '1986-2020', 'Analytical Chemistry (Q3); Biochemistry (Q3); Clinical Biochemistry (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Molecular Biology (Q4)'), (11659, 'Brain Impairment', 18395252, 0.4, 'Q3', 23, 22, 918, 118, 78, '3', '2004, 2008-2020', 'Neurology (Q3); Neurology (clinical) (Q3); Neuropsychology and Physiological Psychology (Q3); Speech and Hearing (Q3); Behavioral Neuroscience (Q4); Cognitive Neuroscience (Q4)'), (11660, 'Bulletin of the Geological Society of Finland', 3675211, 0.4, 'Q3', 24, 6, 330, 38, 33, '38', '1979-1987, 1989-2020', 'Geology (Q3)'), (11661, 'Comparative Medicine', 15320820, 0.4, 'Q2', 64, 58, 996, 193, 171, '2', '2000-2020', 'Veterinary (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (11662, 'Construction Economics and Building', 22049029, 0.4, 'Q2', 20, 34, 1736, 132, 55, '11', '2014-2020', 'Building and Construction (Q2); Business, Management and Accounting (miscellaneous) (Q2)'), (11663, 'Contemporary Family Therapy', 8922764, 0.4, 'Q1', 34, 42, 1948, 121, 107, '2', '1986-2020', 'Cultural Studies (Q1); Social Sciences (miscellaneous) (Q2); Clinical Psychology (Q3); Social Psychology (Q3)'), (11664, 'Couple and Family Psychology: Research and Pr', 21604096, 0.4, 'Q3', 9, 18, 730, 59, 52, '2', '2016-2020', 'Clinical Psychology (Q3); Social Psychology (Q3)'), (11665, 'Digital Scholarship in the Humanities', 20557671, 0.4, 'Q1', 15, 33, 1389, 256, 219, '2', '2015-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Information Systems (Q2); Computer Science Applications (Q3)'), (11666, 'Ginekologia Polska', 170011, 0.4, 'Q3', 21, 134, 3397, 451, 357, '17', '1948, 1953-1989, 1992-2020', 'Obstetrics and Gynecology (Q3)'), (11667, 'High Pressure Research', 14772299, 0.4, 'Q3', 46, 33, 1130, 209, 163, '3', '1988-2020', 'Condensed Matter Physics (Q3)'), (11668, 'International Journal of Applied Ceramic Tech', 1546542, 0.4, 'Q2', 57, 291, 10398, 1025, 553, '2', '2004-2020', 'Materials Chemistry (Q2); Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Marketing (Q3)'), (11669, 'International Journal of Crashworthiness', 15738965, 0.4, 'Q2', 39, 157, 5376, 373, 167, '3', '1996-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Transportation (Q3)'), (11670, 'Journal of Adhesion Science and Technology', 15685616, 0.4, 'Q2', 70, 239, 10083, 1069, 528, '3', '1987-2020', 'Chemistry (miscellaneous) (Q2); Materials Chemistry (Q2); Surfaces, Coatings and Films (Q2); Mechanics of Materials (Q3); Surfaces and Interfaces (Q3)'), (11671, 'Journal of Environmental Health', 220892, 0.4, 'Q3', 33, 61, 810, 125, 140, '2', '1973-2020', 'Health, Toxicology and Mutagenesis (Q3); Management, Monitoring, Policy and Law (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11672, 'Journal of Teaching in Social Work', 15407349, 0.4, 'Q2', 27, 30, 1211, 94, 102, '2', '1987-2020', 'Education (Q2); Sociology and Political Science (Q2); Social Work (Q3)'), (11673, 'Journal of the American Osteopathic Associati', 986151, 0.4, 'Q2', 50, 151, 3056, 365, 300, '2', '1945-2020', 'Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3)'), (11674, 'Journal of the Philosophy of Sport', 948705, 0.4, 'Q2', 27, 32, 736, 71, 72, '3', '1974-1993, 1995-2020', 'Social Sciences (miscellaneous) (Q2); Health (social science) (Q3); Sports Science (Q3)'), (11675, 'Magazine of Civil Engineering', 20714726, 0.4, 'Q2', 22, 97, 3219, 974, 324, '10', '2013-2020', 'Building and Construction (Q2); Civil and Structural Engineering (Q3)'), (11676, 'Pediatric, Allergy, Immunology, and Pulmonolo', 2151321, 0.4, 'Q3', 22, 45, 1140, 142, 108, '2', '2010-2020', 'Immunology and Allergy (Q3); Pediatrics, Perinatology and Child Health (Q3); Pulmonary and Respiratory Medicine (Q3)'), (11677, 'Potato Research', 18714528, 0.4, 'Q2', 43, 62, 3233, 150, 83, '16', '1970-2020', 'Agronomy and Crop Science (Q2); Food Science (Q3)'), (11678, 'Progress in Transplantation', 15269248, 0.4, 'Q3', 41, 70, 1160, 217, 187, '2', '2000-2020', 'Transplantation (Q3)'), (11679, 'Public Finance Review', 10911421, 0.4, 'Q2', 31, 27, 892, 119, 108, '2', '1973-1987, 1989-2020', 'Finance (Q2); Public Administration (Q2); Economics and Econometrics (Q3)'), (11680, 'Revista Mexicana de Investigacion Educativa', 14056666, 0.4, 'Q2', 11, 47, 1680, 106, 143, '30', '2012-2020', 'Education (Q2)'), (11681, 'Scottish Journal of Political Economy', 14679485, 0.4, 'Q2', 46, 35, 1337, 92, 81, '3', '1954-2020', 'Sociology and Political Science (Q2); Economics and Econometrics (Q3)'), (11682, 'Space and Polity', 14701235, 0.4, 'Q2', 38, 39, 1568, 81, 58, '3', '1997-2020', 'Geography, Planning and Development (Q2); Political Science and International Relations (Q2)'), (11683, 'Work Organisation, Labour and Globalisation', 1745641, 0.4, 'Q2', 6, 14, 648, 54, 37, '3', '2016-2019', 'Industrial Relations (Q2); Organizational Behavior and Human Resource Management (Q3)'), (11684, 'Advances in Building Energy Research', 17512549, 0.399, 'Q2', 25, 38, 1497, 143, 65, '3', '2007-2020', 'Building and Construction (Q2)'), (11685, 'Archives of Disease in Childhood: Education a', 17430593, 0.399, 'Q3', 29, 154, 1739, 211, 181, '3', '2004-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (11686, 'Atoll Research Bulletin', 775630, 0.399, 'Q3', 26, 0, 0, 19, 22, '2', '1979-1983, 1985, 1987-1994, 1996-2019', 'Oceanography (Q3)'), (11687, 'Avicenna Journal of Medical Biotechnology', 20084625, 0.399, 'Q3', 22, 48, 1544, 203, 106, '15', '2010-2020', 'Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biomedical Engineering (Q3); Biotechnology (Q3)'), (11688, 'Canadian Journal of School Psychology', 8295735, 0.399, 'Q3', 29, 25, 1044, 55, 51, '3', '1985, 1994-2003, 2005-2020', 'Developmental and Educational Psychology (Q3)'), (11689, 'Cosmic Research', 109525, 0.399, 'Q2', 22, 47, 1002, 124, 150, '10', '1968-1970, 1973-1987, 1996-2020', 'Aerospace Engineering (Q2); Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (11690, 'DISP', 2513625, 0.399, 'Q2', 22, 38, 1162, 90, 118, '3', '1980-2002, 2005-2020', 'Geography, Planning and Development (Q2)'), (11691, 'Earth s Cryosphere', 15607496, 0.399, 'Q2', 16, 36, 1017, 115, 166, '10', '2003-2019', 'Earth and Planetary Sciences (miscellaneous) (Q2)'), (11692, 'Ethnomusicology', 141836, 0.399, 'Q1', 20, 17, 1273, 28, 42, '2', '2002-2020', 'Cultural Studies (Q1); Music (Q1); Anthropology (Q2)'), (11693, 'Fluids', 23115521, 0.399, 'Q2', 14, 195, 8004, 690, 368, '19', '2016-2020', 'Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2); Condensed Matter Physics (Q3)'), (11694, 'International Journal of Biostatistics', 15574679, 0.399, 'Q3', 38, 42, 1358, 61, 53, '5', '2006-2020', 'Medicine (miscellaneous) (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (11695, 'International Journal of Polymer Science', 16879430, 0.399, 'Q2', 33, 66, 3024, 892, 374, '32', '2009-2020', 'Polymers and Plastics (Q2)'), (11696, 'Iranian Journal of Medical Sciences', 17353688, 0.399, 'Q2', 26, 65, 1777, 404, 233, '15', '1979-1981, 1989-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Clinical Psychology (Q3); Medicine (miscellaneous) (Q3); Immunology '), (11697, 'Journal of Chinese Economic and Foreign Trade', 17544416, 0.399, 'Q2', 12, 10, 467, 65, 31, '3', '2010-2020', 'Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q3)'), (11698, 'Journal of International Accounting Research', 15588025, 0.399, 'Q2', 22, 25, 1523, 78, 58, '2', '2007, 2009-2020', 'Business and International Management (Q2); Accounting (Q3)'), (11699, 'Journal of Sensors', 1687725, 0.399, 'Q2', 43, 197, 7596, 1851, 685, '2', '2009-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Instrumentation (Q2)'), (11700, 'Micropaleontology', 262803, 0.399, 'Q3', 44, 32, 2113, 85, 68, '2', '1979-2020', 'Paleontology (Q3)'), (11701, 'Practical Laboratory Medicine', 23525517, 0.399, 'Q3', 11, 50, 1295, 128, 88, '16', '2015-2020', 'Clinical Biochemistry (Q3); Radiological and Ultrasound Technology (Q3)'), (11702, 'Psychiatrische Praxis', 3034259, 0.399, 'Q3', 34, 112, 1899, 212, 183, '5', '1974-2020', 'Psychiatry and Mental Health (Q3)'), (11703, 'Separation Science and Technology', 15205754, 0.399, 'Q2', 77, 449, 18672, 1781, 829, '2', '1978-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Filtration and Separation (Q3); Process Chemistry and Technology (Q3)'), (11704, 'Sport, Business and Management: An Internatio', 20426798, 0.399, 'Q2', 17, 38, 2449, 166, 92, '3', '2011-2020', 'Business and International Management (Q2); Strategy and Management (Q2); Marketing (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (11705, 'TPM - Testing, Psychometrics, Methodology in ', 19726325, 0.399, 'Q3', 19, 32, 1783, 139, 103, '7', '2005, 2007-2020', 'Applied Psychology (Q3); Psychology (miscellaneous) (Q3); Social Psychology (Q3)'), (11706, 'Acarina', 22215115, 0.398, 'Q3', 14, 18, 634, 32, 56, '10', '2009-2020', 'Insect Science (Q3)'), (11707, 'Acta Parasitologica', 18961851, 0.398, 'Q4', 35, 152, 6365, 433, 320, '5', '1992-1994, 1996-2020', 'Parasitology (Q4)'), (11708, 'African Journal of Wildlife Research', 24107220, 0.398, 'Q2', 9, 0, 0, 6, 8, '27', '2015-2017', 'Animal Science and Zoology (Q2); Ecology (Q3)'), (11709, 'AlterNative', 11741740, 0.398, 'Q1', 12, 45, 1879, 126, 102, '2', '2014, 2016-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2)'), (11710, 'Astrophysics and Space Science', 4640, 0.398, 'Q3', 75, 183, 9482, 1382, 700, '16', '1968-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (11711, 'Balkan Medical Journal', 21463123, 0.398, 'Q3', 16, 87, 1664, 380, 215, '18', '2011-2020', 'Medicine (miscellaneous) (Q3)'), (11712, 'Botany Letters', 23818107, 0.398, 'Q3', 19, 49, 2551, 172, 125, '3', '2016-2020', 'Plant Science (Q3)'), (11713, 'Clinical Neuropathology', 7225091, 0.398, 'Q3', 43, 48, 913, 114, 94, '5', '1982-2020', 'Medicine (miscellaneous) (Q3); Neurology (Q3); Neurology (clinical) (Q3); Pathology and Forensic Medicine (Q3)'), (11714, 'Developing World Bioethics', 14718731, 0.398, 'Q3', 27, 53, 3, 164, 87, '3', '2001-2020', 'Health Policy (Q3); Health (social science) (Q3); Issues, Ethics and Legal Aspects (Q3)'), (11715, 'Epilepsy and Behavior Reports', 25899864, 0.398, 'Q3', 14, 50, 953, 178, 136, '2', '2019-2020', 'Neurology (Q3); Neurology (clinical) (Q3); Behavioral Neuroscience (Q4)'), (11716, 'Geological Quarterly', 16417291, 0.398, 'Q3', 40, 61, 5257, 218, 166, '17', '2000-2020', 'Geology (Q3)'), (11717, 'Intelligent Service Robotics', 18612784, 0.398, 'Q2', 30, 43, 1689, 256, 84, '5', '2008-2020', 'Computational Mechanics (Q2); Engineering (miscellaneous) (Q2); Mechanical Engineering (Q2); Artificial Intelligence (Q3)'), (11718, 'International Journal of Nonprofit and Volunt', 1479103, 0.398, 'Q2', 12, 47, 2767, 106, 73, '3', '2014-2020', 'Strategy and Management (Q2); Economics and Econometrics (Q3); Marketing (Q3)'), (11719, 'Journal of the Egyptian National Cancer Insti', 11100362, 0.398, 'Q3', 22, 44, 1160, 101, 73, '32', '2005-2009, 2011-2020', 'Oncology (Q3); Cancer Research (Q4)'), (11720, 'Lankesteriana', 14093871, 0.398, 'Q3', 13, 25, 617, 42, 65, '95', '2004-2007, 2013-2020', 'Plant Science (Q3)'), (11721, 'Middle School Journal', 940771, 0.398, 'Q2', 17, 28, 599, 39, 58, '2', '1996-2020', 'Education (Q2); Developmental and Educational Psychology (Q3)'), (11722, 'Moscow Journal of Combinatorics and Number Th', 26407361, 0.398, 'Q3', 3, 26, 406, 27, 29, '2', '2019-2020', 'Algebra and Number Theory (Q3); Discrete Mathematics and Combinatorics (Q3)'), (11723, 'Nordic Psychology', 19012276, 0.398, 'Q3', 17, 36, 1658, 95, 59, '3', '2006-2020', 'Psychology (miscellaneous) (Q3)'), (11724, 'Organizacija', 13185454, 0.398, 'Q2', 8, 22, 1239, 174, 64, '60', '2016-2020', 'Business and International Management (Q2); Management Information Systems (Q2); Strategy and Management (Q2); Marketing (Q3); Organizational Behavior and Human Resource Management (Q3); Tourism, Leis'), (11725, 'Pathology Research International', 2042003, 0.398, 'Q3', 21, 0, 0, 32, 14, '2', '2012-2018', 'Pathology and Forensic Medicine (Q3)'), (11726, 'Plastic Surgery', 22925511, 0.398, 'Q3', 21, 62, 1616, 125, 112, '2', '2017-2020', 'Surgery (Q3)'), (11727, 'Psychoanalytic Inquiry', 19409133, 0.398, 'Q3', 37, 84, 1621, 79, 148, '3', '1981-2020', 'Clinical Psychology (Q3)'), (11728, 'Reaction Kinetics, Mechanisms and Catalysis', 18785204, 0.398, 'Q3', 41, 207, 8880, 1135, 592, '16', '2010-2020', 'Catalysis (Q3); Physical and Theoretical Chemistry (Q3)'), (11729, 'Records Management Journal', 9565698, 0.398, 'Q2', 20, 20, 886, 84, 66, '3', '1989-1991, 1994-2020', 'Library and Information Sciences (Q2); Management Information Systems (Q2)'), (11730, 'Revista Electronica de Investigacion Educativ', 16074041, 0.398, 'Q2', 13, 22, 798, 156, 132, '30', '2006-2020', 'Education (Q2)'), (11731, 'Rural and Remote Health', 14456354, 0.398, 'Q1', 40, 96, 2029, 330, 244, '11', '2005-2020', 'Emergency Medical Services (Q1); Health (social science) (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11732, 'Sportverletzung-Sportschaden', 14391236, 0.398, 'Q3', 21, 101, 841, 74, 72, '5', '1987-2020', 'Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Sports Science (Q3)'), (11733, 'Workplace Health and Safety', 21650969, 0.398, 'Q2', 38, 98, 2279, 304, 222, '2', '2008, 2012-2020', 'Nursing (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3)'), (11734, 'Acta Reumatologica Portuguesa', 303464, 0.397, 'Q3', 24, 57, 793, 138, 124, '26', '1973-1975, 1978-1979, 1983-1986, 1994-1996, 2006-2020', 'Medicine (miscellaneous) (Q3); Rheumatology (Q3)'), (11735, 'Annals of Agricultural and Environmental Medi', 12321966, 0.397, 'Q3', 54, 112, 4751, 604, 385, '17', '1995-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Public Health, Environmental and Occupational Health (Q3); Waste Management and Disposal (Q3)'), (11736, 'Applied Bionics and Biomechanics', 11762322, 0.397, 'Q3', 23, 57, 2174, 436, 203, '32', '2007-2020', 'Bioengineering (Q3); Biomedical Engineering (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3)'), (11737, 'Archives of Rheumatology', 21485046, 0.397, 'Q4', 11, 88, 2351, 235, 185, '18', '2014-2020', 'Rheumatology (Q4)'), (11738, 'Asia Pacific Journal of Education', 2188791, 0.397, 'Q2', 24, 92, 5335, 177, 110, '3', '2008-2020', 'Education (Q2)'), (11739, 'Australasian Journal of Disaster and Trauma S', 11744707, 0.397, 'Q3', 16, 7, 464, 21, 24, '41', '1997, 2004-2008, 2010-2019', 'Applied Psychology (Q3)'), (11740, 'Canadian Entomologist', 8347, 0.397, 'Q3', 43, 49, 2331, 196, 198, '3', '1868-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Molecular Biology (Q4); Physiology (Q4); Structural Biology (Q4)'), (11741, 'Canadian Public Policy/ Analyse de Politiques', 3170861, 0.397, 'Q2', 33, 58, 2399, 89, 99, '9', '1978-1980, 1984, 1989-2020', 'Public Administration (Q2); Sociology and Political Science (Q2)'), (11742, 'Cell and Tissue Banking', 15736814, 0.397, 'Q3', 46, 77, 3264, 349, 196, '16', '2000-2020', 'Biomaterials (Q3); Biomedical Engineering (Q3); Transplantation (Q3); Cell Biology (Q4)'), (11743, 'Experientia supplementum (2012)', 1664431, 0.397, 'Q3', 4, 0, 0, 77, 53, '19', '2018-2019', 'Medicine (miscellaneous) (Q3)'), (11744, 'Information Research', 13681613, 0.397, 'Q2', 49, 23, 1135, 144, 105, '20', '1996-2019', 'Library and Information Sciences (Q2)'), (11745, 'Innovative Infrastructure Solutions', 23644176, 0.397, 'Q2', 12, 115, 4767, 365, 199, '19', '2016-2020', 'Engineering (miscellaneous) (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (11746, 'International Journal on Software Tools for T', 14332779, 0.397, 'Q2', 55, 59, 2141, 314, 110, '5', '1997-2020', 'Information Systems (Q2); Software (Q2)'), (11747, 'Journal of Aquatic Food Product Technology', 15470636, 0.397, 'Q3', 30, 94, 3814, 469, 291, '2', '1992-2020', 'Aquatic Science (Q3); Food Science (Q3)'), (11748, 'Journal of Biological Systems', 17936470, 0.397, 'Q2', 32, 34, 1602, 87, 81, '37', '1996-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Applied Mathematics (Q3); Ecology (Q3)'), (11749, 'Journal of College Counseling', 21611882, 0.397, 'Q2', 19, 21, 869, 75, 61, '2', '2009-2020', 'Education (Q2)'), (11750, 'Journal of educational evaluation for health ', 19755937, 0.397, 'Q2', 9, 42, 657, 126, 115, '13', '2016-2020', 'Education (Q2); Health Professions (miscellaneous) (Q3)'), (11751, 'Journal of International Political Theory', 17551722, 0.397, 'Q2', 8, 34, 2159, 70, 73, '3', '2008-2009, 2014-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (11752, 'Journal of Media Ethics: Exploring Questions ', 2373700, 0.397, 'Q1', 16, 24, 738, 64, 53, '3', '2015-2020', 'Philosophy (Q1); Communication (Q2)'), (11753, 'Journal of Social Work in Disability and Reha', 15367118, 0.397, 'Q2', 15, 0, 0, 30, 17, '2', '2002-2017', 'Rehabilitation (Q2); Sociology and Political Science (Q2); Social Work (Q3)'), (11754, 'Journal of Teaching and Learning for Graduate', 18383815, 0.397, 'Q2', 4, 12, 496, 41, 28, '11', '2018-2020', 'Education (Q2); Human Factors and Ergonomics (Q3); Organizational Behavior and Human Resource Management (Q3)'), (11755, 'Journal of Transport Economics and Policy', 17545951, 0.397, 'Q3', 54, 0, 0, 49, 39, '3', '1982-1990, 1994-2019', 'Economics and Econometrics (Q3); Management, Monitoring, Policy and Law (Q3); Transportation (Q3)'), (11756, 'Journal of Transport History', 225266, 0.397, 'Q1', 15, 33, 1729, 38, 58, '3', '1979, 1981-2020', 'History (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2); Transportation (Q3)'), (11757, 'Legume Research', 2505371, 0.397, 'Q2', 13, 141, 3428, 337, 468, '4', '2008-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q3); Soil Science (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (11758, 'PRIMUS', 19354053, 0.397, 'Q2', 17, 144, 2639, 105, 183, '3', '1991-2020', 'Education (Q2); Mathematics (miscellaneous) (Q3)'), (11759, 'Tiedao Xuebao/Journal of the China Railway So', 10018360, 0.397, 'Q2', 30, 228, 4296, 597, 715, '1', '1998, 2001-2020', 'Mechanical Engineering (Q2)'), (11760, 'Vanderbilt Law Review', 422533, 0.397, 'Q2', 44, 11, 1882, 93, 130, '2', '1973-1976, 1978-1979, 1986-1987, 1989-1990, 1992-1993, 1995-2020', 'Law (Q2)'), (11761, 'VINE Journal of Information and Knowledge Man', 20595891, 0.397, 'Q2', 30, 67, 5272, 336, 115, '3', '2016-2020', 'Computer Networks and Communications (Q2); Information Systems (Q2); Library and Information Sciences (Q2); Management of Technology and Innovation (Q2); Computer Science Applications (Q3)'), (11762, 'American Journal of Health Education', 21683751, 0.396, 'Q3', 29, 43, 1834, 189, 112, '3', '2001-2020', 'Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11763, 'Chernye Metally', 1320890, 0.396, 'Q2', 10, 115, 2021, 263, 489, '10', '2016-2020', 'Metals and Alloys (Q2)'), (11764, 'Chinese Journal of Physiology', 26660059, 0.396, 'Q3', 31, 39, 1415, 171, 108, '22', '1971, 1973-2020', 'Physiology (medical) (Q3); Physiology (Q4)'), (11765, 'GeoInformatica', 15737624, 0.396, 'Q2', 55, 46, 1882, 273, 94, '16', '1997-2020', 'Geography, Planning and Development (Q2); Information Systems (Q2)'), (11766, 'IEEE Aerospace and Electronic Systems Magazin', 8858985, 0.396, 'Q2', 60, 65, 1718, 471, 205, '2', '1986-2020', 'Aerospace Engineering (Q2); Electrical and Electronic Engineering (Q2); Space and Planetary Science (Q3)'), (11767, 'International Journal of Corrosion and Scale ', 23056894, 0.396, 'Q2', 12, 90, 3689, 365, 139, '10', '2017-2020', 'Materials Chemistry (Q2); Metals and Alloys (Q2)'), (11768, 'Journal of Applied and Industrial Mathematics', 19904789, 0.396, 'Q2', 18, 69, 1406, 123, 209, '10', '2007-2020', 'Industrial and Manufacturing Engineering (Q2); Applied Mathematics (Q3)'), (11769, 'Journal of Asia-Pacific Biodiversity', 22879544, 0.396, 'Q3', 15, 106, 3683, 287, 275, '13', '2013-2020', 'Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3); Plant Science (Q3)'), (11770, 'Journal of Economic Education', 220485, 0.396, 'Q2', 47, 40, 940, 112, 115, '2', '1969-2020', 'Education (Q2); Economics and Econometrics (Q3)'), (11771, 'Journal of Organizational Behavior Management', 1608061, 0.396, 'Q2', 31, 29, 768, 93, 40, '2', '1977-1978, 1980-1985, 1987-1991, 1993-2020', 'Management of Technology and Innovation (Q2); Strategy and Management (Q2); Applied Psychology (Q3)'), (11772, 'Military Psychology', 15327876, 0.396, 'Q2', 43, 47, 2412, 226, 154, '2', '1990, 1996-2020', 'Social Sciences (miscellaneous) (Q2); Experimental and Cognitive Psychology (Q3); Psychology (miscellaneous) (Q3)'), (11773, 'Optical and Quantum Electronics', 3068919, 0.396, 'Q2', 59, 518, 18200, 2652, 1266, '2', '1969-2020', 'Electrical and Electronic Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (11774, 'Photonic Network Communications', 1387974, 0.396, 'Q2', 37, 48, 1339, 518, 225, '16', '1999-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Software (Q2); Atomic and Molecular Physics, and Optics (Q3)'), (11775, 'Publishing Research Quarterly', 19364792, 0.396, 'Q1', 16, 48, 956, 98, 131, '2', '1991-2020', 'Media Technology (Q1); Business and International Management (Q2); Communication (Q2); Computer Science Applications (Q3); Management of Technology and Innovation (Q3); Marketing (Q3)'), (11776, 'Southern African Geographical Journal', 3736245, 0.396, 'Q2', 23, 41, 2452, 119, 60, '3', '1931-1932, 1934-1936, 1938-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (11777, 'Spine Surgery and Related Research', 2432261, 0.396, 'Q3', 6, 68, 1446, 146, 143, '6', '2017-2020', 'Neurology (clinical) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (11778, 'Tetrahedron Asymmetry', 1362511, 0.396, 'Q3', 107, 0, 0, 290, 187, '3', '1990-2018', 'Catalysis (Q3); Inorganic Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (11779, 'Transactions of the ASABE', 21510040, 0.396, 'Q2', 101, 167, 7841, 806, 531, '2', '2006-2020', 'Agronomy and Crop Science (Q2); Forestry (Q2); Biomedical Engineering (Q3); Food Science (Q3); Soil Science (Q3)'), (11780, 'Transportation Infrastructure Geotechnology', 21967202, 0.396, 'Q3', 9, 45, 1369, 67, 44, '2', '2014-2020', 'Civil and Structural Engineering (Q3); Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Transportation (Q3)'), (11781, 'Urology Practice', 23520779, 0.396, 'Q3', 11, 3, 70, 150, 210, '2', '2014-2019', 'Urology (Q3)'), (11782, 'World Rabbit Science', 12575011, 0.396, 'Q3', 23, 17, 612, 104, 98, '12', '2005-2020', 'Animal Science and Zoology (Q3)'), (11783, 'Wuli Huaxue Xuebao/ Acta Physico - Chimica Si', 10006818, 0.396, 'Q3', 37, 180, 7310, 868, 540, '1', '1996-2020', 'Physical and Theoretical Chemistry (Q3)'), (11784, 'Acta Veterinaria Hungarica', 15882705, 0.395, 'Q2', 33, 49, 1503, 177, 167, '50', '1983-2020', 'Veterinary (miscellaneous) (Q2)'), (11785, 'American Journal of Psychiatric Rehabilitatio', 15487768, 0.395, 'Q2', 29, 0, 0, 26, 19, '2', '2004-2017', 'Rehabilitation (Q2); Psychiatry and Mental Health (Q3)'), (11786, 'Bulletin of the Brazilian Mathematical Societ', 16787714, 0.395, 'Q3', 30, 87, 1863, 191, 137, '2', '1996, 1998, 2000, 2002-2020', 'Mathematics (miscellaneous) (Q3)'), (11787, 'Communications in Applied and Industrial Math', 20380909, 0.395, 'Q2', 9, 5, 185, 93, 53, '5', '2014-2020', 'Industrial and Manufacturing Engineering (Q2); Applied Mathematics (Q3)'), (11788, 'Education 3-13', 14757575, 0.395, 'Q2', 23, 146, 7304, 212, 192, '2', '1970, 1973-2020', 'Education (Q2); Life-span and Life-course Studies (Q3)'), (11789, 'Education as Change', 19479417, 0.395, 'Q2', 14, 42, 1380, 57, 67, '27', '2008-2020', 'Education (Q2)'), (11790, 'Entrepreneurship Research Journal', 21575665, 0.395, 'Q2', 15, 53, 4282, 119, 49, '5', '2015-2020', 'Business and International Management (Q2); Strategy and Management (Q2); Management of Technology and Innovation (Q3)'), (11791, 'European Journal of Social Security', 23992948, 0.395, 'Q2', 14, 31, 688, 55, 55, '3', '2002-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Public Administration (Q3)'), (11792, 'Horticultura Brasileira', 18069991, 0.395, 'Q2', 22, 66, 1738, 225, 239, '14', '2007-2020', 'Horticulture (Q2); Plant Science (Q3); Soil Science (Q3)'), (11793, 'ICSID Review', 2583690, 0.395, 'Q2', 18, 0, 0, 48, 91, '3', '1996-2019', 'Finance (Q2); Law (Q2)'), (11794, 'Indian Journal of Dermatology', 19983611, 0.395, 'Q3', 36, 160, 2229, 430, 300, '4', '1962-1990, 2006-2020', 'Dermatology (Q3)'), (11795, 'Indian Journal of Palliative Care', 19983735, 0.395, 'Q3', 26, 116, 2205, 324, 232, '4', '2005-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11796, 'Infezioni in Medicina', 11249390, 0.395, 'Q3', 22, 112, 3303, 252, 195, '7', '1997-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3)'), (11797, 'Journal of Earthquake and Tsunami', 17937116, 0.395, 'Q3', 18, 40, 1432, 113, 87, '37', '2008-2020', 'Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Oceanography (Q3)'), (11798, 'Journal of Energy Engineering - ASCE', 7339402, 0.395, 'Q2', 31, 86, 3201, 451, 262, '2', '1982-2020', 'Energy Engineering and Power Technology (Q2); Nuclear Energy and Engineering (Q2); Civil and Structural Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q3); Waste Management an'), (11799, 'Journal of Environmental Studies and Sciences', 21906491, 0.395, 'Q2', 23, 43, 2503, 180, 154, '2', '2011-2020', 'Environmental Science (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (11800, 'Journal of Geometry', 472468, 0.395, 'Q3', 22, 47, 837, 162, 183, '19', '1971-2020', 'Geometry and Topology (Q3)'), (11801, 'Journal of Psychiatric Practice', 15381145, 0.395, 'Q3', 54, 68, 611, 163, 176, '2', '1996-1999, 2003-2020', 'Psychiatry and Mental Health (Q3)'), (11802, 'Knowledge Organization', 9437444, 0.395, 'Q2', 28, 47, 2179, 146, 137, '5', '1993-2019', 'Library and Information Sciences (Q2)'), (11803, 'Nondestructive Testing and Evaluation', 14772671, 0.395, 'Q2', 30, 49, 1485, 192, 88, '3', '1989-1998, 2000-2003, 2005-2020', 'Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Mechanics of Materials (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (11804, 'Oman Medical Journal', 20705204, 0.395, 'Q3', 31, 121, 3284, 414, 245, '79', '2007-2020', 'Medicine (miscellaneous) (Q3)'), (11805, 'Psychiatry, Psychology and Law', 19341687, 0.395, 'Q2', 31, 99, 5063, 223, 174, '3', '1994-2020', 'Law (Q2); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3)'), (11806, 'Rendiconti del Circolo Matematico di Palermo', 9725, 0.395, 'Q3', 24, 154, 3449, 128, 129, '7', '1887-1916, 1919-1938, 1940, 1952-2020', 'Mathematics (miscellaneous) (Q3)'), (11807, 'Uncertain Supply Chain Management', 22916822, 0.395, 'Q2', 16, 78, 3216, 263, 107, '9', '2013-2020', 'Business and International Management (Q2); Management Information Systems (Q2); Strategy and Management (Q2); Management Science and Operations Research (Q3); Statistics, Probability and Uncertainty '), (11808, 'Value in Health Regional Issues', 22121099, 0.395, 'Q2', 19, 79, 2841, 265, 197, '2', '2012-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Health Policy (Q3)'), (11809, 'Annals of Geophysics', 15935213, 0.394, 'Q3', 60, 80, 3810, 325, 227, '7', '2001-2020', 'Geophysics (Q3)'), (11810, 'Astronomische Nachrichten', 46337, 0.394, 'Q3', 63, 94, 3440, 505, 367, '5', '1823-1829, 1831, 1833-1943, 1947-1952, 1955-1957, 1959-1963, 1965-1968, 1970-1972, 1974-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (11811, 'Changing English', 1358684, 0.394, 'Q1', 15, 46, 1122, 64, 97, '2', '1994-2020', 'Cultural Studies (Q1); Education (Q2)'), (11812, 'Clinical and Experimental Hepatology', 24498238, 0.394, 'Q4', 10, 28, 1036, 179, 104, '17', '2015-2020', 'Hepatology (Q4)'), (11813, 'Computational Condensed Matter', 23522143, 0.394, 'Q2', 14, 82, 4066, 384, 219, '16', '2014-2020', 'Materials Science (miscellaneous) (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3)'), (11814, 'Danish Medical Journal', 22451919, 0.394, 'Q3', 50, 110, 1807, 348, 265, '25', '2012-2020', 'Medicine (miscellaneous) (Q3)'), (11815, 'Education Next', 15399672, 0.394, 'Q2', 19, 29, 0, 69, 22, '2', '2004-2020', 'Education (Q2)'), (11816, 'English Teaching', 11758708, 0.394, 'Q1', 21, 30, 1189, 69, 93, '3', '2008-2014, 2016-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q2)'), (11817, 'International Journal of Advanced Robotic Sys', 17298806, 0.394, 'Q2', 46, 281, 9648, 1625, 723, '2', '2004-2020', 'Software (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3)'), (11818, 'International Journal of Nursing Education Sc', 1548923, 0.394, 'Q2', 38, 60, 2225, 104, 81, '5', '2003-2020', 'Education (Q2); Nursing (miscellaneous) (Q2)'), (11819, 'Investigaciones Historicas', 2109425, 0.394, 'Q1', 3, 0, 0, 4, 7, '12', '2013-2015, 2017', 'History (Q1)'), (11820, 'Journal of General and Applied Microbiology', 13498037, 0.394, 'Q3', 52, 47, 1633, 195, 122, '6', '1955-2020', 'Applied Microbiology and Biotechnology (Q3); Medicine (miscellaneous) (Q3); Microbiology (Q4)'), (11821, 'Journal of Micro/ Nanolithography, MEMS, and ', 19325134, 0.394, 'Q2', 42, 30, 674, 287, 200, '2', '2007-2020', 'Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); '), (11822, 'Journal of Oleo Science', 13473352, 0.394, 'Q2', 44, 173, 5738, 777, 427, '6', '2001-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (11823, 'Journal of Political Marketing', 15377857, 0.394, 'Q2', 25, 37, 2372, 96, 55, '2', '2002-2020', 'Sociology and Political Science (Q2); Marketing (Q3)'), (11824, 'Journal of Unmanned Vehicle Systems', 22913467, 0.394, 'Q2', 20, 22, 1019, 139, 44, '9', '2019-2020', 'Aerospace Engineering (Q2); Automotive Engineering (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Computer Science Applications (Q3); Control and Optimization '), (11825, 'Journal of World Trade', 10116702, 0.394, 'Q2', 31, 42, 377, 64, 128, '16', '1996-2020', 'Law (Q2); Political Science and International Relations (Q2); Economics and Econometrics (Q3)'), (11826, 'Malaysian Journal of Medical Sciences', 1394195, 0.394, 'Q3', 25, 80, 2755, 425, 230, '23', '2003-2020', 'Medicine (miscellaneous) (Q3)'), (11827, 'Psychiatria Danubina', 3535053, 0.394, 'Q3', 34, 174, 3662, 629, 583, '58', '1989-2020', 'Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (11828, 'Sport Sciences for Health', 18247490, 0.394, 'Q3', 16, 82, 3068, 252, 269, '7', '2004-2020', 'Orthopedics and Sports Medicine (Q3); Sports Science (Q3)'), (11829, 'Veterinaria italiana', 505401, 0.394, 'Q2', 20, 40, 1343, 155, 131, '7', '1975, 2010-2020', 'Veterinary (miscellaneous) (Q2)'), (11830, 'Archives of Mechanics', 3732029, 0.393, 'Q2', 26, 16, 645, 114, 68, '17', '1971-1978, 1980, 1994, 2000-2020', 'Mechanical Engineering (Q2); Condensed Matter Physics (Q3)'), (11831, 'Chemical and Pharmaceutical Bulletin', 92363, 0.393, 'Q2', 92, 161, 6152, 839, 515, '6', '1958-2020', 'Chemistry (miscellaneous) (Q2); Drug Discovery (Q3); Medicine (miscellaneous) (Q3)'), (11832, 'Cogent Economics and Finance', 23322039, 0.393, 'Q2', 16, 164, 8469, 631, 322, '3', '2014-2020', 'Finance (Q2); Economics and Econometrics (Q3)'), (11833, 'Color Research and Application', 15206378, 0.393, 'Q2', 62, 107, 3563, 380, 259, '2', '1976-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Human Factors and Ergonomics (Q3)'), (11834, 'Data', 23065729, 0.393, 'Q2', 18, 117, 4583, 763, 251, '19', '2016-2020', 'Information Systems (Q2); Information Systems and Management (Q2); Computer Science Applications (Q3)'), (11835, 'Ethics, Policy and Environment', 21550093, 0.393, 'Q1', 16, 25, 1688, 105, 76, '3', '2011-2020', 'Philosophy (Q1); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q3)'), (11836, 'European Journal of Behavior Analysis', 2377729, 0.393, 'Q2', 17, 28, 1696, 48, 51, '3', '2000-2020', 'Education (Q2); Psychology (miscellaneous) (Q3)'), (11837, 'Evidence Based Library and Information Practi', 1715720, 0.393, 'Q2', 14, 73, 1139, 94, 168, '9', '2011-2020', 'Library and Information Sciences (Q2)'), (11838, 'Flavour and Fragrance Journal', 10991026, 0.393, 'Q2', 70, 72, 2969, 299, 140, '3', '1985-2020', 'Chemistry (miscellaneous) (Q2); Food Science (Q3)'), (11839, 'Frontiers of Education in China', 16733533, 0.393, 'Q2', 16, 25, 1571, 61, 66, '19', '2006-2020', 'Education (Q2)'), (11840, 'Health Policy and Technology', 22118845, 0.393, 'Q3', 21, 86, 3120, 325, 151, '16', '2012-2020', 'Biomedical Engineering (Q3); Health Policy (Q3)'), (11841, 'International Journal on Magnetic Particle Im', 23659033, 0.393, 'Q2', 2, 81, 686, 14, 4, '5', '2019-2020', 'Electrical and Electronic Engineering (Q2); Signal Processing (Q2); Computer Science Applications (Q3); Electronic, Optical and Magnetic Materials (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11842, 'Machines', 20751702, 0.393, 'Q2', 18, 84, 3383, 591, 165, '19', '2013-2020', 'Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Con'), (11843, 'New Bioethics', 20502877, 0.393, 'Q3', 7, 27, 994, 75, 72, '3', '2012-2020', 'Health Policy (Q3); Issues, Ethics and Legal Aspects (Q3); Reproductive Medicine (Q3); Genetics (clinical) (Q4)'), (11844, 'Progress in Fractional Differentiation and Ap', 23569336, 0.393, 'Q3', 14, 27, 794, 164, 83, '2', '2015-2020', 'Analysis (Q3); Applied Mathematics (Q3)'), (11845, 'Theory of Probability and Mathematical Statis', 949000, 0.393, 'Q3', 12, 31, 592, 77, 85, '2', '2000, 2004-2020', 'Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (11846, 'Action Research', 14767503, 0.392, 'Q2', 37, 51, 1901, 163, 86, '3', '2003-2020', 'Sociology and Political Science (Q2); Strategy and Management (Q2); Organizational Behavior and Human Resource Management (Q3)'), (11847, 'American Journal of Clinical Hypnosis', 21600562, 0.392, 'Q2', 28, 46, 1885, 79, 79, '2', '1958-2020', 'Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3)'), (11848, 'Analytical Sciences', 9106340, 0.392, 'Q3', 73, 269, 9211, 1171, 665, '6', '1985-2020', 'Analytical Chemistry (Q3)'), (11849, 'Contraception: X', 25901516, 0.392, 'Q3', 3, 31, 807, 10, 13, '2', '2019-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (11850, 'Future Cardiology', 14796678, 0.392, 'Q3', 33, 72, 3029, 236, 157, '3', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q3); Molecular Medicine (Q4)'), (11851, 'Genus', 166987, 0.392, 'Q2', 13, 36, 2497, 90, 45, '19', '1970, 1975-1998, 2007-2020', 'Demography (Q2)'), (11852, 'Indian Journal of Clinical Biochemistry', 9740422, 0.392, 'Q3', 42, 94, 2639, 348, 206, '4', '1986-2020', 'Clinical Biochemistry (Q3)'), (11853, 'International Criminal Justice Review', 10575677, 0.392, 'Q2', 22, 43, 2984, 90, 56, '2', '1991-2003, 2005-2020', 'Law (Q2)'), (11854, 'International Journal of Business Communicati', 23294884, 0.392, 'Q2', 53, 69, 4355, 205, 92, '2', '2015-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11855, 'Japanese Psychological Research', 215368, 0.392, 'Q3', 30, 44, 1654, 130, 80, '3', '1954-1956, 1958-1990, 1992-2020', 'Psychology (miscellaneous) (Q3)'), (11856, 'Journal of Applied Ichthyology', 14390426, 0.392, 'Q3', 62, 134, 4370, 670, 707, '3', '1985-2020', 'Aquatic Science (Q3)'), (11857, 'Journal of Social Welfare and Family Law', 9649069, 0.392, 'Q2', 25, 40, 1321, 84, 100, '3', '1979, 1982, 1987-1988, 1991-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (11858, 'Journal of the Royal Society of New Zealand', 3036758, 0.392, 'Q1', 39, 60, 3826, 165, 94, '3', '1971-2020', 'Multidisciplinary (Q1)'), (11859, 'Lasers in Manufacturing and Materials Process', 21967237, 0.392, 'Q2', 12, 28, 1095, 114, 71, '2', '2014-2020', 'Industrial and Manufacturing Engineering (Q2); Instrumentation (Q3); Modeling and Simulation (Q3); Nuclear and High Energy Physics (Q3)'), (11860, 'Leukemia Research Reports', 22130489, 0.392, 'Q3', 12, 40, 724, 73, 72, '3', '2012-2020', 'Hematology (Q3); Oncology (Q3)'), (11861, 'LIBER Quarterly', 14355205, 0.392, 'Q2', 15, 16, 432, 46, 66, '16', '1999-2020', 'Library and Information Sciences (Q2)'), (11862, 'Music Therapy Perspectives', 7346875, 0.392, 'Q1', 10, 32, 839, 51, 60, '2', '1983-1984, 1986-1987, 1990, 1992-1995, 2011-2020', 'Music (Q1); Complementary and Alternative Medicine (Q2); Applied Psychology (Q3)'), (11863, 'Proceedings of the Romanian Academy Series A ', 14549069, 0.392, 'Q2', 28, 46, 965, 280, 191, '43', '2008-2019', 'Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (11864, 'Radiation Protection Dosimetry', 17423406, 0.392, 'Q3', 72, 259, 6123, 996, 1041, '3', '1981-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Radiation (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11865, 'Review of Austrian Economics', 15737128, 0.392, 'Q2', 32, 57, 2834, 75, 90, '16', '1987-1997, 1999-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11866, 'Social Work Research', 15456838, 0.392, 'Q2', 51, 19, 866, 107, 74, '3', '1994-2002, 2004-2020', 'Sociology and Political Science (Q2); Social Work (Q3)'), (11867, 'Stratum Plus', 18573533, 0.392, 'Q1', 6, 134, 7271, 108, 364, '123', '2014-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1); Anthropology (Q2)'), (11868, 'Worldwide Hospitality and Tourism Themes', 17554217, 0.392, 'Q2', 20, 76, 1658, 291, 177, '3', '2009-2020', 'Development (Q2); Management, Monitoring, Policy and Law (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (11869, 'Acta Stomatologica Croatica', 18460410, 0.391, 'Q3', 9, 29, 905, 111, 110, '58', '1966-1972, 1974-1975, 1980-1991, 2009-2020', 'Dentistry (miscellaneous) (Q3)'), (11870, 'African Health Sciences', 16806905, 0.391, 'Q3', 44, 238, 7694, 585, 500, '84', '2001-2020', 'Medicine (miscellaneous) (Q3)'), (11871, 'Annals of Medicine and Surgery', 20490801, 0.391, 'Q3', 23, 515, 12210, 784, 488, '16', '2012-2020', 'Medicine (miscellaneous) (Q3); Surgery (Q3)'), (11872, 'Clinical and Investigative Medicine', 14882353, 0.391, 'Q3', 47, 27, 466, 92, 81, '9', '1978-2020', 'Medicine (miscellaneous) (Q3)'), (11873, 'Commonwealth and Comparative Politics', 17439094, 0.391, 'Q2', 27, 25, 1138, 69, 69, '3', '2002-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11874, 'French Politics', 14763427, 0.391, 'Q2', 14, 25, 1416, 63, 74, '3', '2009-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (11875, 'Gravitation and Cosmology', 19950721, 0.391, 'Q3', 22, 45, 1618, 231, 158, '10', '2008-2020', 'Astronomy and Astrophysics (Q3)'), (11876, 'Healthcare Policy', 17156580, 0.391, 'Q3', 22, 40, 991, 90, 82, '9', '2009-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11877, 'Internal Medicine', 13497235, 0.391, 'Q3', 73, 641, 10469, 2083, 1670, '6', '1974, 1992-2020', 'Internal Medicine (Q3); Medicine (miscellaneous) (Q3)'), (11878, 'International Journal of Integrated Supply Ma', 14775360, 0.391, 'Q3', 20, 21, 1255, 58, 29, '3', '2005-2020', 'Marketing (Q3); Strategy and Management (Q3)'), (11879, 'International Journal of Polymer Analysis and', 15635341, 0.391, 'Q2', 39, 52, 1747, 493, 218, '3', '1995-2020', 'Chemical Engineering (miscellaneous) (Q2); Polymers and Plastics (Q2); Analytical Chemistry (Q3)'), (11880, 'International Journal of Space Structures', 2663511, 0.391, 'Q1', 27, 14, 336, 52, 34, '3', '1985, 1993-2020', 'Architecture (Q1); Conservation (Q1); Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (11881, 'Iraqi Journal of Veterinary Sciences', 20711255, 0.391, 'Q2', 9, 74, 2297, 108, 163, '48', '2009-2020', 'Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3)'), (11882, 'Journal of Arts Management, Law and Society', 10632921, 0.391, 'Q1', 19, 22, 990, 72, 73, '2', '1992-2020', 'Visual Arts and Performing Arts (Q1); Law (Q2); Strategy and Management (Q3)'), (11883, 'Journal of Contemporary Psychotherapy', 15733564, 0.391, 'Q3', 36, 38, 1605, 112, 78, '2', '1968-1982, 1984-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (11884, 'Journal of Gerontological Nursing', 1938243, 0.391, 'Q2', 52, 93, 2476, 261, 214, '2', '1975-2020', 'Nursing (miscellaneous) (Q2); Gerontology (Q3)'), (11885, 'Journal of Organizational Ethnography', 20466757, 0.391, 'Q1', 15, 24, 1195, 75, 70, '3', '2012-2020', 'Cultural Studies (Q1); Anthropology (Q2); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (11886, 'Latin American Economic Review', 2196436, 0.391, 'Q2', 8, 0, 0, 80, 41, '2', '2014-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11887, 'Local Economy', 14709325, 0.391, 'Q2', 37, 41, 2425, 188, 144, '3', '1986-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11888, 'Obrazovanie i Nauka', 19945639, 0.391, 'Q2', 8, 65, 2113, 239, 162, '10', '2018-2020', 'Education (Q2); Developmental and Educational Psychology (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (11889, 'Plasma Science and Technology', 10090630, 0.391, 'Q3', 33, 205, 6817, 932, 617, '3', '2000-2020', 'Condensed Matter Physics (Q3)'), (11890, 'Rivista di Matematica della Universita di Par', 356298, 0.391, 'Q3', 9, 8, 177, 34, 45, '7', '2014-2019', 'Mathematics (miscellaneous) (Q3)'), (11891, 'Veterinary Clinics of North America - Exotic ', 15584232, 0.391, 'Q2', 37, 45, 2484, 146, 114, '3', '1998-2020', 'Small Animals (Q2); Medicine (miscellaneous) (Q3)'), (11892, 'Zoological Science', 2890003, 0.391, 'Q3', 60, 66, 3153, 181, 201, '6', '1992-2020', 'Animal Science and Zoology (Q3)'), (11893, 'Animal Biodiversity and Conservation', 2014928, 0.39, 'Q3', 34, 29, 1471, 90, 97, '12', '2001-2020', 'Animal Science and Zoology (Q3); Nature and Landscape Conservation (Q3)'), (11894, 'Annals of the Royal College of Surgeons of En', 358843, 0.39, 'Q3', 63, 264, 3467, 764, 596, '3', '1947-2020', 'Medicine (miscellaneous) (Q3); Surgery (Q3)'), (11895, 'British Journal of Occupational Therapy', 3080226, 0.39, 'Q2', 46, 108, 3747, 300, 231, '3', '1974-1976, 1996-2020', 'Occupational Therapy (Q2)'), (11896, 'Circuits, Systems, and Signal Processing', 278081, 0.39, 'Q2', 53, 340, 11963, 1970, 838, '2', '1982-2020', 'Signal Processing (Q2); Applied Mathematics (Q3)'), (11897, 'Fisheries and Aquatic Sciences', 22341749, 0.39, 'Q3', 15, 30, 1260, 160, 100, '3', '2008-2020', 'Aquatic Science (Q3); Biochemistry (Q3); Oceanography (Q3); Molecular Biology (Q4)'), (11898, 'Future Cities and Environment', 23639075, 0.39, 'Q1', 3, 12, 296, 19, 14, '3', '2019-2020', 'Architecture (Q1); Geography, Planning and Development (Q2); Urban Studies (Q2); Management, Monitoring, Policy and Law (Q3)'), (11899, 'Global Constitutionalism', 20453825, 0.39, 'Q1', 6, 37, 1680, 60, 41, '3', '2018-2020', 'History (Q1); Philosophy (Q1); Sociology and Political Science (Q2)'), (11900, 'International Economics and Economic Policy', 205230, 0.39, 'Q3', 21, 43, 2163, 131, 94, '5', '2005-2020', 'Economics and Econometrics (Q3)'), (11901, 'International Journal of Dynamics and Control', 2195268, 0.39, 'Q2', 20, 155, 5543, 730, 358, '19', '2013-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Mechanical Engineering (Q2); Civil and Structural Engineering (Q3); Control and Optimization (Q3); Modeling and Simula'), (11902, 'Journal of Allergy', 16879791, 0.39, 'Q3', 3, 0, 0, 1, 1, '2', '2016-2017', 'Immunology and Allergy (Q3)'), (11903, 'Journal of Business-to-Business Marketing', 15470628, 0.39, 'Q2', 31, 23, 1745, 124, 57, '2', '1992-2020', 'Management Information Systems (Q2); Marketing (Q3)'), (11904, 'Journal of Obstetrics and Gynaecology', 13646893, 0.39, 'Q3', 49, 421, 9638, 812, 774, '3', '1945, 1980-2020', 'Obstetrics and Gynecology (Q3)'), (11905, 'Journal of Southeast European and Black Sea', 14683857, 0.39, 'Q1', 18, 32, 1941, 99, 90, '3', '2008-2020', 'History (Q1); Political Science and International Relations (Q2)'), (11906, 'Journal of Wine Research', 9571264, 0.39, 'Q2', 32, 19, 856, 99, 66, '3', '1990-1997, 2000-2020', 'Horticulture (Q2); Food Science (Q3)'), (11907, 'Labor: Studies in Working-Class History', 15581454, 0.39, 'Q1', 2, 45, 1243, 12, 27, '2', '2019', 'History (Q1); Industrial Relations (Q2); Sociology and Political Science (Q2)'), (11908, 'Neurology International', 20358377, 0.39, 'Q3', 16, 19, 625, 87, 63, '7', '2010-2020', 'Neurology (clinical) (Q3)'), (11909, 'Open Veterinary Journal', 22186050, 0.39, 'Q2', 10, 58, 1986, 261, 184, '117', '2015-2020', 'Veterinary (miscellaneous) (Q2)'), (11910, 'Proceedings of the Institution of Mechanical ', 9544100, 0.39, 'Q2', 46, 247, 7814, 1131, 867, '3', '1989-2020', 'Aerospace Engineering (Q2); Mechanical Engineering (Q2)'), (11911, 'Revista de Investigacion Clinica', 348376, 0.39, 'Q3', 27, 47, 89, 172, 122, '30', '1949-2020', 'Medicine (miscellaneous) (Q3)'), (11912, 'Ricerche di Matematica', 18273491, 0.39, 'Q3', 18, 93, 2328, 195, 166, '7', '2007-2020', 'Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3)'), (11913, 'Robotics', 22186581, 0.39, 'Q2', 22, 105, 4773, 625, 210, '19', '2012-2020', 'Mechanical Engineering (Q2); Artificial Intelligence (Q3); Control and Optimization (Q3)'), (11914, 'Tribology - Materials, Surfaces and Interface', 1751584, 0.39, 'Q2', 17, 38, 1262, 130, 70, '3', '2007-2020', 'Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2)'), (11915, 'World Transactions on Engineering and Technol', 14462257, 0.39, 'Q2', 14, 84, 1152, 274, 226, '11', '2009-2020', 'Engineering (miscellaneous) (Q2); Education (Q3)'), (11916, 'Wound management &amp; prevention', 26405237, 0.39, 'Q1', 53, 38, 0, 205, 146, '2', '2019-2020', 'Medical and Surgical Nursing (Q1); Advanced and Specialized Nursing (Q2); Nursing (miscellaneous) (Q2); Gastroenterology (Q3); Internal Medicine (Q3); Medicine (miscellaneous) (Q3)'), (11917, 'Business Information Review', 2663821, 0.389, 'Q2', 15, 23, 560, 100, 54, '3', '1984-2020', 'Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)'), (11918, 'Cardiopulmonary Physical Therapy Journal', 15417891, 0.389, 'Q3', 1, 0, 0, 3, 1, '3', '2017', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (11919, 'Diving and Hyperbaric Medicine', 18333516, 0.389, 'Q3', 20, 67, 325, 119, 111, '11', '2006-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (11920, 'European Heart Journal, Supplement', 1520765, 0.389, 'Q3', 36, 156, 3718, 285, 195, '3', '1999-2012, 2014-2019', 'Cardiology and Cardiovascular Medicine (Q3)'), (11921, 'International Journal of Building Pathology a', 23984708, 0.389, 'Q3', 30, 57, 3186, 258, 131, '3', '2017-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (11922, 'Iowa orthopaedic journal, The', 15415457, 0.389, 'Q3', 38, 40, 0, 140, 126, '2', '1993-2002, 2004-2020', 'Medicine (miscellaneous) (Q3)'), (11923, 'Journal for nurses in professional developmen', 2169981, 0.389, 'Q2', 16, 87, 759, 164, 251, '2', '2013-2020', 'Fundamentals and Skills (Q2); Leadership and Management (Q2); Education (Q3); Medicine (miscellaneous) (Q3); Review and Exam Preparation (Q3)'), (11924, 'Journal of Constructivist Psychology', 15210650, 0.389, 'Q1', 31, 99, 4676, 115, 92, '3', '1994-2020', 'Linguistics and Language (Q1); Developmental and Educational Psychology (Q3); Social Psychology (Q3)'), (11925, 'Journal of Experimental and Theoretical Artif', 13623079, 0.389, 'Q2', 42, 81, 4217, 518, 174, '3', '1989-2020', 'Software (Q2); Artificial Intelligence (Q3); Theoretical Computer Science (Q3)'), (11926, 'Journal of Industrial Engineering Internation', 17355702, 0.389, 'Q2', 23, 0, 0, 376, 170, '5', '2012-2019', 'Industrial and Manufacturing Engineering (Q2)'), (11927, 'Journal of Nanofluids', 2169432, 0.389, 'Q2', 17, 3, 126, 696, 434, '2', '2017-2019', 'Fluid Flow and Transfer Processes (Q2); Mechanical Engineering (Q2)'), (11928, 'Journal of Nonprofit and Public Sector Market', 15406997, 0.389, 'Q3', 30, 43, 2895, 129, 74, '2', '1993-2020', 'Marketing (Q3)'), (11929, 'Journal of Quantitative Linguistics', 9296174, 0.389, 'Q1', 24, 32, 1560, 53, 59, '3', '1994-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (11930, 'Philosophical Papers', 5568641, 0.389, 'Q1', 18, 17, 618, 39, 50, '3', '1972-2020', 'Philosophy (Q1)'), (11931, 'Physiotherapy Canada. Physiotherapie Canada', 3000508, 0.389, 'Q3', 27, 58, 1739, 150, 120, '9', '1973-1995, 2009-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (11932, 'Proceedings of the Institution of Mechanical ', 9544119, 0.389, 'Q2', 78, 135, 5767, 641, 354, '3', '1989-2020', 'Mechanical Engineering (Q2); Medicine (miscellaneous) (Q3)'), (11933, 'Sleep Medicine: X', 25901427, 0.389, 'Q3', 3, 16, 621, 14, 8, '16', '2019-2020', 'Medicine (miscellaneous) (Q3)'), (11934, 'Social Enterprise Journal', 17508533, 0.389, 'Q2', 7, 22, 1524, 96, 55, '3', '2012, 2018-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Development (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Management, Monitoring, Poli'), (11935, 'Soft Materials', 15394468, 0.389, 'Q2', 25, 66, 2953, 218, 108, '2', '2004-2020', 'Chemistry (miscellaneous) (Q2); Materials Science (miscellaneous) (Q2); Condensed Matter Physics (Q3)'), (11936, 'Technology and Culture', 10973729, 0.389, 'Q1', 34, 64, 3383, 75, 129, '2', '1970, 1974-1976, 1978-1982, 1984-1993, 1995-2020', 'History (Q1); Engineering (miscellaneous) (Q2)'), (11937, 'Water S.A.', 18167950, 0.389, 'Q3', 59, 71, 3097, 348, 225, '27', '1976-2020', 'Applied Microbiology and Biotechnology (Q3); Management, Monitoring, Policy and Law (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3)'), (11938, 'Astrophysical Bulletin', 19903421, 0.388, 'Q3', 23, 42, 1662, 217, 142, '10', '2009-2020', 'Astronomy and Astrophysics (Q3); Instrumentation (Q3)'), (11939, 'Biomedical papers of the Medical Faculty of t', 12138118, 0.388, 'Q3', 44, 60, 2529, 226, 174, '31', '2001-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (11940, 'Cerne', 1047760, 0.388, 'Q2', 19, 49, 2180, 196, 157, '14', '2007-2020', 'Forestry (Q2)'), (11941, 'Community Ecology', 15858553, 0.388, 'Q3', 31, 30, 1877, 113, 100, '50', '2000-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (11942, 'Emission Control Science and Technology', 21993629, 0.388, 'Q2', 15, 37, 1233, 157, 80, '19', '2015-2020', 'Automotive Engineering (Q2); Health, Toxicology and Mutagenesis (Q3); Management, Monitoring, Policy and Law (Q3); Pollution (Q3)'), (11943, 'Grassland Science', 1744697, 0.388, 'Q2', 19, 49, 1874, 148, 91, '3', '2009-2020', 'Agronomy and Crop Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (11944, 'International Journal of Air-Conditioning and', 20101325, 0.388, 'Q2', 13, 44, 1511, 158, 125, '2', '2015-2020', 'Control and Systems Engineering (Q2); Fluid Flow and Transfer Processes (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (11945, 'International Journal of Satellite Communicat', 15420981, 0.388, 'Q1', 39, 47, 1387, 216, 118, '3', '2003-2020', 'Media Technology (Q1); Electrical and Electronic Engineering (Q2)'), (11946, 'Journal of Accounting and Organizational Chan', 18325912, 0.388, 'Q2', 27, 48, 2614, 122, 80, '3', '2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Accounting (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (11947, 'Journal of Aggression, Conflict and Peace Res', 20428715, 0.388, 'Q2', 16, 22, 1062, 101, 80, '3', '2009-2020', 'Law (Q2); Sociology and Political Science (Q2); Health (social science) (Q3); Social Psychology (Q3)'), (11948, 'Journal of Pediatric Hematology/Oncology', 10774114, 0.388, 'Q3', 78, 341, 7018, 861, 783, '2', '1979, 1981-2020', 'Hematology (Q3); Oncology (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (11949, 'Journal of Seismic Exploration', 9630651, 0.388, 'Q3', 24, 1, 25, 34, 62, '8', '1992-2018', 'Geochemistry and Petrology (Q3); Geophysics (Q3)'), (11950, 'Kavkazskij Entomologiceskij Bulleten', 27131785, 0.388, 'Q3', 2, 37, 781, 29, 49, '10', '2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (11951, 'Metaphysica', 14372053, 0.388, 'Q1', 4, 17, 577, 19, 43, '5', '2014-2020', 'Philosophy (Q1); Mathematical Physics (Q3)'), (11952, 'Periodica Polytechnica Transportation Enginee', 3037800, 0.388, 'Q2', 15, 56, 1164, 209, 129, '50', '1973, 1976, 1979-1982, 1987-1988, 1996-2020', 'Aerospace Engineering (Q2); Automotive Engineering (Q2); Mechanical Engineering (Q2); Modeling and Simulation (Q3)'), (11953, 'Plasma and Fusion Research', 18806821, 0.388, 'Q3', 17, 69, 1000, 191, 275, '6', '2006-2020', 'Condensed Matter Physics (Q3)'), (11954, 'Sport, Ethics and Philosophy', 17511321, 0.388, 'Q1', 18, 64, 2528, 93, 99, '3', '2007-2020', 'Philosophy (Q1); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (11955, 'Statistics and its Interface', 19387989, 0.388, 'Q3', 18, 45, 1561, 112, 176, '2', '2011-2020', 'Applied Mathematics (Q3); Statistics and Probability (Q3)'), (11956, 'VideoGIE', 24684481, 0.388, 'Q3', 8, 221, 1298, 304, 432, '2', '2016-2020', 'Gastroenterology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (11957, 'Advances in Oceanography and Limnology', 1947573, 0.387, 'Q3', 16, 8, 520, 65, 39, '7', '2010-2020', 'Aquatic Science (Q3); Oceanography (Q3)'), (11958, 'Allergo Journal International', 21970378, 0.387, 'Q3', 14, 32, 1280, 125, 67, '5', '2018-2020', 'Immunology and Allergy (Q3)'), (11959, 'Annals of Coloproctology', 22879722, 0.387, 'Q3', 22, 66, 1482, 209, 141, '13', '2013-2020', 'Gastroenterology (Q3); Surgery (Q3)'), (11960, 'Basic and Clinical Neuroscience', 2008126, 0.387, 'Q3', 18, 82, 3481, 229, 157, '15', '2010-2020', 'Neurology (clinical) (Q3); Cellular and Molecular Neuroscience (Q4)'), (11961, 'Bratislava Medical Journal', 69248, 0.387, 'Q3', 32, 152, 4916, 604, 423, '53', '1950-1955, 1960-2020', 'Medicine (miscellaneous) (Q3)'), (11962, 'Chimia', 94293, 0.387, 'Q2', 55, 172, 4972, 487, 445, '19', '1947-1949, 1960-1961, 1973-1986, 1996-2020', 'Chemistry (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (11963, 'Clinical Pediatrics', 19382707, 0.387, 'Q3', 64, 215, 4617, 740, 687, '2', '1962-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (11964, 'EPJ Photovoltaics', 21050716, 0.387, 'Q2', 13, 12, 307, 30, 28, '8', '2010-2020', 'Electrical and Electronic Engineering (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (11965, 'European Countryside', 18038417, 0.387, 'Q2', 12, 31, 1911, 179, 123, '5', '2012-2020', 'Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)'), (11966, 'Expert Review of Precision Medicine and Drug ', 23808993, 0.387, 'Q3', 11, 43, 4041, 150, 92, '3', '2016-2020', 'Drug Discovery (Q3); Pharmacology (Q3); Genetics (Q4); Molecular Medicine (Q4)'), (11967, 'Guangxue Jingmi Gongcheng/Optics and Precisio', 1004924, 0.387, 'Q3', 37, 279, 6024, 1289, 1096, '1', '2005-2020', 'Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (11968, 'International Journal of Circumpolar Health', 12399736, 0.387, 'Q3', 43, 46, 1713, 187, 163, '3', '1997-2020', 'Health (social science) (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Epidemiology (Q4)'), (11969, 'Journal of Discrete Algorithms', 15708667, 0.387, 'Q3', 38, 0, 0, 80, 55, '16', '2003-2018', 'Computational Theory and Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3); Theoretical Computer Science (Q3)'), (11970, 'Journal of Ecology and Environment', 22881220, 0.387, 'Q3', 12, 29, 1546, 130, 120, '3', '2013-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (11971, 'Journal of Graph Algorithms and Applications', 15261719, 0.387, 'Q2', 38, 31, 708, 143, 101, '2', '1997, 2000-2020', 'Computer Science (miscellaneous) (Q2); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Geometry and Topology (Q3); Theoretical Computer Science (Q3)'), (11972, 'Kinesiology Review', 21616035, 0.387, 'Q3', 8, 29, 1996, 138, 137, '2', '2017-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Public Health, Environmental and Occupational Health (Q3)'), (11973, 'Public Organization Review', 15667170, 0.387, 'Q2', 26, 56, 3158, 126, 91, '16', '2005-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Law (Q2)'), (11974, 'Revista Latino-Americana de Enfermagem', 1041169, 0.387, 'Q2', 36, 161, 4550, 579, 373, '14', '1993-2020', 'Nursing (miscellaneous) (Q2)'), (11975, 'Therapie', 405957, 0.387, 'Q3', 35, 117, 3509, 338, 192, '8', '1947-1948, 1950-2020', 'Pharmacology (medical) (Q3)'), (11976, 'Acta Scientiarum Mathematicarum', 16969, 0.386, 'Q3', 15, 36, 813, 83, 116, '50', '2006, 2009-2020', 'Analysis (Q3); Applied Mathematics (Q3)'), (11977, 'African Journal of Infectious Diseases', 20060165, 0.386, 'Q3', 11, 14, 401, 93, 65, '51', '2010-2020', 'Infectious Diseases (Q3)'), (11978, 'Anais da Academia Brasileira de Ciencias', 13765, 0.386, 'Q1', 58, 363, 16952, 1484, 854, '14', '1945-1946, 1949, 1970-1992, 1994-2020', 'Multidisciplinary (Q1)'), (11979, 'Cardiology in the Young', 10479511, 0.386, 'Q3', 54, 507, 9897, 894, 918, '3', '1991-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (11980, 'Czech Journal of Animal Science', 18059309, 0.386, 'Q3', 35, 50, 1612, 231, 177, '31', '1998-2020', 'Animal Science and Zoology (Q3)'), (11981, 'Ecological Genetics and Genomics', 24059854, 0.386, 'Q3', 7, 21, 940, 87, 44, '2', '2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q4)'), (11982, 'Educacao e Sociedade', 1017330, 0.386, 'Q3', 23, 40, 1492, 73, 161, '14', '2006-2020', 'Education (Q3)'), (11983, 'Educational Studies - AESA', 131946, 0.386, 'Q2', 5, 35, 1959, 77, 83, '3', '2018-2020', 'Sociology and Political Science (Q2); Education (Q3)'), (11984, 'E-Polymers', 16187229, 0.386, 'Q2', 23, 69, 2928, 348, 181, '8', '2001-2020', 'Chemical Engineering (miscellaneous) (Q2); Polymers and Plastics (Q2); Physical and Theoretical Chemistry (Q3)'), (11985, 'Ethics and Education', 17449642, 0.386, 'Q1', 15, 31, 1132, 105, 87, '3', '2010-2020', 'Philosophy (Q1); Education (Q3)'), (11986, 'Financial Markets, Institutions and Instrumen', 9638008, 0.386, 'Q2', 23, 6, 360, 28, 29, '3', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2)'), (11987, 'Floresta', 19824688, 0.386, 'Q2', 13, 58, 1336, 145, 230, '14', '1969, 2011-2020', 'Forestry (Q2); Ecology (Q3); Nature and Landscape Conservation (Q3)'), (11988, 'Interfacial Phenomena and Heat Transfer', 21692785, 0.386, 'Q3', 6, 29, 759, 100, 88, '2', '2017-2020', 'Fluid Flow and Transfer Processes (Q3); Surfaces and Interfaces (Q3)'), (11989, 'International Journal of Game-Based Learning', 21556857, 0.386, 'Q3', 16, 12, 653, 75, 58, '2', '2011-2020', 'Developmental and Educational Psychology (Q3); Education (Q3); E-learning (Q3)'), (11990, 'Journal of Near Infrared Spectroscopy', 17516552, 0.386, 'Q3', 55, 38, 1391, 214, 120, '3', '1996-2020', 'Spectroscopy (Q3)'), (11991, 'Journal of Nutrition and Intermediary Metabol', 23523859, 0.386, 'Q3', 12, 0, 0, 131, 68, '16', '2015-2019', 'Endocrinology, Diabetes and Metabolism (Q3); Food Science (Q3); Nutrition and Dietetics (Q3)'), (11992, 'Journal of Porous Media', 19340508, 0.386, 'Q2', 36, 76, 2847, 422, 260, '2', '1998-2020', 'Mechanical Engineering (Q2); Biomedical Engineering (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3)'), (11993, 'Journal of visceral surgery', 18787886, 0.386, 'Q3', 26, 139, 2571, 283, 234, '8', '2010-2020', 'Surgery (Q3)'), (11994, 'Latin American Journal of Solids and Structur', 16797825, 0.386, 'Q2', 32, 93, 3619, 547, 347, '14', '2003-2020', 'Automotive Engineering (Q2); Materials Science (miscellaneous) (Q2); Mechanical Engineering (Q2); Ocean Engineering (Q2); Aerospace Engineering (Q3); Civil and Structural Engineering (Q3); Mechanics o'), (11995, 'Microsystem Technologies', 9467076, 0.386, 'Q2', 63, 515, 14419, 3195, 1602, '5', '1994-2020', 'Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Nanoscience and Nanotechnology (Q3)'), (11996, 'Open Nursing Journal', 18744346, 0.386, 'Q2', 15, 35, 1385, 117, 79, '16', '2012-2020', 'Nursing (miscellaneous) (Q2)'), (11997, 'Pesquisa Agropecuaria Tropical', 15176398, 0.386, 'Q2', 17, 59, 1985, 197, 178, '14', '2010-2020', 'Agronomy and Crop Science (Q2)'), (11998, 'Risk Management and Insurance Review', 15406296, 0.386, 'Q2', 16, 19, 780, 63, 49, '3', '2006-2020', 'Finance (Q2); Accounting (Q3); Economics and Econometrics (Q3)'), (11999, 'Scottish Geographical Journal', 14702541, 0.386, 'Q2', 26, 22, 444, 53, 49, '3', '1996-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2)'), (12000, 'Verbum et Ecclesia', 20747705, 0.386, 'Q1', 8, 56, 2446, 56, 136, '27', '2013-2020', 'Religious Studies (Q1); Sociology and Political Science (Q2)'), (12001, 'Advances in Aircraft and Spacecraft Science', 2287528, 0.385, 'Q3', 12, 17, 600, 142, 109, '13', '2014-2020', 'Aerospace Engineering (Q3); Fluid Flow and Transfer Processes (Q3)'), (12002, 'Annals of Dermatology', 10139087, 0.385, 'Q3', 37, 100, 1720, 416, 421, '13', '1989-1996, 2008-2020', 'Dermatology (Q3)'), (12003, 'Australian Journal of Adult Learning', 14431394, 0.385, 'Q3', 16, 26, 952, 59, 64, '11', '2008-2020', 'Education (Q3); E-learning (Q3)'), (12004, 'Bangladesh Journal of Pharmacology', 1991007, 0.385, 'Q3', 23, 16, 462, 196, 135, '59', '2009-2020', 'Pharmacology (Q3)'), (12005, 'Compost Science and Utilization', 1065657, 0.385, 'Q3', 52, 13, 635, 140, 84, '3', '1993-2020', 'Ecology (Q3); Soil Science (Q3); Waste Management and Disposal (Q3)'), (12006, 'First Break', 2635046, 0.385, 'Q3', 40, 95, 1291, 179, 283, '16', '1989-2019', 'Geophysics (Q3)'), (12007, 'IMA Journal of Mathematical Control and Infor', 2650754, 0.385, 'Q2', 37, 63, 2173, 292, 181, '3', '1984-2020', 'Control and Systems Engineering (Q2); Applied Mathematics (Q3); Control and Optimization (Q3)'), (12008, 'International Journal of Computational Intell', 18756891, 0.385, 'Q2', 41, 137, 5227, 700, 294, '3', '2008-2020', 'Computer Science (miscellaneous) (Q2); Computational Mathematics (Q3)'), (12009, 'Journal of Industrial Engineering and Managem', 20138423, 0.385, 'Q2', 29, 32, 1931, 216, 112, '12', '2008-2020', 'Industrial and Manufacturing Engineering (Q2); Strategy and Management (Q3)'), (12010, 'Journal of Lesbian Studies', 15403548, 0.385, 'Q2', 31, 36, 1349, 100, 93, '2', '1996-2020', 'Gender Studies (Q2); Medicine (miscellaneous) (Q3)'), (12011, 'Journal of Open Research Software', 20499647, 0.385, 'Q2', 6, 29, 498, 137, 60, '3', '2018-2020', 'Information Systems (Q2); Library and Information Sciences (Q2); Software (Q2)'), (12012, 'Journal of Workplace Learning', 13665626, 0.385, 'Q2', 50, 53, 2849, 177, 102, '3', '1997-2020', 'Development (Q2); Organizational Behavior and Human Resource Management (Q3); Social Psychology (Q3)'), (12013, 'Logic Journal of the IGPL', 13689894, 0.385, 'Q1', 27, 59, 1470, 136, 102, '3', '1993-1994, 2005-2020', 'Philosophy (Q1)'), (12014, 'Malaysian Journal of Learning and Instruction', 21802483, 0.385, 'Q1', 8, 20, 1066, 106, 69, '23', '2006, 2010, 2012-2020', 'Cultural Studies (Q1); Education (Q3); Psychology (miscellaneous) (Q3)'), (12015, 'Molecular Diversity', 1573501, 0.385, 'Q2', 57, 186, 9704, 522, 227, '16', '1995-1998, 2000, 2003-2020', 'Information Systems (Q2); Catalysis (Q3); Drug Discovery (Q3); Inorganic Chemistry (Q3); Medicine (miscellaneous) (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Molecular Biolo'), (12016, 'Pediatric Neurosurgery', 10162291, 0.385, 'Q3', 72, 56, 1204, 210, 198, '19', '1955, 1975-1985, 1987-2020', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)'), (12017, 'Review of Industrial Organization', 889938, 0.385, 'Q3', 58, 84, 2461, 158, 165, '16', '1984-1986, 1988-2020', 'Economics and Econometrics (Q3); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (12018, 'Revista Iberoamericana de Micologia', 11301406, 0.385, 'Q3', 43, 29, 535, 163, 119, '12', '1996-2020', 'Infectious Diseases (Q3); Microbiology (Q4)'), (12019, 'Symmetry', 20738994, 0.385, 'Q2', 50, 2048, 87815, 7970, 2558, '19', '2009-2020', 'Chemistry (miscellaneous) (Q2); Computer Science (miscellaneous) (Q2); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (12020, 'Turkish Journal of Field Crops', 13011111, 0.385, 'Q2', 19, 31, 1242, 83, 76, '18', '2009-2020', 'Agronomy and Crop Science (Q2)'), (12021, 'XLinguae', 13378384, 0.385, 'Q1', 16, 87, 2917, 308, 320, '53', '2011-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Philosophy (Q1)'), (12022, 'Arabian Archaeology and Epigraphy', 16000471, 0.384, 'Q1', 18, 35, 1854, 42, 46, '25', '1990-2020', 'Archeology (Q1); Arts and Humanities (miscellaneous) (Q2)'), (12023, 'Archives of Environmental Protection', 3248461, 0.384, 'Q2', 21, 46, 1999, 233, 138, '17', '2007-2020', 'Environmental Science (miscellaneous) (Q2)'), (12024, 'Bottom Line', 888045, 0.384, 'Q2', 16, 20, 1244, 122, 54, '3', '1988-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Library and Information Sciences (Q2)'), (12025, 'Decision Science Letters', 19295804, 0.384, 'Q3', 18, 43, 1578, 253, 109, '9', '2012-2020', 'Decision Sciences (miscellaneous) (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (12026, 'Folia Histochemica et Cytobiologica', 2398508, 0.384, 'Q3', 40, 30, 1283, 100, 69, '17', '1984-2020', 'Histology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)'), (12027, 'Grasas y Aceites', 173495, 0.384, 'Q3', 46, 50, 1740, 237, 151, '12', '1991-2020', 'Food Science (Q3); Organic Chemistry (Q3)'), (12028, 'IEEE Transactions on Device and Materials Rel', 15304388, 0.384, 'Q2', 70, 101, 2763, 573, 278, '2', '2001-2020', 'Electrical and Electronic Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Electronic, Optical and Magnetic Materials (Q3)'), (12029, 'IET Signal Processing', 17519675, 0.384, 'Q2', 42, 78, 3401, 776, 364, '3', '2007-2020', 'Electrical and Electronic Engineering (Q2); Signal Processing (Q3)'), (12030, 'Indian Pediatrics', 9747559, 0.384, 'Q3', 50, 387, 4245, 589, 539, '4', '1964-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (12031, 'International Journal of Automotive Technolog', 14709511, 0.384, 'Q2', 22, 22, 1416, 84, 60, '3', '2001-2014', 'Automotive Engineering (Q2); Strategy and Management (Q3)'), (12032, 'International Journal of Comparative Psycholo', 8893667, 0.384, 'Q3', 8, 22, 925, 73, 91, '2', '1992, 2015-2019', 'Psychology (miscellaneous) (Q3)'), (12033, 'Journal for Multicultural Education', 20535368, 0.384, 'Q1', 8, 21, 1046, 49, 75, '3', '2014-2020', 'Cultural Studies (Q1); Linguistics and Language (Q1); Education (Q3)'), (12034, 'Journal of Healthcare Leadership', 11793201, 0.384, 'Q3', 11, 15, 589, 42, 25, '2', '2014-2020', 'Leadership and Management (Q3); Organizational Behavior and Human Resource Management (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12035, 'Journal of HIV/AIDS and Social Services', 1538151, 0.384, 'Q3', 15, 20, 761, 58, 77, '2', '2002-2020', 'Health (social science) (Q3)'), (12036, 'Journal of Sustainable Development of Energy,', 18489257, 0.384, 'Q2', 14, 52, 2106, 289, 133, '58', '2013-2020', 'Environmental Science (miscellaneous) (Q2); Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3); Water Science and Technology (Q3)'), (12037, 'Materials Research', 15161439, 0.384, 'Q2', 49, 177, 6314, 1495, 891, '14', '2005-2020', 'Mechanical Engineering (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (12038, 'Micro and Nano Systems Letters', 22139621, 0.384, 'Q3', 13, 22, 518, 149, 48, '5', '2013-2020', 'Biomaterials (Q3); Biomedical Engineering (Q3)'), (12039, 'NORA - Nordic Journal of Feminist and Gender ', 8038740, 0.384, 'Q2', 27, 28, 1156, 59, 59, '3', '1993-2020', 'Gender Studies (Q2)'), (12040, 'Plastics, Rubber and Composites', 17432898, 0.384, 'Q2', 39, 58, 1898, 316, 155, '3', '1991-1992, 1998-2020', 'Chemical Engineering (miscellaneous) (Q2); Polymers and Plastics (Q2); Ceramics and Composites (Q3); Materials Chemistry (Q3)'), (12041, 'Proceedings of the Institution of Civil Engin', 17517664, 0.384, 'Q3', 20, 26, 549, 69, 77, '3', '2004-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (12042, 'Siglo Cero', 2101696, 0.384, 'Q2', 6, 20, 919, 64, 55, '12', '2012, 2015-2019', 'Psychiatric Mental Health (Q2); Education (Q3); Psychiatry and Mental Health (Q3); Psychology (miscellaneous) (Q3); Social Psychology (Q3); Social Work (Q3)'), (12043, 'Actuators', 20760825, 0.383, 'Q2', 20, 140, 5783, 412, 159, '19', '2012-2020', 'Control and Systems Engineering (Q2); Control and Optimization (Q3)'), (12044, 'Biologically Inspired Cognitive Architectures', 2212683, 0.383, 'Q3', 20, 0, 0, 167, 79, '16', '2012-2018', 'Artificial Intelligence (Q3); Experimental and Cognitive Psychology (Q3); Cognitive Neuroscience (Q4)'), (12045, 'Civil Engineering and Environmental Systems', 10286608, 0.383, 'Q3', 31, 19, 706, 75, 44, '3', '1998-2020', 'Civil and Structural Engineering (Q3)'), (12046, 'Community Development', 15575330, 0.383, 'Q2', 19, 56, 2913, 154, 109, '3', '2010-2020', 'Geography, Planning and Development (Q2); Sociology and Political Science (Q2)'), (12047, 'East Asian Archives of Psychiatry', 22247041, 0.383, 'Q3', 16, 45, 788, 83, 67, '1', '2010-2020', 'Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (12048, 'Human Rights Review', 15248879, 0.383, 'Q2', 18, 21, 1621, 49, 58, '16', '2000-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (12049, 'Indonesia and the Malay World', 13639811, 0.383, 'Q2', 15, 22, 1133, 67, 55, '3', '2000-2020', 'Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (12050, 'International Journal of Applied Glass Scienc', 20411286, 0.383, 'Q3', 34, 71, 3208, 295, 148, '3', '2010-2020', 'Materials Science (miscellaneous) (Q3)'), (12051, 'International Journal of Group Theory', 22517669, 0.383, 'Q3', 9, 26, 498, 34, 63, '15', '2012-2020', 'Algebra and Number Theory (Q3)'), (12052, 'Materials Research Express', 20531591, 0.383, 'Q2', 35, 1434, 53452, 13825, 8565, '3', '2014-2020', 'Metals and Alloys (Q2); Polymers and Plastics (Q2); Surfaces, Coatings and Films (Q2); Electronic, Optical and Magnetic Materials (Q3); Biomaterials (Q4)'), (12053, 'Microbiology Resource Announcements', 2576098, 0.383, 'Q4', 35, 993, 12940, 2955, 3398, '2', '2018-2020', 'Genetics (Q4); Immunology and Microbiology (miscellaneous) (Q4); Molecular Biology (Q4)'), (12054, 'New Educator', 15499243, 0.383, 'Q2', 19, 27, 1201, 51, 62, '3', '2005-2020', 'Sociology and Political Science (Q2); Education (Q3)'), (12055, 'New Zealand Journal of Educational Studies', 21994714, 0.383, 'Q3', 18, 30, 1224, 55, 54, '37', '1996-2013, 2015-2020', 'Education (Q3)'), (12056, 'Particulate Science and Technology', 15480046, 0.383, 'Q2', 35, 158, 5971, 682, 327, '3', '1983-2020', 'Chemical Engineering (miscellaneous) (Q2)'), (12057, 'RAIRO - Operations Research', 12903868, 0.383, 'Q3', 24, 84, 3136, 375, 250, '8', '1977-1978, 1995-2020', 'Computer Science Applications (Q3); Management Science and Operations Research (Q3); Theoretical Computer Science (Q3)'), (12058, 'Results in Engineering', 25901230, 0.383, 'Q2', 7, 110, 3666, 151, 57, '16', '2019-2020', 'Engineering (miscellaneous) (Q2)'), (12059, 'Topoi', 1677411, 0.383, 'Q1', 23, 133, 5788, 278, 189, '16', '1982-1996, 2004, 2006-2020', 'Philosophy (Q1)'), (12060, 'Transportation Research Interdisciplinary Per', 25901982, 0.383, 'Q2', 10, 171, 8370, 114, 62, '3', '2019-2020', 'Automotive Engineering (Q2); Civil and Structural Engineering (Q3); Management Science and Operations Research (Q3); Transportation (Q3)'), (12061, 'Wilson Journal of Ornithology', 15594491, 0.383, 'Q3', 42, 40, 1676, 219, 325, '2', '2006-2020', 'Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12062, 'Alpine Entomology', 25350889, 0.382, 'Q3', 4, 16, 507, 24, 36, '61', '2017-2018', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (12063, 'Ancient Mesoamerica', 14691787, 0.382, 'Q2', 38, 40, 3034, 58, 102, '3', '1989-2020', 'Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (12064, 'Australian Veterinary Journal', 17510813, 0.382, 'Q2', 59, 100, 2718, 274, 246, '2', '1925-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (12065, 'Chinese Journal of Atmospheric Sciences', 10069895, 0.382, 'Q3', 9, 90, 3698, 253, 289, '1', '2016-2020', 'Atmospheric Science (Q3)'), (12066, 'Clinical Case Studies', 15346501, 0.382, 'Q3', 22, 37, 1499, 96, 91, '2', '2002-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (12067, 'Colloid and Polymer Science', 303402, 0.382, 'Q2', 87, 162, 7063, 1073, 581, '5', '1974-2020', 'Polymers and Plastics (Q2); Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Colloid and Surface Chemistry (Q4)'), (12068, 'Connection Science', 13600494, 0.382, 'Q2', 43, 49, 2099, 168, 64, '3', '1989-2020', 'Software (Q2); Artificial Intelligence (Q3); Human-Computer Interaction (Q3)'), (12069, 'Cranio - Journal of Craniomandibular Practice', 8869634, 0.382, 'Q3', 44, 153, 4927, 313, 220, '3', '1984-2020', 'Dentistry (miscellaneous) (Q3); Otorhinolaryngology (Q3)'), (12070, 'Economic and Political Studies', 24704024, 0.382, 'Q2', 7, 38, 1275, 92, 70, '3', '2013-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3)'), (12071, 'European Geriatric Medicine', 18787657, 0.382, 'Q3', 22, 133, 4431, 394, 303, '8', '2010-2020', 'Geriatrics and Gerontology (Q3); Gerontology (Q3)'), (12072, 'IEEE Sensors Letters', 24751472, 0.382, 'Q2', 10, 156, 2724, 382, 162, '2', '2019-2020', 'Electrical and Electronic Engineering (Q2); Instrumentation (Q3)'), (12073, 'Indian Journal of Medical Microbiology', 2550857, 0.382, 'Q3', 48, 83, 2168, 332, 307, '4', '1986-1987, 1989-1991, 2003-2020', 'Microbiology (medical) (Q3)'), (12074, 'International Journal of Africa Nursing Scien', 22141391, 0.382, 'Q2', 13, 83, 3238, 202, 130, '3', '2014-2020', 'Nursing (miscellaneous) (Q2)'), (12075, 'International Review of Social History', 1469512, 0.382, 'Q1', 26, 41, 1713, 37, 81, '3', '1956-2020', 'History (Q1); Social Sciences (miscellaneous) (Q2)'), (12076, 'Journal of Accessibility and Design for All', 20137087, 0.382, 'Q1', 4, 9, 348, 25, 24, '12', '2015-2020', 'Architecture (Q1); Building and Construction (Q3); Human Factors and Ergonomics (Q3)'), (12077, 'Journal of Applied Logic', 15708683, 0.382, 'Q3', 34, 0, 0, 120, 46, '16', '2003-2017', 'Applied Mathematics (Q3); Logic (Q3)'), (12078, 'Journal of Pharmaceutical Innovation', 18725120, 0.382, 'Q2', 29, 137, 6019, 186, 96, '2', '2006-2020', 'Pharmaceutical Science (Q2); Drug Discovery (Q3)'), (12079, 'Journal of Southern African Studies', 3057070, 0.382, 'Q2', 47, 77, 0, 162, 183, '3', '1974-2020', 'Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2); Sociology and Political Science (Q2)'), (12080, 'Maritime Business Review', 23973757, 0.382, 'Q2', 6, 24, 944, 86, 56, '3', '2016, 2018-2020', 'Business and International Management (Q2); Management of Technology and Innovation (Q3); Strategy and Management (Q3); Transportation (Q3)'), (12081, 'Oxford Journal of Archaeology', 2625253, 0.382, 'Q1', 31, 22, 1490, 45, 65, '3', '1982-2020', 'Archeology (arts and humanities) (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (12082, 'Plankton and Benthos Research', 18808247, 0.382, 'Q3', 21, 35, 1274, 73, 79, '6', '2006-2020', 'Aquatic Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Oceanography (Q3)'), (12083, 'Revista Espanola de Pedagogia', 21740909, 0.382, 'Q3', 14, 24, 1054, 95, 76, '12', '2006-2020', 'Education (Q3)'), (12084, 'ACM Transactions on Interactive Intelligent S', 21606463, 0.381, 'Q3', 34, 23, 1590, 304, 78, '2', '2011-2020', 'Artificial Intelligence (Q3); Human-Computer Interaction (Q3)'), (12085, 'Ampersand', 22150390, 0.381, 'Q1', 7, 14, 768, 23, 22, '3', '2014-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (12086, 'Arqueologia de la Arquitectura', 19895313, 0.381, 'Q1', 7, 12, 631, 16, 36, '12', '2011-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Architecture (Q1); Conservation (Q1); Visual Arts and Performing Arts (Q1)'), (12087, 'BMJ Innovations', 2055642, 0.381, 'Q3', 15, 60, 1560, 121, 76, '3', '2015-2020', 'Medicine (miscellaneous) (Q3)'), (12088, 'British Dental Journal', 70610, 0.381, 'Q3', 82, 1299, 7272, 1209, 1379, '3', '1945-1951, 1960-1961, 1965-2020', 'Dentistry (miscellaneous) (Q3)'), (12089, 'Cahiers Agricultures', 11667699, 0.381, 'Q2', 19, 36, 1180, 120, 129, '8', '2006-2020', 'Agronomy and Crop Science (Q2); Animal Science and Zoology (Q3); Management, Monitoring, Policy and Law (Q3)'), (12090, 'Ciencia Florestal', 19805098, 0.381, 'Q2', 21, 100, 3086, 346, 412, '14', '2007-2020', 'Forestry (Q2)'), (12091, 'Comunicacion y Sociedad', 21740895, 0.381, 'Q2', 16, 53, 2599, 192, 163, '12', '2010-2020', 'Communication (Q2)'), (12092, 'Ecology of Food and Nutrition', 3670244, 0.381, 'Q3', 36, 60, 2329, 152, 98, '3', '1971-2020', 'Ecology (Q3); Food Science (Q3); Medicine (miscellaneous) (Q3)'), (12093, 'Frontiers in Mechanical Engineering', 22973079, 0.381, 'Q2', 7, 14, 633, 50, 15, '19', '2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q2); Computer Science Applications (Q3); Materials Science (miscellaneous) (Q3)'), (12094, 'Frontiers of Business Research in China', 16737326, 0.381, 'Q2', 12, 25, 1492, 107, 65, '37', '2007-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Public Administration (Q3)'), (12095, 'Gornyi Zhurnal', 172278, 0.381, 'Q3', 14, 155, 2855, 408, 626, '10', '1971, 1973-1977, 2001-2005, 2013-2020', 'Geotechnical Engineering and Engineering Geology (Q3)'), (12096, 'Indian journal of public health', 19557, 0.381, 'Q3', 26, 138, 0, 239, 200, '4', '1961-2020', 'Medicine (miscellaneous) (Q3)'), (12097, 'Irish Journal of Medical Science', 18634362, 0.381, 'Q3', 33, 332, 8523, 726, 542, '3', '1922-2020', 'Medicine (miscellaneous) (Q3)'), (12098, 'Jinshu Xuebao/Acta Metallurgica Sinica', 4121961, 0.381, 'Q2', 36, 155, 6492, 768, 516, '1', '1978-1991, 1996-2020', 'Mechanical Engineering (Q2); Metals and Alloys (Q2); Geotechnical Engineering and Engineering Geology (Q3); Mechanics of Materials (Q3)'), (12099, 'Journal of Ambient Intelligence and Smart Env', 18761364, 0.381, 'Q2', 29, 38, 1724, 308, 107, '16', '2009-2020', 'Software (Q2)'), (12100, 'Journal of Foraminiferal Research', 961191, 0.381, 'Q3', 60, 22, 1564, 94, 76, '2', '1979-2020', 'Paleontology (Q3); Microbiology (Q4)'), (12101, 'Journal of Investigative Surgery', 15210553, 0.381, 'Q3', 40, 331, 8294, 433, 253, '3', '1988-2020', 'Surgery (Q3)'), (12102, 'Journal of Renal Care', 17556678, 0.381, 'Q2', 27, 41, 1354, 107, 77, '2', '2006-2020', 'Advanced and Specialized Nursing (Q2); Nephrology (Q3)'), (12103, 'Psicologia Educativa', 1135755, 0.381, 'Q3', 14, 20, 1091, 81, 48, '12', '2013-2020', 'Developmental and Educational Psychology (Q3); Social Psychology (Q3)'), (12104, 'Qualitative Research in Organizations and Man', 17465648, 0.381, 'Q2', 21, 24, 1906, 104, 77, '3', '2001, 2006-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q3)'), (12105, 'Revue de Micropaleontologie', 351598, 0.381, 'Q3', 29, 27, 1715, 73, 60, '8', '1979, 1988-2020', 'Paleontology (Q3)'), (12106, 'Service Oriented Computing and Applications', 18632386, 0.381, 'Q2', 26, 28, 993, 233, 77, '3', '2007-2020', 'Hardware and Architecture (Q2); Information Systems (Q2); Management Information Systems (Q2); Software (Q2)'), (12107, 'Statistical Analysis and Data Mining', 19321864, 0.381, 'Q2', 33, 41, 1359, 191, 88, '2', '2008-2020', 'Information Systems (Q2); Analysis (Q3); Computer Science Applications (Q3)'), (12108, 'Studies in the Education of Adults', 2660830, 0.381, 'Q2', 25, 17, 868, 57, 42, '3', '1996-2020', 'Sociology and Political Science (Q2); Education (Q3)'), (12109, 'ACM Transactions on Modeling and Computer Sim', 15581195, 0.38, 'Q3', 51, 25, 898, 171, 77, '2', '1991-2020', 'Computer Science Applications (Q3); Modeling and Simulation (Q3)'), (12110, 'Acta Mathematica Vietnamica', 2514184, 0.38, 'Q3', 12, 65, 1388, 157, 145, '5', '2011-2020', 'Mathematics (miscellaneous) (Q3)'), (12111, 'Acta Mycologica', 2353074, 0.38, 'Q3', 5, 19, 1121, 39, 42, '17', '2015-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (12112, 'Advances in Fuzzy Systems', 16877101, 0.38, 'Q2', 19, 19, 651, 152, 75, '2', '2009-2020', 'Control and Systems Engineering (Q2); Computational Mathematics (Q3); Control and Optimization (Q3)'), (12113, 'Argument and Computation', 19462166, 0.38, 'Q1', 20, 11, 741, 82, 38, '3', '2010-2020', 'Linguistics and Language (Q1); Artificial Intelligence (Q3); Computational Mathematics (Q3); Computer Science Applications (Q3)'), (12114, 'Carbon Letters', 22334998, 0.38, 'Q3', 18, 118, 4927, 375, 187, '37', '2014-2020', 'Ceramics and Composites (Q3); Energy Engineering and Power Technology (Q3); Inorganic Chemistry (Q3); Materials Chemistry (Q3); Organic Chemistry (Q3); Process Chemistry and Technology (Q3); Renewable'), (12115, 'Childhood in the Past', 20408528, 0.38, 'Q2', 8, 11, 443, 21, 22, '3', '2014-2020', 'Anthropology (Q2); Life-span and Life-course Studies (Q3)'), (12116, 'China Economic Journal', 17538963, 0.38, 'Q1', 18, 25, 833, 57, 62, '3', '2010-2020', 'Cultural Studies (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (12117, 'Clinics in Podiatric Medicine and Surgery', 8918422, 0.38, 'Q3', 34, 68, 2230, 187, 136, '3', '1986-2020', 'Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (12118, 'Counselling and Psychotherapy Research', 14733145, 0.38, 'Q3', 32, 102, 4732, 192, 125, '2', '2001-2020', 'Applied Psychology (Q3); Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (12119, 'Criminal Justice Studies', 14786028, 0.38, 'Q2', 18, 36, 1959, 86, 74, '3', '2007-2020', 'Law (Q2)'), (12120, 'Fundamental and Applied Limnology', 18639135, 0.38, 'Q3', 61, 28, 1634, 131, 116, '5', '2007-2020', 'Aquatic Science (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12121, 'Genetics and Epigenetics', 1179237, 0.38, 'Q3', 10, 0, 0, 6, 3, '41', '2008-2010, 2012-2017', 'Biochemistry (Q3); Genetics (Q4)'), (12122, 'Geography and Natural Resources', 1875371, 0.38, 'Q2', 11, 48, 1203, 109, 147, '10', '2008-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2); Management, Monitoring, Policy and Law (Q3)'), (12123, 'IET Computer Vision', 17519640, 0.38, 'Q2', 37, 73, 2987, 796, 301, '3', '2007-2020', 'Computer Vision and Pattern Recognition (Q2); Software (Q2)'), (12124, 'International Journal of Design Creativity an', 21650357, 0.38, 'Q1', 12, 19, 771, 72, 44, '3', '2013-2020', 'Architecture (Q1); Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Aerospace Engineering (Q3); Education (Q3); Experimental and Cognit'), (12125, 'Jianzhu Jiegou Xuebao/Journal of Building Str', 10006869, 0.38, 'Q3', 38, 349, 7421, 863, 965, '1', '1982-1989, 1998, 2001-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (12126, 'Journal of Advanced Dielectrics', 2010135, 0.38, 'Q2', 13, 63, 1864, 263, 148, '37', '2015-2020', 'Electrical and Electronic Engineering (Q2); Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (12127, 'Journal of Children and Poverty', 10796126, 0.38, 'Q2', 11, 17, 848, 40, 29, '3', '2010-2020', 'Demography (Q2); Sociology and Political Science (Q2); Urban Studies (Q2); Education (Q3)'), (12128, 'Journal of College Reading and Learning', 10790195, 0.38, 'Q1', 17, 24, 741, 36, 32, '3', '1983-1985, 1987-2013, 2015-2020', 'Linguistics and Language (Q1); Developmental and Educational Psychology (Q3); Education (Q3)'), (12129, 'Journal of Craniovertebral Junction and Spine', 9748237, 0.38, 'Q3', 23, 63, 1630, 188, 162, '4', '2010-2020', 'Neurology (clinical) (Q3); Surgery (Q3)'), (12130, 'Journal of the Royal Society of Medicine', 17581095, 0.38, 'Q3', 81, 156, 1922, 271, 142, '3', '1908-1918, 1920-1922, 1924-2020', 'Medicine (miscellaneous) (Q3)'), (12131, 'New York University Law Review', 287881, 0.38, 'Q2', 50, 37, 10, 83, 120, '2', '1973-1976, 1979, 1985, 1987, 1991-1994, 1996-1999, 2001-2020', 'Law (Q2)'), (12132, 'PSL Quarterly Review', 20373643, 0.38, 'Q2', 4, 9, 522, 32, 40, '7', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Law (Q2); Economics and Econometrics (Q3)'), (12133, 'Advances in Civil Engineering', 16878086, 0.379, 'Q3', 25, 1123, 40332, 2587, 1365, '2', '2008-2020', 'Civil and Structural Engineering (Q3)'), (12134, 'Advances in Operations Research', 16879155, 0.379, 'Q3', 14, 10, 289, 89, 27, '2', '2009-2020', 'Management Science and Operations Research (Q3)'), (12135, 'Asian Security', 14799855, 0.379, 'Q2', 15, 30, 249, 73, 57, '2', '2010-2020', 'Political Science and International Relations (Q2); Safety Research (Q2)'), (12136, 'IET Optoelectronics', 17518768, 0.379, 'Q2', 42, 60, 2244, 303, 143, '3', '2007-2020', 'Electrical and Electronic Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3)'), (12137, 'Information Retrieval', 13864564, 0.379, 'Q2', 58, 23, 1043, 240, 65, '16', '1999-2020', 'Information Systems (Q2); Library and Information Sciences (Q2)'), (12138, 'Journal of Biological Education', 219266, 0.379, 'Q2', 39, 100, 3378, 176, 145, '3', '1967-2009, 2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Education (Q3)'), (12139, 'Journal of Mathematical Neuroscience', 21908567, 0.379, 'Q4', 20, 21, 1245, 59, 32, '5', '2012-2020', 'Neuroscience (miscellaneous) (Q4)'), (12140, 'Journal of Minimal Access Surgery', 9729941, 0.379, 'Q3', 26, 96, 1579, 243, 218, '4', '2005-2020', 'Surgery (Q3)'), (12141, 'MDM Policy and Practice', 23814683, 0.379, 'Q3', 3, 5, 164, 23, 25, '2', '2017, 2019-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12142, 'Minimally Invasive Therapy and Allied Technol', 13652931, 0.379, 'Q3', 44, 146, 3953, 293, 168, '3', '1991-2020', 'Surgery (Q3)'), (12143, 'Peacebuilding', 21647267, 0.379, 'Q2', 5, 25, 0, 51, 37, '3', '2018-2020', 'Development (Q2); Political Science and International Relations (Q2); Safety Research (Q2)'), (12144, 'Proceedings of the ACM on Human-Computer Inte', 25730142, 0.379, 'Q2', 27, 206, 15028, 2565, 504, '2', '2017-2020', 'Computer Networks and Communications (Q2); Social Sciences (miscellaneous) (Q2); Human-Computer Interaction (Q3)'), (12145, 'Sao Paulo Journal of Mathematical Sciences', 19826907, 0.379, 'Q3', 7, 53, 1281, 76, 99, '19', '2015-2020', 'Computational Theory and Mathematics (Q3); Mathematics (miscellaneous) (Q3); Statistics, Probability and Uncertainty (Q3)'), (12146, 'Scottish Historical Review', 369241, 0.379, 'Q1', 12, 22, 1892, 18, 36, '3', '1978, 1982, 1999, 2001-2020', 'History (Q1)'), (12147, 'Steel in Translation', 19350988, 0.379, 'Q3', 17, 125, 2429, 323, 453, '10', '1996-2020', 'Materials Science (miscellaneous) (Q3)'), (12148, 'Cardiovascular Journal of Africa', 19951892, 0.378, 'Q3', 35, 64, 1622, 222, 214, '27', '2007-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (12149, 'Dianji yu Kongzhi Xuebao/Electric Machines an', 1007449, 0.378, 'Q2', 21, 220, 4293, 592, 549, '1', '2007-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Computer Science Applications (Q3); Energy Engineering and Power Technology (Q3)'), (12150, 'East European Politics and Societies', 15338371, 0.378, 'Q2', 41, 99, 0, 162, 136, '2', '1986-2020', 'Sociology and Political Science (Q2)'), (12151, 'Evergreen', 21890420, 0.378, 'Q3', 11, 86, 2619, 206, 86, '6', '2014-2020', 'Ceramics and Composites (Q3); Electronic, Optical and Magnetic Materials (Q3); Management, Monitoring, Policy and Law (Q3); Surfaces, Coatings and Films (Q3)'), (12152, 'First Amendment Studies', 21689725, 0.378, 'Q2', 5, 19, 927, 17, 18, '3', '2013-2020', 'Communication (Q2); Law (Q2); Sociology and Political Science (Q2)'), (12153, 'Helminthologia', 4406605, 0.378, 'Q3', 28, 47, 1793, 142, 130, '17', '1979-1980, 1996-2020', 'Animal Science and Zoology (Q3); Parasitology (Q4)'), (12154, 'International Journal of Comparative and Appl', 21576475, 0.378, 'Q2', 12, 39, 2527, 82, 67, '2', '1977-1995, 2014-2020', 'Law (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)'), (12155, 'International Journal of Image and Data Fusio', 19479832, 0.378, 'Q2', 27, 27, 1136, 122, 48, '3', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Computer Science Applications (Q3)'), (12156, 'Inventions', 24115134, 0.378, 'Q2', 14, 63, 2971, 469, 179, '19', '2016-2020', 'Engineering (miscellaneous) (Q2)'), (12157, 'JMIR Research Protocols', 19290748, 0.378, 'Q3', 9, 472, 21967, 645, 515, '9', '2018, 2020', 'Medicine (miscellaneous) (Q3)'), (12158, 'Journal of Legal Affairs and Dispute Resoluti', 19434162, 0.378, 'Q2', 9, 94, 3458, 178, 69, '2', '2018-2020', 'Engineering (miscellaneous) (Q2); Law (Q2); Safety, Risk, Reliability and Quality (Q2); Civil and Structural Engineering (Q3)'), (12159, 'Journal of the Indian Society of Pedodontics ', 9704388, 0.378, 'Q3', 33, 74, 1568, 384, 207, '4', '1983-1989, 1991-2020', 'Dentistry (miscellaneous) (Q3)'), (12160, 'Mathematical Models and Computer Simulations', 20700482, 0.378, 'Q3', 18, 96, 1992, 183, 245, '10', '2009-2020', 'Computational Mathematics (Q3); Modeling and Simulation (Q3)'), (12161, 'Nuclear Physics and Atomic Energy', 1818331, 0.378, 'Q3', 8, 47, 881, 104, 141, '44', '2008-2020', 'Nuclear and High Energy Physics (Q3)'), (12162, 'Pattern Analysis and Applications', 1433755, 0.378, 'Q2', 55, 138, 6090, 711, 274, '3', '1998-2020', 'Computer Vision and Pattern Recognition (Q2); Artificial Intelligence (Q3)'), (12163, 'Process Safety Progress', 15475913, 0.378, 'Q2', 40, 119, 2608, 238, 175, '2', '1993-2020', 'Chemical Engineering (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2)'), (12164, 'Revista Caatinga', 100316, 0.378, 'Q2', 18, 120, 3755, 370, 360, '14', '2010-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (12165, 'Revista de Contabilidad-Spanish Accounting Re', 19884672, 0.378, 'Q3', 18, 19, 1405, 115, 58, '3', '2009-2020', 'Accounting (Q3)'), (12166, 'Sociobiology', 3616525, 0.378, 'Q3', 38, 67, 2704, 231, 246, '2', '1988, 1993-1994, 1996-2020', 'Insect Science (Q3)'), (12167, 'UCLA Law Review', 415650, 0.378, 'Q2', 43, 12, 3093, 96, 107, '2', '1968, 1976, 1978, 1980-1983, 1986, 1989, 1991-2019', 'Law (Q2)'), (12168, 'Zeitschrift fur Gesundheitswissenschaften', 9431853, 0.378, 'Q3', 30, 309, 10545, 304, 261, '5', '1993-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (12169, 'Advances in School Mental Health Promotion', 20498535, 0.377, 'Q2', 20, 0, 0, 20, 16, '2', '2008-2017', 'Pediatrics (Q2); Developmental and Educational Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health '), (12170, 'Applied Food Biotechnology', 24234214, 0.377, 'Q3', 11, 26, 928, 155, 74, '15', '2014-2020', 'Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Food Science (Q3)'), (12171, 'Argumentation', 920427, 0.377, 'Q1', 27, 39, 1529, 78, 74, '16', '1987-2020', 'Linguistics and Language (Q1); Philosophy (Q1)'), (12172, 'Australian Journal of International Affairs', 10357718, 0.377, 'Q2', 30, 48, 3183, 134, 124, '3', '1990-2020', 'Geography, Planning and Development (Q2); Political Science and International Relations (Q2)'), (12173, 'Canadian Journal of Animal Science', 83984, 0.377, 'Q3', 64, 88, 3334, 282, 285, '9', '1975, 1993-2020', 'Animal Science and Zoology (Q3); Food Animals (Q3)'), (12174, 'CoDAS', 23171782, 0.377, 'Q1', 23, 109, 2426, 252, 271, '14', '2013-2020', 'Language and Linguistics (Q1); Otorhinolaryngology (Q3); Speech and Hearing (Q3)'), (12175, 'Crystal Research and Technology', 15214079, 0.377, 'Q2', 64, 92, 3094, 388, 278, '5', '1966-2020', 'Chemistry (miscellaneous) (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)'), (12176, 'Dynamical Systems', 14689367, 0.377, 'Q3', 34, 48, 963, 69, 102, '3', '1996-2020', 'Computer Science Applications (Q3); Mathematics (miscellaneous) (Q3)'), (12177, 'Earth Science Frontiers', 10052321, 0.377, 'Q3', 30, 149, 10247, 610, 501, '1', '2010, 2013-2020', 'Geology (Q3)'), (12178, 'Economy of Region', 20726406, 0.377, 'Q2', 14, 99, 3042, 412, 316, '10', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q2); Social Sciences (miscellaneous) (Q2); Envi'), (12179, 'Geojournal of Tourism and Geosites', 20651198, 0.377, 'Q2', 12, 138, 6540, 363, 168, '43', '2013-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (12180, 'International Journal of Distance Education T', 15393100, 0.377, 'Q2', 18, 21, 859, 84, 65, '2', '2003-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q3); Education (Q3); E-learning (Q3)'), (12181, 'International Journal of Mechanical and Mater', 18230334, 0.377, 'Q2', 24, 8, 217, 105, 44, '19', '2007-2020', 'Mechanical Engineering (Q2); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (12182, 'Invertebrate Neuroscience', 13542516, 0.377, 'Q4', 36, 24, 1196, 46, 40, '5', '1995-1999, 2001-2020', 'Cellular and Molecular Neuroscience (Q4); Developmental Neuroscience (Q4)'), (12183, 'Journal of Asian Public Policy', 17516242, 0.377, 'Q2', 12, 44, 2746, 122, 64, '3', '2010-2020', 'Sociology and Political Science (Q2); Public Administration (Q3)'), (12184, 'Journal of China Tourism Research', 19388160, 0.377, 'Q1', 21, 64, 4453, 118, 78, '3', '2008-2020', 'Cultural Studies (Q1); Language and Linguistics (Q1); Linguistics and Language (Q1); Tourism, Leisure and Hospitality Management (Q3)'), (12185, 'Journal of Electrochemical Energy Conversion ', 23816910, 0.377, 'Q2', 13, 24, 914, 228, 115, '2', '2016-2020', 'Mechanical Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3); Energy Engineering and Power Technology (Q3); Mechanics of Materials (Q3); Renewable Energy, Sustainability and the Enviro'), (12186, 'Journal of Information Policy', 23815892, 0.377, 'Q2', 5, 4, 233, 67, 49, '2', '2017-2020', 'Sociology and Political Science (Q2); Public Administration (Q3)'), (12187, 'Journal of Laser Micro Nanoengineering', 18800688, 0.377, 'Q2', 26, 42, 1117, 211, 149, '6', '2006-2020', 'Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Instrumentation (Q3); Nanoscience and Nanotechnology (Q3)'), (12188, 'Journal of Modern Optics', 13623044, 0.377, 'Q3', 91, 180, 5588, 1271, 804, '3', '1981, 1987-2020', 'Atomic and Molecular Physics, and Optics (Q3)'), (12189, 'Journal of Perinatal and Neonatal Nursing', 8932190, 0.377, 'Q2', 43, 74, 1535, 201, 173, '2', '1987-2020', 'Critical Care Nursing (Q2); Maternity and Midwifery (Q2); Pediatrics (Q2); Medicine (miscellaneous) (Q3)'), (12190, 'Journal of Water and Land Development', 14297426, 0.377, 'Q2', 16, 75, 2296, 314, 240, '17', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Development (Q2); Geography, Planning and Development (Q2); Environmental Engineering (Q3); Water Science and Technology (Q3)'), (12191, 'Journal of Water Supply: Research and Technol', 16053974, 0.377, 'Q3', 50, 69, 2721, 350, 210, '3', '1985, 1987, 1989, 1992, 1994, 1996-2020', 'Environmental Engineering (Q3); Health, Toxicology and Mutagenesis (Q3); Water Science and Technology (Q3)'), (12192, 'Laser Physics', 1054660, 0.377, 'Q2', 55, 246, 7293, 1168, 802, '2', '1996-2020', 'Industrial and Manufacturing Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Instrumentation (Q3)'), (12193, 'Northwestern University Law Review', 293571, 0.377, 'Q2', 43, 47, 142, 103, 114, '2', '1973, 1977, 1981, 1989-1990, 1992-2020', 'Law (Q2)'), (12194, 'Prostate Cancer', 20903111, 0.377, 'Q3', 11, 16, 725, 27, 14, '32', '2013-2020', 'Oncology (Q3); Urology (Q3); Cancer Research (Q4)'), (12195, 'Acta Dermatovenerologica Alpina, Panonica et ', 13184458, 0.376, 'Q3', 28, 43, 1186, 139, 115, '60', '1994-2020', 'Dermatology (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)'), (12196, 'Annals of Clinical and Laboratory Science', 917370, 0.376, 'Q2', 56, 128, 0, 413, 352, '2', '1971-2020', 'Medical Laboratory Technology (Q2); Clinical Biochemistry (Q3); Hematology (Q3); Immunology and Allergy (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Immunology (Q4); Micr'), (12197, 'Applied Economics Letters', 13504851, 0.376, 'Q3', 51, 574, 8447, 1022, 946, '3', '1994-2020', 'Economics and Econometrics (Q3)'), (12198, 'Aula Abierta', 2102773, 0.376, 'Q3', 9, 38, 1729, 56, 26, '12', '2014-2016, 2019', 'Education (Q3)'), (12199, 'Blood Coagulation and Fibrinolysis', 14735733, 0.376, 'Q3', 71, 111, 1242, 383, 308, '2', '1990-2020', 'Hematology (Q3); Medicine (miscellaneous) (Q3)'), (12200, 'Candollea', 3732967, 0.376, 'Q3', 17, 25, 582, 41, 75, '19', '2000, 2003-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (12201, 'Etnografia e Ricerca Qualitativa', 19733194, 0.376, 'Q1', 7, 21, 540, 45, 47, '7', '2012-2019', 'Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q2)'), (12202, 'Fashion Theory - Journal of Dress Body and Cu', 1362704, 0.376, 'Q1', 26, 67, 2051, 73, 105, '3', '2002-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)'), (12203, 'Flux', 11542721, 0.376, 'Q2', 12, 40, 1672, 45, 59, '8', '1996-1998, 2002-2020', 'Geography, Planning and Development (Q2)'), (12204, 'General Physiology and Biophysics', 2315882, 0.376, 'Q3', 39, 58, 2333, 272, 186, '53', '1983-2020', 'Biophysics (Q3); Medicine (miscellaneous) (Q3); Physiology (Q4)'), (12205, 'Human Movement', 17323991, 0.376, 'Q3', 16, 43, 1450, 167, 136, '17', '2006-2020', 'Biophysics (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12206, 'Indian Journal of Tuberculosis', 195707, 0.376, 'Q3', 20, 179, 3886, 242, 207, '4', '1973-1993, 2007-2020', 'Infectious Diseases (Q3)'), (12207, 'International Journal of Law, Crime and Justi', 17560616, 0.376, 'Q2', 27, 49, 2882, 165, 121, '2', '2008-2020', 'Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (12208, 'International Review of Economics', 18634613, 0.376, 'Q2', 16, 28, 1523, 100, 63, '5', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (12209, 'Journal of Asian and African Studies', 219096, 0.376, 'Q2', 25, 145, 7745, 247, 220, '3', '1966-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (12210, 'Journal of Medical Ethics and History of Medi', 20080387, 0.376, 'Q1', 14, 33, 810, 55, 42, '15', '2008-2020', 'History (Q1); Computer Science (miscellaneous) (Q2); Law (Q2)'), (12211, 'Journal of Property Research', 14664453, 0.376, 'Q2', 32, 16, 724, 65, 48, '3', '1991-2020', 'Geography, Planning and Development (Q2); Urban Studies (Q2)'), (12212, 'Latin American and Caribbean Ethnic Studies', 17442222, 0.376, 'Q1', 16, 41, 2078, 41, 47, '3', '2006-2020', 'Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q2)'), (12213, 'Limnetica', 2138409, 0.376, 'Q3', 32, 45, 2962, 121, 93, '12', '1996-2020', 'Aquatic Science (Q3); Ecology (Q3); Water Science and Technology (Q3)'), (12214, 'Norsk Geografisk Tidsskrift', 15025292, 0.376, 'Q2', 36, 32, 1334, 97, 78, '3', '1926-1928, 1930, 1932-1933, 1935-1936, 1938, 1940-1946, 1948, 1951, 1954, 1956-1957, 1959, 1961, 196', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (12215, 'Nous-Supplement: Philosophical Perspectives', 17582245, 0.376, 'Q1', 39, 8, 265, 23, 39, '3', '1997-2009, 2014-2020', 'Philosophy (Q1)'), (12216, 'Nuclear Physics News', 10619127, 0.376, 'Q3', 14, 22, 318, 83, 66, '3', '1990-2020', 'Nuclear and High Energy Physics (Q3)'), (12217, 'Asia-Pacific Journal of Financial Studies', 20419945, 0.375, 'Q2', 15, 28, 1506, 113, 94, '3', '2006-2020', 'Finance (Q2)'), (12218, 'Clinical Journal of Oncology Nursing', 1538067, 0.375, 'Q3', 43, 141, 3350, 438, 377, '2', '1997-2020', 'Oncology (Q3); Oncology (nursing) (Q3)'), (12219, 'Electronics Letters', 1350911, 0.375, 'Q2', 146, 532, 5585, 3366, 2018, '3', '1965-2020', 'Electrical and Electronic Engineering (Q2)'), (12220, 'Eurasian Journal of Mathematical and Computer', 23066172, 0.375, 'Q2', 9, 25, 614, 68, 60, '65', '2013-2020', 'Information Systems (Q2); Applied Mathematics (Q3); Computational Mathematics (Q3); Computer Science Applications (Q3); Mathematical Physics (Q3); Modeling and Simulation (Q3)'), (12221, 'Hesperia', 18098, 0.375, 'Q1', 24, 17, 2134, 24, 46, '2', '2002-2019', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Classics (Q1); History (Q1)'), (12222, 'Indian Journal of Community Medicine', 9700218, 0.375, 'Q3', 32, 104, 1958, 274, 216, '4', '2009, 2014, 2017-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (12223, 'Indian Journal of Occupational and Environmen', 19983670, 0.375, 'Q3', 26, 45, 935, 121, 76, '4', '1999-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (12224, 'International Journal of Training Research', 14480220, 0.375, 'Q3', 9, 15, 635, 67, 66, '3', '2012-2020', 'Education (Q3)'), (12225, 'Journal for General Philosophy of Science', 9254560, 0.375, 'Q1', 16, 46, 1807, 92, 97, '16', '1980, 1986, 1990-2020', 'Philosophy (Q1); History and Philosophy of Science (Q2); Social Sciences (miscellaneous) (Q2)'), (12226, 'Journal of Ayurveda and Integrative Medicine', 9759476, 0.375, 'Q2', 25, 135, 4502, 300, 143, '16', '2010-2020', 'Complementary and Alternative Medicine (Q2); Drug Discovery (Q3)'), (12227, 'Naukovyi Visnyk Natsionalnoho Hirnychoho Univ', 20712227, 0.375, 'Q2', 19, 171, 2717, 473, 416, '44', '2012-2020', 'Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q3)'), (12228, 'Supercomputing Frontiers and Innovations', 23138734, 0.375, 'Q2', 16, 23, 879, 245, 107, '10', '2014-2020', 'Computer Networks and Communications (Q2); Hardware and Architecture (Q2); Information Systems (Q2); Software (Q2); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3)'), (12229, 'Technical Communication', 493155, 0.375, 'Q2', 33, 23, 1122, 53, 60, '2', '1973-1985, 1987-1988, 1996-2020', 'Communication (Q2); Social Sciences (miscellaneous) (Q2)'), (12230, 'VirusDisease', 23473584, 0.375, 'Q3', 22, 76, 2426, 268, 201, '4', '2014-2020', 'Infectious Diseases (Q3); Virology (Q4)'), (12231, 'Asian and Pacific Migration Journal', 1171968, 0.374, 'Q2', 28, 27, 1283, 70, 66, '63', '1992-2020', 'Demography (Q2); Geography, Planning and Development (Q2)'), (12232, 'Asia Pacific Media Educator', 23215410, 0.374, 'Q2', 8, 15, 531, 57, 45, '4', '2014-2020', 'Communication (Q2); Education (Q3)'), (12233, 'Boletin de la Asociacion de Geografos Espanol', 26053322, 0.374, 'Q2', 19, 58, 3859, 206, 198, '12', '2006-2020', 'Geography, Planning and Development (Q2)'), (12234, 'Cybersecurity', 20964862, 0.374, 'Q2', 8, 20, 1220, 167, 39, '3', '2018-2020', 'Computer Networks and Communications (Q2); Information Systems (Q2); Software (Q2); Artificial Intelligence (Q3)'), (12235, 'European Journal of Language Policy', 17576830, 0.374, 'Q1', 6, 10, 211, 43, 46, '3', '2016-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (12236, 'Folia Linguistica', 1654004, 0.374, 'Q1', 21, 21, 1110, 67, 93, '5', '1967-1971, 1973, 1975-1995, 1997-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (12237, 'Global Health Promotion', 17579767, 0.374, 'Q3', 31, 106, 3082, 220, 141, '3', '1993, 2006, 2008-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (12238, 'Herz', 16156692, 0.374, 'Q3', 51, 178, 5779, 289, 281, '5', '1978-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (12239, 'Iranian Journal of Veterinary Research', 17281997, 0.374, 'Q2', 19, 47, 1497, 181, 131, '15', '2008-2020', 'Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3)'), (12240, 'Irish Journal of Psychological Medicine', 7909667, 0.374, 'Q2', 20, 131, 3746, 155, 128, '3', '1968, 1989-2020', 'History and Philosophy of Science (Q2); Applied Psychology (Q3); Psychiatry and Mental Health (Q3)'), (12241, 'JAMS Journal of Acupuncture and Meridian Stud', 20938152, 0.374, 'Q2', 32, 31, 861, 166, 118, '16', '2008-2020', 'Complementary and Alternative Medicine (Q2); Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q3)'), (12242, 'Journal for healthcare quality : official pub', 19451474, 0.374, 'Q3', 27, 51, 530, 183, 168, '2', '1992-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12243, 'Journal of Applied Animal Welfare Science', 15327604, 0.374, 'Q2', 40, 65, 2865, 164, 108, '2', '2002-2020', 'Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3)'), (12244, 'Journal of Convention and Event Tourism', 15470148, 0.374, 'Q3', 25, 34, 2164, 112, 62, '2', '2005-2020', 'Tourism, Leisure and Hospitality Management (Q3)'), (12245, 'Journal of Radioanalytical and Nuclear Chemis', 15882780, 0.374, 'Q2', 67, 577, 20723, 2510, 1894, '16', '1977-1979, 1984-2020', 'Nuclear Energy and Engineering (Q2); Analytical Chemistry (Q3); Health, Toxicology and Mutagenesis (Q3); Pollution (Q3); Public Health, Environmental and Occupational Health (Q3); Radiology, Nuclear M'), (12246, 'New Directions for Evaluation', 10976736, 0.374, 'Q3', 40, 44, 1118, 96, 117, '2', '1995-2020', 'Education (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)'), (12247, 'Open Agriculture', 23919531, 0.374, 'Q2', 10, 90, 3995, 319, 210, '17', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (12248, 'Papeles del Psicologo', 2147823, 0.374, 'Q3', 21, 26, 1229, 106, 78, '12', '2007-2020', 'Psychology (miscellaneous) (Q3)'), (12249, 'Polish Maritime Research', 12332585, 0.374, 'Q2', 21, 96, 2374, 431, 345, '17', '2007-2020', 'Mechanical Engineering (Q2); Ocean Engineering (Q2)'), (12250, 'Protistology', 16800826, 0.374, 'Q3', 5, 27, 973, 55, 52, '10', '2017-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Microbiology (Q4)'), (12251, 'Pythagoras', 22237895, 0.374, 'Q3', 7, 8, 359, 21, 28, '27', '2012-2019', 'Education (Q3); Mathematics (miscellaneous) (Q3)'), (12252, 'Rocky Mountain Journal of Mathematics', 357596, 0.374, 'Q3', 42, 145, 2769, 327, 391, '2', '1971-2020', 'Mathematics (miscellaneous) (Q3)'), (12253, 'Rossijskaja Arheologija', 8696063, 0.374, 'Q1', 3, 46, 1332, 29, 108, '10', '2017-2019', 'Archeology (Q1); Archeology (arts and humanities) (Q1); History (Q1)'), (12254, 'Turkish Online Journal of Distance Education', 13026488, 0.374, 'Q3', 22, 45, 2280, 238, 153, '18', '2004-2020', 'Education (Q3)'), (12255, 'Annals of Saudi Medicine', 2564947, 0.373, 'Q3', 44, 68, 1841, 273, 201, '29', '1988-2020', 'Medicine (miscellaneous) (Q3)'), (12256, 'Applied Geophysics', 16727975, 0.373, 'Q3', 25, 46, 1317, 171, 165, '1', '2006-2020', 'Geophysics (Q3)'), (12257, 'Assistive Technology', 19493614, 0.373, 'Q2', 44, 71, 2709, 219, 120, '3', '1989-2020', 'Rehabilitation (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (12258, 'British Journal of Visual Impairment', 17445809, 0.373, 'Q3', 21, 66, 2378, 94, 56, '2', '1983-2020', 'Ophthalmology (Q3)'), (12259, 'Chinese Journal of Analytical Chemistry', 18722040, 0.373, 'Q3', 30, 79, 3563, 441, 221, '16', '2006-2020', 'Analytical Chemistry (Q3)'), (12260, 'Clinical Medicine Insights: Gastroenterology', 11795522, 0.373, 'Q3', 11, 0, 0, 37, 27, '41', '2010-2018', 'Gastroenterology (Q3)'), (12261, 'Ekonomicheskaya Sotsiologiya', 17263247, 0.373, 'Q2', 5, 27, 1239, 40, 96, '10', '2016-2020', 'Sociology and Political Science (Q2); Economics and Econometrics (Q3)'), (12262, 'International Journal of Cognitive Research i', 2334847, 0.373, 'Q3', 9, 49, 1621, 127, 85, '55', '2013-2020', 'Education (Q3); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)'), (12263, 'International Journal of Ecology', 16879708, 0.373, 'Q3', 20, 9, 426, 35, 21, '2', '2009-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12264, 'International Journal of Network Management', 10557148, 0.373, 'Q2', 28, 54, 2448, 247, 99, '3', '1991-2020', 'Computer Networks and Communications (Q2); Computer Science Applications (Q3)'), (12265, 'Journal of Computer Science and Technology', 18604749, 0.373, 'Q2', 48, 92, 3717, 716, 269, '2', '1986-2020', 'Hardware and Architecture (Q2); Software (Q2); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Theoretical Computer Science (Q3)'), (12266, 'Mathematical and Computational Forestry and N', 19467664, 0.373, 'Q2', 12, 8, 319, 24, 28, '2', '2009-2019', 'Forestry (Q2); Applied Mathematics (Q3); Computer Science Applications (Q3); Environmental Engineering (Q3)'), (12267, 'Polish Journal of Environmental Studies', 12301485, 0.373, 'Q3', 54, 478, 20445, 1866, 1039, '17', '1996-2020', 'Environmental Chemistry (Q3); Environmental Science (miscellaneous) (Q3)'), (12268, 'Political Quarterly', 1467923, 0.373, 'Q2', 37, 100, 441, 282, 243, '3', '1930-2020', 'Sociology and Political Science (Q2)'), (12269, 'Russian Mathematics', 1066369, 0.373, 'Q3', 14, 104, 1621, 160, 334, '10', '1992, 2010-2020', 'Mathematics (miscellaneous) (Q3)'), (12270, 'Texas Heart Institute Journal', 7302347, 0.373, 'Q3', 53, 87, 1194, 215, 148, '2', '1982-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (12271, 'Topics in Language Disorders', 15503259, 0.373, 'Q1', 45, 29, 1288, 74, 55, '2', '1980-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Speech and Hearing (Q3)'), (12272, 'Transplantation Proceedings', 411345, 0.373, 'Q3', 83, 647, 12402, 1927, 1950, '2', '1969-2020', 'Surgery (Q3); Transplantation (Q3)'), (12273, 'Acta Adriatica', 15113, 0.372, 'Q3', 21, 21, 773, 85, 80, '58', '1973, 1980, 1982-1983, 1985, 2000-2002, 2005-2020', 'Oceanography (Q3)'), (12274, 'African Entomology', 10213589, 0.372, 'Q2', 30, 50, 1836, 189, 175, '27', '1994-2020', 'Agronomy and Crop Science (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (12275, 'Analele Stiintifice ale Universitatii Ovidius', 12241784, 0.372, 'Q3', 19, 45, 912, 128, 134, '43', '2009-2020', 'Analysis (Q3); Applied Mathematics (Q3)'), (12276, 'Analytical Letters', 1532236, 0.372, 'Q3', 60, 278, 10110, 1208, 637, '2', '1967-2020', 'Analytical Chemistry (Q3); Biochemistry (Q3); Biochemistry (medical) (Q3); Clinical Biochemistry (Q3); Electrochemistry (Q3); Spectroscopy (Q3)'), (12277, 'Asian journal of endoscopic surgery', 17585902, 0.372, 'Q3', 18, 110, 0, 286, 259, '6', '2011-2020', 'Medicine (miscellaneous) (Q3)'), (12278, 'Bio-Medical Materials and Engineering', 9592989, 0.372, 'Q3', 53, 36, 882, 288, 188, '16', '1991-2020', 'Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3); Biomaterials (Q4)'), (12279, 'Center for Educational Policy Studies Journal', 18559719, 0.372, 'Q3', 13, 38, 1508, 102, 82, '60', '2011-2020', 'Education (Q3)'), (12280, 'Cornell Law Review', 108847, 0.372, 'Q2', 45, 5, 414, 82, 97, '2', '1975-1981, 1984-1986, 1988-2020', 'Law (Q2)'), (12281, 'Critical Pathways in Cardiology', 15352811, 0.372, 'Q3', 24, 38, 1042, 94, 100, '2', '2003-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (12282, 'Economic and Social Review', 129984, 0.372, 'Q2', 27, 19, 902, 66, 73, '42', '1979-2020', 'Sociology and Political Science (Q2); Economics and Econometrics (Q3)'), (12283, 'Ethnoarchaeology', 19442890, 0.372, 'Q1', 6, 3, 249, 18, 26, '3', '2014-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Anthropology (Q2)'), (12284, 'Family and Consumer Sciences Research Journal', 1077727, 0.372, 'Q1', 31, 29, 1116, 89, 74, '2', '1972-1973, 1994-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q2)'), (12285, 'Hispanic Journal of Behavioral Sciences', 15526364, 0.372, 'Q1', 62, 29, 1138, 100, 90, '2', '1979-2020', 'Cultural Studies (Q1); Linguistics and Language (Q1); Anthropology (Q2); Social Psychology (Q3)'), (12286, 'International Journal of Ambient Computing an', 19416245, 0.372, 'Q2', 18, 11, 441, 203, 68, '2', '2009-2014, 2016-2020', 'Software (Q2)'), (12287, 'International Journal of Education Through Ar', 17435234, 0.372, 'Q2', 7, 28, 895, 49, 67, '3', '2012-2020', 'Arts and Humanities (miscellaneous) (Q2); Education (Q3)'), (12288, 'International Journal of Logistics Systems an', 17427975, 0.372, 'Q2', 31, 76, 4170, 310, 224, '3', '2004-2014, 2016, 2020', 'Information Systems and Management (Q2); Management Information Systems (Q2); Management Science and Operations Research (Q3)'), (12289, 'International Journal of Tropical Insect Scie', 17427584, 0.372, 'Q3', 28, 212, 9861, 109, 110, '3', '1998, 2002, 2004-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (12290, 'Journal of Crop Improvement', 15427528, 0.372, 'Q2', 39, 66, 3107, 194, 145, '2', '2004-2020', 'Agronomy and Crop Science (Q2); Plant Science (Q3); Soil Science (Q3); Genetics (Q4)'), (12291, 'Journal of Fluorescence', 15734994, 0.372, 'Q2', 71, 166, 6279, 1085, 527, '2', '1991-2020', 'Law (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Biochemistry (Q3); Clinical Biochemistry (Q3); Clinical Psychology (Q3); Spectroscopy (Q3)'), (12292, 'Nursing Clinics of North America', 296465, 0.372, 'Q2', 31, 57, 1466, 219, 143, '3', '1966-2020', 'Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (12293, 'Physica C: Superconductivity and its Applicat', 9214534, 0.372, 'Q2', 84, 116, 3700, 594, 451, '16', '1988-2020', 'Electrical and Electronic Engineering (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Energy Engineering and Power Technology (Q3)'), (12294, 'Risk Management', 17434637, 0.372, 'Q2', 16, 13, 766, 82, 41, '3', '2006, 2009-2020', 'Business and International Management (Q2); Finance (Q2); Economics and Econometrics (Q3); Strategy and Management (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (12295, 'Romanian Journal of Anaesthesia and Intensive', 23927518, 0.372, 'Q2', 8, 0, 0, 72, 50, '43', '2014-2019', 'Critical Care and Intensive Care Medicine (Q2); Emergency Medicine (Q2); Anesthesiology and Pain Medicine (Q3)'), (12296, 'SIGMOD Record', 1635808, 0.372, 'Q2', 142, 39, 808, 127, 57, '2', '1969, 1973-1978, 1981-2020', 'Information Systems (Q2); Software (Q2)'), (12297, 'Advances in Hematology', 16879104, 0.371, 'Q3', 31, 25, 757, 55, 32, '32', '2009-2020', 'Hematology (Q3)'), (12298, 'Advances in Surgery', 653411, 0.371, 'Q3', 34, 18, 905, 71, 57, '2', '1949, 1965-1966, 1968, 1970-1981, 1983-1984, 1986-1997, 1999-2020', 'Surgery (Q3)'), (12299, 'Applied Computational Intelligence and Soft C', 16879724, 0.371, 'Q2', 10, 11, 570, 122, 42, '32', '2016-2020', 'Computational Mechanics (Q2); Computer Networks and Communications (Q2); Artificial Intelligence (Q3); Civil and Structural Engineering (Q3); Computer Science Applications (Q3)'), (12300, 'Cellular and Molecular Biology', 1165158, 0.371, 'Q3', 71, 222, 8862, 919, 613, '8', '1977-2020', 'Biochemistry (Q3); Cell Biology (Q4); Molecular Biology (Q4)'), (12301, 'ChemTexts', 21993793, 0.371, 'Q2', 11, 25, 1414, 82, 53, '19', '2015-2020', 'Chemistry (miscellaneous) (Q2); Biochemistry (Q3)'), (12302, 'CytoJournal', 9745963, 0.371, 'Q3', 27, 1, 40, 74, 61, '4', '2004-2020', 'Pathology and Forensic Medicine (Q3)'), (12303, 'Dendrobiology', 16411307, 0.371, 'Q2', 19, 18, 876, 96, 76, '17', '2000-2001, 2004-2020', 'Forestry (Q2); Plant Science (Q3)'), (12304, 'Genetic Programming and Evolvable Machines', 13892576, 0.371, 'Q2', 41, 31, 1537, 143, 58, '2', '2003-2020', 'Software (Q2); Computer Science Applications (Q3); Hardware and Architecture (Q3); Theoretical Computer Science (Q3)'), (12305, 'Geodesy and Geodynamics', 16749847, 0.371, 'Q2', 16, 50, 1754, 259, 176, '1', '2015-2020', 'Earth-Surface Processes (Q2); Computers in Earth Sciences (Q3); Geophysics (Q3)'), (12306, 'Innovation Journal', 17153816, 0.371, 'Q3', 17, 13, 731, 53, 19, '9', '2009-2020', 'Public Administration (Q3)'), (12307, 'Journal of Dispersion Science and Technology', 15322351, 0.371, 'Q2', 53, 485, 21912, 1366, 667, '2', '1980-2020', 'Polymers and Plastics (Q2); Physical and Theoretical Chemistry (Q3); Surfaces, Coatings and Films (Q3)'), (12308, 'Journal of Electrochemical Science and Techno', 22889221, 0.371, 'Q3', 11, 44, 1823, 186, 128, '13', '2014-2020', 'Electrochemistry (Q3)'), (12309, 'Journal of Fire Sciences', 7349041, 0.371, 'Q2', 41, 33, 1218, 158, 80, '3', '1983-2020', 'Mechanical Engineering (Q2); Safety, Risk, Reliability and Quality (Q2); Mechanics of Materials (Q3)'), (12310, 'Journal of Logical and Algebraic Methods in P', 23522208, 0.371, 'Q1', 18, 36, 1583, 306, 174, '16', '2014-2020', 'Cultural Studies (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2); Software (Q2); Computational Theory and Mathematics (Q3); Logic (Q3); Theoretical Compu'), (12311, 'Journal of Neuroscience Nursing', 8880395, 0.371, 'Q1', 43, 74, 1295, 216, 183, '2', '1986-2020', 'Medical and Surgical Nursing (Q1); Neurology (clinical) (Q3); Surgery (Q3); Endocrine and Autonomic Systems (Q4)'), (12312, 'Journal of Radiosurgery and SBRT', 21564639, 0.371, 'Q3', 5, 12, 251, 60, 53, '12', '2018-2019', 'Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Surgery (Q3)'), (12313, 'Journal of software: Evolution and Process', 20477481, 0.371, 'Q3', 29, 76, 4314, 621, 198, '3', '2012-2020', 'Software (Q3)'), (12314, 'Journal of Solution Chemistry', 959782, 0.371, 'Q3', 65, 97, 3782, 547, 353, '2', '1972-2020', 'Biophysics (Q3); Physical and Theoretical Chemistry (Q3); Biochemistry (Q4); Molecular Biology (Q4)'), (12315, 'Journal of the Indian Society of Remote Sensi', 9743006, 0.371, 'Q2', 38, 188, 7305, 799, 473, '4', '1973-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (12316, 'Journal on Computing and Cultural Heritage', 15564711, 0.371, 'Q1', 25, 36, 1734, 224, 74, '2', '2008-2020', 'Conservation (Q1); Computer Graphics and Computer-Aided Design (Q2); Computer Science Applications (Q3); Information Systems (Q3)'), (12317, 'Mendeleev Communications', 1364551, 0.371, 'Q2', 41, 254, 7310, 1140, 683, '16', '1991-2020', 'Chemistry (miscellaneous) (Q2)'), (12318, 'Middle East Journal, The', 19403461, 0.371, 'Q2', 36, 22, 42, 57, 60, '2', '1976, 1979-1980, 1983-1986, 1996-2020', 'Geography, Planning and Development (Q2); Sociology and Political Science (Q2)'), (12319, 'Radio Science', 486604, 0.371, 'Q2', 84, 102, 3695, 565, 327, '2', '1966-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Condensed Matter Physics (Q3)'), (12320, 'Rendiconti Lincei', 11206349, 0.371, 'Q2', 26, 100, 5281, 480, 283, '7', '1990-1998, 2000-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)'), (12321, 'Russian Journal of Nondestructive Testing', 16083385, 0.371, 'Q2', 18, 108, 2267, 286, 301, '10', '1996-2020', 'Mechanical Engineering (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (12322, 'Sleep and Biological Rhythms', 14469235, 0.371, 'Q3', 30, 42, 1451, 170, 140, '2', '2003-2020', 'Neurology (Q3); Neuropsychology and Physiological Psychology (Q3); Physiology (medical) (Q3); Physiology (Q4)'), (12323, 'Smart and Sustainable Built Environment', 20466102, 0.371, 'Q2', 15, 66, 3784, 180, 79, '3', '2012-2020', 'Urban Studies (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Human Factors and Ergonomics (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainabil'), (12324, 'Systems Research and Behavioral Science', 10991743, 0.371, 'Q2', 45, 116, 7121, 280, 173, '3', '1996-2020', 'Information Systems and Management (Q2); Social Sciences (miscellaneous) (Q2); Strategy and Management (Q3)'), (12325, 'Urban Morphology', 10274278, 0.371, 'Q1', 25, 14, 353, 35, 40, '8', '1997-2020', 'Archeology (Q1); Archeology (arts and humanities) (Q1); Urban Studies (Q2)'), (12326, 'Wood Research', 13364561, 0.371, 'Q2', 18, 75, 2429, 308, 273, '53', '2003-2020', 'Forestry (Q2); Materials Science (miscellaneous) (Q3)'), (12327, 'Archives Italiennes de Biologie', 39829, 0.37, 'Q3', 37, 6, 142, 61, 53, '7', '1952, 1962-2020', 'Medicine (miscellaneous) (Q3); Cell Biology (Q4); Physiology (Q4)'), (12328, 'Cogent Education', 2331186, 0.37, 'Q3', 16, 107, 5843, 551, 381, '3', '2014-2020', 'Education (Q3)'), (12329, 'International Journal of Cross Cultural Manag', 14705958, 0.37, 'Q1', 47, 20, 1459, 88, 53, '3', '2001-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Business and International Management (Q2); Organizational Behavior and Human Resource Management (Q3)'), (12330, 'International Journal of Food Contamination', 21962804, 0.37, 'Q3', 11, 1, 37, 70, 32, '3', '2014-2020', 'Food Science (Q3); Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12331, 'International Journal of Human Rights', 13642987, 0.37, 'Q2', 21, 133, 219, 274, 220, '3', '2009-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (12332, 'International Journal of Innovation in Scienc', 22004270, 0.37, 'Q3', 13, 12, 387, 60, 83, '11', '2010-2019', 'Education (Q3)'), (12333, 'Iranian Journal of Microbiology', 20083289, 0.37, 'Q3', 27, 90, 2688, 283, 186, '15', '2010-2020', 'Microbiology (medical) (Q3); Microbiology (Q4)'), (12334, 'Iranian Journal of Pharmaceutical Research', 17350328, 0.37, 'Q2', 40, 150, 5786, 1109, 598, '15', '2007-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3)'), (12335, 'Journal of Media Economics', 8997764, 0.37, 'Q2', 32, 0, 0, 21, 12, '2', '1988-2017', 'Communication (Q2); Economics and Econometrics (Q3)'), (12336, 'Journal of Property Investment and Finance', 1463578, 0.37, 'Q2', 35, 65, 2092, 146, 124, '3', '1999-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q2)'), (12337, 'Journal of Sulfur Chemistry', 17415993, 0.37, 'Q2', 32, 54, 2180, 324, 158, '3', '2004-2020', 'Chemistry (miscellaneous) (Q2)'), (12338, 'Machine Vision and Applications', 14321769, 0.37, 'Q2', 68, 72, 3225, 633, 236, '5', '1988-2020', 'Computer Vision and Pattern Recognition (Q2); Computer Science Applications (Q3); Hardware and Architecture (Q3); Software (Q3)'), (12339, 'Macromolecular Reaction Engineering', 18628338, 0.37, 'Q2', 32, 45, 1840, 201, 129, '5', '2008-2020', 'Chemical Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q2); Polymers and Plastics (Q2)'), (12340, 'Macromolecular Theory and Simulations', 15213919, 0.37, 'Q2', 56, 45, 1939, 150, 109, '5', '1992-2020', 'Polymers and Plastics (Q2); Condensed Matter Physics (Q3); Inorganic Chemistry (Q3); Materials Chemistry (Q3); Organic Chemistry (Q3)'), (12341, 'Medical Humanities', 14734265, 0.37, 'Q1', 25, 99, 4559, 208, 179, '3', '1997-1998, 2000-2020', 'Philosophy (Q1); Pathology and Forensic Medicine (Q3)'), (12342, 'Modern Law Review', 14682230, 0.37, 'Q2', 22, 55, 0, 120, 121, '2', '1937-1995, 1997-1999, 2001-2002, 2004, 2011-2020', 'Law (Q2)'), (12343, 'Review of European, Comparative and Internati', 20500386, 0.37, 'Q2', 18, 58, 8, 115, 85, '3', '2013-2020', 'Geography, Planning and Development (Q2); Law (Q2); Management, Monitoring, Policy and Law (Q3)'), (12344, 'Soil Mechanics and Foundation Engineering', 380741, 0.37, 'Q2', 13, 71, 1433, 244, 202, '2', '1964-2020', 'Energy (miscellaneous) (Q2); Ocean Engineering (Q2); Geotechnical Engineering and Engineering Geology (Q3); Soil Science (Q3); Water Science and Technology (Q3)'), (12345, 'Structural Monitoring and Maintenance', 22886605, 0.37, 'Q2', 15, 15, 486, 134, 71, '13', '2014-2020', 'Safety, Risk, Reliability and Quality (Q2); Civil and Structural Engineering (Q3)'), (12346, 'Teruleti Statisztika', 20648251, 0.37, 'Q2', 6, 33, 1229, 103, 82, '50', '1980, 1982-1983, 1985, 2016-2020', 'Geography, Planning and Development (Q2); Economics and Econometrics (Q3); Statistics and Probability (Q3)'), (12347, 'Agronomy Research', 1406894, 0.369, 'Q2', 19, 228, 7459, 784, 641, '71', '2011-2020', 'Agronomy and Crop Science (Q2)'), (12348, 'Annals of Mathematics and Artificial Intellig', 15737470, 0.369, 'Q3', 55, 60, 2272, 213, 118, '16', '1990-2020', 'Applied Mathematics (Q3); Artificial Intelligence (Q3)'), (12349, 'BioNanoMaterials', 21930651, 0.369, 'Q3', 12, 0, 0, 30, 13, '5', '2013-2017', 'Bioengineering (Q3); Biomedical Engineering (Q3)'), (12350, 'Business: Theory and Practice', 16480627, 0.369, 'Q3', 17, 83, 4008, 210, 102, '69', '2005-2020', 'Civil and Structural Engineering (Q3); Strategy and Management (Q3)'), (12351, 'Citizenship Teaching and Learning', 17511917, 0.369, 'Q2', 8, 21, 978, 38, 54, '3', '2013-2020', 'Social Sciences (miscellaneous) (Q2)'), (12352, 'Creative Industries Journal', 17510708, 0.369, 'Q1', 9, 36, 1707, 87, 53, '3', '2011-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Communication (Q2); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (12353, 'Current Medical Mycology', 24233420, 0.369, 'Q3', 6, 22, 663, 113, 60, '15', '2018-2019', 'Infectious Diseases (Q3); Microbiology (Q4)'), (12354, 'Ethiopian Journal of Health Development', 10216790, 0.369, 'Q3', 19, 43, 1144, 101, 107, '67', '2010-2019', 'Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12355, 'Foresight', 14659832, 0.369, 'Q2', 30, 47, 2858, 193, 122, '3', '1999-2020', 'Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3)'), (12356, 'Gems and Gemology', 16626, 0.369, 'Q3', 23, 41, 779, 72, 123, '2', '1979, 1981-1987, 1997-2001, 2004-2019', 'Geochemistry and Petrology (Q3)'), (12357, 'Iranian Journal of Immunology', 17351383, 0.369, 'Q3', 19, 32, 399, 149, 95, '15', '2006-2020', 'Immunology and Allergy (Q3); Medicine (miscellaneous) (Q3); Immunology (Q4)'), (12358, 'Journal of Analytical Science and Technology', 20933134, 0.369, 'Q2', 18, 48, 1342, 214, 89, '3', '2013-2020', 'Chemistry (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Physics and Astro'), (12359, 'Journal of Applied Non-Classical Logics', 19585780, 0.369, 'Q1', 29, 13, 429, 53, 55, '2', '1991-2020', 'Philosophy (Q1); Logic (Q3)'), (12360, 'Journal of Asian Finance, Economics and Busin', 22884645, 0.369, 'Q2', 14, 712, 29836, 854, 180, '13', '2018-2020', 'Finance (Q2); Management Information Systems (Q2); Economics and Econometrics (Q3)'), (12361, 'Journal of Beliefs and Values', 13617672, 0.369, 'Q1', 20, 57, 2294, 95, 97, '3', '1984-2020', 'Religious Studies (Q1); Education (Q3)'), (12362, 'Memo - Magazine of European Medical Oncology', 18655076, 0.369, 'Q3', 13, 103, 2274, 140, 180, '28', '2008-2020', 'Hematology (Q3); Oncology (Q3)'), (12363, 'Neurocase', 13554794, 0.369, 'Q2', 65, 63, 2159, 124, 126, '3', '1995-2020', 'Arts and Humanities (miscellaneous) (Q2); Neurology (clinical) (Q3)'), (12364, 'Partecipazione e Conflitto', 19727623, 0.369, 'Q2', 12, 74, 4090, 125, 111, '7', '2015-2020', 'Sociology and Political Science (Q2)'), (12365, 'Polish Journal of Pathology', 12339687, 0.369, 'Q3', 25, 41, 1198, 161, 153, '17', '1994-2020', 'Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)'), (12366, 'Porn Studies', 23268743, 0.369, 'Q1', 13, 46, 1771, 75, 109, '3', '2014-2020', 'Cultural Studies (Q1); Gender Studies (Q2); Social Psychology (Q3)'), (12367, 'Religious Studies', 1469901, 0.369, 'Q1', 21, 66, 2095, 58, 129, '3', '1965-2020', 'Philosophy (Q1); Religious Studies (Q1)'), (12368, 'Revista Espanola de Documentacion Cientifica', 2100614, 0.369, 'Q2', 19, 30, 1264, 114, 90, '12', '1984, 2008-2020', 'Library and Information Sciences (Q2)'), (12369, 'Advances in Autism', 20563876, 0.368, 'Q3', 8, 31, 1266, 92, 75, '3', '2015-2020', 'Developmental and Educational Psychology (Q3); Neurology (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3); Cognitive Neuroscience (Q4)'), (12370, 'American Journal of Comparative Law', 2919, 0.368, 'Q2', 41, 11, 1851, 46, 76, '2', '1974, 1977, 1985-1988, 1990, 1995-2019', 'Law (Q2); Social Sciences (miscellaneous) (Q2)'), (12371, 'Applied Geomatics', 1866928, 0.368, 'Q2', 20, 68, 2649, 193, 89, '5', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Geography, Planning and Development (Q2); Environmental Science (miscellaneous) (Q3)'), (12372, 'Counseling Outcome Research and Evaluation', 21501378, 0.368, 'Q3', 8, 17, 581, 33, 27, '2', '2014-2020', 'Psychology (miscellaneous) (Q3)'), (12373, 'Current Organic Chemistry', 13852728, 0.368, 'Q3', 103, 136, 15186, 895, 467, '52', '1997-2020', 'Organic Chemistry (Q3)'), (12374, 'Frattura ed Integrita Strutturale', 19718993, 0.368, 'Q3', 19, 123, 3693, 488, 460, '7', '2011-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (12375, 'Informal Logic', 8242577, 0.368, 'Q1', 15, 31, 1101, 62, 57, '9', '2010-2020', 'Philosophy (Q1)'), (12376, 'Integrative Psychological and Behavioral Scie', 19324502, 0.368, 'Q1', 36, 76, 3961, 151, 130, '2', '1969, 1976, 2007-2020', 'Cultural Studies (Q1); Philosophy (Q1); Anthropology (Q2); Applied Psychology (Q3); Neuropsychology and Physiological Psychology (Q3); Social Psychology (Q3); Behavioral Neuroscience (Q4); Experimenta'), (12377, 'Interaction Studies', 15720381, 0.368, 'Q1', 37, 19, 1119, 88, 75, '16', '2004-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2); Animal Science and Zoology (Q3); Human-Computer Interaction (Q3)'), (12378, 'International Journal of Energy for a Clean E', 2150363, 0.368, 'Q2', 13, 19, 660, 98, 64, '2', '2008-2020', 'Automotive Engineering (Q2); Energy Engineering and Power Technology (Q3); Pollution (Q3)'), (12379, 'International Journal of Law, Policy and the ', 13609939, 0.368, 'Q2', 22, 16, 895, 36, 52, '2', '1996-1997, 2002, 2004-2019', 'Law (Q2); Sociology and Political Science (Q2)'), (12380, 'International Journal of Technology Managemen', 17415276, 0.368, 'Q2', 57, 41, 2162, 195, 111, '3', '1986-1989, 1996-2014, 2020', 'Engineering (miscellaneous) (Q2); Industrial Relations (Q2); Law (Q2); Computer Science Applications (Q3); Strategy and Management (Q3)'), (12381, 'Journal of Engineering Materials and Technolo', 944289, 0.368, 'Q2', 68, 18, 626, 208, 148, '2', '1973-2020', 'Mechanical Engineering (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (12382, 'Journal of Global Sport Management', 24704067, 0.368, 'Q3', 8, 53, 3240, 113, 85, '2', '2016-2020', 'Strategy and Management (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (12383, 'Journal of trauma nursing : the official jour', 19323883, 0.368, 'Q2', 21, 73, 991, 195, 192, '2', '1995-2020', 'Advanced and Specialized Nursing (Q2); Critical Care Nursing (Q2); Emergency Nursing (Q2)'), (12384, 'Notre Dame Law Review', 7453515, 0.368, 'Q2', 32, 34, 4656, 93, 185, '2', '1984, 1986, 1989-1990, 1992-1993, 1995-2020', 'Law (Q2)'), (12385, 'Orbit', 1676830, 0.368, 'Q3', 33, 206, 3485, 300, 287, '3', '1982-2020', 'Medicine (miscellaneous) (Q3); Ophthalmology (Q3)'), (12386, 'Transactions of the American Entomological So', 28320, 0.368, 'Q3', 20, 27, 938, 51, 97, '2', '1993-1994, 1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (12387, 'Voluntary Sector Review', 20408056, 0.368, 'Q2', 8, 18, 671, 48, 61, '3', '2015-2019', 'Social Sciences (miscellaneous) (Q2)'), (12388, 'World Journal of Clinical Cases', 23078960, 0.368, 'Q3', 10, 655, 17845, 800, 659, '1', '2018-2020', 'Medicine (miscellaneous) (Q3)'), (12389, 'Accounting Historians Journal', 1484184, 0.367, 'Q3', 23, 12, 446, 38, 42, '2', '1974-2020', 'Accounting (Q3)'), (12390, 'AIMS Materials Science', 23720484, 0.367, 'Q3', 16, 48, 1986, 397, 216, '2', '2014-2020', 'Materials Science (miscellaneous) (Q3)'), (12391, 'Australian Journal of Political Science', 1363030, 0.367, 'Q2', 36, 30, 1553, 112, 112, '3', '1990-2020', 'Sociology and Political Science (Q2)'), (12392, 'Biological Agriculture and Horticulture', 1448765, 0.367, 'Q2', 31, 23, 1272, 101, 64, '3', '1982-2020', 'Agronomy and Crop Science (Q2); Horticulture (Q2)'), (12393, 'Communications in Theoretical Physics', 2536102, 0.367, 'Q3', 53, 192, 9270, 1240, 617, '3', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (12394, 'Development in Practice', 13649213, 0.367, 'Q2', 42, 131, 3679, 303, 259, '3', '1991-2020', 'Development (Q2); Geography, Planning and Development (Q2)'), (12395, 'Doklady Physics', 10283358, 0.367, 'Q2', 29, 97, 1149, 331, 371, '10', '1996-2020', 'Computational Mechanics (Q2); Mechanics of Materials (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (12396, 'Economics', 18646042, 0.367, 'Q2', 17, 26, 1171, 151, 100, '5', '2012-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (12397, 'Gifted Child Today', 10762175, 0.367, 'Q3', 3, 26, 684, 43, 49, '2', '2018-2020', 'Developmental and Educational Psychology (Q3); Education (Q3)'), (12398, 'IET Systems Biology', 17518857, 0.367, 'Q3', 50, 41, 1906, 171, 100, '3', '2007-2020', 'Biotechnology (Q3); Modeling and Simulation (Q3); Cell Biology (Q4); Genetics (Q4); Molecular Biology (Q4)'), (12399, 'International Journal on Digital Libraries', 14325012, 0.367, 'Q2', 32, 30, 1307, 157, 70, '5', '1997-1998, 2000, 2004-2010, 2012-2020', 'Library and Information Sciences (Q2)'), (12400, 'International Review of Law, Computers and Te', 13600869, 0.367, 'Q2', 12, 25, 1623, 66, 50, '3', '1984, 1986-1987, 1989, 1991-1995, 2009-2020', 'Law (Q2); Computer Science Applications (Q3)'), (12401, 'Journal of Pain and Palliative Care Pharmacot', 15360539, 0.367, 'Q3', 39, 34, 899, 101, 90, '2', '2002-2020', 'Anesthesiology and Pain Medicine (Q3); Pharmacology (medical) (Q3)'), (12402, 'Journal of Systems Science and Systems Engine', 10043756, 0.367, 'Q2', 27, 39, 1469, 202, 118, '5', '2005-2020', 'Control and Systems Engineering (Q2); Information Systems (Q3)'), (12403, 'Logopedics Phoniatrics Vocology', 16512022, 0.367, 'Q2', 35, 49, 2101, 85, 63, '3', '1991-1996, 1998-2020', 'Arts and Humanities (miscellaneous) (Q2); LPN and LVN (Q2); Medicine (miscellaneous) (Q3); Speech and Hearing (Q3)'), (12404, 'Nordic Journal of Criminology', 2578983, 0.367, 'Q2', 22, 19, 801, 47, 39, '3', '2019-2020', 'Law (Q2)'), (12405, 'Nursing Philosophy', 14667681, 0.367, 'Q2', 35, 59, 2532, 114, 89, '3', '2003-2020', 'Research and Theory (Q2); Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3)'), (12406, 'Reports of Practical Oncology and Radiotherap', 15071367, 0.367, 'Q3', 23, 166, 5209, 338, 248, '17', '1998-2020', 'Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Cancer Research (Q4)'), (12407, 'Revista Brasileira de Botanica', 1008404, 0.367, 'Q3', 32, 98, 4910, 337, 253, '19', '2006-2020', 'Plant Science (Q3)'), (12408, 'Soldering and Surface Mount Technology', 9540911, 0.367, 'Q2', 32, 41, 1135, 165, 94, '3', '1989-2020', 'Electrical and Electronic Engineering (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)'), (12409, 'Sport Management Education Journal', 21632367, 0.367, 'Q3', 6, 18, 679, 44, 37, '2', '2016-2020', 'Education (Q3); Strategy and Management (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (12410, 'Acta Scientiarum Polonorum, Technologia Alime', 16440730, 0.366, 'Q3', 25, 43, 1555, 186, 122, '17', '2009-2020', 'Food Science (Q3)'), (12411, 'Advances in Mind-Body Medicine', 14703556, 0.366, 'Q2', 23, 14, 0, 39, 35, '2', '1996-2005, 2007-2009, 2012-2020', 'Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (12412, 'Anatomy and Cell Biology', 20933673, 0.366, 'Q2', 16, 69, 2023, 206, 158, '13', '2014-2020', 'Anatomy (Q2); Histology (Q3); Cell Biology (Q4); Cellular and Molecular Neuroscience (Q4); Developmental Biology (Q4)'), (12413, 'Asia-Pacific Journal of Operational Research', 2175959, 0.366, 'Q3', 34, 63, 1905, 187, 156, '37', '1991, 1996-2020', 'Management Science and Operations Research (Q3)'), (12414, 'Australian Journal of Maritime and Ocean Affa', 23336498, 0.366, 'Q2', 6, 19, 677, 49, 53, '3', '2009-2012, 2017-2020', 'Political Science and International Relations (Q2); Safety Research (Q2); Management, Monitoring, Policy and Law (Q3); Ocean Engineering (Q3); Transportation (Q3); Water Science and Technology (Q3)'), (12415, 'Bradleya', 265086, 0.366, 'Q2', 8, 26, 865, 85, 79, '3', '2010-2019', 'Horticulture (Q2)'), (12416, 'Fashion Practice', 17569370, 0.366, 'Q1', 7, 30, 1195, 48, 55, '3', '2015-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)'), (12417, 'Forest Science and Technology', 21580715, 0.366, 'Q2', 14, 25, 1255, 112, 83, '3', '2005-2020', 'Forestry (Q2); Management, Monitoring, Policy and Law (Q3)'), (12418, 'Formal Aspects of Computing', 9345043, 0.366, 'Q3', 42, 16, 658, 139, 89, '3', '1989-2020', 'Software (Q3); Theoretical Computer Science (Q3)'), (12419, 'Global Media and China', 20594372, 0.366, 'Q1', 6, 28, 1401, 65, 76, '3', '2016-2020', 'Cultural Studies (Q1); Communication (Q2)'), (12420, 'IET Nanobiotechnology', 17518741, 0.366, 'Q2', 38, 123, 5605, 954, 449, '3', '2007-2020', 'Electrical and Electronic Engineering (Q2); Biotechnology (Q3); Electronic, Optical and Magnetic Materials (Q3); Nanoscience and Nanotechnology (Q3)'), (12421, 'In Silico Biology', 13866338, 0.366, 'Q3', 47, 3, 120, 16, 7, '16', '1998-1999, 2002-2012, 2015, 2017, 2019-2020', 'Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Medicine (miscellaneous) (Q3); Genetics (Q4); Molecular Biology (Q4)'), (12422, 'International Journal of Orthopaedic and Trau', 18781241, 0.366, 'Q2', 18, 45, 1480, 120, 83, '16', '2010-2020', 'Advanced and Specialized Nursing (Q2); Orthopedics and Sports Medicine (Q3)'), (12423, 'Journal of International Arbitration', 2212182, 0.366, 'Q2', 2, 32, 3426, 19, 96, '3', '2017-2019', 'Law (Q2)'), (12424, 'Lixue Xuebao/Chinese Journal of Theoretical a', 4591879, 0.366, 'Q2', 22, 165, 6258, 672, 445, '1', '2006-2020', 'Computational Mechanics (Q2); Applied Mathematics (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (12425, 'Mental Health Review Journal', 13619322, 0.366, 'Q3', 17, 30, 1256, 76, 72, '3', '1996, 1998-2013, 2015, 2017-2020', 'Psychiatry and Mental Health (Q3)'), (12426, 'Metallography, Microstructure, and Analysis', 21929262, 0.366, 'Q2', 18, 82, 2498, 273, 202, '2', '2012-2020', 'Metals and Alloys (Q2)'), (12427, 'Mycotaxon', 934666, 0.366, 'Q3', 42, 20, 537, 88, 204, '2', '1989, 1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (12428, 'Oil and Gas Science and Technology', 12944475, 0.366, 'Q2', 64, 84, 3789, 316, 168, '8', '1975-1976, 1999-2020', 'Chemical Engineering (miscellaneous) (Q2); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3)'), (12429, 'Sport Mont', 14517485, 0.366, 'Q3', 10, 60, 1427, 154, 140, '116', '2017-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (12430, 'Theoretical Medicine and Bioethics', 15731200, 0.366, 'Q3', 38, 16, 575, 84, 81, '16', '1997-2020', 'Issues, Ethics and Legal Aspects (Q3); Medicine (miscellaneous) (Q3)'), (12431, 'Transactions on Emerging Telecommunications T', 21613915, 0.366, 'Q2', 47, 351, 15288, 1406, 581, '3', '2012-2020', 'Electrical and Electronic Engineering (Q2)'), (12432, 'African Zoology', 15627020, 0.365, 'Q3', 28, 39, 2301, 86, 67, '3', '1996-2020', 'Animal Science and Zoology (Q3)'), (12433, 'American Journal of Forensic Medicine and Pat', 1957910, 0.365, 'Q3', 57, 83, 1233, 203, 229, '2', '1980-2020', 'Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3)'), (12434, 'American Sociologist, The', 31232, 0.365, 'Q2', 21, 48, 2248, 80, 89, '2', '1973-1975, 1978-1979, 1981, 1987-1996, 2005-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (12435, 'Annales de Paleontologie', 7533969, 0.365, 'Q3', 25, 21, 1616, 65, 72, '8', '1988-2020', 'Paleontology (Q3)'), (12436, 'Annals of Maxillofacial Surgery', 22310746, 0.365, 'Q3', 6, 101, 2015, 403, 160, '4', '2018-2019', 'Oral Surgery (Q3); Surgery (Q3)'), (12437, 'Applied Ontology', 18758533, 0.365, 'Q1', 29, 19, 1002, 89, 44, '16', '2005-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Computer Science (miscellaneous) (Q2)'), (12438, 'Cardiovascular and Hematological Disorders - ', 1871529, 0.365, 'Q3', 40, 41, 1604, 127, 82, '52', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q3); Hematology (Q3); Medicine (miscellaneous) (Q3); Pharmacology (Q3); Molecular Medicine (Q4)'), (12439, 'Case Reports in Oncology', 16626575, 0.365, 'Q3', 19, 249, 3736, 494, 449, '19', '2010-2020', 'Oncology (Q3)'), (12440, 'Chemie-Ingenieur-Technik', 15222640, 0.365, 'Q2', 36, 185, 6181, 811, 512, '5', '1949-2020', 'Chemical Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Chemistry (miscellaneous) (Q3)'), (12441, 'Economic Record', 14754932, 0.365, 'Q3', 42, 31, 1391, 113, 107, '3', '1925-1932, 1934-2020', 'Economics and Econometrics (Q3)'), (12442, 'Evaluation Journal of Australasia', 1035719, 0.365, 'Q2', 11, 25, 590, 43, 47, '3', '2001-2003, 2005-2020', 'Development (Q2); Sociology and Political Science (Q2)'), (12443, 'Expert Systems', 14680394, 0.365, 'Q2', 38, 151, 6761, 636, 232, '3', '1984-2020', 'Control and Systems Engineering (Q2); Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Theoretical Computer Science (Q3)'), (12444, 'Geographica Pannonica', 3548724, 0.365, 'Q2', 10, 26, 1203, 118, 75, '55', '2012-2020', 'Earth-Surface Processes (Q2); Geography, Planning and Development (Q2); Atmospheric Science (Q3); Geology (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (12445, 'Human Studies', 1572851, 0.365, 'Q1', 27, 39, 1561, 83, 88, '16', '1978-1980, 1982-2020', 'Philosophy (Q1); Sociology and Political Science (Q2)'), (12446, 'International Journal of Culture and Mental H', 17542863, 0.365, 'Q1', 13, 0, 0, 118, 87, '3', '2010-2019', 'Cultural Studies (Q1); Psychiatry and Mental Health (Q3); Social Psychology (Q3)'), (12447, 'Journal of Engineering Physics and Thermophys', 1573871, 0.365, 'Q2', 22, 181, 3640, 446, 547, '5', '1992-1996, 2004-2020', 'Engineering (miscellaneous) (Q2); Condensed Matter Physics (Q3)'), (12448, 'Journal of Fish and Wildlife Management', 1944687, 0.365, 'Q3', 20, 63, 3013, 145, 152, '2', '2010-2019', 'Animal Science and Zoology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3)'), (12449, 'Journal of Location Based Services', 17489725, 0.365, 'Q2', 24, 9, 575, 108, 33, '3', '2007-2020', 'Computer Networks and Communications (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q3)'), (12450, 'Journal of Rehabilitation', 224154, 0.365, 'Q2', 35, 25, 1122, 62, 73, '2', '1945-1984, 1991, 1996-2019', 'Rehabilitation (Q2); Clinical Psychology (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12451, 'Journal of Research in Nursing', 1744988, 0.365, 'Q2', 32, 124, 2177, 222, 214, '3', '1996-1999, 2002, 2005-2020', 'Research and Theory (Q2)'), (12452, 'L Encephale', 137006, 0.365, 'Q2', 47, 127, 4675, 332, 275, '8', '1946, 1949-1973, 1975-2020', 'Arts and Humanities (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)'), (12453, 'Medicine, Science and the Law', 20421818, 0.365, 'Q2', 35, 72, 1739, 107, 107, '3', '1960-2020', 'Law (Q2); Health Policy (Q3); Issues, Ethics and Legal Aspects (Q3)'), (12454, 'Neurology Research International', 20901860, 0.365, 'Q3', 31, 17, 572, 109, 65, '2', '2010-2020', 'Neurology (Q3); Neurology (clinical) (Q3)'), (12455, 'Packaging Technology and Science', 8943214, 0.365, 'Q3', 50, 42, 1650, 335, 176, '3', '1988-2020', 'Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)'), (12456, 'Public Works Management and Policy', 1087724, 0.365, 'Q2', 25, 32, 1431, 87, 59, '2', '1996-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Sociology and Political Science (Q2); Public Administration (Q3)'), (12457, 'Revista Brasileira de Fruticultura', 1002945, 0.365, 'Q2', 28, 64, 1977, 259, 286, '14', '2006-2020', 'Agronomy and Crop Science (Q2); Food Science (Q3); Plant Science (Q3)'), (12458, 'Social Security Bulletin', 377910, 0.365, 'Q2', 23, 13, 513, 33, 31, '2', '1946-1947, 1971, 1973-2020', 'Social Sciences (miscellaneous) (Q2); Public Administration (Q3)'), (12459, 'Transactions of the Indian Institute of Metal', 9722815, 0.365, 'Q2', 31, 284, 7917, 1381, 942, '4', '1969-1971, 1973-1975, 1981-1985, 1987, 1996-2020', 'Metals and Alloys (Q2)'), (12460, 'Zeitschrift fur Kristallographie - Crystallin', 21944946, 0.365, 'Q3', 16, 60, 2457, 291, 218, '5', '2010, 2012-2020', 'Condensed Matter Physics (Q3); Inorganic Chemistry (Q3); Materials Science (miscellaneous) (Q3)'), (12461, 'Zhournal Novoi Ekonomicheskoi Associacii', 22212264, 0.365, 'Q2', 7, 36, 882, 95, 135, '10', '2016-2020', 'Finance (Q2); Economics and Econometrics (Q3)'), (12462, 'Advances in Astronomy', 16877977, 0.364, 'Q3', 34, 20, 754, 100, 52, '2', '2010-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q3)'), (12463, 'American Entomologist', 21559902, 0.364, 'Q3', 41, 41, 456, 80, 90, '3', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (12464, 'Anatolian journal of cardiology', 21492271, 0.364, 'Q3', 28, 190, 2989, 500, 364, '18', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (12465, 'Carpathian Journal of Earth and Environmental', 18424090, 0.364, 'Q2', 23, 48, 2295, 167, 122, '43', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)'), (12466, 'Chinese Economy', 15580954, 0.364, 'Q2', 15, 41, 1614, 128, 89, '2', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (12467, 'Cognitive and Behavioral Neurology', 15433633, 0.364, 'Q3', 66, 34, 2042, 98, 75, '2', '2003-2020', 'Medicine (miscellaneous) (Q3); Neuropsychology and Physiological Psychology (Q3); Psychiatry and Mental Health (Q3); Cognitive Neuroscience (Q4)'), (12468, 'Communications in Soil Science and Plant Anal', 103624, 0.364, 'Q3', 66, 236, 10815, 910, 730, '2', '1970-2020', 'Agronomy and Crop Science (Q3); Soil Science (Q3)'), (12469, 'Geomorphologie. Relief, Processus, Environnem', 12665304, 0.364, 'Q2', 19, 14, 795, 49, 56, '8', '1995-1996, 2008-2020', 'Earth-Surface Processes (Q2)'), (12470, 'Houston Journal of Mathematics', 3621588, 0.364, 'Q3', 35, 26, 453, 136, 222, '2', '1996-2019', 'Mathematics (miscellaneous) (Q3)'), (12471, 'International Journal of Circuit Theory and A', 1097007, 0.364, 'Q2', 52, 166, 4797, 907, 401, '3', '1973-2020', 'Electrical and Electronic Engineering (Q2); Applied Mathematics (Q3); Computer Science Applications (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (12472, 'Journal of Applied Research and Technology', 16656423, 0.364, 'Q2', 30, 29, 786, 336, 140, '30', '2008-2020', 'Engineering (miscellaneous) (Q2)'), (12473, 'Journal of Asian Studies', 219118, 0.364, 'Q1', 47, 27, 1584, 91, 115, '3', '1941-2020', 'Cultural Studies (Q1); History (Q1)'), (12474, 'Journal of Communication in Healthcare', 17538076, 0.364, 'Q2', 11, 51, 1952, 81, 76, '3', '2014-2020', 'Communication (Q2); Health Information Management (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12475, 'Journal of Intellectual Disabilities and Offe', 20508824, 0.364, 'Q2', 11, 20, 826, 32, 43, '3', '2013-2020', 'Psychiatric Mental Health (Q2); Clinical Psychology (Q3); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3)'), (12476, 'Telecommunication Systems', 10184864, 0.364, 'Q2', 51, 111, 4414, 985, 413, '16', '1993-2020', 'Electrical and Electronic Engineering (Q2)'), (12477, 'Turkish Neurosurgery', 10195157, 0.364, 'Q3', 27, 139, 3592, 464, 441, '18', '1990-2020', 'Neurology (clinical) (Q3); Surgery (Q3)'), (12478, 'Alpine and Mediterranean Quaternary', 22797335, 0.363, 'Q1', 29, 15, 861, 96, 90, '7', '1988-2019', 'Archeology (arts and humanities) (Q1); Earth-Surface Processes (Q3); Geology (Q3); Paleontology (Q3)'), (12479, 'Australasian Plant Disease Notes', 1833928, 0.363, 'Q3', 15, 43, 641, 123, 142, '16', '2009-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (12480, 'Canadian Journal of Addiction', 23684720, 0.363, 'Q3', 5, 5, 100, 44, 52, '9', '2014-2019', 'Psychiatry and Mental Health (Q3)'), (12481, 'Czech Journal of Food Sciences', 12121800, 0.363, 'Q3', 42, 58, 1432, 252, 180, '31', '1999, 2005-2020', 'Food Science (Q3)'), (12482, 'Holistic Nursing Practice', 8879311, 0.363, 'Q2', 38, 53, 1745, 200, 153, '2', '1986-2020', 'Advanced and Specialized Nursing (Q2); Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3)'), (12483, 'Horizontes Antropologicos', 1047183, 0.363, 'Q2', 14, 38, 1681, 45, 126, '14', '2006-2020', 'Anthropology (Q2)'), (12484, 'International Journal of Clinical Pharmacolog', 9461965, 0.363, 'Q3', 67, 101, 2115, 320, 282, '5', '1994-2020', 'Pharmacology (Q3); Pharmacology (medical) (Q3)'), (12485, 'International Journal of Telemedicine and App', 16876415, 0.363, 'Q2', 27, 6, 278, 62, 28, '32', '2008-2020', 'Computer Networks and Communications (Q2); Health Informatics (Q3); Health Information Management (Q3); Medicine (miscellaneous) (Q3)'), (12486, 'Japanese Journal of Applied Entomology and Zo', 214914, 0.363, 'Q3', 19, 22, 596, 32, 77, '6', '1957-2020', 'Insect Science (Q3)'), (12487, 'Japan Journal of Nursing Science', 17427924, 0.363, 'Q3', 17, 110, 3908, 154, 112, '11', '2006-2020', 'Medicine (miscellaneous) (Q3); Research and Theory (Q3)'), (12488, 'Journal of Molecular Modeling', 16102940, 0.363, 'Q3', 69, 354, 16985, 1774, 1066, '5', '1996-2020', 'Catalysis (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Inorganic Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (12489, 'Journal of Muslims in Europe', 2211792, 0.363, 'Q1', 7, 23, 987, 31, 46, '16', '2012-2020', 'Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Anthropology (Q2)'), (12490, 'Acta Carsologica', 15802612, 0.362, 'Q3', 24, 24, 820, 53, 57, '60', '1981-1983, 1986, 2005-2019', 'Earth-Surface Processes (Q3)'), (12491, 'African Journal of Marine Science', 18142338, 0.362, 'Q3', 50, 45, 2567, 151, 128, '27', '2003-2020', 'Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12492, 'ARYA Atherosclerosis', 22516638, 0.362, 'Q3', 19, 39, 947, 169, 123, '15', '2007, 2011-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (12493, 'Atlas of the Oral and Maxillofacial Surgery C', 15584275, 0.362, 'Q3', 19, 23, 359, 78, 69, '3', '1993-2020', 'Oral Surgery (Q3); Surgery (Q3)'), (12494, 'Bundesgesundheitsblatt - Gesundheitsforschung', 14371588, 0.362, 'Q3', 62, 178, 6133, 614, 455, '5', '1999-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (12495, 'Cutaneous and Ocular Toxicology', 15569527, 0.362, 'Q3', 29, 61, 2071, 329, 197, '3', '1982-2000, 2005-2020', 'Medicine (miscellaneous) (Q3); Toxicology (Q4)'), (12496, 'Estudios Constitucionales', 7185200, 0.362, 'Q2', 10, 14, 797, 28, 74, '45', '2009-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (12497, 'Higher Education, Skills and Work-based Learn', 2042390, 0.362, 'Q3', 13, 77, 3968, 213, 152, '3', '2010-2020', 'Education (Q3); Life-span and Life-course Studies (Q3)'), (12498, 'International Journal of Food Engineering', 15563758, 0.362, 'Q2', 26, 85, 3146, 335, 250, '5', '2006-2020', 'Engineering (miscellaneous) (Q2); Biotechnology (Q3); Food Science (Q3)'), (12499, 'Interpretation', 23248858, 0.362, 'Q3', 25, 276, 9990, 429, 334, '2', '2013-2020', 'Geology (Q3); Geophysics (Q3)'), (12500, 'Journal of Asset Management', 14708272, 0.362, 'Q2', 16, 46, 1626, 106, 118, '3', '2009-2020', 'Business and International Management (Q2); Information Systems and Management (Q2); Strategy and Management (Q3)'), (12501, 'Journal of Chromatographic Science', 219665, 0.362, 'Q3', 56, 114, 3307, 608, 364, '2', '1963-2020', 'Analytical Chemistry (Q3); Medicine (miscellaneous) (Q3)'), (12502, 'Journal of French Language Studies', 9592695, 0.362, 'Q1', 21, 20, 1277, 30, 58, '3', '1991-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (12503, 'Journal of Physical Education, Recreation and', 7303084, 0.362, 'Q3', 7, 120, 2048, 163, 136, '3', '2018-2020', 'Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (12504, 'Journal of Plant Pathology', 11254653, 0.362, 'Q3', 47, 288, 5609, 496, 363, '7', '1997-2020', 'Plant Science (Q3)'), (12505, 'Journal of The American Institute for Conserv', 1971360, 0.362, 'Q1', 23, 28, 722, 49, 48, '3', '1977-2020', 'Conservation (Q1); Museology (Q1)'), (12506, 'Libri', 242667, 0.362, 'Q2', 26, 25, 1476, 65, 71, '5', '1950, 1953-1956, 1958-2020', 'Library and Information Sciences (Q2)'), (12507, 'Mechanics of Composite Materials', 15738922, 0.362, 'Q2', 30, 65, 2168, 330, 213, '2', '1979-2020', 'Polymers and Plastics (Q2); Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Mathematics (miscellaneous) (Q3); Mechanics of Materials (Q3); Biomaterials (Q4)'), (12508, 'Merrill-Palmer Quarterly', 272930, 0.362, 'Q2', 71, 16, 1060, 64, 59, '2', '1973, 1996-2019', 'Social Sciences (miscellaneous) (Q2); Developmental and Educational Psychology (Q3); Education (Q3)'), (12509, 'Mineral Economics', 21912203, 0.362, 'Q2', 12, 39, 1877, 126, 65, '5', '2011-2020', 'Economic Geology (Q2); Geography, Planning and Development (Q2)'), (12510, 'Polish Journal of Radiology', 1733134, 0.362, 'Q3', 19, 77, 2407, 375, 297, '17', '2004-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (12511, 'Prahistorische Zeitschrift', 794848, 0.362, 'Q1', 13, 28, 2408, 25, 40, '5', '1909-1918, 1920, 1922, 1924-1936, 1938, 1940, 1942, 1950, 1958-1962, 1964, 1966, 1970-1972, 1979-198', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (12512, 'Primate Biology', 23634715, 0.362, 'Q3', 5, 7, 292, 27, 33, '5', '2014-2020', 'Animal Science and Zoology (Q3)'), (12513, 'Proceedings of the ACM on Programming Languag', 24751421, 0.362, 'Q2', 7, 234, 13811, 3, 1, '2', '2020', 'Safety, Risk, Reliability and Quality (Q2); Software (Q3)'), (12514, 'Social Behavior and Personality', 11796391, 0.362, 'Q3', 58, 176, 6756, 607, 450, '41', '1992, 1996-2020', 'Social Psychology (Q3)'), (12515, 'Social Identities', 13630296, 0.362, 'Q2', 36, 63, 3025, 171, 148, '3', '1995-2020', 'Sociology and Political Science (Q2)'), (12516, 'Teaching English with Technology', 16421027, 0.362, 'Q1', 9, 22, 933, 101, 64, '17', '2014-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q3)'), (12517, 'Transnational Corporations Review', 19186444, 0.362, 'Q2', 10, 40, 2287, 97, 77, '2', '2009-2020', 'Business and International Management (Q2); Finance (Q2); Economics and Econometrics (Q3); Strategy and Management (Q3)'), (12518, 'Tropical Ecology', 5643295, 0.362, 'Q3', 32, 55, 2910, 185, 161, '4', '1976-1978, 1988, 1993-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (12519, 'Ufa Mathematical Journal', 23040122, 0.362, 'Q3', 7, 37, 657, 82, 131, '10', '2014-2020', 'Mathematics (miscellaneous) (Q3)'), (12520, 'Acta of Bioengineering and Biomechanics', 1509409, 0.361, 'Q3', 25, 87, 1938, 291, 230, '17', '2005-2020', 'Bioengineering (Q3); Biomedical Engineering (Q3); Biophysics (Q3); Biomaterials (Q4)'), (12521, 'Archives of Environmental and Occupational He', 19338244, 0.361, 'Q3', 62, 116, 4269, 178, 128, '2', '2005-2020', 'Environmental Science (miscellaneous) (Q3); Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3); Toxicology (Q4)'), (12522, 'Archiv fur Molluskenkunde', 39284, 0.361, 'Q3', 14, 16, 804, 32, 43, '5', '2002-2008, 2010-2019', 'Animal Science and Zoology (Q3)'), (12523, 'Bullentin of Canadian Petroleum Geology', 74802, 0.361, 'Q3', 41, 0, 0, 62, 45, '9', '1968-1972, 1974-2018', 'Earth and Planetary Sciences (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Geochemistry and Petrology (Q3); Geology (Q3)'), (12524, 'Canadian Public Administration', 84840, 0.361, 'Q2', 26, 33, 1604, 104, 103, '2', '1958-2020', 'Sociology and Political Science (Q2); Public Administration (Q3)'), (12525, 'Clinical Epidemiology and Global Health', 22133984, 0.361, 'Q3', 13, 252, 7595, 409, 194, '16', '2013-2020', 'Infectious Diseases (Q3); Microbiology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3); Epidemiology (Q4)'), (12526, 'Clinical Laboratory', 14336510, 0.361, 'Q3', 46, 350, 8612, 899, 821, '5', '1964, 1997-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (12527, 'Flora Mediterranea', 11204052, 0.361, 'Q3', 10, 24, 1067, 78, 84, '7', '1991-1994, 2012-2020', 'Plant Science (Q3)'), (12528, 'International Journal of Aerospace Engineerin', 16875974, 0.361, 'Q3', 22, 168, 5208, 584, 408, '2', '2011-2020', 'Aerospace Engineering (Q3)'), (12529, 'Journal of Mathematical Sociology', 15455874, 0.361, 'Q2', 32, 32, 1264, 54, 34, '3', '1971-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Algebra and Number Theory (Q3)'), (12530, 'Journal of Ovonic Research', 18422403, 0.361, 'Q3', 12, 42, 1010, 169, 137, '43', '2011-2020', 'Electronic, Optical and Magnetic Materials (Q3); Physics and Astronomy (miscellaneous) (Q3); Surfaces, Coatings and Films (Q3)'), (12531, 'Journal of Political Ideologies', 13569317, 0.361, 'Q2', 33, 27, 0, 85, 48, '3', '1996-2020', 'Geography, Planning and Development (Q2); Political Science and International Relations (Q2)'), (12532, 'Korean Journal of Horticultural Science and T', 12268763, 0.361, 'Q2', 12, 79, 2851, 221, 221, '13', '2008, 2013-2020', 'Horticulture (Q2)'), (12533, 'Manchester School', 14636786, 0.361, 'Q3', 42, 50, 2073, 132, 124, '3', '1930-1941, 1943-1944, 1946-2020', 'Economics and Econometrics (Q3)'), (12534, 'Reviews on Advanced Materials Science', 16058127, 0.361, 'Q3', 57, 43, 3003, 441, 171, '10', '2003-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q3)'), (12535, 'Social and Environmental Accountability Journ', 969160, 0.361, 'Q3', 19, 28, 874, 82, 55, '2', '1993-2020', 'Accounting (Q3)'), (12536, 'Species Diversity', 13421670, 0.361, 'Q3', 5, 27, 1002, 44, 74, '6', '2016-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12537, 'Transactions of the Royal Society of South Au', 22040293, 0.361, 'Q2', 18, 10, 593, 42, 46, '3', '1979-1981, 1996-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Anthropology (Q2); Environmental Science (miscellaneous) (Q3); Paleontology (Q3)'), (12538, 'Ural skij Istoriceskij Vestnik', 17289718, 0.361, 'Q1', 4, 65, 1216, 66, 198, '10', '2016-2020', 'History (Q1)'), (12539, 'Zeitschrift fur Gerontologie und Geriatrie', 9486704, 0.361, 'Q3', 39, 177, 3666, 359, 350, '5', '1995-2020', 'Geriatrics and Gerontology (Q3); Gerontology (Q3); Health (social science) (Q3); Issues, Ethics and Legal Aspects (Q3)'), (12540, 'American Journal of Psychology', 19398298, 0.36, 'Q2', 45, 15, 847, 110, 97, '2', '1945-2020', 'Arts and Humanities (miscellaneous) (Q2); Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q4)'), (12541, 'Arabian Journal for Science and Engineering', 21914281, 0.36, 'Q2', 43, 857, 37388, 4598, 1820, '5', '1984, 1986, 1996-2020', 'Multidisciplinary (Q2)'), (12542, 'Asian Review of Accounting', 17588863, 0.36, 'Q2', 22, 24, 1222, 159, 90, '3', '1992, 1994-2020', 'Finance (Q2); Accounting (Q3)'), (12543, 'Bulletin of the Belgian Mathematical Society ', 13701444, 0.36, 'Q3', 31, 37, 867, 106, 124, '24', '1994-2020', 'Mathematics (miscellaneous) (Q3)'), (12544, 'Electronics (Switzerland)', 20799292, 0.36, 'Q2', 36, 2170, 84416, 6323, 2071, '19', '2012-2020', 'Computer Networks and Communications (Q2); Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q3); Signal Processing (Q3)'), (12545, 'Geology of Ore Deposits', 10757015, 0.36, 'Q2', 22, 56, 2489, 120, 155, '10', '1996-2020', 'Economic Geology (Q2); Geochemistry and Petrology (Q3); Geology (Q3)'), (12546, 'Giornale Italiano di Dermatologia e Venereolo', 18271820, 0.36, 'Q3', 26, 178, 3799, 392, 273, '7', '1980-2020', 'Dermatology (Q3); Medicine (miscellaneous) (Q3)'), (12547, 'International Journal for Crime, Justice and ', 22028005, 0.36, 'Q2', 16, 66, 4107, 113, 106, '11', '2013-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (12548, 'International Journal of Exergy', 17428297, 0.36, 'Q2', 31, 64, 2032, 241, 176, '3', '2005-2014, 2020', 'Energy (miscellaneous) (Q2)'), (12549, 'Journal of Essential Oil-Bearing Plants', 972060, 0.36, 'Q3', 26, 134, 5319, 721, 473, '3', '2003-2020', 'Analytical Chemistry (Q3); Organic Chemistry (Q3); Biochemistry (Q4)'), (12550, 'Journal of Real Estate Research', 8965803, 0.36, 'Q2', 32, 5, 210, 60, 60, '2', '2003-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (12551, 'Journal of Visual Impairment and Blindness', 145482, 0.36, 'Q3', 41, 60, 1109, 156, 127, '2', '1977-2020', 'Ophthalmology (Q3); Rehabilitation (Q3)'), (12552, 'Nonlinear Dynamics and Systems Theory', 15628353, 0.36, 'Q3', 18, 33, 636, 106, 119, '44', '2007-2020', 'Applied Mathematics (Q3); Mathematical Physics (Q3)'), (12553, 'Philosophical Magazine Letters', 9500839, 0.36, 'Q3', 63, 57, 1839, 186, 170, '3', '1981, 1987-2020', 'Condensed Matter Physics (Q3)'), (12554, 'Physics of Metals and Metallography', 31918, 0.36, 'Q3', 34, 182, 5292, 600, 546, '10', '1970-1991, 1996-2020', 'Condensed Matter Physics (Q3); Materials Chemistry (Q3)'), (12555, 'Preparative Biochemistry and Biotechnology', 10826068, 0.36, 'Q3', 29, 178, 7853, 654, 361, '2', '1996-2020', 'Biotechnology (Q3); Medicine (miscellaneous) (Q3); Biochemistry (Q4)'), (12556, 'Proceedings of the Institute of Mathematics a', 24094994, 0.36, 'Q3', 6, 26, 686, 62, 78, '92', '2017-2020', 'Mathematics (miscellaneous) (Q3)'), (12557, 'Radiation Detection Technology and Methods', 25099949, 0.36, 'Q3', 6, 75, 1111, 108, 138, '37', '2017-2020', 'Nuclear and High Energy Physics (Q3); Nuclear Energy and Engineering (Q3)'), (12558, 'South African Archaeological Bulletin', 381969, 0.36, 'Q1', 24, 19, 712, 36, 47, '27', '2002-2019', 'Archeology (Q1); Archeology (arts and humanities) (Q1)'), (12559, 'UPB Scientific Bulletin, Series A: Applied Ma', 12237027, 0.36, 'Q3', 20, 106, 2300, 317, 338, '43', '1996-2002, 2004-2020', 'Applied Mathematics (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (12560, 'Webbia', 837792, 0.36, 'Q3', 20, 0, 0, 90, 102, '3', '1905, 1907, 1910, 1913-1914, 1921, 1923, 1948, 1950-2019', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (12561, 'Zoologia', 19844689, 0.36, 'Q3', 32, 32, 1530, 142, 126, '14', '2009-2020', 'Animal Science and Zoology (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (12562, 'Acta Oceanologica Sinica', 18691099, 0.359, 'Q3', 27, 174, 7542, 654, 532, '1', '1985-1993, 1996-2020', 'Aquatic Science (Q3); Oceanography (Q3)'), (12563, 'Asian Perspectives', 15358283, 0.359, 'Q1', 32, 17, 1387, 31, 32, '2', '1993-2020', 'Archeology (arts and humanities) (Q1); History (Q1); Anthropology (Q2); Archeology (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (12564, 'Biomolecular NMR Assignments', 1874270, 0.359, 'Q4', 16, 60, 1293, 119, 197, '16', '2007-2020', 'Biochemistry (Q4); Structural Biology (Q4)'), (12565, 'Cleveland Clinic Journal of Medicine', 8911150, 0.359, 'Q3', 63, 186, 1132, 431, 295, '2', '1987-2020', 'Medicine (miscellaneous) (Q3)'), (12566, 'Doklady Earth Sciences', 1028334, 0.359, 'Q3', 34, 200, 2500, 635, 1012, '10', '1998-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (12567, 'Fossil Imprint', 25334050, 0.359, 'Q3', 10, 7, 343, 72, 85, '31', '2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)'), (12568, 'Hyperfine Interactions', 15729540, 0.359, 'Q3', 48, 48, 975, 286, 283, '16', '1975-2020', 'Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Nuclear and High Energy Physics (Q3); Physical and Theoretical Chemistry (Q3)'), (12569, 'Image Processing On Line', 21051232, 0.359, 'Q3', 9, 9, 207, 124, 66, '8', '2017-2020', 'Signal Processing (Q3); Software (Q3)'), (12570, 'International Journal of Imaging Systems and ', 10981098, 0.359, 'Q2', 47, 143, 5556, 322, 126, '2', '1989-1992, 1994-2020', 'Computer Vision and Pattern Recognition (Q2); Electrical and Electronic Engineering (Q2); Electronic, Optical and Magnetic Materials (Q3); Software (Q3)'), (12571, 'International Journal of Mental Health', 207411, 0.359, 'Q3', 20, 38, 1871, 70, 65, '2', '1974-1991, 1993, 1995-2020', 'Health Policy (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12572, 'Italian Journal of Food Safety', 22397132, 0.359, 'Q3', 13, 41, 1230, 212, 133, '7', '2011-2020', 'Food Science (Q3)'), (12573, 'Journal of Applied Aquaculture', 15450805, 0.359, 'Q3', 27, 65, 3155, 96, 66, '2', '1991-2020', 'Aquatic Science (Q3); Ecology (Q3)'), (12574, 'Journal of Drug Issues', 220426, 0.359, 'Q3', 54, 38, 2173, 200, 130, '2', '1971-2020', 'Health (social science) (Q3); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12575, 'Journal of Friction and Wear', 19349386, 0.359, 'Q3', 19, 98, 1106, 270, 274, '10', '1992-1993, 1996-2002, 2009-2020', 'Mechanics of Materials (Q3); Surfaces, Coatings and Films (Q3)'), (12576, 'Journal of the Society for American Music', 17521971, 0.359, 'Q1', 12, 25, 1202, 19, 41, '3', '2007-2020', 'Music (Q1)'), (12577, 'Monitoring Obshchestvennogo Mneniya: Ekonomic', 22195467, 0.359, 'Q2', 8, 136, 4541, 161, 329, '10', '2016-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (12578, 'Proceedings of the Academy of Natural Science', 973157, 0.359, 'Q3', 22, 12, 702, 17, 15, '2', '1972, 1976-1977, 1985, 1994-1995, 1997, 1999-2003, 2005-2006, 2010-2011, 2013-2019', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12579, 'Progress in Community Health Partnerships: Re', 1557055, 0.359, 'Q2', 24, 54, 1125, 149, 148, '2', '2007-2020', 'Sociology and Political Science (Q2); Education (Q3); Health (social science) (Q3); Medicine (miscellaneous) (Q3)'), (12580, 'Psychologie in Erziehung und Unterricht', 342183, 0.359, 'Q3', 19, 24, 1117, 32, 47, '5', '1996-2020', 'Developmental and Educational Psychology (Q3)'), (12581, 'Revista Iberoamericana de Diagnostico y Evalu', 11353848, 0.359, 'Q3', 13, 54, 2887, 162, 156, '12', '2008-2020', 'Psychology (miscellaneous) (Q3)'), (12582, 'Saudi Journal of Ophthalmology', 13194534, 0.359, 'Q3', 25, 62, 990, 227, 233, '29', '2009-2020', 'Ophthalmology (Q3)'), (12583, 'Scanning', 19328745, 0.359, 'Q3', 47, 43, 1402, 202, 121, '2', '1978-1981, 1983-2020', 'Atomic and Molecular Physics, and Optics (Q3); Instrumentation (Q3)'), (12584, 'Seminars in Orthodontics', 10738746, 0.359, 'Q3', 43, 28, 474, 100, 104, '3', '1995-2020', 'Orthodontics (Q3)'), (12585, 'Actas Urologicas Espanolas', 16997980, 0.358, 'Q3', 25, 109, 2690, 224, 241, '12', '1977-2020', 'Urology (Q3)'), (12586, 'Data Science Journal', 16831470, 0.358, 'Q2', 21, 44, 1288, 189, 140, '8', '2003, 2006-2020', 'Computer Science (miscellaneous) (Q2); Computer Science Applications (Q3)'), (12587, 'Egyptian Rheumatologist', 11101164, 0.358, 'Q4', 16, 71, 2579, 195, 168, '32', '2011-2020', 'Rheumatology (Q4)'), (12588, 'Games', 20734336, 0.358, 'Q3', 18, 62, 2393, 193, 196, '19', '2010-2020', 'Applied Mathematics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (12589, 'International Journal of Mental Health Promot', 14623730, 0.358, 'Q3', 8, 27, 999, 53, 39, '3', '2015-2020', 'Health Policy (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12590, 'International Review of Retail, Distribution ', 9593969, 0.358, 'Q2', 40, 22, 1662, 162, 95, '3', '1990-2020', 'Business and International Management (Q2); Economics and Econometrics (Q3); Marketing (Q3)'), (12591, 'Journal of Asian Natural Products Research', 10286020, 0.358, 'Q2', 40, 224, 4352, 626, 393, '3', '1998-2020', 'Complementary and Alternative Medicine (Q2); Pharmaceutical Science (Q2); Analytical Chemistry (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Organic Chemistry (Q3); Pharmacology (Q3); Mole'), (12592, 'Journal of the American Academy of Orthopaedi', 24747661, 0.358, 'Q3', 2, 73, 1614, 2, 1, '2', '2020', 'Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (12593, 'Nature and Culture', 15585468, 0.358, 'Q2', 19, 16, 827, 46, 46, '2', '2008-2020', 'Social Sciences (miscellaneous) (Q2)'), (12594, 'Papeis Avulsos de Zoologia', 311049, 0.358, 'Q3', 26, 94, 3685, 151, 153, '14', '2002-2020', 'Animal Science and Zoology (Q3)'), (12595, 'Social Work in Mental Health', 15332985, 0.358, 'Q2', 20, 38, 2030, 152, 125, '2', '2002-2020', 'Social Sciences (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3); Social Work (Q3)'), (12596, 'Terrorism and Political Violence', 15561836, 0.358, 'Q2', 51, 137, 95, 411, 224, '3', '1989-2020', 'Political Science and International Relations (Q2); Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Sociology and Political Science (Q2)'), (12597, 'Texas Law Review', 404411, 0.358, 'Q2', 47, 37, 58, 92, 93, '2', '1977, 1981-1982, 1987, 1990, 1992, 1994, 1996-2020', 'Law (Q2)'), (12598, 'Acta Ichthyologica et Piscatoria', 1371592, 0.357, 'Q3', 24, 58, 2366, 158, 161, '17', '1996-2020', 'Aquatic Science (Q3)'), (12599, 'Arheoloski Vestnik', 15811204, 0.357, 'Q1', 12, 21, 1238, 21, 45, '60', '1981, 1983, 2002-2019', 'Archeology (arts and humanities) (Q1); Archeology (Q2)'), (12600, 'Australian Journal of Zoology', 4959, 0.357, 'Q3', 45, 33, 1752, 96, 93, '11', '1952-1966, 1968-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12601, 'Canadian Journal of Sociology', 3186431, 0.357, 'Q2', 33, 13, 727, 51, 46, '9', '1977, 1979, 1981-1982, 1984-1985, 1987, 1993-1994, 1996-2020', 'Sociology and Political Science (Q2)'), (12602, 'Cellular Polymers', 14782421, 0.357, 'Q3', 27, 15, 523, 64, 34, '3', '1982-1987, 1989, 1991-2020', 'Organic Chemistry (Q3); Polymers and Plastics (Q3)'), (12603, 'Chinese Journal of Applied Linguistics', 21929513, 0.357, 'Q1', 4, 37, 1499, 51, 77, '5', '2017-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (12604, 'Food Biotechnology', 8905436, 0.357, 'Q3', 31, 20, 845, 90, 57, '2', '1987-2020', 'Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Food Science (Q3)'), (12605, 'Health Physics', 15385159, 0.357, 'Q3', 73, 194, 4412, 521, 476, '2', '1958-2020', 'Health, Toxicology and Mutagenesis (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Epidemiology (Q4)'), (12606, 'Hong Kong Medical Journal', 10242708, 0.357, 'Q3', 46, 181, 2394, 415, 339, '1', '1995-2020', 'Medicine (miscellaneous) (Q3)'), (12607, 'Indian Journal of Cancer', 19984774, 0.357, 'Q3', 38, 108, 1442, 329, 294, '4', '1965-2020', 'Oncology (Q3)'), (12608, 'Infancia y Aprendizaje', 15784126, 0.357, 'Q3', 23, 38, 1685, 84, 72, '3', '1978-2020', 'Developmental and Educational Psychology (Q3); Education (Q3)'), (12609, 'International Journal of Information Systems ', 19355726, 0.357, 'Q2', 14, 21, 907, 93, 60, '2', '2008-2020', 'Management Information Systems (Q2); Information Systems (Q3)'), (12610, 'International Journal of Lifelong Education', 1464519, 0.357, 'Q3', 44, 46, 2186, 146, 132, '3', '1982-2020', 'Education (Q3); E-learning (Q3); Life-span and Life-course Studies (Q3)'), (12611, 'International Journal of Nautical Archaeology', 10959270, 0.357, 'Q1', 23, 24, 1459, 51, 74, '2', '1972-2020', 'History (Q1); Archeology (Q2); Oceanography (Q3); Paleontology (Q3)'), (12612, 'Iranian Journal of Allergy, Asthma and Immuno', 17355249, 0.357, 'Q3', 25, 87, 3131, 277, 204, '15', '2005-2020', 'Immunology and Allergy (Q3)'), (12613, 'Journal of Applied Botany and Food Quality', 16139216, 0.357, 'Q3', 37, 23, 909, 195, 134, '5', '2004-2020', 'Food Science (Q3); Plant Science (Q3)'), (12614, 'Journal of Civil Society', 17448689, 0.357, 'Q2', 17, 22, 1247, 82, 67, '3', '2010-2020', 'Sociology and Political Science (Q2)'), (12615, 'Journal of Conflict Archaeology', 15740781, 0.357, 'Q1', 11, 4, 151, 29, 32, '3', '2005-2009, 2011-2019', 'Archeology (arts and humanities) (Q1); History (Q1); Archeology (Q2)'), (12616, 'Journal of Daylighting', 23838701, 0.357, 'Q2', 8, 18, 859, 48, 24, '34', '2014-2020', 'Energy (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3)'), (12617, 'Journal of Essential Oil Research', 21638152, 0.357, 'Q3', 50, 58, 2555, 326, 169, '3', '1989-2020', 'Chemistry (miscellaneous) (Q3)'), (12618, 'Journal of Financial Counseling and Planning', 19477910, 0.357, 'Q2', 41, 24, 1136, 141, 72, '2', '1990-1991, 1993-2020', 'Finance (Q2); Economics and Econometrics (Q3)'), (12619, 'Journal of Higher Education Outreach and Enga', 15346102, 0.357, 'Q3', 10, 28, 963, 70, 84, '2', '2015-2020', 'Education (Q3)'), (12620, 'Journal of International Humanitarian Legal S', 18781373, 0.357, 'Q2', 8, 20, 612, 20, 22, '16', '2010-2019', 'Law (Q2)'), (12621, 'Journal of Parasitic Diseases', 9717196, 0.357, 'Q4', 21, 128, 4685, 473, 397, '4', '2009-2020', 'Parasitology (Q4)'), (12622, 'Journal of the European Optical Society', 19902573, 0.357, 'Q3', 33, 21, 615, 143, 93, '3', '2006-2020', 'Atomic and Molecular Physics, and Optics (Q3)'), (12623, 'Journal of X-Ray Science and Technology', 8953996, 0.357, 'Q2', 32, 103, 3239, 322, 218, '16', '1989-1998, 2000-2020', 'Electrical and Electronic Engineering (Q2); Condensed Matter Physics (Q3); Instrumentation (Q3); Radiation (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (12624, 'Korean journal of ophthalmology : KJO', 10118942, 0.357, 'Q3', 30, 93, 1694, 17, 11, '13', '1987-2017, 2020', 'Ophthalmology (Q3)'), (12625, 'Latin American Journal of Aquatic Research', 718560, 0.357, 'Q3', 28, 87, 4278, 355, 326, '45', '2008-2020', 'Aquatic Science (Q3); Oceanography (Q3)'), (12626, 'Middle East African Journal of Ophthalmology', 9749233, 0.357, 'Q3', 25, 52, 741, 124, 131, '4', '2011-2020', 'Medicine (miscellaneous) (Q3); Ophthalmology (Q3)'), (12627, 'Miscellanea Geographica', 8676046, 0.357, 'Q2', 11, 31, 1178, 87, 88, '5', '1984, 1986, 1988, 1990, 2002, 2006, 2008, 2010-2020', 'Geography, Planning and Development (Q2); Earth and Planetary Sciences (miscellaneous) (Q3)'), (12628, 'Optical Engineering', 15602303, 0.357, 'Q2', 105, 553, 16362, 2539, 1932, '2', '1972-1991, 1993-2020', 'Engineering (miscellaneous) (Q2); Atomic and Molecular Physics, and Optics (Q3)'), (12629, 'Osong Public Health and Research Perspectives', 22109099, 0.357, 'Q3', 24, 51, 1114, 217, 151, '13', '2010-2020', 'Infectious Diseases (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12630, 'SAGE Open', 21582440, 0.357, 'Q2', 32, 557, 36138, 1541, 959, '2', '2011-2020', 'Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (12631, 'Social Sciences', 20760760, 0.357, 'Q2', 19, 235, 15190, 1293, 716, '19', '2012-2020', 'Social Sciences (miscellaneous) (Q2)'), (12632, 'Transactions of the American Clinical and Cli', 657778, 0.357, 'Q3', 40, 0, 0, 93, 95, '2', '1952-1957, 1959-1962, 1964-1965, 1967-1970, 1972-1973, 1975-1990, 1992-1996, 1998-2019', 'Medicine (miscellaneous) (Q3)'), (12633, 'Acta Geodaetica et Cartographica Sinica', 10011595, 0.356, 'Q3', 30, 203, 4392, 787, 669, '1', '2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (12634, 'Advances in Materials Science and Engineering', 16878442, 0.356, 'Q2', 42, 561, 19432, 2500, 1470, '2', '2008-2020', 'Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)'), (12635, 'Animal Biotechnology', 15322378, 0.356, 'Q3', 35, 216, 8605, 214, 155, '2', '1990-2020', 'Animal Science and Zoology (Q3); Bioengineering (Q3); Biotechnology (Q3)'), (12636, 'Der Orthopade', 854530, 0.356, 'Q3', 43, 184, 4542, 411, 359, '5', '1973-2020', 'Orthopedics and Sports Medicine (Q3)'), (12637, 'Distinktion', 21599149, 0.356, 'Q2', 15, 31, 1487, 71, 63, '3', '2009-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (12638, 'Genetics and Molecular Research', 16765680, 0.356, 'Q3', 48, 83, 3264, 678, 670, '14', '2002-2020', 'Medicine (miscellaneous) (Q3); Genetics (Q4); Molecular Biology (Q4)'), (12639, 'Iheringia - Serie Zoologia', 734721, 0.356, 'Q3', 27, 29, 1382, 156, 151, '14', '2001-2002, 2006-2020', 'Animal Science and Zoology (Q3)'), (12640, 'International Journal of Surgical Pathology', 10668969, 0.356, 'Q3', 51, 242, 4248, 440, 389, '2', '1993-2020', 'Anatomy (Q3); Pathology and Forensic Medicine (Q3); Surgery (Q3)'), (12641, 'Japan Journal of Industrial and Applied Mathe', 1868937, 0.356, 'Q2', 28, 47, 1151, 139, 140, '6', '1991-2020', 'Engineering (miscellaneous) (Q2); Applied Mathematics (Q3)'), (12642, 'Jornal brasileiro de nefrologia : orga&amp;#x', 21758239, 0.356, 'Q3', 22, 89, 0, 265, 204, '14', '2010-2020', 'Medicine (miscellaneous) (Q3)'), (12643, 'Journal of Global Ethics', 17449626, 0.356, 'Q1', 18, 21, 668, 51, 71, '2', '2005-2020', 'Philosophy (Q1); Sociology and Political Science (Q2)'), (12644, 'Journal of Mechanics of Materials and Structu', 15593959, 0.356, 'Q3', 42, 34, 1080, 156, 119, '2', '2006-2020', 'Applied Mathematics (Q3); Mechanics of Materials (Q3)'), (12645, 'Low Temperature Physics', 1063777, 0.356, 'Q3', 43, 174, 6018, 568, 551, '2', '1997-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (12646, 'MethodsX', 22150161, 0.356, 'Q2', 23, 423, 7652, 1058, 548, '16', '2014-2020', 'Medical Laboratory Technology (Q2); Clinical Biochemistry (Q3)'), (12647, 'Multidiscipline Modeling in Materials and Str', 15736105, 0.356, 'Q3', 22, 96, 3753, 497, 216, '3', '2005-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3)'), (12648, 'National Identities', 14608944, 0.356, 'Q1', 19, 43, 2403, 74, 79, '3', '2003-2020', 'History (Q1); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)'), (12649, 'Natural Areas Journal', 8858608, 0.356, 'Q3', 43, 39, 1792, 112, 121, '2', '1993-2020', 'Ecology (Q3); Nature and Landscape Conservation (Q3)'), (12650, 'New Zealand Journal of Botany', 28825, 0.356, 'Q3', 37, 37, 2020, 105, 89, '3', '1963-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (12651, 'Oceania', 298077, 0.356, 'Q2', 25, 37, 1011, 50, 61, '2', '1930-2020', 'Anthropology (Q2); History and Philosophy of Science (Q2)'), (12652, 'Quaestiones Geographicae', 20816383, 0.356, 'Q3', 18, 20, 1195, 219, 127, '17', '1979-1985, 1987, 1989, 1992, 1995-1998, 2001-2002, 2004-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (12653, 'Scottish Journal of Geology', 369276, 0.356, 'Q3', 23, 3, 275, 23, 32, '3', '1965-2019', 'Geology (Q3)'), (12654, 'Software Quality Journal', 9639314, 0.356, 'Q1', 43, 71, 3142, 396, 134, '2', '1992-1999, 2001-2020', 'Media Technology (Q1); Safety, Risk, Reliability and Quality (Q2); Software (Q3)'), (12655, 'Sotsiologicheskie issledovaniia', 1321625, 0.356, 'Q2', 13, 202, 3493, 296, 614, '10', '1981-1982, 1984-1986, 2002-2020', 'Sociology and Political Science (Q2)'), (12656, 'Turkish Journal of Earth Sciences', 1303619, 0.356, 'Q3', 43, 58, 4221, 102, 94, '18', '2002-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (12657, 'Water Environment Research', 10614303, 0.356, 'Q3', 73, 244, 13375, 785, 454, '2', '1992-2020', 'Pollution (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3); Ecological Modeling (Q4); Environmental Chemistry (Q4)'), (12658, 'ACM Transactions on Reconfigurable Technology', 19367406, 0.355, 'Q2', 28, 24, 1249, 237, 68, '2', '2008-2020', 'Computer Science (miscellaneous) (Q2)'), (12659, 'Ageing International', 1936606, 0.355, 'Q3', 32, 50, 2169, 103, 83, '2', '1974-2006, 2008-2020', 'Health (social science) (Q3)'), (12660, 'Australian Journal of Indigenous Education', 13260111, 0.355, 'Q2', 23, 42, 1802, 79, 74, '3', '1996-2020', 'Anthropology (Q2); Education (Q3)'), (12661, 'Axioms', 20751680, 0.355, 'Q3', 18, 144, 4587, 541, 252, '19', '2012-2020', 'Algebra and Number Theory (Q3); Analysis (Q3); Geometry and Topology (Q3); Logic (Q3); Mathematical Physics (Q3)'), (12662, 'Computational Geometry: Theory and Applicatio', 9257721, 0.355, 'Q3', 58, 50, 1094, 140, 125, '16', '1991-2021', 'Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Control and Optimization (Q3); Geometry and Topology (Q3)'), (12663, 'Earth, Moon and Planets', 15730794, 0.355, 'Q3', 41, 7, 318, 30, 30, '16', '1984-2020', 'Astronomy and Astrophysics (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Space and Planetary Science (Q3)'), (12664, 'Evidence-based HRM', 20493983, 0.355, 'Q3', 11, 29, 1803, 108, 70, '3', '2013-2020', 'Organizational Behavior and Human Resource Management (Q3)'), (12665, 'Explore: The Journal of Science and Healing', 18787541, 0.355, 'Q2', 35, 165, 5375, 260, 207, '2', '2005-2020', 'Chiropractics (Q2); Complementary and Alternative Medicine (Q2); Analysis (Q3); Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)'), (12666, 'Fullerenes Nanotubes and Carbon Nanostructure', 1536383, 0.355, 'Q3', 47, 198, 7023, 620, 332, '2', '2002-2020', 'Atomic and Molecular Physics, and Optics (Q3); Materials Science (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (12667, 'Human Biology', 15346617, 0.355, 'Q3', 54, 10, 479, 45, 55, '2', '1945-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q4); Genetics (clinical) (Q4)'), (12668, 'IET Communications', 17518628, 0.355, 'Q2', 62, 464, 15113, 2255, 1088, '3', '2007-2020', 'Electrical and Electronic Engineering (Q2); Computer Science Applications (Q3)'), (12669, 'Iranian Polymer Journal (English Edition)', 10261265, 0.355, 'Q2', 42, 97, 4158, 522, 277, '19', '1996-2020', 'Chemical Engineering (miscellaneous) (Q2); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (12670, 'JALT CALL Journal', 18324215, 0.355, 'Q1', 7, 10, 438, 39, 31, '6', '2015-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Computer Science Applications (Q3); Education (Q3)'), (12671, 'Journal of Cetacean Research and Management', 15610713, 0.355, 'Q3', 23, 10, 540, 34, 40, '3', '2004, 2008-2015, 2017-2018', 'Animal Science and Zoology (Q3); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12672, 'Journal of Chemical Biology', 18646166, 0.355, 'Q3', 24, 0, 0, 34, 13, '5', '2009-2017', 'Biophysics (Q3); Biochemistry (Q4); Cell Biology (Q4)'), (12673, 'Journal of Computer Networks and Communicatio', 20907141, 0.355, 'Q2', 23, 15, 444, 270, 93, '32', '2011-2020', 'Computer Networks and Communications (Q2); Information Systems (Q3)'), (12674, 'Paleontological Research', 13428144, 0.355, 'Q3', 25, 25, 1389, 64, 80, '6', '1997-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Paleontology (Q3)'), (12675, 'PPmP Psychotherapie Psychosomatik Medizinisch', 14391058, 0.355, 'Q3', 41, 94, 2011, 183, 166, '5', '1980-2020', 'Applied Psychology (Q3); Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (12676, 'Random Operators and Stochastic Equations', 9266364, 0.355, 'Q3', 18, 22, 456, 41, 61, '5', '1993-2020', 'Analysis (Q3); Statistics and Probability (Q3)'), (12677, 'Rehabilitation Nursing', 2784807, 0.355, 'Q2', 36, 69, 1090, 143, 154, '2', '1975-2020', 'Nursing (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (12678, 'Religious Education', 15473201, 0.355, 'Q1', 15, 52, 1177, 54, 125, '2', '1906-2020', 'Religious Studies (Q1); Education (Q3)'), (12679, 'SORT', 16962281, 0.355, 'Q3', 20, 8, 356, 54, 43, '12', '2003-2020', 'Management Science and Operations Research (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (12680, 'Urology Annals', 9747834, 0.355, 'Q3', 20, 84, 1410, 258, 268, '4', '2010-2020', 'Urology (Q3)'), (12681, 'Abhandlungen aus dem Mathematischen Seminar d', 18658784, 0.354, 'Q3', 20, 16, 298, 57, 65, '5', '1922-1925, 1927-1929, 1931, 1933-1935, 1937, 1939, 1941, 1943, 1949, 1951-1952, 1954-1955, 1957-2006', 'Mathematics (miscellaneous) (Q3)'), (12682, 'Archives of Budo', 16438698, 0.354, 'Q3', 21, 33, 1251, 111, 131, '2', '2010-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (12683, 'Basic and Applied Herpetology', 2136686, 0.354, 'Q3', 7, 8, 277, 20, 24, '12', '2012-2019', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12684, 'Central Bank Review', 13030701, 0.354, 'Q3', 8, 21, 1040, 62, 41, '16', '2016-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (12685, 'Clinical Teacher', 17434971, 0.354, 'Q3', 26, 199, 1665, 307, 264, '3', '2006-2020', 'Medicine (miscellaneous) (Q3); Review and Exam Preparation (Q4)'), (12686, 'Computer Methods in Biomechanics and Biomedic', 14768259, 0.354, 'Q3', 58, 221, 8676, 753, 486, '3', '1997-2020', 'Bioengineering (Q3); Biomedical Engineering (Q3); Computer Science Applications (Q3); Human-Computer Interaction (Q3); Medicine (miscellaneous) (Q3)'), (12687, 'Computer Methods in Biomechanics and Biomedic', 21681163, 0.354, 'Q2', 18, 117, 3804, 401, 180, '3', '2013-2020', 'Computational Mechanics (Q2); Biomedical Engineering (Q3); Computer Science Applications (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (12688, 'Counseling and Values', 1607960, 0.354, 'Q1', 35, 15, 716, 43, 43, '2', '1973-2007, 2009-2020', 'Religious Studies (Q1); Clinical Psychology (Q3); Social Psychology (Q3)'), (12689, 'Family Journal', 10664807, 0.354, 'Q2', 35, 72, 2991, 163, 155, '2', '1993-2020', 'Social Sciences (miscellaneous) (Q2); Social Psychology (Q3)'), (12690, 'Folia Zoologica', 1397893, 0.354, 'Q3', 34, 0, 0, 59, 73, '31', '1979, 1982-2019', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12691, 'Geochemical Journal', 167002, 0.354, 'Q3', 57, 33, 1637, 172, 124, '6', '1966-2020', 'Geochemistry and Petrology (Q3); Geophysics (Q3)'), (12692, 'Global Pediatric Health', 2333794, 0.354, 'Q2', 11, 94, 2663, 378, 311, '2', '2017-2020', 'Pediatrics (Q2); Pediatrics, Perinatology and Child Health (Q3)'), (12693, 'International Journal of Mathematics in Opera', 17575850, 0.354, 'Q3', 21, 50, 1657, 208, 163, '19', '2009-2014, 2018', 'Decision Sciences (miscellaneous) (Q3); Modeling and Simulation (Q3)'), (12694, 'International Journal of Thermofluid Science ', 27069885, 0.354, 'Q3', 8, 3, 78, 36, 31, '1', '2019-2020', 'Condensed Matter Physics (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (12695, 'Journal of European Real Estate Research', 17539277, 0.354, 'Q3', 15, 34, 1671, 82, 61, '3', '2008-2020', 'Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (12696, 'Journal of Ichthyology', 329452, 0.354, 'Q2', 18, 98, 3484, 176, 308, '10', '1976-1977, 1979-1984, 1987, 1990-1995, 2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Aquatic Science (Q3)'), (12697, 'Journal of medicine and life', 18443117, 0.354, 'Q3', 36, 105, 0, 224, 149, '43', '2008-2020', 'Medicine (miscellaneous) (Q3)'), (12698, 'Journal of New Music Research', 9298215, 0.354, 'Q1', 35, 33, 1658, 98, 87, '3', '1994-1998, 2000, 2004-2020', 'Music (Q1); Visual Arts and Performing Arts (Q1)'), (12699, 'Lithology and Mineral Resources', 244902, 0.354, 'Q3', 17, 37, 1651, 70, 107, '10', '1984-1986, 1992, 2004-2020', 'Economic Geology (Q3); Geochemistry and Petrology (Q3)'), (12700, 'Pakistan Journal of Statistics and Operation ', 22205810, 0.354, 'Q3', 15, 59, 1656, 248, 179, '34', '2011-2020', 'Management Science and Operations Research (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (12701, 'Physical Communication', 18744907, 0.354, 'Q2', 33, 197, 6888, 969, 443, '16', '2008-2020', 'Electrical and Electronic Engineering (Q2)'), (12702, 'Revista Brasileira de Meteorologia', 19824351, 0.354, 'Q3', 12, 90, 3400, 194, 157, '14', '2013-2020', 'Atmospheric Science (Q3)'), (12703, 'Revista de Economia Politica/Brazilian Journa', 1013157, 0.354, 'Q2', 17, 62, 1919, 77, 129, '14', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (12704, 'Scandinavian Journal of Disability Research', 17453011, 0.354, 'Q2', 20, 41, 1911, 124, 88, '20', '1999-2020', 'Social Sciences (miscellaneous) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (12705, 'Science Editing', 22887474, 0.354, 'Q2', 11, 39, 330, 74, 66, '13', '2014-2020', 'Communication (Q2); Health Informatics (Q3)'), (12706, 'South African Journal of Psychology', 812463, 0.354, 'Q3', 34, 70, 2788, 209, 133, '2', '1979-2020', 'Psychology (miscellaneous) (Q3)'), (12707, 'Turczaninowia', 15607267, 0.354, 'Q3', 7, 59, 2149, 142, 191, '10', '2016-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Organic Chemistry (Q3); Plant Science (Q3); Biomaterials (Q4)'), (12708, 'Vestnik Udmurtskogo Universiteta: Matematika,', 20765959, 0.354, 'Q2', 8, 34, 656, 77, 139, '10', '2016-2020', 'Computer Science (miscellaneous) (Q2); Fluid Flow and Transfer Processes (Q3); Mathematics (miscellaneous) (Q3)'), (12709, 'Virginia Law Review', 426601, 0.354, 'Q2', 54, 18, 3637, 63, 80, '2', '1967, 1974-1978, 1980, 1983-1985, 1987, 1990, 1992, 1995-2019', 'Law (Q2)'), (12710, 'Wader Study', 20588410, 0.354, 'Q3', 13, 31, 951, 69, 83, '3', '2015-2020', 'Animal Science and Zoology (Q3); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12711, 'Women and Therapy', 2703149, 0.354, 'Q2', 30, 33, 1305, 90, 76, '2', '1982-1999, 2001-2020', 'Gender Studies (Q2); Psychology (miscellaneous) (Q3)'), (12712, 'Wood and Fiber Science', 7356161, 0.354, 'Q2', 46, 11, 262, 155, 134, '2', '1996-2020', 'Forestry (Q2); Materials Science (miscellaneous) (Q3)'), (12713, 'Zeitschrift fur Anorganische und Allgemeine C', 442313, 0.354, 'Q3', 66, 287, 13409, 1003, 786, '5', '1892-1945, 1947-2020', 'Inorganic Chemistry (Q3)'), (12714, 'Arab Journal of Mathematical Sciences', 13195166, 0.353, 'Q3', 11, 5, 69, 91, 74, '16', '2011-2020', 'Mathematics (miscellaneous) (Q3)'), (12715, 'Autex Research Journal', 23000929, 0.353, 'Q2', 31, 119, 3107, 228, 138, '17', '1999-2000, 2002-2020', 'Industrial and Manufacturing Engineering (Q2); Management of Technology and Innovation (Q3); Materials Science (miscellaneous) (Q3)'), (12716, 'Computational Intelligence', 8247935, 0.353, 'Q3', 52, 154, 5600, 335, 138, '3', '1985-2020', 'Artificial Intelligence (Q3); Computational Mathematics (Q3)'), (12717, 'Conservation Genetics Resources', 18777252, 0.353, 'Q3', 23, 106, 2809, 342, 432, '5', '2009-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q4)'), (12718, 'Ethics &amp; human research', 25782363, 0.353, 'Q3', 32, 25, 884, 48, 44, '3', '2019-2020', 'Health (social science) (Q3)'), (12719, 'Fluid Dynamics', 15738507, 0.353, 'Q3', 24, 96, 1856, 213, 283, '10', '1966-2020', 'Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (12720, 'IEEE Transactions on Games', 24751510, 0.353, 'Q2', 45, 56, 1792, 427, 101, '2', '2018-2020', 'Control and Systems Engineering (Q2); Electrical and Electronic Engineering (Q2); Artificial Intelligence (Q3); Software (Q3)'), (12721, 'International Journal of E-Planning Research', 21609926, 0.353, 'Q2', 6, 16, 893, 66, 47, '2', '2017-2020', 'Geography, Planning and Development (Q2); Urban Studies (Q2); Computer Science Applications (Q3)'), (12722, 'International Journal of Housing Markets and ', 17538270, 0.353, 'Q2', 19, 57, 2832, 233, 167, '3', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (12723, 'International Journal of Managerial Finance', 17439132, 0.353, 'Q2', 25, 52, 3072, 249, 125, '3', '2005-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Finance (Q3)'), (12724, 'International Journal of Play Therapy', 15556824, 0.353, 'Q2', 28, 23, 727, 57, 66, '2', '1992-2020', 'Complementary and Manual Therapy (Q2); Clinical Psychology (Q3)'), (12725, 'Journal of Children s Services', 17466660, 0.353, 'Q2', 21, 28, 924, 52, 64, '3', '2006-2020', 'Law (Q2); Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3); Education (Q3); Health (social science) (Q3)'), (12726, 'Journal of Decision Systems', 21167052, 0.353, 'Q2', 22, 53, 2695, 145, 73, '3', '1992-2020', 'Management Information Systems (Q2); Software (Q3)'), (12727, 'Journal of Financial Therapy', 19449771, 0.353, 'Q3', 5, 9, 416, 30, 26, '2', '2017-2019', 'Applied Psychology (Q3); Finance (Q3); Health (social science) (Q3); Social Psychology (Q3)'), (12728, 'Journal of Oral Biosciences', 13490079, 0.353, 'Q3', 18, 52, 2306, 142, 85, '6', '2004-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (12729, 'Journal of Pharmacological and Toxicological ', 10568719, 0.353, 'Q3', 71, 69, 2745, 451, 413, '2', '1992-2002, 2004-2020', 'Pharmacology (Q3); Toxicology (Q4)'), (12730, 'Journal of Social Philosophy', 472786, 0.353, 'Q1', 31, 49, 2056, 67, 78, '3', '1970-2020', 'Philosophy (Q1)'), (12731, 'Journal of the Ceramic Society of Japan', 18820743, 0.353, 'Q3', 56, 168, 4653, 588, 494, '6', '1988-2020', 'Ceramics and Composites (Q3); Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3)'), (12732, 'Nonlinear Functional Analysis and Application', 24660973, 0.353, 'Q3', 6, 51, 1041, 137, 178, '13', '2017-2020', 'Analysis (Q3); Applied Mathematics (Q3); Control and Optimization (Q3); Numerical Analysis (Q3)'), (12733, 'OPSEARCH', 303887, 0.353, 'Q2', 20, 67, 2414, 237, 136, '4', '2009-2020', 'Management Information Systems (Q2); Computer Science Applications (Q3); Information Systems (Q3); Management Science and Operations Research (Q3)'), (12734, 'Studies in Language', 3784177, 0.353, 'Q1', 30, 25, 1781, 53, 78, '16', '1977-2000, 2002-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2)'), (12735, '3L: Language, Linguistics, Literature', 1285157, 0.352, 'Q1', 12, 39, 1605, 222, 163, '23', '2008-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Literature and Literary Theory (Q1)'), (12736, 'Advances in Developing Human Resources', 15523055, 0.352, 'Q3', 46, 34, 1409, 161, 91, '2', '1999-2020', 'Organizational Behavior and Human Resource Management (Q3)'), (12737, 'Algebra Colloquium', 10053867, 0.352, 'Q3', 27, 67, 1242, 106, 144, '37', '1996-2020', 'Algebra and Number Theory (Q3); Applied Mathematics (Q3)'), (12738, 'Australian Journal of Advanced Nursing', 14474328, 0.352, 'Q2', 37, 23, 611, 59, 56, '11', '1983-2020', 'Advanced and Specialized Nursing (Q2); Nursing (miscellaneous) (Q3)'), (12739, 'Bio-based and Applied Economics', 22806180, 0.352, 'Q2', 15, 16, 739, 50, 44, '7', '2012-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Environmental Science (miscellaneous) (Q3); Food Science (Q3)'), (12740, 'Computational Economics', 9277099, 0.352, 'Q2', 40, 166, 6328, 477, 303, '16', '1993-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Computer Science Applications (Q3)'), (12741, 'Empirica', 15736911, 0.352, 'Q2', 30, 55, 2799, 128, 97, '16', '1974-2020', 'Development (Q2); Geography, Planning and Development (Q2); Economics and Econometrics (Q3)'), (12742, 'International Journal of Analytical Chemistry', 16878760, 0.352, 'Q3', 16, 66, 2283, 403, 182, '32', '2013-2020', 'Analytical Chemistry (Q3)'), (12743, 'International Journal of Engineering Business', 18479790, 0.352, 'Q3', 22, 37, 1807, 237, 102, '58', '2009-2020', 'Management Science and Operations Research (Q3); Organizational Behavior and Human Resource Management (Q3)'), (12744, 'Journal of Statistical Distributions and Appl', 21955832, 0.352, 'Q3', 14, 10, 286, 60, 47, '5', '2014-2015, 2017-2020', 'Computer Science Applications (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (12745, 'Journal of the American Musicological Society', 30139, 0.352, 'Q1', 23, 0, 0, 21, 41, '2', '1970-2019', 'Music (Q1)'), (12746, 'Journal of the Australian Library and Informa', 24750158, 0.352, 'Q2', 20, 37, 1544, 65, 78, '3', '2017-2020', 'Library and Information Sciences (Q2)'), (12747, 'Journal of Water and Environment Technology', 13482165, 0.352, 'Q3', 7, 36, 1438, 97, 83, '6', '2016-2020', 'Environmental Engineering (Q3); Health, Toxicology and Mutagenesis (Q3); Pollution (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3); Ecological Modeling (Q4)'), (12748, 'Medicinal Chemistry Research', 10542523, 0.352, 'Q2', 45, 182, 8210, 1367, 711, '2', '1994, 1996-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Organic Chemistry (Q3)'), (12749, 'Microbiology', 16083237, 0.352, 'Q3', 35, 85, 3148, 336, 273, '10', '1996-2020', 'Applied Microbiology and Biotechnology (Q3); Microbiology (Q4)'), (12750, 'Visual Studies', 1472586, 0.352, 'Q1', 40, 64, 2812, 63, 80, '3', '2002-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Anthropology (Q2)'), (12751, 'Acta Universitatis Sapientiae, Mathematica', 18446094, 0.351, 'Q3', 9, 29, 467, 60, 91, '5', '2014-2020', 'Mathematics (miscellaneous) (Q3)'), (12752, 'Arquivos de Gastroenterologia', 16784219, 0.351, 'Q3', 30, 84, 3075, 296, 216, '14', '1973-2020', 'Gastroenterology (Q3)'), (12753, 'Australasian Journal of Information Systems', 14498618, 0.351, 'Q2', 18, 41, 2403, 166, 83, '11', '2007, 2009-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Information Systems and Management (Q2); Human-Computer Interaction (Q3); Information Systems (Q3)'), (12754, 'Australian Economic Papers', 14678454, 0.351, 'Q2', 15, 41, 1696, 93, 70, '3', '1962-1997, 1999, 2001, 2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (12755, 'Baltic Forestry', 20299230, 0.351, 'Q2', 17, 22, 966, 162, 151, '69', '2008-2020', 'Forestry (Q2)'), (12756, 'Die Pharmazie', 317144, 0.351, 'Q2', 63, 129, 3107, 562, 407, '5', '1947-2020', 'Pharmaceutical Science (Q2)'), (12757, 'Dynamic Games and Applications', 21530785, 0.351, 'Q2', 24, 57, 2136, 196, 126, '2', '2011-2020', 'Computer Graphics and Computer-Aided Design (Q2); Applied Mathematics (Q3); Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Economics and'), (12758, 'Economics of Governance', 14356104, 0.351, 'Q2', 26, 16, 749, 52, 47, '5', '2003-2020', 'Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2)'), (12759, 'Economics of Transition', 14680351, 0.351, 'Q3', 51, 0, 0, 79, 65, '3', '1993-2019', 'Economics and Econometrics (Q3)'), (12760, 'European Law Journal', 14680386, 0.351, 'Q2', 54, 14, 0, 90, 97, '3', '1995-2020', 'Law (Q2)'), (12761, 'Formacion Universitaria', 7185006, 0.351, 'Q3', 14, 108, 3469, 270, 183, '45', '2012-2020', 'Education (Q3)'), (12762, 'Genetics Research International', 20903154, 0.351, 'Q4', 9, 0, 0, 21, 13, '32', '2012, 2014-2019', 'Genetics (Q4); Genetics (clinical) (Q4); Molecular Biology (Q4)'), (12763, 'Green Materials', 20491220, 0.351, 'Q3', 13, 10, 435, 110, 70, '3', '2013-2019', 'Materials Chemistry (Q3); Pollution (Q3); Polymers and Plastics (Q3)'), (12764, 'International Journal of Economic Theory', 17427355, 0.351, 'Q3', 11, 36, 956, 41, 80, '2', '2009-2020', 'Economics and Econometrics (Q3)'), (12765, 'International Journal of Play', 21594953, 0.351, 'Q1', 11, 35, 1595, 81, 65, '3', '2012-2020', 'Cultural Studies (Q1); Anthropology (Q2); Developmental and Educational Psychology (Q3); Education (Q3)'), (12766, 'International Journal of Sport Psychology', 470767, 0.351, 'Q3', 48, 0, 0, 54, 48, '7', '1973-1974, 1996-2018', 'Applied Psychology (Q3)'), (12767, 'Journal of Technology and Science Education', 20145349, 0.351, 'Q3', 9, 24, 913, 202, 100, '12', '2014-2020', 'Computer Science Applications (Q3); Education (Q3)'), (12768, 'Profile: Issues in Teachers Professional Dev', 16570790, 0.351, 'Q1', 4, 27, 939, 52, 48, '47', '2018-2020', 'Linguistics and Language (Q1); Education (Q3)'), (12769, 'Transfusion Clinique et Biologique', 12467820, 0.351, 'Q3', 39, 60, 1274, 204, 165, '8', '1994-2020', 'Biochemistry (medical) (Q3); Hematology (Q3); Medicine (miscellaneous) (Q3); Clinical Biochemistry (Q4)'), (12770, 'Turkish Journal of Haematology', 13007777, 0.351, 'Q3', 16, 77, 1186, 189, 125, '18', '2000-2020', 'Hematology (Q3)'), (12771, 'Weed Biology and Management', 14446162, 0.351, 'Q3', 36, 14, 648, 54, 50, '3', '2001-2020', 'Agronomy and Crop Science (Q3)'), (12772, 'Acta Biomedica de l Ateneo Parmense', 3924203, 0.35, 'Q3', 37, 553, 15786, 939, 602, '7', '1973-2020', 'Medicine (miscellaneous) (Q3)'), (12773, 'Acta Cirurgica Brasileira', 1028650, 0.35, 'Q3', 30, 96, 2863, 413, 333, '14', '2002-2020', 'Surgery (Q3)'), (12774, 'Administrative Law Review', 18368, 0.35, 'Q2', 29, 0, 0, 36, 39, '2', '1977, 1988, 1990, 1996-2012, 2016-2019', 'Law (Q2); Public Administration (Q3)'), (12775, 'American Fern Journal', 28444, 0.35, 'Q3', 27, 21, 738, 47, 47, '2', '1993-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (12776, 'ASCE-ASME Journal of Risk and Uncertainty in ', 23329025, 0.35, 'Q2', 13, 30, 1244, 211, 125, '2', '2015-2020', 'Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Mechanical Engineering (Q3)'), (12777, 'Bulletin of Materials Science', 2504707, 0.35, 'Q3', 72, 322, 12118, 1035, 620, '4', '1979-2020', 'Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (12778, 'Bulletin of the Polish Academy of Sciences: T', 23001917, 0.35, 'Q2', 41, 144, 4481, 621, 318, '17', '1983-1988, 1999-2000, 2002-2020', 'Engineering (miscellaneous) (Q2); Artificial Intelligence (Q3); Atomic and Molecular Physics, and Optics (Q3); Computer Networks and Communications (Q3); Information Systems (Q3)'), (12779, 'Conflict, Security and Development', 14678802, 0.35, 'Q2', 20, 33, 2336, 112, 82, '3', '2010-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (12780, 'Current Cardiovascular Imaging Reports', 19419074, 0.35, 'Q3', 21, 29, 1650, 112, 120, '2', '2008-2020', 'Applied Microbiology and Biotechnology (Q3); Histology (Q3); Cell Biology (Q4)'), (12781, 'Electrical Engineering', 14320487, 0.35, 'Q2', 35, 200, 6112, 1013, 464, '5', '1994-2020', 'Electrical and Electronic Engineering (Q2); Applied Mathematics (Q3)'), (12782, 'Endocrine Development', 14217082, 0.35, 'Q3', 38, 0, 0, 27, 23, '19', '2003-2005, 2007-2018', 'Endocrinology, Diabetes and Metabolism (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3); Endocrine and Autonomic Systems (Q4); Endocrinology (Q4)'), (12783, 'Geology in China', 10003657, 0.35, 'Q3', 40, 0, 0, 217, 192, '1', '2005-2018', 'Geology (Q3)'), (12784, 'IEEE Design and Test', 21682356, 0.35, 'Q2', 79, 104, 1558, 436, 192, '2', '2013-2020', 'Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q3); Software (Q3)'), (12785, 'Interface: Communication, Health, Education', 18075762, 0.35, 'Q2', 21, 112, 3391, 210, 394, '14', '1980, 2004, 2007-2020', 'Communication (Q2); Education (Q3); Health (social science) (Q3)'), (12786, 'Iranian Journal of Fuzzy Systems', 17350654, 0.35, 'Q2', 28, 83, 2768, 318, 185, '15', '2004-2020', 'Information Systems and Management (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3); Mathematics (miscellaneous) (Q3)'), (12787, 'Journal of Functional Programming', 14697653, 0.35, 'Q3', 52, 20, 789, 163, 31, '3', '1991-2020', 'Software (Q3)'), (12788, 'Journal of Infusion Nursing', 15331458, 0.35, 'Q3', 35, 48, 1629, 153, 116, '2', '2001-2020', 'Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)'), (12789, 'Knowledge Cultures', 23756527, 0.35, 'Q1', 10, 34, 767, 103, 90, '2', '2013-2020', 'Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Philosophy (Q1); Law (Q2); Library and Information Sciences (Q2); Sociology and Political Science (Q2); Education (Q3)'), (12790, 'Language Resources and Evaluation', 1574020, 0.35, 'Q1', 52, 57, 3309, 269, 106, '16', '1996-2002, 2005-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Library and Information Sciences (Q2); Education (Q3)'), (12791, 'Medicine and Pharmacy Reports', 26020807, 0.35, 'Q3', 16, 49, 1618, 235, 176, '43', '2019-2020', 'Medicine (miscellaneous) (Q3)'), (12792, 'Opiniao Publica', 1046276, 0.35, 'Q2', 17, 25, 1301, 43, 74, '14', '2006-2020', 'Sociology and Political Science (Q2)'), (12793, 'Osaka Journal of Mathematics', 306126, 0.35, 'Q3', 33, 50, 1027, 100, 127, '6', '1949-2020', 'Mathematics (miscellaneous) (Q3)'), (12794, 'Proceedings of the Institution of Mechanical ', 9596518, 0.35, 'Q2', 46, 146, 5236, 563, 286, '3', '1991, 1993-2020', 'Control and Systems Engineering (Q2); Mechanical Engineering (Q3)'), (12795, 'Seminars in Interventional Radiology', 10988963, 0.35, 'Q3', 40, 70, 2949, 274, 173, '2', '1984-2020', 'Cardiology and Cardiovascular Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (12796, 'Silvae Genetica', 375349, 0.35, 'Q2', 38, 33, 1220, 30, 25, '5', '1991, 1993-1994, 1996-2020', 'Forestry (Q2); Genetics (Q4)'), (12797, 'Sovremennye Problemy Distantsionnogo Zondirov', 20707401, 0.35, 'Q3', 13, 180, 3044, 474, 492, '10', '2015-2020', 'Computer Networks and Communications (Q3); Computer Science Applications (Q3); Computers in Earth Sciences (Q3)'), (12798, 'Structural Chemistry', 15729001, 0.35, 'Q3', 46, 219, 10251, 879, 566, '2', '1990-2020', 'Condensed Matter Physics (Q3); Physical and Theoretical Chemistry (Q3)'), (12799, 'Suma Psicologica', 21459797, 0.35, 'Q3', 11, 16, 712, 57, 48, '47', '2010-2019', 'Psychology (miscellaneous) (Q3)'), (12800, 'Terrestrial, Atmospheric and Oceanic Sciences', 10170839, 0.35, 'Q3', 46, 48, 1891, 172, 189, '22', '1996-2020', 'Atmospheric Science (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Oceanography (Q3)'), (12801, 'Texto e Contexto Enfermagem', 1040707, 0.35, 'Q3', 19, 120, 3230, 361, 427, '14', '2009-2015, 2017-2020', 'Nursing (miscellaneous) (Q3)'), (12802, 'American Journal of Therapeutics', 10752765, 0.349, 'Q3', 62, 134, 1054, 460, 271, '2', '1960-1961, 1996-2020', 'Medicine (miscellaneous) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (12803, 'Annales de Limnologie', 34088, 0.349, 'Q3', 31, 29, 1512, 111, 97, '8', '1965-2020', 'Aquatic Science (Q3)'), (12804, 'British Journal of Special Education', 14678578, 0.349, 'Q3', 38, 29, 896, 77, 68, '3', '1974-2020', 'Developmental and Educational Psychology (Q3); Education (Q3)'), (12805, 'Cultura y Educacion', 15784118, 0.349, 'Q1', 19, 34, 1272, 129, 86, '3', '2008-2020', 'Cultural Studies (Q1); Education (Q3)'), (12806, 'Design Journal', 14606925, 0.349, 'Q2', 19, 62, 2197, 565, 705, '3', '2005-2020', 'Arts and Humanities (miscellaneous) (Q2); Computer Graphics and Computer-Aided Design (Q2)'), (12807, 'Families in Society', 10443894, 0.349, 'Q2', 47, 42, 1683, 110, 99, '2', '1993, 1996-2020', 'Social Sciences (miscellaneous) (Q2); Social Work (Q4)'), (12808, 'Gynecologie Obstetrique Fertilite et Senologi', 24687197, 0.349, 'Q3', 34, 153, 4572, 317, 359, '8', '2017-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (12809, 'IEEE Computer Graphics and Applications', 15581756, 0.349, 'Q2', 92, 84, 870, 554, 201, '2', '1981-2020', 'Computer Graphics and Computer-Aided Design (Q2); Software (Q3)'), (12810, 'IETE Technical Review (Institution of Electro', 2564602, 0.349, 'Q2', 33, 127, 5771, 424, 170, '3', '1984-1989, 1993-2020', 'Electrical and Electronic Engineering (Q2)'), (12811, 'Information (Switzerland)', 20782489, 0.349, 'Q3', 28, 589, 27290, 2260, 851, '19', '2012-2020', 'Information Systems (Q3)'), (12812, 'International Social Security Review', 20871, 0.349, 'Q2', 28, 21, 857, 58, 61, '3', '1967-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Public Administration (Q3)'), (12813, 'Journal of Homotopy and Related Structures', 21938407, 0.349, 'Q3', 12, 26, 587, 75, 104, '2', '2012-2020', 'Algebra and Number Theory (Q3); Geometry and Topology (Q3)'), (12814, 'Journal of Integer Sequences', 15307638, 0.349, 'Q3', 28, 80, 1167, 155, 192, '9', '1998-2020', 'Discrete Mathematics and Combinatorics (Q3)'), (12815, 'Journal of Surfactants and Detergents', 15589293, 0.349, 'Q2', 48, 106, 4419, 655, 347, '5', '1998-2020', 'Chemical Engineering (miscellaneous) (Q2); Physical and Theoretical Chemistry (Q3); Surfaces, Coatings and Films (Q3)'), (12816, 'Journal of the History of Economic Thought', 14699656, 0.349, 'Q2', 18, 22, 1541, 33, 80, '3', '1970, 1979-1989, 2003-2020', 'Arts and Humanities (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); History and Philosophy of Science (Q2)'), (12817, 'Linguistic Review', 1676318, 0.349, 'Q1', 33, 24, 1402, 36, 59, '5', '1981-1987, 1990-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (12818, 'Nature Conservation Research', 2500008, 0.349, 'Q2', 9, 61, 3428, 221, 182, '10', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Ecology (Q3); Nature and Landscape Conservation (Q3)'), (12819, 'Open Rheumatology Journal', 18743129, 0.349, 'Q4', 29, 6, 130, 90, 58, '16', '2007-2020', 'Rheumatology (Q4)'), (12820, 'Proceedings of the Institution of Mechanical ', 20413009, 0.349, 'Q2', 32, 132, 4252, 496, 273, '2', '1989-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q3)'), (12821, 'Social Science Journal', 3623319, 0.349, 'Q2', 39, 138, 8250, 340, 194, '2', '1978, 1980, 1982-2020', 'Sociology and Political Science (Q2); Social Psychology (Q3)'), (12822, 'Zeitschrift fur Padagogische Psychologie', 10100652, 0.349, 'Q3', 35, 44, 3012, 50, 48, '19', '1996-2020', 'Developmental and Educational Psychology (Q3)'), (12823, 'Acta Cardiologica', 15385, 0.348, 'Q3', 40, 277, 4883, 235, 193, '24', '1946-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3)'), (12824, 'Acta Orthopaedica Belgica', 16462, 0.348, 'Q3', 52, 104, 1288, 141, 237, '24', '1946-2020', 'Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (12825, 'Asia-Pacific Journal of Chemical Engineering', 19322135, 0.348, 'Q2', 35, 190, 7645, 504, 309, '2', '2006-2020', 'Chemical Engineering (miscellaneous) (Q2); Renewable Energy, Sustainability and the Environment (Q3); Waste Management and Disposal (Q3)'), (12826, 'Biology and Environment', 7917945, 0.348, 'Q2', 27, 21, 983, 44, 34, '42', '1993, 1995-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)'), (12827, 'California Archaeology', 1947461, 0.348, 'Q1', 10, 7, 464, 18, 28, '3', '2009-2020', 'Archeology (arts and humanities) (Q1); Archeology (Q2)'), (12828, 'Chinese Physics Letters', 17413540, 0.348, 'Q3', 66, 296, 9953, 1276, 946, '3', '1984-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (12829, 'Current Ophthalmology Reports', 21674868, 0.348, 'Q3', 12, 35, 2094, 103, 102, '2', '2013-2020', 'Ophthalmology (Q3)'), (12830, 'Czech Mycology', 12110981, 0.348, 'Q3', 5, 9, 326, 29, 38, '31', '2016-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (12831, 'Digital Investigation', 17422876, 0.348, 'Q2', 53, 0, 0, 698, 204, '3', '2004-2019', 'Law (Q2); Computer Science Applications (Q3); Information Systems (Q3); Medical Laboratory Technology (Q3); Pathology and Forensic Medicine (Q3)'), (12832, 'European Physical Journal D', 14346060, 0.348, 'Q3', 89, 234, 10468, 1286, 822, '2', '1998-2020', 'Atomic and Molecular Physics, and Optics (Q3)'), (12833, 'GeoResJ', 22142428, 0.348, 'Q3', 14, 0, 0, 63, 27, '3', '2014-2017', 'Earth and Planetary Sciences (miscellaneous) (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (12834, 'Ido Movement for Culture', 20827571, 0.348, 'Q1', 11, 31, 1163, 132, 107, '17', '2013-2020', 'Philosophy (Q1); Arts and Humanities (miscellaneous) (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (12835, 'International Journal of Arts Management', 14808986, 0.348, 'Q1', 13, 16, 964, 45, 51, '9', '2011-2020', 'Visual Arts and Performing Arts (Q1); Business and International Management (Q2)'), (12836, 'International Journal of Dairy Science', 18119743, 0.348, 'Q3', 17, 20, 966, 96, 59, '34', '2006-2020', 'Animal Science and Zoology (Q3); Food Animals (Q3)'), (12837, 'Journal of Business and Finance Librarianship', 15470644, 0.348, 'Q2', 15, 25, 646, 36, 48, '2', '1990-1992, 1994, 1996-2020', 'Library and Information Sciences (Q2); Management Information Systems (Q2); E-learning (Q3); Marketing (Q3)'), (12838, 'Journal of Competition Law and Economics', 17446422, 0.348, 'Q2', 25, 14, 965, 32, 50, '3', '2005-2020', 'Law (Q2); Economics and Econometrics (Q3)'), (12839, 'Journal on Multimodal User Interfaces', 17837677, 0.348, 'Q3', 27, 39, 1812, 186, 76, '5', '2008-2020', 'Human-Computer Interaction (Q3); Signal Processing (Q3)'), (12840, 'Proceedings of the Institution of Civil Engin', 14784629, 0.348, 'Q3', 26, 32, 1292, 159, 110, '3', '2004-2020', 'Civil and Structural Engineering (Q3)'), (12841, 'Qualitative Sociology', 1620436, 0.348, 'Q2', 55, 27, 1628, 97, 78, '2', '1978-2020', 'Sociology and Political Science (Q2)'), (12842, 'Quarterly Journal of Speech', 335630, 0.348, 'Q1', 38, 28, 0, 63, 52, '2', '1915-2020', 'Language and Linguistics (Q1); Communication (Q2); Education (Q3)'), (12843, 'Turkish Journal of Ophthalmology', 21498709, 0.348, 'Q3', 7, 82, 1731, 145, 156, '18', '2015-2020', 'Ophthalmology (Q3)'), (12844, 'Agricultural and Food Science', 14596067, 0.347, 'Q3', 35, 45, 2143, 109, 70, '38', '2004-2020', 'Food Science (Q3)'), (12845, 'Animal Biology', 15707563, 0.347, 'Q3', 32, 48, 2435, 117, 87, '16', '2003-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12846, 'Biotechnic and Histochemistry', 10520295, 0.347, 'Q3', 42, 116, 4550, 315, 219, '3', '1926-2020', 'Histology (Q3); Medical Laboratory Technology (Q3); Medicine (miscellaneous) (Q3)'), (12847, 'BMC Chemistry', 2661801, 0.347, 'Q3', 8, 70, 3153, 275, 117, '3', '2019-2020', 'Chemistry (miscellaneous) (Q3)'), (12848, 'Boletim da Sociedade Paranaense de Matematica', 21751188, 0.347, 'Q3', 15, 124, 2681, 126, 180, '14', '2002-2020', 'Mathematics (miscellaneous) (Q3)'), (12849, 'Built Environment', 2637960, 0.347, 'Q2', 36, 32, 1285, 90, 110, '3', '1981-2020', 'Geography, Planning and Development (Q2); Urban Studies (Q2)'), (12850, 'Canadian Journal of Administrative Sciences', 19364490, 0.347, 'Q2', 48, 54, 3499, 196, 120, '2', '1984-1990, 1996-2020', 'Business and International Management (Q2); Management of Technology and Innovation (Q3); Marketing (Q3); Public Administration (Q3)'), (12851, 'Children and Schools', 15328759, 0.347, 'Q3', 29, 20, 583, 71, 73, '2', '1978-1979, 1981-1995, 2005-2020', 'Education (Q3); Health (social science) (Q3)'), (12852, 'Coleopterists Bulletin', 10065, 0.347, 'Q3', 24, 110, 1618, 133, 279, '2', '1988-2020', 'Insect Science (Q3)'), (12853, 'Echo Research and Practice', 20550464, 0.347, 'Q2', 13, 24, 379, 99, 88, '3', '2014-2020', 'Advanced and Specialized Nursing (Q2); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (12854, 'Engineering Management in Production and Serv', 25436597, 0.347, 'Q2', 11, 31, 1593, 213, 89, '17', '2016-2020', 'Industrial and Manufacturing Engineering (Q2); Management Information Systems (Q2); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (12855, 'HLA', 20592302, 0.347, 'Q4', 99, 345, 3440, 558, 622, '3', '2011, 2016-2020', 'Genetics (Q4); Immunology (Q4); Immunology and Allergy (Q4)'), (12856, 'Iberica', 11397241, 0.347, 'Q1', 20, 16, 699, 53, 60, '12', '2008-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (12857, 'International Journal of Historical Archaeolo', 10927697, 0.347, 'Q1', 25, 66, 4567, 73, 128, '2', '1997-2020', 'Archeology (arts and humanities) (Q1); History (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2)'), (12858, 'Journal of Asia TEFL', 24661511, 0.347, 'Q1', 11, 117, 4475, 184, 249, '13', '2004, 2007, 2010-2020', 'Linguistics and Language (Q1); Education (Q3)'), (12859, 'Journal of Hazardous, Toxic, and Radioactive ', 21535493, 0.347, 'Q2', 29, 84, 3902, 235, 135, '2', '2011-2020', 'Chemical Engineering (miscellaneous) (Q2); Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3);'), (12860, 'Journal of Historical Geography', 10958614, 0.347, 'Q1', 40, 34, 0, 130, 102, '2', '1975-2020', 'History (Q1); Archeology (Q2); Geography, Planning and Development (Q2)'), (12861, 'Journal of Hydrology: New Zealand', 221708, 0.347, 'Q3', 19, 0, 0, 13, 16, '41', '1968-1969, 1971, 1973-1991, 1993-2012, 2014, 2017-2019', 'Water Science and Technology (Q3)'), (12862, 'Journal of International and Comparative Soci', 21699763, 0.347, 'Q2', 14, 18, 917, 87, 46, '3', '2013-2019', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Health (social science) (Q3)'), (12863, 'Journal of Nanotechnology', 16879503, 0.347, 'Q3', 29, 12, 463, 221, 111, '32', '2010-2020', 'Materials Science (miscellaneous) (Q3)'), (12864, 'Review of Financial Economics', 10583300, 0.347, 'Q3', 41, 44, 1991, 95, 73, '2', '1994-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (12865, 'Supramolecular Chemistry', 10290478, 0.347, 'Q3', 43, 62, 2539, 390, 290, '3', '1992-2020', 'Chemistry (miscellaneous) (Q3)'), (12866, 'Systemic Practice and Action Research', 1094429, 0.347, 'Q3', 33, 53, 2930, 158, 99, '2', '1996-2020', 'Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (12867, 'Taiwania', 372333, 0.347, 'Q3', 17, 79, 2122, 127, 132, '22', '2007-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12868, 'Translation Studies', 14781700, 0.347, 'Q1', 18, 23, 1085, 34, 60, '3', '2008-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (12869, 'Turkish Journal of Urology', 21493057, 0.347, 'Q3', 8, 94, 2324, 326, 273, '18', '2017-2020', 'Urology (Q3)'), (12870, 'Acta Geodaetica et Geophysica', 22135812, 0.346, 'Q3', 19, 39, 1530, 162, 112, '16', '2013-2020', 'Building and Construction (Q3); Geology (Q3); Geophysics (Q3)'), (12871, 'AKCE International Journal of Graphs and Comb', 9728600, 0.346, 'Q3', 13, 149, 2278, 150, 112, '4', '2011-2020', 'Discrete Mathematics and Combinatorics (Q3)'), (12872, 'Algorithms', 19994893, 0.346, 'Q3', 34, 328, 14067, 1492, 596, '19', '2008-2020', 'Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Numerical Analysis (Q3); Theoretical Computer Science (Q3)'), (12873, 'Analysis (Germany)', 21966753, 0.346, 'Q3', 25, 15, 411, 53, 49, '5', '1981-2020', 'Analysis (Q3); Applied Mathematics (Q3); Numerical Analysis (Q3)'), (12874, 'Bulletin du Cancer', 74551, 0.346, 'Q3', 39, 209, 6228, 503, 423, '8', '1966-2020', 'Medicine (miscellaneous) (Q3); Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Cancer Research (Q4); Hematology (Q4)'), (12875, 'Drinking Water Engineering and Science', 19969465, 0.346, 'Q3', 18, 5, 196, 72, 30, '5', '2008-2020', 'Civil and Structural Engineering (Q3); Pollution (Q3); Water Science and Technology (Q3)'), (12876, 'Drug Metabolism and Personalized Therapy', 23638907, 0.346, 'Q2', 35, 46, 1757, 127, 75, '5', '2015-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pharmacology (medical) (Q3)'), (12877, 'Fennia', 150010, 0.346, 'Q2', 20, 24, 991, 76, 71, '38', '1976, 1979-2009, 2011-2019', 'Forestry (Q2); Geography, Planning and Development (Q2); Ecology (Q3)'), (12878, 'Geochemistry: Exploration, Environment, Analy', 14677873, 0.346, 'Q3', 41, 9, 535, 130, 102, '3', '2001-2019', 'Chemistry (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Geochemistry and Petrology (Q3)'), (12879, 'International Journal of Electrochemical Scie', 14523981, 0.346, 'Q3', 82, 954, 38800, 4512, 2622, '55', '2006-2020', 'Electrochemistry (Q3)'), (12880, 'International Journal of Occupational and Env', 20493967, 0.346, 'Q3', 52, 0, 0, 115, 48, '3', '1995-2018', 'Public Health, Environmental and Occupational Health (Q3)'), (12881, 'IRBM', 18760988, 0.346, 'Q3', 29, 72, 3044, 301, 132, '8', '2007-2020', 'Biomedical Engineering (Q3); Biophysics (Q3)'), (12882, 'Journal of Contemporary Archaeology', 20513437, 0.346, 'Q1', 10, 7, 381, 40, 52, '3', '2014-2020', 'Archeology (arts and humanities) (Q1); Archeology (Q2)'), (12883, 'Journal of Family Psychotherapy', 8975353, 0.346, 'Q3', 17, 17, 706, 43, 56, '2', '1990-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (12884, 'Journal of Physical Education and Sport', 22478051, 0.346, 'Q3', 27, 480, 15177, 1236, 1033, '43', '2011-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (12885, 'Journal of Social Science Education', 16185293, 0.346, 'Q3', 8, 36, 1643, 82, 87, '5', '2014-2020', 'Education (Q3)'), (12886, 'Journal of Stem Cells and Regenerative Medici', 9737154, 0.346, 'Q3', 14, 12, 417, 37, 25, '4', '2010-2020', 'Biotechnology (Q3); Biochemistry (Q4); Cell Biology (Q4); Molecular Biology (Q4)'), (12887, 'Journal of the Turkish German Gynecology Asso', 13090399, 0.346, 'Q3', 16, 55, 1195, 133, 103, '18', '2005-2020', 'Obstetrics and Gynecology (Q3)'), (12888, 'Latino Studies', 14763443, 0.346, 'Q1', 17, 43, 1286, 71, 90, '3', '2009-2020', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)'), (12889, 'Lobachevskii Journal of Mathematics', 19950802, 0.346, 'Q3', 21, 285, 5536, 486, 563, '10', '1999-2020', 'Mathematics (miscellaneous) (Q3)'), (12890, 'Mobile Information Systems', 1875905, 0.346, 'Q3', 34, 115, 4637, 908, 384, '32', '2005-2020', 'Computer Networks and Communications (Q3); Computer Science Applications (Q3)'), (12891, 'Multimedia Systems', 14321882, 0.346, 'Q2', 59, 85, 3742, 356, 148, '5', '1993-2000, 2002-2020', 'Media Technology (Q2); Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Software (Q3)'), (12892, 'Physics of the Solid State', 10906460, 0.346, 'Q3', 51, 364, 9500, 1144, 1129, '10', '1996-2020', 'Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (12893, 'Polar Journal', 21548978, 0.346, 'Q2', 14, 29, 1322, 79, 93, '3', '2011-2020', 'Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (12894, 'Polymers from Renewable Resources', 20412479, 0.346, 'Q3', 10, 6, 217, 71, 29, '3', '2010-2019', 'Polymers and Plastics (Q3)'), (12895, 'Quaternaire', 11422904, 0.346, 'Q3', 30, 21, 1237, 54, 87, '8', '1990-1994, 1996-2019', 'Earth-Surface Processes (Q3); Geology (Q3)'), (12896, 'Residential Treatment for Children and Youth', 886571, 0.346, 'Q2', 23, 31, 1236, 57, 61, '2', '1986-2005, 2007-2020', 'Law (Q2); Pediatrics, Perinatology and Child Health (Q3)'), (12897, 'Transformations in Business and Economics', 16484460, 0.346, 'Q2', 20, 102, 4982, 395, 262, '69', '2006-2020', 'Business and International Management (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3); Marketing (Q3)'), (12898, 'Visual Anthropology Review', 10587187, 0.346, 'Q2', 18, 21, 658, 23, 46, '2', '1991-2020', 'Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)'), (12899, 'World Neurosurgery: X', 25901397, 0.346, 'Q3', 4, 19, 1126, 38, 35, '2', '2019-2020', 'Neurology (clinical) (Q3); Surgery (Q3)'), (12900, 'Acute and Critical Care', 25866060, 0.345, 'Q2', 4, 48, 970, 89, 72, '13', '2018-2020', 'Critical Care and Intensive Care Medicine (Q2); Critical Care Nursing (Q3)'), (12901, 'Applied Biosafety', 15356760, 0.345, 'Q3', 6, 38, 928, 63, 68, '2', '2001, 2014-2020', 'Biotechnology (Q3); Health, Toxicology and Mutagenesis (Q3); Management, Monitoring, Policy and Law (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12902, 'Asian Economic Journal', 13513958, 0.345, 'Q2', 28, 18, 535, 47, 53, '3', '1987-2020', 'Geography, Planning and Development (Q2); Development (Q3)'), (12903, 'Assembly Automation', 1445154, 0.345, 'Q2', 40, 49, 1859, 416, 225, '3', '1980-2020', 'Control and Systems Engineering (Q2); Industrial and Manufacturing Engineering (Q2)'), (12904, 'Cogent Business and Management', 23311975, 0.345, 'Q2', 16, 248, 17177, 718, 349, '3', '2014-2020', 'Business and International Management (Q2); Business, Management and Accounting (miscellaneous) (Q2); Accounting (Q3); Management Science and Operations Research (Q3); Marketing (Q3); Organizational B'), (12905, 'Ekologia Bratislava', 1337947, 0.345, 'Q3', 20, 30, 1200, 95, 89, '53', '1993-1994, 1996-2020', 'Ecology (Q3)'), (12906, 'Evolving Systems', 18686486, 0.345, 'Q2', 27, 67, 2788, 272, 113, '5', '2010-2020', 'Control and Systems Engineering (Q2); Computer Science Applications (Q3); Control and Optimization (Q3); Modeling and Simulation (Q3)'), (12907, 'Hague Journal of Diplomacy, The', 1871191, 0.345, 'Q2', 20, 40, 1539, 61, 62, '16', '2007-2020', 'Political Science and International Relations (Q2)'), (12908, 'International Journal of Advanced Structural ', 20083556, 0.345, 'Q3', 17, 0, 0, 184, 106, '5', '2012-2019', 'Civil and Structural Engineering (Q3)'), (12909, 'International Journal of Osteopathic Medicine', 17460689, 0.345, 'Q2', 21, 42, 1889, 172, 67, '3', '2005-2020', 'Complementary and Alternative Medicine (Q2)'), (12910, 'International Journal of Procurement Manageme', 17538432, 0.345, 'Q2', 21, 42, 2242, 196, 114, '19', '2007-2014, 2020', 'Business, Management and Accounting (miscellaneous) (Q2)'), (12911, 'Investigaciones de Historia Economica', 23403373, 0.345, 'Q1', 10, 17, 892, 33, 47, '12', '2005, 2011-2019', 'History (Q1); Economics and Econometrics (Q3)'), (12912, 'ISRA International Journal of Islamic Finance', 22894365, 0.345, 'Q2', 5, 26, 1151, 87, 61, '3', '2017-2020', 'Development (Q2); Economics and Econometrics (Q3); Finance (Q3)'), (12913, 'Journal of Central South University', 22275223, 0.345, 'Q2', 38, 291, 12195, 1607, 859, '2', '2013-2020', 'Engineering (miscellaneous) (Q2); Metals and Alloys (Q2)'), (12914, 'Journal of Emergency Management', 15435865, 0.345, 'Q2', 10, 48, 1226, 86, 112, '2', '2012-2020', 'Safety Research (Q2); Safety, Risk, Reliability and Quality (Q2); Emergency Medicine (Q3); Medicine (miscellaneous) (Q3)'), (12915, 'Journal of Human Rights', 14754843, 0.345, 'Q2', 19, 41, 2290, 54, 102, '3', '2010-2020', 'Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (12916, 'Journal of Smooth Muscle Research', 18848796, 0.345, 'Q3', 32, 6, 214, 34, 23, '6', '1991-2020', 'Medicine (miscellaneous) (Q3); Physiology (Q4)'), (12917, 'Karbala International Journal of Modern Scien', 24056103, 0.345, 'Q2', 17, 47, 1618, 285, 105, '48', '2015-2020', 'Computer Science (miscellaneous) (Q2); Multidisciplinary (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) '), (12918, 'Theory in Biosciences', 16117530, 0.345, 'Q3', 37, 29, 1348, 87, 56, '5', '1997-2020', 'Applied Mathematics (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Statistics and Probability (Q3)'), (12919, 'Transactions of the Institutions of Mining an', 17432758, 0.345, 'Q3', 25, 0, 0, 7, 11, '3', '1969-2010, 2012-2017', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geochemistry and Petrology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (12920, 'African Journal of Herpetology', 21564574, 0.344, 'Q3', 18, 10, 525, 21, 28, '3', '1996-2000, 2002-2003, 2005-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (12921, 'Atmosfera', 1876236, 0.344, 'Q3', 29, 24, 1149, 107, 71, '30', '1988-2020', 'Atmospheric Science (Q3)'), (12922, 'Biocatalysis and Biotransformation', 10292446, 0.344, 'Q3', 47, 62, 3326, 300, 144, '3', '1987-2020', 'Biotechnology (Q3); Catalysis (Q3); Biochemistry (Q4)'), (12923, 'Biogeographia', 24755257, 0.344, 'Q3', 6, 4, 235, 26, 19, '2', '2016-2019', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Global and Planetary Change (Q4)'), (12924, 'Chemical Papers', 3666352, 0.344, 'Q2', 42, 377, 16763, 1603, 871, '19', '1973, 1996-2020', 'Industrial and Manufacturing Engineering (Q2); Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3); Biochemistry (Q4)'), (12925, 'Computers and Graphics', 978493, 0.344, 'Q2', 70, 115, 4823, 872, 336, '3', '1975-1980, 1982-2020', 'Computer Graphics and Computer-Aided Design (Q2); Computer Vision and Pattern Recognition (Q2); Engineering (miscellaneous) (Q2); Human-Computer Interaction (Q3); Signal Processing (Q3); Software (Q3)'), (12926, 'Frontiers in Biology', 16747984, 0.344, 'Q3', 28, 0, 0, 110, 91, '1', '2010-2018', 'Biotechnology (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q4)'), (12927, 'Geomagnetism and Aeronomy', 167932, 0.344, 'Q3', 25, 140, 3322, 315, 418, '10', '1996, 1998-2020', 'Geophysics (Q3); Space and Planetary Science (Q4)'), (12928, 'Hupo Kexue/Journal of Lake Sciences', 10035427, 0.344, 'Q3', 13, 161, 7436, 694, 478, '1', '2016-2020', 'Aquatic Science (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Pollution (Q3); Water Science and Technology (Q3)'), (12929, 'Intercultural Education', 14675986, 0.344, 'Q1', 19, 45, 1620, 150, 113, '3', '2010-2020', 'Cultural Studies (Q1); Education (Q3)'), (12930, 'International Journal of Communication System', 10991131, 0.344, 'Q2', 49, 433, 16559, 1987, 933, '3', '1994-2020', 'Electrical and Electronic Engineering (Q2); Computer Networks and Communications (Q3)'), (12931, 'International Journal of Information Security', 16155270, 0.344, 'Q2', 43, 71, 2987, 304, 120, '5', '2005-2020', 'Safety, Risk, Reliability and Quality (Q2); Computer Networks and Communications (Q3); Information Systems (Q3); Software (Q3)'), (12932, 'International Journal of Sport Communication', 19363907, 0.344, 'Q2', 4, 50, 1616, 61, 35, '3', '2018-2020', 'Business and International Management (Q2); Communication (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (12933, 'Iranian Journal of Pathology', 23453656, 0.344, 'Q3', 12, 67, 1811, 219, 171, '15', '2011-2020', 'Pathology and Forensic Medicine (Q3)'), (12934, 'Izquierdas', 7185049, 0.344, 'Q1', 5, 226, 9234, 90, 191, '45', '2013-2020', 'History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (12935, 'Journal of Carbohydrate Chemistry', 15322327, 0.344, 'Q3', 35, 23, 971, 118, 81, '2', '1982-2020', 'Organic Chemistry (Q3); Biochemistry (Q4)'), (12936, 'Journal of the American Leather Chemists Asso', 29726, 0.344, 'Q3', 31, 49, 1468, 142, 141, '2', '1969-1970, 1976-1990, 1994-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (12937, 'New Solutions', 10482911, 0.344, 'Q3', 21, 40, 1003, 89, 100, '2', '1996-2020', 'Health, Toxicology and Mutagenesis (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12938, 'Noise and Health', 14631741, 0.344, 'Q3', 48, 17, 683, 149, 89, '4', '2002-2020', 'Otorhinolaryngology (Q3); Public Health, Environmental and Occupational Health (Q3); Speech and Hearing (Q3)'), (12939, 'Postepy w Kardiologii Interwencyjnej', 18974295, 0.344, 'Q3', 14, 64, 1072, 192, 204, '17', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (12940, 'Psicologia della Salute', 17210321, 0.344, 'Q3', 13, 25, 1114, 97, 71, '7', '2000-2020', 'Applied Psychology (Q3); Health (social science) (Q3)'), (12941, 'Ratio Juris', 14679337, 0.344, 'Q2', 10, 26, 960, 28, 71, '3', '1988-1995, 2004, 2011-2020', 'Law (Q2)'), (12942, 'Sao Paulo Medical Journal', 15163180, 0.344, 'Q3', 40, 84, 2030, 307, 236, '14', '1994-2020', 'Medicine (miscellaneous) (Q3)'), (12943, 'ACM Transactions on Computer Systems', 7342071, 0.343, 'Q2', 70, 6, 227, 64, 22, '2', '1983-2020', 'Computer Science (miscellaneous) (Q2)'), (12944, 'AI and Society', 9515666, 0.343, 'Q1', 29, 186, 8089, 327, 167, '3', '1987-1996, 1998-2020', 'Philosophy (Q1); Artificial Intelligence (Q3); Human-Computer Interaction (Q3)'), (12945, 'Anaesthesiology Intensive Therapy', 16425758, 0.343, 'Q2', 23, 49, 1209, 206, 163, '17', '2012-2020', 'Critical Care and Intensive Care Medicine (Q2); Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q3)'), (12946, 'Art Education', 23255161, 0.343, 'Q1', 24, 49, 860, 68, 137, '3', '1996-2020', 'Visual Arts and Performing Arts (Q1); Education (Q3)'), (12947, 'Canadian Journal of Communication', 14996642, 0.343, 'Q2', 8, 27, 1365, 141, 125, '9', '2016-2020', 'Communication (Q2)'), (12948, 'Chinese Management Studies', 1750614, 0.343, 'Q2', 24, 41, 2881, 275, 161, '3', '2007-2020', 'Business, Management and Accounting (miscellaneous) (Q2)'), (12949, 'Estonian Journal of Earth Sciences', 17364728, 0.343, 'Q3', 24, 22, 1405, 61, 59, '71', '2007-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Water Science and Technology (Q3)'), (12950, 'Fukushima Journal of Medical Sciences', 162590, 0.343, 'Q3', 15, 6, 0, 79, 58, '6', '1964-2020', 'Medicine (miscellaneous) (Q3)'), (12951, 'Geomechanics and Geoengineering', 17486025, 0.343, 'Q3', 28, 65, 2406, 110, 91, '3', '2006-2020', 'Geotechnical Engineering and Engineering Geology (Q3)'), (12952, 'Hong Kong Physiotherapy Journal', 10137025, 0.343, 'Q3', 15, 14, 423, 51, 41, '1', '2000-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (12953, 'IEEJ Journal of Industry Applications', 21871108, 0.343, 'Q2', 20, 83, 1549, 414, 253, '6', '2012-2020', 'Automotive Engineering (Q2); Electrical and Electronic Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3)'), (12954, 'Journal of Cotton Science', 15236919, 0.343, 'Q3', 39, 18, 563, 55, 80, '2', '1997-2020', 'Materials Science (miscellaneous) (Q3)'), (12955, 'Journal of Evidence-Informed Social Work', 23761407, 0.343, 'Q2', 10, 0, 0, 120, 81, '3', '2015-2020', 'Sociology and Political Science (Q2); Health (social science) (Q3); Medicine (miscellaneous) (Q3); Social Psychology (Q3)'), (12956, 'Journal of Genetics', 9737731, 0.343, 'Q4', 37, 90, 3783, 484, 440, '4', '1910-1960, 1962-1966, 1968, 1970-1972, 1974-1977, 1985-2020', 'Genetics (Q4)'), (12957, 'Mastozoologia Neotropical', 16660536, 0.343, 'Q3', 16, 51, 2824, 102, 85, '46', '2007-2020', 'Animal Science and Zoology (Q3)'), (12958, 'Physics Education', 319120, 0.343, 'Q3', 31, 230, 2849, 446, 549, '3', '1966-2020', 'Education (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (12959, 'Plant Genetic Resources: Characterisation and', 1479263, 0.343, 'Q3', 35, 47, 1974, 242, 198, '3', '2002-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3); Genetics (Q4)'), (12960, 'Problems of Atomic Science and Technology, Se', 2023822, 0.343, 'Q3', 7, 28, 529, 52, 121, '10', '2015-2020', 'Condensed Matter Physics (Q3); Nuclear and High Energy Physics (Q3); Nuclear Energy and Engineering (Q3)'), (12961, 'Psychologist-Manager Journal', 15503461, 0.343, 'Q2', 14, 8, 337, 33, 39, '2', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Applied Psychology (Q3); Social Psychology (Q3)'), (12962, 'Transfers', 20454821, 0.343, 'Q3', 7, 15, 536, 69, 76, '2', '2015-2019', 'Transportation (Q3)'), (12963, 'Tribology Online', 18812198, 0.343, 'Q3', 13, 40, 1058, 108, 133, '6', '2013-2020', 'Surfaces, Coatings and Films (Q3)'), (12964, 'Turkish Journal of Fisheries and Aquatic Scie', 13032712, 0.343, 'Q3', 29, 88, 4022, 496, 383, '18', '2008-2020', 'Animal Science and Zoology (Q3); Aquatic Science (Q3)'), (12965, 'Tzu Chi Medical Journal', 10163190, 0.343, 'Q3', 15, 71, 2128, 223, 152, '4', '1997-2020', 'Medicine (miscellaneous) (Q3)'), (12966, 'American Midland Naturalist', 30031, 0.342, 'Q3', 50, 42, 1821, 113, 148, '2', '1979-1980, 1982-1990, 1993-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (12967, 'American Quarterly', 30678, 0.342, 'Q1', 35, 49, 2890, 93, 178, '2', '1970-1973, 1976-1977, 1979-1982, 1986, 1988-1989, 2000-2020', 'Cultural Studies (Q1); History (Q1)'), (12968, 'Ansiedad y Estres', 11347937, 0.342, 'Q3', 12, 26, 1171, 73, 64, '12', '2009-2020', 'Applied Psychology (Q3); Psychiatry and Mental Health (Q3); Social Psychology (Q3)'), (12969, 'Austrian Journal of Statistics', 1026597, 0.342, 'Q3', 9, 32, 585, 75, 70, '28', '2014-2020', 'Applied Mathematics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (12970, 'Combustion, Explosion and Shock Waves', 15738345, 0.342, 'Q3', 42, 84, 2033, 273, 280, '10', '1965-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (12971, 'Contemporary Problems of Ecology', 19954255, 0.342, 'Q3', 14, 78, 3293, 221, 236, '10', '2008-2020', 'Environmental Science (miscellaneous) (Q3)'), (12972, 'Critical Care Nurse', 2795442, 0.342, 'Q3', 44, 85, 2142, 292, 208, '2', '1980-2020', 'Critical Care Nursing (Q3); Medicine (miscellaneous) (Q3)'), (12973, 'International Journal of Turbo and Jet Engine', 3340082, 0.342, 'Q3', 22, 67, 1735, 152, 129, '5', '1985-2020', 'Aerospace Engineering (Q3)'), (12974, 'Jixie Gongcheng Xuebao/Chinese Journal of Mec', 5776686, 0.342, 'Q3', 50, 621, 16609, 2206, 1873, '1', '1981-1990, 1996-2020', 'Applied Mathematics (Q3); Computer Science Applications (Q3); Mechanical Engineering (Q3)'), (12975, 'Journal of Business Analytics', 2573234, 0.342, 'Q2', 4, 14, 595, 39, 21, '3', '2018-2020', 'Industrial and Manufacturing Engineering (Q2); Information Systems (Q3); Management Information Systems (Q3)'), (12976, 'Journal of E-Learning and Knowledge Society', 18266223, 0.342, 'Q3', 16, 41, 1494, 146, 101, '7', '2006, 2009-2020', 'Computer Science Applications (Q3); Education (Q3); E-learning (Q3)'), (12977, 'Journal of Multicultural Discourses', 17447143, 0.342, 'Q1', 19, 33, 1507, 75, 65, '3', '2006-2020', 'Cultural Studies (Q1); Linguistics and Language (Q1); Communication (Q2)'), (12978, 'Journal of the Canadian Academy of Child and ', 17198429, 0.342, 'Q3', 34, 30, 909, 102, 64, '9', '2006-2020', 'Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3)'), (12979, 'Library Resources and Technical Services', 242527, 0.342, 'Q2', 24, 8, 218, 23, 50, '2', '1978-1979, 1981-1984, 1988-2020', 'Library and Information Sciences (Q2); Information Systems (Q3)'), (12980, 'Libyan Journal of Medicine', 19932820, 0.342, 'Q3', 21, 20, 695, 98, 51, '3', '2009-2020', 'Medicine (miscellaneous) (Q3)'), (12981, 'Marine and Freshwater Behaviour and Physiolog', 10290362, 0.342, 'Q3', 35, 17, 927, 77, 75, '3', '1994-2020', 'Aquatic Science (Q3); Oceanography (Q3); Physiology (Q4)'), (12982, 'Recent Patents on Drug Delivery and Formulati', 22124039, 0.342, 'Q3', 34, 20, 1241, 113, 66, '52', '2007-2019', 'Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3); Pharmaceutical Science (Q3)'), (12983, 'Regional Science Policy and Practice', 17577802, 0.342, 'Q2', 8, 125, 6011, 133, 97, '2', '2015-2020', 'Geography, Planning and Development (Q2); Development (Q3); Management, Monitoring, Policy and Law (Q3)'), (12984, 'Zidonghua Xuebao/Acta Automatica Sinica', 18741029, 0.342, 'Q2', 59, 216, 9283, 1269, 604, '1', '1980, 1993-2020', 'Computer Graphics and Computer-Aided Design (Q2); Control and Systems Engineering (Q3); Information Systems (Q3); Software (Q3)'), (12985, 'Canadian Journal of Program Evaluation', 8341516, 0.341, 'Q2', 15, 29, 709, 55, 76, '9', '2005-2010, 2012-2020', 'Library and Information Sciences (Q2)'), (12986, 'Capital Markets Law Journal', 17507227, 0.341, 'Q2', 7, 32, 930, 67, 96, '3', '2006, 2014-2020', 'Law (Q2); Finance (Q3)'), (12987, 'Central European Journal of Public Policy', 18024866, 0.341, 'Q2', 8, 9, 599, 31, 27, '31', '2012-2020', 'Law (Q2); Sociology and Political Science (Q2); Public Administration (Q3)'), (12988, 'CMES - Computer Modeling in Engineering and S', 15261492, 0.341, 'Q3', 60, 234, 8786, 413, 263, '2', '2000-2020', 'Computer Science Applications (Q3); Modeling and Simulation (Q3); Software (Q3)'), (12989, 'Educational Gerontology', 3601277, 0.341, 'Q3', 54, 71, 3061, 231, 185, '3', '1976-2020', 'Education (Q3); Geriatrics and Gerontology (Q3)'), (12990, 'Eurasip Journal on Image and Video Processing', 16875281, 0.341, 'Q2', 40, 51, 2159, 873, 320, '2', '2007-2020', 'Electrical and Electronic Engineering (Q2); Information Systems (Q3); Signal Processing (Q3)'), (12991, 'European Business Organization Law Review', 17416205, 0.341, 'Q2', 20, 34, 1929, 100, 86, '19', '2000-2020', 'Business and International Management (Q2); Law (Q2); Political Science and International Relations (Q2)'), (12992, 'IAES International Journal of Artificial Inte', 20894872, 0.341, 'Q2', 7, 92, 2759, 179, 75, '21', '2018-2020', 'Electrical and Electronic Engineering (Q2); Information Systems and Management (Q2); Artificial Intelligence (Q3); Control and Systems Engineering (Q3)'), (12993, 'International Journal for Educational and Voc', 15731782, 0.341, 'Q1', 26, 37, 2414, 99, 58, '16', '2005-2020', 'Visual Arts and Performing Arts (Q1); Education (Q3)'), (12994, 'International Journal of Ageing and Later Lif', 16528670, 0.341, 'Q1', 15, 13, 803, 25, 22, '20', '2008-2020', 'Cultural Studies (Q1); Gender Studies (Q2); Health (social science) (Q3); Life-span and Life-course Studies (Q3)'), (12995, 'International Journal of Care and Caring', 2397883, 0.341, 'Q2', 7, 43, 1387, 128, 100, '3', '2017-2020', 'Sociology and Political Science (Q2); Health Policy (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (12996, 'International Journal of Chemical Kinetics', 10974601, 0.341, 'Q3', 68, 84, 3841, 340, 230, '2', '1969-2020', 'Inorganic Chemistry (Q3); Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Biochemistry (Q4)'), (12997, 'International Journal of Self-Propagating Hig', 10613862, 0.341, 'Q3', 14, 52, 793, 144, 136, '10', '2011-2020', 'Materials Science (miscellaneous) (Q3); Process Chemistry and Technology (Q3)'), (12998, 'Journal of Design Research', 17483050, 0.341, 'Q2', 20, 5, 287, 29, 40, '3', '2006-2007, 2010-2014, 2019', 'Computer Graphics and Computer-Aided Design (Q2); Engineering (miscellaneous) (Q2)'), (12999, 'Journal of Gambling Issues', 19107595, 0.341, 'Q3', 12, 19, 801, 56, 71, '9', '2012-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (13000, 'Journal of HerbMed Pharmacology', 23455004, 0.341, 'Q3', 10, 49, 2315, 214, 119, '15', '2015-2020', 'Drug Discovery (Q3)'), (13001, 'Journal of Moral Philosophy', 17404681, 0.341, 'Q1', 20, 28, 910, 42, 83, '16', '2004-2020', 'Philosophy (Q1)'), (13002, 'Knowledge and Process Management', 10991441, 0.341, 'Q3', 44, 29, 1996, 162, 76, '3', '1997-2020', 'Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (13003, 'Kragujevac Journal of Mathematics', 14509628, 0.341, 'Q3', 15, 45, 917, 112, 108, '55', '2011-2020', 'Mathematics (miscellaneous) (Q3)'), (13004, 'Measuring Business Excellence', 13683047, 0.341, 'Q2', 45, 38, 2825, 150, 85, '3', '1997-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Organizational Behavior and Human Resource Management (Q3)'), (13005, 'Novon', 10553177, 0.341, 'Q3', 24, 34, 561, 62, 110, '2', '1994-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (13006, 'Open Respiratory Medicine Journal', 18743064, 0.341, 'Q3', 19, 14, 432, 28, 23, '52', '2009-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (13007, 'Planta Daninha', 1008358, 0.341, 'Q3', 31, 92, 2987, 316, 388, '14', '2006-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3); Biochemistry (Q4); Physiology (Q4)'), (13008, 'Proceedings of the Indian Academy of Sciences', 2534142, 0.341, 'Q3', 26, 66, 1147, 147, 209, '4', '1978-2020', 'Mathematics (miscellaneous) (Q3)'), (13009, 'Profesorado', 1138414, 0.341, 'Q3', 14, 54, 2289, 246, 278, '12', '2012-2020', 'Education (Q3)'), (13010, 'Progress In Electromagnetics Research C', 19378718, 0.341, 'Q3', 34, 182, 5346, 771, 540, '2', '2008-2020', 'Electronic, Optical and Magnetic Materials (Q3)'), (13011, 'Recent Patents on Anti-Infective Drug Discove', 1574891, 0.341, 'Q3', 30, 12, 391, 66, 39, '16', '2006-2019', 'Drug Discovery (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)'), (13012, 'Revista do Colegio Brasileiro de Cirurgioes', 18094546, 0.341, 'Q3', 21, 100, 2202, 254, 233, '14', '2007-2020', 'Surgery (Q3)'), (13013, 'Schweizer Archiv fur Tierheilkunde', 367281, 0.341, 'Q2', 28, 43, 1522, 119, 127, '19', '1945-1951, 1961, 1965-2020', 'Veterinary (miscellaneous) (Q2)'), (13014, 'South African Journal of Animal Sciences', 3751589, 0.341, 'Q3', 33, 50, 1938, 336, 265, '27', '1974, 1996-2020', 'Animal Science and Zoology (Q3)'), (13015, 'Statistics and Public Policy', 2330443, 0.341, 'Q3', 11, 9, 215, 55, 30, '2', '2014-2020', 'Applied Mathematics (Q3); Public Administration (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (13016, 'Studia Universitatis Babes-Bolyai Mathematica', 2065961, 0.341, 'Q3', 8, 46, 965, 90, 131, '43', '2016-2020', 'Mathematics (miscellaneous) (Q3)'), (13017, 'Applied Solar Energy (English translation of ', 3701, 0.34, 'Q3', 15, 51, 1529, 251, 199, '10', '1977-1990, 1995-2020', 'Renewable Energy, Sustainability and the Environment (Q3)'), (13018, 'Archive for the Psychology of Religion', 846724, 0.34, 'Q1', 17, 20, 1517, 37, 37, '16', '1914, 1921, 1929, 1936, 1964, 1967, 1976, 1980, 1982-1983, 1985, 1988, 1990, 1992, 1997, 2000, 2003-', 'Philosophy (Q1); Religious Studies (Q1); Psychology (miscellaneous) (Q3)'), (13019, 'Biochemistry and Molecular Biology Education', 15393429, 0.34, 'Q4', 39, 131, 2105, 293, 221, '2', '1990, 1996-2020', 'Biochemistry (Q4); Molecular Biology (Q4)'), (13020, 'Biotechnology, Agronomy and Society and Envir', 13706233, 0.34, 'Q2', 36, 23, 1044, 106, 70, '24', '1997-2020', 'Forestry (Q2); Geography, Planning and Development (Q2); Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3)'), (13021, 'Concurrent Engineering Research and Applicati', 15312003, 0.34, 'Q2', 42, 28, 1249, 120, 78, '3', '1993-2020', 'Engineering (miscellaneous) (Q2); Computer Science Applications (Q3); Modeling and Simulation (Q3)'), (13022, 'Critical African Studies', 21681392, 0.34, 'Q2', 7, 31, 1544, 49, 60, '3', '2015-2020', 'Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (13023, 'Cuadernos.info', 719367, 0.34, 'Q2', 10, 15, 787, 67, 81, '45', '2013-2020', 'Communication (Q2); Library and Information Sciences (Q2)'), (13024, 'Daedalus', 115266, 0.34, 'Q2', 55, 71, 1208, 227, 152, '2', '1965, 1968-1989, 1992-1996, 1998-2020', 'Arts and Humanities (miscellaneous) (Q2); History and Philosophy of Science (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2)'), (13025, 'Design Issues', 7479360, 0.34, 'Q2', 33, 25, 250, 81, 75, '2', '2005-2020', 'Arts and Humanities (miscellaneous) (Q2); Computer Graphics and Computer-Aided Design (Q2)'), (13026, 'Diagnosis', 21948011, 0.34, 'Q3', 9, 2, 0, 129, 71, '5', '2014-2020', 'Biochemistry (medical) (Q3); Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3); Clinical Biochemistry (Q4)'), (13027, 'Ecological Restoration', 15434079, 0.34, 'Q3', 29, 41, 1144, 110, 101, '2', '1999-2020', 'Nature and Landscape Conservation (Q3)'), (13028, 'Education for Health: Change in Learning and ', 14695804, 0.34, 'Q3', 33, 30, 318, 114, 91, '4', '1997-2020', 'Education (Q3); Medicine (miscellaneous) (Q3)'), (13029, 'Environmental and Ecological Statistics', 13528505, 0.34, 'Q3', 46, 36, 1539, 101, 70, '16', '1994-2020', 'Environmental Science (miscellaneous) (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (13030, 'International Journal on Food System Dynamics', 18696945, 0.34, 'Q2', 8, 34, 1561, 115, 78, '5', '2016-2020', 'Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q2); Environmental Science (miscellaneous) (Q3); Food Science'), (13031, 'Iranian Journal of Kidney Diseases', 17358582, 0.34, 'Q3', 31, 78, 2059, 196, 180, '15', '2007-2020', 'Nephrology (Q3)'), (13032, 'IUCN/SCC Otter Specialist Group Bulletin', 10239030, 0.34, 'Q3', 6, 15, 418, 32, 39, '78', '2013-2020', 'Animal Science and Zoology (Q3)'), (13033, 'Journal of Ethnic and Cultural Studies', 21491291, 0.34, 'Q1', 7, 35, 1943, 52, 59, '2', '2018-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q2)'), (13034, 'Journal of medical ultrasonics (2001)', 16132254, 0.34, 'Q3', 20, 91, 2551, 266, 202, '6', '2003-2020', 'Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (13035, 'Journal of Veterinary Medicine Series C: Anat', 14390264, 0.34, 'Q2', 35, 101, 4164, 246, 222, '3', '1972-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (13036, 'Multicultural Education Review', 23770031, 0.34, 'Q2', 12, 21, 971, 62, 55, '3', '2009-2013, 2015-2020', 'Anthropology (Q2); Education (Q3)'), (13037, 'Oil Shale', 208189, 0.34, 'Q3', 28, 20, 648, 113, 85, '71', '1996-2004, 2006-2020', 'Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (13038, 'Open Mathematics', 23915455, 0.34, 'Q3', 29, 154, 3811, 435, 394, '5', '2015-2020', 'Mathematics (miscellaneous) (Q3)'), (13039, 'Pacific Economic Review', 1361374, 0.34, 'Q2', 33, 42, 1663, 108, 106, '3', '1996-2020', 'Geography, Planning and Development (Q2); Aerospace Engineering (Q3); Development (Q3); Economics and Econometrics (Q3)'), (13040, 'Powder Diffraction', 8857156, 0.34, 'Q3', 43, 60, 1160, 228, 204, '2', '1986-2020', 'Condensed Matter Physics (Q3); Instrumentation (Q3); Materials Science (miscellaneous) (Q3); Radiation (Q3)'), (13041, 'Student Success', 22050795, 0.34, 'Q3', 4, 20, 610, 43, 38, '11', '2019-2020', 'Education (Q3)'), (13042, 'Theoria (Stockholm)', 405825, 0.34, 'Q1', 16, 59, 1938, 49, 58, '2', '1935-2020', 'Philosophy (Q1)'), (13043, 'Austral journal of veterinary sciences', 7198000, 0.339, 'Q2', 22, 19, 503, 75, 78, '45', '2017-2020', 'Veterinary (miscellaneous) (Q2)'), (13044, 'BJ Psych Advances', 20564686, 0.339, 'Q3', 10, 59, 1597, 135, 150, '3', '2015-2020', 'Psychiatry and Mental Health (Q3)'), (13045, 'Inorganic Materials', 16083172, 0.339, 'Q2', 39, 224, 4906, 689, 704, '10', '1996-2020', 'Metals and Alloys (Q2); Chemical Engineering (miscellaneous) (Q3); Inorganic Chemistry (Q3); Materials Chemistry (Q3)'), (13046, 'International Journal for the Advancement of ', 1650653, 0.339, 'Q3', 25, 31, 1499, 116, 104, '2', '1978-1996, 1998-2020', 'Applied Psychology (Q3); Education (Q3); Psychology (miscellaneous) (Q3)'), (13047, 'International Journal of Marine and Coastal L', 9273522, 0.339, 'Q2', 27, 33, 1982, 78, 91, '16', '1986-2020', 'Geography, Planning and Development (Q2); Law (Q2); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Oceanography (Q3)'), (13048, 'Japan and the World Economy', 9221425, 0.339, 'Q2', 36, 26, 848, 99, 86, '16', '1988-2020', 'Political Science and International Relations (Q2); Economics and Econometrics (Q3); Finance (Q3)'), (13049, 'Journal of Applied Philosophy', 2643758, 0.339, 'Q1', 30, 82, 71, 182, 166, '2', '1984-2020', 'Philosophy (Q1)'), (13050, 'Journal of Bioinformatics and Computational B', 2197200, 0.339, 'Q3', 43, 54, 1936, 208, 168, '37', '2003-2020', 'Computer Science Applications (Q3); Biochemistry (Q4); Molecular Biology (Q4)'), (13051, 'Journal of Gemmology', 13554565, 0.339, 'Q3', 6, 37, 538, 28, 110, '3', '1981-1988, 2015-2019', 'Geochemistry and Petrology (Q3)'), (13052, 'Journal of Macromolecular Science - Pure and ', 10601325, 0.339, 'Q3', 50, 128, 5327, 581, 334, '2', '1992-2020', 'Ceramics and Composites (Q3); Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (13053, 'Kasetsart Journal - Social Sciences', 1258370, 0.339, 'Q2', 15, 104, 2491, 441, 244, '40', '2006-2020', 'Social Sciences (miscellaneous) (Q2)'), (13054, 'London Review of International Law', 20506333, 0.339, 'Q2', 11, 18, 1126, 27, 41, '3', '2013-2019', 'Law (Q2)'), (13055, 'Materialpruefung/Materials Testing', 255300, 0.339, 'Q3', 24, 169, 5178, 743, 485, '5', '1968-1989, 1994-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (13056, 'Neurology India', 19984022, 0.339, 'Q3', 49, 429, 8698, 848, 550, '4', '1965-1979, 1981-1984, 1986-1988, 1994-2020', 'Neurology (Q3); Neurology (clinical) (Q3)'), (13057, 'Revista Eureka', 1697011, 0.339, 'Q3', 9, 16, 789, 90, 121, '12', '2014-2020', 'Education (Q3)'), (13058, 'Social Work in Public Health', 1937190, 0.339, 'Q3', 28, 58, 2766, 158, 140, '2', '2007-2020', 'Health Policy (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3); Social Work (Q4)'), (13059, 'Thermal Science', 3549836, 0.339, 'Q3', 43, 391, 9557, 2024, 1375, '55', '2007-2020', 'Renewable Energy, Sustainability and the Environment (Q3)'), (13060, 'Toxicologie Analytique et Clinique', 23520078, 0.339, 'Q4', 8, 47, 1413, 84, 114, '8', '2014-2020', 'Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)'), (13061, 'Ugol', 24128333, 0.339, 'Q3', 11, 141, 1459, 288, 507, '10', '1970, 1974, 1976-1988, 2001-2005, 2017-2020', 'Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geochemistry and Petrology (Q3); Geotechnical Engineering and Engineering Geology (Q3); Mechanical Engineering (Q3)'), (13062, 'Water Quality Research Journal of Canada', 12013080, 0.339, 'Q3', 44, 31, 1453, 97, 69, '9', '1995-2020', 'Water Science and Technology (Q3)'), (13063, 'Annales des Telecommunications/Annals of Tele', 34347, 0.338, 'Q2', 39, 81, 2952, 408, 176, '8', '1946-2020', 'Electrical and Electronic Engineering (Q2)'), (13064, 'Applied Environmental Education and Communica', 15330389, 0.338, 'Q2', 19, 43, 1507, 93, 80, '2', '2002-2020', 'Communication (Q2); Education (Q3); Environmental Science (miscellaneous) (Q3)'), (13065, 'Bulletin of the South Ural State University, ', 20710216, 0.338, 'Q3', 11, 39, 636, 140, 161, '10', '2014-2020', 'Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Modeling and Simulation (Q3); Software (Q3)'), (13066, 'Canadian Journal of Plant Science', 84220, 0.338, 'Q2', 59, 54, 1982, 339, 373, '9', '1973-1975, 1977-1980, 1983-1985, 1989, 1992-2020', 'Horticulture (Q2); Agronomy and Crop Science (Q3); Plant Science (Q3)'), (13067, 'Case Reports in Dermatology', 16626567, 0.338, 'Q3', 18, 45, 571, 188, 152, '19', '2010-2020', 'Dermatology (Q3)'), (13068, 'Environmental History', 19308892, 0.338, 'Q1', 36, 26, 1149, 45, 83, '3', '1996-2020', 'History (Q1); Environmental Science (miscellaneous) (Q3)'), (13069, 'Environment and Urbanization ASIA', 9763546, 0.338, 'Q2', 14, 20, 777, 81, 50, '2', '2010-2020', 'Urban Studies (Q2)'), (13070, 'Geographical Review', 167428, 0.338, 'Q2', 44, 65, 3605, 160, 95, '2', '1969, 1973, 1976, 1979-2020', 'Geography, Planning and Development (Q2); Earth-Surface Processes (Q3)'), (13071, 'Interventions', 1369801, 0.338, 'Q1', 14, 104, 3892, 111, 201, '2', '2010-2020', 'History (Q1); Anthropology (Q2)'), (13072, 'Journal of dance medicine &amp; science : off', 1089313, 0.338, 'Q3', 22, 30, 0, 86, 81, '2', '2008-2020', 'Medicine (miscellaneous) (Q3)'), (13073, 'Journal of Mental Health Policy and Economics', 10914358, 0.338, 'Q3', 31, 16, 403, 37, 41, '7', '2002-2020', 'Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13074, 'Journal of Railway Engineering Society', 10062106, 0.338, 'Q2', 9, 217, 1697, 333, 661, '1', '2013-2020', 'Engineering (miscellaneous) (Q2)'), (13075, 'Obere Extremitat', 18626599, 0.338, 'Q3', 10, 48, 1208, 74, 96, '5', '2007-2020', 'Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (13076, 'Psicoperspectivas', 7186924, 0.338, 'Q2', 15, 27, 1011, 84, 119, '45', '2006-2020', 'Social Sciences (miscellaneous) (Q2); Psychology (miscellaneous) (Q3)'), (13077, 'Review of Regional Studies', 48749, 0.338, 'Q2', 20, 20, 816, 49, 53, '2', '1977-1982, 1984, 1987-2020', 'Geography, Planning and Development (Q2); Earth-Surface Processes (Q3)'), (13078, 'Revista Paulista de Pediatria', 19840462, 0.338, 'Q3', 21, 156, 3672, 250, 204, '14', '2010-2021', 'Pediatrics, Perinatology and Child Health (Q3)'), (13079, 'SHILAP Revista de lepidopterologia', 3005267, 0.338, 'Q3', 12, 72, 1538, 71, 155, '12', '2008-2013, 2015-2020', 'Insect Science (Q3)'), (13080, 'SPIN', 20103247, 0.338, 'Q2', 20, 37, 1585, 118, 94, '37', '2011-2020', 'Electrical and Electronic Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (13081, 'Structural Engineering International: Journal', 10168664, 0.338, 'Q3', 34, 92, 1831, 196, 188, '19', '1996-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (13082, 'Technical Physics Letters', 10906533, 0.338, 'Q3', 34, 298, 3907, 816, 1012, '10', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13083, 'Aeronautical Journal', 19240, 0.337, 'Q3', 43, 88, 2869, 321, 260, '3', '1969-1992, 1994-2020', 'Aerospace Engineering (Q3)'), (13084, 'African Journal of Research in Mathematics, S', 18117295, 0.337, 'Q2', 15, 36, 1119, 74, 94, '3', '1997-2020', 'Engineering (miscellaneous) (Q2); Computer Science Applications (Q3); Education (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (13085, 'AI Communications', 9217126, 0.337, 'Q3', 40, 13, 687, 177, 77, '16', '1987-2020', 'Artificial Intelligence (Q3)'), (13086, 'American Journal of Dance Therapy', 15733262, 0.337, 'Q3', 18, 20, 866, 36, 50, '2', '1977-1987, 1989-2020', 'Psychiatry and Mental Health (Q3)'), (13087, 'Eurasian Journal of Medicine', 13088734, 0.337, 'Q3', 13, 64, 1829, 219, 154, '18', '2012, 2016-2020', 'Medicine (miscellaneous) (Q3)'), (13088, 'Health Systems', 20476973, 0.337, 'Q3', 13, 36, 2050, 90, 57, '2', '2012-2020', 'Computer Science Applications (Q3); Health Informatics (Q3); Health Information Management (Q3); Health Policy (Q3)'), (13089, 'Historical Journal', 14695103, 0.337, 'Q1', 39, 88, 6234, 86, 127, '3', '1958-2020', 'History (Q1)'), (13090, 'Indian Journal of Physics', 9731458, 0.337, 'Q3', 31, 395, 15083, 881, 548, '4', '2005-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13091, 'International Journal of Clinical and Experim', 207144, 0.337, 'Q2', 47, 37, 1593, 89, 78, '3', '1959-2020', 'Complementary and Manual Therapy (Q2); Clinical Psychology (Q3)'), (13092, 'International Journal of Evidence and Proof', 13657127, 0.337, 'Q2', 5, 25, 1176, 68, 52, '3', '2018-2020', 'Law (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3)'), (13093, 'International Journal of Theoretical Physics', 15729575, 0.337, 'Q3', 65, 363, 12534, 1866, 1093, '2', '1968-2020', 'Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (13094, 'Journal of Elastomers and Plastics', 952443, 0.337, 'Q3', 28, 61, 2255, 201, 127, '3', '1969-2020', 'Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (13095, 'Journal of Medical Signals and Sensors', 22287477, 0.337, 'Q2', 21, 32, 1086, 180, 96, '4', '2011-2020', 'Computer Science (miscellaneous) (Q2); Biomedical Engineering (Q3); Health Informatics (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (13096, 'Journal of the Brazilian Chemical Society', 1035053, 0.337, 'Q3', 70, 269, 11743, 1413, 816, '14', '1990, 1996-2020', 'Chemistry (miscellaneous) (Q3)'), (13097, 'Minnesota Law Review', 265535, 0.337, 'Q2', 38, 29, 4923, 104, 125, '2', '1976-1977, 1979, 1991, 1994, 1996-2020', 'Law (Q2)'), (13098, 'Multidimensional Systems and Signal Processin', 15730824, 0.337, 'Q3', 39, 76, 2766, 619, 285, '16', '1990-2020', 'Applied Mathematics (Q3); Artificial Intelligence (Q3); Computer Science Applications (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Signal Processing (Q3); Software (Q3)'), (13099, 'Music Theory Online', 10673040, 0.337, 'Q1', 4, 43, 2159, 33, 104, '2', '2017-2019', 'Music (Q1)'), (13100, 'Narrative Inquiry', 13876740, 0.337, 'Q1', 43, 20, 976, 56, 56, '16', '1998-2020', 'History (Q1); Literature and Literary Theory (Q1); Social Sciences (miscellaneous) (Q2); Education (Q3)'), (13101, 'PNA', 18873987, 0.337, 'Q3', 3, 12, 420, 15, 32, '12', '2017-2020', 'Education (Q3); Mathematics (miscellaneous) (Q3)'), (13102, 'Polis (Russian Federation)', 10269487, 0.337, 'Q2', 7, 52, 1420, 82, 222, '10', '2015-2020', 'Sociology and Political Science (Q2)'), (13103, 'Presidential Studies Quarterly', 3604918, 0.337, 'Q1', 5, 47, 3040, 61, 81, '2', '1983, 1985, 1988, 2018-2020', 'History (Q1); Sociology and Political Science (Q2); Public Administration (Q3)'), (13104, 'Proceedings of the Institution of Civil Engin', 17517710, 0.337, 'Q3', 23, 40, 1029, 103, 102, '3', '1992-2020', 'Civil and Structural Engineering (Q3); Transportation (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (13105, 'Proteomics Insights', 11786418, 0.337, 'Q4', 7, 0, 0, 9, 4, '41', '2008-2013, 2016-2017', 'Biochemistry (Q4); Molecular Biology (Q4)'), (13106, 'Revista Espanola de Anestesiologia y Reanimac', 23403284, 0.337, 'Q3', 22, 120, 2198, 282, 286, '12', '1963-1965, 1967-2020', 'Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)'), (13107, 'Spanish Journal of Agricultural Research', 1695971, 0.337, 'Q3', 36, 95, 4541, 419, 267, '12', '2006-2020', 'Agronomy and Crop Science (Q3)'), (13108, 'Tourism', 18491545, 0.337, 'Q2', 22, 29, 1759, 138, 92, '58', '2002-2020', 'Geography, Planning and Development (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (13109, 'Acta Mathematica Universitatis Comenianae', 13360310, 0.336, 'Q3', 16, 15, 278, 173, 200, '53', '2002-2019', 'Mathematics (miscellaneous) (Q3)'), (13110, 'Applied Artificial Intelligence', 10876545, 0.336, 'Q3', 58, 57, 2059, 373, 157, '3', '1987-2020', 'Artificial Intelligence (Q3)'), (13111, 'Child and Youth Services', 15452298, 0.336, 'Q2', 15, 63, 1567, 72, 49, '2', '1977-1983, 1985-1991, 1993-1994, 1997-1999, 2001, 2004-2020', 'Social Sciences (miscellaneous) (Q2); Health (social science) (Q3)'), (13112, 'Child Care in Practice', 13575279, 0.336, 'Q2', 21, 65, 3297, 113, 103, '3', '1994-2020', 'Community and Home Care (Q2); Pediatrics (Q2); Developmental and Educational Psychology (Q3); Education (Q3); Health (social science) (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (13113, 'Chinese Optics', 20951531, 0.336, 'Q3', 23, 128, 3677, 432, 309, '1', '2010-2020', 'Atomic and Molecular Physics, and Optics (Q3)'), (13114, 'Cinta de Moebio', 717554, 0.336, 'Q1', 3, 24, 377, 31, 96, '45', '2017-2019', 'Philosophy (Q1); Social Sciences (miscellaneous) (Q2)'), (13115, 'Digital Policy, Regulation and Governance', 23985038, 0.336, 'Q2', 29, 27, 1602, 202, 99, '3', '2017-2020', 'Information Systems and Management (Q2); Computer Networks and Communications (Q3); Information Systems (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)'), (13116, 'Geodynamics and Tectonophysics', 2078502, 0.336, 'Q3', 8, 38, 1566, 140, 225, '10', '2015-2020', 'Earth-Surface Processes (Q3); Geophysics (Q3)'), (13117, 'Health Psychology and Behavioral Medicine', 21642850, 0.336, 'Q3', 4, 34, 1975, 49, 34, '3', '2014-2015, 2018-2020', 'Health (social science) (Q3); Psychology (miscellaneous) (Q3); Behavioral Neuroscience (Q4)'), (13118, 'International Journal for Vitamin and Nutriti', 16642821, 0.336, 'Q3', 57, 129, 6243, 144, 118, '19', '1971-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)'), (13119, 'International Journal of Prognostics and Heal', 21532648, 0.336, 'Q2', 21, 16, 654, 118, 61, '2', '2010-2020', 'Computer Science (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2); Civil and Structural Engineering (Q3); Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3)'), (13120, 'Journal of Forest Research', 13416979, 0.336, 'Q2', 40, 62, 2450, 205, 156, '3', '1996-1997, 1999-2020', 'Forestry (Q2)'), (13121, 'Journal of Integrative Neuroscience', 1757448, 0.336, 'Q3', 33, 73, 4035, 244, 168, '1', '2002-2020', 'Medicine (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q4)'), (13122, 'Matematicki Vesnik', 255165, 0.336, 'Q3', 18, 32, 504, 79, 93, '55', '1999-2020', 'Mathematics (miscellaneous) (Q3)'), (13123, 'Medicina Intensiva', 15786749, 0.336, 'Q3', 28, 237, 4303, 416, 346, '12', '1988-2020', 'Critical Care and Intensive Care Medicine (Q3)'), (13124, 'NISPAcee Journal of Public Administration and', 13379038, 0.336, 'Q3', 9, 24, 1057, 61, 60, '5', '2009-2020', 'Public Administration (Q3)'), (13125, 'Pediatria Medica e Chirurgica', 3915387, 0.336, 'Q3', 16, 7, 205, 76, 47, '7', '1979-2019', 'Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)'), (13126, 'Perspectives on Science', 10636145, 0.336, 'Q2', 24, 23, 1707, 72, 88, '2', '1999-2020', 'History and Philosophy of Science (Q2); Multidisciplinary (Q2)'), (13127, 'Proceedings of Institution of Civil Engineers', 17476518, 0.336, 'Q3', 21, 32, 1021, 80, 85, '3', '2006-2020', 'Civil and Structural Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (13128, 'Producao', 19805411, 0.336, 'Q2', 17, 36, 1905, 180, 110, '14', '2007-2020', 'Industrial and Manufacturing Engineering (Q2)'), (13129, 'Revista de Educacion a Distancia', 15787680, 0.336, 'Q3', 5, 24, 1302, 99, 58, '12', '2018-2020', 'Education (Q3)'), (13130, 'Turkish Journal of Botany', 1300008, 0.336, 'Q3', 37, 54, 2920, 258, 193, '18', '1990, 1992-2020', 'Plant Science (Q3)'), (13131, 'Amfiteatru Economic', 15829146, 0.335, 'Q2', 20, 72, 2929, 302, 182, '43', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (13132, 'Atlantic Journal of Communication', 15456889, 0.335, 'Q2', 14, 45, 2631, 70, 72, '3', '2010-2020', 'Communication (Q2)'), (13133, 'Built Environment Project and Asset Managemen', 2044124, 0.335, 'Q3', 21, 49, 2543, 269, 141, '3', '2011-2020', 'Civil and Structural Engineering (Q3); Management Science and Operations Research (Q3)'), (13134, 'Cluster Computing', 13867857, 0.335, 'Q3', 50, 260, 11719, 3843, 1918, '16', '2005-2020', 'Computer Networks and Communications (Q3); Software (Q3)'), (13135, 'Contemporary Islam', 18720218, 0.335, 'Q1', 19, 17, 1022, 36, 52, '16', '2007-2020', 'Cultural Studies (Q1); Religious Studies (Q1)'), (13136, 'Forestry Chronicle', 157546, 0.335, 'Q2', 49, 9, 416, 86, 80, '9', '1988-2020', 'Forestry (Q2)'), (13137, 'International Information and Library Review', 10959297, 0.335, 'Q2', 26, 55, 1686, 75, 107, '3', '1992-2020', 'Library and Information Sciences (Q2); E-learning (Q3)'), (13138, 'International Journal of RF and Microwave Com', 1099047, 0.335, 'Q2', 39, 458, 12629, 1482, 790, '2', '1996-2020', 'Computer Graphics and Computer-Aided Design (Q2); Electrical and Electronic Engineering (Q2); Computer Science Applications (Q3)'), (13139, 'Izvestiya - Atmospheric and Oceanic Physics', 14338, 0.335, 'Q3', 28, 149, 5938, 386, 463, '10', '1972-1977, 1979-1987, 1992-2020', 'Oceanography (Q3); Atmospheric Science (Q4)'), (13140, 'Journal of Entomological and Acarological Res', 2038324, 0.335, 'Q3', 6, 8, 216, 43, 44, '7', '2016-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (13141, 'Journal of Plant Protection Research', 14274345, 0.335, 'Q3', 24, 48, 1876, 202, 170, '17', '2008-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3)'), (13142, 'Journal of Social Service Research', 1488376, 0.335, 'Q2', 37, 95, 4574, 225, 169, '2', '1978-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Work (Q4)'), (13143, 'Lindbergia', 1050761, 0.335, 'Q3', 18, 4, 199, 23, 16, '16', '1979, 1984, 1993-2008, 2010-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (13144, 'New Zealand Geographer', 17457939, 0.335, 'Q2', 25, 26, 819, 55, 47, '2', '1945-1967, 1969-2020', 'Geography, Planning and Development (Q2); Earth and Planetary Sciences (miscellaneous) (Q3)'), (13145, 'Obogashchenie Rud', 2023776, 0.335, 'Q2', 10, 51, 990, 139, 177, '10', '2013-2020', 'Metals and Alloys (Q2); Materials Chemistry (Q3)'), (13146, 'Qualitative Report', 10520147, 0.335, 'Q1', 35, 172, 8642, 593, 565, '2', '2009-2020', 'Cultural Studies (Q1); Education (Q3); Social Psychology (Q3)'), (13147, 'Revista Chilena de Historia Natural', 716078, 0.335, 'Q2', 39, 9, 332, 42, 22, '45', '2002-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)'), (13148, 'Revista Internacional de Medicina y Ciencias ', 15770354, 0.335, 'Q3', 18, 47, 1905, 191, 143, '12', '2008-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (13149, 'Acta Herpetologica', 18279635, 0.334, 'Q3', 15, 19, 772, 61, 70, '7', '2009-2020', 'Animal Science and Zoology (Q3)'), (13150, 'Acta Scientiarum - Animal Sciences', 18062636, 0.334, 'Q3', 17, 78, 2314, 171, 180, '14', '2009-2020', 'Animal Science and Zoology (Q3); Food Science (Q3)'), (13151, 'Anthropologischer Anzeiger', 35548, 0.334, 'Q2', 22, 38, 1943, 95, 120, '5', '1971-2020', 'Anthropology (Q2); Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Medicine (miscellaneous) (Q3)'), (13152, 'Arctic Review on Law and Politics', 23874562, 0.334, 'Q2', 3, 15, 1333, 16, 7, '33', '2019-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (13153, 'Chemical and Biochemical Engineering Quarterl', 18465153, 0.334, 'Q3', 40, 24, 1085, 216, 136, '58', '1987, 1996-2020', 'Chemistry (miscellaneous) (Q3); Process Chemistry and Technology (Q3); Biochemistry (Q4)'), (13154, 'Chinese Physics B', 16741056, 0.334, 'Q3', 54, 941, 40308, 4156, 2833, '3', '2008-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13155, 'Complutum', 11316993, 0.334, 'Q1', 7, 8, 564, 21, 61, '12', '2011-2019', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (13156, 'Current Drug Research Reviews', 25899783, 0.334, 'Q3', 44, 17, 1299, 48, 27, '16', '2019-2020', 'Psychiatry and Mental Health (Q3)'), (13157, 'Current Drug Safety', 15748863, 0.334, 'Q3', 34, 36, 1064, 150, 118, '52', '2006-2020', 'Pharmacology (Q3); Pharmacology (medical) (Q3); Toxicology (Q4)'), (13158, 'Dental Research Journal', 20080255, 0.334, 'Q3', 17, 61, 1831, 262, 201, '15', '2011-2020', 'Dentistry (miscellaneous) (Q3)'), (13159, 'Entrepreneurial Business and Economics Review', 2353883, 0.334, 'Q2', 11, 46, 2572, 236, 142, '17', '2015-2020', 'Business and International Management (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Strategy and Management (Q3)'), (13160, 'EPJ Applied Metamaterials', 22722394, 0.334, 'Q3', 12, 12, 434, 75, 43, '8', '2014-2019', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (13161, 'Formal Methods in System Design', 15728102, 0.334, 'Q3', 54, 12, 566, 203, 75, '16', '1992-2020', 'Hardware and Architecture (Q3); Software (Q3); Theoretical Computer Science (Q3)'), (13162, 'Heat Transfer Research', 10642285, 0.334, 'Q3', 23, 95, 2929, 519, 306, '2', '1992-1993, 1995-2020', 'Condensed Matter Physics (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3)'), (13163, 'International Journal of Productivity and Qua', 17466474, 0.334, 'Q2', 26, 84, 4255, 364, 232, '3', '2006-2014, 2016, 2019-2020', 'Business, Management and Accounting (miscellaneous) (Q2)'), (13164, 'International Negotiation', 1382340, 0.334, 'Q2', 19, 42, 2258, 31, 63, '16', '2007-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13165, 'Journal of Bone Metabolism', 22876375, 0.334, 'Q3', 5, 31, 1413, 54, 33, '13', '2018-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Endocrinology (Q4)'), (13166, 'Journal of Healthcare Management', 19447396, 0.334, 'Q3', 48, 71, 595, 142, 154, '2', '1998-2020', 'Health Policy (Q3); Leadership and Management (Q3); Medicine (miscellaneous) (Q3); Strategy and Management (Q3)'), (13167, 'Journal of Historical Linguistics', 22102116, 0.334, 'Q1', 7, 15, 801, 22, 37, '16', '2011-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (13168, 'Journal of World Intellectual Property', 14222213, 0.334, 'Q2', 8, 36, 2576, 62, 58, '3', '2002-2004, 2013-2020', 'Law (Q2)'), (13169, 'Korea Australia Rheology Journal', 1226119, 0.334, 'Q3', 25, 30, 984, 112, 87, '13', '2003-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)'), (13170, 'Law and Development Review', 19433867, 0.334, 'Q2', 7, 18, 1184, 32, 78, '5', '2012-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2); Development (Q3)'), (13171, 'Logos and Episteme', 20693052, 0.334, 'Q1', 5, 31, 670, 22, 83, '43', '2016-2020', 'Philosophy (Q1)'), (13172, 'Process Integration and Optimization for Sust', 25094246, 0.334, 'Q2', 9, 37, 1596, 133, 89, '37', '2017-2020', 'Geography, Planning and Development (Q2); Chemical Engineering (miscellaneous) (Q3); Control and Systems Engineering (Q3); Management, Monitoring, Policy and Law (Q3); Pollution (Q3); Renewable Energy'), (13173, 'South African Journal of Plant and Soil', 2571862, 0.334, 'Q3', 19, 49, 1912, 152, 149, '3', '1984-2020', 'Ecology (Q3); Plant Science (Q3); Soil Science (Q3)'), (13174, 'Annales, Series Historia Naturalis', 1408533, 0.333, 'Q3', 7, 24, 781, 26, 45, '60', '2013-2020', 'Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (13175, 'Biomedical Physics and Engineering Express', 20571976, 0.333, 'Q3', 16, 209, 8712, 732, 522, '3', '2015-2020', 'Bioengineering (Q3); Biomedical Engineering (Q3); Biophysics (Q3); Computer Science Applications (Q3); Health Informatics (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Biomaterials (Q4); Physiol'), (13176, 'Chinese Journal of Chemical Physics', 23272244, 0.333, 'Q3', 24, 106, 4688, 334, 329, '2', '2000-2020', 'Physical and Theoretical Chemistry (Q3)'), (13177, 'Communication Reports', 8934215, 0.333, 'Q1', 21, 13, 439, 48, 43, '3', '1988-1995, 2005-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Communication (Q2); Education (Q3)'), (13178, 'Contemporary Jewry', 1471694, 0.333, 'Q1', 13, 30, 1050, 43, 75, '16', '1976-1978, 1980, 1982-1983, 1986-2003, 2005-2020', 'Cultural Studies (Q1); History (Q1); Religious Studies (Q1); Anthropology (Q2)'), (13179, 'Current Tropical Medicine Reports', 21963045, 0.333, 'Q3', 18, 21, 1245, 102, 98, '19', '2014-2020', 'Infectious Diseases (Q3); Immunology and Allergy (Q4)'), (13180, 'Energetika. Proceedings of CIS Higher Educati', 24140341, 0.333, 'Q3', 6, 43, 734, 143, 137, '75', '2015, 2017-2020', 'Energy Engineering and Power Technology (Q3); Nuclear Energy and Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (13181, 'European Physical Journal H', 21026467, 0.333, 'Q3', 22, 10, 825, 55, 48, '5', '2010-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13182, 'Floresta e Ambiente', 21798087, 0.333, 'Q2', 12, 130, 4467, 241, 320, '14', '2012-2021', 'Forestry (Q2)'), (13183, 'Folia Morphologica', 155659, 0.333, 'Q3', 30, 110, 3359, 341, 338, '17', '1952-1955, 1961, 1964-2020', 'Anatomy (Q3); Histology (Q3)'), (13184, 'Fordham Law Review', 15704, 0.333, 'Q2', 34, 66, 5582, 147, 240, '2', '1973, 1975, 1978, 1980, 1983, 1994-2019', 'Law (Q2)'), (13185, 'Indian Journal of Urology', 9701591, 0.333, 'Q3', 30, 87, 1427, 183, 171, '4', '1984-1999, 2002-2003, 2006-2020', 'Urology (Q3)'), (13186, 'International Journal of Uncertainty, Fuzzine', 2184885, 0.333, 'Q3', 59, 65, 2167, 275, 174, '37', '1996-2020', 'Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Software (Q3)'), (13187, 'Journal of Computer and Systems Sciences Inte', 10642307, 0.333, 'Q3', 21, 76, 1695, 258, 247, '10', '1993-2020', 'Applied Mathematics (Q3); Computer Networks and Communications (Q3); Computer Vision and Pattern Recognition (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Software (Q3); Theore'), (13188, 'Journal of Crop Science and Biotechnology', 20058276, 0.333, 'Q3', 14, 56, 2512, 167, 140, '19', '2009-2010, 2012, 2014-2020', 'Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3)'), (13189, 'Journal of the National Medical Association', 279684, 0.333, 'Q3', 71, 134, 3215, 370, 211, '2', '1946-2020', 'Medicine (miscellaneous) (Q3)'), (13190, 'Nordic Journal of Botany', 107055, 0.333, 'Q3', 33, 99, 3448, 299, 348, '2', '1981-2004, 2007-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (13191, 'Ochsner Journal', 15245012, 0.333, 'Q3', 35, 91, 1983, 328, 199, '2', '2001-2003, 2006-2020', 'Medicine (miscellaneous) (Q3)'), (13192, 'Patterns of Prejudice', 14617331, 0.333, 'Q1', 35, 21, 0, 103, 76, '3', '1967-2020', 'Cultural Studies (Q1); History (Q1)'), (13193, 'Phyllomedusa', 15191397, 0.333, 'Q3', 21, 21, 685, 63, 89, '14', '2005-2019', 'Animal Science and Zoology (Q3)'), (13194, 'Plasma Physics Reports', 15626938, 0.333, 'Q3', 47, 127, 4088, 420, 388, '10', '1996-2020', 'Condensed Matter Physics (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (13195, 'Practice Periodical on Structural Design and ', 10840680, 0.333, 'Q2', 26, 68, 2021, 187, 146, '2', '1996-2020', 'Arts and Humanities (miscellaneous) (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (13196, 'Proceedings of Institution of Civil Engineers', 17514231, 0.333, 'Q2', 21, 19, 658, 55, 48, '3', '2008-2020', 'Energy (miscellaneous) (Q2)'), (13197, 'SAE International Journal of Alternative Powe', 21674191, 0.333, 'Q2', 18, 0, 0, 95, 69, '2', '2012-2019', 'Automotive Engineering (Q2)'), (13198, 'Transactions of the Philological Society', 791636, 0.333, 'Q1', 26, 21, 1584, 32, 61, '3', '1842-1860, 1862, 1864-1867, 1869, 1871, 1874, 1876, 1879, 1881, 1884, 1887, 1890-1893, 1895-1897, 18', 'Language and Linguistics (Q1); Linguistics and Language (Q1)'), (13199, 'Bollettino di Geofisica Teorica ed Applicata', 66729, 0.332, 'Q3', 27, 36, 1801, 100, 116, '7', '1979-1995, 1997-2020', 'Geophysics (Q3); Oceanography (Q3)'), (13200, 'Brittonia', 1938436, 0.332, 'Q3', 27, 46, 1133, 117, 146, '2', '1931-1938, 1940-1952, 1954-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (13201, 'Cell Communication and Adhesion', 15419061, 0.332, 'Q3', 48, 0, 0, 6, 4, '3', '1993-2015, 2017-2018', 'Medicine (miscellaneous) (Q3); Cell Biology (Q4); Clinical Biochemistry (Q4)'), (13202, 'Clinical Practice in Pediatric Psychology', 21694826, 0.332, 'Q3', 15, 34, 936, 132, 108, '2', '2013-2020', 'Applied Psychology (Q3); Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (13203, 'Dermatology Online Journal', 10872108, 0.332, 'Q3', 42, 245, 3019, 509, 512, '2', '1996-2020', 'Dermatology (Q3); Medicine (miscellaneous) (Q3)'), (13204, 'Glasnik Matematicki', 17095, 0.332, 'Q3', 17, 24, 428, 59, 74, '58', '2006-2020', 'Mathematics (miscellaneous) (Q3)'), (13205, 'Iranian Journal of Language Teaching Research', 23221291, 0.332, 'Q1', 10, 27, 1129, 48, 48, '15', '2013-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q1); Education (Q3)'), (13206, 'Izvestiya Instituta Matematiki i Informatiki ', 22263594, 0.332, 'Q3', 3, 20, 426, 19, 21, '10', '2019', 'Computational Theory and Mathematics (Q3); Mathematics (miscellaneous) (Q3)'), (13207, 'Journal of Air Transportation', 23809450, 0.332, 'Q2', 7, 22, 625, 60, 44, '2', '2016-2020', 'Safety Research (Q2); Aerospace Engineering (Q3); Energy (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Management of Technology and Innovation (Q3); Transportation (Q3)'), (13208, 'Journal of Computational Electronics', 15698025, 0.332, 'Q2', 36, 160, 5851, 893, 460, '16', '2002-2020', 'Electrical and Electronic Engineering (Q2); Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3); Modeling and Simulation (Q3)'), (13209, 'Journal of Creativity in Mental Health', 15401391, 0.332, 'Q3', 18, 102, 4089, 150, 121, '2', '2006-2014, 2017-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (13210, 'Journal of Disaster Research', 18812473, 0.332, 'Q2', 18, 94, 2551, 299, 335, '6', '2011-2020', 'Engineering (miscellaneous) (Q2); Safety, Risk, Reliability and Quality (Q2)'), (13211, 'Journal of Integrated Care', 14769018, 0.332, 'Q2', 18, 53, 1909, 109, 97, '3', '1996-2020', 'Sociology and Political Science (Q2); Health (social science) (Q3); Public Administration (Q3)'), (13212, 'Journal of Oceanology and Limnology', 20965508, 0.332, 'Q3', 30, 204, 10000, 667, 531, '1', '2018-2020', 'Oceanography (Q3); Water Science and Technology (Q3)'), (13213, 'Journal of Tourism Analysis', 22540644, 0.332, 'Q2', 5, 11, 549, 35, 20, '3', '2018-2020', 'Anthropology (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2); Tourism, Leisure and Hospitality Management (Q3)'), (13214, 'Laboratory Medicine', 75027, 0.332, 'Q3', 28, 75, 1723, 244, 202, '3', '1973-1975, 1985-2020', 'Biochemistry (medical) (Q3); Clinical Biochemistry (Q4)'), (13215, 'Management and Production Engineering Review', 20821344, 0.332, 'Q2', 15, 44, 1558, 220, 133, '17', '2012-2013, 2015-2020', 'Business and International Management (Q2); Industrial and Manufacturing Engineering (Q2); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Organizational'), (13216, 'Neutrosophic Sets and Systems', 23316055, 0.332, 'Q3', 13, 185, 5928, 401, 86, '2', '2018-2020', 'Applied Mathematics (Q3); Logic (Q3)'), (13217, 'Notulae Botanicae Horti Agrobotanici Cluj-Nap', 255965, 0.332, 'Q3', 32, 169, 8181, 507, 357, '43', '2007, 2009-2020', 'Agronomy and Crop Science (Q3); Horticulture (Q3); Plant Science (Q3)'), (13218, 'Peace Economics, Peace Science and Public Pol', 15548597, 0.332, 'Q2', 16, 38, 1289, 49, 78, '5', '1994-1996, 1999-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3); Management, Monitoring, Policy and Law (Q3)'), (13219, 'Population and Societies', 1847783, 0.332, 'Q1', 10, 9, 60, 28, 44, '8', '1998-2003, 2009-2020', 'Cultural Studies (Q1); Demography (Q2); Health (social science) (Q3)'), (13220, 'Revista Arvore', 1006762, 0.332, 'Q2', 30, 31, 1045, 112, 142, '14', '2006-2020', 'Forestry (Q2)'), (13221, 'Sankhya B', 9768394, 0.332, 'Q3', 7, 42, 1399, 44, 75, '4', '2010-2020', 'Applied Mathematics (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (13222, 'Shuikexue Jinzhan/Advances in Water Science', 10016791, 0.332, 'Q3', 30, 93, 2869, 350, 288, '1', '1998-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (13223, 'Southern Medical Journal', 384348, 0.332, 'Q3', 75, 135, 2755, 350, 367, '2', '1908-2020', 'Medicine (miscellaneous) (Q3)'), (13224, 'Tsvetnye Metally', 3722929, 0.332, 'Q2', 12, 134, 2805, 276, 452, '10', '1970-1971, 1975-1988, 2001-2005, 2013-2020', 'Metals and Alloys (Q2); Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Surfaces, Coatings and Films (Q3)'), (13225, 'Young Exceptional Children', 10962506, 0.332, 'Q3', 17, 29, 722, 37, 48, '2', '1998-2020', 'Developmental and Educational Psychology (Q3); Education (Q3)'), (13226, 'Acta Physica Polonica B', 5874254, 0.331, 'Q3', 63, 204, 4924, 591, 601, '17', '1980, 1988, 1995-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13227, 'American Surgeon', 15559823, 0.331, 'Q3', 93, 407, 5400, 1011, 1514, '2', '1951-2020', 'Medicine (miscellaneous) (Q3); Surgery (Q3)'), (13228, 'Automation and Remote Control', 16083032, 0.331, 'Q2', 36, 155, 3739, 568, 510, '10', '1973, 1999-2020', 'Electrical and Electronic Engineering (Q2); Control and Systems Engineering (Q3)'), (13229, 'Cidades', 21823030, 0.331, 'Q2', 2, 21, 554, 11, 22, '26', '2019-2020', 'Urban Studies (Q2)'), (13230, 'Clinical Schizophrenia and Related Psychoses', 19351232, 0.331, 'Q3', 24, 17, 362, 50, 52, '2', '2007-2019', 'Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (13231, 'Der Unfallchirurg', 1433044, 0.331, 'Q3', 51, 183, 4085, 374, 367, '5', '1985-2020', 'Emergency Medicine (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (13232, 'Ekonomicheskaya Politika', 19945124, 0.331, 'Q2', 8, 38, 923, 82, 161, '10', '2013-2020', 'Sociology and Political Science (Q2); Economics and Econometrics (Q3); Finance (Q3)'), (13233, 'European Surgery - Acta Chirurgica Austriaca', 16824016, 0.331, 'Q3', 20, 60, 1705, 124, 130, '28', '1973-1975, 1997, 1999-2000, 2002-2020', 'Surgery (Q3)'), (13234, 'Information and Computer Security', 20564961, 0.331, 'Q2', 49, 35, 2265, 291, 115, '3', '2015-2020', 'Information Systems and Management (Q2); Computer Networks and Communications (Q3); Information Systems (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3); Softwar'), (13235, 'International Journal of Renewable Energy Dev', 22524940, 0.331, 'Q3', 12, 64, 2320, 151, 97, '21', '2012-2021', 'Energy Engineering and Power Technology (Q3); Environmental Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (13236, 'International Journal on Document Analysis an', 14332825, 0.331, 'Q3', 50, 19, 861, 226, 63, '5', '1998-2020', 'Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3); Software (Q3)'), (13237, 'Journal for Specialists in Group Work', 1933922, 0.331, 'Q3', 26, 25, 1163, 39, 52, '3', '1981-2020', 'Developmental and Educational Psychology (Q3); Social Psychology (Q3)'), (13238, 'Journal of Child and Adolescent Psychiatric N', 10736077, 0.331, 'Q3', 35, 34, 1331, 63, 58, '2', '1988-2020', 'Medicine (miscellaneous) (Q3); Pediatrics (Q3); Psychiatric Mental Health (Q3); Psychiatry and Mental Health (Q3)'), (13239, 'Journal of Intelligence Studies in Business', 2001015, 0.331, 'Q2', 11, 18, 850, 71, 45, '20', '2011-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Management Science and Operations Research (Q3)'), (13240, 'Journal of Intelligent and Fuzzy Systems', 18758967, 0.331, 'Q2', 57, 1134, 37642, 5305, 2884, '16', '1993-2020', 'Engineering (miscellaneous) (Q2); Artificial Intelligence (Q3); Statistics and Probability (Q3)'), (13241, 'Journal of Neurosciences in Rural Practice', 9763147, 0.331, 'Q3', 22, 148, 2548, 435, 384, '4', '2010-2020', 'Neurology (clinical) (Q3); Neuroscience (miscellaneous) (Q4)'), (13242, 'Journal of Opioid Management', 15517489, 0.331, 'Q3', 39, 54, 1423, 149, 140, '2', '2005-2020', 'Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)'), (13243, 'Mana: Estudos de Antropologia Social', 1049313, 0.331, 'Q2', 12, 37, 1279, 37, 82, '14', '2006-2020', 'Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)'), (13244, 'Mediterranean Archaeology and Archaeometry', 11089628, 0.331, 'Q1', 15, 39, 1779, 134, 206, '39', '2008-2020', 'Conservation (Q1); History (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (13245, 'Nomadic Peoples', 8227942, 0.331, 'Q2', 18, 17, 641, 34, 42, '2', '1982-1983, 1985, 1990-1994, 2005-2019', 'Demography (Q2)'), (13246, 'Pastoral Psychology', 15736679, 0.331, 'Q1', 27, 36, 1389, 99, 146, '2', '1950-1972, 1975-2002, 2005-2020', 'Religious Studies (Q1); Sociology and Political Science (Q2); Applied Psychology (Q3); Social Psychology (Q3)'), (13247, 'Radiochimica Acta', 338230, 0.331, 'Q3', 66, 82, 3062, 390, 307, '5', '1962-2020', 'Physical and Theoretical Chemistry (Q3)'), (13248, 'Revista Espanola de Enfermedades Digestivas', 11300108, 0.331, 'Q3', 38, 300, 3562, 544, 466, '12', '1990-2020', 'Gastroenterology (Q3); Medicine (miscellaneous) (Q3)'), (13249, 'Road and Transport Research', 10375783, 0.331, 'Q3', 18, 0, 0, 9, 8, '11', '1992-2017', 'Civil and Structural Engineering (Q3); Mechanical Engineering (Q3)'), (13250, 'Theoretical Inquiries in Law', 15653404, 0.331, 'Q2', 26, 21, 396, 79, 69, '5', '2004-2020', 'Law (Q2)'), (13251, 'Urban History', 9639268, 0.331, 'Q1', 20, 62, 3161, 44, 106, '3', '1974-2020', 'History (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q2); Urban Studies (Q2)'), (13252, 'Advances in Bioinformatics', 16878027, 0.33, 'Q3', 20, 1, 13, 55, 17, '32', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biomedical Engineering (Q3); Computer Science Applications (Q3)'), (13253, 'Arqueologia', 18538126, 0.33, 'Q2', 6, 36, 1833, 50, 117, '46', '2011-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (13254, 'Avian Biology Research', 17581559, 0.33, 'Q3', 36, 16, 730, 78, 81, '3', '2008-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (13255, 'Experimental Techniques', 7328818, 0.33, 'Q3', 34, 72, 2063, 259, 179, '19', '1975-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (13256, 'Geodesy and Cartography', 20297009, 0.33, 'Q3', 11, 22, 478, 55, 62, '69', '2004-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (13257, 'International Electronic Journal of Elementar', 13079298, 0.33, 'Q3', 18, 62, 2951, 156, 164, '18', '2009-2020', 'Education (Q3)'), (13258, 'International Journal of Industrial Engineeri', 22172661, 0.33, 'Q2', 14, 27, 969, 140, 75, '55', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2)'), (13259, 'Journal of Foodservice Business Research', 15378039, 0.33, 'Q3', 26, 35, 2312, 163, 108, '2', '2002-2004, 2006-2020', 'Food Science (Q3)'), (13260, 'Journal of Mathematical Sciences', 10723374, 0.33, 'Q3', 40, 532, 9466, 587, 1392, '2', '1994-2020', 'Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3); Statistics and Probability (Q3)'), (13261, 'Journal of Superhard Materials', 19349408, 0.33, 'Q3', 21, 52, 1392, 153, 154, '10', '2007-2020', 'Inorganic Chemistry (Q3); Materials Science (miscellaneous) (Q3)'), (13262, 'Karstenia', 4533402, 0.33, 'Q3', 6, 7, 263, 6, 6, '38', '2013-2017', 'Infectious Diseases (Q3); Plant Science (Q3); Microbiology (Q4)'), (13263, 'Magallania', 7180209, 0.33, 'Q2', 17, 22, 988, 38, 81, '45', '2007-2019', 'Social Sciences (miscellaneous) (Q2)'), (13264, 'Nase More', 4696255, 0.33, 'Q3', 15, 37, 796, 144, 110, '58', '1994-2020', 'Ocean Engineering (Q3); Process Chemistry and Technology (Q3); Transportation (Q3); Water Science and Technology (Q3)'), (13265, 'Review of Derivatives Research', 13806645, 0.33, 'Q2', 27, 14, 551, 30, 33, '2', '1996, 1998-2000, 2002-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q3)'), (13266, 'AIMS Mathematics', 24736988, 0.329, 'Q3', 15, 533, 16460, 280, 199, '2', '2016-2020', 'Mathematics (miscellaneous) (Q3)'), (13267, 'Australasian Physical and Engineering Science', 18795447, 0.329, 'Q3', 31, 11, 292, 442, 285, '16', '1983-2020', 'Biomedical Engineering (Q3); Biophysics (Q3); Physics and Astronomy (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (13268, 'Bolema - Mathematics Education Bulletin', 103636, 0.329, 'Q3', 8, 39, 1260, 79, 189, '14', '2010-2020', 'Education (Q3); Mathematics (miscellaneous) (Q3)'), (13269, 'Global Society', 1469798, 0.329, 'Q2', 32, 43, 1158, 83, 86, '3', '1996-2020', 'Geography, Planning and Development (Q2); Global and Planetary Change (Q4)'), (13270, 'International Journal of Fruit Science', 15538362, 0.329, 'Q3', 18, 210, 9418, 124, 96, '2', '2005-2020', 'Agronomy and Crop Science (Q3); Ecology (Q3); Horticulture (Q3); Plant Science (Q3)'), (13271, 'Journal of Agricultural Science and Technolog', 16807073, 0.329, 'Q2', 30, 126, 5496, 414, 369, '15', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (13272, 'Journal of Computational Dynamics', 21582505, 0.329, 'Q2', 12, 23, 831, 54, 33, '2', '2014-2020', 'Computational Mechanics (Q2); Computational Mathematics (Q3)'), (13273, 'Journal of Interprofessional Education and Pr', 24054526, 0.329, 'Q3', 8, 77, 1853, 193, 198, '2', '2015-2020', 'Education (Q3)'), (13274, 'Journal of Plant Biochemistry and Biotechnolo', 9741275, 0.329, 'Q3', 28, 101, 5019, 171, 147, '4', '1992-2020', 'Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3)'), (13275, 'Journal of the Chinese Chemical Society', 94536, 0.329, 'Q3', 45, 252, 11065, 914, 521, '2', '1954-2020', 'Chemistry (miscellaneous) (Q3)'), (13276, 'Mining Informational and Analytical Bulletin', 2361493, 0.329, 'Q2', 8, 276, 5189, 380, 561, '10', '2018-2020', 'Industrial and Manufacturing Engineering (Q2); Ecology (Q3); Geochemistry and Petrology (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (13277, 'Mortality', 13576275, 0.329, 'Q1', 24, 52, 2430, 98, 75, '3', '2005-2020', 'Philosophy (Q1); Religious Studies (Q1); Health (social science) (Q3)'), (13278, 'Nuklearmedizin', 295566, 0.329, 'Q3', 39, 66, 987, 111, 143, '5', '1959-2020', 'Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (13279, 'Nurse researcher', 13515578, 0.329, 'Q3', 44, 19, 100, 94, 96, '3', '2001-2020', 'Medicine (miscellaneous) (Q3); Research and Theory (Q3)'), (13280, 'Open Neurology Journal', 1874205, 0.329, 'Q3', 16, 20, 615, 43, 36, '16', '2010-2020', 'Neurology (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3)'), (13281, 'Protection of Metals and Physical Chemistry o', 2070206, 0.329, 'Q2', 24, 171, 4905, 614, 522, '10', '2009-2020', 'Metals and Alloys (Q2); Materials Chemistry (Q3); Organic Chemistry (Q3); Surfaces, Coatings and Films (Q3)'), (13282, 'Rendiconti del Seminario Matematico dell Uni', 418994, 0.329, 'Q3', 24, 30, 583, 36, 77, '7', '1994, 1996-2020', 'Algebra and Number Theory (Q3); Analysis (Q3); Geometry and Topology (Q3); Mathematical Physics (Q3)'), (13283, 'Rendiconti di Matematica e delle Sue Applicaz', 11207183, 0.329, 'Q3', 6, 4, 132, 49, 40, '7', '2016-2020', 'Algebra and Number Theory (Q3); Analysis (Q3); Applied Mathematics (Q3); Computational Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3); Fluid Flow and Transfer Processes (Q3); Geometry a'), (13284, 'Reviews in Inorganic Chemistry', 1934929, 0.329, 'Q3', 23, 8, 709, 72, 33, '5', '1985-1990, 1992-2020', 'Inorganic Chemistry (Q3)'), (13285, 'Safer Communities', 17578043, 0.329, 'Q2', 12, 17, 980, 48, 49, '3', '2002-2020', 'Community and Home Care (Q2); Law (Q2); Safety Research (Q2); Public Health, Environmental and Occupational Health (Q3)'), (13286, 'South African Journal of Chemistry', 3794350, 0.329, 'Q3', 20, 15, 595, 107, 69, '27', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (13287, 'Tourism and Hospitality Management', 13307533, 0.329, 'Q3', 12, 23, 1384, 126, 59, '58', '2013-2020', 'Tourism, Leisure and Hospitality Management (Q3)'), (13288, 'Water and Ecology', 23053488, 0.329, 'Q3', 6, 29, 623, 72, 126, '10', '2014-2020', 'Ecology (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3)'), (13289, 'Child and Family Behavior Therapy', 1545228, 0.328, 'Q2', 31, 12, 406, 35, 37, '2', '1983-2020', 'Social Sciences (miscellaneous) (Q2); Clinical Psychology (Q3)'), (13290, 'Czech Journal of Genetics and Plant Breeding', 12121975, 0.328, 'Q3', 18, 22, 603, 71, 69, '31', '2007-2020', 'Plant Science (Q3); Genetics (Q4)'), (13291, 'Deafness and Education International', 14643154, 0.328, 'Q3', 22, 32, 1429, 51, 40, '3', '1999-2020', 'Education (Q3); Speech and Hearing (Q3)'), (13292, 'English Teaching and Learning', 10237267, 0.328, 'Q2', 5, 26, 1158, 50, 49, '22', '2015-2020', 'Linguistics and Language (Q2); Education (Q3)'), (13293, 'Indian Journal of Radiology and Imaging', 19983808, 0.328, 'Q3', 25, 97, 1582, 263, 234, '4', '1984-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (13294, 'Interacting with Computers', 18737951, 0.328, 'Q3', 82, 31, 1881, 237, 112, '3', '1989-2020', 'Human-Computer Interaction (Q3); Software (Q3)'), (13295, 'International Journal of Feminist Approaches ', 19374585, 0.328, 'Q1', 9, 30, 746, 43, 60, '2', '2012-2019', 'Philosophy (Q1); Gender Studies (Q2); Health (social science) (Q3)'), (13296, 'International Journal of High Performance Com', 10943420, 0.328, 'Q3', 61, 50, 1651, 389, 176, '2', '1987-2020', 'Hardware and Architecture (Q3); Software (Q3); Theoretical Computer Science (Q3)'), (13297, 'International Journal of Innovative Computing', 13494198, 0.328, 'Q3', 51, 145, 4034, 532, 469, '6', '2007-2020', 'Computational Theory and Mathematics (Q3); Information Systems (Q3); Software (Q3); Theoretical Computer Science (Q3)'), (13298, 'Iranian Journal of Ichthyology', 23831561, 0.328, 'Q3', 11, 17, 1032, 74, 80, '15', '2014-2020', 'Aquatic Science (Q3)'), (13299, 'Iranian Journal of Science and Technology - T', 22286187, 0.328, 'Q2', 15, 129, 4473, 350, 217, '19', '2012-2020', 'Computational Mechanics (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (13300, 'Journal fur Mathematik-Didaktik', 1735322, 0.328, 'Q3', 13, 22, 1499, 41, 36, '5', '1980-1995, 1997-2002, 2004-2005, 2007-2020', 'Education (Q3); Mathematics (miscellaneous) (Q3)'), (13301, 'Journal of Human Behavior in the Social Envir', 15403556, 0.328, 'Q2', 32, 136, 6129, 296, 221, '2', '1998-2020', 'Anthropology (Q2); Social Sciences (miscellaneous) (Q2)'), (13302, 'Journal of Human Sport and Exercise', 19885202, 0.328, 'Q3', 25, 167, 5222, 425, 375, '12', '2010-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (13303, 'Journal of Medicine and Philosophy', 3605310, 0.328, 'Q1', 49, 31, 1083, 98, 117, '3', '1976-2020', 'Philosophy (Q1); Medicine (miscellaneous) (Q3); Issues, Ethics and Legal Aspects (Q4)'), (13304, 'Journal of Polymer Engineering', 3346447, 0.328, 'Q3', 24, 81, 2935, 432, 295, '5', '1981-1988, 1990-2020', 'Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (13305, 'Letters on Materials', 22185046, 0.328, 'Q3', 11, 96, 2269, 327, 296, '10', '2014-2020', 'Materials Science (miscellaneous) (Q3)'), (13306, 'Pastoral Care in Education', 14680122, 0.328, 'Q3', 20, 36, 1574, 80, 63, '2', '1983-2020', 'Developmental and Educational Psychology (Q3); Education (Q3)'), (13307, 'primary care companion for CNS disorders, The', 21557780, 0.328, 'Q3', 50, 173, 0, 248, 228, '2', '2016-2020', 'Medicine (miscellaneous) (Q3)'), (13308, 'Revista Espanola de Derecho Constitucional', 2115743, 0.328, 'Q2', 6, 41, 847, 40, 96, '12', '2008-2013, 2015-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (13309, 'Special Care in Dentistry', 2751879, 0.328, 'Q3', 41, 94, 2952, 242, 195, '2', '1981-2020', 'Dentistry (miscellaneous) (Q3)'), (13310, 'St. Petersburg Mathematical Journal', 10610022, 0.328, 'Q3', 20, 43, 1096, 80, 144, '2', '2003-2020', 'Analysis (Q3); Applied Mathematics (Q3); Algebra and Number Theory (Q4)'), (13311, 'Zeitschrift fur Klinische Psychologie und Psy', 21906297, 0.328, 'Q3', 30, 6, 345, 52, 60, '5', '1974-1983, 1996-2019', 'Clinical Psychology (Q3)'), (13312, 'Afrika Matematika', 10129405, 0.327, 'Q3', 17, 123, 2793, 256, 283, '2', '2011-2020', 'Mathematics (miscellaneous) (Q3)'), (13313, 'Anthropologie', 35521, 0.327, 'Q2', 30, 30, 1385, 59, 106, '8', '1947-1948, 1974-1979, 1996-2020', 'Anthropology (Q2); History and Philosophy of Science (Q2)'), (13314, 'Archival Science', 13890166, 0.327, 'Q1', 32, 26, 1097, 63, 52, '16', '2001-2020', 'History (Q1); Library and Information Sciences (Q2)'), (13315, 'Arctic Anthropology', 19338139, 0.327, 'Q1', 25, 9, 715, 25, 40, '2', '1980-1981, 1985, 1987, 1989-2019', 'Cultural Studies (Q1); Anthropology (Q2)'), (13316, 'Asia-Pacific Journal of Business Administrati', 17574331, 0.327, 'Q2', 17, 23, 1980, 133, 55, '3', '2009-2020', 'Business, Management and Accounting (miscellaneous) (Q2); Public Administration (Q3)'), (13317, 'CEAS Aeronautical Journal', 18695582, 0.327, 'Q3', 19, 80, 2282, 230, 166, '2', '2011-2020', 'Aerospace Engineering (Q3); Transportation (Q3)'), (13318, 'CEAS Space Journal', 18682502, 0.327, 'Q3', 16, 45, 1161, 165, 133, '28', '2011-2020', 'Aerospace Engineering (Q3); Space and Planetary Science (Q4)'), (13319, 'Computer-Aided Design and Applications', 16864360, 0.327, 'Q2', 30, 203, 4655, 316, 249, '3', '2004-2021', 'Computer Graphics and Computer-Aided Design (Q2); Computational Mathematics (Q3); Computational Mechanics (Q3)'), (13320, 'EPPO Bulletin', 2508052, 0.327, 'Q3', 36, 88, 1874, 220, 198, '2', '1971-2020', 'Agronomy and Crop Science (Q3); Horticulture (Q3); Plant Science (Q3)'), (13321, 'European Journal of Crime, Criminal Law and C', 15718174, 0.327, 'Q2', 17, 18, 536, 36, 46, '16', '1993-2000, 2002-2020', 'Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13322, 'Folia Phoniatrica et Logopaedica', 14219972, 0.327, 'Q1', 47, 72, 3106, 128, 118, '19', '1949-1956, 1958-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q2); LPN and LVN (Q2); Speech and Hearing (Q3)'), (13323, 'Frontiers of Agricultural Science and Enginee', 20957505, 0.327, 'Q2', 13, 66, 2727, 217, 145, '1', '2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Veterinary (miscellaneous) (Q2); Biotechnology (Q3)'), (13324, 'Gesundheitswesen, Supplement', 9497013, 0.327, 'Q3', 9, 26, 688, 33, 25, '5', '2004-2005, 2007-2008, 2010, 2012, 2015-2018, 2020', 'Public Health, Environmental and Occupational Health (Q3)'), (13325, 'International Journal of Applied and Computat', 23495103, 0.327, 'Q3', 17, 176, 5958, 938, 652, '4', '2015-2020', 'Applied Mathematics (Q3); Computational Mathematics (Q3)'), (13326, 'International Journal of Automation and Contr', 17407516, 0.327, 'Q2', 15, 32, 1339, 179, 78, '3', '2007-2014, 2020', 'Industrial and Manufacturing Engineering (Q2); Control and Systems Engineering (Q3); Hardware and Architecture (Q3); Software (Q3)'), (13327, 'Journal of African Cultural Studies', 13696815, 0.327, 'Q1', 14, 56, 1439, 64, 67, '3', '2009-2020', 'Cultural Studies (Q1); Language and Linguistics (Q1); Literature and Literary Theory (Q1); Music (Q1); Visual Arts and Performing Arts (Q1); Linguistics and Language (Q2)'), (13328, 'Journal of Politics in Latin America', 18684890, 0.327, 'Q2', 8, 0, 0, 43, 37, '5', '2015-2019', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13329, 'Journal of Substance Use', 14659891, 0.327, 'Q3', 29, 176, 5587, 326, 312, '3', '1996-2020', 'Health (social science) (Q3); Medicine (miscellaneous) (Q3)'), (13330, 'Marine Systems and Ocean Technology', 1679396, 0.327, 'Q3', 7, 22, 847, 45, 48, '19', '2005-2007, 2009, 2013, 2015-2020', 'Mechanical Engineering (Q3); Ocean Engineering (Q3)'), (13331, 'Molecular Biology Research Communications', 2322181, 0.327, 'Q4', 8, 23, 722, 97, 67, '15', '2017-2020', 'Biochemistry (Q4); Molecular Biology (Q4)'), (13332, 'Molluscan Research', 14486067, 0.327, 'Q3', 25, 42, 2015, 99, 101, '3', '1987-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Genetics (Q4)'), (13333, 'Montenegrin Journal of Economics', 18006698, 0.327, 'Q2', 12, 66, 2171, 369, 175, '116', '2017-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (13334, 'Plant Sociology', 22801855, 0.327, 'Q2', 25, 14, 1140, 73, 62, '7', '2012-2020', 'Forestry (Q2); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (13335, 'Presse Medicale', 7554982, 0.327, 'Q3', 42, 36, 2091, 624, 509, '8', '1983-2020', 'Medicine (miscellaneous) (Q3)'), (13336, 'Progress in Physics of Metals', 16081021, 0.327, 'Q2', 8, 18, 1361, 55, 45, '44', '2015-2020', 'Metals and Alloys (Q2); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Fluid Flow and Transfer Processes (Q3); Materials Science (miscellaneous) (Q3); Surfaces, Coatin'), (13337, 'Studies in Documentary Film', 17503280, 0.327, 'Q1', 11, 25, 953, 45, 44, '3', '2007-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q2)'), (13338, 'Toxicological and Environmental Chemistry', 2772248, 0.327, 'Q3', 38, 41, 1800, 280, 190, '3', '1979-2020', 'Pollution (Q3); Environmental Chemistry (Q4); Health, Toxicology and Mutagenesis (Q4)'), (13339, 'Communications for Statistical Applications a', 22877843, 0.326, 'Q3', 6, 50, 1106, 103, 141, '13', '2017-2020', 'Applied Mathematics (Q3); Finance (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (13340, 'Die Erde', 139998, 0.326, 'Q3', 23, 14, 857, 68, 59, '5', '1977-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Ecology (Q3); Energy (miscellaneous) (Q3); Atmospheric Science (Q4)'), (13341, 'European Journal of Ecology', 13398474, 0.326, 'Q3', 8, 10, 490, 44, 50, '17', '2015-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (13342, 'Historical Materialism', 14654466, 0.326, 'Q1', 30, 56, 2670, 56, 114, '16', '2002-2020', 'History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (13343, 'International Journal of Managerial and Finan', 17536715, 0.326, 'Q3', 12, 11, 902, 90, 56, '19', '2010, 2020', 'Accounting (Q3)'), (13344, 'Journal of Indian Business Research', 17554195, 0.326, 'Q3', 18, 26, 2254, 130, 67, '3', '2009-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (13345, 'London Review of Education', 14748460, 0.326, 'Q3', 21, 34, 1559, 126, 94, '3', '2008-2020', 'Education (Q3)'), (13346, 'MCN The American Journal of Maternal Child Nu', 15390683, 0.326, 'Q2', 41, 85, 421, 222, 172, '2', '1976-2020', 'Maternity and Midwifery (Q2); Pharmacology (nursing) (Q2)'), (13347, 'Nagoya Journal of Medical Science', 277622, 0.326, 'Q3', 25, 82, 2026, 216, 193, '6', '1961-2020', 'Medicine (miscellaneous) (Q3)'), (13348, 'Processing and Application of Ceramics', 18206131, 0.326, 'Q3', 15, 37, 1317, 244, 142, '55', '2014-2020', 'Ceramics and Composites (Q3)'), (13349, 'Research in Dance Education', 14701111, 0.326, 'Q1', 14, 50, 1785, 55, 60, '3', '2010-2020', 'Visual Arts and Performing Arts (Q1); Education (Q3)'), (13350, 'Review of Economic Design', 14344750, 0.326, 'Q2', 24, 13, 417, 10, 32, '5', '1996-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (13351, 'Revue Europeenne de Psychologie Appliquee', 11629088, 0.326, 'Q3', 28, 35, 2020, 91, 77, '8', '1998, 2004-2020', 'Applied Psychology (Q3)'), (13352, 'Studies in History and Philosophy of Science ', 13698486, 0.326, 'Q1', 40, 53, 3585, 90, 94, '3', '1998-2020', 'History (Q1); History and Philosophy of Science (Q2); Medicine (miscellaneous) (Q3)'), (13353, 'World Medical and Health Policy', 21532028, 0.326, 'Q3', 11, 45, 1601, 82, 61, '2', '2011-2020', 'Health Policy (Q3)'), (13354, 'Acoustical Physics', 15626865, 0.325, 'Q2', 28, 79, 1824, 288, 274, '10', '1996-2020', 'Acoustics and Ultrasonics (Q2)'), (13355, 'Advances in Tribology', 16875915, 0.325, 'Q3', 17, 9, 395, 45, 27, '32', '2008-2020', 'Mechanical Engineering (Q3); Surfaces, Coatings and Films (Q3)'), (13356, 'Annals of Carnegie Museum', 974463, 0.325, 'Q3', 26, 9, 592, 19, 24, '2', '1990-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Geology (Q3)'), (13357, 'Arab Journal of Gastroenterology', 20902387, 0.325, 'Q3', 18, 58, 1634, 183, 124, '16', '2009-2020', 'Gastroenterology (Q3)'), (13358, 'Arte, Individuo y Sociedad', 19882408, 0.325, 'Q1', 7, 73, 2867, 72, 138, '12', '2010-2020', 'Visual Arts and Performing Arts (Q1)'), (13359, 'Biota Neotropica', 16760603, 0.325, 'Q3', 34, 96, 5648, 228, 198, '14', '2007-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (13360, 'Central European Journal of Public Health', 18031048, 0.325, 'Q3', 33, 67, 1386, 241, 216, '31', '1993-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13361, 'Computational Social Networks', 21974314, 0.325, 'Q3', 12, 6, 222, 120, 38, '19', '2014-2020', 'Computer Science Applications (Q3); Human-Computer Interaction (Q3); Information Systems (Q3); Modeling and Simulation (Q3)'), (13362, 'Endocrinologia, Diabetes y Nutricion', 25300164, 0.325, 'Q3', 25, 126, 3130, 328, 310, '12', '2017-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Nutrition and Dietetics (Q3); Endocrinology (Q4)'), (13363, 'Folia Biologica', 25337602, 0.325, 'Q3', 33, 20, 264, 81, 84, '31', '1961-2020', 'Medicine (miscellaneous) (Q3); Biochemistry (Q4); Cell Biology (Q4); Developmental Biology (Q4); Genetics (Q4); Immunology (Q4); Molecular Biology (Q4)'), (13364, 'Group Dynamics', 10892699, 0.325, 'Q3', 67, 19, 747, 58, 50, '2', '1997-2020', 'Applied Psychology (Q3); Social Psychology (Q3)'), (13365, 'Instruments and Experimental Techniques', 16083180, 0.325, 'Q3', 32, 148, 2007, 314, 444, '10', '1968-1971, 1973-1990, 1996-2020', 'Instrumentation (Q3)'), (13366, 'Journal of Advanced Pharmaceutical Technology', 1105558, 0.325, 'Q3', 33, 40, 888, 199, 89, '4', '2010-2020', 'Pharmaceutical Science (Q3)'), (13367, 'Journal of Applied Geodesy', 18629016, 0.325, 'Q2', 21, 28, 831, 102, 88, '5', '2007-2020', 'Engineering (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Modeling and Simulation (Q3)'), (13368, 'Journal of Automata, Languages and Combinator', 25673785, 0.325, 'Q3', 4, 16, 290, 40, 39, '5', '2018-2020', 'Computational Theory and Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)'), (13369, 'Journal of Demographic Economics', 20540892, 0.325, 'Q2', 8, 17, 871, 42, 47, '3', '2015-2020', 'Demography (Q2); Geography, Planning and Development (Q2); Economics and Econometrics (Q3)'), (13370, 'Journal of Emergency Nursing', 15272966, 0.325, 'Q3', 47, 145, 3076, 329, 337, '2', '1975-2020', 'Emergency Nursing (Q3)'), (13371, 'Journal of General Management', 3063070, 0.325, 'Q3', 20, 61, 2223, 58, 45, '3', '1982, 2005-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Strategy and Management (Q3)'), (13372, 'Journal of GeoEngineering', 19908326, 0.325, 'Q3', 18, 17, 532, 57, 62, '22', '2006-2020', 'Geotechnical Engineering and Engineering Geology (Q3)'), (13373, 'Journal of Industrial and Management Optimiza', 15475816, 0.325, 'Q3', 32, 152, 5081, 458, 381, '2', '2007-2020', 'Applied Mathematics (Q3); Business and International Management (Q3); Control and Optimization (Q3); Strategy and Management (Q3)'), (13374, 'Journal of Korean Academy of Nursing Administ', 22884955, 0.325, 'Q3', 5, 53, 1498, 90, 92, '13', '2018-2020', 'Education (Q3); Nursing (miscellaneous) (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (13375, 'Journal of Physical Organic Chemistry', 10991395, 0.325, 'Q3', 66, 101, 5421, 636, 364, '3', '1988-2020', 'Organic Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (13376, 'Journal of Renewable Materials', 21646341, 0.325, 'Q3', 19, 120, 5310, 383, 224, '2', '2013-2020', 'Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (13377, 'Journal of Teaching in Travel and Tourism', 15313220, 0.325, 'Q3', 23, 34, 1764, 105, 65, '2', '2001-2020', 'Education (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (13378, 'Magis', 20271174, 0.325, 'Q3', 9, 24, 1139, 55, 63, '47', '2008-2020', 'Education (Q3)'), (13379, 'Nautilus', 281344, 0.325, 'Q3', 18, 14, 588, 31, 45, '2', '1996-2015, 2017-2019', 'Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (13380, 'Nematropica', 995444, 0.325, 'Q3', 24, 7, 248, 37, 70, '2', '1988, 1993-1994, 1996-2019', 'Agronomy and Crop Science (Q3)'), (13381, 'Open Biochemistry Journal', 1874091, 0.325, 'Q3', 13, 5, 297, 49, 33, '16', '2007, 2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (13382, 'Philosophia Mathematica', 318019, 0.325, 'Q1', 22, 15, 484, 49, 52, '3', '1964-1970, 1972-1976, 1978, 1980, 1986-1989, 1991, 1993-1995, 1999, 2001, 2004-2019', 'Philosophy (Q1); Mathematics (miscellaneous) (Q3)'), (13383, 'Psicologia: Reflexao e Critica', 1027972, 0.325, 'Q3', 21, 26, 1455, 103, 79, '19', '2006-2020', 'Psychology (miscellaneous) (Q3)'), (13384, 'Transforming Anthropology', 10510559, 0.325, 'Q2', 9, 20, 235, 27, 31, '2', '1990-1994, 2010-2020', 'Anthropology (Q2)'), (13385, 'Ukrainian Mathematical Journal', 415995, 0.325, 'Q3', 25, 133, 2619, 221, 409, '2', '1957-2020', 'Mathematics (miscellaneous) (Q3)'), (13386, 'Zhendong yu Chongji/Journal of Vibration and ', 10003835, 0.325, 'Q2', 30, 916, 18319, 2227, 2766, '1', '2001-2020', 'Acoustics and Ultrasonics (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (13387, 'Advances in Complex Systems', 2195259, 0.324, 'Q2', 32, 15, 517, 99, 67, '37', '2004-2020', 'Multidisciplinary (Q2); Control and Systems Engineering (Q3)'), (13388, 'Aircraft Engineering and Aerospace Technology', 22667, 0.324, 'Q3', 29, 145, 4478, 440, 377, '3', '1929-2020', 'Aerospace Engineering (Q3)'), (13389, 'Brazilian Journal of Cardiovascular Surgery', 1027638, 0.324, 'Q3', 26, 181, 3717, 359, 282, '14', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q3); Surgery (Q3)'), (13390, 'Colloquium Mathematicum', 101354, 0.324, 'Q3', 29, 54, 1074, 245, 263, '17', '2001-2009, 2011-2020', 'Mathematics (miscellaneous) (Q3)'), (13391, 'Howard Journal of Communications', 10964649, 0.324, 'Q2', 30, 42, 2380, 81, 80, '3', '1988-2020', 'Communication (Q2); Strategy and Management (Q3)'), (13392, 'International Journal of Differential Equatio', 16879651, 0.324, 'Q3', 20, 29, 784, 102, 73, '32', '2010-2020', 'Analysis (Q3); Applied Mathematics (Q3)'), (13393, 'International Journal of Distributed Sensor N', 15501329, 0.324, 'Q2', 53, 214, 7528, 1781, 887, '2', '2006-2020', 'Engineering (miscellaneous) (Q2); Computer Networks and Communications (Q3)'), (13394, 'International Journal of Innovation and Techn', 17936950, 0.324, 'Q3', 19, 61, 4951, 230, 168, '37', '2004-2020', 'Management of Technology and Innovation (Q3)'), (13395, 'International Journal of Micro Air Vehicles', 17568293, 0.324, 'Q3', 21, 15, 428, 169, 76, '3', '2010-2020', 'Aerospace Engineering (Q3)'), (13396, 'International Journal of Workplace Health Man', 17538351, 0.324, 'Q3', 21, 39, 2312, 145, 103, '3', '2008-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13397, 'Iranian Journal of Biotechnology', 23222921, 0.324, 'Q3', 21, 47, 1635, 221, 117, '15', '2008-2020', 'Biotechnology (Q3); Biochemistry (Q4); Genetics (Q4)'), (13398, 'Journal of Molecular Catalysis - B Enzymatic', 13811177, 0.324, 'Q3', 99, 0, 0, 3, 1, '16', '1995-2017', 'Bioengineering (Q3); Process Chemistry and Technology (Q3); Biochemistry (Q4); Catalysis (Q4)'), (13399, 'Kyushu Journal of Mathematics', 13406116, 0.324, 'Q3', 20, 26, 429, 48, 72, '6', '1994-2020', 'Mathematics (miscellaneous) (Q3)'), (13400, 'Numerical Analysis and Applications', 19954239, 0.324, 'Q3', 12, 31, 613, 63, 95, '10', '2009-2020', 'Numerical Analysis (Q3)'), (13401, 'Tamkang Journal of Mathematics', 492930, 0.324, 'Q2', 18, 27, 496, 95, 82, '22', '2005-2020', 'Metals and Alloys (Q2); Applied Mathematics (Q3); Materials Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3)'), (13402, 'Transactions of the Indian Ceramic Society', 371750, 0.324, 'Q3', 18, 33, 1117, 138, 91, '3', '1941-2020', 'Ceramics and Composites (Q3)'), (13403, 'Ultrasound Quarterly', 15360253, 0.324, 'Q3', 37, 63, 1550, 188, 174, '2', '1988-1995, 1998-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (13404, 'William and Mary Quarterly', 435597, 0.324, 'Q1', 36, 21, 3198, 49, 69, '2', '1936, 1956, 1971-1972, 1975-1978, 1981-1982, 1984-1987, 1999-2020', 'Cultural Studies (Q1); History (Q1)'), (13405, 'Yale journal on regulation', 7419457, 0.324, 'Q2', 3, 18, 3129, 16, 15, '2', '1991, 1994, 1998, 2019-2020', 'Law (Q2); Public Administration (Q3)'), (13406, 'Bridge Construction', 10034722, 0.323, 'Q3', 15, 157, 1749, 541, 400, '1', '2013-2020', 'Building and Construction (Q3)'), (13407, 'California Cooperative Oceanic Fisheries, Inv', 5753317, 0.323, 'Q3', 40, 0, 0, 9, 12, '2', '1976, 1980, 1983-1984, 1996-2019', 'Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (13408, 'Canadian Journal of Chemistry', 84042, 0.323, 'Q3', 68, 113, 4822, 500, 419, '9', '1951, 1960, 1965, 1973-2020', 'Chemistry (miscellaneous) (Q3); Organic Chemistry (Q3); Catalysis (Q4)'), (13409, 'Canadian Journal of Civil Engineering', 3151468, 0.323, 'Q3', 62, 119, 5077, 437, 299, '9', '1971, 1974-2020', 'Civil and Structural Engineering (Q3); Environmental Science (miscellaneous) (Q3)'), (13410, 'Children Australia', 10350772, 0.323, 'Q2', 9, 52, 1965, 76, 91, '3', '2008, 2014-2020', 'Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3); Health (social science) (Q3)'), (13411, 'Conflict Resolution Quarterly', 15365581, 0.323, 'Q2', 21, 14, 560, 46, 59, '2', '2005-2020', 'Law (Q2); Psychology (miscellaneous) (Q3)'), (13412, 'Critical Housing Analysis', 23362839, 0.323, 'Q2', 7, 18, 546, 47, 42, '31', '2014-2020', 'Geography, Planning and Development (Q2); Sociology and Political Science (Q2); Urban Studies (Q2)'), (13413, 'Environmental and Climate Technologies', 16915208, 0.323, 'Q3', 17, 108, 3976, 256, 97, '5', '2009-2020', 'Environmental Science (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (13414, 'European Spatial Research and Policy', 12311952, 0.323, 'Q2', 10, 16, 911, 52, 47, '17', '2009-2020', 'Geography, Planning and Development (Q2)'), (13415, 'Guangxue Xuebao/Acta Optica Sinica', 2532239, 0.323, 'Q3', 37, 613, 14053, 1980, 1743, '1', '1984-1989, 1992-2020', 'Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (13416, 'International Journal of Computer Science in ', 16844769, 0.323, 'Q2', 9, 11, 489, 64, 48, '28', '2012-2019', 'Computer Science (miscellaneous) (Q2); Biomedical Engineering (Q3)'), (13417, 'International Journal of Energy Sector Manage', 17506220, 0.323, 'Q3', 22, 75, 4388, 271, 158, '3', '2007-2020', 'Energy (miscellaneous) (Q3); Strategy and Management (Q3)'), (13418, 'Journal of Cultural Geography', 8873631, 0.323, 'Q1', 22, 20, 851, 56, 48, '3', '1980-2020', 'Cultural Studies (Q1); Geography, Planning and Development (Q2)'), (13419, 'Journal of Marketing Channels', 1046669, 0.323, 'Q3', 20, 0, 0, 33, 14, '2', '1991-2017', 'Marketing (Q3)'), (13420, 'Journal of Nanophotonics', 19342608, 0.323, 'Q3', 38, 74, 3087, 365, 272, '2', '2007-2020', 'Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Nanoscience and Nanotechnology (Q3)'), (13421, 'Journal of Nano Research', 16619897, 0.323, 'Q3', 24, 52, 2102, 447, 225, '19', '2008-2020', 'Materials Science (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (13422, 'Journal of Nuclear Medicine Technology', 15355675, 0.323, 'Q3', 39, 120, 338, 168, 185, '2', '1976, 1993-2020', 'Medicine (miscellaneous) (Q3); Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (13423, 'Journal of Quality in Maintenance Engineering', 13552511, 0.323, 'Q2', 55, 48, 2284, 196, 121, '3', '1995-2020', 'Industrial and Manufacturing Engineering (Q2); Safety, Risk, Reliability and Quality (Q3); Strategy and Management (Q3)'), (13424, 'Journal of Spectroscopy', 23144939, 0.323, 'Q3', 21, 44, 1556, 366, 199, '32', '2013-2020', 'Analytical Chemistry (Q3); Atomic and Molecular Physics, and Optics (Q3); Spectroscopy (Q4)'), (13425, 'Laser Therapy', 18847269, 0.323, 'Q3', 22, 10, 222, 102, 78, '2', '1989-2000, 2004-2020', 'Biomedical Engineering (Q3); Surgery (Q3)'), (13426, 'Microprocessors and Microsystems', 1419331, 0.323, 'Q3', 38, 462, 12804, 962, 423, '16', '1978-2020', 'Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Software (Q3)'), (13427, 'News of the National Academy of Sciences of t', 2518170, 0.323, 'Q3', 9, 154, 2677, 446, 469, '65', '2016-2020', 'Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (13428, 'Revista Brasileira de Ciencia Avicola', 1516635, 0.323, 'Q3', 25, 88, 3386, 354, 332, '14', '2002, 2006-2020', 'Animal Science and Zoology (Q3)'), (13429, 'Russian Journal of Nonlinear Dynamics', 26585324, 0.323, 'Q3', 6, 36, 851, 110, 137, '10', '2018-2020', 'Control and Systems Engineering (Q3); Mechanical Engineering (Q3)'), (13430, 'Therapeutic hypothermia and temperature manag', 21537933, 0.323, 'Q3', 12, 41, 1009, 110, 89, '2', '2014-2020', 'Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)'), (13431, 'Turkish Journal of Biology', 13000152, 0.323, 'Q2', 38, 54, 2866, 244, 181, '18', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Cell Biology (Q4); Genetics (Q4); Microbiology (Q4); Molecular Biology (Q4); Physiology (Q4)'), (13432, 'Zeitschrift fur Rheumatologie', 14351250, 0.323, 'Q4', 38, 200, 4878, 390, 335, '5', '1974-2020', 'Rheumatology (Q4)'), (13433, 'Canadian Veterinary Journal', 85286, 0.322, 'Q2', 58, 218, 2919, 390, 529, '9', '1965-1982, 1986-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (13434, 'Child Development Research', 20903995, 0.322, 'Q2', 4, 0, 0, 19, 17, '2', '2015-2019', 'Linguistics and Language (Q2); Developmental and Educational Psychology (Q3); Education (Q3); Behavioral Neuroscience (Q4)'), (13435, 'Cogent Psychology', 23311908, 0.322, 'Q3', 14, 87, 4686, 306, 273, '3', '2014-2020', 'Psychology (miscellaneous) (Q3)'), (13436, 'Cybernetics and Systems', 10876553, 0.322, 'Q3', 39, 59, 1718, 226, 98, '3', '1980-2020', 'Artificial Intelligence (Q3); Information Systems (Q3); Software (Q3)'), (13437, 'Data Technologies and Applications', 25149288, 0.322, 'Q2', 29, 51, 2364, 205, 87, '3', '2018-2020', 'Library and Information Sciences (Q2); Information Systems (Q3)'), (13438, 'English Historical Review', 138266, 0.322, 'Q1', 22, 19, 2299, 26, 78, '3', '1886-2019', 'History (Q1)'), (13439, 'Evolutionary Intelligence', 18645917, 0.322, 'Q3', 26, 212, 8140, 345, 121, '5', '2008-2020', 'Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Mathematics (miscellaneous) (Q3); Cognitive Neuroscience (Q4)'), (13440, 'Grundwasser', 14321165, 0.322, 'Q3', 21, 22, 830, 40, 62, '5', '1997-2020', 'Water Science and Technology (Q3)'), (13441, 'Infectious Disorders - Drug Targets', 18715265, 0.322, 'Q3', 54, 123, 4407, 163, 112, '52', '2006-2020', 'Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3); Pharmacology (Q3); Molecular Medicine (Q4)'), (13442, 'International Journal of Architectural Comput', 14780771, 0.322, 'Q3', 13, 50, 1601, 96, 56, '3', '2011-2020', 'Building and Construction (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q3)'), (13443, 'International Journal of Community Music', 17526302, 0.322, 'Q1', 10, 22, 767, 35, 66, '3', '2012-2020', 'Music (Q1)'), (13444, 'International Journal of Modelling, Identific', 17466172, 0.322, 'Q3', 29, 50, 1714, 329, 222, '3', '2006-2014, 2017', 'Applied Mathematics (Q3); Computer Science Applications (Q3); Modeling and Simulation (Q3)'), (13445, 'International Journal of Power Electronics an', 20888694, 0.322, 'Q2', 21, 240, 6794, 1093, 643, '21', '2011-2020', 'Electrical and Electronic Engineering (Q2); Energy Engineering and Power Technology (Q3)'), (13446, 'Iranian Journal of Science and Technology - T', 22286160, 0.322, 'Q3', 14, 250, 9153, 343, 204, '19', '2012-2020', 'Civil and Structural Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (13447, 'Jokull', 4490576, 0.322, 'Q3', 3, 0, 0, 3, 2, '87', '1980-1985, 1991-1993, 2013, 2016-2017', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (13448, 'Journal of Infection in Developing Countries', 20366590, 0.322, 'Q3', 49, 241, 6762, 526, 518, '7', '2007-2020', 'Infectious Diseases (Q3); Medicine (miscellaneous) (Q3); Microbiology (Q4); Parasitology (Q4); Virology (Q4)'), (13449, 'Journal of Information Systems Education', 10553096, 0.322, 'Q2', 17, 25, 921, 100, 59, '2', '2012-2020', 'Engineering (miscellaneous) (Q2); Education (Q3); E-learning (Q3)'), (13450, 'Journal of Porphyrins and Phthalocyanines', 10991409, 0.322, 'Q3', 64, 141, 6728, 547, 368, '37', '1997-2020', 'Chemistry (miscellaneous) (Q3)'), (13451, 'Journal of the Saudi Heart Association', 22125043, 0.322, 'Q3', 16, 95, 1795, 163, 151, '29', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (13452, 'Management Revue', 18619908, 0.322, 'Q3', 9, 23, 1561, 78, 57, '5', '2013-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (13453, 'Middle East Fertility Society Journal', 11105690, 0.322, 'Q3', 18, 32, 1088, 224, 177, '32', '1996-2018, 2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (13454, 'Natural Product Sciences', 12263907, 0.322, 'Q3', 25, 44, 1563, 224, 143, '13', '1997-2020', 'Drug Discovery (Q3); Organic Chemistry (Q3)'), (13455, 'Nordic Journal of Working Life Studies', 22450157, 0.322, 'Q2', 15, 16, 818, 69, 79, '25', '2011-2020', 'Industrial Relations (Q2); Life-span and Life-course Studies (Q3); Organizational Behavior and Human Resource Management (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13456, 'Norsk Lingvistisk Tidsskrift', 8003076, 0.322, 'Q1', 3, 7, 350, 5, 7, '33', '2013-2016, 2018', 'Language and Linguistics (Q1); Linguistics and Language (Q2)'), (13457, 'North American Archaeologist', 1976931, 0.322, 'Q2', 13, 10, 672, 18, 29, '2', '2002-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (13458, 'Occupational Therapy in Mental Health', 164212, 0.322, 'Q3', 20, 22, 1030, 71, 66, '2', '1980, 1982-1993, 1995-2020', 'Applied Psychology (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13459, 'Periodica Polytechnica: Chemical Engineering', 3245853, 0.322, 'Q3', 19, 72, 2506, 298, 171, '50', '1968-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (13460, 'Physicochemical Problems of Mineral Processin', 1371282, 0.322, 'Q3', 23, 129, 4695, 512, 361, '17', '2008-2020', 'Economic Geology (Q3); Geology (Q3); Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q3); Process Chemistry and Technology (Q3)'), (13461, 'Policy and Practice in Health and Safety', 14773996, 0.322, 'Q3', 8, 17, 681, 36, 34, '3', '2013-2020', 'Health Policy (Q3); Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q3); Safety Research (Q3)'), (13462, 'Politica y Gobierno', 14051060, 0.322, 'Q2', 13, 14, 701, 31, 38, '30', '2000-2003, 2005-2020', 'Political Science and International Relations (Q2)'), (13463, 'Progress in Artificial Intelligence', 21926360, 0.322, 'Q3', 18, 24, 1200, 198, 95, '5', '2012-2020', 'Artificial Intelligence (Q3)'), (13464, 'Rural Society', 10371656, 0.322, 'Q3', 23, 16, 712, 56, 46, '3', '1991-2020', 'Tourism, Leisure and Hospitality Management (Q3)'), (13465, 'Turkish Journal of Anaesthesiology and Reanim', 26676370, 0.322, 'Q3', 12, 102, 1689, 218, 191, '18', '2019-2020', 'Anesthesiology and Pain Medicine (Q3); Emergency Medicine (Q3)'), (13466, 'World Electric Vehicle Journal', 20326653, 0.322, 'Q2', 18, 79, 3028, 287, 138, '19', '2007-2013, 2015-2016, 2018-2020', 'Automotive Engineering (Q2)'), (13467, 'Wound Medicine', 22139095, 0.322, 'Q3', 12, 22, 911, 134, 80, '5', '2013-2020', 'Surgery (Q3)'), (13468, 'Yuhang Xuebao/Journal of Astronautics', 10001328, 0.322, 'Q3', 31, 175, 4571, 483, 506, '1', '1998, 2001-2020', 'Aerospace Engineering (Q3); Space and Planetary Science (Q4)'), (13469, 'Acta medica Indonesiana', 1259326, 0.321, 'Q3', 24, 58, 0, 196, 158, '21', '2004-2020', 'Medicine (miscellaneous) (Q3)'), (13470, 'American Speech', 15272133, 0.321, 'Q1', 30, 17, 842, 46, 60, '2', '1981, 1984, 1996-2020', 'Language and Linguistics (Q1); Communication (Q2); Linguistics and Language (Q2)'), (13471, 'Analytical and Bioanalytical Chemistry Resear', 2383093, 0.321, 'Q3', 10, 11, 593, 157, 92, '15', '2014-2020', 'Analytical Chemistry (Q3); Biochemistry (Q4); Spectroscopy (Q4)'), (13472, 'Asian ESP Journal', 22060979, 0.321, 'Q1', 9, 144, 5967, 119, 111, '3', '2014-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q2); Education (Q3)'), (13473, 'Constitutional Political Economy', 15729966, 0.321, 'Q1', 28, 27, 1553, 36, 62, '2', '1990-2020', 'Philosophy (Q1); Law (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3)'), (13474, 'Experimental and Clinical Transplantation', 13040855, 0.321, 'Q3', 29, 193, 3859, 515, 578, '18', '2003-2020', 'Transplantation (Q3)'), (13475, 'Food and Foodways', 15423484, 0.321, 'Q1', 14, 24, 1083, 46, 51, '3', '1985-1994, 1999, 2001, 2007-2020', 'Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q2); Food Science (Q3); Health (social science) (Q3)'), (13476, 'GE Portuguese Journal of Gastroenterology', 23414545, 0.321, 'Q3', 9, 125, 2494, 170, 168, '16', '2014-2020', 'Gastroenterology (Q3)'), (13477, 'Hunter Gatherer Research', 20563264, 0.321, 'Q2', 4, 7, 310, 37, 41, '3', '2018-2020', 'Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Ecology, Evolution, Behavior and Systematics (Q3)'), (13478, 'International Journal of Listening', 10904018, 0.321, 'Q1', 24, 22, 1154, 59, 48, '3', '1995-2020', 'Language and Linguistics (Q1); Communication (Q2); Applied Psychology (Q3)'), (13479, 'Journal of Access Services', 15367967, 0.321, 'Q2', 11, 28, 244, 23, 52, '2', '2002-2020', 'Library and Information Sciences (Q2)'), (13480, 'Journal of Heterocyclic Chemistry', 22152, 0.321, 'Q3', 59, 393, 16444, 2032, 1110, '2', '1966-2020', 'Organic Chemistry (Q3)'), (13481, 'Journal of the Canadian Dental Association', 14882159, 0.321, 'Q3', 59, 13, 0, 36, 31, '9', '1946-1949, 1979-2020', 'Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (13482, 'Journal of the Southern African Institute of ', 22256253, 0.321, 'Q2', 37, 80, 1891, 386, 392, '27', '1988, 2006-2020', 'Metals and Alloys (Q2); Geotechnical Engineering and Engineering Geology (Q3); Materials Chemistry (Q3)'), (13483, 'Middle East Law and Governance', 18763367, 0.321, 'Q2', 12, 21, 838, 30, 41, '16', '2009-2020', 'Arts and Humanities (miscellaneous) (Q2); Law (Q2); Sociology and Political Science (Q2)'), (13484, 'Natural Gas Industry B', 23528559, 0.321, 'Q3', 16, 77, 1924, 299, 214, '16', '2014-2020', 'Energy Engineering and Power Technology (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3); Modeling and Simulation (Q3); Process Chemistry and Technology (Q3)'), (13485, 'Nordic Journal of Music Therapy', 19448260, 0.321, 'Q2', 24, 40, 1986, 83, 70, '3', '2001-2020', 'Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Complementary and Alternative Medicine (Q2); Psychiatric Mental Health (Q3)'), (13486, 'Psicologia Sociale', 18272517, 0.321, 'Q3', 9, 21, 1460, 54, 54, '7', '2006-2020', 'Social Psychology (Q3)'), (13487, 'Quality in Ageing and Older Adults', 20428766, 0.321, 'Q2', 17, 25, 821, 78, 66, '3', '2000-2020', 'Community and Home Care (Q2); Care Planning (Q3); Gerontology (Q3)'), (13488, 'Review of Communication', 15358593, 0.321, 'Q2', 13, 37, 0, 74, 65, '2', '2010-2020', 'Communication (Q2)'), (13489, 'Studies in Informatics and Control', 12201766, 0.321, 'Q2', 22, 36, 927, 296, 142, '43', '2010-2020', 'Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2)'), (13490, 'Studies on Russian Economic Development', 10757007, 0.321, 'Q3', 13, 89, 1595, 260, 260, '10', '1993, 1995, 2006-2020', 'Economics and Econometrics (Q3)'), (13491, 'Thai Forest Bulletin (Botany)', 2465423, 0.321, 'Q2', 4, 28, 496, 35, 65, '40', '2015-2020', 'Forestry (Q2); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (13492, 'Theoretical Linguistics', 16134060, 0.321, 'Q1', 27, 19, 511, 33, 36, '5', '1974-1988, 1990-2019', 'Language and Linguistics (Q1); Linguistics and Language (Q2)'), (13493, 'Aquatic Geochemistry', 13806165, 0.32, 'Q3', 53, 23, 1275, 56, 49, '16', '1995-2020', 'Geochemistry and Petrology (Q3); Geophysics (Q3)'), (13494, 'Canadian Metallurgical Quarterly', 18791395, 0.32, 'Q2', 36, 36, 987, 183, 150, '3', '1962-1977, 1979-2020', 'Industrial and Manufacturing Engineering (Q2); Metals and Alloys (Q2)'), (13495, 'Computation', 20793197, 0.32, 'Q2', 17, 107, 4550, 392, 162, '19', '2013-2020', 'Computer Science (miscellaneous) (Q2); Applied Mathematics (Q3); Modeling and Simulation (Q3); Theoretical Computer Science (Q3)'), (13496, 'Computer Research and Modeling', 20767633, 0.32, 'Q3', 7, 93, 2447, 157, 192, '10', '2017-2020', 'Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Modeling and Simulation (Q3)'), (13497, 'Critical Care Nursing Clinics of North Americ', 8995885, 0.32, 'Q3', 29, 51, 1964, 188, 140, '3', '1989-2020', 'Critical Care Nursing (Q3)'), (13498, 'Economic and Political Weekly', 23498846, 0.32, 'Q2', 54, 839, 9384, 659, 1788, '4', '1978-1980, 1982-1986, 1993, 1995-1997, 2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13499, 'Fluid Dynamics and Materials Processing', 1555256, 0.32, 'Q3', 16, 86, 2061, 159, 72, '2', '2007-2020', 'Materials Science (miscellaneous) (Q3)'), (13500, 'Gyroscopy and Navigation', 20751109, 0.32, 'Q2', 20, 36, 1014, 188, 110, '10', '2010-2020', 'Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Control and Systems Engineering (Q3)'), (13501, 'International Journal of Thermophysics', 15729567, 0.32, 'Q3', 68, 166, 6360, 567, 427, '2', '1980-2020', 'Condensed Matter Physics (Q3)'), (13502, 'International Journal on Semantic Web and Inf', 15526283, 0.32, 'Q3', 33, 19, 1014, 155, 82, '2', '2005-2020', 'Computer Networks and Communications (Q3); Information Systems (Q3)'), (13503, 'Journal of Chemical Sciences', 9743626, 0.32, 'Q3', 52, 156, 6817, 714, 481, '4', '1980-1981, 1986-1987, 1990, 1993, 1996-1997, 2000, 2002-2020', 'Chemistry (miscellaneous) (Q3)'), (13504, 'Journal of EMDR Practice and Research', 1933320, 0.32, 'Q3', 15, 21, 1098, 61, 68, '2', '2011, 2014-2020', 'Psychiatry and Mental Health (Q3); Biological Psychiatry (Q4); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4); Neuropsychology and Physiological Psychology (Q4)'), (13505, 'Journal of the World Federation of Orthodonti', 22124438, 0.32, 'Q3', 8, 42, 1186, 58, 74, '16', '1970, 2012-2020', 'Orthodontics (Q3)'), (13506, 'Procedia Environmental Science, Engineering a', 23929545, 0.32, 'Q3', 8, 70, 1464, 125, 141, '43', '2014-2019', 'Environmental Science (miscellaneous) (Q3)'), (13507, 'Review of Pacific Basin Financial Markets and', 17936705, 0.32, 'Q3', 16, 35, 1646, 76, 82, '37', '2003-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (13508, 'Theoretical Foundations of Chemical Engineeri', 405795, 0.32, 'Q3', 23, 157, 3899, 318, 405, '10', '1974-1992, 1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (13509, 'Tourism, Culture and Communication', 1098304, 0.32, 'Q1', 15, 20, 1203, 55, 68, '2', '2006-2020', 'Cultural Studies (Q1); Communication (Q2); Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (13510, 'Transactions of the Royal Society of South Af', 35919, 0.32, 'Q2', 24, 27, 1761, 96, 76, '3', '1909-1910, 1913-1915, 1917-1919, 1921-1926, 1928-1940, 1942-1943, 1945-1949, 1951, 1954-1964, 1967-1', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Multidisciplinary (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Medicine (miscellaneou'), (13511, 'Twentieth-Century Music', 14785722, 0.32, 'Q1', 13, 14, 655, 28, 57, '3', '2004-2010, 2012-2020', 'Music (Q1)'), (13512, 'World Patent Information', 1722190, 0.32, 'Q2', 30, 30, 809, 126, 104, '3', '1979-2020', 'Library and Information Sciences (Q2); Bioengineering (Q3); Computer Science Applications (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Process Chemistry and Technology (Q3'), (13513, 'Africana Linguistica', 654124, 0.319, 'Q1', 9, 0, 0, 6, 14, '24', '2008-2018', 'Language and Linguistics (Q1); Linguistics and Language (Q2)'), (13514, 'Agricultural Research', 22497218, 0.319, 'Q3', 23, 95, 3656, 186, 162, '19', '2012-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3); Plant Science (Q3)'), (13515, 'Agriculture and Natural Resources', 2452316, 0.319, 'Q2', 13, 74, 2580, 411, 264, '40', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (13516, 'Australian Journal of Chemistry', 14450038, 0.319, 'Q3', 77, 166, 8200, 498, 426, '11', '1948-2020', 'Chemistry (miscellaneous) (Q3)'), (13517, 'Caryologia', 87114, 0.319, 'Q2', 29, 31, 1535, 117, 139, '3', '1949-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Genetics (Q4)'), (13518, 'Communist and Post-Communist Studies', 967067, 0.319, 'Q2', 42, 5, 212, 114, 95, '3', '1993-2020', 'Sociology and Political Science (Q2); Development (Q3)'), (13519, 'Computer Journal', 14602067, 0.319, 'Q2', 64, 121, 4405, 580, 346, '3', '1967-2020', 'Computer Science (miscellaneous) (Q2)'), (13520, 'Conflict and Society', 21644543, 0.319, 'Q1', 2, 14, 827, 9, 12, '2', '2019', 'Cultural Studies (Q1); Anthropology (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13521, 'Current Drug Discovery Technologies', 15701638, 0.319, 'Q3', 43, 70, 4231, 180, 101, '52', '2004-2020', 'Drug Discovery (Q3)'), (13522, 'European Journal of Educational Research', 21658714, 0.319, 'Q3', 9, 132, 6972, 375, 192, '16', '2018-2020', 'Education (Q3)'), (13523, 'Gender Issues', 19364717, 0.319, 'Q2', 26, 28, 1505, 62, 58, '2', '1997-2003, 2005-2020', 'Gender Studies (Q2)'), (13524, 'Historia y Politica', 15750361, 0.319, 'Q1', 7, 27, 1479, 37, 76, '12', '1999, 2001, 2009-2020', 'History (Q1); Sociology and Political Science (Q2)'), (13525, 'Human Systems Management', 1672533, 0.319, 'Q3', 28, 43, 2551, 192, 105, '16', '1980-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (13526, 'IDCases', 22142509, 0.319, 'Q3', 13, 333, 4452, 403, 470, '3', '2014-2020', 'Infectious Diseases (Q3)'), (13527, 'Journal of Adult and Continuing Education', 14779714, 0.319, 'Q3', 6, 31, 1418, 39, 45, '2', '2014, 2016-2020', 'Education (Q3)'), (13528, 'Journal of Complementary and Integrative Medi', 15533840, 0.319, 'Q2', 20, 84, 3466, 261, 159, '5', '2006-2020', 'Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3)'), (13529, 'Journal of Financial Research', 2702592, 0.319, 'Q3', 49, 28, 1552, 75, 65, '3', '1978-2020', 'Accounting (Q3); Finance (Q3)'), (13530, 'Journal of Marine Engineering and Technology', 20464177, 0.319, 'Q3', 16, 44, 1401, 150, 94, '3', '2002-2006, 2009-2020', 'Ocean Engineering (Q3)'), (13531, 'Journal of Modern Italian Studies', 14699583, 0.319, 'Q1', 24, 33, 1627, 81, 89, '3', '1995-2020', 'Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13532, 'Modern Language Quarterly', 267929, 0.319, 'Q1', 22, 20, 1225, 14, 59, '2', '1996-2020', 'Literature and Literary Theory (Q1)'), (13533, 'Nefrologia', 19892284, 0.319, 'Q3', 35, 9, 0, 45, 28, '12', '1981-2020', 'Nephrology (Q3)'), (13534, 'Ornithological Science', 13470558, 0.319, 'Q3', 19, 36, 1222, 38, 55, '6', '2002-2007, 2009-2020', 'Animal Science and Zoology (Q3)'), (13535, 'Photobiomodulation, Photomedicine, and Laser ', 25785478, 0.319, 'Q3', 9, 121, 4131, 201, 101, '2', '2019-2020', 'Biomedical Engineering (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (13536, 'Polish Journal of Management Studies', 20817452, 0.319, 'Q3', 21, 140, 5516, 742, 366, '17', '2010-2020', 'Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (13537, 'Psicologia Conductual', 11329483, 0.319, 'Q3', 24, 27, 1551, 92, 88, '12', '1996-2020', 'Clinical Psychology (Q3); Experimental and Cognitive Psychology (Q4)'), (13538, 'Research in Psychotherapy: Psychopathology, P', 22398031, 0.319, 'Q3', 12, 34, 1675, 74, 88, '7', '2011-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (13539, 'Revista da Associacao Medica Brasileira', 1044230, 0.319, 'Q3', 37, 327, 6047, 619, 564, '14', '1976, 1992-2020', 'Medicine (miscellaneous) (Q3)'), (13540, 'Therya', 20073364, 0.319, 'Q3', 7, 36, 2067, 94, 123, '30', '2015-2020', 'Animal Science and Zoology (Q3)'), (13541, 'Ultrastructural Pathology', 15210758, 0.319, 'Q3', 42, 52, 2111, 142, 124, '3', '1980-2020', 'Pathology and Forensic Medicine (Q3); Structural Biology (Q4)'), (13542, 'Advances in Mechanical Engineering', 16878132, 0.318, 'Q3', 40, 371, 11851, 3276, 2213, '2', '2009-2020', 'Mechanical Engineering (Q3)'), (13543, 'Agypten und Levante', 18135145, 0.318, 'Q1', 16, 46, 3220, 38, 58, '28', '2003-2012, 2014-2018', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (13544, 'American Journal of Mathematical and Manageme', 1966324, 0.318, 'Q3', 16, 38, 959, 60, 75, '3', '1981-2011, 2013-2020', 'Applied Mathematics (Q3); Business, Management and Accounting (miscellaneous) (Q3)'), (13545, 'Clinical Dysmorphology', 14735717, 0.318, 'Q3', 28, 66, 652, 101, 142, '3', '1992-2020', 'Anatomy (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3); Genetics (clinical) (Q4)'), (13546, 'Comparative Studies of South Asia, Africa and', 1548226, 0.318, 'Q2', 26, 69, 2315, 61, 131, '2', '1996-2020', 'Political Science and International Relations (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (13547, 'Criminology, Criminal Justice, Law and Societ', 2332886, 0.318, 'Q2', 24, 10, 692, 39, 51, '2', '2014-2020', 'Sociology and Political Science (Q2)'), (13548, 'Digital Education Review', 20139144, 0.318, 'Q3', 14, 21, 1094, 103, 74, '12', '2010-2019', 'Computer Science Applications (Q3); Education (Q3)'), (13549, 'E a M: Ekonomie a Management', 12123609, 0.318, 'Q2', 22, 55, 2761, 244, 174, '31', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Business and International Management (Q3); Strategy and Management (Q3)'), (13550, 'East Asia', 18746284, 0.318, 'Q2', 18, 23, 1304, 46, 59, '16', '1996-2020', 'Political Science and International Relations (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (13551, 'Estudios Sobre Educacion', 15787001, 0.318, 'Q3', 12, 26, 1289, 70, 62, '12', '2008-2019', 'Education (Q3)'), (13552, 'Humanistic Psychologist', 15473333, 0.318, 'Q3', 25, 46, 1090, 58, 71, '2', '1985-2020', 'Applied Psychology (Q3); Social Psychology (Q3)'), (13553, 'International Journal of Adolescent Medicine ', 3340139, 0.318, 'Q3', 38, 235, 7718, 305, 302, '5', '1985-1989, 1991-1995, 1997-2020', 'Pediatrics, Perinatology and Child Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13554, 'International Journal of Process Management a', 14606739, 0.318, 'Q3', 15, 26, 1215, 81, 75, '3', '2005-2009, 2013-2014, 2020', 'Business and International Management (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)'), (13555, 'IRAL - International Review of Applied Lingui', 19042, 0.318, 'Q1', 43, 29, 1763, 41, 76, '5', '1963-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q2)'), (13556, 'Journal of Ancient Near Eastern Religions', 15692124, 0.318, 'Q1', 12, 4, 170, 13, 23, '16', '2001-2019', 'History (Q1); Religious Studies (Q1)'), (13557, 'Journal of Biological Physics', 15730689, 0.318, 'Q3', 46, 24, 951, 128, 100, '16', '1973-1993, 1995-1997, 1999-2020', 'Atomic and Molecular Physics, and Optics (Q3); Biophysics (Q3); Cell Biology (Q4); Molecular Biology (Q4)'), (13558, 'Journal of Electrical and Computer Engineerin', 20900147, 0.318, 'Q2', 25, 61, 1909, 441, 195, '2', '2010-2020', 'Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q2); Signal Processing (Q3)'), (13559, 'Management Research', 15365433, 0.318, 'Q3', 18, 16, 1029, 50, 78, '3', '2003-2020', 'Business and International Management (Q3); Strategy and Management (Q3)'), (13560, 'Minerva Stomatologica', 264970, 0.318, 'Q3', 29, 53, 1695, 114, 108, '7', '1952-1955, 1961, 1965-2020', 'Medicine (miscellaneous) (Q3); Oral Surgery (Q3); Otorhinolaryngology (Q3); Surgery (Q3)'), (13561, 'Nutrition and Food Science', 346659, 0.318, 'Q3', 30, 95, 4556, 425, 315, '3', '1971-2020', 'Food Science (Q3); Nutrition and Dietetics (Q3)'), (13562, 'Pacific Accounting Review', 20415494, 0.318, 'Q3', 22, 30, 2054, 115, 72, '3', '1997, 1999-2020', 'Accounting (Q3); Finance (Q3)'), (13563, 'Polimeros', 1041428, 0.318, 'Q3', 26, 40, 1581, 280, 167, '14', '2006-2020', 'Chemical Engineering (miscellaneous) (Q3); Organic Chemistry (Q4)'), (13564, 'Radiophysics and Quantum Electronics', 338443, 0.318, 'Q2', 24, 52, 1478, 205, 276, '2', '1967-2020', 'Electrical and Electronic Engineering (Q2); Astronomy and Astrophysics (Q3); Electronic, Optical and Magnetic Materials (Q3); Nuclear and High Energy Physics (Q3); Statistical and Nonlinear Physics (Q'), (13565, 'Revista de Comunicacion', 16840933, 0.318, 'Q2', 3, 35, 1590, 54, 54, '68', '2018-2020', 'Communication (Q2)'), (13566, 'Theory and Applications of Graphs', 24709859, 0.318, 'Q3', 3, 12, 186, 19, 25, '2', '2018-2020', 'Discrete Mathematics and Combinatorics (Q3); Numerical Analysis (Q3); Theoretical Computer Science (Q3)'), (13567, 'Water Science and Technology: Water Supply', 16069749, 0.318, 'Q3', 39, 316, 10170, 786, 644, '3', '2001-2020', 'Water Science and Technology (Q3)'), (13568, 'Applied Rheology', 16178106, 0.317, 'Q3', 29, 12, 482, 63, 67, '5', '1996-1997, 1999-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)'), (13569, 'Atomic Energy', 15738205, 0.317, 'Q3', 16, 112, 1175, 153, 412, '5', '1956-1963, 1992-2020', 'Nuclear Energy and Engineering (Q3)'), (13570, 'Campus Virtuales', 22551514, 0.317, 'Q3', 7, 20, 803, 105, 60, '12', '2017-2020', 'Computer Science Applications (Q3); Education (Q3)'), (13571, 'Eurasip Journal on Advances in Signal Process', 16876172, 0.317, 'Q2', 88, 49, 2039, 437, 216, '2', '2007-2020', 'Electrical and Electronic Engineering (Q2); Hardware and Architecture (Q3); Signal Processing (Q3)'), (13572, 'Functions of Language', 929998, 0.317, 'Q1', 22, 13, 606, 35, 35, '16', '1994-2020', 'Language and Linguistics (Q1); Linguistics and Language (Q2)'), (13573, 'Geomechanik und Tunnelbau', 18657362, 0.317, 'Q3', 18, 56, 691, 99, 184, '5', '2009-2020', 'Civil and Structural Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (13574, 'Indian Journal of Critical Care Medicine', 1998359, 0.317, 'Q3', 30, 139, 3163, 519, 504, '4', '2004-2020', 'Critical Care and Intensive Care Medicine (Q3)'), (13575, 'Indian Journal of Nephrology', 9714065, 0.317, 'Q3', 24, 109, 1572, 247, 262, '4', '2009-2020', 'Nephrology (Q3)'), (13576, 'International Journal of Education and the Ar', 15298094, 0.317, 'Q1', 17, 32, 1756, 54, 79, '2', '2019-2020', 'Literature and Literary Theory (Q1); Music (Q1); Visual Arts and Performing Arts (Q1); Education (Q3)'), (13577, 'International Journal of Technoethics', 19473451, 0.317, 'Q2', 12, 10, 591, 44, 33, '2', '2010-2020', 'Engineering (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (13578, 'Journal of Hohai University', 10001980, 0.317, 'Q3', 10, 80, 1918, 160, 248, '1', '2012-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Water Science and Technology (Q3)'), (13579, 'Journal of Research in Health Sciences', 22287809, 0.317, 'Q3', 20, 36, 1000, 165, 95, '15', '2009-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3); Epidemiology (Q4)'), (13580, 'Journal of Superconductivity and Novel Magnet', 15571947, 0.317, 'Q3', 47, 490, 18051, 2034, 1444, '2', '1996-2020', 'Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (13581, 'Magnesium Research', 19524021, 0.317, 'Q4', 46, 15, 340, 60, 41, '8', '1988-2020', 'Biochemistry (Q4); Clinical Biochemistry (Q4); Molecular Biology (Q4)'), (13582, 'Practice', 17424909, 0.317, 'Q2', 19, 35, 1339, 55, 63, '3', '1987-1992, 1994-2006, 2008-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (13583, 'Proceedings of the Institution of Mechanical ', 23977922, 0.317, 'Q2', 18, 16, 678, 67, 31, '3', '2017-2020', 'Electrical and Electronic Engineering (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)'), (13584, 'Revista Chilena de Derecho y Tecnologia', 7192576, 0.317, 'Q2', 3, 15, 488, 26, 38, '45', '2017-2019', 'Law (Q2); Computer Networks and Communications (Q3); Information Systems (Q3)'), (13585, 'Revista Colombiana de Psicologia', 1215469, 0.317, 'Q2', 10, 17, 1029, 65, 57, '47', '2011-2020', 'Social Sciences (miscellaneous) (Q2); Psychology (miscellaneous) (Q3)'), (13586, 'Revista de Derecho', 7180950, 0.317, 'Q2', 8, 38, 1551, 29, 101, '45', '2006-2020', 'Law (Q2)'), (13587, 'Revista de la Asociacion Geologica Argentina', 44822, 0.317, 'Q3', 39, 39, 2614, 101, 112, '46', '1992-1994, 1996-2020', 'Geology (Q3); Stratigraphy (Q3)'), (13588, 'Russian Physics Journal', 15739228, 0.317, 'Q3', 24, 315, 5433, 754, 949, '2', '1992-2003, 2005-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13589, 'Solar System Research', 380946, 0.317, 'Q3', 29, 72, 2135, 170, 195, '10', '1969-1971, 1996-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q4)'), (13590, 'South African Journal of Science', 3708462, 0.317, 'Q2', 61, 145, 3916, 406, 230, '27', '1973-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3)'), (13591, 'Acta Chromatographica', 12332356, 0.316, 'Q3', 28, 45, 1493, 185, 136, '50', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (13592, 'Acta Clinica Belgica', 17843286, 0.316, 'Q3', 37, 164, 4645, 266, 247, '3', '1946-2020', 'Medicine (miscellaneous) (Q3)'), (13593, 'Acta Medica Portuguesa', 870399, 0.316, 'Q3', 21, 256, 4673, 359, 356, '26', '1979-1981, 1983-1986, 1988-2020', 'Medicine (miscellaneous) (Q3)'), (13594, 'African Security', 19392214, 0.316, 'Q2', 15, 20, 0, 44, 41, '3', '2008-2020', 'Political Science and International Relations (Q2); Safety Research (Q3)'), (13595, 'AIMS Agriculture and Food', 24712086, 0.316, 'Q2', 8, 66, 3252, 196, 117, '2', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Food Science (Q3)'), (13596, 'Apunts. Educacion Fisica y Deportes', 15774015, 0.316, 'Q1', 9, 45, 1227, 137, 145, '12', '2000, 2002, 2013-2020', 'Cultural Studies (Q1); Education (Q3)'), (13597, 'Babel', 5219744, 0.316, 'Q1', 13, 55, 1575, 45, 116, '16', '1955-1971, 1973-1985, 1987-1990, 1995-2020', 'Language and Linguistics (Q1); Communication (Q2); Linguistics and Language (Q2)'), (13598, 'Contemporary Political Theory', 14708914, 0.316, 'Q2', 14, 54, 2707, 58, 79, '3', '2009-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13599, 'Eos', 963941, 0.316, 'Q3', 86, 0, 0, 90, 70, '2', '1920-2019', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (13600, 'Geography, Environment, Sustainability', 25421565, 0.316, 'Q3', 8, 77, 3220, 176, 133, '10', '2015-2020', 'Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (13601, 'Information Sciences Letters', 2090956, 0.316, 'Q2', 5, 26, 709, 28, 14, '2', '2019-2020', 'Library and Information Sciences (Q2); Applied Mathematics (Q3); Computer Science Applications (Q3)'), (13602, 'International Journal of Interactive Mobile T', 18657923, 0.316, 'Q3', 16, 278, 9090, 815, 326, '5', '2010, 2014-2020', 'Computer Networks and Communications (Q3); Computer Science Applications (Q3); E-learning (Q3)'), (13603, 'International Journal of Learning and Intelle', 14794861, 0.316, 'Q3', 17, 22, 1178, 87, 64, '3', '2004-2020', 'Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (13604, 'International Journal of Nuclear Energy Scien', 17416361, 0.316, 'Q3', 12, 15, 307, 40, 74, '3', '2005-2014, 2020', 'Nuclear Energy and Engineering (Q3)'), (13605, 'International Wood Products Journal', 20426445, 0.316, 'Q3', 15, 31, 1064, 104, 91, '3', '2010-2020', 'Forestry (Q3); Materials Science (miscellaneous) (Q3)'), (13606, 'Journal of Plant Registrations', 19365209, 0.316, 'Q3', 21, 65, 1538, 106, 212, '2', '2009-2020', 'Agronomy and Crop Science (Q3); Genetics (Q4)'), (13607, 'Journal of the Asian Pacific Economy', 13547860, 0.316, 'Q2', 27, 77, 3807, 128, 107, '3', '1996-2020', 'Political Science and International Relations (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (13608, 'Journal of the Botanical Research Institute o', 19345259, 0.316, 'Q3', 22, 11, 370, 39, 129, '2', '2007-2019', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (13609, 'Journal of Transnational Management', 15475778, 0.316, 'Q3', 15, 19, 1009, 48, 37, '3', '2005-2020', 'Development (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)'), (13610, 'Ocean Science Journal', 17385261, 0.316, 'Q3', 22, 43, 2091, 159, 161, '13', '2006-2020', 'Oceanography (Q3)'), (13611, 'Pakistan Journal of Botany', 5563321, 0.316, 'Q3', 57, 266, 11077, 877, 924, '34', '1978, 1984-1986, 1996-2020', 'Plant Science (Q3)'), (13612, 'Pakistan Journal of Medical Sciences', 1682024, 0.316, 'Q3', 30, 402, 8288, 964, 870, '34', '2000-2020', 'Medicine (miscellaneous) (Q3)'), (13613, 'Philosophy and Social Criticism', 1914537, 0.316, 'Q1', 30, 92, 3221, 124, 171, '2', '1973-1982, 1984-2020', 'Philosophy (Q1); Sociology and Political Science (Q2)'), (13614, 'Russian Journal of Ecology', 16083334, 0.316, 'Q3', 22, 69, 2450, 198, 243, '10', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (13615, 'Spanish Journal of Soil Science', 22536574, 0.316, 'Q3', 9, 19, 904, 46, 50, '12', '2011-2020', 'Soil Science (Q3)'), (13616, 'Swiss Journal of Psychology', 16620879, 0.316, 'Q3', 31, 15, 657, 43, 40, '19', '1996-2020', 'Psychology (miscellaneous) (Q3)'), (13617, 'Vascular Specialist International', 22887989, 0.316, 'Q3', 3, 50, 747, 27, 40, '13', '2019-2020', 'Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)'), (13618, 'Visual Computer', 14322315, 0.316, 'Q3', 67, 314, 13986, 969, 378, '5', '1985-2020', 'Computer Graphics and Computer-Aided Design (Q3); Computer Vision and Pattern Recognition (Q3); Software (Q3)'), (13619, 'Zeitschrift fur Gastroenterologie', 442771, 0.316, 'Q3', 58, 330, 4225, 350, 311, '5', '1971-2020', 'Gastroenterology (Q3); Medicine (miscellaneous) (Q3)'), (13620, 'Acta Facultatis Xylologiae', 13363824, 0.315, 'Q3', 13, 30, 1031, 108, 88, '53', '2007-2020', 'Forestry (Q3)'), (13621, 'Aerospace medicine and human performance', 23756322, 0.315, 'Q3', 69, 205, 3103, 415, 495, '2', '2015-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13622, 'EconomiA', 23582820, 0.315, 'Q2', 9, 30, 1093, 97, 78, '14', '2013-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (13623, 'Genome Integrity', 20419414, 0.315, 'Q4', 20, 1, 33, 16, 12, '4', '2010-2019', 'Genetics (Q4); Molecular Biology (Q4)'), (13624, 'Israel Medical Association Journal', 15651088, 0.315, 'Q3', 55, 212, 2887, 467, 431, '36', '1999-2020', 'Medicine (miscellaneous) (Q3)'), (13625, 'Journal of Curriculum and Pedagogy', 15505170, 0.315, 'Q3', 12, 47, 1569, 53, 51, '3', '2004-2014, 2016-2020', 'Education (Q3)'), (13626, 'Journal of Global Information Management', 10627375, 0.315, 'Q2', 41, 38, 2833, 172, 100, '2', '2002-2020', 'Information Systems and Management (Q2); Business and International Management (Q3); Computer Science Applications (Q3); E-learning (Q3); Management Science and Operations Research (Q3); Strategy and '), (13627, 'Medicinski Arhiv', 350199, 0.315, 'Q3', 24, 96, 0, 393, 281, '90', '1950, 1952-2020', 'Medicine (miscellaneous) (Q3)'), (13628, 'Moscow University Geology Bulletin', 19348436, 0.315, 'Q3', 9, 62, 1008, 80, 198, '10', '1979, 1984-1985, 1988, 2012-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (13629, 'Promet - Traffic - Traffico', 3535320, 0.315, 'Q2', 19, 67, 2550, 246, 191, '58', '2001-2020', 'Engineering (miscellaneous) (Q2); Civil and Structural Engineering (Q3); Ocean Engineering (Q3)'), (13630, 'Qualitative Sociology Review', 17338077, 0.315, 'Q2', 14, 37, 1919, 51, 99, '17', '2008-2020', 'Social Sciences (miscellaneous) (Q2)'), (13631, 'Serials Librarian', 15411095, 0.315, 'Q2', 16, 78, 65, 75, 165, '2', '1977-2020', 'Library and Information Sciences (Q2)'), (13632, 'Speech, Language and Hearing', 20505728, 0.315, 'Q2', 8, 50, 2147, 75, 83, '3', '2013-2020', 'Linguistics and Language (Q2); Otorhinolaryngology (Q3); Speech and Hearing (Q3)'), (13633, 'Sylwan', 397660, 0.315, 'Q3', 12, 82, 3244, 129, 212, '17', '1979, 2011-2020', 'Forestry (Q3)'), (13634, 'Zeitschrift der Deutschen Gesellschaft fur Ge', 18601804, 0.315, 'Q3', 20, 27, 1858, 65, 80, '5', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (13635, 'Acta Mechanica et Automatica', 18984088, 0.314, 'Q3', 12, 32, 996, 188, 132, '17', '2012-2020', 'Control and Systems Engineering (Q3); Mechanical Engineering (Q3)'), (13636, 'Advances in Condensed Matter Physics', 16878108, 0.314, 'Q3', 26, 20, 585, 232, 188, '2', '2009-2020', 'Condensed Matter Physics (Q3)'), (13637, 'Asian Ethnicity', 14692953, 0.314, 'Q1', 17, 74, 3274, 79, 97, '3', '2008-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q2)'), (13638, 'Asian Journal of Civil Engineering', 15630854, 0.314, 'Q3', 21, 113, 3860, 339, 249, '15', '2008-2020', 'Civil and Structural Engineering (Q3)'), (13639, 'Asian Survey', 44687, 0.314, 'Q2', 47, 1, 20, 106, 200, '2', '1970-2019', 'Sociology and Political Science (Q2); Geography, Planning and Development (Q3)'), (13640, 'Baozha Yu Chongji/Expolosion and Shock Waves', 10011455, 0.314, 'Q3', 29, 146, 3309, 400, 547, '1', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13641, 'Chinese Journal of Organic Chemistry', 2532786, 0.314, 'Q4', 33, 508, 25467, 1560, 1130, '1', '1996-2020', 'Organic Chemistry (Q4)'), (13642, 'Clay Minerals', 98558, 0.314, 'Q3', 68, 29, 1380, 214, 135, '3', '1979-2020', 'Geochemistry and Petrology (Q3)'), (13643, 'Clays and Clay Minerals', 98604, 0.314, 'Q3', 87, 50, 2891, 212, 119, '2', '1968-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geochemistry and Petrology (Q3); Soil Science (Q3); Water Science and Technology (Q3)'), (13644, 'Clinical Cases in Mineral and Bone Metabolism', 17248914, 0.314, 'Q3', 32, 0, 0, 185, 141, '7', '2005-2019', 'Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3)'), (13645, 'Clinical Nephrology', 3010430, 0.314, 'Q3', 75, 118, 2040, 297, 326, '5', '1972-2020', 'Medicine (miscellaneous) (Q3); Nephrology (Q3)'), (13646, 'Computational Linguistics', 8912017, 0.314, 'Q2', 98, 22, 2019, 415, 69, '2', '1985, 1996-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Artificial Intelligence (Q3); Computer Science Applications (Q3)'), (13647, 'Corporate Reputation Review', 13633589, 0.314, 'Q3', 60, 32, 2527, 69, 50, '3', '1997-2020', 'Business and International Management (Q3); Strategy and Management (Q3)'), (13648, 'Current Dermatology Reports', 21624933, 0.314, 'Q3', 13, 38, 2470, 122, 112, '2', '2012-2020', 'Dermatology (Q3)'), (13649, 'International Journal of Applied Psychoanalyt', 17423341, 0.314, 'Q3', 15, 39, 1542, 31, 62, '2', '2009-2020', 'Psychology (miscellaneous) (Q3)'), (13650, 'International Journal of Electronic Customer ', 17500664, 0.314, 'Q3', 12, 9, 562, 60, 30, '3', '2007, 2009-2013', 'Business, Management and Accounting (miscellaneous) (Q3)'), (13651, 'International Journal of Forestry Research', 16879368, 0.314, 'Q3', 8, 32, 1652, 47, 24, '2', '2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Forestry (Q3); Nature and Landscape Conservation (Q3); Plant Science (Q3)'), (13652, 'International Journal of Mechanical Engineeri', 3064190, 0.314, 'Q3', 13, 46, 1174, 74, 73, '3', '1981, 1983-1991, 2000, 2002-2020', 'Education (Q3); Mechanical Engineering (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (13653, 'International Journal of Operational Research', 17457653, 0.314, 'Q3', 27, 77, 3335, 194, 243, '3', '2005-2014, 2020', 'Management Science and Operations Research (Q3)'), (13654, 'International Journal of Renewable Energy Res', 13090127, 0.314, 'Q3', 30, 168, 5910, 1221, 659, '18', '2011-2020', 'Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (13655, 'Journal of Asia-Pacific Business', 15286940, 0.314, 'Q3', 17, 20, 943, 53, 43, '2', '1994-2020', 'Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3)'), (13656, 'Journal of Classical Sociology', 17412897, 0.314, 'Q2', 23, 28, 1126, 57, 61, '3', '2001-2020', 'Sociology and Political Science (Q2)'), (13657, 'Law and History Review', 7382480, 0.314, 'Q1', 28, 38, 2497, 43, 85, '3', '1983-2020', 'History (Q1); Law (Q2)'), (13658, 'Migraciones', 11385774, 0.314, 'Q1', 7, 21, 938, 30, 55, '12', '2012-2020', 'Cultural Studies (Q1); Demography (Q2)'), (13659, 'Moscow University Mathematics Bulletin', 19348444, 0.314, 'Q3', 7, 44, 407, 21, 133, '10', '2007-2020', 'Mathematics (miscellaneous) (Q3)'), (13660, 'Paiguan Jixie Gongcheng Xuebao/Journal of Dra', 16748530, 0.314, 'Q3', 20, 204, 2903, 482, 557, '1', '2010-2020', 'Mechanical Engineering (Q3)'), (13661, 'Plant Physiology Reports', 26622548, 0.314, 'Q3', 18, 67, 3466, 207, 204, '4', '2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3); Cell Biology (Q4); Genetics (Q4); Physiology (Q4)'), (13662, 'Power and Education', 17577438, 0.314, 'Q2', 13, 18, 961, 40, 57, '3', '2009-2020', 'Sociology and Political Science (Q2); Education (Q3)'), (13663, 'Revista Signos', 350451, 0.314, 'Q1', 14, 37, 1614, 53, 85, '45', '2007-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (13664, 'Sociological Spectrum', 2732173, 0.314, 'Q2', 38, 25, 1825, 76, 72, '3', '1981-2020', 'Sociology and Political Science (Q2)'), (13665, 'Spixiana', 1777424, 0.314, 'Q3', 13, 1, 3, 42, 61, '5', '2008-2019', 'Animal Science and Zoology (Q3)'), (13666, 'Theoretical and Applied Mechanics Letters', 20950349, 0.314, 'Q3', 22, 59, 1725, 323, 108, '16', '2011-2020', 'Aerospace Engineering (Q3); Biomedical Engineering (Q3); Civil and Structural Engineering (Q3); Computational Mechanics (Q3); Environmental Engineering (Q3); Mechanical Engineering (Q3); Mechanics of '), (13667, 'Water Resources', 978078, 0.314, 'Q3', 21, 106, 2804, 288, 356, '10', '1970, 1976, 1978-1994, 1996-2020', 'Water Science and Technology (Q3)'), (13668, 'African Journal of Economic and Management St', 20400713, 0.313, 'Q2', 19, 32, 1445, 262, 120, '3', '2010-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)'), (13669, 'Australian Journalism Review', 2517620, 0.313, 'Q2', 12, 20, 936, 41, 53, '3', '2019-2020', 'Communication (Q2)'), (13670, 'Binggong Xuebao/Acta Armamentarii', 10001093, 0.313, 'Q3', 22, 338, 6935, 733, 915, '1', '1982, 1986-1988, 2001-2020', 'Mechanical Engineering (Q3)'), (13671, 'Brazilian Journal of Chemical Engineering', 1046632, 0.313, 'Q3', 52, 66, 2557, 512, 367, '14', '1995-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (13672, 'Bulletin Mathematique de la Societe des Scien', 12203874, 0.313, 'Q3', 20, 33, 533, 70, 111, '43', '2008-2019', 'Mathematics (miscellaneous) (Q3)'), (13673, 'Educational Practice &amp; Theory', 1323577, 0.313, 'Q3', 4, 12, 423, 18, 28, '11', '2014-2020', 'Education (Q3)'), (13674, 'Engineering Computations', 2644401, 0.313, 'Q2', 57, 206, 8187, 773, 484, '3', '1984-2020', 'Engineering (miscellaneous) (Q2); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Software (Q3)'), (13675, 'English in Australia', 46208, 0.313, 'Q1', 12, 8, 283, 28, 65, '11', '2008-2019', 'History (Q1); Linguistics and Language (Q2); Education (Q3)'), (13676, 'European Journal of Hospital Pharmacy', 20479956, 0.313, 'Q2', 14, 153, 3268, 256, 239, '24', '2012-2020', 'Pharmacy (Q2)'), (13677, 'Global Nest Journal', 17907632, 0.313, 'Q3', 30, 74, 2786, 344, 238, '39', '2001, 2004, 2008-2020', 'Environmental Science (miscellaneous) (Q3)'), (13678, 'Global Social Welfare', 21968799, 0.313, 'Q2', 9, 47, 2310, 61, 72, '19', '2014-2020', 'Sociology and Political Science (Q2)'), (13679, 'Industrial Lubrication and Tribology', 368792, 0.313, 'Q3', 30, 152, 3113, 634, 546, '3', '1948-2020', 'Energy (miscellaneous) (Q3); Mechanical Engineering (Q3); Surfaces, Coatings and Films (Q3)'), (13680, 'International Journal of Coal Preparation and', 19392699, 0.313, 'Q3', 28, 136, 4594, 290, 158, '3', '1999-2000, 2003-2020', 'Chemical Engineering (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geotechnical Engineering and Engineering Geology (Q3); Mechanical Engineering (Q3)'), (13681, 'International Journal of Health Promotion and', 14635240, 0.313, 'Q3', 16, 61, 1935, 104, 78, '3', '1999-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (13682, 'Journal of Agricultural Safety and Health', 10747583, 0.313, 'Q2', 33, 11, 352, 49, 51, '2', '1997-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Public Health, Environmental and Occupational Health (Q3); Safety, Risk, Reliability and Quality (Q3)'), (13683, 'Journal of Educational, Cultural and Psycholo', 20377924, 0.313, 'Q3', 7, 30, 989, 55, 76, '7', '2014-2020', 'Developmental and Educational Psychology (Q3); Education (Q3); Social Psychology (Q3)'), (13684, 'Journal of Emergencies, Trauma and Shock', 9742700, 0.313, 'Q3', 29, 77, 1330, 160, 127, '4', '2011-2020', 'Emergency Medicine (Q3)'), (13685, 'Journal of Obstetrics and Gynecology of India', 9719202, 0.313, 'Q3', 17, 115, 1486, 263, 286, '4', '2010-2020', 'Obstetrics and Gynecology (Q3)'), (13686, 'Minimax Theory and its Applications', 21991413, 0.313, 'Q3', 7, 9, 246, 57, 54, '5', '2016-2020', 'Analysis (Q3); Computational Mathematics (Q3); Control and Optimization (Q3)'), (13687, 'Science of Computer Programming', 1676423, 0.313, 'Q3', 64, 83, 3377, 489, 260, '16', '1981-2021', 'Software (Q3)'), (13688, 'Tropical Life Sciences Research', 19853718, 0.313, 'Q2', 16, 30, 1473, 129, 93, '23', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (13689, 'Vision', 9722629, 0.313, 'Q3', 9, 66, 2746, 171, 130, '3', '2016-2020', 'Business and International Management (Q3); Strategy and Management (Q3)'), (13690, 'World Review of Intermodal Transportation Res', 17494737, 0.313, 'Q3', 14, 20, 926, 75, 53, '3', '2007-2011, 2013, 2020', 'Geography, Planning and Development (Q3); Transportation (Q3)'), (13691, 'Wuhan Daxue Xuebao (Xinxi Kexue Ban)/Geomatic', 16718860, 0.313, 'Q2', 29, 238, 5713, 732, 831, '1', '1998, 2001-2020', 'Computer Science (miscellaneous) (Q2); Earth-Surface Processes (Q3)'), (13692, 'Advances in Science and Technology of Water R', 10067647, 0.312, 'Q3', 9, 85, 2159, 162, 270, '1', '2013-2020', 'Water Science and Technology (Q3)'), (13693, 'American Journal of Law and Medicine', 988588, 0.312, 'Q2', 28, 26, 0, 54, 65, '2', '1975-2020', 'Law (Q2); Health (social science) (Q3); Medicine (miscellaneous) (Q3)'), (13694, 'Biochemical Systematics and Ecology', 3051978, 0.312, 'Q3', 69, 167, 6629, 435, 324, '3', '1973-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Biochemistry (Q4)'), (13695, 'Cogent Engineering', 23311916, 0.312, 'Q2', 24, 197, 7757, 1061, 576, '3', '2014-2020', 'Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Chemical Engineering (miscellaneous) (Q3)'), (13696, 'Copenhagen Journal of Asian Studies', 13954199, 0.312, 'Q2', 13, 10, 328, 21, 17, '25', '1995-1998, 2000-2007, 2009-2018, 2020', 'Political Science and International Relations (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (13697, 'Curator', 21516952, 0.312, 'Q1', 8, 48, 1270, 89, 78, '2', '2015-2020', 'Conservation (Q1); Museology (Q1)'), (13698, 'Differential Equations and Dynamical Systems', 9713514, 0.312, 'Q3', 18, 161, 4681, 148, 127, '4', '2008-2020', 'Analysis (Q3); Applied Mathematics (Q3)'), (13699, 'Environmental Geosciences', 10759565, 0.312, 'Q3', 30, 6, 252, 32, 25, '2', '1995, 1998-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)'), (13700, 'Hacettepe Journal of Mathematics and Statisti', 2651477, 0.312, 'Q3', 26, 174, 3761, 384, 367, '18', '2008-2020', 'Analysis (Q3); Geometry and Topology (Q3); Statistics and Probability (Q3); Algebra and Number Theory (Q4)'), (13701, 'Hamostaseologie', 25675761, 0.312, 'Q4', 33, 89, 4422, 135, 118, '5', '1981-2020', 'Hematology (Q4)'), (13702, 'IISE Transactions on Healthcare Systems Engin', 24725579, 0.312, 'Q3', 19, 31, 1442, 90, 83, '2', '2017-2020', 'Public Health, Environmental and Occupational Health (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)'), (13703, 'Interdisciplinary Journal of Information, Kno', 15551237, 0.312, 'Q2', 22, 12, 767, 128, 54, '2', '2006-2019', 'Computer Science (miscellaneous) (Q2); Information Systems and Management (Q2)'), (13704, 'International Journal of Art and Design Educa', 14768062, 0.312, 'Q1', 25, 62, 2034, 103, 149, '3', '1996-2020', 'Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q2); Education (Q3)'), (13705, 'International Journal of Cast Metals Research', 17431336, 0.312, 'Q2', 38, 31, 861, 111, 113, '3', '1996-2020', 'Metals and Alloys (Q2); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (13706, 'International Journal of Corrosion', 16879333, 0.312, 'Q3', 18, 5, 232, 117, 78, '2', '2010-2020', 'Materials Science (miscellaneous) (Q3); Process Chemistry and Technology (Q3)'), (13707, 'Iranian Journal of Fisheries Sciences', 15622916, 0.312, 'Q3', 20, 227, 9400, 217, 218, '15', '2008-2020', 'Aquatic Science (Q3)'), (13708, 'Journal of Coordination Chemistry', 10290389, 0.312, 'Q3', 50, 250, 12815, 1234, 801, '3', '1971-2020', 'Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (13709, 'Journal of Food and Nutrition Research', 13368672, 0.312, 'Q3', 24, 40, 1283, 155, 120, '53', '2006-2020', 'Food Science (Q3); Nutrition and Dietetics (Q3)'), (13710, 'Journal of Nonlinear Functional Analysis', 2052532, 0.312, 'Q3', 7, 48, 1214, 115, 153, '3', '2017-2019', 'Analysis (Q3); Control and Optimization (Q3); Fluid Flow and Transfer Processes (Q3); Geometry and Topology (Q3); Numerical Analysis (Q3); Algebra and Number Theory (Q4)'), (13711, 'Justice System Journal', 98261, 0.312, 'Q2', 20, 29, 1307, 42, 60, '3', '1988, 1990-1991, 1993-2020', 'Law (Q2)'), (13712, 'Molecular and Cellular Toxicology', 20928467, 0.312, 'Q2', 21, 48, 1705, 195, 150, '5', '2010-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Pathology and Forensic Medicine (Q3); Public Health, Environmental and Occupational Health (Q3); Health, Toxicology and Mutagenesis (Q4'), (13713, 'Plant Breeding and Biotechnology', 22879358, 0.312, 'Q3', 5, 38, 1707, 87, 82, '13', '2015, 2018-2020', 'Biotechnology (Q3); Plant Science (Q3)'), (13714, 'Polish Journal of Microbiology', 17331331, 0.312, 'Q3', 34, 52, 1920, 253, 182, '17', '2004-2020', 'Applied Microbiology and Biotechnology (Q3); Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3); Microbiology (Q4)'), (13715, 'Population Review', 32471, 0.312, 'Q2', 10, 9, 462, 21, 25, '2', '1988, 2009-2020', 'Demography (Q2)'), (13716, 'Revista Mexicana de Sociologia', 1882503, 0.312, 'Q2', 10, 47, 1593, 45, 83, '30', '1976, 1978-1979, 1981, 1983, 1985, 1988, 1990, 1993, 1995-1996, 2011-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (13717, 'Studies on Neotropical Fauna and Environment', 17445140, 0.312, 'Q3', 33, 68, 3131, 72, 80, '3', '1976-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (13718, 'Arachnology', 20509936, 0.311, 'Q3', 8, 38, 1156, 46, 95, '3', '2013-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (13719, 'Chinese Journal of Agrometeorology', 10006362, 0.311, 'Q3', 8, 44, 1411, 174, 225, '1', '2016-2020', 'Agronomy and Crop Science (Q3); Forestry (Q3); Atmospheric Science (Q4)'), (13720, 'Electronic Journal of Applied Statistical Ana', 20705948, 0.311, 'Q3', 12, 38, 1454, 96, 88, '7', '2008-2020', 'Modeling and Simulation (Q3); Statistics and Probability (Q3)'), (13721, 'Fundamenta Informaticae', 1692968, 0.311, 'Q3', 67, 87, 2700, 636, 398, '16', '1988-1991, 1993-2020', 'Computational Theory and Mathematics (Q3); Information Systems (Q3); Theoretical Computer Science (Q3); Algebra and Number Theory (Q4)'), (13722, 'Hospital practice (1995)', 21548331, 0.311, 'Q3', 24, 48, 0, 159, 119, '3', '1995-2000, 2009-2020', 'Medicine (miscellaneous) (Q3)'), (13723, 'International Anesthesiology Clinics', 205907, 0.311, 'Q3', 32, 46, 2315, 102, 128, '2', '1962-2020', 'Anesthesiology and Pain Medicine (Q3)'), (13724, 'International Journal of Automotive and Mecha', 22298649, 0.311, 'Q2', 25, 69, 2257, 351, 244, '23', '2010-2020', 'Automotive Engineering (Q2); Mechanical Engineering (Q3)'), (13725, 'International Journal of Developmental Disabi', 20473877, 0.311, 'Q3', 20, 104, 4838, 132, 130, '3', '2012-2020', 'Developmental and Educational Psychology (Q3); Psychiatry and Mental Health (Q3)'), (13726, 'International Journal of Politics, Culture an', 15733416, 0.311, 'Q2', 25, 62, 3886, 70, 74, '2', '1987-2005, 2008-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13727, 'Invertebrate Reproduction and Development', 21570272, 0.311, 'Q3', 38, 30, 1306, 75, 95, '3', '1989-2020', 'Animal Science and Zoology (Q3); Developmental Biology (Q4)'), (13728, 'Iranian Journal of Catalysis', 23454865, 0.311, 'Q4', 18, 51, 2028, 236, 115, '15', '2012-2020', 'Catalysis (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4)'), (13729, 'Journal of Contemporary Eastern Asia', 23839449, 0.311, 'Q2', 3, 8, 305, 33, 33, '13', '2018-2020', 'Communication (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2); Computer Networks and Communications (Q3)'), (13730, 'Journal of Ecological Engineering', 22998993, 0.311, 'Q3', 19, 293, 8424, 927, 706, '17', '2013-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Environmental Science (miscellaneous) (Q3)'), (13731, 'Journal of Inclusion Phenomena and Macrocycli', 15731111, 0.311, 'Q3', 58, 74, 3472, 381, 265, '16', '1999-2020', 'Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Food Science (Q3)'), (13732, 'Journal of Medical Ultrasound', 9296441, 0.311, 'Q3', 14, 66, 1193, 141, 125, '37', '1994-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (13733, 'Journal of The Institution of Engineers (Indi', 22500545, 0.311, 'Q2', 15, 102, 2954, 336, 259, '4', '2012-2020', 'Industrial and Manufacturing Engineering (Q2); Aerospace Engineering (Q3); Mechanical Engineering (Q3); Ocean Engineering (Q3)'), (13734, 'Journal of Vascular Nursing', 15326578, 0.311, 'Q1', 23, 36, 898, 103, 100, '2', '1990-2020', 'Medical and Surgical Nursing (Q1)'), (13735, 'Monatshefte fur Chemie', 269247, 0.311, 'Q3', 65, 189, 7980, 1072, 703, '28', '1880-1888, 1890-1912, 1914-1937, 1939, 1941, 1943, 1946-2020', 'Chemistry (miscellaneous) (Q3)'), (13736, 'SAE International Journal of Vehicle Dynamics', 23802170, 0.311, 'Q2', 6, 5, 119, 84, 88, '2', '2016-2020', 'Automotive Engineering (Q2); Computational Mechanics (Q3); Control and Optimization (Q3); Mechanical Engineering (Q3)'), (13737, 'Settler Colonial Studies', 18380743, 0.311, 'Q1', 19, 34, 0, 126, 84, '3', '2011-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Demography (Q2); Law (Q2); Sociology and Political Science (Q2)'), (13738, 'Sociologus', 380377, 0.311, 'Q2', 6, 5, 223, 20, 29, '5', '1982, 1987, 2008-2020', 'Social Sciences (miscellaneous) (Q2)'), (13739, 'Synthetic Communications', 397911, 0.311, 'Q4', 74, 296, 14823, 1432, 828, '2', '1971-2020', 'Organic Chemistry (Q4)'), (13740, 'TRaNS: Trans-Regional and -National Studies o', 2051364, 0.311, 'Q1', 9, 20, 1132, 31, 37, '3', '2013-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Sociology and Political Science (Q2); Geography, Planning and Development (Q3)'), (13741, 'Tribology in Industry', 3548996, 0.311, 'Q3', 23, 60, 1908, 251, 180, '55', '1997-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3); Surfaces and Interfaces (Q3); Surfaces, Coatings and Films (Q3)'), (13742, 'ACM SIGPLAN Notices', 15232867, 0.31, 'Q2', 99, 0, 0, 1260, 420, '2', '1994, 2006-2018', 'Computer Science (miscellaneous) (Q2)'), (13743, 'Archivos Espanoles de Urologia', 15768260, 0.31, 'Q3', 24, 141, 1352, 158, 344, '12', '1945-1947, 1950-1965, 1973-2020', 'Medicine (miscellaneous) (Q3); Urology (Q3)'), (13744, 'B.E. Journal of Economic Analysis and Policy', 19351682, 0.31, 'Q2', 39, 42, 1703, 98, 144, '5', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Economics and Econometrics (Q3)'), (13745, 'Chemistry of Natural Compounds', 15738388, 0.31, 'Q3', 39, 323, 5117, 774, 986, '2', '1965-2020', 'Plant Science (Q3)'), (13746, 'Cosmopolitan Civil Societies', 18375391, 0.31, 'Q1', 5, 12, 632, 60, 41, '11', '2017-2020', 'Cultural Studies (Q1); Anthropology (Q2); Demography (Q2); Law (Q2); Sociology and Political Science (Q2)'), (13747, 'Darwiniana', 116793, 0.31, 'Q3', 21, 25, 1062, 35, 54, '46', '1985-1986, 1989-1990, 1992-1993, 1995-2020', 'Plant Science (Q3)'), (13748, 'Frontiers in Applied Mathematics and Statisti', 22974687, 0.31, 'Q3', 13, 64, 2649, 340, 150, '19', '2018-2020', 'Applied Mathematics (Q3); Statistics and Probability (Q3)'), (13749, 'Information Security Journal', 19393555, 0.31, 'Q2', 25, 36, 1438, 104, 56, '3', '2008-2020', 'Information Systems and Management (Q2); Computer Science Applications (Q3); Software (Q3)'), (13750, 'INMATEH - Agricultural Engineering', 20684215, 0.31, 'Q2', 9, 109, 2098, 209, 216, '43', '2012-2020', 'Industrial and Manufacturing Engineering (Q2); Food Science (Q3); Mechanical Engineering (Q3)'), (13751, 'Journal of Computational and Theoretical Tran', 23324309, 0.31, 'Q3', 30, 29, 776, 48, 69, '3', '2013-2020', 'Applied Mathematics (Q3); Mathematical Physics (Q3); Physics and Astronomy (miscellaneous) (Q3); Statistical and Nonlinear Physics (Q3); Transportation (Q3)'), (13752, 'Journal of Medical Imaging and Radiation Onco', 17549485, 0.31, 'Q3', 43, 137, 2964, 522, 483, '11', '2008-2020', 'Oncology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (13753, 'Journal of Medical Primatology', 472565, 0.31, 'Q2', 42, 47, 1349, 103, 171, '3', '1972-2020', 'Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3)'), (13754, 'Narrative', 1538974, 0.31, 'Q1', 28, 12, 544, 35, 56, '2', '2002-2020', 'Literature and Literary Theory (Q1)'), (13755, 'Nuclear Technology and Radiation Protection', 14513994, 0.31, 'Q3', 16, 46, 1233, 163, 153, '55', '2008-2020', 'Nuclear Energy and Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)'), (13756, 'Nutricion Hospitalaria', 16995198, 0.31, 'Q3', 53, 189, 6054, 820, 724, '12', '1989-2020', 'Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)'), (13757, 'Professions and Professionalism', 18931049, 0.31, 'Q3', 6, 14, 610, 43, 47, '33', '2016-2020', 'Education (Q3); Life-span and Life-course Studies (Q3)'), (13758, 'Recent Patents on Biotechnology', 18722083, 0.31, 'Q3', 34, 26, 1188, 109, 67, '52', '2007-2020', 'Applied Microbiology and Biotechnology (Q3); Bioengineering (Q3); Biotechnology (Q3)'), (13759, 'Retos', 19882041, 0.31, 'Q3', 14, 337, 14717, 791, 546, '12', '2016-2020', 'Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (13760, 'Science Progress', 20477163, 0.31, 'Q2', 34, 184, 5198, 116, 59, '3', '1946-1949, 1955, 1957, 1960-1963, 1965-1972, 1974-1993, 1995-2020', 'Multidisciplinary (Q2)'), (13761, 'ACM Transactions on Storage', 15533077, 0.309, 'Q3', 42, 31, 1608, 228, 86, '2', '2005-2020', 'Hardware and Architecture (Q3)'), (13762, 'Acta Borealia', 1503111, 0.309, 'Q1', 14, 6, 303, 20, 25, '3', '1984-1994, 1996-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Sociology and Political Science (Q2)'), (13763, 'Acta Mathematicae Applicatae Sinica', 1689673, 0.309, 'Q3', 30, 71, 1845, 253, 229, '5', '1984-1985, 1987-2020', 'Applied Mathematics (Q3)'), (13764, 'ADMET and DMPK', 18487718, 0.309, 'Q2', 13, 26, 1467, 91, 61, '58', '2013-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Health (social science) (Q3); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)'), (13765, 'Archives of Transport', 8669546, 0.309, 'Q2', 14, 33, 1164, 125, 96, '17', '2010-2020', 'Automotive Engineering (Q2); Transportation (Q3)'), (13766, 'Carbonates and Evaporites', 8912556, 0.309, 'Q4', 24, 125, 6606, 313, 234, '5', '1986-2020', 'Geochemistry and Petrology (Q4)'), (13767, 'Cartographic Journal', 87041, 0.309, 'Q3', 30, 31, 1488, 96, 73, '3', '1964-2020', 'Earth-Surface Processes (Q3)'), (13768, 'Concurrency Computation Practice and Experien', 15320626, 0.309, 'Q3', 67, 648, 24068, 2058, 1119, '3', '2001-2020', 'Computational Theory and Mathematics (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Software (Q3); Theoretical Computer Science (Q3)'), (13769, 'Geoscientific Instrumentation, Methods and Da', 21930864, 0.309, 'Q3', 19, 34, 1291, 155, 104, '5', '2013-2020', 'Geology (Q3); Oceanography (Q3); Atmospheric Science (Q4)'), (13770, 'Hospital Pharmacy', 19451253, 0.309, 'Q2', 22, 158, 3678, 258, 246, '2', '1973-2020', 'Pharmacy (Q2); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (13771, 'International Journal of Chemical Engineering', 16878078, 0.309, 'Q3', 25, 26, 952, 206, 133, '2', '2009-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (13772, 'International Journal of Sociology and Social', 144333, 0.309, 'Q2', 39, 151, 8652, 282, 195, '3', '1981-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (13773, 'Journal of African History', 14695138, 0.309, 'Q1', 37, 21, 915, 36, 54, '3', '1960-2020', 'History (Q1)'), (13774, 'Journal of Indian Society of Periodontology', 9751580, 0.309, 'Q3', 28, 108, 2187, 496, 272, '4', '2011-2020', 'Periodontics (Q3)'), (13775, 'Journal of Occupational Therapy, Schools, and', 19411243, 0.309, 'Q3', 10, 47, 1995, 75, 96, '3', '2008-2020', 'Education (Q3); Occupational Therapy (Q3); Social Psychology (Q3)'), (13776, 'Journal of Skin Cancer', 20902913, 0.309, 'Q3', 10, 8, 245, 28, 18, '32', '2011, 2014-2020', 'Dermatology (Q3); Oncology (Q4)'), (13777, 'Kantian Review', 13694154, 0.309, 'Q1', 15, 38, 899, 27, 82, '3', '1997-2020', 'Philosophy (Q1)'), (13778, 'Monoclonal Antibodies in Immunodiagnosis and ', 21679436, 0.309, 'Q4', 36, 46, 1036, 243, 143, '2', '2013-2020', 'Immunology (Q4); Immunology and Allergy (Q4)'), (13779, 'Morphologie', 12860115, 0.309, 'Q3', 16, 61, 1942, 106, 81, '8', '1997-2020', 'Anatomy (Q3)'), (13780, 'Neues Jahrbuch fur Mineralogie, Abhandlungen', 777757, 0.309, 'Q4', 29, 7, 377, 34, 46, '5', '1980-1988, 1996-2019', 'Geochemistry and Petrology (Q4)'), (13781, 'Neuro-Ophthalmology', 1658107, 0.309, 'Q3', 21, 101, 1985, 167, 192, '3', '1980-2002, 2004-2020', 'Neurology (clinical) (Q3); Ophthalmology (Q3)'), (13782, 'Nutrition Today', 29666, 0.309, 'Q3', 23, 42, 1907, 112, 117, '2', '1966-2013, 2015-2020', 'Nutrition and Dietetics (Q3)'), (13783, 'Open Astronomy', 25436376, 0.309, 'Q3', 27, 27, 1703, 93, 99, '17', '2016-2020', 'Astronomy and Astrophysics (Q3); Space and Planetary Science (Q4)'), (13784, 'Pedagogies', 15544818, 0.309, 'Q3', 15, 29, 1472, 66, 59, '3', '2010-2020', 'Education (Q3)'), (13785, 'Reseaux', 17775809, 0.309, 'Q2', 16, 38, 1649, 65, 111, '8', '2001-2020', 'Communication (Q2); Electrical and Electronic Engineering (Q2)'), (13786, 'Revista Electronica Complutense de Investigac', 16987454, 0.309, 'Q1', 5, 10, 395, 28, 35, '12', '2004-2019', 'Music (Q1)'), (13787, 'Science of Sintering', 350820, 0.309, 'Q2', 25, 40, 1532, 153, 124, '55', '1974-1976, 1978-1989, 2002-2020', 'Metals and Alloys (Q2); Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3)'), (13788, 'Southwestern Entomologist', 1471724, 0.309, 'Q3', 26, 128, 3296, 192, 345, '2', '1993-2020', 'Agronomy and Crop Science (Q3); Ecology (Q3); Insect Science (Q3)'), (13789, 'Acta Veterinaria', 5678315, 0.308, 'Q2', 17, 29, 1126, 110, 126, '5', '1973, 1981-1983, 1985, 1996-2020', 'Veterinary (miscellaneous) (Q2)'), (13790, 'Afro-Asian Journal of Finance and Accounting', 17516455, 0.308, 'Q3', 10, 32, 1454, 59, 67, '3', '2009-2014, 2019-2020', 'Accounting (Q3); Finance (Q3)'), (13791, 'Australian Economic Review', 49018, 0.308, 'Q3', 29, 43, 1028, 93, 121, '3', '1968-2020', 'Economics and Econometrics (Q3)'), (13792, 'Behavioral Sciences of Terrorism and Politica', 19434480, 0.308, 'Q2', 16, 43, 2667, 69, 39, '2', '2009-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2); Social Psychology (Q3)'), (13793, 'Boletin de la Sociedad Geologica Mexicana', 14053322, 0.308, 'Q3', 17, 47, 3299, 116, 116, '30', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (13794, 'Bulletin of Chemical Reaction Engineering and', 19782993, 0.308, 'Q3', 16, 73, 3131, 315, 190, '21', '2009-2020', 'Chemical Engineering (miscellaneous) (Q3); Process Chemistry and Technology (Q3); Catalysis (Q4)'), (13795, 'Children s Health Care', 15326888, 0.308, 'Q3', 38, 29, 1396, 71, 80, '2', '1980-2020', 'Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (13796, 'City and Society', 8930465, 0.308, 'Q2', 25, 100, 1532, 46, 55, '2', '1987-1992, 1994, 2001-2020', 'Urban Studies (Q2); Geography, Planning and Development (Q3)'), (13797, 'Croatian Medical Journal', 13328166, 0.308, 'Q3', 58, 87, 2225, 189, 163, '58', '1992-2020', 'Medicine (miscellaneous) (Q3)'), (13798, 'Culture, Agriculture, Food and Environment', 21539553, 0.308, 'Q1', 12, 13, 572, 38, 45, '2', '2011-2020', 'Cultural Studies (Q1); Agricultural and Biological Sciences (miscellaneous) (Q2); Anthropology (Q2); Food Science (Q3)'), (13799, 'Documents d Analisi Geografica', 20144512, 0.308, 'Q3', 17, 26, 1465, 71, 77, '12', '1988-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (13800, 'ESP Today', 23349050, 0.308, 'Q2', 6, 13, 620, 42, 34, '55', '2013-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (13801, 'Health Education', 1758714, 0.308, 'Q3', 35, 27, 1262, 124, 100, '3', '1992-2020', 'Education (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13802, 'IET Cyber-Physical Systems: Theory and Applic', 23983396, 0.308, 'Q2', 7, 44, 1835, 114, 43, '3', '2019-2020', 'Electrical and Electronic Engineering (Q2); Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3)'), (13803, 'IET Information Security', 17518709, 0.308, 'Q3', 34, 79, 2544, 347, 194, '3', '2007-2020', 'Computer Networks and Communications (Q3); Information Systems (Q3); Software (Q3)'), (13804, 'IFAC-PapersOnLine', 24058963, 0.308, 'Q3', 72, 115, 1913, 9863, 8351, '28', '2002-2019', 'Control and Systems Engineering (Q3)'), (13805, 'International Journal of Masonry Research and', 20569459, 0.308, 'Q3', 8, 26, 835, 73, 57, '3', '2020', 'Building and Construction (Q3); Materials Science (miscellaneous) (Q3)'), (13806, 'International Journal of Technology Enhanced ', 17535263, 0.308, 'Q3', 20, 26, 1388, 108, 64, '19', '2008-2014, 2020', 'Computer Science Applications (Q3); Education (Q3); E-learning (Q3)'), (13807, 'Journal of Theoretical and Applied Physics', 22517227, 0.308, 'Q3', 13, 49, 1709, 184, 120, '3', '2012-2013, 2015-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13808, 'Medicinal Chemistry', 15734064, 0.308, 'Q3', 44, 92, 4815, 560, 242, '52', '2005-2020', 'Drug Discovery (Q3)'), (13809, 'Open Biotechnology Journal', 18740707, 0.308, 'Q3', 11, 16, 935, 88, 55, '52', '2009-2020', 'Bioengineering (Q3); Biomedical Engineering (Q3); Biophysics (Q3); Biotechnology (Q3); Biochemistry (Q4)'), (13810, 'Pacific Journalism Review', 23242035, 0.308, 'Q2', 13, 41, 1414, 79, 66, '41', '2005-2019', 'Communication (Q2)'), (13811, 'Physics of Wave Phenomena', 1934807, 0.308, 'Q3', 15, 52, 1341, 170, 145, '10', '2009-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (13812, 'Rhodora', 354902, 0.308, 'Q3', 20, 22, 475, 28, 53, '2', '1981-1986, 1995-2020', 'Horticulture (Q3); Plant Science (Q3)'), (13813, 'Scienze Regionali', 17203929, 0.308, 'Q2', 13, 28, 1291, 97, 73, '7', '2012-2020', 'Urban Studies (Q2); Economics and Econometrics (Q3); Food Animals (Q3); Geography, Planning and Development (Q3); Public Administration (Q3)'), (13814, 'Secularism and Nonreligion', 20536712, 0.308, 'Q1', 3, 22, 1228, 6, 7, '3', '2019', 'History (Q1); Philosophy (Q1); Religious Studies (Q1); Anthropology (Q2); Gender Studies (Q2); Sociology and Political Science (Q2)'), (13815, 'Soil and Environment', 20751141, 0.308, 'Q3', 17, 23, 1099, 85, 69, '34', '2010-2020', 'Environmental Science (miscellaneous) (Q3); Soil Science (Q3)'), (13816, 'Tropical Animal Science Journal', 2615790, 0.308, 'Q2', 13, 42, 1473, 120, 96, '21', '2018-2020', 'Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3)'), (13817, 'Tuijin Jishu/Journal of Propulsion Technology', 10014055, 0.308, 'Q3', 22, 312, 7946, 576, 1014, '1', '1991-2020', 'Aerospace Engineering (Q3)'), (13818, 'Vestnik Volgogradskogo Gosudarstvennogo Unive', 19989938, 0.308, 'Q1', 2, 109, 3330, 27, 124, '10', '2019-2020', 'Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (13819, 'Working with Older People', 13663666, 0.308, 'Q3', 11, 33, 1010, 79, 78, '3', '2000-2020', 'Community and Home Care (Q3); Gerontology (Q3)'), (13820, 'Xinan Jiaotong Daxue Xuebao/Journal of Southw', 2582724, 0.308, 'Q2', 21, 168, 3315, 331, 494, '1', '1991, 1998, 2001-2020', 'Multidisciplinary (Q2)'), (13821, 'Accounting History Review', 21552851, 0.307, 'Q1', 21, 14, 1069, 29, 33, '3', '2011-2020', 'History (Q1); Accounting (Q3); Business, Management and Accounting (miscellaneous) (Q3)'), (13822, 'Africa Journal of Management', 23322373, 0.307, 'Q3', 11, 21, 1684, 72, 55, '3', '2015-2020', 'Business and International Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (13823, 'Archives Europeennes de Sociologie', 14740583, 0.307, 'Q2', 38, 37, 814, 53, 48, '3', '1960-2020', 'Sociology and Political Science (Q2)'), (13824, 'Asian Journal of International Law', 20442521, 0.307, 'Q2', 10, 22, 815, 34, 56, '3', '2011-2020', 'Law (Q2)'), (13825, 'BioNanoScience', 21911630, 0.307, 'Q3', 24, 116, 5213, 680, 378, '2', '2011-2020', 'Bioengineering (Q3); Biomedical Engineering (Q3)'), (13826, 'Chemical Data Collections', 24058300, 0.307, 'Q3', 12, 270, 10722, 531, 1, '16', '2016-2020', 'Chemistry (miscellaneous) (Q3)'), (13827, 'Chinese Journal of Oncology', 2533766, 0.307, 'Q3', 26, 15, 0, 502, 541, '1', '1979-2020', 'Medicine (miscellaneous) (Q3); Oncology (Q4)'), (13828, 'Constructivist Foundations', 1782348, 0.307, 'Q1', 16, 91, 1367, 81, 104, '24', '2010-2020', 'Philosophy (Q1); History and Philosophy of Science (Q2); Multidisciplinary (Q2); Artificial Intelligence (Q3); Education (Q3); Cognitive Neuroscience (Q4)'), (13829, 'Discrete Mathematics, Algorithms and Applicat', 17938317, 0.307, 'Q3', 16, 137, 2228, 177, 241, '37', '2009-2020', 'Discrete Mathematics and Combinatorics (Q3)'), (13830, 'Endocrinology, Diabetes and Metabolism Case R', 20520573, 0.307, 'Q3', 7, 74, 983, 112, 124, '3', '2014-2016, 2018-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Internal Medicine (Q3)'), (13831, 'Healthcare Papers', 1488917, 0.307, 'Q3', 23, 24, 188, 32, 84, '9', '1999-2020', 'Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13832, 'Human Organization', 19383525, 0.307, 'Q2', 53, 24, 1156, 80, 93, '2', '1975-1989, 1993-2019', 'Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (13833, 'Italian Journal of Linguistics', 11202726, 0.307, 'Q2', 23, 16, 806, 22, 36, '7', '1996-2013, 2015-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (13834, 'Journal of Applied Mathematics', 16870042, 0.307, 'Q3', 43, 61, 1540, 189, 113, '2', '2001-2020', 'Applied Mathematics (Q3)'), (13835, 'Journal of Chiropractic Education', 2374250, 0.307, 'Q2', 5, 19, 551, 39, 45, '2', '2017-2020', 'Chiropractics (Q2)'), (13836, 'Journal of Culinary Science and Technology', 15428052, 0.307, 'Q3', 20, 84, 3490, 121, 85, '3', '2006-2020', 'Food Science (Q3)'), (13837, 'Journal of Global Operations and Strategic So', 23985364, 0.307, 'Q3', 23, 15, 1277, 115, 58, '3', '2017-2020', 'Management Science and Operations Research (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (13838, 'Journal of Nippon Medical School', 13454676, 0.307, 'Q3', 33, 56, 1246, 179, 166, '6', '2000-2020', 'Medicine (miscellaneous) (Q3)'), (13839, 'Journal of the Indian Ocean Region', 1948108, 0.307, 'Q2', 12, 21, 1194, 75, 60, '2', '2010-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3); Oceanography (Q3); Water Science and Technology (Q3)'), (13840, 'Medical Journal of the Islamic Republic of Ir', 22516840, 0.307, 'Q3', 22, 102, 3585, 497, 441, '15', '1989-1990, 1992, 1996-1998, 2005, 2012-2020', 'Medicine (miscellaneous) (Q3)'), (13841, 'Medical Problems of Performing Artists', 19382766, 0.307, 'Q2', 32, 32, 501, 117, 100, '2', '1986, 1996-2020', 'History and Philosophy of Science (Q2); Medicine (miscellaneous) (Q3)'), (13842, 'Museum Management and Curatorship', 18729185, 0.307, 'Q1', 31, 63, 2146, 102, 95, '3', '1990-2001, 2005-2020', 'Visual Arts and Performing Arts (Q1); Business and International Management (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (13843, 'New Zealand Economic Papers', 779954, 0.307, 'Q2', 13, 25, 864, 34, 58, '3', '1966, 1968-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (13844, 'Optical Review', 13406000, 0.307, 'Q3', 42, 69, 1752, 274, 260, '5', '1994-2020', 'Atomic and Molecular Physics, and Optics (Q3)'), (13845, 'Revista Brasileira de Anestesiologia', 347094, 0.307, 'Q3', 29, 117, 2562, 320, 297, '14', '1960-1982, 1994-2020', 'Anesthesiology and Pain Medicine (Q3)'), (13846, 'Revista Brasileira de Recursos Hidricos', 23180331, 0.307, 'Q3', 10, 43, 2004, 152, 141, '14', '2016-2020', 'Aquatic Science (Q3); Earth-Surface Processes (Q3); Oceanography (Q3); Water Science and Technology (Q3)'), (13847, 'Studia Scientiarum Mathematicarum Hungarica', 15882896, 0.307, 'Q3', 24, 32, 685, 101, 98, '50', '1996-2020', 'Mathematics (miscellaneous) (Q3)'), (13848, 'Swiss Journal of Economics and Statistics', 22356282, 0.307, 'Q3', 12, 22, 591, 65, 52, '3', '2017-2020', 'Economics and Econometrics (Q3); Statistics and Probability (Q3)'), (13849, 'Acta Geologica Slovaca', 13380044, 0.306, 'Q3', 7, 7, 259, 32, 35, '53', '2013-2019', 'Geology (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3); Paleontology (Q3); Stratigraphy (Q3); Geochemistry and Petrology (Q4)'), (13850, 'African Security Review', 21540128, 0.306, 'Q2', 11, 24, 1430, 50, 56, '3', '1995, 2010-2020', 'Law (Q2); Political Science and International Relations (Q2); Safety Research (Q3)'), (13851, 'Anthropology Southern Africa', 23323264, 0.306, 'Q1', 8, 19, 729, 43, 74, '3', '2014-2020', 'Cultural Studies (Q1); Anthropology (Q2)'), (13852, 'APSIPA Transactions on Signal and Information', 20487703, 0.306, 'Q3', 18, 28, 1327, 164, 58, '3', '2012-2020', 'Information Systems (Q3); Signal Processing (Q3)'), (13853, 'Comparative Economic Studies', 8887233, 0.306, 'Q3', 20, 24, 1031, 81, 86, '3', '1996, 2008-2020', 'Economics and Econometrics (Q3)'), (13854, 'Continuum', 14693666, 0.306, 'Q1', 29, 74, 3160, 169, 196, '3', '1980-1981, 1988-1994, 2008-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)'), (13855, 'Current Bioinformatics', 15748936, 0.306, 'Q3', 29, 116, 6169, 447, 190, '52', '2007-2020', 'Computational Mathematics (Q3); Biochemistry (Q4); Genetics (Q4); Molecular Biology (Q4)'), (13856, 'Current Protocols in Nucleic Acid Chemistry', 19349270, 0.306, 'Q3', 17, 22, 606, 48, 67, '2', '2000-2020', 'Medicine (miscellaneous) (Q3); Biochemistry (Q4); Organic Chemistry (Q4)'), (13857, 'Families, Relationships and Societies', 20467435, 0.306, 'Q2', 15, 34, 1450, 76, 101, '3', '2012-2020', 'Sociology and Political Science (Q2)'), (13858, 'Huanjing Kexue/Environmental Science', 2503301, 0.306, 'Q3', 34, 612, 23528, 2982, 1927, '1', '1986, 1988-1989, 1998-2020', 'Environmental Science (miscellaneous) (Q3)'), (13859, 'International Journal of Risk and Safety in M', 18786847, 0.306, 'Q3', 22, 32, 766, 58, 38, '16', '1990-2020', 'Health Policy (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13860, 'Journal of Applied Biomedicine', 12140287, 0.306, 'Q2', 30, 17, 632, 195, 118, '12', '2005-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine '), (13861, 'Journal of Applied Research on Children', 21555834, 0.306, 'Q2', 9, 0, 0, 18, 28, '2', '2014-2019', 'Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3); Education (Q3)'), (13862, 'Journal of Indian Association of Pediatric Su', 9719261, 0.306, 'Q3', 17, 115, 1311, 131, 178, '4', '2002, 2005-2020', 'Pediatrics, Perinatology and Child Health (Q3); Surgery (Q3)'), (13863, 'Journal of Korean Academy of Nursing', 20053673, 0.306, 'Q3', 24, 67, 2478, 193, 196, '13', '2008-2020', 'Nursing (miscellaneous) (Q3)'), (13864, 'Journal of Nutrition in Gerontology and Geria', 21551200, 0.306, 'Q3', 22, 15, 543, 76, 62, '2', '2011-2020', 'Geriatrics and Gerontology (Q3); Nutrition and Dietetics (Q3)'), (13865, 'Journal of Psychologists and Counsellors in S', 20556365, 0.306, 'Q3', 24, 44, 2238, 69, 45, '3', '2015-2020', 'Developmental and Educational Psychology (Q3); Education (Q3); Social Psychology (Q3)'), (13866, 'Journal of Religious Ethics', 14679795, 0.306, 'Q1', 20, 33, 1545, 35, 109, '3', '1974-1976, 1981, 1984, 1987-1989, 1991, 1996-2020', 'Religious Studies (Q1)'), (13867, 'Journal of Retirement', 23266902, 0.306, 'Q3', 3, 23, 567, 25, 50, '3', '2018-2020', 'Finance (Q3); Geriatrics and Gerontology (Q3); Life-span and Life-course Studies (Q3); Organizational Behavior and Human Resource Management (Q3)'), (13868, 'Kybernetes', 368492, 0.306, 'Q2', 40, 145, 9518, 809, 440, '3', '1972-2020', 'Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2); Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Electrical and Electr'), (13869, 'Mechanical Sciences', 2191916, 0.306, 'Q2', 23, 35, 1095, 171, 113, '5', '2010-2020', 'Industrial and Manufacturing Engineering (Q2); Civil and Structural Engineering (Q3); Control and Systems Engineering (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3); Mechani'), (13870, 'Oman Journal of Ophthalmology', 9747842, 0.306, 'Q3', 16, 48, 664, 123, 170, '4', '2011-2020', 'Ophthalmology (Q3)'), (13871, 'Philosophy and Rhetoric', 15272079, 0.306, 'Q1', 19, 41, 855, 36, 69, '2', '2002-2020', 'Philosophy (Q1)'), (13872, 'Quality Management Journal', 10686967, 0.306, 'Q3', 12, 23, 1508, 67, 38, '2', '2013-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (13873, 'SAJCH South African Journal of Child Health', 19997671, 0.306, 'Q3', 14, 46, 1183, 75, 122, '27', '2008-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (13874, 'Slovenska Archeologia', 13350102, 0.306, 'Q2', 3, 63, 2450, 19, 29, '53', '2017-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (13875, 'Social Work with Groups', 1609513, 0.306, 'Q2', 23, 63, 613, 57, 91, '2', '1978-2020', 'Social Sciences (miscellaneous) (Q2); Education (Q3); Social Work (Q4)'), (13876, 'World Development Perspectives', 24522929, 0.306, 'Q2', 10, 73, 3976, 113, 78, '3', '2016-2020', 'Sociology and Political Science (Q2); Development (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)'), (13877, 'Artificial Life', 10645462, 0.305, 'Q3', 57, 22, 1076, 146, 74, '2', '1995, 1997-2020', 'Artificial Intelligence (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (13878, 'Bulletin of Geography', 20838098, 0.305, 'Q1', 16, 37, 1766, 159, 120, '17', '2003-2020', 'Cultural Studies (Q1); Demography (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)'), (13879, 'Chinese Journal of Rice Science', 10017216, 0.305, 'Q3', 6, 57, 2198, 182, 200, '1', '2016-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3)'), (13880, 'Critical Philosophy of Race', 21658692, 0.305, 'Q1', 4, 14, 420, 38, 44, '2', '2017-2020', 'Philosophy (Q1); Anthropology (Q2)'), (13881, 'Developing Economies', 121533, 0.305, 'Q3', 30, 13, 510, 34, 39, '2', '1962-2020', 'Development (Q3); Economics and Econometrics (Q3)'), (13882, 'HAYATI Journal of Biosciences', 19783019, 0.305, 'Q2', 17, 39, 1199, 150, 84, '21', '2005-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (13883, 'Health and Addictions / Salud y Drogas', 15785319, 0.305, 'Q3', 10, 34, 1485, 96, 96, '12', '2009-2020', 'Developmental and Educational Psychology (Q3); Health (social science) (Q3); Psychiatry and Mental Health (Q3); Neuropsychology and Physiological Psychology (Q4)'), (13884, 'He Jishu/Nuclear Techniques', 2533219, 0.305, 'Q3', 13, 156, 2969, 237, 502, '1', '1993-1995, 1998-2020', 'Nuclear and High Energy Physics (Q3); Nuclear Energy and Engineering (Q3); Radiation (Q3)'), (13885, 'Historia Mexicana', 1850172, 0.305, 'Q1', 9, 33, 1981, 34, 89, '30', '1965, 1976-1977, 1980-1981, 1986-1987, 1999, 2001-2020', 'History (Q1)'), (13886, 'IET Software', 17518806, 0.305, 'Q3', 43, 81, 3868, 334, 152, '3', '2007-2020', 'Computer Graphics and Computer-Aided Design (Q3)'), (13887, 'Industrial Biotechnology', 15509087, 0.305, 'Q3', 33, 62, 1950, 186, 119, '2', '2006-2020', 'Biotechnology (Q3)'), (13888, 'Journal of Cultural Heritage Management and S', 20441274, 0.305, 'Q1', 15, 46, 2123, 127, 101, '3', '2011-2020', 'Conservation (Q1); Urban Studies (Q2); Business, Management and Accounting (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (13889, 'Journal of Forensic Nursing', 15563693, 0.305, 'Q2', 22, 43, 1059, 84, 104, '2', '2005-2020', 'Law (Q2); Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Psychiatric Mental Health (Q3); Psychiatry and Mental Health (Q3); Issues, Ethics and Legal'), (13890, 'Journal of Language Contact', 19552629, 0.305, 'Q1', 14, 20, 1373, 38, 52, '8', '2007-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (13891, 'Journal of Marketing Analytics', 20503318, 0.305, 'Q2', 11, 22, 1285, 96, 40, '19', '2013-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Marketing (Q3); Statistics, Probability and Uncertainty (Q3); Strategy and Management (Q3)'), (13892, 'Journal of Public Mental Health', 20428731, 0.305, 'Q3', 22, 40, 1092, 84, 95, '3', '1999-2000, 2003-2020', 'Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13893, 'Journal of Systems Science and Complexity', 10096124, 0.305, 'Q2', 33, 113, 3608, 413, 274, '2', '2006-2020', 'Computer Science (miscellaneous) (Q2); Information Systems (Q3)'), (13894, 'Minerva Pediatrica', 18271715, 0.305, 'Q3', 29, 64, 2494, 216, 206, '7', '1949-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (13895, 'Mining, Metallurgy and Exploration', 25243462, 0.305, 'Q2', 28, 180, 5379, 241, 160, '19', '2019-2020', 'Metals and Alloys (Q2); Chemistry (miscellaneous) (Q3); Control and Systems Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Materials Chemistry (Q3); Mechanical Engineering (Q'), (13896, 'National Institute Economic Review', 17413036, 0.305, 'Q2', 35, 20, 555, 77, 100, '3', '1960-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (13897, 'Revista de Biologia Tropical', 347744, 0.305, 'Q2', 38, 144, 7129, 362, 451, '95', '1969-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (13898, 'Scientia et Fides', 23007648, 0.305, 'Q1', 5, 27, 1088, 26, 62, '17', '2013-2020', 'Philosophy (Q1); Religious Studies (Q1)'), (13899, 'South-East European Forestry', 18476481, 0.305, 'Q3', 5, 16, 575, 52, 53, '58', '2017-2020', 'Forestry (Q3)'), (13900, 'Turk Patoloji Dergisi', 10185615, 0.305, 'Q3', 14, 40, 835, 126, 119, '18', '2010-2020', 'Pathology and Forensic Medicine (Q3)'), (13901, 'Wiener Medizinische Wochenschrift', 1563258, 0.305, 'Q3', 37, 65, 1804, 216, 175, '28', '1946-2020', 'Medicine (miscellaneous) (Q3)'), (13902, 'Acta crystallographica. Section C, Structural', 20532296, 0.304, 'Q3', 17, 141, 5005, 670, 625, '2', '1987-1988, 1990-1991, 1994-1995, 2014-2020', 'Condensed Matter Physics (Q3); Materials Chemistry (Q3); Medicine (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3); Inorganic Chemistry (Q4)'), (13903, 'Applied Adhesion Science', 21964351, 0.304, 'Q3', 11, 7, 212, 58, 40, '19', '2013-2020', 'Dentistry (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3); Surfaces, Coatings and Films (Q3)'), (13904, 'ATLA Alternatives to Laboratory Animals', 2611929, 0.304, 'Q3', 58, 49, 0, 61, 65, '3', '1982, 1985-1986, 1988-1989, 1994-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medical Laboratory Technology (Q3); Medicine (miscellaneous) (Q3); Toxicology (Q4)'), (13905, 'Australian Journal of Crop Science', 18352707, 0.304, 'Q3', 44, 215, 7806, 599, 763, '11', '2009-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (13906, 'Cadernos de Pesquisa', 1001574, 0.304, 'Q1', 16, 60, 2412, 70, 169, '14', '1983, 2006-2020', 'Cultural Studies (Q1); Education (Q3); Gender Studies (Q3)'), (13907, 'Canadian Journal of Nursing Research', 8445621, 0.304, 'Q3', 42, 28, 0, 68, 69, '2', '1988, 1990-2013, 2016-2020', 'Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)'), (13908, 'Economia Agraria y Recursos Naturales', 15780732, 0.304, 'Q2', 9, 10, 484, 36, 43, '12', '2001, 2004, 2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (13909, 'Emirates Journal of Food and Agriculture', 20790538, 0.304, 'Q3', 28, 105, 4310, 462, 355, '52', '1996-2020', 'Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Applied Microbiology and Biotechnology (Q3); Food Science (Q3)'), (13910, 'English World-Wide', 1728865, 0.304, 'Q2', 31, 13, 606, 30, 32, '16', '1980-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (13911, 'Epidemiology Biostatistics and Public Health', 22820930, 0.304, 'Q3', 19, 21, 640, 153, 138, '7', '2009, 2013-2020', 'Community and Home Care (Q3); Health Policy (Q3); Public Health, Environmental and Occupational Health (Q3); Epidemiology (Q4)'), (13912, 'Equine Veterinary Education', 20423292, 0.304, 'Q4', 31, 334, 8844, 269, 283, '2', '1989-2020', 'Equine (Q4)'), (13913, 'Fibres and Textiles in Eastern Europe', 12303666, 0.304, 'Q2', 39, 98, 2778, 331, 323, '17', '1993, 1995-2020', 'Industrial and Manufacturing Engineering (Q2); Business and International Management (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (13914, 'Geographia Technica', 20654421, 0.304, 'Q3', 11, 55, 1358, 125, 99, '43', '2009-2020', 'Computers in Earth Sciences (Q3); Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (13915, 'Historic Environment: Policy and Practice', 17567505, 0.304, 'Q1', 10, 29, 1296, 63, 65, '3', '2010, 2014-2020', 'Conservation (Q1); History (Q1); Archeology (arts and humanities) (Q2)'), (13916, 'Human Technology', 17956889, 0.304, 'Q2', 7, 16, 820, 52, 35, '38', '2016-2019', 'Communication (Q2); Human-Computer Interaction (Q3); Social Psychology (Q3)'), (13917, 'Information Services and Use', 1675265, 0.304, 'Q2', 19, 33, 576, 100, 90, '16', '1981-2019', 'Library and Information Sciences (Q2); Computer Science Applications (Q3); Information Systems (Q3)'), (13918, 'International Journal of Peptide Research and', 15733149, 0.304, 'Q3', 36, 259, 12484, 410, 268, '16', '1996-2002, 2005-2020', 'Analytical Chemistry (Q3); Drug Discovery (Q3); Biochemistry (Q4); Bioengineering (Q4); Molecular Medicine (Q4)'), (13919, 'Journal of Comparative Germanic Linguistics', 15728552, 0.304, 'Q2', 18, 9, 648, 10, 24, '16', '1997-1998, 2000-2001, 2005-2020', 'Arts and Humanities (miscellaneous) (Q2); Linguistics and Language (Q2)'), (13920, 'Journal of Homeland Security and Emergency Ma', 15477355, 0.304, 'Q3', 24, 55, 2041, 48, 46, '5', '2004-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (13921, 'Microwave and Optical Technology Letters', 10982760, 0.304, 'Q3', 76, 554, 10865, 2528, 1709, '2', '1988-2020', 'Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (13922, 'Polar Record', 322474, 0.304, 'Q3', 32, 29, 1547, 117, 147, '3', '1931-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Ecology (Q3); Geography, Planning and Development (Q3)'), (13923, 'Population', 19589190, 0.304, 'Q2', 30, 10, 501, 39, 58, '8', '1946-1947, 1973-2020', 'Demography (Q2)'), (13924, 'Respirology Case Reports', 20513380, 0.304, 'Q3', 9, 173, 1326, 197, 222, '3', '2013-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (13925, 'Revista Estudos Feministas', 18069584, 0.304, 'Q2', 16, 114, 3339, 73, 241, '14', '1994-1995, 2006-2020', 'Gender Studies (Q2)'), (13926, 'Schmerz', 932433, 0.304, 'Q3', 41, 90, 2050, 170, 164, '5', '1987-2020', 'Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3)'), (13927, 'Studies in Health Technology and Informatics', 9269630, 0.304, 'Q3', 58, 696, 8844, 2211, 3041, '16', '1991, 1993-2020', 'Biomedical Engineering (Q3); Health Informatics (Q3); Health Information Management (Q4)'), (13928, 'Tetsu-To-Hagane/Journal of the Iron and Steel', 211575, 0.304, 'Q2', 34, 104, 2806, 179, 330, '6', '1968-1991, 1994-2020', 'Metals and Alloys (Q2); Condensed Matter Physics (Q3); Materials Chemistry (Q3); Physical and Theoretical Chemistry (Q3)'), (13929, 'Waterlines', 17563488, 0.304, 'Q3', 16, 0, 0, 66, 56, '3', '1983-2019', 'Water Science and Technology (Q3)'), (13930, 'Acoustics Australia', 8146039, 0.303, 'Q2', 20, 36, 1167, 122, 78, '11', '1986-1991, 1996-2020', 'Acoustics and Ultrasonics (Q2)'), (13931, 'Advanced Optical Technologies', 21928584, 0.303, 'Q3', 19, 40, 1482, 136, 119, '5', '2012-2020', 'Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3); Instrumentation (Q3)'), (13932, 'Australian Journal of Linguistics', 7268602, 0.303, 'Q2', 20, 17, 854, 34, 54, '3', '1981-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (13933, 'Austrian Journal of Forest Science', 3795292, 0.303, 'Q3', 12, 8, 442, 66, 65, '28', '2006-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Forestry (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)'), (13934, 'Biomedical Photonics', 24139432, 0.303, 'Q3', 7, 21, 484, 56, 72, '10', '2015-2020', 'Dermatology (Q3); Surgery (Q3)'), (13935, 'College English', 100994, 0.303, 'Q2', 23, 27, 996, 32, 65, '2', '2004-2019', 'Language and Linguistics (Q2); Education (Q3)'), (13936, 'Demografie', 118265, 0.303, 'Q2', 7, 17, 458, 36, 59, '31', '1976-1999, 2014-2020', 'Demography (Q2)'), (13937, 'Engineering Economics', 13922785, 0.303, 'Q2', 29, 49, 2705, 239, 164, '69', '2008-2020', 'Engineering (miscellaneous) (Q2); Business and International Management (Q3); Economics and Econometrics (Q3)'), (13938, 'Environmental Control in Biology', 18830986, 0.303, 'Q3', 16, 20, 512, 42, 72, '6', '2005-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (13939, 'EUREKA, Physics and Engineering', 24614254, 0.303, 'Q2', 5, 61, 1212, 61, 51, '71', '2017, 2019-2020', 'Engineering (miscellaneous) (Q2); Physics and Astronomy (miscellaneous) (Q3)'), (13940, 'Glass and Ceramics (English translation of St', 15738515, 0.303, 'Q3', 21, 95, 1339, 169, 280, '2', '1956-2020', 'Ceramics and Composites (Q3); Materials Chemistry (Q3); Mechanics of Materials (Q3)'), (13941, 'Herpetological Bulletin', 14730928, 0.303, 'Q3', 12, 61, 955, 74, 124, '3', '1996-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (13942, 'Horticultural Science', 862867, 0.303, 'Q3', 22, 25, 848, 78, 81, '31', '2007-2020', 'Horticulture (Q3)'), (13943, 'International Food Research Journal', 22317546, 0.303, 'Q3', 50, 119, 4581, 1250, 989, '23', '2007-2020', 'Food Science (Q3)'), (13944, 'International Journal of Innovation and Susta', 17408822, 0.303, 'Q3', 20, 23, 1377, 65, 65, '3', '2005-2014, 2020', 'Management of Technology and Innovation (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (13945, 'Issues in Science and Technology Librarianshi', 10921206, 0.303, 'Q2', 15, 16, 376, 21, 54, '2', '2009-2020', 'Engineering (miscellaneous) (Q2); Library and Information Sciences (Q2)'), (13946, 'Journal of Engineered Fibers and Fabrics', 15589250, 0.303, 'Q3', 29, 130, 4296, 286, 197, '2', '2009-2020', 'Materials Science (miscellaneous) (Q3)'), (13947, 'Journal of Islamic Accounting and Business Re', 17590817, 0.303, 'Q3', 20, 127, 6746, 221, 106, '3', '2010-2020', 'Accounting (Q3); Business and International Management (Q3); Strategy and Management (Q3)'), (13948, 'Journal of Robotics', 16879600, 0.303, 'Q2', 14, 41, 1422, 181, 86, '32', '2012-2020', 'Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q3)'), (13949, 'Numerical Algebra, Control and Optimization', 21553289, 0.303, 'Q3', 20, 39, 1146, 103, 93, '2', '2011-2020', 'Applied Mathematics (Q3); Control and Optimization (Q3); Algebra and Number Theory (Q4)'), (13950, 'Phronesis', 318868, 0.303, 'Q1', 24, 14, 665, 37, 47, '16', '1957, 1959-1960, 1962-1970, 1972-1986, 1988-1989, 1991-2020', 'History (Q1); Philosophy (Q1); History and Philosophy of Science (Q2)'), (13951, 'Queensland Archaeological Research', 1839339, 0.303, 'Q2', 3, 4, 303, 8, 8, '11', '2014-2020', 'Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (13952, 'Revista de Economia e Sociologia Rural', 1032003, 0.303, 'Q2', 16, 55, 2241, 74, 119, '14', '2006-2021', 'Social Sciences (miscellaneous) (Q2); Agronomy and Crop Science (Q3); Economics and Econometrics (Q3); Forestry (Q3)'), (13953, 'Russian Journal of Earth Sciences', 16811178, 0.303, 'Q3', 18, 47, 1346, 84, 90, '10', '1998-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (13954, 'Smart and Sustainable Manufacturing Systems', 25206478, 0.303, 'Q2', 6, 30, 634, 61, 52, '2', '2017-2020', 'Industrial and Manufacturing Engineering (Q2); Computer Science Applications (Q3); Control and Systems Engineering (Q3)'), (13955, 'Social Work/Maatskaplike Werk', 378054, 0.303, 'Q2', 15, 27, 1483, 62, 87, '27', '1972-1978, 1994-2020', 'Sociology and Political Science (Q2); Social Work (Q4)'), (13956, 'Teoria de la Educacion', 11303743, 0.303, 'Q3', 11, 23, 1086, 73, 74, '12', '2008-2020', 'Education (Q3)'), (13957, 'Western North American Naturalist', 15270904, 0.303, 'Q3', 34, 66, 2413, 108, 177, '2', '2000-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (13958, 'Acta Analytica', 3535150, 0.302, 'Q1', 11, 52, 1776, 39, 97, '16', '2009-2020', 'Philosophy (Q1)'), (13959, 'Anali Hrvatskog Politoloskog Drustva', 18456707, 0.302, 'Q2', 3, 8, 468, 17, 36, '58', '2017, 2019', 'Sociology and Political Science (Q2)'), (13960, 'Annali dell Istituto Superiore di Sanita', 212571, 0.302, 'Q3', 42, 68, 2413, 262, 160, '7', '1965-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (13961, 'Archivos de Bronconeumologia', 15792129, 0.302, 'Q3', 49, 423, 6110, 633, 863, '12', '1970, 1981, 1983-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (13962, 'Cellulose Chemistry and Technology', 5769787, 0.302, 'Q3', 32, 100, 3942, 358, 265, '43', '1972, 1976, 1983, 1985, 1989-1990, 1993, 1995-2020', 'Materials Chemistry (Q3); Organic Chemistry (Q4)'), (13963, 'Czechoslovak Mathematical Journal', 114642, 0.302, 'Q3', 31, 95, 1486, 123, 233, '2', '1995-2020', 'Mathematics (miscellaneous) (Q3)'), (13964, 'Drug Metabolism Letters', 18740758, 0.302, 'Q3', 27, 0, 0, 55, 46, '52', '2007-2019', 'Biochemistry (medical) (Q3); Pharmaceutical Science (Q3); Pharmacology (medical) (Q3); Clinical Biochemistry (Q4)'), (13965, 'European Endodontic Journal', 25480839, 0.302, 'Q3', 6, 47, 1030, 58, 83, '18', '2016-2020', 'Dentistry (miscellaneous) (Q3)'), (13966, 'IAENG International Journal of Computer Scien', 1819656, 0.302, 'Q2', 21, 94, 2974, 379, 210, '35', '2009-2020', 'Computer Science (miscellaneous) (Q2)'), (13967, 'International Journal of Clothing Science and', 9556222, 0.302, 'Q3', 35, 80, 2218, 249, 225, '3', '1989-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Polymers and Plastics (Q3)'), (13968, 'International Journal of Religious Tourism an', 20097379, 0.302, 'Q1', 5, 67, 2769, 100, 105, '42', '2017-2020', 'Religious Studies (Q1); Tourism, Leisure and Hospitality Management (Q3)'), (13969, 'Journal of Biomedical Physics and Engineering', 22517200, 0.302, 'Q3', 12, 93, 2453, 223, 174, '15', '2015-2020', 'Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Bioengineering (Q4)'), (13970, 'Journal of Contemporary Religion', 14699419, 0.302, 'Q1', 32, 34, 1198, 52, 79, '3', '1995-2020', 'Cultural Studies (Q1); Philosophy (Q1); Religious Studies (Q1)'), (13971, 'Journal of the Operations Research Society of', 21946698, 0.302, 'Q3', 14, 61, 2060, 96, 109, '2', '2013-2020', 'Applied Mathematics (Q3); Management Science and Operations Research (Q3); Mathematics (miscellaneous) (Q3)'), (13972, 'Labor Studies Journal', 160449, 0.302, 'Q2', 24, 24, 1275, 49, 50, '2', '1996-2020', 'Arts and Humanities (miscellaneous) (Q2); Sociology and Political Science (Q2); Industrial Relations (Q3)'), (13973, 'Lili - Zeitschrift fur Literaturwissenschaft ', 498653, 0.302, 'Q1', 5, 32, 761, 28, 104, '5', '2009-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (13974, 'Mineral Processing and Extractive Metallurgy:', 2572665, 0.302, 'Q3', 26, 38, 1410, 135, 109, '3', '2018-2020', 'Chemistry (miscellaneous) (Q3); Geotechnical Engineering and Engineering Geology (Q3); Geochemistry and Petrology (Q4)'), (13975, 'Montenegrin Journal of Sports Science and Med', 18008755, 0.302, 'Q3', 8, 21, 705, 104, 60, '116', '2016-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (13976, 'Open Cardiovascular Medicine Journal', 18741924, 0.302, 'Q3', 25, 8, 312, 36, 35, '52', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (13977, 'Parallel Computing', 1678191, 0.302, 'Q3', 68, 40, 1345, 409, 194, '16', '1984-2020', 'Artificial Intelligence (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Software (Q3); Theoretical Computer Science ('), (13978, 'PNRPU Mechanics Bulletin', 22249893, 0.302, 'Q3', 13, 38, 1689, 172, 197, '10', '2013-2020', 'Computational Mechanics (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (13979, 'Polish Journal of Veterinary Sciences', 15051773, 0.302, 'Q2', 27, 80, 1532, 268, 317, '17', '2002-2020', 'Veterinary (miscellaneous) (Q2); Medicine (miscellaneous) (Q3)'), (13980, 'Revista Ceres', 34737, 0.302, 'Q2', 16, 53, 1641, 170, 208, '14', '1978, 1980, 1982, 1984, 2012-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Veterinary (miscellaneous) (Q2)'), (13981, 'Russian Electrical Engineering', 10683712, 0.302, 'Q3', 22, 141, 936, 647, 452, '10', '2002-2020', 'Electrical and Electronic Engineering (Q3)'), (13982, 'Sensor Review', 2602288, 0.302, 'Q2', 38, 61, 1935, 389, 220, '3', '1981-2020', 'Industrial and Manufacturing Engineering (Q2); Electrical and Electronic Engineering (Q3)'), (13983, 'Spectroscopy (Santa Monica)', 8876703, 0.302, 'Q3', 24, 82, 1417, 175, 152, '2', '1996-2020', 'Analytical Chemistry (Q3); Atomic and Molecular Physics, and Optics (Q3); Spectroscopy (Q4)'), (13984, 'Vestnik Samarskogo Gosudarstvennogo Tekhniche', 23107081, 0.302, 'Q3', 2, 38, 1120, 22, 46, '10', '2019-2020', 'Analysis (Q3); Applied Mathematics (Q3); Condensed Matter Physics (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3); Software (Q3); Mathematical Physics (Q4)'), (13985, 'Wireless Personal Communications', 1572834, 0.302, 'Q3', 60, 904, 27828, 5637, 3019, '16', '1994-2020', 'Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3)'), (13986, 'Acta Dermatovenerologica Croatica', 1330027, 0.301, 'Q3', 23, 37, 0, 152, 121, '58', '1994-2020', 'Dermatology (Q3); Infectious Diseases (Q3); Medicine (miscellaneous) (Q3)'), (13987, 'African Journal of Disability', 22267220, 0.301, 'Q3', 8, 25, 1246, 88, 74, '27', '2018-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (13988, 'Archive of Mechanical Engineering', 23001895, 0.301, 'Q3', 13, 18, 609, 107, 87, '17', '1970-1988, 2010-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (13989, 'Archives of Polish Fisheries', 20836139, 0.301, 'Q3', 18, 0, 0, 57, 47, '17', '2008-2018', 'Aquatic Science (Q3)'), (13990, 'Current Geriatrics Reports', 21967865, 0.301, 'Q3', 11, 37, 2065, 109, 110, '2', '2014-2020', 'Geriatrics and Gerontology (Q3)'), (13991, 'Dizhen Dizhi', 2534967, 0.301, 'Q3', 31, 92, 3708, 199, 276, '1', '1996-2020', 'Geology (Q3)'), (13992, 'Faith and Philosophy', 7397046, 0.301, 'Q1', 22, 17, 493, 29, 54, '2', '1995-2019', 'Philosophy (Q1); Religious Studies (Q1)'), (13993, 'Genetical Research', 166723, 0.301, 'Q3', 71, 6, 190, 25, 14, '3', '1960-2020', 'Medicine (miscellaneous) (Q3); Genetics (Q4)'), (13994, 'Gesunde Pflanzen', 3674223, 0.301, 'Q2', 14, 43, 1985, 99, 80, '5', '1974-1978, 1980-1989, 1996-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (13995, 'Hong Kong Journal of Occupational Therapy', 15691861, 0.301, 'Q3', 13, 7, 200, 44, 37, '37', '2002-2019', 'Occupational Therapy (Q3)'), (13996, 'Indian Journal of Leprosy', 2549395, 0.301, 'Q3', 22, 26, 444, 23, 71, '4', '1984-2020', 'Dermatology (Q3); Infectious Diseases (Q3)'), (13997, 'International Journal of Fluid Machinery and ', 18829554, 0.301, 'Q2', 12, 70, 1434, 125, 126, '6', '2012-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q3)'), (13998, 'Journal of Biomedical Informatics: X', 2590177, 0.301, 'Q3', 3, 7, 297, 32, 13, '2', '2019-2020', 'Computer Science Applications (Q3); Health Informatics (Q3)'), (13999, 'Journal of Germanic Linguistics', 14753014, 0.301, 'Q1', 15, 10, 845, 15, 26, '3', '2001-2007, 2009-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14000, 'Journal of International Communication', 21627177, 0.301, 'Q2', 6, 15, 932, 54, 44, '3', '2015-2020', 'Communication (Q2)'), (14001, 'Journal of Liquid Chromatography and Related ', 1520572, 0.301, 'Q3', 50, 100, 4416, 439, 322, '2', '1996-2020', 'Analytical Chemistry (Q3); Pharmaceutical Science (Q3); Biochemistry (Q4); Clinical Biochemistry (Q4)'), (14002, 'Journal of Microbiology and Biology Education', 19357877, 0.301, 'Q2', 7, 75, 1998, 148, 152, '2', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Education (Q3); Immunology and Microbiology (miscellaneous) (Q4)'), (14003, 'Journal of Pharmacology and Pharmacotherapeut', 976500, 0.301, 'Q3', 34, 25, 506, 85, 81, '4', '2010-2019', 'Pharmacology (Q3); Pharmacology (medical) (Q3)'), (14004, 'Journal of Radars', 2095283, 0.301, 'Q3', 13, 76, 3787, 348, 219, '1', '2016-2020', 'Electrical and Electronic Engineering (Q3); Instrumentation (Q3); Signal Processing (Q3)'), (14005, 'Journal of Systems Engineering and Electronic', 16711793, 0.301, 'Q3', 33, 109, 3411, 674, 374, '1', '1992-2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)'), (14006, 'KI - Kunstliche Intelligenz', 16101987, 0.301, 'Q3', 22, 60, 2167, 220, 101, '19', '2010-2020', 'Artificial Intelligence (Q3)'), (14007, 'Measurement Science Review', 13358871, 0.301, 'Q3', 27, 30, 722, 149, 102, '53', '2008-2020', 'Biomedical Engineering (Q3); Control and Systems Engineering (Q3); Instrumentation (Q3)'), (14008, 'Methods, Data, Analyses', 21904936, 0.301, 'Q3', 2, 5, 293, 15, 15, '5', '2019-2020', 'Applied Mathematics (Q3); Applied Psychology (Q3); Computer Science Applications (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (14009, 'NanoEthics', 18714765, 0.301, 'Q1', 28, 22, 1243, 105, 60, '16', '2007-2020', 'Philosophy (Q1); History and Philosophy of Science (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Management of Technology and Innovation (Q3); Nanoscience and Nanot'), (14010, 'Northwest Science', 29344, 0.301, 'Q3', 35, 21, 1165, 50, 76, '2', '1975, 1977-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (14011, 'Open Geosciences', 23915447, 0.301, 'Q3', 24, 122, 5891, 316, 217, '5', '2014-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (14012, 'Pesquisa Operacional', 1017438, 0.301, 'Q3', 18, 16, 588, 60, 67, '14', '2006-2020', 'Management Science and Operations Research (Q3)'), (14013, 'Philosophia (United States)', 483893, 0.301, 'Q1', 20, 170, 5369, 139, 288, '16', '1971-1995, 1997-1999, 2001-2020', 'Philosophy (Q1)'), (14014, 'Proceedings of the Institution of Mechanical ', 1754338, 0.301, 'Q2', 20, 69, 2353, 156, 141, '3', '2008-2020', 'Engineering (miscellaneous) (Q2); Sports Science (Q4)'), (14015, 'Psychoanalytic Study of the Child', 797308, 0.301, 'Q3', 20, 24, 514, 35, 64, '3', '1945-1946, 1958, 1960-1961, 1963, 1965-1972, 1974-2009, 2011-2015, 2017-2020', 'Developmental and Educational Psychology (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3)'), (14016, 'Pyrenae', 23399171, 0.301, 'Q1', 4, 16, 901, 9, 17, '12', '2015-2020', 'Classics (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14017, 'Radioprotection', 1769700, 0.301, 'Q3', 17, 73, 1540, 83, 74, '8', '1977-1981, 1988-2020', 'Nuclear Energy and Engineering (Q3); Public Health, Environmental and Occupational Health (Q3); Renewable Energy, Sustainability and the Environment (Q3); Safety, Risk, Reliability and Quality (Q3); W'), (14018, 'Research in Educational Administration and Le', 25647261, 0.301, 'Q3', 4, 31, 1809, 24, 46, '18', '2016-2020', 'Education (Q3)'), (14019, 'Russian Journal of Inorganic Chemistry', 360236, 0.301, 'Q3', 31, 264, 8926, 950, 766, '10', '1996-2020', 'Materials Science (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3); Inorganic Chemistry (Q4)'), (14020, 'Simulation', 17413133, 0.301, 'Q3', 48, 71, 2688, 380, 225, '3', '1963-2020', 'Computer Graphics and Computer-Aided Design (Q3); Mathematics (miscellaneous) (Q3); Modeling and Simulation (Q3); Software (Q3)'), (14021, 'Social Science Information', 5390184, 0.301, 'Q2', 40, 35, 2240, 91, 89, '3', '1962-2020', 'Library and Information Sciences (Q2); Social Sciences (miscellaneous) (Q2)'), (14022, 'Solid Fuel Chemistry', 3615219, 0.301, 'Q3', 16, 61, 1419, 162, 186, '10', '1975-1989, 1995-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Fuel Technology (Q3)'), (14023, 'Zeitschrift fur Naturforschung - Section C Jo', 9395075, 0.301, 'Q3', 67, 66, 2254, 252, 146, '5', '1973-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (14024, 'AIMS Environmental Science', 23720352, 0.3, 'Q3', 4, 37, 1733, 37, 27, '2', '2019-2020', 'Environmental Science (miscellaneous) (Q3)'), (14025, 'Anesthesiology Research and Practice', 16876962, 0.3, 'Q3', 24, 38, 1222, 58, 62, '32', '2008-2020', 'Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)'), (14026, 'Animal Science Papers and Reports', 8604037, 0.3, 'Q2', 25, 29, 1331, 107, 96, '17', '2007-2020', 'Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3); Biotechnology (Q3); Genetics (Q4)'), (14027, 'Annales Botanici Fennici', 33847, 0.3, 'Q3', 36, 48, 1085, 88, 143, '38', '1973, 1975, 1977-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (14028, 'Forestry Studies', 14069954, 0.3, 'Q3', 12, 22, 814, 36, 42, '71', '2006-2020', 'Forestry (Q3)'), (14029, 'Hemoglobin', 3630269, 0.3, 'Q3', 40, 99, 2375, 184, 219, '2', '1976-2020', 'Biochemistry (medical) (Q3); Clinical Biochemistry (Q4); Genetics (clinical) (Q4); Hematology (Q4)'), (14030, 'Housing, Care and Support', 14608790, 0.3, 'Q2', 9, 11, 497, 39, 43, '3', '1999-2020', 'Sociology and Political Science (Q2); Geography, Planning and Development (Q3)'), (14031, 'IEEE Engineering Management Review', 3608581, 0.3, 'Q3', 20, 95, 2474, 293, 207, '2', '1973-1987, 1991, 1993-2020', 'Electrical and Electronic Engineering (Q3); Strategy and Management (Q3)'), (14032, 'Indian Journal of Genetics and Plant Breeding', 9756906, 0.3, 'Q3', 14, 68, 1314, 145, 210, '4', '2008-2019', 'Plant Science (Q3); Genetics (Q4)'), (14033, 'International Journal of Humanoid Robotics', 2198436, 0.3, 'Q3', 33, 38, 1586, 171, 110, '37', '2006-2020', 'Artificial Intelligence (Q3); Mechanical Engineering (Q3)'), (14034, 'International Journal of Systems Assurance En', 9764348, 0.3, 'Q3', 24, 146, 6086, 846, 492, '4', '2010-2020', 'Safety, Risk, Reliability and Quality (Q3); Strategy and Management (Q3)'), (14035, 'Izvestiya Vysshikh Uchebnykh Zavedenij. Chern', 3680797, 0.3, 'Q2', 7, 105, 2667, 204, 414, '10', '1971, 1974-1988, 2001-2004, 2017-2020', 'Metals and Alloys (Q2); Materials Science (miscellaneous) (Q3)'), (14036, 'Journal of Agricultural Engineering', 22396268, 0.3, 'Q2', 18, 30, 744, 140, 87, '7', '2012-2020', 'Industrial and Manufacturing Engineering (Q2); Mechanical Engineering (Q3); Bioengineering (Q4)'), (14037, 'Journal of Community Health Nursing', 15327655, 0.3, 'Q3', 34, 24, 804, 57, 60, '2', '1984-2020', 'Community and Home Care (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14038, 'Journal of Contemporary Dental Practice', 15263711, 0.3, 'Q3', 43, 214, 6091, 708, 711, '2', '1999-2020', 'Dentistry (miscellaneous) (Q3)'), (14039, 'Journal of Medical and Biological Engineering', 16090985, 0.3, 'Q3', 35, 105, 3165, 469, 268, '19', '2001-2020', 'Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)'), (14040, 'Journal of Negative Results in BioMedicine', 14775751, 0.3, 'Q2', 22, 0, 0, 27, 15, '3', '2002-2017', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (14041, 'Journal of Neonatal Nursing', 13551841, 0.3, 'Q2', 21, 87, 2318, 151, 144, '3', '2005-2020', 'Maternity and Midwifery (Q2); Pediatrics (Q3)'), (14042, 'Journal of Population Research', 18359469, 0.3, 'Q2', 21, 17, 916, 46, 55, '16', '2005-2020', 'Demography (Q2)'), (14043, 'Journal of Real-Time Image Processing', 18618200, 0.3, 'Q3', 34, 204, 7735, 699, 301, '5', '2006-2020', 'Information Systems (Q3)'), (14044, 'Journal of the Torrey Botanical Society', 10955674, 0.3, 'Q3', 45, 28, 1509, 85, 104, '2', '1996-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (14045, 'Mental Health and Social Inclusion', 20428308, 0.3, 'Q3', 13, 41, 997, 91, 101, '3', '2010-2020', 'Health (social science) (Q3); Psychiatric Mental Health (Q3); Psychiatry and Mental Health (Q3)'), (14046, 'Munibe Antropologia-Arkeologia', 11322217, 0.3, 'Q2', 6, 0, 0, 20, 42, '12', '2013-2019', 'Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14047, 'Netherlands Journal of Medicine', 3002977, 0.3, 'Q3', 57, 115, 1761, 235, 294, '16', '1973-2020', 'Internal Medicine (Q3); Medicine (miscellaneous) (Q3)'), (14048, 'Northwestern Journal of International Law and', 1963228, 0.3, 'Q2', 6, 8, 0, 58, 38, '2', '2015-2020', 'Law (Q2); Business and International Management (Q3); Strategy and Management (Q3)'), (14049, 'Personality Neuroscience', 25139886, 0.3, 'Q3', 2, 10, 828, 10, 7, '2', '2019', 'Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3); Behavioral Neuroscience (Q4); Cognitive Neuroscience (Q4)'), (14050, 'Revista Espanola de Ciencia Politica', 15756548, 0.3, 'Q2', 6, 27, 1246, 46, 77, '12', '2012-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (14051, 'Social Science Japan Journal', 13691465, 0.3, 'Q2', 20, 11, 623, 32, 35, '3', '1998-2020', 'Social Sciences (miscellaneous) (Q2)'), (14052, 'South African Family Practice', 10251979, 0.3, 'Q2', 18, 84, 1780, 119, 166, '3', '2000-2020', 'Family Practice (Q2); Public Health, Environmental and Occupational Health (Q3)'), (14053, 'Yi Qi Yi Biao Xue Bao/Chinese Journal of Scie', 2543087, 0.3, 'Q3', 32, 342, 8556, 1177, 1068, '1', '1998, 2001-2020', 'Instrumentation (Q3)'), (14054, 'Acta Pedologica Sinica', 5643929, 0.299, 'Q3', 12, 133, 5568, 393, 334, '1', '1979-1980, 1983-1985, 1988, 2016-2020', 'Soil Science (Q3)'), (14055, 'African Studies', 20184, 0.299, 'Q1', 25, 30, 1593, 84, 98, '3', '1942-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (14056, 'Annals of the Academy of Medicine, Singapore', 3044602, 0.299, 'Q3', 60, 171, 74, 182, 157, '37', '1973-2020', 'Medicine (miscellaneous) (Q3)'), (14057, 'Australian Journal of Language and Literacy', 10381562, 0.299, 'Q2', 19, 2, 73, 28, 26, '11', '1997-2018', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (14058, 'Automatic Control and Computer Sciences', 1558108, 0.299, 'Q3', 17, 107, 2343, 447, 370, '10', '1973-2020', 'Control and Systems Engineering (Q3); Signal Processing (Q3); Software (Q3)'), (14059, 'Avances de Investigacion en Educacion Matemat', 22544313, 0.299, 'Q3', 2, 16, 472, 17, 23, '12', '2018-2020', 'Education (Q3); Mathematics (miscellaneous) (Q3)'), (14060, 'Biomedizinische Technik', 135585, 0.299, 'Q3', 37, 124, 3038, 334, 234, '5', '1956-2020', 'Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)'), (14061, 'Canadian Journal of Criminology and Criminal ', 17077753, 0.299, 'Q2', 38, 17, 1119, 74, 60, '9', '2003-2020', 'Law (Q2); Social Sciences (miscellaneous) (Q2)'), (14062, 'Case Reports in Ophthalmology', 16632699, 0.299, 'Q3', 17, 99, 1385, 178, 247, '19', '2010-2020', 'Ophthalmology (Q3)'), (14063, 'Cato Journal', 2733072, 0.299, 'Q2', 29, 39, 1261, 66, 98, '2', '1985, 1996-2002, 2004-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Geography, Planning and Development (Q3); Public Administration (Q3)'), (14064, 'European Journal of Mass Spectrometry', 17516838, 0.299, 'Q3', 43, 41, 1582, 150, 145, '3', '1996-2020', 'Atomic and Molecular Physics, and Optics (Q3); Medicine (miscellaneous) (Q3); Spectroscopy (Q4)'), (14065, 'Extreme Physiology and Medicine', 20467648, 0.299, 'Q3', 22, 0, 0, 8, 4, '3', '2012-2018', 'Orthopedics and Sports Medicine (Q3); Physiology (medical) (Q3); Physiology (Q4)'), (14066, 'Family Medicine and Community Health', 20098774, 0.299, 'Q2', 8, 46, 938, 107, 96, '42', '2013-2020', 'Family Practice (Q2); Public Health, Environmental and Occupational Health (Q3)'), (14067, 'Glass Physics and Chemistry', 1608313, 0.299, 'Q3', 25, 91, 2069, 238, 294, '10', '1996-2020', 'Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3)'), (14068, 'Indian Journal of Plastic Surgery', 1998376, 0.299, 'Q3', 29, 89, 1155, 143, 137, '4', '2001, 2005-2020', 'Surgery (Q3)'), (14069, 'International Journal of Web-Based Learning a', 15481107, 0.299, 'Q3', 12, 18, 648, 80, 57, '2', '2006-2020', 'Computer Science Applications (Q3); Education (Q3); E-learning (Q3)'), (14070, 'Journal of Contemporary European Research', 1815347, 0.299, 'Q2', 15, 21, 1287, 50, 69, '3', '2011-2020', 'Political Science and International Relations (Q2)'), (14071, 'Journal of Financial Reporting and Accounting', 20425856, 0.299, 'Q2', 7, 45, 3515, 145, 76, '3', '2003, 2017-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Accounting (Q3); Management Information Systems (Q3)'), (14072, 'Journal of Immunoassay and Immunochemistry', 15321819, 0.299, 'Q3', 26, 57, 2219, 190, 162, '2', '2001-2020', 'Medical Laboratory Technology (Q3); Clinical Biochemistry (Q4); Immunology (Q4); Immunology and Allergy (Q4)'), (14073, 'Journal of Intercultural Communication Resear', 17475759, 0.299, 'Q1', 20, 46, 2438, 109, 98, '3', '2006-2020', 'Cultural Studies (Q1); Communication (Q2)'), (14074, 'Journal of Relationships Research', 18380956, 0.299, 'Q3', 10, 17, 824, 67, 34, '3', '2016-2020', 'Applied Psychology (Q3); Social Psychology (Q3)'), (14075, 'Journal of Testing and Evaluation', 19457553, 0.299, 'Q3', 36, 276, 8352, 919, 870, '2', '1973-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14076, 'Journal of the Australian Ceramic Society', 4881, 0.299, 'Q3', 21, 164, 5558, 418, 321, '19', '2007-2020', 'Ceramics and Composites (Q3); Materials Chemistry (Q3)'), (14077, 'Kratylos', 234567, 0.299, 'Q1', 2, 0, 0, 1, 2, '5', '2003-2006, 2018', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14078, 'Marine Ornithology', 10183337, 0.299, 'Q3', 31, 40, 1625, 80, 102, '9', '1990-1991, 1993-2020', 'Animal Science and Zoology (Q3); Oceanography (Q3)'), (14079, 'Nationalism and Ethnic Politics', 15572986, 0.299, 'Q2', 24, 22, 204, 65, 72, '3', '1995-2020', 'Political Science and International Relations (Q2); Geography, Planning and Development (Q3)'), (14080, 'Phase Transitions', 10290338, 0.299, 'Q3', 44, 93, 3685, 460, 342, '3', '1979-2020', 'Instrumentation (Q3); Materials Science (miscellaneous) (Q3)'), (14081, 'Psychoanalytic Psychotherapy', 2668734, 0.299, 'Q3', 16, 21, 738, 42, 54, '3', '1985-1987, 1989-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (14082, 'Romanian Journal of Morphology and Embryology', 20668279, 0.299, 'Q3', 29, 68, 2971, 528, 550, '43', '1991-1999, 2005-2020', 'Embryology (Q3); Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Cell Biology (Q4); Developmental Biology (Q4)'), (14083, 'Scandinavian Journal of History', 3468755, 0.299, 'Q1', 20, 42, 2954, 46, 82, '3', '1976-2020', 'History (Q1)'), (14084, 'Scientia Iranica', 10263098, 0.299, 'Q2', 51, 141, 5349, 1109, 830, '15', '1999-2020', 'Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Industrial and Manufacturing Engineering (Q2); Chemistry (miscellaneous) (Q3); Civil and Structural Engineering (Q3); Materials'), (14085, 'Services Marketing Quarterly', 15332977, 0.299, 'Q3', 29, 16, 1032, 84, 61, '3', '2001-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (14086, 'Structural Integrity and Life', 14513749, 0.299, 'Q3', 13, 46, 1059, 112, 97, '55', '2010-2012, 2015-2019', 'Civil and Structural Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3); Safety, Risk, Reliability and Quality (Q3)'), (14087, 'Time and Mind', 17516978, 0.299, 'Q2', 10, 22, 1079, 37, 54, '3', '2008-2020', 'Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14088, 'World Economy and International Relations', 1312227, 0.299, 'Q2', 7, 160, 4374, 196, 410, '10', '2015-2020', 'Political Science and International Relations (Q2); Economics and Econometrics (Q3)'), (14089, 'Accounting Research Journal', 10309616, 0.298, 'Q3', 15, 53, 2339, 144, 106, '3', '2005-2020', 'Accounting (Q3); Finance (Q3)'), (14090, 'Annals of Library and Information Studies', 9725423, 0.298, 'Q2', 13, 27, 851, 57, 77, '4', '2011-2020', 'Library and Information Sciences (Q2); Computer Science Applications (Q3)'), (14091, 'Assistenza Infermieristica e Ricerca', 15925986, 0.298, 'Q3', 11, 25, 439, 56, 88, '7', '1999-2020', 'Nursing (miscellaneous) (Q3)'), (14092, 'Australasian Accounting, Business and Finance', 18342000, 0.298, 'Q3', 10, 34, 1312, 125, 79, '11', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3)'), (14093, 'Circulo de Linguistica Aplicada a la Comunica', 15764737, 0.298, 'Q2', 6, 53, 2426, 80, 179, '12', '2010-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14094, 'Clinica e Investigacion en Arteriosclerosis', 2149168, 0.298, 'Q3', 13, 44, 1530, 159, 120, '12', '2007-2020', 'Cardiology and Cardiovascular Medicine (Q3); Pharmacology (medical) (Q3)'), (14095, 'Dissolution Technologies', 1521298, 0.298, 'Q3', 33, 20, 529, 61, 62, '2', '1996-2020', 'Pharmaceutical Science (Q3)'), (14096, 'Econ Journal Watch', 1933527, 0.298, 'Q3', 15, 24, 832, 32, 62, '2', '2008-2020', 'Economics and Econometrics (Q3)'), (14097, 'International Biomechanics', 23335432, 0.298, 'Q3', 9, 8, 311, 33, 30, '3', '2014-2020', 'Biomedical Engineering (Q3); Computer Science Applications (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (14098, 'International Journal of Business Innovation ', 17510252, 0.298, 'Q3', 21, 80, 5587, 325, 309, '3', '2006-2014, 2018, 2020', 'Business and International Management (Q3); Management of Technology and Innovation (Q3)'), (14099, 'International Journal of Mathematics and Comp', 18140432, 0.298, 'Q2', 7, 135, 2011, 82, 103, '2', '2017-2020', 'Computer Science (miscellaneous) (Q2); Applied Mathematics (Q3); Computational Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3); Modeling and Simulation (Q3); Numerical Analysis (Q3); Alg'), (14100, 'International Journal of Nanoelectronics and ', 19855761, 0.298, 'Q3', 13, 96, 2685, 233, 153, '23', '2012-2020', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (14101, 'International Journal of Odonatology', 13887890, 0.298, 'Q3', 21, 30, 1427, 53, 56, '3', '1998-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (14102, 'International Journal of Sociology', 15579336, 0.298, 'Q2', 4, 30, 1631, 24, 21, '3', '2019-2020', 'Social Sciences (miscellaneous) (Q2)'), (14103, 'Irish Journal of Agricultural and Food Resear', 7916833, 0.298, 'Q3', 30, 2, 65, 45, 26, '42', '1993-2020', 'Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Ecology (Q3); Food Science (Q3)'), (14104, 'Journal of Allied Health', 1945404, 0.298, 'Q3', 35, 74, 1226, 143, 180, '2', '1975-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (14105, 'Journal of Chiropractic Medicine', 15563715, 0.298, 'Q3', 22, 35, 1239, 174, 127, '2', '2002-2020', 'Chiropractics (Q3)'), (14106, 'Journal of Economic Integration', 19765525, 0.298, 'Q2', 9, 30, 1541, 97, 82, '13', '2013-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (14107, 'Journal of Orthodontic Science', 22780203, 0.298, 'Q3', 4, 6, 116, 46, 44, '4', '2018-2020', 'Orthodontics (Q3)'), (14108, 'Journal of Poverty', 10875549, 0.298, 'Q2', 23, 43, 2123, 97, 88, '2', '1997-2020', 'Sociology and Political Science (Q2); Demography (Q3)'), (14109, 'Journal of the Anthropological Society of Sou', 10344438, 0.298, 'Q2', 6, 4, 103, 10, 15, '11', '1999, 2008, 2011-2018', 'Anthropology (Q2)'), (14110, 'ORAL and Implantology', 20352468, 0.298, 'Q3', 17, 0, 0, 215, 105, '7', '2012-2019', 'Dentistry (miscellaneous) (Q3)'), (14111, 'Reports on Mathematical Physics', 344877, 0.298, 'Q4', 40, 51, 1273, 200, 141, '3', '1970-1980, 1984-1986, 1988-1989, 1991-2020', 'Mathematical Physics (Q4); Statistical and Nonlinear Physics (Q4)'), (14112, 'Revista Espanola de Investigaciones Sociologi', 2105233, 0.298, 'Q2', 17, 32, 1492, 96, 98, '12', '1980-1983, 2008-2020', 'Sociology and Political Science (Q2)'), (14113, 'Rock Art Research', 8130426, 0.298, 'Q1', 11, 17, 901, 19, 18, '11', '2009-2014, 2016-2018, 2020', 'Visual Arts and Performing Arts (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14114, 'Sankhya A', 976836, 0.298, 'Q3', 8, 49, 1318, 73, 63, '4', '2010-2020', 'Statistics and Probability (Q3); Statistics, Probability and Uncertainty (Q3)'), (14115, 'Scientific African', 24682276, 0.298, 'Q2', 8, 395, 17449, 285, 161, '16', '2018-2020', 'Multidisciplinary (Q2)'), (14116, 'Traditiones', 3520447, 0.298, 'Q1', 8, 24, 924, 19, 70, '60', '1982, 2011-2020', 'Cultural Studies (Q1); Music (Q1); Anthropology (Q2)'), (14117, 'Vestnik Moskovskogo Unviersiteta, Seriya Geog', 5799414, 0.298, 'Q2', 11, 46, 1172, 116, 224, '10', '1978-1993, 1995-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (14118, 'Waterbirds', 15244695, 0.298, 'Q3', 45, 31, 1250, 96, 151, '2', '1996-2020', 'Animal Science and Zoology (Q3)'), (14119, 'Zeitschrift fur Geomorphologie', 3728854, 0.298, 'Q3', 34, 0, 0, 68, 77, '5', '1979-2019', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (14120, 'Acta Societatis Botanicorum Poloniae', 16977, 0.297, 'Q3', 29, 22, 1659, 137, 115, '17', '1960-1979, 1981-2020', 'Plant Science (Q3)'), (14121, 'AJP Reports', 21577005, 0.297, 'Q3', 7, 72, 1535, 89, 104, '2', '2014-2020', 'Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (14122, 'Annals of Solid and Structural Mechanics', 18676944, 0.297, 'Q3', 13, 12, 496, 14, 9, '5', '2010-2019', 'Aerospace Engineering (Q3); Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14123, 'Archives of Mining Sciences', 8607001, 0.297, 'Q3', 21, 54, 1719, 206, 177, '17', '1991, 2008-2020', 'Geotechnical Engineering and Engineering Geology (Q3); Geochemistry and Petrology (Q4)'), (14124, 'Australian and New Zealand Journal of Family ', 814723, 0.297, 'Q2', 19, 29, 1062, 86, 121, '3', '1979-1995, 2001-2003, 2005-2020', 'Sociology and Political Science (Q2); Psychology (miscellaneous) (Q3)'), (14125, 'Brazilian Journal of Physics', 1039733, 0.297, 'Q3', 48, 87, 3599, 346, 242, '2', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (14126, 'Chinese Political Science Review', 23654252, 0.297, 'Q2', 7, 29, 1814, 72, 80, '37', '2016-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (14127, 'Clinical and Experimental Neuroimmunology', 17591961, 0.297, 'Q3', 15, 58, 1742, 122, 127, '3', '2010-2020', 'Neurology (clinical) (Q3); Immunology (Q4); Immunology and Microbiology (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4)'), (14128, 'Coloration Technology', 14784408, 0.297, 'Q3', 49, 52, 1798, 251, 160, '2', '2001-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (14129, 'Contemporary Social Science', 2158205, 0.297, 'Q1', 21, 53, 2729, 152, 92, '3', '2011-2020', 'History (Q1); Social Sciences (miscellaneous) (Q2)'), (14130, 'Drug Target Insights', 11773928, 0.297, 'Q2', 12, 0, 0, 20, 9, '41', '2008-2009, 2011-2019', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3); Clinical Biochemistry (Q4)'), (14131, 'German Economic Review', 14680475, 0.297, 'Q3', 33, 17, 702, 96, 98, '3', '2001-2019', 'Economics and Econometrics (Q3)'), (14132, 'Global and Stochastic Analysis', 22489444, 0.297, 'Q3', 10, 18, 707, 111, 45, '4', '2014-2020', 'Discrete Mathematics and Combinatorics (Q3); Statistics and Probability (Q4)'), (14133, 'Indian Journal of Animal Research', 3676722, 0.297, 'Q2', 11, 276, 7337, 360, 659, '4', '2008-2020', 'Veterinary (miscellaneous) (Q2); Animal Science and Zoology (Q3)'), (14134, 'Interdisciplinary Toxicology', 13379569, 0.297, 'Q3', 29, 6, 725, 93, 75, '53', '2008-2020', 'Pharmacology (Q3); Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)'), (14135, 'Journal of Asian Security and International A', 23490039, 0.297, 'Q2', 5, 14, 984, 30, 35, '2', '2014-2020', 'Political Science and International Relations (Q2)'), (14136, 'Journal of Financial Crime', 17587239, 0.297, 'Q2', 23, 168, 7766, 283, 209, '3', '1993-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2)'), (14137, 'Journal of Financial Management of Property a', 17598443, 0.297, 'Q3', 22, 27, 1805, 116, 62, '3', '2005-2020', 'Accounting (Q3); Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (14138, 'Journal of Human Rights and the Environment', 17597188, 0.297, 'Q2', 7, 23, 52, 35, 31, '3', '2016-2020', 'Law (Q2); Sociology and Political Science (Q2); Management, Monitoring, Policy and Law (Q3)'), (14139, 'Journal of Intergenerational Relationships', 15350770, 0.297, 'Q2', 22, 52, 2150, 96, 102, '2', '2003-2020', 'Archeology (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Geriatrics and Gerontology (Q3); Social Psychology (Q3); Life-span and Life-course Studies (Q4)'), (14140, 'Journal of Medical Imaging and Radiation Scie', 18767982, 0.297, 'Q3', 12, 175, 2921, 298, 179, '2', '2008-2020', 'Radiological and Ultrasound Technology (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (14141, 'Journal of Tropical Forest Science', 1281283, 0.297, 'Q3', 30, 47, 1453, 169, 169, '23', '1988, 1993-2020', 'Forestry (Q3)'), (14142, 'Ocean Development and International Law', 908320, 0.297, 'Q2', 31, 19, 23, 64, 56, '3', '1973-2020', 'Law (Q2); Political Science and International Relations (Q2); Development (Q3); Management, Monitoring, Policy and Law (Q3)'), (14143, 'Pediatric Reports', 2036749, 0.297, 'Q3', 19, 46, 989, 56, 53, '7', '2010-2020', 'Pediatrics (Q3)'), (14144, 'Psicologica', 2112159, 0.297, 'Q2', 19, 12, 564, 26, 36, '12', '2004-2018', 'Arts and Humanities (miscellaneous) (Q2); Developmental and Educational Psychology (Q3); Psychology (miscellaneous) (Q3); Experimental and Cognitive Psychology (Q4); Statistics and Probability (Q4)'), (14145, 'Psychiatry and Clinical Psychopharmacology', 24750573, 0.297, 'Q3', 17, 0, 0, 233, 282, '3', '2017-2019', 'Pharmacology (medical) (Q3); Psychiatry and Mental Health (Q3)'), (14146, 'Redia', 3704327, 0.297, 'Q2', 11, 22, 570, 64, 76, '7', '2011-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (14147, 'Research in Education', 345237, 0.297, 'Q3', 14, 24, 1283, 59, 53, '3', '2007-2020', 'Education (Q3)'), (14148, 'Statistics, Optimization and Information Comp', 23105070, 0.297, 'Q3', 12, 66, 1820, 197, 137, '2', '2013-2020', 'Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Control and Optimization (Q3); Information Systems (Q3); Signal Processing (Q3); Statistics, Probability and Uncertainty (Q3'), (14149, 'Technical Physics', 10637842, 0.297, 'Q3', 34, 311, 6639, 691, 931, '10', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (14150, 'African Journalism Studies', 23743689, 0.296, 'Q2', 15, 24, 1052, 75, 76, '3', '2015-2020', 'Communication (Q2)'), (14151, 'Analytical Chemistry Research', 22141812, 0.296, 'Q3', 13, 0, 0, 27, 12, '16', '2014-2017', 'Analytical Chemistry (Q3); Biochemistry (Q4)'), (14152, 'Annals of Geriatric Medicine and Research', 25084798, 0.296, 'Q3', 7, 47, 1350, 83, 86, '13', '2016-2020', 'Geriatrics and Gerontology (Q3)'), (14153, 'Anthropological Science', 9187960, 0.296, 'Q2', 29, 11, 447, 40, 44, '6', '1993-2020', 'Anthropology (Q2)'), (14154, 'Anti-Inflammatory and Anti-Allergy Agents in ', 18715230, 0.296, 'Q3', 23, 34, 1670, 65, 37, '52', '2006-2020', 'Medicine (miscellaneous) (Q3); Pharmacology (Q3); Immunology (Q4); Immunology and Allergy (Q4)'), (14155, 'Bulletin of the Iranian Mathematical Society', 1017060, 0.296, 'Q3', 18, 203, 4263, 261, 363, '15', '2008-2020', 'Mathematics (miscellaneous) (Q3)'), (14156, 'Communication Review', 10714421, 0.296, 'Q2', 30, 14, 768, 41, 40, '3', '1995-2001, 2003-2020', 'Communication (Q2)'), (14157, 'Defence Studies', 14702436, 0.296, 'Q1', 10, 22, 1488, 71, 66, '3', '2010-2020', 'History (Q1); Political Science and International Relations (Q2)'), (14158, 'Gesundheitswesen', 14394421, 0.296, 'Q3', 43, 201, 4812, 319, 399, '5', '1992-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14159, 'Girlhood Studies', 19388209, 0.296, 'Q2', 6, 32, 836, 39, 79, '2', '2014-2020', 'Sociology and Political Science (Q2); Developmental and Educational Psychology (Q3); Education (Q3); Gender Studies (Q3); Social Psychology (Q3); Life-span and Life-course Studies (Q4)'), (14160, 'International Journal of Data and Network Sci', 25618148, 0.296, 'Q2', 7, 34, 1383, 70, 27, '9', '2018-2020', 'Communication (Q2); Artificial Intelligence (Q3); Computer Networks and Communications (Q3); Computer Science Applications (Q3); Information Systems (Q3); Software (Q3)'), (14161, 'International Journal of Fuzzy Logic and Inte', 2093744, 0.296, 'Q3', 9, 40, 883, 197, 120, '13', '2017-2020', 'Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Logic (Q3); Signal Processing (Q3)'), (14162, 'International Journal of Society, Culture and', 23292210, 0.296, 'Q2', 2, 18, 853, 20, 18, '15', '2019-2020', 'Anthropology (Q2); Linguistics and Language (Q2); Education (Q3); Gender Studies (Q3)'), (14163, 'International Journal of Value Chain Manageme', 17415365, 0.296, 'Q3', 15, 18, 973, 58, 51, '3', '2006-2014', 'Computer Science Applications (Q3); Information Systems (Q3); Strategy and Management (Q3)'), (14164, 'Journal of Adult Protection, The', 14668203, 0.296, 'Q2', 17, 36, 1429, 54, 85, '3', '1999-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (14165, 'Journal of Dental Sciences', 22138862, 0.296, 'Q3', 21, 114, 2811, 306, 175, '22', '2009-2020', 'Dentistry (miscellaneous) (Q3)'), (14166, 'Journal of Environmental Management and Touri', 20687729, 0.296, 'Q3', 14, 209, 6164, 681, 542, '43', '2013-2020', 'Economics and Econometrics (Q3); Management, Monitoring, Policy and Law (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (14167, 'Journal of Forensic Identification', 895173, 0.296, 'Q3', 29, 0, 0, 67, 55, '2', '1996-2019', 'Pathology and Forensic Medicine (Q3)'), (14168, 'Journal of Perianesthesia Nursing', 15328473, 0.296, 'Q2', 32, 140, 3549, 359, 368, '3', '1996-2020', 'Medical and Surgical Nursing (Q2)'), (14169, 'Journal of the Polynesian Society', 324000, 0.296, 'Q1', 13, 15, 1255, 32, 53, '41', '1971-1972, 1977, 1979, 1988, 1996, 2001, 2006-2020', 'Cultural Studies (Q1); Anthropology (Q2); Archeology (arts and humanities) (Q2)'), (14170, 'Lakes and Reservoirs: Research and Management', 14401770, 0.296, 'Q3', 39, 38, 1941, 113, 109, '3', '1995-1996, 1998-2020', 'Water Science and Technology (Q3)'), (14171, 'Modern and Contemporary France', 14699869, 0.296, 'Q1', 12, 36, 1553, 36, 80, '3', '1993-1995, 1997, 1999, 2001, 2009-2020', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)'), (14172, 'New Mathematics and Natural Computation', 17937027, 0.296, 'Q3', 10, 38, 859, 112, 84, '2', '2012-2020', 'Applied Mathematics (Q3); Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Computer Science Applications (Q3); Human-Computer Interaction (Q3)'), (14173, 'Real Estate Management and Valuation', 23005289, 0.296, 'Q3', 8, 34, 1255, 124, 113, '17', '2014-2020', 'Economics and Econometrics (Q3); Finance (Q3); Marketing (Q3); Strategy and Management (Q3)'), (14174, 'Revista Colombiana de Antropologia', 4866525, 0.296, 'Q2', 7, 35, 1306, 27, 57, '47', '2011-2020', 'Anthropology (Q2)'), (14175, 'Socialni Prace', 1805885, 0.296, 'Q2', 4, 54, 1893, 68, 130, '31', '2017-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Applied Psychology (Q3); Health (social science) (Q3)'), (14176, 'South African journal of communication disord', 3798046, 0.296, 'Q2', 11, 36, 1439, 55, 52, '27', '1977-2020', 'Communication (Q2); Language and Linguistics (Q2); Speech and Hearing (Q3); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)'), (14177, 'TDR/The Drama Review', 10542043, 0.296, 'Q1', 23, 48, 1401, 45, 137, '2', '2002-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)'), (14178, 'Yosetsu Gakkai Ronbunshu/Quarterly Journal of', 2884771, 0.296, 'Q3', 22, 28, 754, 58, 137, '6', '1983-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3); Surfaces, Coatings and Films (Q3)'), (14179, 'Acta Linguistica Academica', 25598201, 0.295, 'Q1', 10, 21, 935, 27, 68, '50', '2017-2020', 'Cultural Studies (Q1); Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14180, 'Air Medical Journal', 15326497, 0.295, 'Q3', 23, 118, 1773, 180, 279, '2', '1993-2020', 'Emergency Medicine (Q3); Emergency Nursing (Q3)'), (14181, 'Bulletin of the Korean Mathematical Society', 10158634, 0.295, 'Q3', 27, 109, 2063, 241, 406, '13', '2003, 2006-2020', 'Mathematics (miscellaneous) (Q3)'), (14182, 'Campbell Systematic Reviews', 18911803, 0.295, 'Q2', 4, 40, 4626, 59, 50, '2', '2019-2020', 'Social Sciences (miscellaneous) (Q2)'), (14183, 'Chemistry of Heterocyclic Compounds', 93122, 0.295, 'Q4', 34, 235, 8559, 702, 579, '2', '1965-2020', 'Organic Chemistry (Q4)'), (14184, 'Chinese Journal of Applied Ecology', 10019332, 0.295, 'Q3', 43, 401, 3074, 1329, 1444, '1', '1991-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Medicine (miscellaneous) (Q3)'), (14185, 'Cogent Social Sciences', 23311886, 0.295, 'Q2', 11, 127, 6771, 419, 329, '3', '2015-2020', 'Social Sciences (miscellaneous) (Q2)'), (14186, 'Cognitive Semantics', 23526416, 0.295, 'Q2', 5, 10, 334, 15, 25, '16', '2015-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14187, 'ETRI Journal', 12256463, 0.295, 'Q2', 46, 100, 3119, 448, 234, '2', '1994-2020', 'Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (14188, 'European Journal of Nanomedicine', 16625986, 0.295, 'Q3', 15, 0, 0, 28, 11, '5', '2008-2010, 2012-2017', 'Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3); Physical and Theoretical Chemistry (Q3); Bioengineering (Q4)'), (14189, 'International Journal of Information and Comm', 15501337, 0.295, 'Q3', 12, 18, 591, 101, 95, '2', '2005-2020', 'Computer Science Applications (Q3); Education (Q3); E-learning (Q3)'), (14190, 'International Journal of Pattern Recognition ', 2180014, 0.295, 'Q3', 55, 246, 8070, 789, 502, '37', '1995-2020', 'Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Software (Q3)'), (14191, 'Journal of Agrometeorology', 9721665, 0.295, 'Q3', 11, 81, 1423, 160, 244, '4', '2008-2020', 'Agronomy and Crop Science (Q3); Forestry (Q3); Atmospheric Science (Q4)'), (14192, 'Journal of Communications Technology and Elec', 15556557, 0.295, 'Q3', 24, 189, 3544, 421, 615, '10', '1995-2020', 'Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Radiation (Q3)'), (14193, 'Journal of Risk Finance', 9657967, 0.295, 'Q3', 33, 30, 1630, 156, 91, '3', '1999-2020', 'Accounting (Q3); Finance (Q3)'), (14194, 'Journal of Systems and Information Technology', 17588847, 0.295, 'Q2', 25, 17, 1081, 125, 56, '3', '1997-2004, 2007-2020', 'Computer Science (miscellaneous) (Q2); Information Systems (Q3)'), (14195, 'Journal of the American Podiatric Medical Ass', 87507315, 0.295, 'Q3', 58, 108, 2435, 216, 266, '2', '1985-2020', 'Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Podiatry (Q3)'), (14196, 'Journal of the Korean Wood Science and Techno', 22337180, 0.295, 'Q2', 12, 75, 2127, 337, 221, '13', '2012-2020', 'Industrial and Manufacturing Engineering (Q2); Materials Science (miscellaneous) (Q3)'), (14197, 'Journal of Vinyl and Additive Technology', 15480585, 0.295, 'Q3', 35, 72, 2802, 294, 213, '3', '1995, 2003-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Marketing (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (14198, 'Lithuanian Mathematical Journal', 3631672, 0.295, 'Q3', 18, 38, 783, 80, 116, '5', '1973-2020', 'Mathematics (miscellaneous) (Q3)'), (14199, 'Mathematical Methods of Statistics', 19348045, 0.295, 'Q3', 15, 0, 0, 60, 53, '10', '2007-2019', 'Statistics, Probability and Uncertainty (Q3); Statistics and Probability (Q4)'), (14200, 'Modern History of Russia', 23097973, 0.295, 'Q1', 5, 65, 1384, 54, 189, '10', '2015-2020', 'History (Q1)'), (14201, 'Place Branding and Public Diplomacy', 17518040, 0.295, 'Q3', 27, 52, 3123, 94, 77, '3', '2008-2020', 'Marketing (Q3); Strategy and Management (Q3)'), (14202, 'Polimery', 322725, 0.295, 'Q3', 26, 78, 2622, 361, 234, '17', '1969-1988, 1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (14203, 'Psychologische Rundschau', 333042, 0.295, 'Q3', 21, 40, 810, 43, 58, '5', '1973-1975, 1980, 1996-1997, 2002-2020', 'Psychology (miscellaneous) (Q3)'), (14204, 'Recherche et Applications en Marketing', 20515707, 0.295, 'Q3', 9, 44, 3930, 61, 64, '2', '2014-2020', 'Marketing (Q3)'), (14205, 'SAE Technical Papers', 26883627, 0.295, 'Q2', 107, 2202, 44703, 3967, 6705, '2', '1906-2020', 'Automotive Engineering (Q2); Industrial and Manufacturing Engineering (Q2); Pollution (Q3); Safety, Risk, Reliability and Quality (Q3)'), (14206, 'Stability', 21652627, 0.295, 'Q2', 16, 11, 851, 26, 36, '3', '2012-2020', 'Law (Q2); Political Science and International Relations (Q2)'), (14207, 'Studia Quaternaria', 16415558, 0.295, 'Q3', 14, 15, 423, 22, 30, '17', '2000-2020', 'Earth-Surface Processes (Q3); Geology (Q3)'), (14208, 'Women in Sport and Physical Activity Journal', 10636161, 0.295, 'Q3', 4, 19, 913, 40, 30, '2', '2018-2020', 'Education (Q3); Gender Studies (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (14209, 'Activities, Adaptation and Aging', 1924788, 0.294, 'Q3', 23, 37, 1742, 69, 59, '2', '1981-1999, 2001-2020', 'Geriatrics and Gerontology (Q3); Gerontology (Q3); Health Professions (miscellaneous) (Q3)'), (14210, 'AIMS Energy', 23338326, 0.294, 'Q3', 9, 55, 2587, 256, 164, '2', '2017-2020', 'Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (14211, 'Asian-European Journal of Mathematics', 17937183, 0.294, 'Q3', 14, 229, 4244, 207, 306, '37', '2008-2020', 'Mathematics (miscellaneous) (Q3)'), (14212, 'Asian Geographer', 10225706, 0.294, 'Q3', 7, 17, 1213, 43, 31, '3', '1982-1987, 1991-1995, 2015-2020', 'Geography, Planning and Development (Q3)'), (14213, 'Asian Journal of Technology Innovation', 19761597, 0.294, 'Q3', 14, 56, 3476, 100, 61, '3', '2010-2020', 'Economics and Econometrics (Q3); Management of Technology and Innovation (Q3)'), (14214, 'Asian Myrmecology', 19851944, 0.294, 'Q3', 13, 0, 0, 24, 32, '23', '2008-2011, 2013-2018', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (14215, 'Atomic Spectroscopy', 1955373, 0.294, 'Q4', 30, 36, 1289, 159, 107, '2', '1980-1989, 1996-2020', 'Spectroscopy (Q4)'), (14216, 'Automatika', 51144, 0.294, 'Q2', 24, 64, 2057, 314, 172, '3', '2009-2020', 'Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q3)'), (14217, 'Cakrawala Pendidikan', 24428620, 0.294, 'Q3', 5, 60, 2564, 115, 88, '21', '2018-2020', 'Education (Q3)'), (14218, 'Canadian Journal of Speech-Language Pathology', 1913200, 0.294, 'Q2', 16, 10, 446, 22, 41, '9', '2007-2020', 'Linguistics and Language (Q2); Speech and Hearing (Q3)'), (14219, 'Crystallography Reports', 10637745, 0.294, 'Q3', 36, 199, 4712, 434, 585, '10', '1996-2020', 'Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3)'), (14220, 'Cybium', 21010315, 0.294, 'Q3', 30, 19, 576, 70, 105, '8', '1996-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (14221, 'Ghana Medical Journal', 8550328, 0.294, 'Q3', 22, 78, 1886, 102, 105, '73', '1962-1963, 1971, 1973-1980, 2011-2020', 'Medicine (miscellaneous) (Q3)'), (14222, 'Interdisciplinaria', 3258203, 0.294, 'Q3', 10, 35, 1783, 56, 94, '46', '2009-2020', 'Psychology (miscellaneous) (Q3)'), (14223, 'International Journal of Lexicography', 9503846, 0.294, 'Q2', 28, 24, 1020, 60, 63, '3', '1988-2020', 'Language and Linguistics (Q2)'), (14224, 'Journal of Horticultural Research', 23005009, 0.294, 'Q3', 9, 28, 967, 63, 52, '5', '2014-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3); Horticulture (Q3); Plant Science (Q3); Soil Science (Q3)'), (14225, 'Journal of Political Science Education', 15512177, 0.294, 'Q2', 25, 88, 2055, 161, 151, '3', '2005-2020', 'Sociology and Political Science (Q2); Education (Q3)'), (14226, 'Journal of Simulation', 17477778, 0.294, 'Q2', 24, 61, 3112, 151, 92, '3', '2008-2020', 'Industrial and Manufacturing Engineering (Q2); Management Science and Operations Research (Q3); Modeling and Simulation (Q3); Software (Q3)'), (14227, 'Journal of Theoretical and Applied Mechanics', 14292955, 0.294, 'Q3', 26, 68, 1453, 348, 291, '17', '2007-2020', 'Mechanical Engineering (Q3)'), (14228, 'Mapan - Journal of Metrology Society of India', 9703950, 0.294, 'Q3', 15, 75, 2432, 173, 149, '4', '2009-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (14229, 'Mathematica', 12229016, 0.294, 'Q3', 6, 11, 152, 46, 49, '43', '2009-2019', 'Mathematics (miscellaneous) (Q3)'), (14230, 'Medical Journal of Cell Biology', 25443577, 0.294, 'Q4', 8, 25, 1220, 76, 56, '5', '2018-2020', 'Cell Biology (Q4); Molecular Biology (Q4)'), (14231, 'Nigerian Journal of Clinical Practice', 11193077, 0.294, 'Q3', 27, 279, 6745, 756, 835, '51', '2005-2020', 'Medicine (miscellaneous) (Q3)'), (14232, 'Open Medicinal Chemistry Journal', 18741045, 0.294, 'Q3', 18, 12, 758, 62, 31, '52', '2009-2020', 'Drug Discovery (Q3); Pharmaceutical Science (Q3); Pharmacology (Q3); Molecular Medicine (Q4)'), (14233, 'Ophthalmologe', 14330423, 0.294, 'Q3', 39, 281, 5551, 380, 467, '5', '1992-2020', 'Medicine (miscellaneous) (Q3); Ophthalmology (Q4)'), (14234, 'Ornis Fennica', 305685, 0.294, 'Q3', 30, 8, 409, 34, 52, '38', '1979-1985, 1991-2020', 'Animal Science and Zoology (Q3)'), (14235, 'Reumatismo', 22402683, 0.294, 'Q4', 25, 36, 979, 117, 102, '7', '1952-1977, 1985-2020', 'Rheumatology (Q4)'), (14236, 'Revista de la Union Matematica Argentina', 16699637, 0.294, 'Q3', 12, 20, 332, 64, 85, '46', '2010-2020', 'Mathematics (miscellaneous) (Q3)'), (14237, 'Slavic Review', 376779, 0.294, 'Q1', 36, 47, 2104, 74, 104, '2', '1966, 1977, 1979, 1981-1982, 1985-1987, 1996-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)'), (14238, 'Applied Sciences', 14545101, 0.293, 'Q2', 18, 25, 875, 60, 39, '43', '1999-2020', 'Engineering (miscellaneous) (Q2); Applied Mathematics (Q3); Computer Science Applications (Q3); Fluid Flow and Transfer Processes (Q3); Instrumentation (Q3); Materials Science (miscellaneous) (Q3); Pr'), (14239, 'Arid Ecosystems', 20790961, 0.293, 'Q3', 9, 54, 1104, 71, 115, '10', '2011-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Soil Science (Q3); Global and Planetary Change (Q4)'), (14240, 'Chemical and Petroleum Engineering (English t', 92355, 0.293, 'Q3', 17, 133, 1290, 287, 428, '2', '1965-1998, 2000-2020', 'Chemical Engineering (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geochemistry and Petrology (Q4)'), (14241, 'Conservation and Management of Archaeological', 17535522, 0.293, 'Q1', 11, 1, 28, 49, 42, '3', '1995, 2011-2020', 'Conservation (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14242, 'Contributions to Indian Sociology', 699667, 0.293, 'Q2', 27, 18, 768, 33, 40, '4', '1967, 1969-1980, 1982-2020', 'Sociology and Political Science (Q2)'), (14243, 'Drewno', 16443985, 0.293, 'Q2', 12, 18, 543, 70, 71, '17', '2009-2020', 'Industrial and Manufacturing Engineering (Q2); Forestry (Q3); Biomaterials (Q4)'), (14244, 'Estudios Pedagogicos', 716050, 0.293, 'Q3', 18, 68, 2764, 136, 189, '45', '1997-2002, 2006-2019', 'Education (Q3)'), (14245, 'Federal Probation', 149128, 0.293, 'Q2', 34, 11, 375, 29, 43, '2', '1974-1982, 1996-2018', 'Law (Q2); Pathology and Forensic Medicine (Q3)'), (14246, 'IEEE Industry Applications Magazine', 10772618, 0.293, 'Q2', 55, 80, 749, 198, 180, '2', '1995-2020', 'Industrial and Manufacturing Engineering (Q2); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)'), (14247, 'International Journal of Angiology', 10611711, 0.293, 'Q3', 26, 53, 1682, 141, 126, '2', '1992-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (14248, 'International Journal of Business Excellence', 17560055, 0.293, 'Q3', 18, 82, 4717, 280, 244, '3', '2008-2014, 2020', 'Business and International Management (Q3); Strategy and Management (Q3)'), (14249, 'International Journal of Simulation and Proce', 17402123, 0.293, 'Q3', 20, 50, 1375, 169, 140, '3', '2005-2014, 2016-2018', 'Applied Mathematics (Q3); Computer Science Applications (Q3); Modeling and Simulation (Q3)'), (14250, 'International Journal of Social Economics', 3068293, 0.293, 'Q2', 39, 95, 5384, 427, 348, '3', '1974-2020', 'Social Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3)'), (14251, 'Journal of Maxillofacial and Oral Surgery', 974942, 0.293, 'Q3', 21, 228, 4545, 428, 298, '4', '2009-2020', 'Oral Surgery (Q3); Otorhinolaryngology (Q3); Surgery (Q3)'), (14252, 'Journal of the Iranian Statistical Society', 17264057, 0.293, 'Q4', 6, 10, 233, 23, 48, '15', '2011-2020', 'Statistics and Probability (Q4)'), (14253, 'Lipid Insights', 11786353, 0.293, 'Q4', 14, 0, 0, 7, 1, '41', '2008, 2010-2018', 'Biochemistry (Q4)'), (14254, 'Materials Science', 1068820, 0.293, 'Q3', 22, 118, 1883, 238, 344, '2', '1993-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14255, 'Minerva Chirurgica', 264733, 0.293, 'Q3', 25, 80, 2162, 148, 181, '7', '1947, 1949, 1951-1971, 1973-2020', 'Surgery (Q3)'), (14256, 'Modern Physics Letters B', 2179849, 0.293, 'Q3', 44, 552, 17501, 2178, 1537, '37', '1996-2020', 'Condensed Matter Physics (Q3); Statistical and Nonlinear Physics (Q4)'), (14257, 'Open Transportation Journal', 18744478, 0.293, 'Q3', 9, 27, 910, 84, 62, '52', '2012-2020', 'Modeling and Simulation (Q3); Transportation (Q3)'), (14258, 'Pakistan Journal of Zoology', 309923, 0.293, 'Q3', 23, 326, 11002, 707, 832, '34', '1975, 1979-1982, 1994-2020', 'Animal Science and Zoology (Q3)'), (14259, 'ROBOMECH Journal', 21974225, 0.293, 'Q3', 13, 37, 1071, 141, 81, '19', '2014-2020', 'Artificial Intelligence (Q3); Control and Optimization (Q3); Instrumentation (Q3); Mechanical Engineering (Q3); Modeling and Simulation (Q3)'), (14260, 'Southern African Humanities', 16815564, 0.293, 'Q1', 18, 0, 0, 7, 11, '27', '2008-2017', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14261, 'Studies in Conservation', 393630, 0.293, 'Q1', 37, 127, 2880, 210, 224, '3', '1952-2020', 'Conservation (Q1)'), (14262, 'Studies of Transition States and Societies', 17368758, 0.293, 'Q2', 12, 6, 288, 25, 30, '71', '2009-2019', 'Sociology and Political Science (Q2)'), (14263, 'Transactions of the Institute of Metal Finish', 17459192, 0.293, 'Q3', 33, 49, 1410, 177, 142, '3', '1969, 1971-1987, 1989-2020', 'Condensed Matter Physics (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3); Surfaces and Interfaces (Q3); Surfaces, Coatings and Films (Q3)'), (14264, 'ACM Transactions on Accessible Computing', 19367228, 0.292, 'Q3', 29, 24, 1508, 158, 53, '2', '2008-2020', 'Computer Science Applications (Q3); Human-Computer Interaction (Q3)'), (14265, 'Acta Oeconomica', 16373, 0.292, 'Q3', 13, 38, 1502, 95, 127, '50', '1995-2000, 2002-2020', 'Economics and Econometrics (Q3)'), (14266, 'Acta Tabacaria Sinica', 10045708, 0.292, 'Q2', 9, 100, 2464, 123, 302, '1', '2013-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (14267, 'Agrekon', 3031853, 0.292, 'Q3', 24, 28, 1307, 91, 77, '3', '1962-2020', 'Agronomy and Crop Science (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)'), (14268, 'Annals of Pediatric Cardiology', 9742069, 0.292, 'Q3', 19, 95, 1197, 178, 186, '4', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (14269, 'Arachnologische Mitteilungen', 10184171, 0.292, 'Q3', 10, 21, 677, 30, 72, '5', '2009-2019', 'Ecology, Evolution, Behavior and Systematics (Q3); Insect Science (Q3)'), (14270, 'BMJ Simulation and Technology Enhanced Learni', 20566697, 0.292, 'Q3', 9, 142, 2666, 143, 117, '3', '2015-2020', 'Education (Q3); Health Informatics (Q3); Modeling and Simulation (Q3)'), (14271, 'Combinatorial Chemistry and High Throughput S', 13862073, 0.292, 'Q3', 64, 109, 4931, 370, 251, '52', '1998-2020', 'Computer Science Applications (Q3); Drug Discovery (Q3); Medicine (miscellaneous) (Q3); Organic Chemistry (Q4)'), (14272, 'Cryptogamie, Bryologie', 12900796, 0.292, 'Q3', 25, 20, 838, 48, 91, '8', '1999-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (14273, 'Current Organic Synthesis', 15701794, 0.292, 'Q4', 46, 68, 2831, 473, 255, '52', '2005-2020', 'Biochemistry (Q4); Organic Chemistry (Q4)'), (14274, 'Einstein (Sa&amp;#x0303;o Paulo, Brazil)', 16794508, 0.292, 'Q3', 18, 153, 0, 305, 278, '14', '2012-2020', 'Medicine (miscellaneous) (Q3)'), (14275, 'European Journal of Computational Mechanics', 17797179, 0.292, 'Q3', 26, 9, 310, 83, 72, '3', '2006-2019', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3); Modeling and Simulation (Q3)'), (14276, 'HSE Economic Journal', 18138691, 0.292, 'Q2', 4, 24, 823, 48, 73, '10', '2017-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (14277, 'Industrial Robot', 143991, 0.292, 'Q3', 50, 101, 2847, 431, 260, '3', '1973-1989, 1991, 1993, 1995-2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Industrial and Manufacturing Engineering (Q3)'), (14278, 'International Journal of Aeronautical and Spa', 20932480, 0.292, 'Q3', 20, 101, 2699, 235, 262, '13', '2011-2020', 'Aerospace Engineering (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Materials Science (miscellaneous) (Q3)'), (14279, 'International Journal of Computer Application', 9528091, 0.292, 'Q3', 27, 102, 3441, 337, 223, '3', '1976, 1988-2014, 2016, 2019-2020', 'Computer Networks and Communications (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Information Systems (Q3); Soft'), (14280, 'International Journal of Metrology and Qualit', 21076839, 0.292, 'Q3', 12, 18, 463, 66, 65, '8', '2010-2020', 'Safety, Risk, Reliability and Quality (Q3)'), (14281, 'International Journal of Surface Science and ', 1749785, 0.292, 'Q3', 17, 20, 619, 91, 73, '3', '2007-2014, 2020', 'Mechanical Engineering (Q3); Surfaces and Interfaces (Q3); Surfaces, Coatings and Films (Q3)'), (14282, 'Izvestiya Wysshikh Uchebnykh Zawedeniy, Yader', 2043327, 0.292, 'Q3', 5, 49, 803, 57, 178, '10', '2015-2020', 'Nuclear Energy and Engineering (Q3)'), (14283, 'Journal of Design and Built Environment', 22321500, 0.292, 'Q1', 6, 14, 738, 61, 54, '23', '2015-2020', 'Architecture (Q1); Urban Studies (Q2); Building and Construction (Q3); Nature and Landscape Conservation (Q3)'), (14284, 'Journal of Electrical Bioimpedance', 18915469, 0.292, 'Q3', 16, 23, 684, 72, 51, '33', '2011-2020', 'Biomedical Engineering (Q3); Biophysics (Q3)'), (14285, 'Journal of Family and Community Medicine', 2229340, 0.292, 'Q3', 4, 33, 855, 39, 23, '4', '2019-2020', 'Family Practice (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14286, 'Journal of Imperial and Commonwealth History', 17439329, 0.292, 'Q1', 25, 50, 3028, 57, 130, '3', '1970, 1972-2020', 'History (Q1); Political Science and International Relations (Q2); Development (Q3)'), (14287, 'Journal of Medical Physics', 9716203, 0.292, 'Q3', 24, 24, 602, 112, 116, '4', '2006-2020', 'Radiology, Nuclear Medicine and Imaging (Q3); Biophysics (Q4)'), (14288, 'Journal of Money Laundering Control', 17587808, 0.292, 'Q2', 22, 112, 4323, 219, 145, '3', '1997-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2); Public Administration (Q3)'), (14289, 'Journal of Psychology in Africa', 14330237, 0.292, 'Q3', 17, 89, 3793, 249, 282, '3', '2006-2013, 2015-2020', 'Psychology (miscellaneous) (Q3)'), (14290, 'Journal of Public Health in Africa', 20389930, 0.292, 'Q3', 12, 21, 621, 110, 135, '7', '2010-2014, 2016-2020', 'Public Health, Environmental and Occupational Health (Q3)'), (14291, 'Materials Letters: X', 25901508, 0.292, 'Q3', 3, 18, 342, 27, 19, '16', '2019-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14292, 'Molecular Imaging and Radionuclide Therapy', 21471959, 0.292, 'Q3', 7, 25, 434, 84, 78, '18', '2017-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (14293, 'New Medit', 15945685, 0.292, 'Q3', 20, 38, 1620, 105, 94, '7', '2008-2020', 'Agronomy and Crop Science (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)'), (14294, 'OIE Revue Scientifique et Technique', 16080637, 0.292, 'Q3', 88, 56, 11, 244, 226, '8', '1990-2020', 'Animal Science and Zoology (Q3); Medicine (miscellaneous) (Q3)'), (14295, 'Pediatric Endocrinology Reviews', 15654753, 0.292, 'Q3', 37, 25, 0, 121, 128, '36', '2003-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (14296, 'Rehabilitation Oncology', 23812427, 0.292, 'Q3', 11, 36, 996, 85, 94, '2', '2008-2020', 'Oncology (nursing) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Oncology (Q4)'), (14297, 'Round Table', 358533, 0.292, 'Q3', 24, 102, 1225, 95, 125, '3', '1910-1981, 1983-2020', 'Geography, Planning and Development (Q3)'), (14298, 'Studia Geophysica et Geodaetica', 15731626, 0.292, 'Q3', 40, 26, 1010, 117, 109, '16', '1957-2020', 'Geophysics (Q3); Geochemistry and Petrology (Q4)'), (14299, 'Vysshee Obrazovanie v Rossii', 8693617, 0.292, 'Q2', 8, 138, 2850, 340, 335, '10', '2018-2020', 'Sociology and Political Science (Q2); Education (Q3)'), (14300, 'Yaogan Xuebao/Journal of Remote Sensing', 10074619, 0.292, 'Q3', 19, 121, 4836, 415, 312, '1', '2013-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Instrumentation (Q3)'), (14301, 'ACM Transactions on Modeling and Performance ', 23763647, 0.291, 'Q2', 11, 14, 583, 135, 57, '2', '2016-2020', 'Computer Science (miscellaneous) (Q2); Media Technology (Q2); Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Safety, Risk, Reliability and Quality'), (14302, 'Acta Otorrinolaringologica Espanola', 19883013, 0.291, 'Q3', 24, 106, 2039, 166, 196, '12', '1973-1986, 1988-2020', 'Otorhinolaryngology (Q3)'), (14303, 'Allergo Journal', 9418849, 0.291, 'Q4', 24, 0, 0, 44, 28, '5', '1994-2017', 'Immunology and Allergy (Q4)'), (14304, 'Boletimdo Museu Paraense Emilio Goeldi:Cienci', 19818122, 0.291, 'Q2', 10, 41, 2749, 55, 124, '14', '2011-2020', 'Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14305, 'College Composition and Communication', 10096, 0.291, 'Q1', 34, 16, 594, 41, 62, '2', '2004-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Education (Q3)'), (14306, 'Complex Adaptive Systems Modeling', 21943206, 0.291, 'Q3', 15, 6, 286, 38, 21, '3', '2013-2020', 'Applied Mathematics (Q3); Computer Science Applications (Q3); Modeling and Simulation (Q3)'), (14307, 'Current Radiology Reports', 21674825, 0.291, 'Q3', 16, 30, 1716, 113, 140, '2', '2013-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (14308, 'Ensaio', 1044036, 0.291, 'Q3', 10, 43, 1454, 109, 157, '14', '2007-2020', 'Education (Q3)'), (14309, 'Entomologica Americana', 19475144, 0.291, 'Q4', 18, 0, 0, 18, 33, '2', '2009-2017, 2019', 'Insect Science (Q4)'), (14310, 'Epistemology and Philosophy of Science', 1811833, 0.291, 'Q1', 7, 54, 1037, 69, 236, '10', '2017-2020', 'Philosophy (Q1); History and Philosophy of Science (Q2)'), (14311, 'Fibonacci Quarterly', 150517, 0.291, 'Q4', 27, 39, 412, 94, 149, '2', '1996-2008, 2010-2020', 'Algebra and Number Theory (Q4)'), (14312, 'Foldtani Kozlony', 15542, 0.291, 'Q3', 9, 34, 2692, 45, 57, '50', '2009-2020', 'Geology (Q3); Paleontology (Q3); Stratigraphy (Q3); Geochemistry and Petrology (Q4)'), (14313, 'Gender, Technology and Development', 9718524, 0.291, 'Q3', 21, 20, 961, 74, 43, '2', '1997-2020', 'Development (Q3); Gender Studies (Q3)'), (14314, 'Georesursy', 16085043, 0.291, 'Q3', 5, 50, 1117, 103, 193, '10', '2017-2020', 'Geology (Q3); Geophysics (Q3)'), (14315, 'Indian Economic and Social History Review', 9730893, 0.291, 'Q1', 20, 20, 1334, 21, 56, '3', '1963-2020', 'History (Q1); Social Sciences (miscellaneous) (Q2); Economics and Econometrics (Q3)'), (14316, 'International Journal of Computational Scienc', 17427185, 0.291, 'Q3', 21, 140, 4503, 451, 297, '3', '2005-2015', 'Computational Mathematics (Q3); Computational Theory and Mathematics (Q3); Hardware and Architecture (Q3); Modeling and Simulation (Q3); Software (Q3)'), (14317, 'International Journal of Intelligent Transpor', 18688659, 0.291, 'Q3', 16, 39, 1169, 86, 56, '5', '2010-2020', 'Aerospace Engineering (Q3); Applied Mathematics (Q3); Automotive Engineering (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Software (Q3); Ne'), (14318, 'International Journal of Nanoscience and Nano', 24235911, 0.291, 'Q2', 7, 20, 770, 81, 57, '15', '2018-2020', 'Engineering (miscellaneous) (Q2); Atomic and Molecular Physics, and Optics (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Bioengineering (Q4)'), (14319, 'International Journal of Surgery Protocols', 24683574, 0.291, 'Q3', 4, 29, 625, 38, 36, '3', '2016-2020', 'Surgery (Q3)'), (14320, 'Journal of Current Chinese Affairs', 18684874, 0.291, 'Q2', 9, 0, 0, 36, 39, '5', '2015-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (14321, 'Journal of Entrepreneurship and Public Policy', 20452101, 0.291, 'Q2', 13, 16, 1107, 99, 92, '3', '2012-2020', 'Urban Studies (Q2); Business and International Management (Q3); Strategy and Management (Q3)'), (14322, 'Medical Law Review', 14643790, 0.291, 'Q2', 27, 36, 1804, 91, 75, '3', '1993-2020', 'Law (Q2); Medicine (miscellaneous) (Q3)'), (14323, 'Metrology and Measurement Systems', 8608229, 0.291, 'Q3', 30, 50, 1327, 243, 174, '17', '2008-2020', 'Control and Systems Engineering (Q3); Instrumentation (Q3)'), (14324, 'Mljekarstvo', 26704, 0.291, 'Q3', 19, 17, 748, 108, 86, '58', '2007-2020', 'Animal Science and Zoology (Q3); Food Science (Q3)'), (14325, 'Notornis', 294470, 0.291, 'Q3', 21, 28, 1521, 36, 88, '41', '1982-1985, 1987, 1994-2020', 'Animal Science and Zoology (Q3)'), (14326, 'Popular Music and Society', 3007766, 0.291, 'Q1', 26, 55, 2033, 66, 102, '3', '1971-1975, 1977-2001, 2003-2020', 'Cultural Studies (Q1); Music (Q1)'), (14327, 'Programming and Computer Software', 16083261, 0.291, 'Q3', 17, 72, 2114, 216, 167, '10', '1978-1992, 1996-2020', 'Software (Q3)'), (14328, 'Russian Journal of Electrochemistry', 10231935, 0.291, 'Q4', 36, 112, 4068, 536, 469, '10', '1996-2020', 'Electrochemistry (Q4)'), (14329, 'Tourism in Marine Environments', 1544273, 0.291, 'Q3', 21, 19, 1122, 56, 48, '2', '2006-2008, 2010-2020', 'Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (14330, 'Administrative Theory and Praxis', 19490461, 0.29, 'Q2', 6, 53, 3033, 47, 50, '3', '2018-2020', 'Sociology and Political Science (Q2); Business and International Management (Q3); Public Administration (Q3); Strategy and Management (Q3)'), (14331, 'Archives of Thermodynamics', 20836023, 0.29, 'Q3', 15, 35, 1263, 97, 106, '17', '2003-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (14332, 'Collection and Curation', 25149326, 0.29, 'Q1', 18, 22, 710, 46, 67, '3', '2018-2020', 'Museology (Q1); Library and Information Sciences (Q2)'), (14333, 'Crop, Forage and Turfgrass Management', 23743832, 0.29, 'Q3', 10, 81, 1751, 138, 186, '2', '2015-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3)'), (14334, 'Education Research International', 20904010, 0.29, 'Q3', 5, 43, 1886, 98, 52, '3', '2018-2020', 'Education (Q3)'), (14335, 'Indian Pacing and Electrophysiology Journal', 9726292, 0.29, 'Q3', 25, 66, 1033, 91, 134, '4', '2001-2020', 'Cardiology and Cardiovascular Medicine (Q3); Physiology (medical) (Q3)'), (14336, 'International Journal of Sustainable Developm', 1743761, 0.29, 'Q3', 15, 144, 4774, 288, 244, '3', '2006-2020', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (14337, 'Investigaciones Geograficas', 19899890, 0.29, 'Q3', 4, 26, 1558, 43, 41, '12', '2018-2019', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (14338, 'Journal of Control, Automation and Electrical', 21953880, 0.29, 'Q3', 20, 127, 4285, 397, 242, '2', '2013-2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)'), (14339, 'Journal of Energy Markets', 17563615, 0.29, 'Q3', 7, 16, 616, 31, 40, '3', '2013-2020', 'Economics and Econometrics (Q3); Energy (miscellaneous) (Q3); Strategy and Management (Q3)'), (14340, 'Journal of Media Law', 17577640, 0.29, 'Q2', 5, 9, 0, 19, 33, '3', '2009, 2013, 2015-2020', 'Communication (Q2); Law (Q2)'), (14341, 'Journal of Medical Engineering and Technology', 1464522, 0.29, 'Q3', 44, 54, 1803, 273, 194, '3', '1977-2020', 'Biomedical Engineering (Q3); Medicine (miscellaneous) (Q3)'), (14342, 'Journal of Social Work Practice in the Addict', 1533256, 0.29, 'Q3', 24, 27, 850, 61, 74, '2', '2001-2020', 'Health (social science) (Q3); Rehabilitation (Q3); Social Work (Q4)'), (14343, 'Journal of Technology in Human Services', 15228991, 0.29, 'Q2', 27, 27, 1432, 96, 58, '2', '1996-2020', 'Social Sciences (miscellaneous) (Q2); Computer Networks and Communications (Q3); Health (social science) (Q3)'), (14344, 'Natural Language Engineering', 14698110, 0.29, 'Q2', 54, 53, 3060, 281, 113, '3', '1995-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Artificial Intelligence (Q3); Software (Q3)'), (14345, 'Nordic Pulp and Paper Research Journal', 20000669, 0.29, 'Q3', 49, 63, 2505, 220, 200, '20', '1988, 1990, 1996-2020', 'Forestry (Q3); Materials Science (miscellaneous) (Q3)'), (14346, 'Russian Engineering Research', 19348088, 0.29, 'Q3', 19, 280, 2901, 764, 756, '10', '1992-1997, 2008-2020', 'Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)'), (14347, 'Zeitschrift fur Naturforschung - Section A Jo', 9320784, 0.29, 'Q3', 47, 95, 3645, 500, 360, '5', '1946-2020', 'Physical and Theoretical Chemistry (Q3); Physics and Astronomy (miscellaneous) (Q3); Mathematical Physics (Q4)'), (14348, 'Zhongguo Jiguang/Chinese Journal of Lasers', 2587025, 0.29, 'Q3', 32, 491, 14394, 1525, 1406, '1', '1991-2020', 'Atomic and Molecular Physics, and Optics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (14349, 'Acta Chimica Slovenica', 15803155, 0.289, 'Q3', 46, 135, 4288, 527, 339, '60', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (14350, 'Advances in Statistical Climatology, Meteorol', 23643587, 0.289, 'Q3', 3, 14, 684, 15, 11, '5', '2019-2020', 'Applied Mathematics (Q3); Oceanography (Q3); Atmospheric Science (Q4); Statistics and Probability (Q4)'), (14351, 'Bordon', 2105934, 0.289, 'Q3', 14, 27, 1284, 98, 113, '12', '2011-2020', 'Developmental and Educational Psychology (Q3); Education (Q3)'), (14352, 'Botanical Sciences', 20074298, 0.289, 'Q3', 17, 59, 3775, 148, 135, '30', '2011-2020', 'Plant Science (Q3)'), (14353, 'Brazilian Journal of Oceanography', 16798759, 0.289, 'Q3', 25, 0, 0, 87, 72, '14', '2008-2019', 'Oceanography (Q3)'), (14354, 'Communication Today', 1338130, 0.289, 'Q2', 6, 12, 439, 52, 54, '53', '2017-2020', 'Communication (Q2); Marketing (Q3)'), (14355, 'Contemporary Clinical Dentistry', 9762361, 0.289, 'Q3', 21, 74, 1581, 856, 433, '4', '2014-2020', 'Oral Surgery (Q3); Orthodontics (Q3); Periodontics (Q3)'), (14356, 'Current Analytical Chemistry', 15734110, 0.289, 'Q4', 31, 117, 5953, 309, 200, '52', '2006-2020', 'Analytical Chemistry (Q4)'), (14357, 'Curriculum Perspectives', 1597868, 0.289, 'Q3', 10, 33, 1321, 58, 65, '19', '1980-1994, 1996-2003, 2006-2020', 'Education (Q3)'), (14358, 'Cutis', 114162, 0.289, 'Q3', 53, 254, 0, 447, 584, '2', '1970, 1973-2020', 'Dermatology (Q3); Medicine (miscellaneous) (Q3)'), (14359, 'Engenharia Agricola', 1006916, 0.289, 'Q2', 27, 86, 2226, 310, 350, '14', '1981, 2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (14360, 'Epidemiologia e prevenzione', 11209763, 0.289, 'Q3', 30, 152, 1297, 208, 205, '7', '1987-2020', 'Public Health, Environmental and Occupational Health (Q3); Epidemiology (Q4)'), (14361, 'International Journal of Economics and Busine', 22414754, 0.289, 'Q2', 13, 92, 3237, 263, 237, '39', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)'), (14362, 'International Journal of Environmental Analyt', 10290397, 0.289, 'Q3', 42, 734, 35744, 760, 414, '3', '1971-2020', 'Pollution (Q3); Public Health, Environmental and Occupational Health (Q3); Soil Science (Q3); Waste Management and Disposal (Q3); Water Science and Technology (Q3); Analytical Chemistry (Q4); Environm'), (14363, 'International Organisations Research Journal', 19967845, 0.289, 'Q2', 7, 38, 1792, 88, 131, '10', '2015-2019', 'Political Science and International Relations (Q2); Sociology and Political Science (Q2); Economics and Econometrics (Q3); Finance (Q3)'), (14364, 'Journal of Addictions Nursing', 10884602, 0.289, 'Q3', 18, 58, 664, 146, 136, '2', '1989-1996, 2006, 2012-2020', 'Psychiatric Mental Health (Q3); Psychiatry and Mental Health (Q3)'), (14365, 'Journal of the Balkan Tribological Associatio', 13104772, 0.289, 'Q3', 16, 63, 1128, 179, 195, '61', '2008-2020', 'Mechanics of Materials (Q3); Surfaces, Coatings and Films (Q3)'), (14366, 'Journal of the Economic and Social History of', 224995, 0.289, 'Q1', 26, 19, 1159, 33, 84, '16', '1957, 1959-1976, 1978-2020', 'History (Q1); Sociology and Political Science (Q2); Economics and Econometrics (Q3)'), (14367, 'Microelectronics Journal', 9598324, 0.289, 'Q3', 71, 173, 5115, 1063, 541, '16', '1974-2020', 'Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Nanoscience and Nanotechnolog'), (14368, 'North-Western Journal of Zoology', 18435629, 0.289, 'Q3', 19, 41, 1557, 98, 116, '43', '2008-2020', 'Animal Science and Zoology (Q3)'), (14369, 'Panoeconomicus', 1452595, 0.289, 'Q2', 14, 32, 1411, 77, 92, '55', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (14370, 'Polymers and Polymer Composites', 14782391, 0.289, 'Q3', 28, 188, 7097, 332, 189, '3', '1993-2020', 'Ceramics and Composites (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (14371, 'Professional Case Management', 19328095, 0.289, 'Q2', 22, 64, 738, 79, 181, '2', '2007-2020', 'Assessment and Diagnosis (Q2); Care Planning (Q3); Health Policy (Q3); Leadership and Management (Q3)'), (14372, 'Russian Journal of Biological Invasions', 20751125, 0.289, 'Q3', 13, 50, 2087, 100, 153, '10', '2013-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (14373, 'Sociologisk Forskning', 380342, 0.289, 'Q2', 8, 21, 828, 45, 77, '20', '1996-2020', 'Sociology and Political Science (Q2)'), (14374, 'South Asia Research', 17413141, 0.289, 'Q2', 15, 24, 983, 47, 61, '4', '1981-2020', 'Arts and Humanities (miscellaneous) (Q2); Economics, Econometrics and Finance (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (14375, 'Statistical Theory and Related Fields', 24754277, 0.289, 'Q3', 5, 37, 740, 49, 88, '2', '2017-2020', 'Applied Mathematics (Q3); Computational Theory and Mathematics (Q3); Statistics, Probability and Uncertainty (Q3); Analysis (Q4); Statistics and Probability (Q4)'), (14376, 'Transactions Issue Mathematics, Azerbaijan Na', 23062193, 0.289, 'Q3', 4, 37, 779, 44, 100, '92', '2015-2020', 'Mathematics (miscellaneous) (Q3)'), (14377, 'Acta Amazonica', 445967, 0.288, 'Q2', 30, 51, 1776, 153, 144, '14', '1979, 2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (14378, 'Acta Geodynamica et Geomaterialia', 12149705, 0.288, 'Q3', 21, 36, 1573, 142, 115, '31', '2004-2020', 'Geology (Q3); Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (14379, 'Advances in Mechanics', 10000992, 0.288, 'Q3', 16, 12, 1860, 63, 38, '1', '2013-2019', 'Mechanical Engineering (Q3); Mathematical Physics (Q4)'), (14380, 'Advances in Mental Health and Intellectual Di', 20441290, 0.288, 'Q3', 13, 22, 878, 44, 70, '3', '2010-2020', 'Psychiatry and Mental Health (Q3)'), (14381, 'Advances in Respiratory Medicine', 25436031, 0.288, 'Q3', 18, 105, 2646, 156, 165, '17', '2015-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (14382, 'Ager', 15787168, 0.288, 'Q3', 7, 20, 1114, 34, 39, '12', '2009-2020', 'Demography (Q3); Development (Q3); Geography, Planning and Development (Q3)'), (14383, 'Bulletin of Experimental Biology and Medicine', 74888, 0.288, 'Q3', 35, 354, 4844, 1016, 1065, '2', '1956-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (14384, 'Bulletin of the Chemical Society of Ethiopia', 10113924, 0.288, 'Q3', 25, 38, 1244, 207, 158, '67', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (14385, 'Cancer radiotherapie : journal de la Societe ', 12783218, 0.288, 'Q3', 31, 164, 4672, 301, 325, '8', '1997-2020', 'Radiology, Nuclear Medicine and Imaging (Q3); Oncology (Q4)'), (14386, 'CFD Letters', 21801363, 0.288, 'Q3', 13, 118, 3200, 191, 89, '23', '2009-2014, 2018-2020', 'Fluid Flow and Transfer Processes (Q3); Modeling and Simulation (Q3)'), (14387, 'Ciencia e Tecnica Vitivinicola', 2540223, 0.288, 'Q3', 13, 12, 748, 50, 42, '26', '2008-2020', 'Food Science (Q3); Horticulture (Q3)'), (14388, 'Communications - Scientific Letters of the Un', 13354205, 0.288, 'Q3', 21, 72, 1817, 222, 254, '53', '2003-2020', 'Automotive Engineering (Q3); Civil and Structural Engineering (Q3); Computer Networks and Communications (Q3); Economics and Econometrics (Q3); Electrical and Electronic Engineering (Q3); Mechanical E'), (14389, 'Educacion Medica', 15751813, 0.288, 'Q3', 13, 161, 2438, 258, 261, '12', '2003-2004, 2006-2012, 2014-2020', 'Education (Q3); Medicine (miscellaneous) (Q3)'), (14390, 'Electronic Government', 17407494, 0.288, 'Q3', 34, 27, 927, 84, 68, '3', '2004-2014, 2020', 'Computer Science Applications (Q3); E-learning (Q3); Public Administration (Q3)'), (14391, 'International Journal of Digital Accounting R', 15778517, 0.288, 'Q2', 13, 6, 314, 32, 17, '2', '2010-2020', 'Information Systems and Management (Q2); Accounting (Q3); Finance (Q3)'), (14392, 'International Journal of Wireless Information', 10689605, 0.288, 'Q3', 28, 45, 1645, 213, 118, '2', '1994-2020', 'Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3)'), (14393, 'Journal of Applied Research in Higher Educati', 17581184, 0.288, 'Q3', 12, 106, 6273, 233, 202, '3', '2009-2020', 'Education (Q3)'), (14394, 'Journal of Critical Realism', 14767430, 0.288, 'Q1', 9, 36, 1474, 78, 95, '3', '2013-2020', 'Philosophy (Q1)'), (14395, 'Journal of Economics, Finance and Administrat', 20771886, 0.288, 'Q2', 13, 20, 817, 90, 55, '3', '2012-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (14396, 'Journal of Information Processing Systems', 2092805, 0.288, 'Q3', 23, 107, 2677, 567, 327, '13', '2012-2020', 'Information Systems (Q3); Software (Q3)'), (14397, 'Journal of Vibrational Engineering and Techno', 25233920, 0.288, 'Q3', 13, 108, 3415, 219, 169, '19', '2014-2020', 'Acoustics and Ultrasonics (Q3); Mechanical Engineering (Q3)'), (14398, 'Managerial and Decision Economics', 10991468, 0.288, 'Q3', 51, 132, 6493, 242, 256, '3', '1980-2020', 'Business and International Management (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)'), (14399, 'Mechanics and Mechanical Engineering', 14281511, 0.288, 'Q3', 13, 7, 173, 211, 208, '17', '1997-2002, 2004-2013, 2015-2019', 'Automotive Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14400, 'Open Access Macedonian Journal of Medical Sci', 18579655, 0.288, 'Q3', 17, 767, 20959, 1712, 1543, '100', '2014-2020', 'Medicine (miscellaneous) (Q3)'), (14401, 'Physics of Particles and Nuclei Letters', 15318567, 0.288, 'Q3', 22, 148, 2458, 328, 441, '10', '2006-2020', 'Atomic and Molecular Physics, and Optics (Q3); Nuclear and High Energy Physics (Q3); Radiation (Q3); Radiology, Nuclear Medicine and Imaging (Q3)'), (14402, 'Pollution', 23834501, 0.288, 'Q3', 5, 68, 3016, 97, 72, '15', '2019-2020', 'Environmental Science (miscellaneous) (Q3)'), (14403, 'Proceedings of the Institution of Civil Engin', 9650903, 0.288, 'Q3', 21, 24, 788, 63, 73, '3', '1992-2020', 'Civil and Structural Engineering (Q3)'), (14404, 'Radical History Review', 15341453, 0.288, 'Q1', 22, 38, 1600, 43, 82, '2', '1979, 1984, 1986, 1999-2001, 2003-2020', 'History (Q1)'), (14405, 'Revista Mexicana de Ingeniera Qumica', 16652738, 0.288, 'Q3', 18, 158, 6828, 456, 256, '30', '2008-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (14406, 'Ruthenica', 1360027, 0.288, 'Q3', 5, 24, 704, 33, 56, '10', '2015-2020', 'Animal Science and Zoology (Q3); Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (14407, 'Scientific Visualization', 20793537, 0.288, 'Q3', 9, 47, 839, 128, 164, '10', '2013-2020', 'Computer Vision and Pattern Recognition (Q3); Software (Q3)'), (14408, 'Transactions on Combinatorics', 22518657, 0.288, 'Q3', 4, 20, 306, 32, 39, '15', '2018-2020', 'Computational Theory and Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)'), (14409, 'Acta Gastro-Enterologica Belgica', 15644, 0.287, 'Q3', 36, 101, 2294, 199, 183, '24', '1946-2020', 'Gastroenterology (Q3)'), (14410, 'B.E. Journal of Macroeconomics', 19351690, 0.287, 'Q3', 18, 38, 1375, 57, 75, '5', '2007-2020', 'Economics and Econometrics (Q3)'), (14411, 'Cornell Journal of Law and Public Policy', 10690565, 0.287, 'Q2', 10, 2, 161, 25, 52, '2', '1993, 1997-2002, 2004-2007, 2009, 2011-2018', 'Law (Q2); Sociology and Political Science (Q2)'), (14412, 'Drvna Industrija', 126772, 0.287, 'Q3', 19, 45, 1473, 133, 122, '58', '1980-1981, 1998-2020', 'Forestry (Q3)'), (14413, 'Federal Reserve Bank of St. Louis Review', 149187, 0.287, 'Q3', 35, 18, 556, 69, 58, '2', '2005-2020', 'Business and International Management (Q3)'), (14414, 'International Journal of Food Design', 20566530, 0.287, 'Q1', 6, 14, 402, 48, 27, '3', '2016-2019', 'Visual Arts and Performing Arts (Q1); Food Science (Q3)'), (14415, 'International Journal of Optimization and Con', 21460957, 0.287, 'Q3', 6, 29, 801, 72, 63, '18', '2018-2020', 'Applied Mathematics (Q3); Control and Optimization (Q3)'), (14416, 'Israel Journal of Plant Sciences', 7929978, 0.287, 'Q3', 32, 19, 1151, 68, 75, '3', '1994-2013, 2015-2020', 'Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (14417, 'Journal of Medical Case Reports', 17521947, 0.287, 'Q3', 31, 244, 4345, 1035, 1139, '3', '2007-2020', 'Medicine (miscellaneous) (Q3)'), (14418, 'Journal of Medieval Iberian Studies', 17546559, 0.287, 'Q1', 8, 20, 1445, 18, 50, '3', '2010-2020', 'Cultural Studies (Q1); History (Q1)'), (14419, 'Journal of Relationship Marketing', 15332675, 0.287, 'Q3', 25, 28, 2425, 72, 47, '2', '2002-2020', 'Marketing (Q3)'), (14420, 'Journal of Thermal Engineering', 21487847, 0.287, 'Q3', 11, 78, 2633, 198, 159, '18', '2015-2020', 'Building and Construction (Q3); Energy Engineering and Power Technology (Q3); Fluid Flow and Transfer Processes (Q3)'), (14421, 'Kyungpook Mathematical Journal', 12256951, 0.287, 'Q3', 19, 59, 1122, 114, 171, '13', '2007-2020', 'Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3)'), (14422, 'Metallurgical Research and Technology', 22713654, 0.287, 'Q3', 22, 74, 2320, 292, 280, '8', '2014-2020', 'Computational Mechanics (Q3); Materials Chemistry (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)'), (14423, 'Pan African Medical Journal', 19378688, 0.287, 'Q3', 30, 1129, 16556, 1542, 2213, '51', '2010-2020', 'Medicine (miscellaneous) (Q3)'), (14424, 'Pesquisa Veterinaria Brasileira', 100736, 0.287, 'Q3', 35, 124, 4640, 416, 676, '14', '1996-2020', 'Veterinary (miscellaneous) (Q3)'), (14425, 'Proceedings of the National Academy of Scienc', 3698211, 0.287, 'Q2', 18, 120, 4503, 483, 502, '4', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Environmental Science (miscellaneous) (Q3)'), (14426, 'Revista de la Sociedad Geologica de Espana', 22551379, 0.287, 'Q3', 5, 0, 0, 33, 41, '12', '2016-2019', 'Geology (Q3)'), (14427, 'Science and Engineering of Composite Material', 21910359, 0.287, 'Q3', 20, 49, 1411, 231, 178, '5', '1988-1989, 1991-2000, 2002, 2004-2020', 'Ceramics and Composites (Q3); Materials Chemistry (Q3)'), (14428, 'Semiconductors', 10637826, 0.287, 'Q3', 40, 324, 7245, 831, 1126, '10', '1996-2020', 'Atomic and Molecular Physics, and Optics (Q3); Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (14429, 'Urbe', 21753369, 0.287, 'Q2', 6, 57, 2229, 94, 207, '14', '2015-2020', 'Architecture (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)'), (14430, 'Adaptive Behavior', 17412633, 0.286, 'Q1', 54, 87, 4149, 114, 76, '3', '1992-2020', 'Philosophy (Q1); Artificial Intelligence (Q3); Behavioral Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)'), (14431, 'Applied Econometrics', 19937601, 0.286, 'Q3', 8, 28, 1027, 38, 79, '10', '2009-2019', 'Economics and Econometrics (Q3)'), (14432, 'Archives de Pediatrie', 929693, 0.286, 'Q3', 36, 128, 3177, 395, 458, '8', '1994-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (14433, 'Asian Social Work and Policy Review', 17531403, 0.286, 'Q2', 13, 22, 1048, 74, 70, '11', '2008-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Social Work (Q4)'), (14434, 'Boletin de la Sociedad Matematica Mexicana', 378615, 0.286, 'Q3', 16, 81, 1581, 85, 125, '2', '1996-2009, 2011-2012, 2016-2020', 'Mathematics (miscellaneous) (Q3)'), (14435, 'British Journal for the History of Science', 1474001, 0.286, 'Q1', 29, 27, 1788, 35, 83, '3', '1962-2020', 'History (Q1); History and Philosophy of Science (Q2)'), (14436, 'Cartographic Perspectives', 10489053, 0.286, 'Q3', 12, 11, 251, 24, 25, '2', '1990-1992, 2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)'), (14437, 'Communications of the Korean Mathematical Soc', 12251763, 0.286, 'Q3', 15, 92, 1534, 176, 277, '13', '2007-2020', 'Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3)'), (14438, 'Concepts in Magnetic Resonance Part B: Magnet', 15525031, 0.286, 'Q3', 32, 0, 0, 27, 29, '2', '2002-2018', 'Physical and Theoretical Chemistry (Q3); Radiology, Nuclear Medicine and Imaging (Q3); Radiological and Ultrasound Technology (Q4); Spectroscopy (Q4)'), (14439, 'Croatian Journal of Philosophy', 13331108, 0.286, 'Q1', 9, 7, 235, 38, 86, '58', '2008-2019', 'Philosophy (Q1)'), (14440, 'Design and Culture', 17547083, 0.286, 'Q1', 11, 22, 822, 66, 58, '3', '2012-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1)'), (14441, 'GEMA Online Journal of Language Studies', 16758021, 0.286, 'Q1', 15, 54, 2353, 135, 166, '23', '2009-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14442, 'Hanneng Cailiao/Chinese Journal of Energetic ', 10069941, 0.286, 'Q3', 21, 160, 4463, 376, 477, '1', '1996-2020', 'Chemistry (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)'), (14443, 'Indian Journal of Pharmacology', 2537613, 0.286, 'Q3', 59, 82, 2027, 237, 182, '4', '1978-1980, 1982, 1984-1986, 1994-2020', 'Pharmacology (Q3); Pharmacology (medical) (Q3)'), (14444, 'Indian Journal of Sexually Transmitted Diseas', 2537184, 0.286, 'Q3', 16, 0, 0, 32, 33, '4', '1980-1993, 2009-2017', 'Dermatology (Q3); Public Health, Environmental and Occupational Health (Q3); Infectious Diseases (Q4)'), (14445, 'Information Technology and Control', 1392124, 0.286, 'Q3', 19, 48, 1865, 212, 141, '69', '2008, 2010-2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)'), (14446, 'Intelligence and National Security', 2684527, 0.286, 'Q1', 24, 73, 3931, 183, 198, '3', '1986-2020', 'History (Q1); Political Science and International Relations (Q2)'), (14447, 'International Journal of Electrical Engineeri', 20504578, 0.286, 'Q3', 23, 163, 3757, 292, 196, '3', '1963, 1965, 1967, 1969-1972, 1974-2020', 'Education (Q3); Electrical and Electronic Engineering (Q3)'), (14448, 'International Journal of Globalisation and Sm', 14793059, 0.286, 'Q2', 17, 20, 1173, 47, 33, '3', '2005-2014', 'Information Systems and Management (Q2); Business and International Management (Q3); Management Science and Operations Research (Q3)'), (14449, 'International Politics', 17403898, 0.286, 'Q2', 33, 84, 5619, 117, 144, '3', '1996-2020', 'Political Science and International Relations (Q2); Geography, Planning and Development (Q3)'), (14450, 'Journal of Applied Pharmaceutical Science', 22313354, 0.286, 'Q2', 38, 202, 7973, 1221, 881, '4', '2011-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Pharmacology (medical) (Q3)'), (14451, 'Journal of Avian Medicine and Surgery', 10826742, 0.286, 'Q3', 29, 56, 1250, 90, 152, '2', '1996-2020', 'Medicine (miscellaneous) (Q3); Small Animals (Q3)'), (14452, 'Journal of Derivatives', 10741240, 0.286, 'Q3', 44, 30, 814, 29, 72, '2', '1996-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (14453, 'Journal of Electromagnetic Waves and Applicat', 15693937, 0.286, 'Q3', 50, 171, 5423, 755, 513, '3', '1987-2020', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (14454, 'Journal of Heart Valve Disease', 9668519, 0.286, 'Q3', 68, 0, 0, 76, 144, '3', '1992-2018', 'Cardiology and Cardiovascular Medicine (Q3)'), (14455, 'Journal of Housing for the Elderly', 2763893, 0.286, 'Q3', 26, 0, 0, 106, 79, '2', '1983-1995, 1997, 1999, 2001-2019', 'Gerontology (Q3); Public Administration (Q3); Life-span and Life-course Studies (Q4)'), (14456, 'Journal of the Indian Academy of Wood Science', 972172, 0.286, 'Q3', 10, 23, 717, 71, 67, '4', '2010-2020', 'Forestry (Q3); Plant Science (Q3); Biomaterials (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (14457, 'Kinetics and Catalysis', 231584, 0.286, 'Q3', 35, 83, 3791, 286, 287, '10', '1968-1971, 1984-1992, 1996-2020', 'Chemistry (miscellaneous) (Q3); Computer Science Applications (Q3); Modeling and Simulation (Q3); Catalysis (Q4)'), (14458, 'Letters in Spatial and Resource Sciences', 18644031, 0.286, 'Q2', 14, 20, 779, 70, 70, '5', '2008-2020', 'Urban Studies (Q2); Demography (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)'), (14459, 'Materials Express', 21585857, 0.286, 'Q3', 25, 266, 9146, 420, 261, '2', '2011-2020', 'Materials Science (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q3)'), (14460, 'Measurement and Control', 202940, 0.286, 'Q3', 21, 231, 7168, 445, 201, '2', '1968-2020', 'Applied Mathematics (Q3); Control and Optimization (Q3); Instrumentation (Q3)'), (14461, 'Perioperative Care and Operating Room Managem', 24056030, 0.286, 'Q2', 6, 59, 1501, 60, 52, '16', '2015-2020', 'Medical and Surgical Nursing (Q2); Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3); Surgery (Q3)'), (14462, 'Polymer Science - Series A', 965545, 0.286, 'Q3', 31, 79, 2991, 339, 286, '10', '1991, 1996-2020', 'Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (14463, 'Psychoanalytic Review', 19433301, 0.286, 'Q3', 17, 27, 823, 26, 85, '2', '1945-1957, 1963-2020', 'Clinical Psychology (Q3)'), (14464, 'Science, Technology and Society', 9730796, 0.286, 'Q2', 22, 30, 1223, 99, 81, '4', '1996-2020', 'Multidisciplinary (Q2)'), (14465, 'Statistical Journal of the IAOS', 18747655, 0.286, 'Q3', 16, 143, 2984, 104, 187, '16', '2007-2009, 2011-2020', 'Economics and Econometrics (Q3); Management Information Systems (Q3); Statistics, Probability and Uncertainty (Q3)'), (14466, 'Urologia', 17246075, 0.286, 'Q3', 12, 1, 0, 64, 65, '7', '1947-1949, 1960-1962, 1973-1988, 2010-2018, 2020', 'Medicine (miscellaneous) (Q3)'), (14467, 'AACN Advanced Critical Care', 15597776, 0.285, 'Q3', 43, 59, 1689, 157, 159, '2', '2006-2020', 'Critical Care Nursing (Q3); Emergency Medicine (Q3); Medicine (miscellaneous) (Q3)'), (14468, 'Anthropology and Medicine', 14692910, 0.285, 'Q2', 31, 40, 1855, 65, 66, '3', '1997-2020', 'Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14469, 'Collectanea Botanica', 100730, 0.285, 'Q3', 7, 8, 576, 11, 20, '12', '2012-2020', 'Plant Science (Q3)'), (14470, 'Current Cardiovascular Risk Reports', 19329563, 0.285, 'Q3', 27, 26, 1795, 62, 106, '2', '2007-2020', 'Pharmacology (Q3); Pharmacology (medical) (Q3)'), (14471, 'Current Nanoscience', 15734137, 0.285, 'Q3', 44, 87, 6470, 342, 204, '52', '2006-2020', 'Biomedical Engineering (Q3); Biotechnology (Q3); Medicine (miscellaneous) (Q3); Pharmaceutical Science (Q3); Bioengineering (Q4); Nanoscience and Nanotechnology (Q4)'), (14472, 'Environmental Forensics', 15275930, 0.285, 'Q3', 37, 54, 2446, 120, 95, '3', '2000-2020', 'Management, Monitoring, Policy and Law (Q3); Waste Management and Disposal (Q3)'), (14473, 'European Journal of Geography', 17921341, 0.285, 'Q3', 9, 19, 951, 78, 125, '24', '2010-2011, 2014-2019', 'Geography, Planning and Development (Q3)'), (14474, 'Frontiers in Life Science', 21553769, 0.285, 'Q3', 39, 4, 374, 31, 14, '3', '2011-2013, 2015-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Neuroscience (miscellaneous) (Q4)'), (14475, 'Geriatrie et Psychologie Neuropsychiatrie du ', 21158789, 0.285, 'Q3', 11, 63, 380, 120, 158, '8', '2011-2020', 'Geriatrics and Gerontology (Q3); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Biological Psychiatry (Q4); Neuropsychology and Physiological Psychology (Q4)'), (14476, 'International Journal of Emotional Education', 20737629, 0.285, 'Q3', 6, 14, 560, 60, 50, '101', '2016-2020', 'Developmental and Educational Psychology (Q3); Education (Q3)'), (14477, 'International Journal of Unconventional Compu', 15487199, 0.285, 'Q2', 18, 18, 657, 60, 45, '2', '2008-2020', 'Computer Science (miscellaneous) (Q2)'), (14478, 'Journal of Analytical Psychology', 14685922, 0.285, 'Q3', 23, 62, 1408, 58, 154, '3', '1955-2020', 'Clinical Psychology (Q3)'), (14479, 'Journal of Intercultural Studies', 7256868, 0.285, 'Q1', 34, 47, 2100, 122, 130, '3', '1980-2020', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)'), (14480, 'Journal of Machinery Manufacture and Reliabil', 10526188, 0.285, 'Q3', 15, 149, 2156, 240, 243, '10', '1990, 2008-2020', 'Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)'), (14481, 'Language Matters', 10228195, 0.285, 'Q2', 11, 21, 852, 34, 58, '3', '1993-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14482, 'Materials Physics and Mechanics', 16052730, 0.285, 'Q3', 16, 85, 1793, 246, 350, '10', '2003-2004, 2009-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14483, 'Materialwissenschaft und Werkstofftechnik', 15214052, 0.285, 'Q3', 38, 150, 4055, 419, 417, '5', '1970-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14484, 'Plant OMICS', 18360661, 0.285, 'Q3', 25, 13, 522, 75, 66, '11', '2010-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (14485, 'Psicologia Escolar e Educacional', 14138557, 0.285, 'Q3', 9, 51, 1441, 62, 192, '14', '2012-2020', 'Developmental and Educational Psychology (Q3); Social Psychology (Q3)'), (14486, 'Psychopharmacology Bulletin', 485764, 0.285, 'Q3', 62, 43, 0, 75, 60, '2', '1963-1967, 1969-1998, 2001-2004, 2006-2012, 2016-2020', 'Pharmacology (medical) (Q3); Psychiatry and Mental Health (Q3)'), (14487, 'Quantitative InfraRed Thermography Journal', 17686733, 0.285, 'Q3', 23, 40, 1043, 99, 61, '3', '2004-2020', 'Electrical and Electronic Engineering (Q3); Instrumentation (Q3)'), (14488, 'Rare Tumors', 20363605, 0.285, 'Q3', 15, 24, 534, 62, 65, '7', '2010-2020', 'Histology (Q3); Oncology (Q4)'), (14489, 'Social Work &amp; Society', 16138953, 0.285, 'Q2', 8, 47, 1844, 41, 81, '5', '2012-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (14490, 'Zeitschrift fur Sprachwissenschaft', 7219067, 0.285, 'Q2', 16, 6, 356, 16, 24, '5', '1982-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14491, 'Acta Botanica Croatica', 3650588, 0.284, 'Q3', 22, 11, 519, 99, 82, '58', '1980-1983, 1985, 1996, 1998-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (14492, 'American Journal of Psychotherapy', 25756559, 0.284, 'Q3', 37, 24, 890, 49, 41, '2', '1947-2016, 2018-2020', 'Clinical Psychology (Q3); Medicine (miscellaneous) (Q3)'), (14493, 'Archives of Acoustics', 2300262, 0.284, 'Q3', 24, 70, 1984, 239, 208, '17', '1977-1988, 2004-2020', 'Acoustics and Ultrasonics (Q3)'), (14494, 'Baltic Journal of Economics', 1406099, 0.284, 'Q2', 11, 10, 469, 60, 29, '3', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2)'), (14495, 'Corpora', 17551676, 0.284, 'Q2', 14, 11, 345, 53, 53, '3', '2011-2018', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14496, 'Cuadernos de Psicologia del Deporte', 15788423, 0.284, 'Q3', 18, 50, 2296, 171, 167, '12', '2011-2020', 'Applied Psychology (Q3)'), (14497, 'Fudan Journal of the Humanities and Social Sc', 16740750, 0.284, 'Q2', 7, 39, 1774, 89, 98, '5', '2014-2020', 'Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (14498, 'International Journal of Children s Spiritual', 14698455, 0.284, 'Q1', 21, 21, 962, 53, 81, '3', '1996-2020', 'Philosophy (Q1); Religious Studies (Q1); Developmental and Educational Psychology (Q3); Education (Q3)'), (14499, 'International Journal of Gerontology', 18739598, 0.284, 'Q4', 16, 79, 1825, 201, 219, '22', '2007-2020', 'Geriatrics and Gerontology (Q4)'), (14500, 'Journal for the Study of Spirituality', 20440251, 0.284, 'Q1', 5, 17, 613, 36, 36, '3', '2015-2020', 'Religious Studies (Q1)'), (14501, 'Journal of Biological Regulators and Homeosta', 17246083, 0.284, 'Q3', 44, 557, 12433, 1522, 749, '7', '1987-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Cancer Research (Q4); Endocrinology (Q4); Immunology (Q4); Immunology and Allergy (Q4); Oncology (Q4); Physiology (Q4); Physiology (medical) (Q4)'), (14502, 'Journal of Universal Computer Science', 948695, 0.284, 'Q2', 53, 74, 2555, 337, 225, '28', '1996-2020', 'Computer Science (miscellaneous) (Q2); Theoretical Computer Science (Q4)'), (14503, 'Korean Journal of Plant Taxonomy', 24661546, 0.284, 'Q3', 3, 37, 1027, 34, 63, '13', '2018-2020', 'Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3)'), (14504, 'Modern Tunnelling Technology', 10096582, 0.284, 'Q3', 13, 179, 2605, 255, 510, '1', '2013-2020', 'Civil and Structural Engineering (Q3)'), (14505, 'Qualitative Research Journal', 14480980, 0.284, 'Q2', 17, 46, 1887, 105, 111, '3', '2006-2020', 'Social Sciences (miscellaneous) (Q2); Education (Q3)'), (14506, 'Safety', 2313576, 0.284, 'Q3', 9, 43, 2044, 255, 171, '19', '2015-2020', 'Public Health, Environmental and Occupational Health (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)'), (14507, 'Acta Acustica united with Acustica', 16101928, 0.283, 'Q1', 57, 0, 0, 389, 370, '5', '1996-2019', 'Music (Q1); Acoustics and Ultrasonics (Q3)'), (14508, 'Advances in Mathematical Physics', 16879120, 0.283, 'Q3', 23, 142, 4186, 367, 319, '2', '2009-2020', 'Applied Mathematics (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (14509, 'Ecological Chemistry and Engineering S', 18986196, 0.283, 'Q3', 21, 42, 2012, 220, 142, '5', '2008-2020', 'Environmental Engineering (Q3); Environmental Chemistry (Q4)'), (14510, 'Employee Responsibilities and Rights Journal', 8927545, 0.283, 'Q3', 31, 18, 678, 42, 38, '2', '1988-1998, 2000-2020', 'Human Factors and Ergonomics (Q3); Organizational Behavior and Human Resource Management (Q3)'), (14511, 'Heteroatom Chemistry', 10981071, 0.283, 'Q3', 42, 7, 212, 166, 128, '2', '1990-2020', 'Chemistry (miscellaneous) (Q3)'), (14512, 'Indian Chemical Engineer', 975007, 0.283, 'Q3', 10, 84, 2552, 104, 84, '3', '1992, 2009-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (14513, 'Indonesian Journal of Applied Linguistics', 23019468, 0.283, 'Q2', 9, 75, 3246, 208, 209, '21', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14514, 'International Journal of Computational Intell', 14690268, 0.283, 'Q3', 17, 31, 1064, 145, 76, '37', '2008-2020', 'Computer Science Applications (Q3); Software (Q3); Theoretical Computer Science (Q4)'), (14515, 'International Journal of Heat and Technology', 3928764, 0.283, 'Q3', 29, 106, 2927, 630, 525, '7', '1983-1993, 1995-2020', 'Condensed Matter Physics (Q3); Fluid Flow and Transfer Processes (Q3); Mechanical Engineering (Q3)'), (14516, 'International Review of Civil Engineering', 20369913, 0.283, 'Q2', 9, 38, 1315, 151, 111, '7', '2015-2020', 'Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Computational Mechanics (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3)'), (14517, 'Invertebrate Zoology', 18129250, 0.283, 'Q3', 6, 27, 1249, 55, 85, '10', '2015-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (14518, 'JLIS.it', 20381026, 0.283, 'Q1', 5, 29, 987, 42, 111, '7', '2017-2020', 'Conservation (Q1); Library and Information Sciences (Q2); Computer Science Applications (Q3)'), (14519, 'Journal for European Environmental and Planni', 18760104, 0.283, 'Q2', 8, 32, 982, 47, 47, '16', '2013-2020', 'Law (Q2); Management, Monitoring, Policy and Law (Q3)'), (14520, 'Journal of General Psychology', 221309, 0.283, 'Q2', 47, 47, 2724, 50, 67, '3', '1928-1954, 1956-2020', 'Arts and Humanities (miscellaneous) (Q2); Gender Studies (Q3); Experimental and Cognitive Psychology (Q4)'), (14521, 'Journal of Labor Research', 1953613, 0.283, 'Q3', 34, 16, 764, 51, 60, '2', '1980-2020', 'Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (14522, 'Journal of Microwave Power and Electromagneti', 8327823, 0.283, 'Q3', 33, 23, 706, 83, 61, '2', '1985-2004, 2006-2020', 'Ceramics and Composites (Q3); Condensed Matter Physics (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Metals and Alloys (Q3)'), (14523, 'Journal of Special Education Leadership', 15251810, 0.283, 'Q3', 2, 13, 326, 11, 16, '2', '2018-2020', 'Developmental and Educational Psychology (Q3); Education (Q3); Public Administration (Q3)'), (14524, 'Journal of the Iranian Chemical Society', 1735207, 0.283, 'Q3', 47, 286, 15204, 1492, 785, '5', '2006-2020', 'Chemistry (miscellaneous) (Q3)'), (14525, 'Kukila', 2169223, 0.283, 'Q3', 10, 7, 146, 15, 13, '21', '1996-1998, 2000, 2003, 2006, 2009, 2011-2019', 'Animal Science and Zoology (Q3)'), (14526, 'Magnetohydrodynamics', 24998, 0.283, 'Q3', 23, 43, 736, 118, 171, '77', '1970-1991, 1996-2020', 'Electrical and Electronic Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (14527, 'Materials Research Innovations', 1433075, 0.283, 'Q3', 49, 88, 3496, 249, 193, '3', '1997-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14528, 'Mathematical Population Studies', 8898480, 0.283, 'Q2', 21, 22, 456, 32, 42, '3', '1987-2001, 2003-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Demography (Q3); Geography, Planning and Development (Q3)'), (14529, 'Mechanics of Solids', 19347936, 0.283, 'Q3', 20, 160, 3253, 185, 271, '10', '1975-1989, 2008-2020', 'Mechanics of Materials (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (14530, 'Mini-Reviews in Organic Chemistry', 1570193, 0.283, 'Q4', 39, 62, 4990, 281, 136, '52', '2005-2020', 'Organic Chemistry (Q4)'), (14531, 'Nanomedicine Research Journal', 24767123, 0.283, 'Q3', 10, 40, 1467, 142, 96, '15', '2016-2020', 'Biotechnology (Q3); Internal Medicine (Q3); Pharmacology (medical) (Q3); Biochemistry (Q4); Bioengineering (Q4); Molecular Medicine (Q4)'), (14532, 'New Zealand Plant Protection', 11759003, 0.283, 'Q3', 20, 7, 250, 75, 114, '41', '2007-2019', 'Agronomy and Crop Science (Q3); Horticulture (Q3); Insect Science (Q4)'), (14533, 'North Carolina Medical Journal', 292559, 0.283, 'Q3', 24, 37, 0, 248, 286, '2', '1945-2020', 'Medicine (miscellaneous) (Q3)'), (14534, 'Optics and Spectroscopy (English translation ', 30400, 0.283, 'Q3', 38, 285, 8006, 760, 874, '10', '1972-1975, 1991-1992, 1994-2020', 'Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (14535, 'Revista de la Facultad de Ciencias Agrarias', 3704661, 0.283, 'Q3', 10, 63, 2212, 144, 154, '46', '2008-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (14536, 'Science and Technology Libraries', 194262, 0.283, 'Q2', 20, 30, 1171, 94, 80, '2', '1980-2008, 2010-2020', 'Library and Information Sciences (Q2)'), (14537, 'SPAL', 22553924, 0.283, 'Q1', 4, 13, 970, 27, 59, '12', '2015-2019', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14538, 'Textile Progress', 17542278, 0.283, 'Q3', 26, 1, 719, 31, 12, '3', '1969-1978, 1981-1995, 1997-1998, 2000-2019', 'Chemical Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3)'), (14539, 'Turkish Journal of Zoology', 13000179, 0.283, 'Q3', 28, 59, 2366, 205, 288, '18', '1994-2020', 'Animal Science and Zoology (Q3)'), (14540, 'Visitor Studies', 10645578, 0.283, 'Q1', 22, 19, 886, 49, 37, '3', '1988-1989, 1992-1993, 2007-2020', 'Museology (Q1); Communication (Q2); Education (Q3); Tourism, Leisure and Hospitality Management (Q3)'), (14541, 'Zhendong Ceshi Yu Zhenduan/Journal of Vibrati', 10046801, 0.283, 'Q3', 19, 163, 2805, 364, 539, '1', '1998, 2000-2020', 'Acoustics and Ultrasonics (Q3); Instrumentation (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14542, 'Alcoholism Treatment Quarterly', 15444538, 0.282, 'Q3', 31, 46, 1728, 78, 89, '2', '1984-2020', 'Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (14543, 'Algebra and Discrete Mathematics', 17263255, 0.282, 'Q3', 10, 48, 785, 50, 135, '44', '2012-2020', 'Discrete Mathematics and Combinatorics (Q3); Algebra and Number Theory (Q4)'), (14544, 'Annual International Conference of the IEEE E', 5891019, 0.282, 'Q3', 80, 1465, 25247, 4737, 4309, '2', '1974-1984, 1989-2019', 'Computer Vision and Pattern Recognition (Q3); Health Informatics (Q3); Signal Processing (Q3); Biomedical Engineering (Q4)'), (14545, 'Biodiversity Science', 10050094, 0.282, 'Q3', 11, 159, 6969, 469, 428, '1', '2017-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3)'), (14546, 'Biologia (Poland)', 13369563, 0.282, 'Q3', 38, 236, 11787, 529, 471, '5', '1954-1955, 1961-1970, 1974-1989, 1996-2001, 2006-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Plant Science (Q3); Biochemistry (Q4); Cell Biology (Q4); Genetics (Q4); Molecular Biology (Q4)'), (14547, 'Complex Manifolds', 23007443, 0.282, 'Q4', 8, 13, 263, 44, 50, '17', '2014-2020', 'Geometry and Topology (Q4)'), (14548, 'Die Rehabilitation', 14391309, 0.282, 'Q3', 33, 62, 1111, 111, 130, '5', '1972-2020', 'Rehabilitation (Q3)'), (14549, 'History and Philosophy of the Life Sciences', 3919714, 0.282, 'Q1', 25, 57, 2690, 104, 129, '19', '1979-1980, 1982-2020', 'History (Q1); Arts and Humanities (miscellaneous) (Q2); History and Philosophy of Science (Q2)'), (14550, 'HTS Teologiese Studies / Theological Studies', 20728050, 0.282, 'Q1', 15, 259, 10015, 273, 627, '27', '1987, 2004-2006, 2008-2020', 'Religious Studies (Q1)'), (14551, 'INCAS Bulletin', 20668201, 0.282, 'Q3', 10, 114, 2309, 251, 223, '43', '2017-2020', 'Aerospace Engineering (Q3); Control and Systems Engineering (Q3)'), (14552, 'International Journal of Antennas and Propaga', 16875877, 0.282, 'Q3', 37, 112, 2716, 842, 563, '32', '2010-2020', 'Electrical and Electronic Engineering (Q3)'), (14553, 'International Journal of Biomedical Engineeri', 17526418, 0.282, 'Q4', 19, 66, 2579, 225, 203, '3', '2008-2014, 2018, 2020', 'Biomedical Engineering (Q4)'), (14554, 'International Journal of Business Performance', 13684892, 0.282, 'Q3', 21, 25, 1210, 67, 72, '3', '1998, 2000-2020', 'Business and International Management (Q3); Strategy and Management (Q3)'), (14555, 'International Journal of Heavy Vehicle System', 17415152, 0.282, 'Q3', 22, 41, 1153, 83, 88, '3', '2004-2014, 2020', 'Automotive Engineering (Q3); Mechanical Engineering (Q3)'), (14556, 'International Orthodontics', 17617227, 0.282, 'Q3', 12, 91, 2877, 165, 231, '8', '2004-2020', 'Orthodontics (Q3)'), (14557, 'Investigaciones Regionales', 16957253, 0.282, 'Q2', 14, 23, 1026, 107, 96, '12', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (14558, 'Journal of Biblical Literature', 19343876, 0.282, 'Q1', 22, 47, 4125, 50, 163, '2', '2002-2020', 'Literature and Literary Theory (Q1); Religious Studies (Q1)'), (14559, 'Journal of Ceramic Science and Technology', 21909385, 0.282, 'Q3', 17, 7, 209, 156, 115, '5', '2010-2020', 'Ceramics and Composites (Q3)'), (14560, 'Journal of Drug and Alcohol Research', 20908342, 0.282, 'Q3', 7, 16, 323, 21, 37, '32', '2015-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (14561, 'Journal of Pedagogy', 13381563, 0.282, 'Q3', 9, 13, 627, 34, 32, '5', '2010-2020', 'Education (Q3)'), (14562, 'Journal of Prosthetics and Orthotics', 10408800, 0.282, 'Q3', 33, 33, 1019, 67, 94, '2', '1982, 1988-2020', 'Orthopedics and Sports Medicine (Q3); Rehabilitation (Q3); Biomedical Engineering (Q4)'), (14563, 'Journal of the Lepidopterists Society', 240966, 0.282, 'Q3', 20, 32, 627, 55, 117, '2', '1989-2020', 'Animal Science and Zoology (Q3); Ecology (Q3)'), (14564, 'Journal of Traffic and Transportation Enginee', 16711637, 0.282, 'Q3', 22, 119, 5130, 325, 305, '1', '2004-2020', 'Automotive Engineering (Q3); Civil and Structural Engineering (Q3)'), (14565, 'Performance Improvement Quarterly', 19378327, 0.282, 'Q3', 17, 34, 2074, 82, 45, '2', '1988-1995, 2009-2020', 'Education (Q3); Organizational Behavior and Human Resource Management (Q3)'), (14566, 'PLoS Currents', 21573999, 0.282, 'Q3', 49, 0, 0, 5, 5, '2', '2009-2017', 'Medicine (miscellaneous) (Q3)'), (14567, 'Pneumologie', 14388790, 0.282, 'Q3', 41, 215, 2707, 174, 171, '5', '1989-2020', 'Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3)'), (14568, 'Popular Music', 14740095, 0.282, 'Q1', 34, 34, 2216, 41, 75, '3', '1981-1985, 1987-2020', 'Cultural Studies (Q1); Music (Q1)'), (14569, 'Revista de Antropologia', 347701, 0.282, 'Q2', 8, 31, 1041, 32, 82, '14', '2006-2020', 'Anthropology (Q2)'), (14570, 'Revista Mexicana de Biodiversidad', 18705081, 0.282, 'Q3', 24, 85, 4217, 279, 367, '30', '2006-2020', 'Ecology, Evolution, Behavior and Systematics (Q3)'), (14571, 'Scientia Agricultura Sinica', 5781752, 0.282, 'Q2', 12, 425, 17653, 1201, 1241, '1', '2011, 2017-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (14572, 'Strength of Materials', 15739325, 0.282, 'Q3', 20, 95, 1770, 231, 298, '2', '1969-2020', 'Mechanics of Materials (Q3)'), (14573, 'Topoi (Brazil)', 15183319, 0.282, 'Q1', 1, 40, 1300, 8, 32, '14', '2019-2020', 'History (Q1)'), (14574, 'Translational Medicine of Aging', 24685011, 0.282, 'Q3', 5, 25, 1429, 40, 32, '1', '2017-2020', 'Neurology (clinical) (Q3); Aging (Q4); Cell Biology (Q4); Geriatrics and Gerontology (Q4); Physiology (Q4)'), (14575, 'a/b: Auto/Biography Studies', 21517290, 0.281, 'Q1', 6, 63, 1714, 63, 147, '3', '2015-2020', 'Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1)'), (14576, 'Annals of Finance', 16142454, 0.281, 'Q2', 25, 24, 961, 54, 59, '5', '2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q3)'), (14577, 'Arts and Humanities in Higher Education', 14740222, 0.281, 'Q1', 26, 36, 1389, 57, 80, '3', '2002-2020', 'Visual Arts and Performing Arts (Q1); Education (Q3)'), (14578, 'Canadian Journal of Respiratory, Critical Car', 24745340, 0.281, 'Q3', 5, 74, 1934, 68, 98, '2', '2017-2020', 'Critical Care and Intensive Care Medicine (Q3); Pulmonary and Respiratory Medicine (Q3)'), (14579, 'College and Research Libraries News', 21506698, 0.281, 'Q2', 23, 107, 484, 86, 214, '2', '1996-2020', 'Library and Information Sciences (Q2); Education (Q3)'), (14580, 'Comparative Sociology', 15691322, 0.281, 'Q2', 26, 33, 1575, 44, 90, '16', '1970, 1976-1977, 1981, 1984, 1987, 1989, 1999-2020', 'Sociology and Political Science (Q2)'), (14581, 'Condensed Matter Physics', 1607324, 0.281, 'Q3', 25, 58, 2263, 171, 141, '44', '2005-2020', 'Condensed Matter Physics (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (14582, 'Current Science', 113891, 0.281, 'Q2', 118, 530, 12602, 1760, 1459, '4', '1945-1951, 1973-1989, 1993-2020', 'Multidisciplinary (Q2)'), (14583, 'European Journal of Integrative Medicine', 18763820, 0.281, 'Q2', 26, 166, 7697, 511, 358, '5', '2008-2020', 'Complementary and Alternative Medicine (Q2)'), (14584, 'Experimental Oncology', 18129269, 0.281, 'Q4', 43, 64, 1789, 182, 181, '44', '1984-2020', 'Cancer Research (Q4); Oncology (Q4)'), (14585, 'George Washington Law Review', 168076, 0.281, 'Q2', 28, 30, 3121, 72, 112, '2', '1976, 1978, 1980, 1982-1983, 1989, 1992-1994, 1996-2020', 'Law (Q2)'), (14586, 'Industria Textila', 12225347, 0.281, 'Q3', 14, 89, 1874, 193, 243, '43', '1994-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Polymers and Plastics (Q3)'), (14587, 'International Journal of Disclosure and Gover', 17413591, 0.281, 'Q3', 18, 26, 1611, 70, 52, '3', '2009-2020', 'Accounting (Q3); Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)'), (14588, 'International Journal of Environmental Studie', 207233, 0.281, 'Q3', 32, 103, 4346, 252, 210, '3', '1970-2020', 'Computers in Earth Sciences (Q3); Ecology (Q3); Geography, Planning and Development (Q3); Pollution (Q3); Waste Management and Disposal (Q3)'), (14589, 'International Journal of Sensor Networks', 17481287, 0.281, 'Q3', 33, 69, 2138, 312, 209, '3', '2006-2014', 'Computer Networks and Communications (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)'), (14590, 'International Journal of Sport Management and', 14758962, 0.281, 'Q3', 24, 15, 905, 62, 71, '3', '2005-2013', 'Business and International Management (Q3); Management Science and Operations Research (Q3); Marketing (Q3); Strategy and Management (Q3); Sports Science (Q4)'), (14591, 'Iowa Law Review', 210552, 0.281, 'Q2', 34, 30, 6980, 103, 166, '2', '1976, 1979-1980, 1982, 1985, 1987, 1989-1992, 1995-2020', 'Law (Q2)'), (14592, 'Italian Journal of Engineering Geology and En', 18256635, 0.281, 'Q3', 10, 10, 411, 46, 55, '7', '2011-2020', 'Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (14593, 'Italian Journal of Food Science', 11201770, 0.281, 'Q3', 33, 71, 3020, 276, 266, '7', '1996-2020', 'Food Science (Q3)'), (14594, 'Journal of Mediterranean Earth Sciences', 20372272, 0.281, 'Q3', 19, 10, 1160, 33, 30, '7', '2009-2019', 'Geology (Q3); Stratigraphy (Q3)'), (14595, 'Journal of Visual Literacy', 1051144, 0.281, 'Q1', 15, 15, 709, 37, 51, '3', '1996-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q2); Education (Q3)'), (14596, 'Journal of Wireless Mobile Networks, Ubiquito', 20935382, 0.281, 'Q2', 23, 26, 829, 105, 55, '13', '2010-2020', 'Computer Science (miscellaneous) (Q2); Computer Networks and Communications (Q3); Computer Science Applications (Q3)'), (14597, 'Jundishapur Journal of Microbiology', 20084161, 0.281, 'Q3', 29, 75, 2318, 277, 278, '16', '2009-2020', 'Microbiology (medical) (Q3); Infectious Diseases (Q4); Microbiology (Q4)'), (14598, 'Marketing, Zeitschrift fur Forschung und Prax', 3441369, 0.281, 'Q3', 3, 9, 427, 14, 26, '5', '2018-2020', 'Marketing (Q3); Social Psychology (Q3)'), (14599, 'MedEdPORTAL : the journal of teaching and lea', 23748265, 0.281, 'Q3', 5, 190, 0, 274, 341, '2', '2017-2020', 'Medicine (miscellaneous) (Q3)'), (14600, 'Medical Acupuncture', 19336594, 0.281, 'Q2', 14, 66, 1455, 129, 147, '2', '2008-2020', 'Complementary and Alternative Medicine (Q2)'), (14601, 'Monash bioethics review', 18366716, 0.281, 'Q3', 13, 20, 0, 25, 23, '2', '1994-1996, 2002-2020', 'Medicine (miscellaneous) (Q3)'), (14602, 'Nano', 17932920, 0.281, 'Q3', 27, 168, 7415, 546, 474, '37', '2008-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q4)'), (14603, 'Pakistan Veterinary Journal', 2538318, 0.281, 'Q3', 29, 128, 3254, 280, 260, '34', '2009-2020', 'Veterinary (miscellaneous) (Q3)'), (14604, 'Pediatrics in Review', 1919601, 0.281, 'Q3', 47, 152, 403, 294, 355, '2', '1986-2020', 'Medicine (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (14605, 'Rasayan Journal of Chemistry', 9760083, 0.281, 'Q2', 22, 327, 9125, 847, 717, '4', '2008-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2); Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy (miscellaneous) (Q3); Biochemistry (Q4)'), (14606, 'Recent Patents on Nanotechnology', 22124020, 0.281, 'Q2', 29, 34, 1810, 111, 66, '52', '2007-2020', 'Engineering (miscellaneous) (Q2); Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Nanoscience and Nanotechnology (Q4)'), (14607, 'Review of Social Economy', 14701162, 0.281, 'Q3', 35, 51, 3004, 83, 88, '3', '1942, 1944, 1946-2020', 'Economics and Econometrics (Q3)'), (14608, 'RUDN Journal of Sociology', 23132272, 0.281, 'Q2', 4, 74, 1779, 62, 156, '10', '2017-2020', 'Social Sciences (miscellaneous) (Q2)'), (14609, 'Southern Journal of Philosophy', 20416962, 0.281, 'Q1', 21, 33, 1122, 46, 99, '2', '1963-2020', 'Philosophy (Q1)'), (14610, 'Technology and Health Care', 18787401, 0.281, 'Q3', 44, 125, 3254, 580, 417, '16', '1993-2020', 'Information Systems (Q3); Medicine (miscellaneous) (Q3); Bioengineering (Q4); Biomaterials (Q4); Biomedical Engineering (Q4); Biophysics (Q4); Health Informatics (Q4)'), (14611, 'African Journal of Aquatic Science', 17279364, 0.28, 'Q3', 28, 55, 3177, 135, 105, '3', '2000-2020', 'Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (14612, 'American Journal of Family Therapy, The', 1926187, 0.28, 'Q3', 43, 64, 2906, 78, 76, '2', '1979-2020', 'Clinical Psychology (Q3); Social Psychology (Q3)'), (14613, 'Cereal Research Communications', 17889170, 0.28, 'Q3', 32, 93, 3299, 186, 196, '50', '1993-2020', 'Agronomy and Crop Science (Q3); Genetics (Q4); Physiology (Q4)'), (14614, 'Comunicacion y Sociedad (Mexico)', 188252, 0.28, 'Q2', 8, 35, 1141, 62, 89, '30', '2014-2020', 'Communication (Q2)'), (14615, 'Current Herpetology', 13455834, 0.28, 'Q3', 16, 20, 595, 38, 58, '6', '2000-2019', 'Animal Science and Zoology (Q3)'), (14616, 'Eco.mont', 20731558, 0.28, 'Q3', 9, 22, 829, 52, 63, '28', '2009-2020', 'Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)'), (14617, 'EURO Journal on Decision Processes', 21939446, 0.28, 'Q3', 10, 11, 485, 45, 38, '5', '2013-2020', 'Applied Mathematics (Q3); Business, Management and Accounting (miscellaneous) (Q3); Computational Mathematics (Q3); Decision Sciences (miscellaneous) (Q3); Statistics and Probability (Q4)'), (14618, 'Geotectonica et Metallogenia', 10011552, 0.28, 'Q3', 14, 87, 4916, 152, 247, '1', '2013-2020', 'Geology (Q3)'), (14619, 'Iranian Journal of Psychiatry and Behavioral ', 17358639, 0.28, 'Q3', 17, 60, 1743, 223, 270, '15', '2007-2020', 'Psychiatry and Mental Health (Q3); Behavioral Neuroscience (Q4); Biological Psychiatry (Q4)'), (14620, 'Journal of Financial Economic Policy', 17576385, 0.28, 'Q3', 11, 28, 1451, 129, 112, '3', '2014-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (14621, 'Journal of Information and Communication Conv', 22348883, 0.28, 'Q2', 6, 31, 547, 98, 118, '13', '2017-2020', 'Media Technology (Q2); Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Information Systems (Q3)'), (14622, 'Lexikos', 16844904, 0.28, 'Q2', 15, 25, 1039, 37, 61, '27', '2002-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14623, 'Natural Resource Modelling', 8908575, 0.28, 'Q3', 32, 46, 2001, 108, 106, '2', '1990, 1992-1995, 1997-2020', 'Environmental Science (miscellaneous) (Q3); Modeling and Simulation (Q3)'), (14624, 'Parallax', 13534645, 0.28, 'Q1', 23, 18, 436, 84, 89, '3', '1995-2020', 'Cultural Studies (Q1); Literature and Literary Theory (Q1); Philosophy (Q1); Visual Arts and Performing Arts (Q1)'), (14625, 'Polish Journal of Ecology', 15052249, 0.28, 'Q3', 28, 28, 1520, 98, 113, '17', '1996, 1998-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (14626, 'Primate Conservation', 8986207, 0.28, 'Q3', 13, 0, 0, 25, 27, '2', '2009-2010, 2013-2018', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3); Nature and Landscape Conservation (Q3)'), (14627, 'Refractories and Industrial Ceramics', 10834877, 0.28, 'Q3', 15, 124, 2300, 220, 369, '2', '1996-2020', 'Ceramics and Composites (Q3); Materials Chemistry (Q3)'), (14628, 'Revista da Escola de Enfermagem da U S P', 806234, 0.28, 'Q3', 28, 139, 3267, 307, 339, '14', '1967-2020', 'Nursing (miscellaneous) (Q3)'), (14629, 'Ulusal Travma ve Acil Cerrahi Dergisi', 1306696, 0.28, 'Q3', 22, 150, 3694, 288, 303, '18', '2000-2002, 2004-2020', 'Anesthesiology and Pain Medicine (Q3); Emergency Medicine (Q3); Surgery (Q3)'), (14630, 'Vitis - Journal of Grapevine Research', 427500, 0.28, 'Q3', 49, 1, 73, 103, 76, '5', '1981, 1984-1985, 1993-2020', 'Horticulture (Q3); Genetics (Q4)'), (14631, 'Wind Engineering', 309524, 0.28, 'Q3', 46, 106, 3373, 203, 133, '3', '1977-2020', 'Energy Engineering and Power Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (14632, 'Detritus', 26114127, 0.279, 'Q3', 7, 108, 3209, 152, 136, '7', '2018-2020', 'Environmental Engineering (Q3); Waste Management and Disposal (Q3); Environmental Chemistry (Q4)'), (14633, 'Egyptian journal of immunology / Egyptian Ass', 11104902, 0.279, 'Q3', 17, 29, 0, 96, 100, '32', '2003-2019', 'Medicine (miscellaneous) (Q3)'), (14634, 'ERA Forum', 16123093, 0.279, 'Q2', 8, 69, 1017, 50, 100, '5', '2009-2020', 'Law (Q2); Political Science and International Relations (Q2)'), (14635, 'Estonian Journal of Archaeology', 17367484, 0.279, 'Q2', 10, 6, 472, 15, 25, '71', '2008-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14636, 'European Company and Financial Law Review', 16132556, 0.279, 'Q2', 5, 23, 970, 30, 75, '5', '2016-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2)'), (14637, 'European Journal of East Asian Studies', 15700615, 0.279, 'Q1', 11, 8, 385, 19, 32, '16', '2001, 2007-2019', 'Cultural Studies (Q1); History (Q1); Political Science and International Relations (Q2); Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2); Development (Q3); Geography, Planni'), (14638, 'General Dentistry', 3636771, 0.279, 'Q3', 34, 116, 1043, 220, 308, '2', '1976-2020', 'Dentistry (miscellaneous) (Q3)'), (14639, 'Huozhayao Xuebao/Chinese Journal of Explosive', 10077812, 0.279, 'Q3', 21, 109, 2384, 194, 335, '1', '2001-2005, 2008-2020', 'Chemical Engineering (miscellaneous) (Q3); Fuel Technology (Q3)'), (14640, 'International Journal of Cooperative Informat', 2188430, 0.279, 'Q3', 45, 20, 889, 69, 42, '37', '1996-2020', 'Computer Science Applications (Q3); Information Systems (Q3)'), (14641, 'International Journal of Learning and Change', 17402875, 0.279, 'Q3', 7, 21, 1161, 52, 68, '19', '2015-2020', 'Education (Q3); Management of Technology and Innovation (Q3)'), (14642, 'International Journal on Artificial Intellige', 2182130, 0.279, 'Q3', 30, 59, 1912, 261, 153, '37', '2005-2020', 'Artificial Intelligence (Q3)'), (14643, 'Journal of Clinical Imaging Science', 21567514, 0.279, 'Q3', 18, 57, 1077, 123, 106, '4', '2011, 2013-2020', 'Radiology, Nuclear Medicine and Imaging (Q3)'), (14644, 'Journal of Developmental Entrepreneurship', 1793706, 0.279, 'Q3', 25, 29, 1821, 108, 80, '37', '2008-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Strategy and Management (Q3)'), (14645, 'Journal of Information, Communication and Eth', 17588871, 0.279, 'Q1', 19, 37, 2132, 108, 101, '3', '2003-2020', 'Philosophy (Q1); Communication (Q2); Sociology and Political Science (Q2); Computer Networks and Communications (Q3); E-learning (Q3)'), (14646, 'Organic Preparations and Procedures Internati', 304948, 0.279, 'Q4', 49, 89, 2825, 190, 132, '3', '1971-2020', 'Organic Chemistry (Q4)'), (14647, 'Polish Journal of Chemical Technology', 18994741, 0.279, 'Q3', 20, 42, 1319, 234, 184, '17', '2007-2020', 'Biotechnology (Q3); Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (14648, 'Radiation Effects and Defects in Solids', 10420150, 0.279, 'Q3', 30, 119, 3144, 301, 292, '3', '1989-2020', 'Condensed Matter Physics (Q3); Materials Science (miscellaneous) (Q3); Nuclear and High Energy Physics (Q3); Radiation (Q3)'), (14649, 'Souls', 10999949, 0.279, 'Q1', 19, 12, 18, 45, 60, '3', '1999-2000, 2002-2019', 'Cultural Studies (Q1); Sociology and Political Science (Q2)'), (14650, 'Theoretical and Applied Mechanics', 14505584, 0.279, 'Q3', 6, 15, 652, 33, 47, '55', '2016-2020', 'Applied Mathematics (Q3); Computational Mechanics (Q3); Mechanical Engineering (Q3)'), (14651, 'Traitement du Signal', 19585608, 0.279, 'Q3', 11, 122, 3892, 361, 109, '8', '2010-2020', 'Electrical and Electronic Engineering (Q3)'), (14652, 'Acta Zoologica Academiae Scientiarum Hungaric', 12178837, 0.278, 'Q3', 24, 35, 1512, 59, 75, '50', '1996-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q3)'), (14653, 'Advances in Multimedia', 16875680, 0.278, 'Q2', 17, 10, 383, 113, 64, '32', '2007-2020', 'Computer Science (miscellaneous) (Q2)'), (14654, 'Advances in the Theory of Nonlinear Analysis ', 25872648, 0.278, 'Q3', 3, 41, 1101, 18, 20, '22', '2019-2020', 'Applied Mathematics (Q3); Analysis (Q4)'), (14655, 'Case Reports in Nephrology and Dialysis', 22969705, 0.278, 'Q3', 7, 23, 345, 50, 79, '19', '2015-2020', 'Nephrology (Q3)'), (14656, 'Ciencia Rural', 1038478, 0.278, 'Q3', 36, 255, 7276, 680, 761, '14', '2006-2020', 'Agronomy and Crop Science (Q3); Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)'), (14657, 'Cliodynamics', 23737530, 0.278, 'Q1', 7, 4, 107, 32, 28, '2', '2015-2019', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2); Modeling and Simulation (Q3)'), (14658, 'College Teaching', 87567555, 0.278, 'Q3', 41, 63, 1570, 84, 85, '3', '1996-2020', 'Education (Q3)'), (14659, 'Crustaceana', 15685403, 0.278, 'Q3', 37, 96, 3414, 198, 324, '16', '1960-2020', 'Animal Science and Zoology (Q3); Aquatic Science (Q3)'), (14660, 'Diaspora, Indigenous, and Minority Education', 15595706, 0.278, 'Q1', 11, 24, 1065, 39, 52, '2', '2010-2020', 'Cultural Studies (Q1); Education (Q3)'), (14661, 'English Language Notes', 138282, 0.278, 'Q1', 9, 32, 802, 54, 66, '2', '1969, 1977, 1982, 2002-2020', 'Literature and Literary Theory (Q1)'), (14662, 'Farmacia', 148237, 0.278, 'Q2', 24, 150, 5468, 532, 447, '43', '1945-1946, 1973-1987, 2003, 2008-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)'), (14663, 'Glasnik SED', 3512908, 0.278, 'Q1', 5, 22, 823, 19, 81, '60', '2007-2020', 'Conservation (Q1); Cultural Studies (Q1); Museology (Q1); Anthropology (Q2)'), (14664, 'Integration of Education', 19919468, 0.278, 'Q3', 8, 37, 1205, 126, 132, '10', '2016-2020', 'Education (Q3)'), (14665, 'International Review of the Red Cross', 16075889, 0.278, 'Q2', 35, 21, 1272, 47, 121, '3', '2005-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (14666, 'Journal of Human Rights Practice', 17579619, 0.278, 'Q1', 19, 33, 1253, 70, 100, '3', '2009-2019', 'History (Q1); Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (14667, 'Journal of Logic and Analysis', 17599008, 0.278, 'Q3', 4, 8, 131, 12, 21, '3', '2017-2019', 'Modeling and Simulation (Q3); Analysis (Q4); Logic (Q4)'), (14668, 'Journal of Nuclear Engineering and Radiation ', 23328975, 0.278, 'Q3', 10, 89, 1870, 133, 279, '2', '2015-2020', 'Nuclear Energy and Engineering (Q3); Radiation (Q4)'), (14669, 'Mammal Study', 13486160, 0.278, 'Q3', 16, 35, 1425, 74, 93, '6', '2008-2020', 'Animal Science and Zoology (Q3)'), (14670, 'Medycyna Pracy', 4655893, 0.278, 'Q3', 18, 63, 2158, 147, 185, '17', '1953-1955, 1961-1963, 1965-1967, 1973-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14671, 'Political Science', 323187, 0.278, 'Q2', 16, 9, 524, 33, 43, '3', '1948-1949, 1951-1956, 1960, 1962-1965, 1967-1974, 1976-2020', 'Sociology and Political Science (Q2)'), (14672, 'Revista Brasileira de Paleontologia', 15197530, 0.278, 'Q3', 16, 23, 1297, 58, 68, '14', '2010-2020', 'Paleontology (Q3)'), (14673, 'Revista de Derecho Politico', 21745625, 0.278, 'Q2', 4, 36, 2334, 42, 135, '12', '2014-2020', 'Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (14674, 'Voprosy Khimii i Khimicheskoi Tekhnologii', 3214095, 0.278, 'Q3', 7, 125, 2014, 178, 318, '44', '2015-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3); Environmental Chemistry (Q4)'), (14675, 'Xi an Shiyou Daxue Xuebao (Ziran Kexue Ban)/J', 1673064, 0.278, 'Q2', 14, 109, 2092, 131, 328, '1', '2005-2020', 'Multidisciplinary (Q2)'), (14676, '3D Research', 20926731, 0.277, 'Q3', 22, 0, 0, 261, 119, '13', '2010-2019', 'Electrical and Electronic Engineering (Q3); Software (Q3)'), (14677, 'AACL Bioflux', 18449166, 0.277, 'Q3', 16, 355, 12577, 589, 571, '43', '2006, 2009-2020', 'Aquatic Science (Q3); Management, Monitoring, Policy and Law (Q3); Water Science and Technology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (14678, 'Acta Metallurgica Slovaca', 13351532, 0.277, 'Q3', 13, 34, 935, 109, 119, '53', '2009-2020', 'Metals and Alloys (Q3)'), (14679, 'Acta Polytechnica Hungarica', 17858860, 0.277, 'Q2', 34, 120, 3756, 766, 309, '50', '2004-2020', 'Engineering (miscellaneous) (Q2); Multidisciplinary (Q2)'), (14680, 'Advanced Biomedical Engineering', 21875219, 0.277, 'Q3', 4, 29, 786, 37, 37, '6', '2018-2020', 'Biotechnology (Q3); Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3); Biomaterials (Q4); Biomedical Engineering (Q4)'), (14681, 'All Azimuth', 21467757, 0.277, 'Q2', 4, 8, 551, 39, 51, '18', '2012-2020', 'Political Science and International Relations (Q2)'), (14682, 'American Biology Teacher', 27685, 0.277, 'Q2', 30, 97, 1110, 119, 258, '2', '1970-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Education (Q3)'), (14683, 'American Journal of Psychoanalysis', 29548, 0.277, 'Q3', 17, 42, 1146, 41, 111, '3', '1942-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (14684, 'Anthropology in Action', 967201, 0.277, 'Q2', 6, 38, 913, 35, 41, '2', '2011-2020', 'Anthropology (Q2)'), (14685, 'Archaologisches Korrespondenzblatt', 342734, 0.277, 'Q2', 14, 27, 1422, 33, 102, '5', '1983, 2002-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14686, 'Biosemiotics', 18751342, 0.277, 'Q2', 16, 25, 1552, 51, 74, '16', '2009-2020', 'Language and Linguistics (Q2); Social Sciences (miscellaneous) (Q2); Communication (Q3)'), (14687, 'Boletin de la Sociedad Argentina de Botanica', 18512372, 0.277, 'Q3', 14, 31, 1470, 96, 168, '46', '2006-2020', 'Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (14688, 'Cognitive Behaviour Therapist', 1754470, 0.277, 'Q3', 13, 57, 2177, 73, 71, '3', '2008-2020', 'Clinical Psychology (Q3); Experimental and Cognitive Psychology (Q4)'), (14689, 'Engineering Economist', 13791, 0.277, 'Q2', 34, 27, 974, 56, 54, '3', '1955-2020', 'Engineering (miscellaneous) (Q2); Economics and Econometrics (Q3); Education (Q3)'), (14690, 'Eurasian Mathematical Journal', 20779879, 0.277, 'Q3', 6, 31, 636, 40, 86, '65', '2014-2020', 'Mathematics (miscellaneous) (Q3)'), (14691, 'European Journal for Research on the Educatio', 20007426, 0.277, 'Q3', 8, 26, 1073, 37, 44, '20', '2010, 2015-2020', 'Education (Q3)'), (14692, 'Georgian Mathematical Journal', 1072947, 0.277, 'Q3', 27, 99, 2139, 67, 163, '5', '1994-2020', 'Mathematics (miscellaneous) (Q3)'), (14693, 'Historia, Ciencias, Saude - Manguinhos', 16784758, 0.277, 'Q2', 18, 99, 3948, 73, 224, '14', '1994-2020', 'History and Philosophy of Science (Q2); Medicine (miscellaneous) (Q3)'), (14694, 'Human Rights Quarterly', 1085794, 0.277, 'Q2', 66, 31, 0, 94, 106, '2', '1981, 1990, 1992, 1994-2020', 'Social Sciences (miscellaneous) (Q2); Sociology and Political Science (Q2)'), (14695, 'Indian Journal of Dental Research', 19983603, 0.277, 'Q3', 43, 150, 3462, 985, 436, '4', '1989-2020', 'Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (14696, 'Indian Journal of Pure and Applied Mathematic', 195588, 0.277, 'Q3', 37, 126, 2615, 115, 169, '4', '1996-2020', 'Applied Mathematics (Q3); Mathematics (miscellaneous) (Q3)'), (14697, 'International Journal of Aerospace Psychology', 24721832, 0.277, 'Q3', 44, 18, 852, 45, 27, '2', '2017-2020', 'Aerospace Engineering (Q3); Applied Psychology (Q3); Computer Science Applications (Q3); Education (Q3)'), (14698, 'International Journal of Electrical and Compu', 20888708, 0.277, 'Q2', 22, 638, 19332, 2539, 1657, '21', '2014-2020', 'Computer Science (miscellaneous) (Q2); Electrical and Electronic Engineering (Q3)'), (14699, 'International Journal of Middle East Studies', 14716380, 0.277, 'Q1', 43, 63, 2338, 85, 132, '3', '1970-2020', 'History (Q1); Sociology and Political Science (Q2); Geography, Planning and Development (Q3)'), (14700, 'International Journal of Psychology and Psych', 15777057, 0.277, 'Q3', 33, 27, 1220, 70, 59, '12', '2001-2020', 'Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Experimental and Cognitive Psychology (Q4)'), (14701, 'Invertebrate Survival Journal', 1824307, 0.277, 'Q3', 28, 15, 847, 94, 100, '7', '2005-2020', 'Animal Science and Zoology (Q3)'), (14702, 'Irish Educational Studies', 17474965, 0.277, 'Q3', 21, 36, 1839, 91, 87, '3', '1981-1986, 1988-1996, 1998-2020', 'Education (Q3)'), (14703, 'Journal of Futures Studies', 10276084, 0.277, 'Q2', 18, 39, 1324, 56, 109, '22', '2005-2020', 'History and Philosophy of Science (Q2); Decision Sciences (miscellaneous) (Q3); Development (Q3)'), (14704, 'Journal of Korean Institute of Metals and Mat', 17388228, 0.277, 'Q3', 20, 99, 2703, 273, 345, '13', '2007-2020', 'Electronic, Optical and Magnetic Materials (Q3); Metals and Alloys (Q3); Modeling and Simulation (Q3); Surfaces, Coatings and Films (Q3)'), (14705, 'Journal of Management Information and Decisio', 15247252, 0.277, 'Q2', 7, 53, 1711, 103, 72, '3', '2015-2020', 'Information Systems and Management (Q2); Information Systems (Q3); Management Information Systems (Q3); Management Science and Operations Research (Q3)'), (14706, 'Journal of Pediatric Rehabilitation Medicine', 18745393, 0.277, 'Q3', 23, 85, 2571, 128, 143, '16', '2007-2020', 'Pediatrics, Perinatology and Child Health (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (14707, 'Journal of Psychological and Educational Rese', 22471537, 0.277, 'Q3', 5, 16, 789, 38, 46, '43', '2011-2020', 'Applied Psychology (Q3); Developmental and Educational Psychology (Q3); Education (Q3)'), (14708, 'Metallofizika i Noveishie Tekhnologii', 10241809, 0.277, 'Q3', 15, 121, 2552, 229, 320, '44', '1996-2020', 'Condensed Matter Physics (Q3); Electronic, Optical and Magnetic Materials (Q3); Mathematics (miscellaneous) (Q3); Metals and Alloys (Q3)'), (14709, 'Moscow University Physics Bulletin (English T', 19348460, 0.277, 'Q3', 14, 96, 2470, 248, 296, '10', '1975-1977, 1982-1989, 2009-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (14710, 'New Generation Computing', 2883635, 0.277, 'Q3', 27, 39, 1586, 115, 62, '6', '1983-2020', 'Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Software (Q3); Theoretical Computer Science (Q4)'), (14711, 'Radiochemistry', 16083288, 0.277, 'Q4', 22, 88, 2532, 198, 296, '10', '2003-2020', 'Physical and Theoretical Chemistry (Q4)'), (14712, 'Revista Peruana de Medicina de Experimental y', 17264634, 0.277, 'Q3', 21, 131, 2842, 241, 268, '68', '2009-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14713, 'South African Journal of Economic and Managem', 22223436, 0.277, 'Q2', 17, 36, 2153, 183, 160, '27', '1999, 2001, 2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)'), (14714, 'Studia Geotechnica et Mechanica', 1376365, 0.277, 'Q3', 9, 28, 1046, 121, 98, '17', '1980-1986, 1992, 1994, 2016-2020', 'Civil and Structural Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Mechanics of Materials (Q3); Computers in Earth Sciences (Q4)'), (14715, 'Terra Economicus', 24104531, 0.277, 'Q1', 5, 37, 1519, 79, 82, '10', '2018-2020', 'History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q2); Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q2)'), (14716, 'Tobacco Science and Technology', 10020861, 0.277, 'Q2', 11, 178, 4214, 286, 534, '1', '2013-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2)'), (14717, 'Turkish Journal of Medical Sciences', 13000144, 0.277, 'Q3', 27, 268, 8662, 677, 722, '18', '1994-2020', 'Medicine (miscellaneous) (Q3)'), (14718, 'Writing Systems Research', 17586801, 0.277, 'Q2', 14, 2, 76, 15, 20, '3', '2009-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14719, 'Acta et Commentationes Universitatis Tartuens', 14062283, 0.276, 'Q3', 6, 19, 349, 66, 71, '71', '2014-2019', 'Mathematics (miscellaneous) (Q3)'), (14720, 'Applied Engineering in Agriculture', 8838542, 0.276, 'Q2', 54, 58, 1974, 310, 269, '2', '1985-2020', 'Engineering (miscellaneous) (Q2)'), (14721, 'Check List', 1809127, 0.276, 'Q3', 22, 191, 6966, 373, 544, '14', '2010-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (14722, 'Constructions and Frames', 18761933, 0.276, 'Q2', 11, 10, 619, 17, 23, '16', '2009-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14723, 'Eastern Economic Journal', 945056, 0.276, 'Q3', 22, 28, 1112, 72, 102, '3', '1984-1985, 1987-1989, 2007-2020', 'Economics and Econometrics (Q3)'), (14724, 'Estudios Geologicos', 19883250, 0.276, 'Q3', 27, 14, 1097, 43, 63, '12', '1976-1977, 1980-1983, 1991-2019', 'Geology (Q3)'), (14725, 'Hand Therapy', 17589983, 0.276, 'Q3', 11, 14, 510, 43, 42, '2', '1996, 1998-2000, 2009-2020', 'Orthopedics and Sports Medicine (Q3)'), (14726, 'Indonesia', 197289, 0.276, 'Q1', 9, 0, 0, 7, 5, '2', '2011-2017', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (14727, 'International Journal of Enterprise Informati', 15481115, 0.276, 'Q3', 21, 30, 1682, 146, 73, '2', '2005-2020', 'Computer Science Applications (Q3); Information Systems and Management (Q3); Management Information Systems (Q3)'), (14728, 'Journal of Low Power Electronics and Applicat', 20799268, 0.276, 'Q3', 16, 41, 1626, 203, 107, '19', '2011-2020', 'Electrical and Electronic Engineering (Q3)'), (14729, 'Journal of Signal Processing Systems', 19398115, 0.276, 'Q3', 51, 121, 3864, 527, 324, '2', '2008-2020', 'Control and Systems Engineering (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Modeling and Simulation (Q3); Signal Processing (Q3); Theoretical Computer Science (Q4)'), (14730, 'Journal of Technology Education', 10451064, 0.276, 'Q2', 20, 9, 282, 38, 29, '2', '2002-2020', 'Engineering (miscellaneous) (Q2); Education (Q3)'), (14731, 'Journal of the Indian Institute of Science', 194964, 0.276, 'Q2', 29, 70, 3669, 161, 100, '4', '1974, 1976-1978, 1983-1984, 1988, 1995-2020', 'Multidisciplinary (Q2)'), (14732, 'Neural Network World', 23364335, 0.276, 'Q3', 26, 21, 569, 130, 85, '31', '1994-2019', 'Artificial Intelligence (Q3); Hardware and Architecture (Q3); Software (Q3); Neuroscience (miscellaneous) (Q4)'), (14733, 'New Political Science', 7393148, 0.276, 'Q2', 22, 44, 0, 105, 107, '3', '1979-1986, 1989-2020', 'Sociology and Political Science (Q2)'), (14734, 'RICYDE. Revista internacional de ciencias del', 18853137, 0.276, 'Q3', 17, 28, 1334, 107, 91, '12', '2010-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (14735, 'Serbian Journal of Management', 14524864, 0.276, 'Q3', 10, 25, 789, 82, 74, '55', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (14736, 'Shuili Xuebao/Journal of Hydraulic Engineerin', 5599350, 0.276, 'Q3', 33, 149, 4351, 482, 469, '1', '1985-1998, 2001-2020', 'Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3); Water Science and Technology (Q3)'), (14737, 'Strojnicky Casopis', 24505471, 0.276, 'Q3', 8, 31, 559, 116, 116, '53', '1973-1991, 2016-2020', 'Mechanical Engineering (Q3)'), (14738, 'Surgical technology international', 10903941, 0.276, 'Q3', 31, 178, 2100, 361, 440, '2', '2002-2010, 2012-2020', 'Surgery (Q3)'), (14739, 'Uchenye Zapiski Kazanskogo Universiteta. Seri', 25002198, 0.276, 'Q3', 7, 36, 566, 53, 151, '10', '2016-2019', 'Applied Mathematics (Q3)'), (14740, 'American Malacological Bulletin', 7402783, 0.275, 'Q3', 32, 11, 322, 38, 49, '2', '1988, 1993-1994, 1996-2020', 'Aquatic Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (14741, 'Anthropological Quarterly', 35491, 0.275, 'Q2', 45, 27, 1778, 82, 107, '2', '1981, 1987-2020', 'Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)'), (14742, 'Asian Fisheries Science', 20733720, 0.275, 'Q3', 7, 56, 2108, 103, 123, '23', '2009, 2017-2020', 'Ecology (Q3); Food Science (Q3); Aquatic Science (Q4)'), (14743, 'Chemistry Journal of Moldova', 18571727, 0.275, 'Q3', 5, 16, 630, 104, 76, '123', '2016-2020', 'Chemistry (miscellaneous) (Q3); Environmental Chemistry (Q4); Process Chemistry and Technology (Q4)'), (14744, 'Der Nervenarzt', 14330407, 0.275, 'Q3', 44, 207, 5222, 431, 443, '5', '1947-2020', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3); Neurology (Q4)'), (14745, 'Functional Foods in Health and Disease', 23787007, 0.275, 'Q3', 18, 38, 1819, 147, 142, '2', '2014, 2019-2020', 'Food Science (Q3); Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3); Biochemistry (Q4)'), (14746, 'Gigiena i sanitariia', 24120650, 0.275, 'Q3', 13, 228, 6043, 316, 728, '10', '1945-1947, 1950-2020', 'Medicine (miscellaneous) (Q3); Pollution (Q3); Public Health, Environmental and Occupational Health (Q3); Health, Toxicology and Mutagenesis (Q4)'), (14747, 'Global Economic Review', 1226508, 0.275, 'Q2', 19, 27, 946, 56, 68, '3', '1996-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Political Science and International Relations (Q2); Business and International Management (Q3)'), (14748, 'Hacquetia', 15814661, 0.275, 'Q3', 13, 17, 857, 59, 49, '17', '2007-2020', 'Forestry (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (14749, 'International Journal of Jungian Studies', 19409060, 0.275, 'Q4', 6, 16, 659, 12, 35, '3', '2010-2020', 'Applied Psychology (Q4)'), (14750, 'International Journal of Materials Research', 18625282, 0.275, 'Q3', 63, 126, 3743, 314, 356, '5', '1994, 2006-2020', 'Condensed Matter Physics (Q3); Materials Chemistry (Q3); Metals and Alloys (Q3); Physical and Theoretical Chemistry (Q4)'), (14751, 'International Review on Modelling and Simulat', 19749821, 0.275, 'Q3', 21, 47, 1460, 275, 142, '7', '2010-2020', 'Chemical Engineering (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Modeling and Simulation (Q3)'), (14752, 'Jisuanji Jicheng Zhizao Xitong/Computer Integ', 10065911, 0.275, 'Q3', 33, 324, 8066, 940, 913, '1', '1996-2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Software (Q3)'), (14753, 'Journal of Advanced Veterinary and Animal Res', 23117710, 0.275, 'Q3', 9, 92, 3405, 256, 203, '59', '2014-2020', 'Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)'), (14754, 'Journal of Financial Regulation and Complianc', 13581988, 0.275, 'Q3', 19, 32, 1600, 122, 91, '3', '1996-2020', 'Finance (Q3); Strategy and Management (Q3)'), (14755, 'Journal of Forensic Psychology Research and P', 24732850, 0.275, 'Q3', 22, 27, 1545, 36, 36, '3', '2018-2020', 'Applied Psychology (Q3); Pathology and Forensic Medicine (Q3)'), (14756, 'Journal of Mineralogical and Petrological Sci', 13456296, 0.275, 'Q3', 29, 39, 1916, 74, 77, '6', '2000-2020', 'Geology (Q3); Geophysics (Q3)'), (14757, 'Journal of Neuroscience, Psychology, and Econ', 1937321, 0.275, 'Q2', 27, 9, 464, 48, 42, '2', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Applied Psychology (Q3); Business, Management and Accounting (miscellaneous) (Q3); Behavioral Neuroscience (Q4); Cognitive Neuroscience (Q4); '), (14758, 'Journal of the Royal College of Physicians of', 14782715, 0.275, 'Q1', 26, 139, 2029, 219, 178, '3', '2002-2020', 'History (Q1); Education (Q3); Medicine (miscellaneous) (Q3)'), (14759, 'Loisir et Societe', 7053436, 0.275, 'Q2', 23, 28, 1206, 44, 77, '3', '1978-2020', 'Sociology and Political Science (Q2); Metals and Alloys (Q3)'), (14760, 'Postepy Higieny i Medycyny Doswiadczalnej', 17322693, 0.275, 'Q3', 34, 63, 3760, 280, 276, '17', '1949-2020', 'Medicine (miscellaneous) (Q3); Microbiology (medical) (Q3); Infectious Diseases (Q4)'), (14761, 'Preservation, Digital Technology and Culture', 21952965, 0.275, 'Q1', 5, 11, 305, 25, 52, '5', '2013-2020', 'Conservation (Q1); Library and Information Sciences (Q2); Computer Science Applications (Q3)'), (14762, 'Psihologijske Teme', 13320742, 0.275, 'Q3', 17, 36, 2280, 59, 92, '58', '2009-2020', 'Applied Psychology (Q3); Clinical Psychology (Q3); Social Psychology (Q3)'), (14763, 'Singapore Economic Review', 2175908, 0.275, 'Q3', 17, 197, 8411, 264, 236, '37', '1983-2020', 'Economics and Econometrics (Q3)'), (14764, 'Urbani Izziv', 18558399, 0.275, 'Q1', 15, 15, 780, 62, 77, '60', '1994-1995, 1997-2019', 'Cultural Studies (Q1); Architecture (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)'), (14765, 'Wireless Power Transfer', 20528418, 0.275, 'Q3', 11, 1, 38, 54, 43, '3', '2014-2020', 'Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)'), (14766, 'Acta Agriculturae Scandinavica - Section A: A', 9064702, 0.274, 'Q3', 39, 28, 1119, 27, 44, '3', '1992-2018, 2020', 'Animal Science and Zoology (Q3); Food Animals (Q3)'), (14767, 'Acta Clinica Croatica', 3539466, 0.274, 'Q3', 20, 93, 2113, 261, 339, '58', '1993-2020', 'Medicine (miscellaneous) (Q3)'), (14768, 'Acta Gymnica', 23364912, 0.274, 'Q3', 10, 20, 740, 67, 72, '31', '2014-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (14769, 'Alternative Therapies in Health and Medicine', 10786791, 0.274, 'Q2', 67, 78, 2649, 135, 144, '2', '1995-2020', 'Complementary and Alternative Medicine (Q2); Medicine (miscellaneous) (Q3)'), (14770, 'Annales de Geographie', 34010, 0.274, 'Q3', 16, 34, 1761, 30, 73, '8', '1979-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (14771, 'Bosque', 3048799, 0.274, 'Q3', 17, 36, 1041, 99, 123, '45', '2006-2020', 'Forestry (Q3)'), (14772, 'Chemical Engineering Transactions', 22839216, 0.274, 'Q3', 35, 554, 9075, 2953, 4227, '7', '2009-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (14773, 'Current Issues in Auditing', 19361270, 0.274, 'Q3', 11, 17, 372, 25, 27, '2', '2009-2020', 'Accounting (Q3)'), (14774, 'Digital Library Perspectives', 20595816, 0.274, 'Q2', 23, 44, 1330, 65, 75, '3', '2016-2020', 'Library and Information Sciences (Q2); Education (Q3); Information Systems (Q3)'), (14775, 'Economic Notes', 14680300, 0.274, 'Q3', 19, 22, 843, 62, 65, '3', '2001-2020', 'Economics and Econometrics (Q3)'), (14776, 'Education and Health', 2651602, 0.274, 'Q3', 12, 4, 92, 31, 41, '3', '2006-2008, 2014-2019', 'Community and Home Care (Q3)'), (14777, 'Escola Anna Nery Revista de Enfermagem', 14148145, 0.274, 'Q3', 3, 0, 0, 2, 3, '14', '2017', 'Nursing (miscellaneous) (Q3)'), (14778, 'German Politics and Society', 10450300, 0.274, 'Q1', 7, 23, 818, 34, 63, '2', '2015-2020', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2)'), (14779, 'Hispanic Health Care International', 15404153, 0.274, 'Q3', 14, 48, 1350, 57, 80, '2', '2005-2020', 'Nursing (miscellaneous) (Q3)'), (14780, 'Human Antibodies', 10932607, 0.274, 'Q3', 24, 37, 1682, 92, 87, '16', '1990-1997, 1999-2020', 'Medicine (miscellaneous) (Q3); Immunology (Q4); Immunology and Allergy (Q4)'), (14781, 'IEEE Pulse', 21542317, 0.274, 'Q3', 86, 53, 254, 164, 176, '2', '2010-2020', 'Medicine (miscellaneous) (Q3); Biomedical Engineering (Q4)'), (14782, 'Inland Water Biology', 19950837, 0.274, 'Q4', 12, 82, 2758, 125, 223, '10', '2009-2020', 'Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (14783, 'International Journal of Critical Illness and', 22295151, 0.274, 'Q3', 12, 53, 1286, 111, 109, '4', '2015-2020', 'Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14784, 'International Journal of Pediatrics and Adole', 23526467, 0.274, 'Q3', 3, 70, 1870, 40, 35, '29', '2019-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (14785, 'Journal of Social Studies Education Research', 13099108, 0.274, 'Q2', 12, 52, 2689, 292, 192, '18', '2015-2020', 'Social Sciences (miscellaneous) (Q2); Education (Q3)'), (14786, 'Journal of Vascular Surgery Cases and Innovat', 24684287, 0.274, 'Q3', 5, 182, 2179, 209, 324, '16', '2016-2020', 'Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)'), (14787, 'Ornamental Horticulture', 2447536, 0.274, 'Q3', 6, 74, 2252, 122, 141, '14', '2016-2020', 'Horticulture (Q3); Plant Science (Q3)'), (14788, 'Petroleum Chemistry', 15556239, 0.274, 'Q3', 25, 159, 5569, 594, 527, '10', '1991-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Geochemistry and Petrology (Q4)'), (14789, 'Revista brasileira de enfermagem', 347167, 0.274, 'Q3', 21, 532, 0, 804, 953, '14', '1965, 1967-1971, 1973, 1976-1979, 1983-1987, 1995-2020', 'Medicine (miscellaneous) (Q3); Nursing (miscellaneous) (Q3)'), (14790, 'Revista Espanola de Cirugia Ortopedica y Trau', 18884415, 0.274, 'Q3', 13, 64, 1507, 132, 182, '12', '2008-2020', 'Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (14791, 'Science of Gymnastics Journal', 18557171, 0.274, 'Q3', 10, 26, 954, 43, 81, '60', '2012-2020', 'Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (14792, 'Social Dynamics', 2533952, 0.274, 'Q2', 23, 36, 1312, 57, 93, '3', '1975-2020', 'Social Sciences (miscellaneous) (Q2)'), (14793, 'Special Topics and Reviews in Porous Media', 21514798, 0.274, 'Q2', 15, 39, 1716, 116, 87, '2', '2010-2020', 'Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)'), (14794, 'Yingyong Jichu yu Gongcheng Kexue Xuebao/Jour', 10050930, 0.274, 'Q2', 17, 124, 2896, 216, 355, '1', '2004-2020', 'Engineering (miscellaneous) (Q2)'), (14795, 'Acta Archaeologica', 65101, 0.273, 'Q2', 11, 9, 628, 18, 43, '3', '2000-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14796, 'Annales Pharmaceutiques Francaises', 34509, 0.273, 'Q3', 26, 69, 2018, 131, 148, '8', '1945, 1947-2020', 'Pharmaceutical Science (Q3); Pharmacology (Q3)'), (14797, 'Annals of parasitology', 22990631, 0.273, 'Q3', 20, 65, 0, 118, 147, '17', '2012-2020', 'Medicine (miscellaneous) (Q3)'), (14798, 'Atencion Primaria', 2126567, 0.273, 'Q3', 38, 189, 3447, 267, 257, '12', '1989-2020', 'Family Practice (Q3); Medicine (miscellaneous) (Q3)'), (14799, 'Chebyshevskii Sbornik', 22268383, 0.273, 'Q3', 6, 100, 2144, 89, 254, '10', '2017-2020', 'Mathematics (miscellaneous) (Q3)'), (14800, 'Culture, Theory and Critique', 14735776, 0.273, 'Q1', 11, 11, 455, 61, 68, '3', '2010-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q2)'), (14801, 'Drilling Fluid and Completion Fluid', 10015620, 0.273, 'Q3', 14, 110, 1791, 220, 392, '1', '2002-2020', 'Energy Engineering and Power Technology (Q3)'), (14802, 'Electric Power Components and Systems', 15325016, 0.273, 'Q3', 50, 122, 4177, 763, 494, '3', '2000-2020', 'Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3)'), (14803, 'Food Science and Technology Research', 13446606, 0.273, 'Q3', 42, 97, 2933, 262, 328, '19', '1999-2020', 'Biotechnology (Q3); Chemical Engineering (miscellaneous) (Q3); Food Science (Q3); Industrial and Manufacturing Engineering (Q3); Marketing (Q3)'), (14804, 'Housing and Society', 23760923, 0.273, 'Q2', 5, 17, 1020, 31, 32, '3', '2015-2020', 'Sociology and Political Science (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)'), (14805, 'Indonesian Journal of Chemistry', 14119420, 0.273, 'Q3', 14, 149, 4496, 382, 283, '21', '2010, 2012-2020', 'Chemistry (miscellaneous) (Q3)'), (14806, 'International Journal of Computer-Assisted La', 21557101, 0.273, 'Q2', 4, 19, 664, 38, 56, '2', '2017-2020', 'Linguistics and Language (Q2); Computer Science Applications (Q3); Computer Vision and Pattern Recognition (Q3); Education (Q3)'), (14807, 'International Journal of Industrial and Syste', 17485037, 0.273, 'Q3', 27, 82, 3215, 225, 234, '3', '2006-2014, 2020', 'Control and Systems Engineering (Q3); Industrial and Manufacturing Engineering (Q3)'), (14808, 'International Journal of Telerehabilitation', 19452020, 0.273, 'Q3', 3, 19, 618, 14, 7, '2', '2019-2020', 'Computer Science Applications (Q3); Rehabilitation (Q3); Health Informatics (Q4); Health Information Management (Q4)'), (14809, 'Journal of Astronomy and Space Science', 20935587, 0.273, 'Q3', 11, 26, 613, 54, 94, '13', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (14810, 'Journal of Creative Communications', 9732594, 0.273, 'Q3', 11, 20, 1012, 38, 44, '3', '2006-2020', 'Communication (Q3)'), (14811, 'Journal of Data and Information Quality', 19361963, 0.273, 'Q3', 23, 17, 746, 197, 73, '2', '2009-2020', 'Information Systems (Q3); Information Systems and Management (Q3)'), (14812, 'Journal of Environmental Horticulture', 25735586, 0.273, 'Q3', 5, 23, 646, 52, 60, '2', '1984, 1987-1988, 2017-2020', 'Environmental Science (miscellaneous) (Q3); Horticulture (Q3)'), (14813, 'Journal of Macromolecular Science - Physics', 1525609, 0.273, 'Q3', 49, 81, 2746, 238, 186, '2', '1967-2020', 'Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (14814, 'Journal of the Institute of Conservation', 19455232, 0.273, 'Q1', 9, 20, 0, 49, 47, '3', '2009-2020', 'Museology (Q1); Conservation (Q2); Media Technology (Q2); Materials Science (miscellaneous) (Q3)'), (14815, 'Language Dynamics and Change', 22105832, 0.273, 'Q2', 12, 14, 1281, 35, 30, '16', '2011-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (14816, 'Metal Science and Heat Treatment', 260673, 0.273, 'Q3', 25, 128, 2562, 285, 394, '2', '1959-2020', 'Condensed Matter Physics (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)'), (14817, 'Philosophy of the Social Sciences', 15527441, 0.273, 'Q1', 36, 31, 1632, 43, 75, '2', '1971-2020', 'Philosophy (Q1); Social Sciences (miscellaneous) (Q2)'), (14818, 'Plant and Fungal Systematics', 25447459, 0.273, 'Q3', 18, 0, 0, 35, 61, '5', '2018-2019', 'Plant Science (Q3)'), (14819, 'Quality Innovation Prosperity', 1338984, 0.273, 'Q3', 13, 28, 953, 137, 76, '53', '2012-2020', 'Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (14820, 'Revista Espanola de Sociologia', 15782824, 0.273, 'Q2', 9, 72, 2938, 82, 115, '12', '2010-2020', 'Sociology and Political Science (Q2)'), (14821, 'Transactions of the Canadian Society for Mech', 3158977, 0.273, 'Q3', 20, 56, 1400, 277, 153, '9', '1972-1976, 1978, 1980-1981, 1983-2020', 'Mechanical Engineering (Q3)'), (14822, 'Treatises and Documents, Journal of Ethnic St', 18545181, 0.273, 'Q1', 5, 17, 856, 30, 38, '60', '2015-2019', 'Cultural Studies (Q1); Anthropology (Q2); Demography (Q3)'), (14823, 'Valori e Valutazioni', 20362404, 0.273, 'Q2', 11, 38, 1315, 119, 54, '7', '2016-2020', 'Law (Q2); Decision Sciences (miscellaneous) (Q3); Finance (Q3); Strategy and Management (Q3)'), (14824, 'Actas Dermo-Sifiliograficas', 17310, 0.272, 'Q3', 37, 245, 3814, 545, 758, '12', '1945-1982, 1988-2020', 'Dermatology (Q3); Histology (Q3); Pathology and Forensic Medicine (Q3)'), (14825, 'Annales de Chirurgie Plastique et Esthetique', 1768319, 0.272, 'Q3', 28, 92, 2491, 174, 236, '8', '1983-2020', 'Surgery (Q3)'), (14826, 'Arabian Journal of Mathematics', 21935351, 0.272, 'Q3', 13, 70, 1721, 92, 72, '5', '2012-2020', 'Mathematics (miscellaneous) (Q3)'), (14827, 'Cybernetics and Information Technologies', 13119702, 0.272, 'Q2', 17, 63, 1764, 241, 145, '61', '2011-2020', 'Computer Science (miscellaneous) (Q2)'), (14828, 'Decisions in Economics and Finance', 15938883, 0.272, 'Q2', 15, 51, 1612, 56, 72, '7', '1997, 2000-2002, 2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Finance (Q3)'), (14829, 'Fauna Norvegica', 15024873, 0.272, 'Q3', 9, 8, 537, 13, 18, '33', '2000, 2002-2005, 2008-2010, 2012-2020', 'Animal Science and Zoology (Q3)'), (14830, 'IEEE Computer Architecture Letters', 15566056, 0.272, 'Q3', 36, 41, 564, 349, 136, '2', '2002-2020', 'Hardware and Architecture (Q3)'), (14831, 'International Journal of Construction Educati', 15503984, 0.272, 'Q3', 18, 47, 1845, 80, 49, '3', '2004, 2006-2020', 'Building and Construction (Q3); Education (Q3)'), (14832, 'International Journal of Electronic Governmen', 15483894, 0.272, 'Q2', 29, 19, 1275, 65, 45, '2', '2005-2020', 'Social Sciences (miscellaneous) (Q2); Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Software (Q3); E-learning (Q4)'), (14833, 'Investment Analysts Journal', 20770227, 0.272, 'Q3', 18, 20, 802, 56, 56, '3', '1972-2020', 'Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (14834, 'Journal of Clinical Ultrasound', 912751, 0.272, 'Q4', 61, 124, 2227, 300, 319, '2', '1973-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (14835, 'Journal of Combinatorial Algebra', 24156310, 0.272, 'Q3', 3, 9, 223, 19, 13, '19', '2018-2020', 'Discrete Mathematics and Combinatorics (Q3); Algebra and Number Theory (Q4)'), (14836, 'Journal of Nephropathology', 22518819, 0.272, 'Q3', 31, 46, 1256, 157, 160, '15', '2012-2021', 'Nephrology (Q3)'), (14837, 'Journal of Plant Nutrition and Fertilizers', 1008505, 0.272, 'Q3', 7, 198, 8134, 426, 405, '1', '2018-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3); Soil Science (Q3)'), (14838, 'Mathematics in Computer Science', 16618289, 0.272, 'Q3', 21, 73, 1697, 138, 113, '19', '2007-2020', 'Applied Mathematics (Q3); Computational Mathematics (Q3); Computational Theory and Mathematics (Q3)'), (14839, 'Saudi Endodontic Journal', 23201495, 0.272, 'Q3', 8, 50, 1491, 170, 103, '4', '2015-2020', 'Dentistry (miscellaneous) (Q3)'), (14840, 'Theoretical and Empirical Researches in Urban', 20653913, 0.272, 'Q2', 14, 21, 763, 54, 60, '43', '2010-2020', 'Urban Studies (Q2); Geography, Planning and Development (Q3)'), (14841, 'Toxicology and Environmental Health Sciences', 20059752, 0.272, 'Q4', 15, 40, 1692, 137, 122, '13', '2009-2020', 'Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)'), (14842, 'Veterinarni Medicina', 18059392, 0.272, 'Q3', 50, 69, 1941, 191, 240, '31', '1971-2020', 'Veterinary (miscellaneous) (Q3)'), (14843, 'Advances in Materials and Processing Technolo', 2374068, 0.271, 'Q3', 9, 209, 6648, 218, 163, '3', '2015-2020', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (14844, 'Behavioral Science and Policy', 23794607, 0.271, 'Q3', 2, 9, 361, 10, 10, '2', '2018-2020', 'Development (Q3); Human-Computer Interaction (Q3); Public Health, Environmental and Occupational Health (Q3); Behavioral Neuroscience (Q4)'), (14845, 'CAB Reviews: Perspectives in Agriculture, Vet', 17498848, 0.271, 'Q2', 30, 50, 4855, 181, 155, '3', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Nature and Landscape Conservation (Q3); Veterinary (miscellaneous) (Q3)'), (14846, 'Chinese Journal of Endemiology', 10004955, 0.271, 'Q3', 14, 118, 2635, 498, 873, '1', '2005-2020', 'Microbiology (medical) (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14847, 'Current Research in Environmental and Applied', 22292225, 0.271, 'Q3', 6, 38, 1722, 73, 105, '1', '2017-2020', 'Ecology (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Infectious Diseases (Q4); Microbiology (Q4)'), (14848, 'European Journal of Translational Myology', 20377460, 0.271, 'Q3', 6, 54, 2111, 120, 86, '7', '2018-2020', 'Neurology (clinical) (Q3); Orthopedics and Sports Medicine (Q3); Cell Biology (Q4); Molecular Biology (Q4)'), (14849, 'Heritage and Society', 2159032, 0.271, 'Q1', 8, 0, 0, 25, 27, '3', '2011, 2014-2018, 2020', 'Cultural Studies (Q1); Anthropology (Q2); Conservation (Q2); Sociology and Political Science (Q2)'), (14850, 'History in Africa', 3615413, 0.271, 'Q1', 3, 22, 658, 16, 46, '2', '1974, 1988, 1999-2001, 2017-2020', 'History (Q1)'), (14851, 'IEEE Technology and Society Magazine', 2780097, 0.271, 'Q2', 35, 51, 1312, 182, 128, '2', '1982-2020', 'Engineering (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q2)'), (14852, 'Intelligent Automation and Soft Computing', 10798587, 0.271, 'Q3', 27, 131, 3350, 390, 208, '3', '1995-2020', 'Artificial Intelligence (Q3); Computational Theory and Mathematics (Q3); Software (Q3); Theoretical Computer Science (Q4)'), (14853, 'International Journal of Agriculture and Biol', 15608530, 0.271, 'Q3', 39, 377, 15841, 754, 837, '34', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (14854, 'International Journal of Business Environment', 17400589, 0.271, 'Q3', 5, 23, 1680, 63, 39, '3', '2017-2020', 'Business and International Management (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)'), (14855, 'International Journal of Vegetable Science', 19315279, 0.271, 'Q3', 17, 82, 2751, 157, 144, '2', '2007-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (14856, 'Iranian Journal of Science and Technology, Tr', 10286276, 0.271, 'Q2', 21, 200, 6322, 892, 722, '19', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q2); Engineering (miscellaneous) (Q2); Chemistry (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Mathematics (miscellaneo'), (14857, 'Jilin Daxue Xuebao (Diqiu Kexue Ban)/Journal ', 16715888, 0.271, 'Q3', 25, 154, 5611, 310, 468, '1', '2009-2020', 'Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (14858, 'Journal of Chengdu University of Technology (', 16719727, 0.271, 'Q3', 25, 72, 1999, 124, 233, '1', '2004-2019', 'Geology (Q3)'), (14859, 'Journal of Dynamics and Games', 21646074, 0.271, 'Q3', 7, 24, 744, 36, 52, '2', '2014-2020', 'Applied Mathematics (Q3); Modeling and Simulation (Q3); Statistics and Probability (Q4)'), (14860, 'Journal of East-West Business', 10669868, 0.271, 'Q3', 16, 24, 1727, 50, 44, '2', '1994-2020', 'Business and International Management (Q3); Development (Q3); Geography, Planning and Development (Q3)'), (14861, 'Journal of Fixed Income', 10598596, 0.271, 'Q3', 14, 28, 573, 34, 69, '2', '2008-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (14862, 'Journal of Food Science Education', 15414329, 0.271, 'Q3', 13, 27, 842, 51, 38, '2', '2007-2020', 'Education (Q3); Food Science (Q3)'), (14863, 'Journal of Receptor, Ligand and Channel Resea', 1178699, 0.271, 'Q3', 9, 0, 0, 5, 2, '41', '2010-2016, 2018', 'Pharmacology (Q3); Biochemistry (Q4); Biophysics (Q4); Cell Biology (Q4)'), (14864, 'MAI Journal', 22306862, 0.271, 'Q1', 2, 32, 1402, 18, 20, '41', '2019-2020', 'Cultural Studies (Q1); Anthropology (Q2); Education (Q3); Health (social science) (Q3)'), (14865, 'Malaysian Orthopaedic Journal', 2232111, 0.271, 'Q3', 6, 85, 1438, 104, 134, '23', '2015-2020', 'Emergency Medicine (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (14866, 'Managerial Finance', 3074358, 0.271, 'Q3', 39, 92, 4190, 362, 306, '3', '1996-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3); Strategy and Management (Q3)'), (14867, 'Oceanological and Hydrobiological Studies', 18973191, 0.271, 'Q3', 22, 38, 2059, 100, 124, '5', '2003-2020', 'Oceanography (Q3)'), (14868, 'Open Chemistry', 23915420, 0.271, 'Q3', 20, 151, 5888, 532, 345, '5', '2003, 2015-2020', 'Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3)'), (14869, 'Proceedings of the Zoological Society', 3735893, 0.271, 'Q3', 11, 57, 2147, 92, 124, '4', '2009-2020', 'Animal Science and Zoology (Q3); Aquatic Science (Q4); Cell Biology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Endocrinology (Q4); Genetics (Q4); Immunology (Q4); Insect Science (Q4)'), (14870, 'Reumatologia Clinica', 1699258, 0.271, 'Q4', 26, 210, 4373, 244, 271, '12', '2005-2020', 'Rheumatology (Q4)'), (14871, 'Revista de Teledeteccion', 11330953, 0.271, 'Q3', 9, 24, 837, 44, 52, '12', '2012-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (14872, 'SDHM Structural Durability and Health Monitor', 19302991, 0.271, 'Q3', 12, 17, 534, 58, 44, '2', '2006-2015, 2017-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (14873, 'South East Asia Research', 967828, 0.271, 'Q2', 20, 26, 1114, 40, 68, '2', '1995-2020', 'Political Science and International Relations (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (14874, 'Strojniski Vestnik/Journal of Mechanical Engi', 392480, 0.271, 'Q3', 30, 58, 1621, 172, 108, '60', '1974-1994, 1996-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (14875, 'Summa Phytopathologica', 1005405, 0.271, 'Q3', 14, 54, 1098, 101, 181, '14', '2008-2020', 'Plant Science (Q3)'), (14876, 'Teoria ta Metodika Fizicnogo Vihovanna', 19937997, 0.271, 'Q3', 5, 33, 1019, 46, 24, '44', '2019-2020', 'Health (social science) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Public Health, Environmental and Occupational Health (Q3)'), (14877, 'Tropical Biomedicine', 1275720, 0.271, 'Q4', 35, 109, 3861, 267, 343, '23', '2005-2020', 'Infectious Diseases (Q4); Parasitology (Q4)'), (14878, 'ACM SIGBED Review', 15513688, 0.27, 'Q2', 5, 14, 293, 53, 33, '2', '2018-2020', 'Computer Science (miscellaneous) (Q2); Engineering (miscellaneous) (Q2)'), (14879, 'Acta Ecologica Sinica', 10000933, 0.27, 'Q3', 45, 699, 16051, 2579, 2683, '1', '2005-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (14880, 'Asian EFL Journal', 17381460, 0.27, 'Q2', 14, 230, 8177, 387, 542, '3', '2005, 2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (14881, 'Brazilian Journal of Pharmaceutical Sciences', 19848250, 0.27, 'Q2', 40, 106, 3622, 504, 352, '14', '2009-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)'), (14882, 'Bulletin of the Tomsk Polytechnic University,', 24131830, 0.27, 'Q3', 10, 223, 6825, 411, 536, '10', '2015-2020', 'Economic Geology (Q3); Fuel Technology (Q3); Geotechnical Engineering and Engineering Geology (Q3); Management, Monitoring, Policy and Law (Q3); Materials Science (miscellaneous) (Q3); Waste Managemen'), (14883, 'Canadian journal of women and the law = Revue', 8328781, 0.27, 'Q2', 13, 15, 1288, 35, 55, '9', '1986-1987, 1989-1990, 1993-1994, 2003, 2009-2020', 'Law (Q2); Sociology and Political Science (Q2); Gender Studies (Q3)'), (14884, 'Cancer Forum', 311306, 0.27, 'Q4', 14, 0, 0, 21, 29, '11', '1993-2018', 'Cancer Research (Q4); Oncology (Q4)'), (14885, 'Financial History Review', 9685650, 0.27, 'Q1', 18, 22, 1064, 30, 48, '3', '1994-1999, 2003-2020', 'History (Q1); Finance (Q3)'), (14886, 'International Journal of Rural Management', 9730680, 0.27, 'Q3', 10, 14, 626, 30, 33, '4', '2005-2010, 2012-2020', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Strategy and Management (Q3)'), (14887, 'Iranian Journal of Obstetrics, Gynecology and', 20082363, 0.27, 'Q3', 15, 87, 2683, 224, 435, '15', '2010-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (14888, 'Journal of Emergency Medicine, Trauma and Acu', 19997086, 0.27, 'Q3', 5, 10, 283, 12, 8, '66', '2008-2009, 2012-2017, 2020', 'Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3)'), (14889, 'Journal of Endometriosis and Pelvic Pain Diso', 22840273, 0.27, 'Q3', 13, 30, 738, 101, 109, '7', '2013-2020', 'Obstetrics and Gynecology (Q3)'), (14890, 'Journal of Mechanics', 17277191, 0.27, 'Q3', 23, 84, 2599, 240, 224, '3', '1998-2020', 'Applied Mathematics (Q3); Condensed Matter Physics (Q3); Mechanical Engineering (Q3)'), (14891, 'Journal of Primary Health Care', 11726164, 0.27, 'Q3', 20, 67, 1373, 105, 148, '11', '2009-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q4)'), (14892, 'Journal of World Energy Law and Business', 17549965, 0.27, 'Q2', 9, 18, 841, 54, 80, '2', '2012-2020', 'Law (Q2); Energy (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)'), (14893, 'Materiali in Tehnologije', 15802949, 0.27, 'Q3', 25, 126, 2877, 388, 395, '60', '2007-2020', 'Metals and Alloys (Q3); Polymers and Plastics (Q3)'), (14894, 'Mineral Deposits', 2587106, 0.27, 'Q3', 5, 44, 2985, 93, 121, '1', '1982-1985, 2018-2020', 'Geology (Q3); Materials Chemistry (Q3); Geochemistry and Petrology (Q4)'), (14895, 'Neurohospitalist, The', 19418744, 0.27, 'Q3', 24, 80, 1340, 49, 61, '2', '2011-2016, 2018-2020', 'Neurology (clinical) (Q3)'), (14896, 'New Perspectives on Turkey', 8966346, 0.27, 'Q1', 16, 17, 610, 43, 40, '3', '1993, 1995, 1999-2002, 2008-2020', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2); Economics and Econometrics (Q3)'), (14897, 'Northeastern Naturalist', 10926194, 0.27, 'Q4', 30, 78, 2756, 138, 215, '2', '1999-2020', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (14898, 'Nucleosides, Nucleotides and Nucleic Acids', 15257770, 0.27, 'Q3', 47, 118, 3751, 220, 159, '2', '2000-2020', 'Medicine (miscellaneous) (Q3); Biochemistry (Q4); Genetics (Q4); Molecular Medicine (Q4)'), (14899, 'Povolzhskaya Arkheologiya', 25002856, 0.27, 'Q2', 3, 52, 1189, 40, 242, '10', '2017-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (14900, 'Progres en Urologie', 11667087, 0.27, 'Q3', 32, 425, 4565, 243, 317, '8', '1991-2020', 'Urology (Q3)'), (14901, 'Progress in Chemistry', 1005281, 0.27, 'Q3', 33, 156, 14719, 490, 427, '1', '1997-2020', 'Chemistry (miscellaneous) (Q3)'), (14902, 'Revista de Gastroenterologia de Mexico', 3750906, 0.27, 'Q3', 20, 117, 2588, 167, 209, '30', '1947-1949, 1961, 1974-2020', 'Gastroenterology (Q3)'), (14903, 'Revista de Sociologia e Politica', 1044478, 0.27, 'Q2', 13, 16, 834, 36, 83, '14', '2006-2020', 'Sociology and Political Science (Q2)'), (14904, 'RIAI - Revista Iberoamericana de Automatica e', 16977920, 0.27, 'Q2', 16, 39, 1498, 185, 130, '12', '2007-2020', 'Computer Science (miscellaneous) (Q2); Control and Systems Engineering (Q3)'), (14905, 'Stomatologija', 13928589, 0.27, 'Q3', 22, 11, 0, 52, 61, '69', '2005-2020', 'Medicine (miscellaneous) (Q3)'), (14906, 'Sucht', 9395911, 0.27, 'Q3', 27, 42, 1020, 58, 81, '5', '1991-2020', 'Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q4)'), (14907, 'Water Management', 17517729, 0.27, 'Q3', 31, 28, 985, 96, 85, '3', '1994, 2001-2002, 2004-2020', 'Water Science and Technology (Q3)'), (14908, 'Welding Journal', 432296, 0.27, 'Q3', 71, 17, 282, 159, 250, '2', '1969-1990, 1994-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)'), (14909, 'Acta Geoscientica Sinica', 10063021, 0.269, 'Q3', 18, 83, 3709, 207, 266, '1', '2013-2020', 'Geology (Q3)'), (14910, 'Advances in Nonlinear Variational Inequalitie', 1092910, 0.269, 'Q4', 9, 12, 340, 12, 32, '2', '2008-2020', 'Analysis (Q4)'), (14911, 'Advances in Physical Chemistry', 16877993, 0.269, 'Q4', 17, 0, 0, 16, 8, '2', '2009-2018', 'Physical and Theoretical Chemistry (Q4)'), (14912, 'British Journal of Nursing', 9660461, 0.269, 'Q3', 48, 452, 7884, 675, 894, '3', '1992-2020', 'Nursing (miscellaneous) (Q3)'), (14913, 'Current Bioactive Compounds', 15734072, 0.269, 'Q2', 24, 133, 6765, 245, 156, '52', '2007-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q2)'), (14914, 'Filosofia Theoretica', 22768386, 0.269, 'Q1', 7, 7, 232, 33, 62, '51', '2014-2020', 'Cultural Studies (Q1); Philosophy (Q1); Religious Studies (Q1); Sociology and Political Science (Q2)'), (14915, 'Hangkong Xuebao/Acta Aeronautica et Astronaut', 10006893, 0.269, 'Q3', 32, 389, 12806, 879, 953, '1', '1985-1986, 1991, 1998, 2000-2020', 'Aerospace Engineering (Q3); Applied Mathematics (Q3); Modeling and Simulation (Q3); Space and Planetary Science (Q4)'), (14916, 'Hellenic Journal of Nuclear Medicine', 17905427, 0.269, 'Q3', 21, 66, 1549, 195, 216, '39', '2004-2020', 'Medicine (miscellaneous) (Q3); Radiology, Nuclear Medicine and Imaging (Q4)'), (14917, 'History of the Human Sciences', 1461720, 0.269, 'Q1', 36, 51, 3300, 72, 102, '3', '1988-2020', 'History (Q1); History and Philosophy of Science (Q2)'), (14918, 'Journal of Anesthesia History', 23524529, 0.269, 'Q2', 5, 38, 1097, 28, 77, '2', '2015-2020', 'History and Philosophy of Science (Q2); Anesthesiology and Pain Medicine (Q3)'), (14919, 'Journal of Central Banking Theory and Practic', 18009581, 0.269, 'Q3', 8, 42, 1629, 110, 83, '5', '2014-2020', 'Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)'), (14920, 'Journal of Taibah University Medical Sciences', 16583612, 0.269, 'Q3', 19, 93, 2547, 362, 253, '16', '2009-2020', 'Medicine (miscellaneous) (Q3)'), (14921, 'Journal of Textile and Apparel, Technology an', 15330915, 0.269, 'Q3', 24, 32, 811, 38, 38, '2', '2000-2002, 2004-2007, 2009-2016, 2018-2020', 'Management of Technology and Innovation (Q3)'), (14922, 'Kang T ieh/Iron and Steel (Peking)', 449749, 0.269, 'Q3', 21, 198, 4705, 607, 577, '1', '1981-2020', 'Materials Chemistry (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)'), (14923, 'Lithuanian Journal of Physics', 16488504, 0.269, 'Q3', 16, 23, 859, 71, 80, '69', '2008-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (14924, 'Maltrattamento e Abuso all Infanzia', 15914267, 0.269, 'Q3', 9, 24, 1090, 50, 65, '7', '2000-2005, 2013-2020', 'Health (social science) (Q3); Social Psychology (Q3); Developmental and Educational Psychology (Q4)'), (14925, 'Medicina del Lavoro', 257818, 0.269, 'Q3', 25, 56, 1126, 137, 150, '7', '1947-1963, 1965-2020', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q4)'), (14926, 'Metalurgija', 5435846, 0.269, 'Q3', 29, 155, 1608, 259, 280, '58', '1970-1971, 1982-1983, 1985-1991, 1993-2020', 'Materials Chemistry (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4)'), (14927, 'Proceedings of the Biological Society of Wash', 6324, 0.269, 'Q3', 28, 4, 107, 29, 47, '2', '1983-1984, 1992-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (14928, 'Progress in Superconductivity and Cryogenics ', 22876251, 0.269, 'Q3', 7, 31, 516, 37, 114, '13', '2009-2020', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (14929, 'Rehabilitace a Fyzikalni Lekarstvi', 12112658, 0.269, 'Q3', 10, 31, 719, 24, 86, '31', '1999-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (14930, 'Scientific Programming', 1875919, 0.269, 'Q3', 36, 173, 6496, 322, 187, '32', '1972, 1992-1997, 1999-2020', 'Computer Science Applications (Q3); Software (Q3)'), (14931, 'Tizard Learning Disability Review', 13595474, 0.269, 'Q3', 17, 34, 639, 51, 92, '3', '1996-2020', 'Clinical Psychology (Q3); Developmental and Educational Psychology (Q3); Psychiatric Mental Health (Q3); Psychiatry and Mental Health (Q3); Social Psychology (Q3)'), (14932, 'Archivum Mathematicum', 448753, 0.268, 'Q3', 21, 22, 436, 59, 76, '31', '2004-2020', 'Mathematics (miscellaneous) (Q3)'), (14933, 'Biologia Futura', 26768607, 0.268, 'Q3', 29, 49, 2443, 142, 120, '50', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (14934, 'Coffee Science', 18096875, 0.268, 'Q3', 15, 53, 1905, 117, 172, '14', '2009-2020', 'Food Science (Q3); Plant Science (Q3); Soil Science (Q3)'), (14935, 'Computer Assisted Surgery', 24699322, 0.268, 'Q3', 62, 3, 103, 172, 97, '3', '2016-2020', 'Computer Science Applications (Q3); Family Practice (Q3); Surgery (Q3)'), (14936, 'Contemporary Japan', 18692737, 0.268, 'Q1', 7, 18, 898, 32, 39, '3', '2012-2020', 'Cultural Studies (Q1)'), (14937, 'Critical and Radical Social Work', 20498675, 0.268, 'Q2', 3, 28, 1040, 33, 63, '3', '2018-2020', 'Sociology and Political Science (Q2)'), (14938, 'Drug Discovery Today: Disease Models', 17406757, 0.268, 'Q4', 26, 23, 1686, 41, 49, '3', '2004-2020', 'Drug Discovery (Q4); Molecular Medicine (Q4)'), (14939, 'Eastern European Economics', 15579298, 0.268, 'Q3', 20, 28, 1127, 79, 72, '2', '1977, 1982, 1996-2020', 'Economics and Econometrics (Q3)'), (14940, 'Eastern-European Journal of Enterprise Techno', 17293774, 0.268, 'Q3', 24, 484, 12081, 1927, 1670, '44', '2013-2020', 'Applied Mathematics (Q3); Computer Science Applications (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Industrial'), (14941, 'Feminist Studies', 463663, 0.268, 'Q2', 37, 25, 1092, 63, 86, '2', '1975, 1978-1981, 1983, 1986-1987, 1991, 1994, 1996-2020', 'Arts and Humanities (miscellaneous) (Q2); Gender Studies (Q3)'), (14942, 'Fluctuation and Noise Letters', 17936780, 0.268, 'Q3', 29, 59, 2198, 207, 133, '37', '2004-2008, 2010-2020', 'Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (14943, 'Gaoya Dianqi/High Voltage Apparatus', 10011609, 0.268, 'Q3', 29, 474, 10810, 1145, 1372, '1', '2001-2020', 'Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)'), (14944, 'Health Psychology Research', 24208124, 0.268, 'Q3', 3, 26, 1463, 14, 8, '7', '2019-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3); Social Psychology (Q3)'), (14945, 'Indian Journal of Labour Economics', 195308, 0.268, 'Q3', 13, 85, 2188, 61, 102, '19', '1996, 1998-2013, 2015-2020', 'Economics and Econometrics (Q3)'), (14946, 'Inorganic Materials: Applied Research', 2075115, 0.268, 'Q2', 15, 225, 4209, 433, 570, '10', '2010-2020', 'Engineering (miscellaneous) (Q2); Materials Science (miscellaneous) (Q3)'), (14947, 'International Electronic Journal of Algebra', 13066048, 0.268, 'Q4', 5, 34, 535, 49, 82, '18', '2016-2020', 'Algebra and Number Theory (Q4)'), (14948, 'International Journal of Applied Mathematics', 13111728, 0.268, 'Q3', 6, 62, 1283, 122, 185, '61', '2017-2020', 'Mathematics (miscellaneous) (Q3); Computational Theory and Mathematics (Q4)'), (14949, 'International Journal of Chemical Reactor Eng', 15426580, 0.268, 'Q3', 34, 98, 3876, 433, 322, '5', '2002, 2004-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (14950, 'International Journal of Fuzzy System Applica', 2156177, 0.268, 'Q2', 15, 21, 822, 94, 67, '2', '2011-2013, 2015-2020', 'Computer Science (miscellaneous) (Q2)'), (14951, 'International Journal of Mechanics and Contro', 15908844, 0.268, 'Q3', 11, 36, 985, 85, 66, '7', '2010-2020', 'Computational Mechanics (Q3); Control and Systems Engineering (Q3)'), (14952, 'International Journal of Project Organisation', 17402905, 0.268, 'Q3', 13, 20, 1031, 35, 52, '19', '2020', 'Strategy and Management (Q3)'), (14953, 'International Journal of Quantum Information', 2197499, 0.268, 'Q3', 41, 69, 2709, 321, 208, '37', '2005-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (14954, 'Iranian Journal of Science and Technology - T', 22286179, 0.268, 'Q3', 11, 139, 5202, 363, 195, '19', '2012-2013, 2016-2020', 'Computer Networks and Communications (Q3); Computer Vision and Pattern Recognition (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Signal Processing (Q3'), (14955, 'Journal of Database Management', 15338010, 0.268, 'Q3', 33, 12, 719, 59, 44, '2', '2003-2020', 'Hardware and Architecture (Q3); Information Systems (Q3); Software (Q3)'), (14956, 'Journal of Nondestructive Evaluation, Diagnos', 25723901, 0.268, 'Q3', 7, 15, 268, 63, 56, '2', '2018-2020', 'Civil and Structural Engineering (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3)'), (14957, 'Journal of Pharmacy and Bioallied Sciences', 9764879, 0.268, 'Q3', 36, 198, 4771, 574, 293, '4', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Bioengineering (Q4)'), (14958, 'Journal of Receptor and Signal Transduction R', 10799893, 0.268, 'Q4', 46, 138, 5773, 349, 174, '2', '1980-1981, 1983-2020', 'Biochemistry (Q4); Cell Biology (Q4); Molecular Biology (Q4)'), (14959, 'Journal of Siberian Federal University - Math', 19971397, 0.268, 'Q3', 8, 70, 1201, 118, 243, '10', '2014-2020', 'Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (14960, 'Language Documentation and Conservation', 19345275, 0.268, 'Q2', 5, 7, 342, 22, 30, '2', '2016-2019', 'Library and Information Sciences (Q2); Linguistics and Language (Q2); Computer Science Applications (Q3)'), (14961, 'npj Digital Medicine', 23986352, 0.268, 'Q3', 11, 151, 6544, 2, 3, '3', '2018-2020', 'Computer Science Applications (Q3); Medicine (miscellaneous) (Q3); Health Informatics (Q4); Health Information Management (Q4)'), (14962, 'Nursing management', 15388670, 0.268, 'Q3', 22, 136, 546, 176, 357, '2', '1970-2020', 'Leadership and Management (Q3)'), (14963, 'Pakistan Journal of Biological Sciences', 18125735, 0.268, 'Q3', 43, 197, 7260, 249, 207, '34', '2003, 2006-2020', 'Agronomy and Crop Science (Q3)'), (14964, 'Pharmacognosy Journal', 9753575, 0.268, 'Q3', 21, 242, 7806, 731, 610, '4', '2009-2020', 'Drug Discovery (Q3); Pharmacology (Q3)'), (14965, 'Research and Practice in Intellectual and Dev', 23297026, 0.268, 'Q3', 11, 25, 700, 38, 36, '3', '2014-2020', 'Neurology (clinical) (Q3); Rehabilitation (Q3); Developmental Neuroscience (Q4); Neurology (Q4)'), (14966, 'Revista Espanola de Financiacion y Contabilid', 2102412, 0.268, 'Q3', 17, 33, 2019, 67, 61, '3', '1996-2020', 'Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (14967, 'Russian Chemical Bulletin', 10665285, 0.268, 'Q3', 42, 319, 10343, 1062, 957, '2', '1990, 1993-2020', 'Chemistry (miscellaneous) (Q3)'), (14968, 'Sadhana - Academy Proceedings in Engineering ', 9737677, 0.268, 'Q2', 49, 286, 8836, 962, 618, '4', '1984-2020', 'Multidisciplinary (Q2)'), (14969, 'Saudi journal of kidney diseases and transpla', 13192442, 0.268, 'Q3', 30, 204, 3597, 475, 601, '4', '2006-2020', 'Nephrology (Q3); Transplantation (Q3)'), (14970, 'Semina:Ciencias Agrarias', 1676546, 0.268, 'Q3', 25, 288, 9155, 597, 905, '14', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (14971, 'Tropical Zoology', 19709528, 0.268, 'Q3', 24, 12, 460, 26, 42, '3', '1988-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (14972, 'Zhongguo Guanxing Jishu Xuebao/Journal of Chi', 10056734, 0.268, 'Q3', 17, 126, 1788, 377, 407, '1', '2010-2020', 'Aerospace Engineering (Q3); Control and Systems Engineering (Q3)'), (14973, 'Acta Informatica Medica', 3538109, 0.267, 'Q3', 20, 35, 1131, 238, 159, '90', '2012-2020', 'Medicine (miscellaneous) (Q3)'), (14974, 'Agricultural History', 21482, 0.267, 'Q1', 16, 21, 2239, 22, 62, '2', '1975, 1978-2020', 'History (Q1); Agricultural and Biological Sciences (miscellaneous) (Q3)'), (14975, 'Australian Zoologist', 672238, 0.267, 'Q3', 28, 39, 1514, 76, 116, '11', '1982-1990, 1992-2020', 'Animal Science and Zoology (Q3)'), (14976, 'BDJ Open', 2056807, 0.267, 'Q3', 3, 27, 886, 33, 26, '19', '2018-2020', 'Dentistry (miscellaneous) (Q3)'), (14977, 'Bulletin of the Hospital for Joint Disease (2', 23284633, 0.267, 'Q3', 43, 40, 1394, 83, 136, '2', '2013-2020', 'Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3); Rheumatology (Q4)'), (14978, 'Canadian Journal of Law and Society', 8293201, 0.267, 'Q2', 21, 24, 1455, 44, 69, '3', '1986-2020', 'Law (Q2); Sociology and Political Science (Q2)'), (14979, 'Chinese Journal of Electronics', 10224653, 0.267, 'Q3', 25, 145, 3999, 679, 544, '1', '1996-2020', 'Applied Mathematics (Q3); Electrical and Electronic Engineering (Q3)'), (14980, 'Competition and Regulation in Network Industr', 17835917, 0.267, 'Q3', 9, 20, 801, 51, 42, '3', '2013-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Management Science and Operations Research (Q3)'), (14981, 'Cybernetics and Physics', 22237038, 0.267, 'Q3', 8, 24, 636, 77, 106, '10', '2016-2020', 'Artificial Intelligence (Q3); Computer Vision and Pattern Recognition (Q3); Control and Optimization (Q3); Fluid Flow and Transfer Processes (Q3); Physics and Astronomy (miscellaneous) (Q3); Signal Pr'), (14982, 'Engineering in Agriculture, Environment and F', 18818366, 0.267, 'Q3', 18, 3, 72, 241, 133, '6', '2008-2020', 'Chemical Engineering (miscellaneous) (Q3); Food Science (Q3); Industrial and Manufacturing Engineering (Q3)'), (14983, 'Evolutionary Studies in Imaginative Culture', 24729884, 0.267, 'Q1', 6, 25, 918, 38, 45, '2', '2017-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Communication (Q3)'), (14984, 'Geografski Vestnik', 3503895, 0.267, 'Q3', 10, 15, 699, 31, 40, '60', '1992-2019', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (14985, 'Heroin Addiction and Related Clinical Problem', 15921638, 0.267, 'Q3', 15, 34, 1243, 76, 114, '7', '2005-2020', 'Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (14986, 'Indiana Law Journal', 196665, 0.267, 'Q2', 26, 29, 4542, 63, 107, '2', '1973, 1977-1979, 1981-1983, 1989, 1992-2020', 'Law (Q2)'), (14987, 'International Journal of GEOMATE', 21862990, 0.267, 'Q3', 17, 313, 6360, 787, 987, '6', '2011-2020', 'Building and Construction (Q3); Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q3); Soil Science (Q3)'), (14988, 'International Journal of Manufacturing Resear', 17500591, 0.267, 'Q3', 19, 15, 551, 47, 70, '3', '2006-2014, 2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Modeling and Simulation (Q3)'), (14989, 'International Journal on Electrical Engineeri', 20856830, 0.267, 'Q2', 18, 63, 1886, 156, 161, '21', '2009-2020', 'Engineering (miscellaneous) (Q2)'), (14990, 'Issues in Legal Scholarship', 15398323, 0.267, 'Q2', 5, 0, 0, 4, 9, '5', '2004-2006, 2008-2009, 2011, 2013-2019', 'Law (Q2)'), (14991, 'Italian Economic Journal', 2199322, 0.267, 'Q2', 8, 25, 1162, 47, 61, '19', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2)'), (14992, 'Journal of Achievements in Materials and Manu', 2300892, 0.267, 'Q3', 6, 40, 1341, 100, 129, '17', '2016-2020', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3)'), (14993, 'Journal of American History', 218723, 0.267, 'Q1', 43, 26, 1645, 34, 69, '2', '1964-1992, 1994, 1996-2012, 2014-2020', 'History (Q1); History and Philosophy of Science (Q2)'), (14994, 'Journal of Cytology', 9709371, 0.267, 'Q3', 19, 47, 851, 166, 152, '4', '1985-1988, 2007-2020', 'Pathology and Forensic Medicine (Q3); Histology (Q4)'), (14995, 'Journal of Education Finance', 989495, 0.267, 'Q3', 15, 57, 301, 25, 83, '2', '2005-2020', 'Education (Q3); Finance (Q3); Public Administration (Q3)'), (14996, 'Journal of Interdisciplinary History', 221953, 0.267, 'Q1', 30, 15, 38, 51, 48, '2', '1970-1971, 1974-1990, 1996, 1998-2020', 'History (Q1); History and Philosophy of Science (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (14997, 'Nephrologie et Therapeutique', 17697255, 0.267, 'Q3', 25, 60, 1896, 160, 224, '8', '2005-2020', 'Nephrology (Q3)'), (14998, 'Poultry Science Journal', 23456604, 0.267, 'Q3', 4, 24, 1029, 53, 62, '15', '2017-2020', 'Animal Science and Zoology (Q3); Food Animals (Q3)'), (14999, 'Revista Espanola de Medicina Legal', 3774732, 0.267, 'Q3', 11, 40, 1032, 45, 88, '12', '1985, 1999, 2008-2020', 'Pathology and Forensic Medicine (Q3)'), (15000, 'Rural policy brief', 21520267, 0.267, 'Q3', 4, 0, 0, 8, 13, '2', '2003, 2007, 2010-2019', 'Medicine (miscellaneous) (Q3)'), (15001, 'Social History', 3071022, 0.267, 'Q1', 26, 20, 0, 35, 52, '3', '1976-2020', 'History (Q1)'), (15002, 'Social Science History', 1455532, 0.267, 'Q1', 28, 32, 2060, 53, 101, '3', '1977-1978, 1980-1984, 1986, 1988-1989, 1996-2020', 'History (Q1); Social Sciences (miscellaneous) (Q2)'), (15003, 'Southeastern Naturalist', 15287092, 0.267, 'Q4', 28, 70, 1982, 103, 180, '2', '2002-2020', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (15004, 'Teaching Public Administration', 1447394, 0.267, 'Q3', 9, 34, 1584, 67, 57, '2', '1979-1980, 1982-2007, 2009, 2012-2020', 'Education (Q3); Public Administration (Q3)'), (15005, 'Tenside, Surfactants, Detergents', 9323414, 0.267, 'Q3', 25, 60, 1850, 189, 185, '5', '1986-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q4)'), (15006, 'Tierarztliche Praxis Ausgabe K: Kleintiere - ', 14341239, 0.267, 'Q3', 19, 72, 1469, 90, 143, '5', '1997-2020', 'Small Animals (Q3)'), (15007, 'Transactions on Data Privacy', 18885063, 0.267, 'Q3', 25, 8, 578, 68, 30, '12', '2009-2020', 'Software (Q3); Statistics and Probability (Q4)'), (15008, 'World Leisure Journal', 23334509, 0.267, 'Q1', 23, 44, 1249, 92, 73, '3', '2000-2020', 'Cultural Studies (Q1); Social Psychology (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (15009, 'ACM Transactions on Design Automation of Elec', 10844309, 0.266, 'Q3', 51, 50, 1999, 299, 205, '2', '1996-2020', 'Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3)'), (15010, 'Canadian Journal of Community Mental Health', 7133936, 0.266, 'Q3', 23, 0, 0, 38, 54, '9', '1987-2012, 2015, 2017-2018', 'Psychiatry and Mental Health (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15011, 'Circuit World', 3056120, 0.266, 'Q3', 22, 72, 2205, 87, 85, '3', '1974-2020', 'Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3)'), (15012, 'Current Topics in Behavioral Neurosciences', 18663389, 0.266, 'Q4', 55, 45, 2273, 813, 10, '5', '2009-2020', 'Behavioral Neuroscience (Q4)'), (15013, 'Dialogo Andino', 7192681, 0.266, 'Q1', 5, 26, 932, 48, 96, '45', '2016-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2)'), (15014, 'Informatika i ee Primeneniya', 19922264, 0.266, 'Q3', 8, 34, 439, 89, 183, '10', '2016-2020', 'Applied Mathematics (Q3); Computer Networks and Communications (Q3); Information Systems (Q3); Software (Q3); Computational Theory and Mathematics (Q4)'), (15015, 'Ingegneria Ferroviaria', 200956, 0.266, 'Q3', 12, 35, 512, 55, 65, '7', '1972-1994, 1996-2020', 'Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3)'), (15016, 'International Journal of Healthcare Informati', 15553396, 0.266, 'Q3', 13, 20, 810, 60, 49, '2', '2006-2020', 'Information Systems (Q3); Information Systems and Management (Q3); Medicine (miscellaneous) (Q3)'), (15017, 'International Journal of High Risk Behaviors ', 2251872, 0.266, 'Q3', 13, 30, 890, 107, 123, '16', '2015-2020', 'Clinical Psychology (Q3); Medicine (miscellaneous) (Q3); Psychiatry and Mental Health (Q3)'), (15018, 'International maritime health', 16419251, 0.266, 'Q3', 17, 54, 1238, 97, 119, '17', '1999-2020', 'Medicine (miscellaneous) (Q3); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)'), (15019, 'Journal of Aesthetics and Culture', 20004214, 0.266, 'Q1', 8, 11, 408, 35, 53, '3', '2012-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Philosophy (Q2)'), (15020, 'Journal of Applied Mechanics and Technical Ph', 218944, 0.266, 'Q3', 24, 142, 2710, 371, 427, '10', '1965-1995, 1997-1999, 2003, 2005-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3); Condensed Matter Physics (Q4)'), (15021, 'Journal of Black Studies', 219347, 0.266, 'Q1', 41, 43, 2091, 106, 114, '2', '1970-2020', 'Cultural Studies (Q1); Anthropology (Q2); Sociology and Political Science (Q2)'), (15022, 'Journal of Financial Regulation', 20534841, 0.266, 'Q3', 8, 12, 481, 40, 34, '2', '2015-2019', 'Finance (Q3)'), (15023, 'Journal of Photopolymer Science and Technolog', 9149244, 0.266, 'Q3', 38, 99, 2427, 305, 357, '6', '1988-2020', 'Materials Chemistry (Q3); Polymers and Plastics (Q3); Organic Chemistry (Q4)'), (15024, 'Journal of Rangeland Science', 2423642, 0.266, 'Q3', 6, 37, 1281, 67, 107, '15', '2016-2020', 'Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)'), (15025, 'Journal of System and Management Sciences', 18166075, 0.266, 'Q3', 4, 39, 1148, 49, 31, '1', '2019-2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Information Systems (Q3); Information Systems and Management (Q3); Management of Technology and Innovation (Q3)'), (15026, 'Medicina Clinica', 257753, 0.266, 'Q3', 65, 538, 6187, 724, 764, '12', '1948, 1960-1965, 1973-2020', 'Medicine (miscellaneous) (Q3)'), (15027, 'NeoReviews', 15269906, 0.266, 'Q3', 17, 121, 3255, 118, 185, '2', '2008-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (15028, 'Proceedings of the Estonian Academy of Scienc', 17366046, 0.266, 'Q2', 20, 34, 1044, 148, 143, '71', '2006, 2008-2020', 'Engineering (miscellaneous) (Q2)'), (15029, 'Revista Portuguesa de Cardiologia', 8702551, 0.266, 'Q3', 26, 140, 2936, 341, 350, '26', '1970, 1982-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (15030, 'Rhetoric Review', 7350198, 0.266, 'Q1', 16, 29, 1183, 32, 69, '2', '1982-2003, 2005-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2)'), (15031, 'Russian Journal of Physical Chemistry B', 19907931, 0.266, 'Q4', 20, 186, 4937, 477, 522, '10', '2008-2020', 'Physical and Theoretical Chemistry (Q4)'), (15032, 'Saudi Journal for Dental Research', 23520043, 0.266, 'Q3', 11, 0, 0, 29, 17, '16', '2014-2017', 'Dentistry (miscellaneous) (Q3)'), (15033, 'South African Journal of Philosophy', 2580136, 0.266, 'Q2', 16, 35, 1166, 41, 115, '3', '1998-2020', 'Philosophy (Q2)'), (15034, 'South East European Journal of Economics and ', 1840118, 0.266, 'Q2', 13, 20, 1056, 55, 52, '90', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q2); Business, Management and Accounting (miscellaneous) (Q3)'), (15035, 'Academia Revista Latinoamericana de Administr', 10128255, 0.265, 'Q3', 13, 31, 2322, 142, 104, '3', '2008-2020', 'Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Education (Q3); Management Science and Operations Research (Q3); Organizational Behavior and Human'), (15036, 'ACM Transactions on Applied Perception', 15443965, 0.265, 'Q3', 49, 17, 801, 168, 62, '2', '2004-2020', 'Computer Science (miscellaneous) (Q3); Experimental and Cognitive Psychology (Q4); Theoretical Computer Science (Q4)'), (15037, 'Advances in Dual Diagnosis', 17570972, 0.265, 'Q3', 10, 11, 483, 37, 46, '3', '2008-2020', 'Psychiatric Mental Health (Q3); Psychiatry and Mental Health (Q3)'), (15038, 'Arbitration International', 9570411, 0.265, 'Q2', 17, 28, 2090, 20, 86, '3', '1996-2019', 'Law (Q2); Business and International Management (Q3)'), (15039, 'Ceramica', 16784553, 0.265, 'Q3', 21, 65, 2648, 266, 245, '14', '2006-2020', 'Ceramics and Composites (Q3)'), (15040, 'Engineering Letters', 1816093, 0.265, 'Q2', 17, 163, 4561, 359, 232, '35', '2009-2020', 'Engineering (miscellaneous) (Q2)'), (15041, 'European Journal of Environmental Sciences', 23361964, 0.265, 'Q3', 5, 15, 793, 43, 45, '31', '2016-2019', 'Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Pollution (Q3)'), (15042, 'Fetal and Pediatric Pathology', 15513815, 0.265, 'Q3', 36, 170, 4302, 168, 202, '3', '1983-1998, 2000-2020', 'Medicine (miscellaneous) (Q3); Pathology and Forensic Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (15043, 'Foundations of Science', 12331821, 0.265, 'Q2', 25, 120, 6237, 211, 147, '16', '1995, 1997-2002, 2005-2020', 'History and Philosophy of Science (Q2); Multidisciplinary (Q2)'), (15044, 'Heterocyclic Communications', 7930283, 0.265, 'Q4', 23, 22, 797, 168, 149, '5', '1994-2020', 'Organic Chemistry (Q4)'), (15045, 'High Temperature Materials and Processes', 21910324, 0.265, 'Q3', 21, 77, 2028, 274, 330, '5', '1984, 1986-2020', 'Materials Science (miscellaneous) (Q3); Mechanics of Materials (Q3); Condensed Matter Physics (Q4); Physical and Theoretical Chemistry (Q4)'), (15046, 'International Journal of Child Care and Educa', 19765681, 0.265, 'Q2', 14, 11, 419, 42, 40, '37', '2007-2020', 'Sociology and Political Science (Q2); Community and Home Care (Q3); Education (Q3); Pediatrics (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (15047, 'International Journal of Rotating Machinery', 15423034, 0.265, 'Q3', 33, 11, 248, 102, 84, '2', '1994-2002, 2004, 2006-2020', 'Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)'), (15048, 'Jezikoslovni Zapiski', 15811255, 0.265, 'Q2', 4, 23, 638, 21, 98, '60', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15049, 'Jianzhu Cailiao Xuebao/Journal of Building Ma', 10079629, 0.265, 'Q3', 25, 209, 4060, 351, 472, '1', '2001-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3); Mechanics of Materials (Q3)'), (15050, 'Jordan Journal of Civil Engineering', 19930461, 0.265, 'Q3', 16, 46, 1481, 108, 147, '62', '2007-2020', 'Civil and Structural Engineering (Q3)'), (15051, 'Journal of Aerospace Technology and Managemen', 21759146, 0.265, 'Q3', 19, 57, 1450, 171, 160, '14', '2009-2020', 'Aerospace Engineering (Q3)'), (15052, 'Journal of Contemporary East Asia Studies', 24761028, 0.265, 'Q1', 4, 13, 376, 38, 33, '3', '2017-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q2); Development (Q3)'), (15053, 'Journal of Contemporary Physics', 19349378, 0.265, 'Q3', 13, 54, 1319, 94, 158, '10', '2007, 2009-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (15054, 'journal of hand surgery Asian-Pacific volume,', 24248363, 0.265, 'Q3', 27, 83, 0, 162, 297, '37', '2016-2020', 'Medicine (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q3); Surgery (Q3)'), (15055, 'Journal of North African Studies', 17439345, 0.265, 'Q2', 24, 103, 4692, 85, 115, '3', '1996-2020', 'Political Science and International Relations (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (15056, 'Journal of Prevention and Intervention in the', 10852352, 0.265, 'Q3', 30, 28, 1042, 110, 106, '2', '1996-2020', 'Medicine (miscellaneous) (Q3); Social Psychology (Q3)'), (15057, 'Journal of the American College of Clinical W', 22135103, 0.265, 'Q2', 9, 0, 0, 9, 8, '2', '2011-2017', 'Medical and Surgical Nursing (Q2); Dermatology (Q3); Surgery (Q3)'), (15058, 'Kobe Journal of Medical Sciences', 18830498, 0.265, 'Q3', 28, 19, 455, 55, 72, '6', '1961, 1963-2020', 'Medicine (miscellaneous) (Q3)'), (15059, 'Life Span and Disability', 20355963, 0.265, 'Q3', 13, 17, 705, 57, 36, '7', '2005, 2009-2020', 'Health (social science) (Q3); Developmental and Educational Psychology (Q4); Life-span and Life-course Studies (Q4)'), (15060, 'Monthly Labor Review', 19374658, 0.265, 'Q3', 54, 54, 603, 42, 60, '2', '1945-1949, 1978-1988, 1990-2018', 'Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (15061, 'Observatorio', 16465954, 0.265, 'Q3', 11, 24, 1103, 95, 128, '26', '2011-2019', 'Communication (Q3); Computer Networks and Communications (Q3)'), (15062, 'Poljoprivreda', 13307142, 0.265, 'Q3', 11, 18, 617, 50, 64, '58', '2007-2020', 'Agronomy and Crop Science (Q3)'), (15063, 'Research in Post-Compulsory Education', 13596748, 0.265, 'Q3', 21, 24, 1066, 75, 83, '3', '1996-2020', 'Education (Q3)'), (15064, 'Revista Ambiente e Agua', 1980993, 0.265, 'Q3', 13, 112, 3764, 260, 253, '14', '2013-2020', 'Environmental Science (miscellaneous) (Q3); Aquatic Science (Q4); Public Health, Environmental and Occupational Health (Q4)'), (15065, 'Revista de Historia (Chile)', 7169108, 0.265, 'Q1', 2, 14, 570, 7, 15, '45', '2019-2020', 'History (Q1)'), (15066, 'Revista de Historia Industrial', 11327200, 0.265, 'Q2', 9, 19, 1052, 20, 61, '12', '1996, 2011-2020', 'History and Philosophy of Science (Q2)'), (15067, 'Roads and Bridges - Drogi i Mosty', 16431618, 0.265, 'Q3', 11, 20, 549, 49, 60, '17', '2005-2020', 'Civil and Structural Engineering (Q3)'), (15068, 'Saude e Sociedade', 1041290, 0.265, 'Q3', 20, 99, 3201, 146, 276, '14', '2008-2020', 'Health (social science) (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15069, 'South Asia: Journal of South Asia Studies', 14790270, 0.265, 'Q1', 17, 71, 0, 132, 194, '3', '1971-1976, 1978-2020', 'Cultural Studies (Q1); History (Q1); Sociology and Political Science (Q2); Development (Q3)'), (15070, 'ACM Transactions on Spatial Algorithms and Sy', 23740361, 0.264, 'Q3', 13, 27, 1320, 90, 49, '2', '2015-2020', 'Computer Science Applications (Q3); Discrete Mathematics and Combinatorics (Q3); Information Systems (Q3); Modeling and Simulation (Q3); Signal Processing (Q3); Geometry and Topology (Q4)'), (15071, 'Acta Agronomica Sinica(China)', 4963490, 0.264, 'Q3', 15, 156, 5712, 381, 462, '1', '2012, 2014-2020', 'Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3)'), (15072, 'Acta Phytotaxonomica et Geobotanica', 13467565, 0.264, 'Q3', 7, 21, 535, 41, 65, '6', '2014-2020', 'Ecology (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15073, 'Acta Theologica', 10158758, 0.264, 'Q1', 8, 49, 1718, 24, 98, '27', '2002-2020', 'Religious Studies (Q1)'), (15074, 'Business Perspectives and Research', 22785337, 0.264, 'Q3', 9, 33, 1903, 63, 38, '3', '2012-2020', 'Business and International Management (Q3); Strategy and Management (Q3)'), (15075, 'Catalysis in Industry', 20700555, 0.264, 'Q4', 15, 43, 1781, 144, 133, '10', '2010-2020', 'Catalysis (Q4)'), (15076, 'Current Opinion in Endocrine and Metabolic Re', 24519650, 0.264, 'Q3', 5, 83, 4484, 112, 113, '3', '2018-2021', 'Endocrinology, Diabetes and Metabolism (Q3)'), (15077, 'Current Pharmacogenomics and Personalized Med', 18756913, 0.264, 'Q3', 19, 24, 969, 33, 33, '52', '2008-2018, 2020', 'Pharmacology (Q3); Genetics (Q4); Genetics (clinical) (Q4); Molecular Biology (Q4); Molecular Medicine (Q4)'), (15078, 'Discrete Dynamics in Nature and Society', 10260226, 0.264, 'Q3', 39, 366, 12412, 812, 618, '2', '2002, 2004-2020', 'Modeling and Simulation (Q3)'), (15079, 'Filozofia', 46385, 0.264, 'Q1', 10, 59, 1665, 45, 177, '53', '2002-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (15080, 'Hepatitis Monthly', 17353408, 0.264, 'Q4', 37, 58, 1871, 143, 173, '16', '2007-2020', 'Hepatology (Q4); Infectious Diseases (Q4)'), (15081, 'Hongwai yu Jiguang Gongcheng/Infrared and Las', 10072276, 0.264, 'Q3', 28, 471, 11670, 1215, 1645, '1', '2004-2020', 'Aerospace Engineering (Q3); Atomic and Molecular Physics, and Optics (Q3); Electrical and Electronic Engineering (Q3); Space and Planetary Science (Q4)'), (15082, 'Iberoamerican Journal of Development Studies', 22542035, 0.264, 'Q1', 5, 21, 1153, 32, 48, '12', '2012-2020', 'History (Q1); Law (Q2); Sociology and Political Science (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (15083, 'Integration, the VLSI Journal', 1679260, 0.264, 'Q3', 40, 96, 3058, 623, 378, '16', '1983-2021', 'Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Software (Q3)'), (15084, 'International Journal for Quality Research', 18007473, 0.264, 'Q3', 18, 65, 2609, 249, 178, '55', '2012-2020', 'Industrial and Manufacturing Engineering (Q3); Management Science and Operations Research (Q3); Safety, Risk, Reliability and Quality (Q3)'), (15085, 'International Journal of Knowledge Management', 17438276, 0.264, 'Q3', 14, 21, 1402, 69, 70, '3', '2006-2007, 2009-2012', 'Computer Science Applications (Q3); Information Systems and Management (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)'), (15086, 'International Sports Law Journal', 22135154, 0.264, 'Q2', 7, 20, 851, 33, 53, '2', '2013-2020', 'Law (Q2)'), (15087, 'Journal of Japanese Studies', 956848, 0.264, 'Q1', 19, 9, 0, 11, 24, '2', '1998-2002, 2005-2020', 'Cultural Studies (Q1); Anthropology (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Social Psychology (Q3)'), (15088, 'Journal of Nepal Health Research Council', 19996217, 0.264, 'Q3', 13, 147, 0, 177, 217, '88', '2010-2020', 'Medicine (miscellaneous) (Q3)'), (15089, 'Journal of Planar Chromatography - Modern TLC', 17890993, 0.264, 'Q4', 31, 75, 1992, 160, 204, '50', '1995-2020', 'Analytical Chemistry (Q4); Biochemistry (Q4); Clinical Biochemistry (Q4)'), (15090, 'Journal of the Chinese Institute of Engineers', 2533839, 0.264, 'Q3', 30, 80, 2148, 310, 230, '3', '1978-2020', 'Engineering (miscellaneous) (Q3)'), (15091, 'Journal of Threatened Taxa', 9747907, 0.264, 'Q3', 8, 263, 8669, 352, 532, '4', '2016-2020', 'Animal Science and Zoology (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15092, 'Library Hi Tech News', 7419058, 0.264, 'Q2', 18, 44, 767, 102, 133, '3', '1999-2020', 'Library and Information Sciences (Q2); Information Systems (Q3)'), (15093, 'Modelling and Simulation in Engineering', 16875605, 0.264, 'Q2', 20, 24, 621, 191, 105, '2', '2007-2020', 'Engineering (miscellaneous) (Q2); Computer Science Applications (Q3); Modeling and Simulation (Q3)'), (15094, 'Movimento', 19828918, 0.264, 'Q3', 14, 85, 2984, 151, 303, '14', '2010-2020', 'Education (Q3)'), (15095, 'Neuroendocrinology Letters', 172780, 0.264, 'Q3', 66, 33, 1705, 182, 224, '20', '1979-1982, 1984-1995, 1997-2019', 'Endocrinology, Diabetes and Metabolism (Q3); Medicine (miscellaneous) (Q3); Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3); Endocrine and Autonomic Systems (Q4); Endocrinology (Q4); Neur'), (15096, 'Nurse Leader', 15414612, 0.264, 'Q3', 13, 151, 1667, 106, 248, '2', '2003-2020', 'Leadership and Management (Q3)'), (15097, 'Physical Therapy Reviews', 10833196, 0.264, 'Q3', 34, 52, 2867, 76, 103, '3', '1996-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (15098, 'Research in Nondestructive Evaluation', 9349847, 0.264, 'Q3', 31, 21, 690, 67, 49, '3', '1989-2002, 2004-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Condensed Matter Physics (Q4)'), (15099, 'Revista gaucha de enfermagem / EENFUFRGS', 1026933, 0.264, 'Q3', 15, 107, 0, 235, 297, '14', '1984-1986, 1989-1992, 1994-1997, 1999-2020', 'Medicine (miscellaneous) (Q3)'), (15100, 'Tijdschrift voor Entomologie', 407496, 0.264, 'Q4', 17, 3, 61, 8, 17, '16', '1998-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (15101, 'Tropical Grasslands - Forrajes Tropicales', 23463775, 0.264, 'Q3', 12, 16, 405, 73, 109, '47', '2013-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15102, 'Carnets de Geologie', 16340744, 0.263, 'Q3', 15, 19, 1496, 37, 48, '8', '2007-2020', 'Geology (Q3); Paleontology (Q3); Stratigraphy (Q3)'), (15103, 'Citizenship, Social and Economics Education', 20471734, 0.263, 'Q2', 9, 14, 805, 40, 38, '3', '2012-2020', 'Sociology and Political Science (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Education (Q3)'), (15104, 'Clinical Medicine and Research', 15394182, 0.263, 'Q3', 53, 25, 609, 73, 50, '2', '2003-2020', 'Community and Home Care (Q3); Medicine (miscellaneous) (Q3)'), (15105, 'Comparative Exercise Physiology', 17552540, 0.263, 'Q3', 15, 24, 854, 67, 100, '16', '2008-2010, 2012-2020', 'Endocrinology, Diabetes and Metabolism (Q3); Orthopedics and Sports Medicine (Q3); Veterinary (miscellaneous) (Q3); Biochemistry (Q4); Biophysics (Q4); Physiology (Q4); Physiology (medical) (Q4)'), (15106, 'Doklady Biochemistry and Biophysics', 16083091, 0.263, 'Q3', 19, 84, 1097, 268, 308, '10', '2001-2020', 'Chemistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Biochemistry (Q4); Biophysics (Q4)'), (15107, 'Dongli Gongcheng Xuebao/Journal of Chinese So', 16747607, 0.263, 'Q3', 16, 146, 2400, 268, 459, '1', '2010-2020', 'Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)'), (15108, 'Evidence Based Care Journal', 20082487, 0.263, 'Q3', 6, 16, 422, 69, 96, '15', '2016-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15109, 'Gender a Vyzkum / Gender and Research', 25706586, 0.263, 'Q3', 3, 8, 352, 25, 50, '31', '2017-2019', 'Gender Studies (Q3)'), (15110, 'Geograficky Casopis', 167193, 0.263, 'Q3', 13, 16, 975, 50, 59, '53', '1976, 1979-1995, 2007-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Geology (Q3)'), (15111, 'Glottometrics', 16178351, 0.263, 'Q2', 4, 13, 227, 38, 76, '5', '2017-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Applied Mathematics (Q3)'), (15112, 'Gospodarka Surowcami Mineralnymi / Mineral Re', 8600953, 0.263, 'Q3', 18, 40, 1435, 104, 120, '17', '2008-2020', 'Economic Geology (Q3)'), (15113, 'History of Education Review', 8198691, 0.263, 'Q1', 6, 28, 1484, 20, 50, '3', '1980, 1982, 2012-2020', 'History (Q1); Education (Q3)'), (15114, 'International Journal of Optics', 16879392, 0.263, 'Q3', 17, 48, 1979, 92, 79, '2', '2010-2020', 'Atomic and Molecular Physics, and Optics (Q3); Electronic, Optical and Magnetic Materials (Q3)'), (15115, 'International Review of Electrical Engineerin', 25332244, 0.263, 'Q3', 29, 49, 1943, 256, 154, '7', '2008-2020', 'Electrical and Electronic Engineering (Q3)'), (15116, 'Journal of Law and Society', 14676478, 0.263, 'Q2', 48, 43, 0, 80, 98, '3', '1983, 1985, 1988, 1991-1993, 1996-2020', 'Law (Q2); Sociology and Political Science (Q3)'), (15117, 'Journal of Roman Archaeology', 10634304, 0.263, 'Q1', 21, 30, 1549, 32, 77, '2', '2005-2019', 'Classics (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (15118, 'Kafkas Universitesi Veteriner Fakultesi Dergi', 13006045, 0.263, 'Q3', 20, 126, 3787, 325, 401, '18', '2008-2020', 'Veterinary (miscellaneous) (Q3)'), (15119, 'Music Theory Spectrum', 1956167, 0.263, 'Q1', 21, 17, 846, 24, 42, '2', '1981-1994, 1996-2020', 'Music (Q1)'), (15120, 'Nonprofit Policy Forum', 21543348, 0.263, 'Q2', 3, 28, 1205, 18, 15, '5', '2019-2020', 'Sociology and Political Science (Q2); Economics and Econometrics (Q3); Public Administration (Q3)'), (15121, 'Otolaryngologia Polska', 23008423, 0.263, 'Q3', 15, 41, 871, 102, 124, '17', '1954-2020', 'Otorhinolaryngology (Q3)'), (15122, 'Progress in Development Studies', 1477027, 0.263, 'Q3', 39, 16, 889, 64, 49, '3', '2001-2020', 'Development (Q3)'), (15123, 'Range Management and Agroforestry', 9712070, 0.263, 'Q3', 8, 50, 1611, 71, 113, '4', '2009-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3); Forestry (Q3)'), (15124, 'Science and Technology of Materials', 26036363, 0.263, 'Q3', 5, 0, 0, 58, 26, '12', '2018', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (15125, 'Serials Review', 987913, 0.263, 'Q3', 23, 46, 755, 57, 130, '3', '1973, 1975-2020', 'Library and Information Sciences (Q3)'), (15126, 'Sociedade e Estado', 19805462, 0.263, 'Q2', 14, 39, 1564, 48, 98, '14', '2007-2020', 'Sociology and Political Science (Q2); Geography, Planning and Development (Q3)'), (15127, 'Transactions on Architecture and Code Optimiz', 15443973, 0.263, 'Q3', 41, 41, 2105, 418, 179, '2', '2004-2020', 'Hardware and Architecture (Q3); Information Systems (Q3); Software (Q3)'), (15128, 'Transport and Telecommunication', 14076179, 0.263, 'Q3', 14, 16, 449, 118, 90, '77', '2008-2020', 'Computer Science Applications (Q3); Engineering (miscellaneous) (Q3)'), (15129, 'Ukrainian Journal of Physical Optics', 16091833, 0.263, 'Q3', 16, 21, 494, 58, 69, '44', '2000-2020', 'Atomic and Molecular Physics, and Optics (Q3)'), (15130, 'Advances in Protein Chemistry and Structural ', 18761631, 0.262, 'Q4', 72, 39, 6002, 402, 16, '2', '2008-2020', 'Biochemistry (Q4); Structural Biology (Q4)'), (15131, 'Anthropological Review', 18986773, 0.262, 'Q2', 12, 29, 1419, 73, 92, '5', '2007-2020', 'Anthropology (Q2); Health (social science) (Q3)'), (15132, 'Asian Journal of Transfusion Science', 9736247, 0.262, 'Q4', 22, 47, 666, 78, 107, '4', '2010-2012, 2015-2019', 'Hematology (Q4); Immunology and Allergy (Q4)'), (15133, 'Australian Geomechanics Journal', 8189110, 0.262, 'Q3', 15, 29, 734, 49, 96, '11', '2000-2019', 'Geotechnical Engineering and Engineering Geology (Q3)'), (15134, 'Boletim do Instituto de Pesca', 16782305, 0.262, 'Q3', 15, 27, 1237, 148, 193, '14', '2009-2020', 'Animal Science and Zoology (Q3); Aquatic Science (Q4)'), (15135, 'Canadian Journal of Hospital Pharmacy', 19202903, 0.262, 'Q2', 22, 0, 0, 158, 154, '9', '1973-2019', 'Pharmacy (Q2); Pharmacology (medical) (Q3)'), (15136, 'Colloid Journal', 1061933, 0.262, 'Q3', 33, 89, 2805, 271, 291, '10', '1989, 1991-1992, 1995-2020', 'Surfaces and Interfaces (Q3); Colloid and Surface Chemistry (Q4); Physical and Theoretical Chemistry (Q4)'), (15137, 'Family Practice Management', 10695648, 0.262, 'Q3', 27, 66, 295, 64, 92, '2', '1997-2020', 'Family Practice (Q3); Health Policy (Q3); Medicine (miscellaneous) (Q3)'), (15138, 'High Energy Chemistry', 181439, 0.262, 'Q4', 22, 75, 1733, 195, 254, '10', '1996-2020', 'Physical and Theoretical Chemistry (Q4)'), (15139, 'Home Health Care Management and Practice', 10848223, 0.262, 'Q3', 19, 33, 999, 72, 90, '2', '1988-2011, 2017-2020', 'Community and Home Care (Q3); Leadership and Management (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15140, 'International Journal of Women s Health and R', 23304456, 0.262, 'Q3', 10, 68, 2057, 181, 220, '2', '2013-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (15141, 'Iranian Journal of Earth Sciences', 2228785, 0.262, 'Q3', 5, 18, 712, 42, 58, '15', '2013-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (15142, 'Journal of Cave and Karst Studies', 10906924, 0.262, 'Q3', 40, 17, 1166, 51, 59, '2', '1996-2020', 'Earth-Surface Processes (Q3)'), (15143, 'Journal of Human Values', 9730737, 0.262, 'Q1', 13, 26, 1088, 50, 51, '4', '1995-2020', 'Cultural Studies (Q1); Philosophy (Q2); Organizational Behavior and Human Resource Management (Q3); Social Psychology (Q3); Sociology and Political Science (Q3)'), (15144, 'Journal of Industry, Competition and Trade', 15661679, 0.262, 'Q3', 23, 34, 1476, 61, 80, '16', '2004-2020', 'Industrial Relations (Q3)'), (15145, 'Journal of Interactive Learning Research', 1093023, 0.262, 'Q3', 25, 10, 494, 35, 55, '2', '2005-2019', 'Computer Science Applications (Q3); Education (Q3); Human-Computer Interaction (Q3)'), (15146, 'Journal of Membrane Science and Research', 24765406, 0.262, 'Q3', 13, 42, 2370, 162, 95, '15', '2015-2020', 'Materials Science (miscellaneous) (Q3); Surfaces, Coatings and Films (Q3); Filtration and Separation (Q4)'), (15147, 'Journal of the British Society for Phenomenol', 23320486, 0.262, 'Q2', 9, 32, 833, 31, 73, '3', '1970-2020', 'Philosophy (Q2)'), (15148, 'Journal of World History', 10456007, 0.262, 'Q1', 35, 23, 126, 20, 43, '2', '1990-2020', 'History (Q1)'), (15149, 'Kuwait Journal of Science', 23074108, 0.262, 'Q2', 13, 44, 1082, 145, 140, '80', '2013-2020', 'Multidisciplinary (Q2)'), (15150, 'Mathematical Problems in Engineering', 1024123, 0.262, 'Q3', 62, 2176, 73201, 5100, 3519, '2', '1992, 1995-2020', 'Engineering (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3)'), (15151, 'Mitochondrial DNA Part B: Resources', 23802359, 0.262, 'Q4', 13, 1234, 12482, 1551, 2741, '3', '2016-2020', 'Genetics (Q4); Molecular Biology (Q4)'), (15152, 'Mitteilungen Klosterneuburg', 75922, 0.262, 'Q3', 5, 10, 309, 21, 64, '28', '1989, 2011-2020', 'Horticulture (Q3)'), (15153, 'Monografias de Traduccion e Interpretacion', 18894178, 0.262, 'Q2', 6, 0, 0, 15, 44, '12', '2014-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (15154, 'Novi Sad Journal of Mathematics', 14505444, 0.262, 'Q3', 10, 23, 425, 45, 71, '55', '2011-2020', 'Mathematics (miscellaneous) (Q3)'), (15155, 'Proceedings of Institution of Civil Engineers', 17514312, 0.262, 'Q3', 11, 24, 838, 80, 85, '3', '2008-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Civil and Structural Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)'), (15156, 'Publicaciones de la Facultad de Educacion y H', 25309269, 0.262, 'Q3', 4, 45, 1547, 59, 100, '12', '2012-2019', 'Education (Q3); Developmental and Educational Psychology (Q4)'), (15157, 'Research Journal of Textile and Apparel', 15606074, 0.262, 'Q3', 16, 32, 1221, 87, 70, '3', '1997-2020', 'Business and International Management (Q3); Industrial and Manufacturing Engineering (Q3); Management of Technology and Innovation (Q3); Materials Science (miscellaneous) (Q3)'), (15158, 'Sociologicky Casopis', 380288, 0.262, 'Q3', 21, 21, 1166, 55, 103, '31', '1992, 1997-1998, 2002-2020', 'Sociology and Political Science (Q3)'), (15159, 'Teaching Philosophy', 21536619, 0.262, 'Q2', 15, 19, 530, 18, 49, '2', '1977, 1996-2020', 'Philosophy (Q2); Education (Q3)'), (15160, 'Xiyou jinshu', 2587076, 0.262, 'Q3', 16, 171, 4350, 518, 548, '1', '1987-1988, 2008-2020', 'Metals and Alloys (Q3)'), (15161, 'Anti-Corrosion Methods and Materials', 35599, 0.261, 'Q3', 31, 64, 2117, 278, 247, '3', '1954-2020', 'Chemical Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (15162, 'Britannia (Society for the Promotion of Roman', 68113, 0.261, 'Q1', 9, 30, 1254, 22, 87, '3', '1970-1971, 1973-1995, 1999-2002, 2004-2005, 2011-2020', 'Classics (Q1); History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (15163, 'Cancer Reports', 25738348, 0.261, 'Q4', 5, 90, 4014, 63, 78, '3', '2018-2020', 'Cancer Research (Q4); Oncology (Q4)'), (15164, 'Cultural-Historical Psychology', 22248935, 0.261, 'Q3', 3, 48, 1519, 53, 102, '10', '2018-2020', 'Psychology (miscellaneous) (Q3); Social Psychology (Q3)'), (15165, 'Curriculo sem Fronteiras', 16451384, 0.261, 'Q3', 8, 56, 1979, 34, 166, '26', '2009-2020', 'Education (Q3)'), (15166, 'Idojaras', 3246329, 0.261, 'Q4', 16, 29, 1163, 58, 73, '50', '1980, 2008-2020', 'Atmospheric Science (Q4)'), (15167, 'Indian Journal of Nuclear Medicine', 9740244, 0.261, 'Q4', 13, 109, 1387, 164, 285, '4', '2010-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (15168, 'Information Resources Management Journal', 15337979, 0.261, 'Q3', 41, 19, 1080, 65, 48, '2', '1988-2020', 'Business and International Management (Q3); Library and Information Sciences (Q3); Strategy and Management (Q3)'), (15169, 'International Journal of Foundations of Compu', 1290541, 0.261, 'Q3', 42, 71, 1502, 158, 194, '37', '2000-2020', 'Computer Science (miscellaneous) (Q3)'), (15170, 'International Journal of Knowledge-Based Deve', 20404476, 0.261, 'Q3', 20, 16, 872, 77, 61, '19', '2010-2014, 2019', 'Information Systems and Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (15171, 'International Review of Public Administration', 23317795, 0.261, 'Q3', 16, 20, 1005, 42, 50, '3', '1999-2020', 'Public Administration (Q3)'), (15172, 'Jezik in Slovstvo', 216933, 0.261, 'Q1', 3, 36, 1010, 13, 95, '60', '2011-2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15173, 'Journal of Discrete Mathematical Sciences and', 9720529, 0.261, 'Q3', 14, 195, 3447, 339, 471, '3', '1998-2020', 'Applied Mathematics (Q3); Algebra and Number Theory (Q4); Analysis (Q4)'), (15174, 'Journal of Museum Education', 10598650, 0.261, 'Q1', 7, 45, 754, 54, 123, '3', '2014-2020', 'Museology (Q1); Education (Q3)'), (15175, 'Journal of Perioperative Nursing', 22091092, 0.261, 'Q2', 3, 27, 537, 22, 37, '11', '2018-2020', 'Advanced and Specialized Nursing (Q2); Medical and Surgical Nursing (Q2)'), (15176, 'Journal of Revenue and Pricing Management', 14766930, 0.261, 'Q3', 23, 49, 1653, 109, 121, '3', '2004, 2009-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)'), (15177, 'Mezhdunarodnye Protsessy', 17282756, 0.261, 'Q2', 4, 17, 608, 22, 130, '10', '2016-2019', 'Political Science and International Relations (Q2)'), (15178, 'Monist, The', 269662, 0.261, 'Q2', 26, 26, 790, 51, 92, '3', '1973, 1976-1977, 1981, 1984, 1987, 1993, 2002-2008, 2014-2020', 'Philosophy (Q2)'), (15179, 'Nigerian postgraduate medical journal, The', 11171936, 0.261, 'Q3', 19, 62, 0, 113, 134, '51', '2000-2014, 2016-2020', 'Medicine (miscellaneous) (Q3)'), (15180, 'Open Construction and Building Technology Jou', 18748368, 0.261, 'Q3', 22, 32, 1502, 109, 86, '52', '2010-2020', 'Building and Construction (Q3)'), (15181, 'Ornitologia Neotropical', 10754377, 0.261, 'Q3', 23, 10, 316, 68, 135, '2', '2005-2019', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15182, 'Physical Sciences Reviews', 2365659, 0.261, 'Q3', 9, 100, 8317, 301, 277, '5', '2016-2020', 'Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (15183, 'Polityka Energetyczna', 14296675, 0.261, 'Q3', 5, 30, 880, 80, 121, '17', '2016-2020', 'Energy (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3)'), (15184, 'Polymer Science - Series C', 1555614, 0.261, 'Q3', 22, 20, 1759, 62, 64, '10', '2000-2020', 'Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (15185, 'Revista Electronica Educare', 14094258, 0.261, 'Q3', 6, 116, 3134, 122, 186, '95', '2017-2020', 'Education (Q3)'), (15186, 'Roczniki Panstwowego Zakladu Higieny', 357715, 0.261, 'Q3', 19, 35, 0, 135, 140, '17', '1961, 1965-2019', 'Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15187, 'Russian Journal of Herpetology', 10262296, 0.261, 'Q3', 8, 46, 1499, 79, 127, '10', '2014-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15188, 'Surface Review and Letters', 218625, 0.261, 'Q3', 44, 188, 6724, 489, 442, '37', '1996-2020', 'Materials Chemistry (Q3); Surfaces and Interfaces (Q3); Surfaces, Coatings and Films (Q3); Condensed Matter Physics (Q4)'), (15189, 'Terapia Psicologica', 7166184, 0.261, 'Q3', 20, 24, 1221, 61, 68, '45', '2008-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (15190, 'Translation and Interpreting', 18369324, 0.261, 'Q1', 11, 17, 826, 66, 103, '11', '2011-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15191, 'Tropical Natural History', 15139700, 0.261, 'Q3', 3, 27, 723, 24, 26, '40', '2017-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Ecology (Q3); Paleontology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15192, 'Veterinary Record', 424900, 0.261, 'Q3', 99, 1475, 7485, 1267, 1939, '3', '1945-1951, 1961, 1965-2020', 'Medicine (miscellaneous) (Q3); Veterinary (miscellaneous) (Q3)'), (15193, 'American Annals of the Deaf', 15430375, 0.26, 'Q3', 41, 27, 1120, 70, 78, '2', '1946-1951, 1961, 1965-2020', 'Education (Q3); Speech and Hearing (Q3); Developmental and Educational Psychology (Q4)'), (15194, 'Analytical and Bioanalytical Electrochemistry', 20084226, 0.26, 'Q4', 19, 68, 2998, 469, 320, '15', '2009-2020', 'Analytical Chemistry (Q4); Electrochemistry (Q4)'), (15195, 'Archives of Phytopathology and Plant Protecti', 3235408, 0.26, 'Q3', 23, 121, 5537, 212, 248, '3', '1974-2020', 'Agronomy and Crop Science (Q3)'), (15196, 'Biomedica', 1204157, 0.26, 'Q3', 28, 145, 3995, 301, 378, '47', '2001-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (15197, 'Case Reports in Endocrinology', 20906501, 0.26, 'Q3', 6, 71, 1367, 50, 61, '2', '2013-2020', 'Endocrinology, Diabetes and Metabolism (Q3)'), (15198, 'Case Studies in Fire Safety', 2214398, 0.26, 'Q3', 8, 0, 0, 9, 4, '16', '2014-2017', 'Building and Construction (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3)'), (15199, 'Cryo-Letters', 1432044, 0.26, 'Q3', 45, 1, 37, 123, 140, '3', '1993-2019', 'Agronomy and Crop Science (Q3); Anatomy (Q3); Medicine (miscellaneous) (Q3)'), (15200, 'Doklady Biological Sciences', 124966, 0.26, 'Q3', 16, 55, 680, 120, 184, '10', '1972-1974, 1979-1990, 2000-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous)'), (15201, 'Ekonomicky Casopis', 133035, 0.26, 'Q3', 17, 48, 1954, 111, 150, '53', '1978-2020', 'Economics and Econometrics (Q3)'), (15202, 'Forest Products Journal', 157473, 0.26, 'Q3', 51, 48, 1494, 130, 150, '2', '1968-1989, 1993, 1995-2019', 'Forestry (Q3); Materials Science (miscellaneous) (Q3); Plant Science (Q3)'), (15203, 'Health literacy research and practice', 24748307, 0.26, 'Q3', 4, 26, 0, 19, 12, '2', '2018-2020', 'Medicine (miscellaneous) (Q3)'), (15204, 'International Area Studies Review', 20491123, 0.26, 'Q2', 12, 20, 1312, 50, 63, '2', '1997-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (15205, 'International Journal of Arabic-English Studi', 16800982, 0.26, 'Q1', 3, 25, 881, 31, 49, '70', '2016-2020', 'Cultural Studies (Q1); Literature and Literary Theory (Q1); Language and Linguistics (Q2)'), (15206, 'International Journal of Business Information', 17460972, 0.26, 'Q3', 26, 79, 4430, 256, 225, '3', '2005-2014, 2018', 'Information Systems and Management (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)'), (15207, 'International Journal of Law and Management', 1754243, 0.26, 'Q2', 15, 57, 3257, 268, 192, '3', '2008-2020', 'Law (Q2); Organizational Behavior and Human Resource Management (Q3)'), (15208, 'International Journal of Microwave and Wirele', 17590795, 0.26, 'Q3', 22, 192, 5292, 573, 436, '3', '2009-2020', 'Electrical and Electronic Engineering (Q3)'), (15209, 'International Journal on Energy Conversion', 22815295, 0.26, 'Q3', 8, 24, 1016, 136, 75, '7', '2017-2020', 'Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Nuclear Energy and Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (15210, 'Journal of African Diaspora Archaeology and H', 21619441, 0.26, 'Q1', 4, 11, 700, 22, 38, '3', '2015-2020', 'History (Q1); Anthropology (Q2); Archeology (Q2)'), (15211, 'Journal of Construction in Developing Countri', 18236499, 0.26, 'Q3', 22, 18, 895, 68, 57, '23', '2006-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (15212, 'Journal of Engineering, Design and Technology', 17260531, 0.26, 'Q3', 22, 126, 6737, 335, 210, '3', '2005-2020', 'Engineering (miscellaneous) (Q3)'), (15213, 'Journal of Financial Services Marketing', 14791846, 0.26, 'Q3', 19, 9, 516, 50, 48, '3', '2009-2020', 'Finance (Q3); Marketing (Q3)'), (15214, 'Mathematical Modelling of Engineering Problem', 23690739, 0.26, 'Q3', 11, 80, 2207, 229, 138, '9', '2018-2020', 'Applied Mathematics (Q3); Engineering (miscellaneous) (Q3); Modeling and Simulation (Q3)'), (15215, 'Pattern Recognition and Image Analysis', 15556212, 0.26, 'Q3', 25, 82, 2129, 398, 243, '10', '2006-2020', 'Computer Graphics and Computer-Aided Design (Q3); Computer Vision and Pattern Recognition (Q3)'), (15216, 'Philosophy of Management', 20529597, 0.26, 'Q2', 9, 34, 2536, 55, 56, '19', '2003-2005, 2007-2020', 'History and Philosophy of Science (Q2); Business and International Management (Q3); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy a'), (15217, 'Politologicky Casopis', 12113247, 0.26, 'Q2', 7, 20, 967, 29, 37, '31', '2015-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (15218, 'Powder Metallurgy Progress', 13394533, 0.26, 'Q3', 3, 7, 147, 15, 16, '5', '2018-2020', 'Mechanics of Materials (Q3); Metals and Alloys (Q3)'), (15219, 'Acta Neophilologica', 567784, 0.259, 'Q2', 2, 16, 368, 16, 35, '60', '2017-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15220, 'Acta Palaeobotanica', 16594, 0.259, 'Q3', 24, 0, 0, 46, 55, '5', '1978-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3)'), (15221, 'ASHRAE Journal', 12491, 0.259, 'Q3', 37, 100, 520, 93, 281, '2', '1969-2014, 2018, 2020', 'Building and Construction (Q3); Mechanical Engineering (Q3)'), (15222, 'Baltic Journal of Road and Bridge Engineering', 1822427, 0.259, 'Q3', 21, 52, 1493, 111, 100, '69', '2008-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (15223, 'Bulgarian Astronomical Journal', 13145592, 0.259, 'Q4', 6, 30, 543, 33, 47, '61', '2014-2020', 'Astronomy and Astrophysics (Q4)'), (15224, 'Bulletin of the Lebedev Physics Institute', 10683356, 0.259, 'Q3', 13, 82, 927, 171, 274, '10', '2009-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (15225, 'Case Reports in Women s Health', 22149112, 0.259, 'Q3', 6, 105, 1397, 89, 104, '16', '2014-2020', 'Obstetrics and Gynecology (Q3)'), (15226, 'Dynamics of Continuous, Discrete and Impulsiv', 12013390, 0.259, 'Q3', 26, 16, 302, 45, 74, '9', '1998, 2000, 2003-2020', 'Applied Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3); Analysis (Q4)'), (15227, 'Eurasip Journal on Audio, Speech, and Music P', 16874722, 0.259, 'Q3', 29, 20, 1016, 155, 69, '2', '2007-2020', 'Acoustics and Ultrasonics (Q3); Electrical and Electronic Engineering (Q3)'), (15228, 'IAENG International Journal of Applied Mathem', 19929978, 0.259, 'Q3', 18, 110, 3097, 288, 217, '35', '2009-2020', 'Applied Mathematics (Q3)'), (15229, 'Ikala, revista de lenguaje y cultura', 1233432, 0.259, 'Q2', 5, 42, 2125, 45, 91, '47', '2013-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (15230, 'International Journal of Management and Decis', 14624621, 0.259, 'Q3', 24, 19, 1515, 82, 57, '3', '2000, 2002-2020', 'Decision Sciences (miscellaneous) (Q3)'), (15231, 'International Journal of Pharmaceutical and H', 17506123, 0.259, 'Q3', 22, 37, 2280, 118, 88, '3', '2007-2020', 'Health Policy (Q3); Marketing (Q3)'), (15232, 'Interpersona', 19816472, 0.259, 'Q1', 5, 15, 602, 38, 52, '5', '2016-2020', 'Cultural Studies (Q1); Anthropology (Q2); Gender Studies (Q3); Social Psychology (Q3); Developmental and Educational Psychology (Q4)'), (15233, 'Journal for Global Business Advancement', 17469678, 0.259, 'Q3', 11, 41, 2840, 148, 102, '3', '2007, 2009-2014, 2019-2020', 'Business and International Management (Q3)'), (15234, 'Journal of Automation and Information Science', 10642315, 0.259, 'Q3', 15, 52, 1067, 144, 233, '2', '1995-2020', 'Control and Systems Engineering (Q3); Information Systems (Q3); Software (Q3)'), (15235, 'Journal of Balkan and Near Eastern Studies', 19448953, 0.259, 'Q1', 19, 47, 269, 107, 120, '3', '2008-2020', 'History (Q1); Political Science and International Relations (Q2)'), (15236, 'Journal of Credit Risk', 17559723, 0.259, 'Q3', 10, 13, 475, 30, 38, '2', '2011-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (15237, 'Journal of Intercultural Communication', 14041634, 0.259, 'Q1', 7, 21, 900, 29, 57, '20', '2011-2020', 'Cultural Studies (Q1); Communication (Q3)'), (15238, 'Journal of International Dental and Medical R', 1309100, 0.259, 'Q3', 13, 214, 5980, 604, 678, '18', '2009-2020', 'Dentistry (miscellaneous) (Q3)'), (15239, 'Journal of Thermal Science and Technology', 18805566, 0.259, 'Q3', 18, 36, 785, 81, 97, '6', '2009-2020', 'Engineering (miscellaneous) (Q3); Instrumentation (Q3); Materials Science (miscellaneous) (Q3); Atomic and Molecular Physics, and Optics (Q4)'), (15240, 'Minerva Biotecnologica', 11204826, 0.259, 'Q3', 17, 26, 1282, 109, 61, '7', '1996-2020', 'Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Bioengineering (Q4)'), (15241, 'Minerva Cardioangiologica', 264725, 0.259, 'Q3', 25, 90, 2907, 150, 201, '7', '1953-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (15242, 'Neftyanoe khozyaystvo - Oil Industry', 282448, 0.259, 'Q3', 16, 191, 1586, 359, 919, '10', '1975-1988, 2001-2020', 'Energy Engineering and Power Technology (Q3); Fuel Technology (Q3)'), (15243, 'Neurology Psychiatry and Brain Research', 9419500, 0.259, 'Q3', 17, 63, 2454, 84, 106, '5', '1992-2009, 2011-2020', 'Neurology (clinical) (Q3); Psychiatry and Mental Health (Q3); Neuroscience (miscellaneous) (Q4)'), (15244, 'Open Bioinformatics Journal', 18750362, 0.259, 'Q3', 8, 9, 489, 29, 23, '16', '2010-2015, 2017-2020', 'Computer Science (miscellaneous) (Q3); Biomedical Engineering (Q4); Health Informatics (Q4)'), (15245, 'Periodica Polytechnica, Mechanical Engineerin', 3246051, 0.259, 'Q3', 16, 41, 1058, 213, 120, '50', '1969-1992, 1994-2020', 'Mechanical Engineering (Q3)'), (15246, 'Politics and Policy', 15555623, 0.259, 'Q2', 23, 41, 2714, 112, 114, '2', '2001-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (15247, 'Polity', 17441684, 0.259, 'Q3', 26, 33, 444, 67, 93, '2', '1995-2020', 'Sociology and Political Science (Q3)'), (15248, 'Potravinarstvo', 13370960, 0.259, 'Q3', 12, 135, 5177, 368, 358, '53', '2013-2020', 'Food Science (Q3)'), (15249, 'Revista de Biologia Marina y Oceanografia', 7173326, 0.259, 'Q3', 25, 30, 1184, 85, 116, '45', '1996-2020', 'Oceanography (Q3); Aquatic Science (Q4)'), (15250, 'Revista Iberoamericana de Psicologia del Ejer', 18868576, 0.259, 'Q4', 16, 24, 954, 72, 91, '12', '2012-2020', 'Applied Psychology (Q4); Social Psychology (Q4); Sports Science (Q4)'), (15251, 'Social Evolution and History', 16814363, 0.259, 'Q1', 10, 16, 740, 42, 65, '10', '2011-2019', 'History (Q1); Anthropology (Q2); Sociology and Political Science (Q3)'), (15252, 'Trends in Evolutionary Biology', 2036265, 0.259, 'Q4', 8, 0, 0, 2, 1, '7', '2009-2013, 2017', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (15253, 'Webology', 1735188, 0.259, 'Q3', 18, 92, 2248, 88, 55, '15', '2006-2020', 'Human-Computer Interaction (Q3); Information Systems and Management (Q3); Library and Information Sciences (Q3); Software (Q3)'), (15254, 'Yearbook of European Law', 20450044, 0.259, 'Q2', 3, 0, 0, 14, 19, '3', '2018', 'Law (Q2); Political Science and International Relations (Q2)'), (15255, 'Accounting and the Public Interest', 15309320, 0.258, 'Q3', 10, 7, 496, 16, 17, '2', '2009-2019', 'Accounting (Q3)'), (15256, 'Angelaki - Journal of the Theoretical Humanit', 969725, 0.258, 'Q1', 19, 73, 1567, 78, 187, '3', '1996-2020', 'Cultural Studies (Q1); Literature and Literary Theory (Q1); Philosophy (Q2)'), (15257, 'Archives of Metallurgy and Materials', 17333490, 0.258, 'Q3', 29, 197, 4531, 692, 875, '17', '2004-2020', 'Metals and Alloys (Q3)'), (15258, 'Australian Journal of Mechanical Engineering', 14484846, 0.258, 'Q3', 11, 187, 5722, 203, 153, '3', '2008-2009, 2011-2020', 'Mechanical Engineering (Q3)'), (15259, 'Economic Computation and Economic Cybernetics', 424267, 0.258, 'Q3', 18, 76, 1787, 257, 220, '43', '1968-1969, 1971-1973, 1975-1989, 2008-2020', 'Applied Mathematics (Q3); Computer Science Applications (Q3); Economics and Econometrics (Q3)'), (15260, 'Footwear Science', 19424280, 0.258, 'Q3', 23, 21, 749, 117, 267, '3', '2009-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Biomedical Engineering (Q4); Biophysics (Q4); Human Factors and Ergonomics (Q4)'), (15261, 'Historia Ambiental Latinoamericana y Caribena', 22372717, 0.258, 'Q1', 2, 38, 1393, 14, 44, '14', '2017-2020', 'History (Q1); Environmental Science (miscellaneous) (Q3)'), (15262, 'History and Philosophy of Logic', 14645149, 0.258, 'Q1', 16, 26, 995, 28, 58, '3', '1980-2020', 'History (Q1); History and Philosophy of Science (Q2)'), (15263, 'History of Psychology', 19390610, 0.258, 'Q1', 23, 30, 1350, 39, 86, '2', '1998-2020', 'History (Q1); Psychology (miscellaneous) (Q3)'), (15264, 'Integrated Ferroelectrics', 16078489, 0.258, 'Q3', 38, 181, 4066, 495, 554, '3', '1992-2020', 'Ceramics and Composites (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Materials Chemistry (Q3); Condensed Mat'), (15265, 'International Journal of Global Warming', 17582091, 0.258, 'Q3', 19, 72, 2714, 214, 227, '19', '2009, 2011-2014', 'Management, Monitoring, Policy and Law (Q3); Atmospheric Science (Q4); Global and Planetary Change (Q4)'), (15266, 'International Journal of Services and Operati', 17442370, 0.258, 'Q3', 27, 78, 4204, 205, 227, '3', '2006-2014, 2017, 2020', 'Industrial and Manufacturing Engineering (Q3); Management of Technology and Innovation (Q3); Management Science and Operations Research (Q3)'), (15267, 'International Journal of Vehicle Structures a', 9753060, 0.258, 'Q3', 16, 134, 2039, 222, 246, '4', '2009-2020', 'Aerospace Engineering (Q3); Mechanical Engineering (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (15268, 'Italian Journal of Agrometeorology', 20385625, 0.258, 'Q3', 12, 18, 889, 32, 39, '7', '2008-2020', 'Agronomy and Crop Science (Q3); Forestry (Q3); Atmospheric Science (Q4)'), (15269, 'Journal of Mental Health Training, Education ', 20428707, 0.258, 'Q3', 14, 34, 1362, 92, 117, '3', '2006-2020', 'Education (Q3); Health Policy (Q3); Health (social science) (Q3); Organizational Behavior and Human Resource Management (Q3); Psychiatric Mental Health (Q3); Psychiatry and Mental Health (Q3)'), (15270, 'Journal of University Teaching and Learning P', 14499789, 0.258, 'Q3', 8, 56, 2093, 100, 94, '11', '2016-2020', 'Education (Q3)'), (15271, 'Leisure/ Loisir', 14927713, 0.258, 'Q3', 24, 26, 1560, 57, 73, '2', '1999-2003, 2005-2020', 'Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (15272, 'Migraciones Internacionales', 16658906, 0.258, 'Q3', 8, 22, 1075, 30, 53, '30', '2009-2020', 'Demography (Q3); Geography, Planning and Development (Q3)'), (15273, 'Occupational Therapy in Health Care', 7380577, 0.258, 'Q3', 24, 31, 1232, 105, 84, '2', '1984-1993, 1995-2020', 'Medicine (miscellaneous) (Q3); Occupational Therapy (Q3)'), (15274, 'Organization Management Journal', 15416518, 0.258, 'Q3', 16, 14, 841, 61, 57, '3', '2005, 2009-2020', 'Business and International Management (Q3); Education (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (15275, 'Physical Chemistry Research', 23452625, 0.258, 'Q3', 11, 34, 1272, 187, 171, '15', '2013-2020', 'Fluid Flow and Transfer Processes (Q3); Physical and Theoretical Chemistry (Q4); Statistical and Nonlinear Physics (Q4)'), (15276, 'Polish Journal of Entomology', 22999884, 0.258, 'Q4', 4, 1, 41, 29, 67, '5', '2017-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (15277, 'Revista Brasileira de Historia', 1020188, 0.258, 'Q1', 7, 42, 1603, 22, 84, '14', '1999, 2001, 2007-2020', 'Cultural Studies (Q1); History (Q1); Geography, Planning and Development (Q3); Sociology and Political Science (Q3)'), (15278, 'Sultan Qaboos University Medical Journal', 20750528, 0.258, 'Q3', 27, 84, 2244, 254, 214, '79', '2000-2003, 2006-2020', 'Medicine (miscellaneous) (Q3)'), (15279, 'Telkomnika', 16936930, 0.258, 'Q3', 23, 391, 11337, 1331, 970, '21', '2011-2020', 'Electrical and Electronic Engineering (Q3)'), (15280, 'Vestnik Sankt-Peterburgskogo Universiteta, Is', 25419390, 0.258, 'Q1', 4, 80, 2287, 56, 224, '10', '2017-2020', 'History (Q1)'), (15281, 'Zeitschrift fur Arbeits- und Organisationspsy', 21906246, 0.258, 'Q3', 16, 23, 1201, 30, 44, '5', '2002-2020', 'Organizational Behavior and Human Resource Management (Q3); Applied Psychology (Q4)'), (15282, 'AIMS Neuroscience', 23737972, 0.257, 'Q4', 12, 25, 1581, 47, 49, '2', '2014-2020', 'Neuroscience (miscellaneous) (Q4)'), (15283, 'Annales Polonici Mathematici', 17306272, 0.257, 'Q3', 18, 35, 733, 53, 95, '17', '2008-2020', 'Mathematics (miscellaneous) (Q3)'), (15284, 'Biodiversitas', 1412033, 0.257, 'Q3', 14, 712, 31027, 1109, 1029, '21', '2014-2020', 'Animal Science and Zoology (Q3); Plant Science (Q3); Molecular Biology (Q4)'), (15285, 'Body, Movement and Dance in Psychotherapy', 17432979, 0.257, 'Q3', 15, 27, 942, 25, 46, '3', '2006-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (15286, 'Chemistry and Chemical Technology', 19964196, 0.257, 'Q3', 14, 53, 1342, 187, 241, '44', '2012-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (15287, 'Coke and Chemistry', 1068364, 0.257, 'Q3', 13, 84, 1457, 141, 255, '10', '2009-2020', 'Fuel Technology (Q3); Environmental Chemistry (Q4); Process Chemistry and Technology (Q4)'), (15288, 'Cuadernos de Relaciones Laborales', 11318635, 0.257, 'Q3', 5, 9, 585, 43, 53, '12', '2016-2020', 'Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3)'), (15289, 'Focaal', 9201297, 0.257, 'Q2', 18, 27, 1101, 99, 77, '16', '2011-2020', 'Anthropology (Q2)'), (15290, 'Functiones et Approximatio, Commentarii Mathe', 2086573, 0.257, 'Q3', 15, 10, 115, 45, 99, '17', '2006-2019', 'Mathematics (miscellaneous) (Q3)'), (15291, 'Geo-Eco-Trop', 13706071, 0.257, 'Q3', 11, 34, 1044, 32, 79, '24', '1978-1988, 1990-1994, 1996-2019', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (15292, 'Guangdian Gongcheng/Opto-Electronic Engineeri', 1003501, 0.257, 'Q3', 21, 118, 3483, 345, 388, '1', '1993-2020', 'Electrical and Electronic Engineering (Q3)'), (15293, 'Indian Journal of Agronomy', 9744460, 0.257, 'Q3', 21, 42, 631, 63, 286, '4', '1993-2019', 'Agronomy and Crop Science (Q3)'), (15294, 'International Journal of Computational Method', 15502295, 0.257, 'Q3', 24, 33, 1315, 95, 109, '3', '2005-2020', 'Computational Mathematics (Q3); Computational Mechanics (Q3)'), (15295, 'International Journal of Optomechatronics', 15599620, 0.257, 'Q3', 20, 8, 428, 22, 15, '2', '2007-2020', 'Electrical and Electronic Engineering (Q3); Instrumentation (Q3); Mechanical Engineering (Q3)'), (15296, 'International Journal of Organ Transplantatio', 20086490, 0.257, 'Q3', 14, 26, 659, 60, 75, '15', '2012-2020', 'Transplantation (Q3)'), (15297, 'Journal of American Folklore', 218715, 0.257, 'Q1', 20, 20, 1183, 47, 65, '2', '1987, 2002-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)'), (15298, 'Journal of Architecture and Urbanism', 20297947, 0.257, 'Q2', 7, 20, 655, 47, 66, '69', '2012-2020', 'Architecture (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)'), (15299, 'Journal of Electronic Resources Librarianship', 1941126, 0.257, 'Q3', 12, 40, 501, 35, 92, '2', '2008-2020', 'Information Systems (Q3); Library and Information Sciences (Q3)'), (15300, 'Journal of Osseointegration', 20364121, 0.257, 'Q4', 6, 29, 1082, 36, 63, '7', '2009-2020', 'Oral Surgery (Q4)'), (15301, 'Journal of Robotics and Mechatronics', 18838049, 0.257, 'Q3', 19, 131, 2957, 268, 287, '6', '2010-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)'), (15302, 'Journal of the Korean Society of Food Science', 12263311, 0.257, 'Q3', 24, 152, 5066, 290, 527, '13', '2007-2020', 'Food Science (Q3); Nutrition and Dietetics (Q3)'), (15303, 'Macromolecular Symposia', 10221360, 0.257, 'Q3', 76, 207, 4637, 363, 375, '5', '1994-2020', 'Materials Chemistry (Q3); Polymers and Plastics (Q3); Condensed Matter Physics (Q4); Organic Chemistry (Q4)'), (15304, 'Materials Science-Poland', 20831331, 0.257, 'Q3', 32, 64, 2053, 312, 295, '5', '2002-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Condensed Matter Physics (Q4)'), (15305, 'Medical Science Educator', 21568650, 0.257, 'Q3', 13, 272, 5888, 249, 372, '2', '2011-2020', 'Education (Q3); Medicine (miscellaneous) (Q3)'), (15306, 'Meta', 260452, 0.257, 'Q2', 27, 13, 553, 40, 101, '9', '1974, 2002-2011, 2014-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Philosophy (Q2)'), (15307, 'Natures Sciences Societes', 12401307, 0.257, 'Q2', 17, 23, 564, 37, 113, '8', '1995-2020', 'Multidisciplinary (Q2); Social Sciences (miscellaneous) (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Earth and Pl'), (15308, 'Neuroforum', 9470875, 0.257, 'Q3', 5, 33, 1551, 50, 83, '5', '2005-2020', 'Neurology (clinical) (Q3); Neurology (Q4)'), (15309, 'Pirineos', 19884281, 0.257, 'Q3', 13, 12, 611, 17, 25, '12', '1973, 1981-2002, 2004-2019', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15310, 'Pollack Periodica', 17881994, 0.257, 'Q3', 11, 66, 1224, 152, 176, '50', '2007-2020', 'Civil and Structural Engineering (Q3); Computer Science Applications (Q3); Materials Science (miscellaneous) (Q3); Modeling and Simulation (Q3); Software (Q3)'), (15311, 'Poznan Studies in Contemporary Linguistics', 17320747, 0.257, 'Q2', 11, 24, 1457, 34, 66, '17', '2007-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15312, 'Psychoanalysis, Self and Context', 24720038, 0.257, 'Q3', 11, 59, 917, 38, 92, '3', '2017-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (15313, 'Psychologie Francaise', 332984, 0.257, 'Q3', 15, 27, 1425, 54, 74, '8', '2004-2020', 'Psychology (miscellaneous) (Q3)'), (15314, 'Review of Economics', 9485139, 0.257, 'Q3', 3, 9, 466, 25, 32, '5', '2016-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (15315, 'Scripta Nova', 11389788, 0.257, 'Q3', 10, 21, 1127, 51, 74, '12', '2006-2020', 'Geography, Planning and Development (Q3)'), (15316, 'Swiss dental journal', 22966501, 0.257, 'Q3', 23, 35, 0, 81, 102, '19', '2014-2020', 'Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (15317, 'Transactions of the Japan Society for Aeronau', 5493811, 0.257, 'Q3', 20, 33, 684, 69, 113, '6', '1969-2020', 'Aerospace Engineering (Q3); Space and Planetary Science (Q4)'), (15318, 'Turkish Thoracic Journal', 21492530, 0.257, 'Q3', 7, 77, 1925, 125, 111, '18', '2010, 2015-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (15319, 'Academic Forensic Pathology', 19253621, 0.256, 'Q3', 11, 19, 580, 93, 135, '2', '2011-2019', 'Pathology and Forensic Medicine (Q3)'), (15320, 'Acta Biotheoretica', 15342, 0.256, 'Q2', 35, 38, 1357, 59, 44, '16', '1935-1943, 1946-1949, 1951-1953, 1955-1965, 1967-1988, 1990-2020', 'Philosophy (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Applied Mathematics (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Environmental Science (miscella'), (15321, 'Asian Journal of Law and Society', 20529023, 0.256, 'Q2', 8, 22, 1056, 46, 55, '3', '2014-2020', 'Law (Q2); Sociology and Political Science (Q3)'), (15322, 'Astropolitics', 14777622, 0.256, 'Q2', 8, 9, 0, 16, 41, '2', '2007-2020', 'Political Science and International Relations (Q2); Astronomy and Astrophysics (Q4)'), (15323, 'BMJ Leader', 2398631, 0.256, 'Q3', 4, 85, 1682, 55, 62, '3', '2017-2020', 'Health Policy (Q3); Leadership and Management (Q3); Strategy and Management (Q3)'), (15324, 'Canadian Journal of Dietetic Practice and Res', 14863847, 0.256, 'Q3', 33, 37, 0, 85, 101, '9', '1996-2020', 'Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)'), (15325, 'Comparative Literature', 104124, 0.256, 'Q1', 12, 27, 1075, 33, 75, '2', '2002-2020', 'Literature and Literary Theory (Q1)'), (15326, 'Culture Unbound', 20001525, 0.256, 'Q1', 7, 13, 568, 30, 80, '20', '2015-2019', 'Cultural Studies (Q1); Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2)'), (15327, 'Current Swedish Archaeology', 11027355, 0.256, 'Q2', 8, 0, 0, 17, 32, '20', '2011-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (15328, 'Digest Journal of Nanomaterials and Biostruct', 18423582, 0.256, 'Q3', 44, 106, 3096, 353, 355, '43', '2009-2020', 'Materials Science (miscellaneous) (Q3); Atomic and Molecular Physics, and Optics (Q4); Biomedical Engineering (Q4); Condensed Matter Physics (Q4); Nanoscience and Nanotechnology (Q4); Physical and The'), (15329, 'Ear, Nose and Throat Journal', 19425613, 0.256, 'Q3', 46, 662, 9957, 374, 578, '2', '1976-2020', 'Medicine (miscellaneous) (Q3); Otorhinolaryngology (Q3)'), (15330, 'Electronic Journal of Research in Educational', 16962095, 0.256, 'Q3', 26, 28, 1509, 75, 90, '12', '2003-2019', 'Education (Q3); Developmental and Educational Psychology (Q4)'), (15331, 'EPE Journal (European Power Electronics and D', 9398368, 0.256, 'Q3', 25, 18, 425, 53, 46, '3', '1995-1996, 2000-2020', 'Electrical and Electronic Engineering (Q3)'), (15332, 'European Heart Journal - Case Reports', 25142119, 0.256, 'Q3', 5, 255, 2426, 221, 338, '2', '2017-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (15333, 'Family Matters', 10302646, 0.256, 'Q3', 17, 0, 0, 16, 17, '11', '1988-1990, 1998, 2008-2018', 'Sociology and Political Science (Q3); Social Psychology (Q4)'), (15334, 'Health Care Manager', 15255794, 0.256, 'Q3', 25, 26, 503, 110, 140, '2', '1982-1989, 1993, 1995, 1998-2020', 'Health Policy (Q3); Health (social science) (Q3); Leadership and Management (Q3); Medicine (miscellaneous) (Q3); Care Planning (Q4)'), (15335, 'Healthcare quarterly (Toronto, Ont.)', 17102774, 0.256, 'Q3', 37, 68, 0, 96, 153, '9', '2004-2020', 'Medicine (miscellaneous) (Q3)'), (15336, 'Historia Mathematica', 3150860, 0.256, 'Q1', 18, 20, 1361, 28, 46, '2', '1974-2020', 'History (Q1); Mathematics (miscellaneous) (Q3)'), (15337, 'Hunan Daxue Xuebao/Journal of Hunan Universit', 16742974, 0.256, 'Q2', 17, 204, 4061, 398, 746, '1', '1992-1993, 1996, 2001-2020', 'Multidisciplinary (Q2)'), (15338, 'ImmunoTargets and Therapy', 22531556, 0.256, 'Q4', 7, 0, 0, 2, 1, '41', '2015-2017', 'Immunology (Q4); Immunology and Allergy (Q4)'), (15339, 'Interaction Design and Architecture(s)', 18269745, 0.256, 'Q2', 12, 30, 1431, 84, 94, '7', '2012-2019', 'Architecture (Q2); Media Technology (Q2); Computer Science Applications (Q3); Human-Computer Interaction (Q3); Pharmacology (Q3); Social Sciences (miscellaneous) (Q3)'), (15340, 'International Journal of RF Technologies: Res', 17545749, 0.256, 'Q3', 15, 9, 233, 32, 30, '16', '2009-2019', 'Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)'), (15341, 'Journal of Progressive Human Services', 10428232, 0.256, 'Q3', 17, 21, 931, 40, 39, '2', '1987, 1990-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (15342, 'Journal of Social Distress and the Homeless', 1573658, 0.256, 'Q3', 21, 1, 77, 87, 77, '3', '1992-2002, 2015-2020', 'Health Professions (miscellaneous) (Q3); Psychology (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (15343, 'Journal of Spectral Imaging', 20404565, 0.256, 'Q4', 6, 20, 1024, 47, 35, '3', '2016-2020', 'Analytical Chemistry (Q4); Spectroscopy (Q4)'), (15344, 'Journal of World Investment and Trade', 16607112, 0.256, 'Q2', 16, 34, 1955, 64, 203, '16', '2000-2001, 2003-2020', 'Law (Q2); Political Science and International Relations (Q2); Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (15345, 'Mechanics and Industry', 22577777, 0.256, 'Q3', 18, 105, 3142, 261, 227, '8', '2012-2020', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)'), (15346, 'Military Behavioral Health', 21635781, 0.256, 'Q3', 4, 69, 3140, 36, 47, '3', '2019-2020', 'Psychology (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (15347, 'Netherlands Quarterly of Human Rights', 1693441, 0.256, 'Q2', 14, 21, 0, 43, 41, '16', '2006-2020', 'Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (15348, 'Obesity Medicine', 24518476, 0.256, 'Q3', 9, 150, 6267, 191, 124, '3', '2016-2020', 'Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4); Public Health, Environmental and Occupational Health (Q4)'), (15349, 'Oral Science International', 13488643, 0.256, 'Q3', 13, 46, 1300, 65, 53, '6', '2004-2020', 'Otorhinolaryngology (Q3)'), (15350, 'Radio Journal', 14764504, 0.256, 'Q1', 8, 16, 649, 16, 32, '3', '2012-2019', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Media Technology (Q2); Communication (Q3)'), (15351, 'Religions', 20771444, 0.256, 'Q1', 22, 672, 37097, 775, 1305, '19', '2010-2020', 'Religious Studies (Q1)'), (15352, 'Revista Colombiana de Estadistica', 1201751, 0.256, 'Q4', 16, 16, 424, 34, 37, '47', '2001-2020', 'Statistics and Probability (Q4)'), (15353, 'Scientia Forestalis/Forest Sciences', 14139324, 0.256, 'Q3', 26, 64, 2258, 122, 210, '14', '1996-2020', 'Forestry (Q3)'), (15354, 'Seminars in Roentgenology', 37198, 0.256, 'Q4', 27, 52, 2564, 69, 98, '3', '1966-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (15355, 'Sleep and Hypnosis', 13021192, 0.256, 'Q3', 20, 7, 282, 69, 78, '18', '2000-2013, 2015-2020', 'Clinical Psychology (Q3); Complementary and Alternative Medicine (Q3)'), (15356, 'Veterinary Research Forum', 20088140, 0.256, 'Q3', 5, 63, 2171, 117, 101, '15', '2017-2020', 'Dentistry (miscellaneous) (Q3); Veterinary (miscellaneous) (Q3)'), (15357, 'Acta Botanica Mexicana', 24487589, 0.255, 'Q3', 14, 63, 3249, 111, 122, '30', '2008-2020', 'Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15358, 'Agri Dergisi', 13000012, 0.255, 'Q3', 19, 45, 928, 91, 98, '18', '1993-2020', 'Anesthesiology and Pain Medicine (Q3)'), (15359, 'AHURI Final Report', 18347223, 0.255, 'Q2', 11, 20, 1427, 73, 50, '11', '2008-2020', 'Urban Studies (Q2); Development (Q3); Public Administration (Q3)'), (15360, 'Asia-Pacific Journal of Accounting and Econom', 21642257, 0.255, 'Q3', 13, 92, 4201, 142, 149, '3', '2000, 2009-2020', 'Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (15361, 'Australian Universities Review', 22085394, 0.255, 'Q3', 2, 10, 206, 9, 18, '11', '2019-2020', 'Education (Q3)'), (15362, 'Bangladesh Journal of Medical Science', 20760299, 0.255, 'Q3', 10, 136, 3751, 223, 332, '59', '2011-2020', 'Medicine (miscellaneous) (Q3)'), (15363, 'Boletin de la Asociacion Internacional de Der', 1134993, 0.255, 'Q2', 5, 29, 869, 42, 50, '12', '2013-2019', 'Law (Q2)'), (15364, 'Chemical Research in Chinese Universities', 10059040, 0.255, 'Q3', 25, 208, 9838, 547, 509, '19', '1999-2020', 'Chemistry (miscellaneous) (Q3); Education (Q3)'), (15365, 'COMPEL - The International Journal for Comput', 3321649, 0.255, 'Q3', 31, 102, 2156, 387, 455, '3', '1982-2020', 'Applied Mathematics (Q3); Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Computational Theory and Mathematics (Q4)'), (15366, 'Current Research in Nutrition and Food Scienc', 2347467, 0.255, 'Q3', 14, 96, 3871, 252, 221, '4', '2013-2020', 'Food Science (Q3); Medicine (miscellaneous) (Q3)'), (15367, 'Dve Domovini', 15811212, 0.255, 'Q1', 9, 20, 672, 30, 66, '60', '2008-2020', 'Cultural Studies (Q1); Demography (Q3); Sociology and Political Science (Q3)'), (15368, 'Folia Oecologica', 13365266, 0.255, 'Q3', 9, 21, 1010, 49, 47, '53', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Ecology (Q3); Forestry (Q3)'), (15369, 'Heart Surgery Forum', 15226662, 0.255, 'Q3', 38, 177, 3540, 171, 249, '2', '1998-2020', 'Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)'), (15370, 'Herpetological Review', 18084, 0.255, 'Q3', 32, 20, 170, 31, 63, '2', '1988, 1996-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15371, 'Instrumentation Science and Technology', 15256030, 0.255, 'Q3', 25, 53, 1837, 184, 140, '2', '1968-1972, 1974-1977, 1979-1982, 1984-1990, 1992-2020', 'Chemical Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Instrumentation (Q3)'), (15372, 'International Journal of Parallel Programming', 8857458, 0.255, 'Q3', 34, 58, 1723, 310, 185, '2', '1986-1992, 1994-2020', 'Information Systems (Q3); Software (Q3); Theoretical Computer Science (Q4)'), (15373, 'International Journal of Radiation Research', 23223243, 0.255, 'Q4', 18, 105, 3222, 177, 189, '15', '2003-2013, 2015-2020', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (15374, 'Iranian Journal of Child Neurology', 20080700, 0.255, 'Q3', 13, 45, 1169, 138, 165, '15', '2009-2020', 'Neurology (clinical) (Q3); Pediatrics, Perinatology and Child Health (Q3); Neurology (Q4)'), (15375, 'Izvestiya of Saratov University. New Series. ', 18169791, 0.255, 'Q3', 4, 46, 797, 36, 80, '10', '2020', 'Computational Mechanics (Q3); Computer Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (15376, 'Journal of Apicultural Science', 16434439, 0.255, 'Q3', 18, 21, 846, 60, 75, '17', '2008-2020', 'Plant Science (Q3); Insect Science (Q4)'), (15377, 'Journal of Cardiovascular Echography', 2347193, 0.255, 'Q3', 8, 62, 1303, 85, 126, '4', '2011-2020', 'Cardiology and Cardiovascular Medicine (Q3); Radiology, Nuclear Medicine and Imaging (Q4)'), (15378, 'Journal of Energy and Natural Resources Law', 23764538, 0.255, 'Q2', 9, 40, 0, 73, 58, '3', '2015-2020', 'Law (Q2); Energy (miscellaneous) (Q3)'), (15379, 'Journal of Ethics', 13824554, 0.255, 'Q2', 36, 35, 1094, 56, 61, '16', '1997-2020', 'Philosophy (Q2)'), (15380, 'Journal of Structural and Construction Engine', 18818153, 0.255, 'Q2', 10, 150, 2383, 149, 520, '6', '2008-2020', 'Architecture (Q2); Building and Construction (Q3)'), (15381, 'Livestock Research for Rural Development', 1213784, 0.255, 'Q3', 28, 186, 4717, 319, 613, '47', '1996-2020', 'Animal Science and Zoology (Q3)'), (15382, 'Revista Colombiana de Ciencias Pecuarias', 22562958, 0.255, 'Q3', 14, 24, 753, 71, 115, '47', '2008-2020', 'Animal Science and Zoology (Q3); Veterinary (miscellaneous) (Q3)'), (15383, 'Russian Journal of Marine Biology', 15739457, 0.255, 'Q4', 23, 69, 2654, 144, 211, '10', '1996-2020', 'Aquatic Science (Q4); Oceanography (Q4)'), (15384, 'Sensors and Materials', 9144935, 0.255, 'Q3', 28, 335, 7798, 702, 784, '6', '1996-2020', 'Instrumentation (Q3); Materials Science (miscellaneous) (Q3)'), (15385, 'String Research Journal', 21640661, 0.255, 'Q1', 4, 4, 132, 6, 8, '3', '2010-2016, 2018-2020', 'History (Q1); Music (Q1); Education (Q3)'), (15386, 'Surface Engineering and Applied Electrochemis', 10683755, 0.255, 'Q3', 16, 92, 2488, 231, 240, '10', '2008-2020', 'Industrial and Manufacturing Engineering (Q3); Surfaces, Coatings and Films (Q3); Surfaces and Interfaces (Q4)'), (15387, 'Voprosy Jazykoznanija', 373658, 0.255, 'Q2', 4, 35, 1589, 25, 108, '10', '2009-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15388, 'Advances in Electrical and Computer Engineeri', 18447600, 0.254, 'Q3', 23, 50, 1655, 278, 176, '43', '2008-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)'), (15389, 'Alaska Journal of Anthropology', 15449793, 0.254, 'Q2', 3, 0, 0, 7, 30, '2', '2017-2019', 'Anthropology (Q2)'), (15390, 'Archaeologia Historica', 23364386, 0.254, 'Q1', 5, 42, 3199, 17, 114, '31', '2014-2019', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (15391, 'Archives of Materials Science and Engineering', 18972764, 0.254, 'Q3', 21, 35, 1450, 105, 115, '17', '2009-2020', 'Materials Science (miscellaneous) (Q3)'), (15392, 'Asia Pacific Law Review', 10192557, 0.254, 'Q2', 7, 11, 0, 19, 34, '3', '2008-2019', 'Law (Q2)'), (15393, 'Cirugia Espanola', 9739, 0.254, 'Q3', 24, 277, 3743, 298, 396, '12', '1973-1985, 1992, 2001-2020', 'Surgery (Q3)'), (15394, 'Clinical Ethics', 1758101, 0.254, 'Q2', 17, 65, 2073, 61, 83, '3', '2006-2020', 'Philosophy (Q2); Medicine (miscellaneous) (Q3); Issues, Ethics and Legal Aspects (Q4)'), (15395, 'Defect and Diffusion Forum', 10120386, 0.254, 'Q3', 31, 216, 3210, 689, 664, '19', '1996-2020', 'Materials Science (miscellaneous) (Q3); Condensed Matter Physics (Q4); Radiation (Q4)'), (15396, 'Dianli Jianshe/Electric Power Construction', 10007229, 0.254, 'Q3', 13, 149, 3094, 557, 571, '1', '2017-2020', 'Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (15397, 'Discrete Mathematics and Applications', 15693929, 0.254, 'Q3', 14, 57, 792, 49, 116, '5', '1991-2020', 'Applied Mathematics (Q3); Discrete Mathematics and Combinatorics (Q3)'), (15398, 'Earthquake', 10003274, 0.254, 'Q3', 13, 44, 1297, 82, 199, '1', '1968-1969, 1973, 1980, 1986-2020', 'Geophysics (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (15399, 'Estudios de Psicologia', 2109395, 0.254, 'Q3', 16, 28, 1175, 72, 83, '3', '1980-2020', 'Psychology (miscellaneous) (Q3)'), (15400, 'Fluoride - Quarterly Reports', 22534083, 0.254, 'Q3', 46, 26, 959, 138, 116, '41', '1973-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Dentistry (miscellaneous) (Q3); Biochemistry (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, En'), (15401, 'Geodetski Vestnik', 3510271, 0.254, 'Q3', 11, 17, 676, 34, 70, '60', '1992-2019', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (15402, 'Hanjie Xuebao/Transactions of the China Weldi', 253360, 0.254, 'Q3', 20, 191, 2826, 497, 983, '1', '1993-1994, 1998, 2000-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (15403, 'HOMO- Journal of Comparative Human Biology', 16181301, 0.254, 'Q2', 32, 28, 1531, 89, 114, '5', '1950-1951, 1996-2020', 'Anthropology (Q2); Medicine (miscellaneous) (Q3)'), (15404, 'IEEJ Transactions on Electrical and Electroni', 19314973, 0.254, 'Q3', 30, 225, 5141, 666, 564, '2', '2007-2020', 'Electrical and Electronic Engineering (Q3)'), (15405, 'Innovation and Development', 2157930, 0.254, 'Q1', 9, 0, 0, 67, 44, '3', '2015-2019', 'Cultural Studies (Q1); Political Science and International Relations (Q2); Development (Q3); Education (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3)'), (15406, 'International Journal of Fluid Power', 14399776, 0.254, 'Q3', 27, 10, 367, 58, 44, '3', '2000-2020', 'Mechanical Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (15407, 'International Journal of Gaming and Computer-', 19423896, 0.254, 'Q3', 16, 12, 663, 64, 39, '2', '2009-2020', 'Computer Science Applications (Q3)'), (15408, 'International Review of Sociology', 3906701, 0.254, 'Q3', 23, 27, 1704, 76, 85, '3', '1987-1994, 2003-2020', 'Sociology and Political Science (Q3)'), (15409, 'Journal of Computational Multiphase Flows', 1757482, 0.254, 'Q3', 15, 0, 0, 45, 35, '3', '2009-2018', 'Engineering (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (15410, 'Journal of Computer Languages', 25901184, 0.254, 'Q3', 6, 36, 1889, 104, 47, '3', '2019-2020', 'Computer Networks and Communications (Q3); Human-Computer Interaction (Q3); Software (Q3)'), (15411, 'Journal of Indonesian Islam', 23556994, 0.254, 'Q1', 7, 11, 507, 28, 54, '21', '2007-2020', 'Cultural Studies (Q1); History (Q1); Religious Studies (Q1)'), (15412, 'Journal of Psychosocial Nursing and Mental He', 2793695, 0.254, 'Q3', 35, 116, 2734, 213, 256, '2', '1981-2020', 'Nursing (miscellaneous) (Q3); Psychiatric Mental Health (Q3)'), (15413, 'Journal of the Brazilian Computer Society', 1046500, 0.254, 'Q3', 20, 9, 412, 80, 45, '19', '2000-2020', 'Computer Science (miscellaneous) (Q3)'), (15414, 'Journal of the Entomological Research Society', 13020250, 0.254, 'Q4', 12, 18, 692, 48, 94, '18', '2007-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (15415, 'Leonardo', 24094, 0.254, 'Q1', 23, 79, 1203, 80, 230, '2', '2002-2020', 'Music (Q1); Visual Arts and Performing Arts (Q1); Computer Science Applications (Q3); Engineering (miscellaneous) (Q3)'), (15416, 'Management and Marketing', 20698887, 0.254, 'Q3', 11, 37, 1841, 148, 103, '43', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (15417, 'Mathematica Bohemica', 24647136, 0.254, 'Q3', 11, 30, 468, 47, 86, '31', '2011-2020', 'Mathematics (miscellaneous) (Q3)'), (15418, 'Nordic Journal of Linguistics', 3325865, 0.254, 'Q2', 13, 18, 776, 27, 42, '3', '1978-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15419, 'Radiatsionnaya Gygiena', 1998426, 0.254, 'Q4', 5, 47, 848, 74, 114, '10', '2017-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (15420, 'Revista de Geografia Norte Grande', 3798682, 0.254, 'Q3', 18, 48, 2238, 65, 94, '45', '1981, 1983, 2004-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (15421, 'Revista de Nutricao', 14155273, 0.254, 'Q3', 36, 40, 1530, 107, 148, '14', '2000-2020', 'Medicine (miscellaneous) (Q3); Nutrition and Dietetics (Q3)'), (15422, 'Translational Cancer Research', 22196803, 0.254, 'Q4', 30, 821, 27911, 788, 796, '1', '2012-2020', 'Cancer Research (Q4); Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (15423, 'Tropical Doctor', 17581133, 0.254, 'Q4', 34, 159, 2064, 223, 295, '3', '1971-2020', 'Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)'), (15424, 'Zeitschrift fur Sexualforschung', 9328114, 0.254, 'Q3', 11, 30, 756, 49, 70, '5', '2008-2020', 'Psychology (miscellaneous) (Q3); Reproductive Medicine (Q3)'), (15425, 'Acta Chirurgiae Plasticae', 15423, 0.253, 'Q3', 19, 19, 561, 28, 37, '31', '1959-2020', 'Surgery (Q3)'), (15426, 'Anatolica', 18756654, 0.253, 'Q1', 7, 0, 0, 9, 17, '24', '2012-2018', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (15427, 'Archives of Electrical Engineering', 14274221, 0.253, 'Q3', 16, 64, 1430, 209, 196, '17', '2004-2020', 'Electrical and Electronic Engineering (Q3)'), (15428, 'Beitrage zur Tabakforschung International/ Co', 173783, 0.253, 'Q3', 16, 14, 419, 30, 43, '5', '1961-1984, 2006-2020', 'Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15429, 'Bulletin of Tokyo Dental College, The', 408891, 0.253, 'Q3', 23, 30, 0, 67, 96, '6', '1965-2020', 'Medicine (miscellaneous) (Q3)'), (15430, 'Central European Geology', 17882281, 0.253, 'Q3', 24, 4, 228, 35, 29, '50', '2008-2019', 'Geology (Q3)'), (15431, 'Classical Quarterly', 98388, 0.253, 'Q1', 31, 91, 2393, 42, 183, '3', '1907-2020', 'Classics (Q1); History (Q1); Literature and Literary Theory (Q1); Philosophy (Q2)'), (15432, 'Climate Law', 18786553, 0.253, 'Q2', 19, 12, 798, 32, 43, '16', '2010-2012, 2014-2020', 'Law (Q2); Environmental Science (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q3)'), (15433, 'Distributed and Parallel Databases', 9268782, 0.253, 'Q3', 42, 47, 2139, 97, 63, '16', '1993-2020', 'Hardware and Architecture (Q3); Information Systems (Q3); Information Systems and Management (Q3); Software (Q3)'), (15434, 'Egyptian Journal of Medical Human Genetics', 20902441, 0.253, 'Q4', 17, 75, 3489, 153, 166, '32', '2010-2020', 'Genetics (clinical) (Q4)'), (15435, 'Estudios Eclesiasticos', 2101610, 0.253, 'Q1', 3, 24, 1216, 12, 61, '12', '2011-2020', 'Religious Studies (Q1)'), (15436, 'Indian Journal of Biochemistry and Biophysics', 3011208, 0.253, 'Q3', 42, 82, 3041, 202, 141, '4', '1972-2020', 'Medicine (miscellaneous) (Q3); Biochemistry (Q4); Biophysics (Q4)'), (15437, 'Informing Science', 15214672, 0.253, 'Q3', 24, 7, 396, 43, 40, '2', '1997-2020', 'Library and Information Sciences (Q3)'), (15438, 'International Journal of Geophysics', 16878868, 0.253, 'Q3', 19, 6, 258, 42, 38, '32', '2009-2020', 'Geophysics (Q3); Water Science and Technology (Q3)'), (15439, 'International Journal on Communications Anten', 20395086, 0.253, 'Q2', 15, 48, 1484, 255, 188, '7', '2011-2020', 'Media Technology (Q2); Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Signal Processing (Q3)'), (15440, 'Journal of Circuits, Systems and Computers', 17936454, 0.253, 'Q3', 31, 387, 13118, 1155, 733, '37', '1996-2000, 2002-2020', 'Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3)'), (15441, 'Korean Journal of Adult Nursing', 2288338, 0.253, 'Q3', 9, 54, 1727, 118, 184, '13', '2012-2020', 'Nursing (miscellaneous) (Q3)'), (15442, 'Law and Practice of International Courts and ', 15691853, 0.253, 'Q2', 12, 31, 1076, 14, 58, '16', '2007-2020', 'Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (15443, 'Micro and Nanosystems', 18764037, 0.253, 'Q3', 14, 32, 836, 55, 51, '16', '2010-2020', 'Building and Construction (Q3); Nanoscience and Nanotechnology (Q4)'), (15444, 'MRS Advances', 20598521, 0.253, 'Q3', 15, 328, 7865, 1034, 1422, '3', '2015-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Condensed Matter Physics (Q4)'), (15445, 'Polymer Science - Series D', 19954212, 0.253, 'Q3', 17, 90, 1366, 175, 269, '10', '2009-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Polymers and Plastics (Q3)'), (15446, 'Public Policy and Administration', 16482603, 0.253, 'Q3', 9, 49, 1570, 77, 132, '69', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Public Administration (Q3); Sociology and Political Science (Q3)'), (15447, 'Research in Drama Education', 1470112, 0.253, 'Q1', 12, 60, 1501, 62, 147, '2', '2010-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Education (Q3)'), (15448, 'Rethinking History', 13642529, 0.253, 'Q1', 21, 26, 1343, 60, 86, '3', '1997-2020', 'History (Q1)'), (15449, 'Review of Cognitive Linguistics', 18779751, 0.253, 'Q2', 21, 12, 584, 41, 58, '16', '2010-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Developmental and Educational Psychology (Q4)'), (15450, 'Revista Clinica Espanola', 142565, 0.253, 'Q3', 26, 204, 3923, 251, 225, '12', '1947-2020', 'Medicine (miscellaneous) (Q3)'), (15451, 'Revista Espanola de Medicina Nuclear e Imagen', 22538070, 0.253, 'Q4', 21, 105, 1530, 175, 244, '12', '2012-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (15452, 'Revue de Paleobiologie', 2536730, 0.253, 'Q3', 31, 0, 0, 26, 44, '8', '1987, 1991-2018', 'Paleontology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15453, 'Russian Aeronautics', 10687998, 0.253, 'Q3', 14, 101, 1181, 128, 308, '10', '2005-2020', 'Aerospace Engineering (Q3)'), (15454, 'TransNav', 20836473, 0.253, 'Q3', 5, 119, 2072, 85, 100, '17', '2019-2020', 'Ocean Engineering (Q3); Transportation (Q3); Oceanography (Q4)'), (15455, 'Acta Scientiarum Polonorum, Hortorum Cultus', 16440692, 0.252, 'Q3', 20, 84, 3404, 230, 311, '17', '2008-2020', 'Horticulture (Q3); Plant Science (Q3)'), (15456, 'Agriculture', 13384376, 0.252, 'Q3', 10, 13, 599, 56, 52, '5', '2011-2020', 'Agronomy and Crop Science (Q3); Horticulture (Q3); Plant Science (Q3); Soil Science (Q3)'), (15457, 'Archaeofauna', 11326891, 0.252, 'Q2', 18, 12, 530, 14, 41, '12', '1996-2007, 2009-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2); Animal Science and Zoology (Q3)'), (15458, 'Archives of Foundry Engineering', 18973310, 0.252, 'Q3', 12, 80, 1574, 235, 375, '17', '2012-2020', 'Industrial and Manufacturing Engineering (Q3); Metals and Alloys (Q3)'), (15459, 'Baltic Region', 23100524, 0.252, 'Q1', 4, 36, 1171, 53, 70, '10', '2018-2020', 'Cultural Studies (Q1); History (Q1); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political S'), (15460, 'Biological Rhythm Research', 17444179, 0.252, 'Q4', 33, 138, 5773, 277, 347, '3', '1994-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Physiology (Q4); Physiology (medical) (Q4)'), (15461, 'Biomath', 13147218, 0.252, 'Q3', 3, 11, 272, 13, 11, '61', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Applied Mathematics (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (15462, 'Boston University Law Review', 68047, 0.252, 'Q2', 31, 54, 8679, 61, 140, '2', '1973-1977, 1987, 1989-1990, 1992, 1994, 1996-2020', 'Law (Q2)'), (15463, 'Chinese Journal of Plant Ecology', 1005264, 0.252, 'Q3', 9, 28, 1855, 242, 330, '1', '2016-2019', 'Ecology (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15464, 'Estudios Sobre el Mensaje Periodistico', 19882696, 0.252, 'Q3', 14, 132, 5326, 150, 291, '12', '2010-2020', 'Communication (Q3)'), (15465, 'Geo-Eco-Marina', 12246808, 0.252, 'Q3', 8, 7, 257, 20, 48, '43', '2011-2019', 'Earth and Planetary Sciences (miscellaneous) (Q3); Ecology (Q3); Geography, Planning and Development (Q3); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (15466, 'International Journal of Disaster Resilience ', 17595916, 0.252, 'Q3', 19, 57, 1859, 111, 109, '3', '2010-2020', 'Building and Construction (Q3); Safety, Risk, Reliability and Quality (Q3)'), (15467, 'Journal Francais d Ophtalmologie', 17730597, 0.252, 'Q4', 30, 305, 4095, 330, 563, '8', '1978-2020', 'Ophthalmology (Q4)'), (15468, 'Journal of Advanced Manufacturing Systems', 17936896, 0.252, 'Q3', 16, 41, 1636, 149, 90, '37', '2004-2020', 'Computer Science Applications (Q3); Industrial and Manufacturing Engineering (Q3); Strategy and Management (Q3)'), (15469, 'Journal of Computational Analysis and Applica', 15211398, 0.252, 'Q3', 30, 176, 3682, 310, 671, '2', '1999-2021', 'Computational Mathematics (Q3)'), (15470, 'Journal of Employment Counseling', 21611920, 0.252, 'Q3', 27, 12, 568, 45, 42, '2', '1964-2020', 'Organizational Behavior and Human Resource Management (Q3); Psychology (miscellaneous) (Q3); Applied Psychology (Q4)'), (15471, 'Journal of Intellectual Property Law and Prac', 17471540, 0.252, 'Q2', 10, 137, 3133, 60, 241, '2', '2005-2020', 'Law (Q2)'), (15472, 'Journal of Logic, Language and Information', 9258531, 0.252, 'Q2', 30, 23, 818, 39, 47, '16', '1992-2002, 2005-2020', 'Linguistics and Language (Q2); Philosophy (Q2); Computer Science (miscellaneous) (Q3)'), (15473, 'Journal of Mathematics', 23144785, 0.252, 'Q3', 13, 211, 5666, 65, 86, '32', '2013-2020', 'Mathematics (miscellaneous) (Q3)'), (15474, 'Journal of Physical Agents', 18880258, 0.252, 'Q3', 14, 0, 0, 3, 5, '12', '2007-2013, 2017', 'Control and Systems Engineering (Q3); Software (Q3)'), (15475, 'Kindheit und Entwicklung', 9425403, 0.252, 'Q3', 33, 27, 923, 54, 78, '5', '2004-2020', 'Pediatrics, Perinatology and Child Health (Q3); Psychiatry and Mental Health (Q3); Developmental and Educational Psychology (Q4)'), (15476, 'Nano Biomedicine and Engineering', 21505578, 0.252, 'Q4', 20, 41, 1418, 174, 127, '2', '2009-2020', 'Biomedical Engineering (Q4); Nanoscience and Nanotechnology (Q4)'), (15477, 'Open Neuroimaging Journal', 18744400, 0.252, 'Q4', 6, 7, 214, 30, 17, '52', '2016-2018, 2020', 'Neurology (clinical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (15478, 'Portugaliae Electrochimica Acta', 8721904, 0.252, 'Q4', 27, 29, 988, 138, 90, '26', '2008-2020', 'Electrochemistry (Q4)'), (15479, 'Projections (New York)', 19349688, 0.252, 'Q1', 4, 20, 462, 21, 52, '2', '2015-2020', 'Cultural Studies (Q1); Visual Arts and Performing Arts (Q1); Communication (Q3)'), (15480, 'Revista Colombiana de Psiquiatria', 347450, 0.252, 'Q3', 11, 95, 3047, 102, 108, '12', '1974-1978, 2013-2020', 'Psychiatry and Mental Health (Q3)'), (15481, 'Revista de Administracao Publica', 19823134, 0.252, 'Q3', 17, 100, 4235, 133, 177, '14', '2007-2020', 'Public Administration (Q3)'), (15482, 'RLA', 33698, 0.252, 'Q2', 12, 7, 260, 18, 43, '45', '2008-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (15483, 'Russian Journal of Non-Ferrous Metals', 1934970, 0.252, 'Q3', 17, 94, 2659, 236, 285, '10', '2007-2020', 'Mechanics of Materials (Q3); Metals and Alloys (Q3); Surfaces, Coatings and Films (Q3)'), (15484, 'Studies in American Humor', 23339934, 0.252, 'Q1', 2, 15, 603, 34, 33, '2', '2017-2020', 'Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Linguistics and Language (Q2); Psychology (miscellaneous) (Q3)'), (15485, 'Sub-Stance', 492426, 0.252, 'Q1', 17, 6, 208, 55, 71, '2', '2002-2019', 'Literature and Literary Theory (Q1)'), (15486, 'Teaching Sociology', 92055, 0.252, 'Q3', 37, 27, 859, 61, 80, '2', '1986, 1990, 1996-2020', 'Education (Q3); Sociology and Political Science (Q3)'), (15487, 'Wuji Cailiao Xuebao/Journal of Inorganic Mate', 1000324, 0.252, 'Q3', 25, 190, 6717, 558, 597, '1', '1993-2020', 'Materials Science (miscellaneous) (Q3); Inorganic Chemistry (Q4)'), (15488, 'Zhendong Gongcheng Xuebao/Journal of Vibratio', 10044523, 0.252, 'Q3', 23, 142, 2935, 252, 376, '1', '2001-2020', 'Acoustics and Ultrasonics (Q3); Aerospace Engineering (Q3); Civil and Structural Engineering (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (15489, 'ACSM s Health and Fitness Journal', 1536593, 0.251, 'Q3', 22, 60, 905, 146, 166, '2', '1998-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Public Health, Environmental and Occupational Health (Q4); Sports Science (Q4)'), (15490, 'Bereavement Care', 2682621, 0.251, 'Q2', 15, 23, 512, 32, 45, '3', '1982-2020', 'Advanced and Specialized Nursing (Q2); Gerontology (Q3); Health (social science) (Q3); Social Psychology (Q4)'), (15491, 'Bulletin of Electrical Engineering and Inform', 20893191, 0.251, 'Q3', 12, 335, 9812, 567, 316, '21', '2017-2020', 'Computer Networks and Communications (Q3); Computer Science (miscellaneous) (Q3); Control and Optimization (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Hardw'), (15492, 'Civil and Environmental Engineering', 13365835, 0.251, 'Q3', 3, 40, 883, 24, 41, '5', '2018-2020', 'Civil and Structural Engineering (Q3); Environmental Engineering (Q3)'), (15493, 'Desalination and Water Treatment', 19443994, 0.251, 'Q3', 60, 1503, 61492, 4989, 4478, '2', '2009-2020', 'Ocean Engineering (Q3); Pollution (Q3); Water Science and Technology (Q3)'), (15494, 'Ethics and the Environment', 15355306, 0.251, 'Q2', 7, 12, 482, 22, 26, '2', '2013-2019', 'Philosophy (Q2); Environmental Science (miscellaneous) (Q3)'), (15495, 'Fiber and Integrated Optics', 10964681, 0.251, 'Q3', 27, 21, 617, 70, 67, '3', '1977-2020', 'Electronic, Optical and Magnetic Materials (Q3); Atomic and Molecular Physics, and Optics (Q4)'), (15496, 'Geomorfologiya', 4354281, 0.251, 'Q3', 9, 35, 856, 43, 102, '10', '1979-1980, 1982-1993, 1995-2019', 'Earth-Surface Processes (Q3)'), (15497, 'Hangkong Dongli Xuebao/Journal of Aerospace P', 10008055, 0.251, 'Q3', 24, 278, 6126, 518, 1015, '1', '1990-1992, 2001-2020', 'Aerospace Engineering (Q3); Applied Mathematics (Q3)'), (15498, 'Herpetozoa', 10134425, 0.251, 'Q3', 3, 27, 1062, 9, 9, '61', '2011, 2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15499, 'IEEE Latin America Transactions', 15480992, 0.251, 'Q3', 26, 176, 5055, 975, 959, '2', '2003-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)'), (15500, 'IET Circuits, Devices and Systems', 1751858, 0.251, 'Q3', 49, 166, 5157, 595, 353, '3', '2007-2020', 'Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)'), (15501, 'Insight: Non-Destructive Testing and Conditio', 17544904, 0.251, 'Q3', 38, 72, 1390, 203, 214, '3', '1994-2020', 'Materials Chemistry (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Metals and Alloys (Q3)'), (15502, 'International Journal of Cancer Management', 25384422, 0.251, 'Q3', 19, 88, 2527, 270, 330, '16', '2015-2020', 'Pharmacology (medical) (Q3); Surgery (Q3); Cancer Research (Q4); Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (15503, 'International Journal of Combinatorial Graph ', 9737421, 0.251, 'Q3', 2, 9, 583, 17, 10, '4', '2019', 'Applied Mathematics (Q3); Discrete Mathematics and Combinatorics (Q4)'), (15504, 'International Journal of Electronics', 13623060, 0.251, 'Q3', 50, 170, 4831, 577, 402, '3', '1965-2020', 'Electrical and Electronic Engineering (Q3)'), (15505, 'International Journal of Vehicle Noise and Vi', 14791471, 0.251, 'Q3', 16, 7, 185, 28, 45, '3', '2004-2005, 2007-2014, 2016, 2019', 'Automotive Engineering (Q3); Mechanical Engineering (Q3)'), (15506, 'International Journal of Wavelets, Multiresol', 2196913, 0.251, 'Q3', 25, 91, 2594, 297, 220, '37', '2006-2020', 'Applied Mathematics (Q3); Information Systems (Q3); Signal Processing (Q3)'), (15507, 'Jisuanji Xuebao/Chinese Journal of Computers', 2544164, 0.251, 'Q3', 56, 143, 6350, 805, 521, '1', '1998-2020', 'Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Hardware and Architecture (Q3); Software (Q3)'), (15508, 'Journal of Baltic Studies', 17517877, 0.251, 'Q1', 22, 34, 1611, 42, 75, '3', '1972-2001, 2003-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)'), (15509, 'Journal of Chinese Human Resource Management', 20408013, 0.251, 'Q1', 11, 0, 0, 24, 18, '3', '2010-2019', 'Cultural Studies (Q1); Organizational Behavior and Human Resource Management (Q3)'), (15510, 'Journal of Legal Studies', 15375366, 0.251, 'Q2', 61, 12, 513, 33, 65, '2', '1983, 1985, 1996-2020', 'Law (Q2)'), (15511, 'Journal of Mathematical Sciences (Japan)', 13405705, 0.251, 'Q3', 13, 0, 0, 23, 24, '6', '2011-2019', 'Mathematics (miscellaneous) (Q3)'), (15512, 'Journal of Nanostructures', 22517871, 0.251, 'Q3', 9, 59, 2148, 165, 119, '15', '2017-2020', 'Electronic, Optical and Magnetic Materials (Q3); Mechanics of Materials (Q3); Polymers and Plastics (Q3); Surfaces, Coatings and Films (Q3); Biomaterials (Q4)'), (15513, 'Kongqi Donglixue Xuebao/Acta Aerodynamica Sin', 2581825, 0.251, 'Q3', 18, 118, 4537, 249, 359, '1', '2001-2020', 'Mechanical Engineering (Q3); Condensed Matter Physics (Q4); Modeling and Simulation (Q4); Surfaces and Interfaces (Q4)'), (15514, 'Latvian Journal of Physics and Technical Scie', 8688257, 0.251, 'Q3', 9, 34, 615, 92, 121, '17', '2008-2020', 'Engineering (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (15515, 'Management Systems in Production Engineering', 22990461, 0.251, 'Q3', 6, 53, 1538, 103, 80, '5', '2018-2020', 'Industrial and Manufacturing Engineering (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)'), (15516, 'New Review of Hypermedia and Multimedia', 17407842, 0.251, 'Q2', 30, 5, 318, 51, 40, '3', '1995-2020', 'Media Technology (Q2); Computer Science Applications (Q3); Information Systems (Q3)'), (15517, 'Perspectives in health information management', 15594122, 0.251, 'Q3', 24, 0, 0, 57, 53, '2', '2007-2019', 'Medicine (miscellaneous) (Q3)'), (15518, 'Sains Malaysiana', 1266039, 0.251, 'Q2', 29, 315, 10813, 1018, 921, '23', '2006-2020', 'Multidisciplinary (Q2)'), (15519, 'Shokuhin eiseigaku zasshi. Journal of the Foo', 18821006, 0.251, 'Q3', 28, 39, 524, 49, 107, '6', '1960-2020', 'Food Science (Q3); Medicine (miscellaneous) (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15520, 'Transition Metal Chemistry', 1572901, 0.251, 'Q3', 56, 64, 2560, 341, 246, '16', '1975-2020', 'Materials Chemistry (Q3); Metals and Alloys (Q3); Inorganic Chemistry (Q4)'), (15521, 'Zuckerindustrie', 3448657, 0.251, 'Q3', 18, 84, 666, 51, 149, '5', '1977-1985, 1987-1989, 1996-2013, 2017-2020', 'Food Science (Q3)'), (15522, 'African Invertebrates', 16815556, 0.25, 'Q3', 14, 8, 185, 20, 36, '27', '2008-2020', 'Animal Science and Zoology (Q3); Paleontology (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (15523, 'Cybernetics and Systems Analysis', 15738337, 0.25, 'Q3', 24, 108, 2117, 307, 311, '2', '1978-1980, 1991-2001, 2003, 2005-2020', 'Computer Science (miscellaneous) (Q3)'), (15524, 'Cytologia', 114545, 0.25, 'Q3', 28, 56, 1711, 156, 217, '6', '1929-1944, 1947, 1949-2020', 'Animal Science and Zoology (Q3); Plant Science (Q3); Cell Biology (Q4); Genetics (Q4)'), (15525, 'Dialogue and Discourse', 21529620, 0.25, 'Q2', 5, 9, 536, 75, 25, '5', '2017-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3)'), (15526, 'Diplomatic History', 14677709, 0.25, 'Q1', 32, 33, 3644, 38, 134, '3', '1977-2020', 'History (Q1)'), (15527, 'Environmental Engineering and Management Jour', 15829596, 0.25, 'Q3', 35, 191, 7374, 814, 853, '43', '1988, 2002-2020', 'Environmental Engineering (Q3); Management, Monitoring, Policy and Law (Q3); Pollution (Q3)'), (15528, 'European Journal for Philosophy of Religion', 16898311, 0.25, 'Q1', 9, 46, 1010, 44, 134, '28', '2009-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (15529, 'Gastroenterologia y Hepatologia', 2105705, 0.25, 'Q3', 30, 222, 3492, 293, 403, '12', '1982-2020', 'Gastroenterology (Q3); Hepatology (Q4)'), (15530, 'Herald of the Bauman Moscow State Technical U', 18123368, 0.25, 'Q3', 7, 52, 1068, 94, 172, '10', '2016-2020', 'Chemistry (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (15531, 'IDS Bulletin', 2655012, 0.25, 'Q3', 46, 29, 871, 74, 107, '3', '1976-2020', 'Development (Q3); Geography, Planning and Development (Q3)'), (15532, 'International Journal of Automotive Engineeri', 21850992, 0.25, 'Q3', 7, 26, 499, 51, 68, '6', '2012, 2015-2020', 'Automotive Engineering (Q3); Fluid Flow and Transfer Processes (Q3); Safety, Risk, Reliability and Quality (Q3); Human Factors and Ergonomics (Q4)'), (15533, 'International Journal of Comparative Labour L', 1875838, 0.25, 'Q2', 5, 20, 1533, 37, 53, '3', '2017-2019', 'Law (Q2); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3)'), (15534, 'Journal of Applied Engineering Science', 18213197, 0.25, 'Q3', 13, 104, 2511, 299, 244, '55', '2006-2020', 'Civil and Structural Engineering (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Transportation (Q3); Renewable Energy, Sustainability '), (15535, 'Journal of Eye Movement Research', 19958692, 0.25, 'Q4', 20, 37, 2020, 142, 108, '19', '2012-2020', 'Ophthalmology (Q4); Sensory Systems (Q4)'), (15536, 'Journal of Forest Science', 1805935, 0.25, 'Q3', 28, 50, 2189, 166, 184, '31', '1982-1989, 1999-2020', 'Forestry (Q3); Soil Science (Q3)'), (15537, 'Journal of Holy Land and Palestine Studies', 20541996, 0.25, 'Q1', 3, 10, 506, 16, 33, '3', '2015-2020', 'Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1); Religious Studies (Q1)'), (15538, 'Journal of Information Science Theory and Pra', 22879099, 0.25, 'Q3', 5, 24, 1115, 48, 60, '13', '2017-2020', 'Information Systems (Q3); Information Systems and Management (Q3); Library and Information Sciences (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (15539, 'Journal of Regional and City Planning', 25026429, 0.25, 'Q2', 4, 17, 828, 38, 51, '21', '2017-2020', 'Urban Studies (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (15540, 'Journal of Scientific and Industrial Research', 224456, 0.25, 'Q2', 54, 34, 568, 93, 94, '4', '1969-1970, 1972-1978, 1980, 1982-1991, 1994-2020', 'Multidisciplinary (Q2)'), (15541, 'Journal of Smoking Cessation', 18342612, 0.25, 'Q3', 15, 24, 838, 50, 93, '11', '2006-2020', 'Psychiatry and Mental Health (Q3)'), (15542, 'Journal Wuhan University of Technology, Mater', 19930437, 0.25, 'Q3', 30, 150, 4502, 649, 672, '1', '1994-2020', 'Materials Science (miscellaneous) (Q3)'), (15543, 'Micro and Nano Letters', 17500443, 0.25, 'Q3', 31, 229, 6513, 956, 873, '3', '2007-2020', 'Materials Science (miscellaneous) (Q3); Bioengineering (Q4); Biomedical Engineering (Q4); Condensed Matter Physics (Q4); Nanoscience and Nanotechnology (Q4)'), (15544, 'Modern Italy', 13532944, 0.25, 'Q1', 18, 29, 1293, 43, 85, '3', '1995, 1997-2000, 2002-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Sociology and Political Science (Q3)'), (15545, 'Music Analysis', 14682249, 0.25, 'Q1', 18, 0, 0, 12, 31, '3', '1996-2019', 'Music (Q1)'), (15546, 'NPG Neurologie - Psychiatrie - Geriatrie', 16274830, 0.25, 'Q3', 8, 69, 1624, 50, 161, '8', '2004-2020', 'Psychiatry and Mental Health (Q3); Geriatrics and Gerontology (Q4); Neurology (clinical) (Q4)'), (15547, 'Physics of Atomic Nuclei', 10637788, 0.25, 'Q4', 48, 207, 4579, 384, 673, '10', '1996-2020', 'Atomic and Molecular Physics, and Optics (Q4); Nuclear and High Energy Physics (Q4)'), (15548, 'Postcolonial Studies', 14661888, 0.25, 'Q1', 16, 58, 0, 82, 91, '3', '2010-2020', 'History (Q1); Political Science and International Relations (Q2)'), (15549, 'Proceedings of the Institution of Civil Engin', 17517672, 0.25, 'Q3', 21, 25, 222, 93, 117, '3', '1992-2019', 'Civil and Structural Engineering (Q3)'), (15550, 'Review of Accounting and Finance', 14757702, 0.25, 'Q3', 22, 14, 602, 90, 83, '3', '2002-2020', 'Accounting (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3)'), (15551, 'Revista Brasileira de Estudos de Populacao', 1023098, 0.25, 'Q3', 13, 28, 1172, 46, 82, '14', '1984-1992, 1996, 2007-2020', 'Demography (Q3)'), (15552, 'Revista General de Informacion y Documentacio', 19882858, 0.25, 'Q3', 6, 23, 743, 45, 79, '12', '2009-2020', 'Library and Information Sciences (Q3)'), (15553, 'Sarcoidosis Vasculitis and Diffuse Lung Disea', 11240490, 0.25, 'Q3', 56, 39, 1009, 80, 131, '7', '1996-2019', 'Internal Medicine (Q3); Medicine (miscellaneous) (Q3); Pulmonary and Respiratory Medicine (Q3); Immunology and Allergy (Q4)'), (15554, 'Support for Learning', 2682141, 0.25, 'Q3', 30, 34, 1007, 42, 68, '2', '1986-2020', 'Education (Q3)'), (15555, 'Text and Performance Quarterly', 10462937, 0.25, 'Q1', 28, 23, 1073, 42, 60, '3', '1989-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Communication (Q3)'), (15556, 'Turkiye Entomoloji Dergisi', 10106960, 0.25, 'Q4', 12, 19, 820, 47, 78, '18', '2010-2020', 'Insect Science (Q4)'), (15557, 'Vibrant Virtual Brazilian Anthropology', 18094341, 0.25, 'Q1', 3, 43, 2106, 21, 68, '14', '2018-2020', 'Cultural Studies (Q1); Anthropology (Q2); Urban Studies (Q2); Sociology and Political Science (Q3)'), (15558, 'Acta Endocrinologica', 1843066, 0.249, 'Q4', 13, 66, 1638, 174, 214, '43', '2005, 2008-2020', 'Endocrine and Autonomic Systems (Q4); Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)'), (15559, 'Advances in Horticultural Science', 15921573, 0.249, 'Q3', 24, 56, 2248, 114, 149, '7', '1993-2020', 'Horticulture (Q3)'), (15560, 'Archives and Records', 23257989, 0.249, 'Q1', 15, 23, 797, 33, 43, '3', '2014-2020', 'History (Q1)'), (15561, 'Archives of Control Sciences', 12302384, 0.249, 'Q3', 21, 33, 976, 180, 103, '17', '2009-2020', 'Control and Optimization (Q3); Control and Systems Engineering (Q3); Modeling and Simulation (Q4)'), (15562, 'Asian Bioethics Review', 17938759, 0.249, 'Q2', 7, 45, 1682, 66, 77, '37', '2015-2020', 'Philosophy (Q2); Health Policy (Q3); Health (social science) (Q3)'), (15563, 'Bitacora Urbano Territorial', 1247913, 0.249, 'Q2', 6, 52, 1436, 58, 164, '47', '2009-2020', 'Arts and Humanities (miscellaneous) (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)'), (15564, 'Cyber-Physical Systems', 23335785, 0.249, 'Q3', 9, 21, 891, 60, 29, '3', '2015-2020', 'Computational Mechanics (Q3); Computer Graphics and Computer-Aided Design (Q3); Computer Vision and Pattern Recognition (Q3)'), (15565, 'Dental and Medical Problems', 1644387, 0.249, 'Q3', 8, 56, 1781, 150, 187, '17', '2012-2020', 'Dentistry (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (15566, 'Environmental Quality Management', 15206483, 0.249, 'Q3', 27, 46, 2124, 147, 161, '2', '1991-2020', 'Management, Monitoring, Policy and Law (Q3); Pollution (Q3); Waste Management and Disposal (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15567, 'Foundations and Trends in Technology, Informa', 15719545, 0.249, 'Q3', 14, 14, 733, 16, 42, '2', '2005, 2007-2014, 2016-2020', 'Management Science and Operations Research (Q3)'), (15568, 'Frontiers of Neurology and Neuroscience', 16604431, 0.249, 'Q3', 27, 0, 0, 63, 64, '19', '2005-2019', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4)'), (15569, 'HAYAT', 2008188, 0.249, 'Q3', 12, 40, 1290, 81, 91, '15', '2017-2020', 'Maternity and Midwifery (Q3); Nursing (miscellaneous) (Q3)'), (15570, 'International Journal of Numerical Modelling:', 8943370, 0.249, 'Q3', 30, 179, 5289, 386, 298, '3', '1988-2020', 'Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Modeling and Simulation (Q4)'), (15571, 'International Journal of Robotics and Automat', 19257090, 0.249, 'Q3', 26, 18, 547, 137, 208, '9', '1995-2020', 'Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Software (Q3); Modeling and Simulation (Q4)'), (15572, 'Iranian Journal of Otorhinolaryngology', 22517251, 0.249, 'Q3', 13, 49, 1082, 129, 169, '15', '2011-2020', 'Otorhinolaryngology (Q3)'), (15573, 'Journal of Botany', 20900120, 0.249, 'Q3', 11, 0, 0, 18, 11, '2', '2014-2018', 'Plant Science (Q3)'), (15574, 'Journal of Chemical Health and Safety', 18715532, 0.249, 'Q3', 21, 8, 333, 102, 92, '2', '2006-2019', 'Chemical Health and Safety (Q3); Chemistry (miscellaneous) (Q3)'), (15575, 'Journal of Digital Landscape Architecture', 2511624, 0.249, 'Q2', 6, 66, 1290, 66, 98, '5', '2019-2020', 'Architecture (Q2); Computer Science Applications (Q3); Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3)'), (15576, 'Journal of Landscape Ecology(Czech Republic)', 18054196, 0.249, 'Q3', 9, 22, 1053, 64, 75, '5', '2013-2020', 'Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)'), (15577, 'Journal of Medical Humanities', 15733645, 0.249, 'Q3', 25, 93, 2986, 103, 157, '2', '1989-2020', 'Health Policy (Q3); Health (social science) (Q3)'), (15578, 'Journal of Ocean University of China', 16725182, 0.249, 'Q3', 24, 149, 6200, 473, 465, '1', '2003, 2007-2020', 'Ocean Engineering (Q3); Oceanography (Q4)'), (15579, 'Mind and Society', 15937879, 0.249, 'Q1', 18, 46, 1328, 22, 29, '5', '2006-2020', 'Cultural Studies (Q1); History (Q1); Philosophy (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Experimental'), (15580, 'Open Civil Engineering Journal', 18741495, 0.249, 'Q3', 16, 36, 1157, 167, 156, '52', '2010-2020', 'Civil and Structural Engineering (Q3)'), (15581, 'Palabra Clave', 1228285, 0.249, 'Q2', 10, 32, 1409, 57, 122, '47', '2012-2020', 'Arts and Humanities (miscellaneous) (Q2); Communication (Q3)'), (15582, 'Revista Brasileira de Gestao de Negocios', 19830807, 0.249, 'Q3', 11, 47, 2622, 104, 98, '14', '2004-2020', 'Business and International Management (Q3); Industrial Relations (Q3); Strategy and Management (Q3)'), (15583, 'RILCE', 2132370, 0.249, 'Q1', 7, 60, 2327, 64, 139, '12', '2008-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15584, 'Rocznik Ochrona Srodowiska', 1506218, 0.249, 'Q3', 16, 79, 2088, 195, 250, '17', '2007-2019', 'Environmental Science (miscellaneous) (Q3)'), (15585, 'School Library Research', 21651019, 0.249, 'Q2', 3, 6, 207, 15, 16, '2', '2014-2020', 'Media Technology (Q2); Library and Information Sciences (Q3)'), (15586, 'Stochastics and Quality Control', 23672390, 0.249, 'Q3', 3, 9, 149, 30, 29, '5', '2017-2020', 'Safety, Risk, Reliability and Quality (Q3); Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (15587, 'Tropical and Subtropical Agroecosystems', 18700462, 0.249, 'Q3', 16, 100, 4565, 153, 184, '30', '2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15588, 'Unterrichtswissenschaft', 3404099, 0.249, 'Q3', 8, 33, 1804, 37, 62, '5', '2012-2014, 2017-2020', 'Education (Q3)'), (15589, 'Acta Medica Okayama', 386300, 0.248, 'Q3', 37, 80, 1869, 206, 243, '6', '1972-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q3)'), (15590, 'Allelopathy Journal', 9714693, 0.248, 'Q3', 31, 27, 1433, 142, 186, '4', '1996-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (15591, 'American Business Law Journal', 27766, 0.248, 'Q2', 23, 12, 0, 33, 44, '3', '1963-2020', 'Law (Q2); Business and International Management (Q3)'), (15592, 'Asia Policy', 15592960, 0.248, 'Q1', 8, 53, 402, 69, 135, '2', '2016-2019', 'History (Q1); Political Science and International Relations (Q2)'), (15593, 'Bulgarian Journal of Agricultural Science', 13100351, 0.248, 'Q3', 22, 210, 6600, 425, 596, '61', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Veterinary (miscellaneous) (Q3)'), (15594, 'Chirurgia (Romania)', 12219118, 0.248, 'Q3', 20, 80, 1890, 203, 263, '43', '1991-1998, 2000-2020', 'Surgery (Q3)'), (15595, 'Computer Languages, Systems and Structures', 14778424, 0.248, 'Q3', 22, 0, 0, 165, 83, '3', '2002-2018', 'Computer Networks and Communications (Q3); Software (Q3)'), (15596, 'Current Issues in Criminal Justice', 10345329, 0.248, 'Q2', 3, 42, 2625, 30, 28, '3', '2019-2020', 'Law (Q2)'), (15597, 'Current Psychiatry Research and Reviews', 26660822, 0.248, 'Q3', 25, 31, 1941, 62, 86, '16', '2019-2020', 'Psychiatry and Mental Health (Q3)'), (15598, 'Egyptian Journal of Chemistry', 4492285, 0.248, 'Q3', 13, 436, 16479, 694, 430, '32', '2004-2020', 'Chemistry (miscellaneous) (Q3)'), (15599, 'ERS Monograph', 2312508, 0.248, 'Q3', 9, 48, 3646, 126, 247, '3', '2015-2020', 'Pulmonary and Respiratory Medicine (Q3)'), (15600, 'European Poultry Science', 16129199, 0.248, 'Q3', 12, 28, 1181, 110, 122, '5', '2014-2020', 'Animal Science and Zoology (Q3); Food Animals (Q4)'), (15601, 'Grazer Philosophische Studien', 1659227, 0.248, 'Q2', 8, 20, 834, 24, 81, '16', '2011-2013, 2016-2020', 'Philosophy (Q2)'), (15602, 'International Journal of Computer Games Techn', 16877047, 0.248, 'Q3', 19, 3, 108, 57, 27, '2', '2009-2020', 'Computer Graphics and Computer-Aided Design (Q3); Human-Computer Interaction (Q3); Software (Q3)'), (15603, 'International Journal of Reliability, Quality', 2185393, 0.248, 'Q3', 30, 46, 1369, 87, 93, '37', '1996-2020', 'Aerospace Engineering (Q3); Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Industrial and Manufacturing Engineering (Q'), (15604, 'International Journal of Tourism Policy', 17504090, 0.248, 'Q4', 12, 19, 1309, 45, 52, '3', '2008-2014', 'Tourism, Leisure and Hospitality Management (Q4)'), (15605, 'Journal of Corporate Law Studies', 17578426, 0.248, 'Q2', 10, 20, 0, 27, 44, '3', '2013-2020', 'Law (Q2)'), (15606, 'Journal of Entomological Science', 7498004, 0.248, 'Q3', 30, 59, 1696, 89, 151, '2', '1993-2020', 'Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (15607, 'Journal of Environmental Accounting and Manag', 23256206, 0.248, 'Q2', 12, 29, 1296, 78, 87, '2', '2013-2020', 'Urban Studies (Q2); Accounting (Q3); Ecology (Q3); Management, Monitoring, Policy and Law (Q3); Strategy and Management (Q3); Ecological Modeling (Q4)'), (15608, 'Journal of Green Building', 19434618, 0.248, 'Q2', 21, 34, 1398, 125, 121, '2', '2006-2020', 'Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Environmental Engineering (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Developmen'), (15609, 'Journal of International Education in Busines', 2046469, 0.248, 'Q3', 12, 27, 1743, 63, 49, '3', '2008-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)'), (15610, 'Journal of Mathematical Cryptology', 18622984, 0.248, 'Q3', 18, 32, 764, 29, 42, '5', '2007-2020', 'Computational Mathematics (Q3); Computer Science Applications (Q3); Applied Mathematics (Q4)'), (15611, 'Journal of the Operations Research Society of', 4534514, 0.248, 'Q3', 28, 8, 134, 56, 57, '6', '1996-2020', 'Decision Sciences (miscellaneous) (Q3); Management Science and Operations Research (Q3)'), (15612, 'Konstantinove Listy', 13378740, 0.248, 'Q1', 6, 33, 1185, 37, 88, '53', '2015-2019', 'History (Q1); Religious Studies (Q1); Philosophy (Q2)'), (15613, 'Pensamiento Educativo', 7190409, 0.248, 'Q3', 3, 20, 1249, 21, 40, '45', '2018-2020', 'Development (Q3); Education (Q3)'), (15614, 'Research on Crops', 9723226, 0.248, 'Q3', 12, 130, 3606, 396, 364, '4', '2008-2020', 'Agronomy and Crop Science (Q3); Soil Science (Q3)'), (15615, 'Revista Brasileira de Saude Materno Infantil', 15193829, 0.248, 'Q3', 20, 62, 1543, 72, 143, '14', '2002, 2005-2020', 'Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15616, 'Revista de Neurologia', 15766578, 0.248, 'Q3', 41, 144, 4001, 383, 453, '12', '1911, 1959, 1974-1988, 1995-2020', 'Medicine (miscellaneous) (Q3); Neurology (clinical) (Q4)'), (15617, 'Revista de Psicologia Social', 15793680, 0.248, 'Q4', 21, 32, 1135, 54, 73, '3', '1986-2020', 'Social Psychology (Q4)'), (15618, 'Rhetoric and Public Affairs', 10948392, 0.248, 'Q2', 12, 16, 1840, 38, 63, '2', '2010-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3); Sociology and Political Science (Q3)'), (15619, 'Romanian Journal of Economic Forecasting', 15826163, 0.248, 'Q3', 16, 40, 1951, 128, 123, '43', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (15620, 'Smart Science', 23080477, 0.248, 'Q3', 10, 19, 586, 120, 74, '3', '2013, 2015-2020', 'Chemistry (miscellaneous) (Q3); Computational Mathematics (Q3); Computer Networks and Communications (Q3); Energy (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Fluid Flow and Transfer Proces'), (15621, 'Sociologia, Problemas e Praticas', 8736529, 0.248, 'Q3', 15, 27, 1240, 38, 67, '26', '1996-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (15622, 'State and Local Government Review', 19433409, 0.248, 'Q2', 2, 18, 833, 17, 29, '2', '2019-2020', 'Political Science and International Relations (Q2); Public Administration (Q3)'), (15623, 'Studia Psychologica', 393320, 0.248, 'Q3', 20, 23, 1294, 38, 61, '53', '1996-2020', 'Psychology (miscellaneous) (Q3)'), (15624, 'Tejuelo', 19888430, 0.248, 'Q1', 2, 27, 1116, 13, 37, '12', '2018-2020', 'Music (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (15625, 'ZWF Zeitschrift fuer Wirtschaftlichen Fabrikb', 9470085, 0.248, 'Q3', 14, 249, 3222, 213, 533, '5', '1995-2020', 'Engineering (miscellaneous) (Q3); Management Science and Operations Research (Q3); Strategy and Management (Q3)'), (15626, 'American Journal of Case Reports', 19415923, 0.247, 'Q3', 18, 559, 10130, 773, 964, '2', '2008-2020', 'Medicine (miscellaneous) (Q3)'), (15627, 'Applied Biochemistry and Microbiology', 16083024, 0.247, 'Q4', 42, 117, 4483, 330, 344, '10', '1970, 1972-1980, 1987, 1996-2020', 'Applied Microbiology and Biotechnology (Q4); Biochemistry (Q4)'), (15628, 'Archives of Academic Emergency Medicine', 26454904, 0.247, 'Q3', 12, 97, 2373, 115, 152, '15', '2019-2020', 'Emergency Medicine (Q3)'), (15629, 'Artificial Life and Robotics', 14335298, 0.247, 'Q3', 20, 90, 1886, 241, 231, '6', '2005-2020', 'Artificial Intelligence (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (15630, 'Bezopasnost Truda v Promyshlennosti', 26585537, 0.247, 'Q3', 6, 152, 2549, 115, 274, '10', '1980, 2001-2005, 2018-2020', 'Energy (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3); Chemical Health and Safety (Q4)'), (15631, 'Bioinspired, Biomimetic and Nanobiomaterials', 20459858, 0.247, 'Q3', 12, 16, 556, 58, 60, '3', '2012-2020', 'Engineering (miscellaneous) (Q3); Biomaterials (Q4)'), (15632, 'Botanica Pacifica', 24103713, 0.247, 'Q3', 5, 33, 1672, 41, 73, '10', '2016-2020', 'Ecology (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15633, 'Case Reports in Gastroenterology', 16620631, 0.247, 'Q3', 18, 101, 1404, 213, 303, '19', '2010-2020', 'Gastroenterology (Q3)'), (15634, 'Critique Internationale', 12907839, 0.247, 'Q2', 15, 40, 2467, 18, 75, '8', '2001-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (15635, 'Cuadernos de Gestion', 11316837, 0.247, 'Q3', 12, 25, 1633, 49, 44, '12', '2001-2020', 'Business and International Management (Q3); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Management (Q3)'), (15636, 'Early American Literature', 128163, 0.247, 'Q1', 14, 28, 1161, 21, 74, '2', '1973, 1979, 1981, 2000, 2002-2020', 'Literature and Literary Theory (Q1)'), (15637, 'Egitim ve Bilim', 13001337, 0.247, 'Q3', 20, 49, 3809, 154, 220, '18', '2008-2020', 'Education (Q3)'), (15638, 'Forum for Social Economics, The', 18746381, 0.247, 'Q3', 8, 45, 2091, 60, 68, '2', '1971, 1975-1998, 2004, 2012-2020', 'Economics and Econometrics (Q3); Sociology and Political Science (Q3)'), (15639, 'HAHR - Hispanic American Historical Review', 182168, 0.247, 'Q1', 22, 13, 691, 28, 46, '2', '1962, 1970, 1980, 1982, 1987, 1989, 1995, 1999, 2001-2020', 'Cultural Studies (Q1); History (Q1)'), (15640, 'Health and Technology', 21907196, 0.247, 'Q3', 18, 147, 4858, 283, 159, '5', '2011-2020', 'Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Bioengineering (Q4); Biomedical Engineering (Q4)'), (15641, 'Health SA Gesondheid', 10259848, 0.247, 'Q3', 12, 47, 1792, 116, 117, '27', '2011-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15642, 'Hellenic Plant Protection Journal', 17913691, 0.247, 'Q3', 9, 10, 413, 24, 26, '5', '2009-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (15643, 'International Journal of Materials Engineerin', 17572762, 0.247, 'Q3', 10, 20, 624, 56, 58, '3', '2009-2014', 'Materials Science (miscellaneous) (Q3)'), (15644, 'International Journal of Social Ecology and S', 19478410, 0.247, 'Q3', 9, 16, 501, 67, 59, '2', '2010-2020', 'Development (Q3); Ecology (Q3); Environmental Engineering (Q3); Management, Monitoring, Policy and Law (Q3)'), (15645, 'International Journal of Sustainable Economy', 17565812, 0.247, 'Q3', 5, 20, 1109, 57, 60, '3', '2017-2019', 'Business and International Management (Q3); Development (Q3); Economics and Econometrics (Q3); Finance (Q3); Management of Technology and Innovation (Q3)'), (15646, 'Journal of Addictions and Offender Counseling', 10553835, 0.247, 'Q2', 16, 8, 392, 22, 24, '2', '1990-2020', 'Law (Q2); Clinical Psychology (Q3); Social Psychology (Q4)'), (15647, 'Journal of Advanced Research in Fluid Mechani', 22897879, 0.247, 'Q4', 13, 381, 12182, 775, 562, '23', '2017-2020', 'Fluid Flow and Transfer Processes (Q4)'), (15648, 'Journal of Biotechnology: X', 25901559, 0.247, 'Q3', 3, 12, 424, 15, 9, '16', '2019-2020', 'Applied Microbiology and Biotechnology (Q3); Biotechnology (Q3); Bioengineering (Q4)'), (15649, 'Journal of Coastal Research', 7490208, 0.247, 'Q3', 90, 1774, 27956, 1404, 1768, '2', '1984-2020', 'Earth-Surface Processes (Q3); Ecology (Q3); Water Science and Technology (Q3)'), (15650, 'Journal of Electronic Testing: Theory and App', 15730727, 0.247, 'Q3', 34, 62, 1683, 225, 174, '16', '1990-2020', 'Electrical and Electronic Engineering (Q3)'), (15651, 'Journal of Environmental Biology', 2548704, 0.247, 'Q3', 48, 196, 7289, 394, 487, '4', '1988-2020', 'Environmental Engineering (Q3); Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)'), (15652, 'Journal of Investigative Medicine High Impact', 23247096, 0.247, 'Q3', 10, 184, 3150, 225, 286, '3', '2014-2020', 'Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3); Epidemiology (Q4)'), (15653, 'Journal of Mathematical Modeling', 2345394, 0.247, 'Q3', 4, 36, 1021, 41, 42, '15', '2018-2020', 'Computational Mathematics (Q3); Applied Mathematics (Q4); Modeling and Simulation (Q4)'), (15654, 'Journal of Pediatric Neurosciences', 18171745, 0.247, 'Q3', 18, 59, 810, 222, 254, '4', '2006-2020', 'Pediatrics, Perinatology and Child Health (Q3); Neuroscience (miscellaneous) (Q4)'), (15655, 'Language and Literature', 9639470, 0.247, 'Q1', 27, 25, 1163, 43, 50, '3', '1996-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15656, 'Madera Bosques', 14050471, 0.247, 'Q3', 13, 61, 2972, 119, 171, '30', '2008-2020', 'Forestry (Q3)'), (15657, 'Mining Science', 23535423, 0.247, 'Q3', 10, 13, 243, 42, 48, '17', '2014-2020', 'Geotechnical Engineering and Engineering Geology (Q3); Geochemistry and Petrology (Q4)'), (15658, 'Nova Prisutnost', 13342312, 0.247, 'Q1', 4, 40, 1633, 27, 95, '58', '2011-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (15659, 'Open Stem Cell Journal', 18768938, 0.247, 'Q4', 4, 1, 37, 4, 4, '16', '2011, 2013, 2018', 'Biochemistry (Q4); Cell Biology (Q4); Molecular Biology (Q4)'), (15660, 'Operative Techniques in Thoracic and Cardiova', 15328627, 0.247, 'Q3', 15, 29, 319, 28, 50, '3', '1998-2020', 'Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3); Surgery (Q3)'), (15661, 'Organised Sound', 13557718, 0.247, 'Q1', 28, 37, 1224, 38, 103, '3', '1996, 1998-2020', 'Music (Q1); Computer Science Applications (Q3)'), (15662, 'Pharmaceutical patent analyst', 20468954, 0.247, 'Q3', 15, 0, 0, 54, 47, '3', '2012-2018', 'Medicine (miscellaneous) (Q3); Pharmaceutical Science (Q3); Drug Discovery (Q4)'), (15663, 'Sexologies', 11581360, 0.247, 'Q3', 16, 40, 1531, 78, 131, '8', '2006-2020', 'Obstetrics and Gynecology (Q3); Psychology (miscellaneous) (Q3)'), (15664, 'Strategic Planning for Energy and the Environ', 10485236, 0.247, 'Q3', 8, 0, 0, 41, 40, '3', '1990-2019', 'Environmental Science (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q4)'), (15665, 'Studia Phaenomenologica', 20690061, 0.247, 'Q2', 5, 16, 576, 12, 50, '43', '2001-2018', 'Philosophy (Q2)'), (15666, 'Systems Science and Control Engineering', 21642583, 0.247, 'Q3', 23, 72, 2191, 294, 215, '3', '2013-2020', 'Artificial Intelligence (Q3); Control and Systems Engineering (Q3); Control and Optimization (Q4)'), (15667, 'Asian Journal of Plant Sciences', 16823974, 0.246, 'Q3', 30, 59, 2332, 85, 70, '34', '2006-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q3)'), (15668, 'Baylor University Medical Center Proceedings', 8998280, 0.246, 'Q3', 9, 263, 3518, 317, 434, '2', '2000, 2017-2020', 'Medicine (miscellaneous) (Q3)'), (15669, 'Beijing Ligong Daxue Xuebao/Transaction of Be', 10010645, 0.246, 'Q3', 22, 199, 2906, 382, 856, '1', '1990-2001, 2003-2020', 'Engineering (miscellaneous) (Q3)'), (15670, 'Boletin de Geologia', 21458553, 0.246, 'Q3', 7, 28, 1217, 48, 70, '47', '2012-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (15671, 'Central European Business Review', 18054854, 0.246, 'Q3', 6, 23, 1404, 62, 56, '31', '2017-2020', 'Business and International Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (15672, 'Clinical Nurse Specialist', 8876274, 0.246, 'Q2', 33, 69, 944, 110, 174, '2', '1987-2020', 'Advanced and Specialized Nursing (Q2); Assessment and Diagnosis (Q3); LPN and LVN (Q3); Leadership and Management (Q4)'), (15673, 'Continuity and Change', 1469218, 0.246, 'Q1', 25, 16, 1572, 22, 46, '3', '1986-2020', 'History (Q1); Social Sciences (miscellaneous) (Q3)'), (15674, 'Custos e Agronegocio', 18082882, 0.246, 'Q3', 8, 105, 4479, 168, 302, '14', '2009-2020', 'Accounting (Q3); Agronomy and Crop Science (Q3); Business, Management and Accounting (miscellaneous) (Q3)'), (15675, 'DETUROPE', 18212506, 0.246, 'Q3', 7, 26, 1052, 79, 97, '55', '2017-2019', 'Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (15676, 'Engineering Journal', 1258281, 0.246, 'Q3', 20, 101, 3556, 342, 350, '40', '2009-2020', 'Engineering (miscellaneous) (Q3)'), (15677, 'Finance a Uver - Czech Journal of Economics a', 151920, 0.246, 'Q3', 19, 20, 824, 65, 72, '31', '1996-2020', 'Accounting (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (15678, 'Gifted and Talented International', 15332276, 0.246, 'Q3', 12, 8, 460, 16, 25, '2', '1996-2020', 'Education (Q3); Developmental and Educational Psychology (Q4)'), (15679, 'History of Humanities', 23793171, 0.246, 'Q2', 5, 21, 1033, 25, 75, '2', '2016-2020', 'Arts and Humanities (miscellaneous) (Q2)'), (15680, 'IEEJ Transactions on Power and Energy', 3854213, 0.246, 'Q3', 27, 121, 1351, 152, 332, '6', '1972-1989, 2003-2020', 'Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)'), (15681, 'Insight on Africa', 9763465, 0.246, 'Q1', 7, 9, 397, 29, 29, '3', '2009, 2014-2020', 'History (Q1); Political Science and International Relations (Q2); Development (Q3)'), (15682, 'Intangible Capital', 20143214, 0.246, 'Q3', 14, 9, 344, 113, 83, '12', '2009-2020', 'Accounting (Q3); Business and International Management (Q3); Education (Q3); Management of Technology and Innovation (Q3); Organizational Behavior and Human Resource Management (Q3); Strategy and Mana'), (15683, 'Intelligenza Artificiale', 17248035, 0.246, 'Q3', 4, 23, 1052, 25, 23, '16', '2018-2020', 'Artificial Intelligence (Q3)'), (15684, 'International Journal of Applied Cryptography', 17530571, 0.246, 'Q3', 15, 4, 105, 15, 12, '19', '2008-2010, 2012-2014', 'Computational Mathematics (Q3); Computer Networks and Communications (Q3); Applied Mathematics (Q4); Computational Theory and Mathematics (Q4)'), (15685, 'International Journal of Monetary Economics a', 17520487, 0.246, 'Q3', 10, 39, 1516, 84, 83, '19', '2011-2014, 2018, 2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (15686, 'International Studies in Catholic Education', 19422539, 0.246, 'Q1', 8, 19, 546, 25, 49, '3', '2010-2020', 'Religious Studies (Q1); Education (Q3)'), (15687, 'Journal of Contemporary Mathematical Analysis', 10683623, 0.246, 'Q4', 8, 38, 611, 50, 115, '10', '2009-2020', 'Analysis (Q4); Applied Mathematics (Q4); Control and Optimization (Q4)'), (15688, 'Journal of Developing Societies', 169796, 0.246, 'Q3', 21, 21, 913, 65, 65, '3', '1985-2020', 'Development (Q3); Geography, Planning and Development (Q3)'), (15689, 'Journal of Optical Communications', 21916322, 0.246, 'Q3', 17, 192, 4759, 477, 283, '5', '1980-2020', 'Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4)'), (15690, 'Journal of Plant Biotechnology', 12292818, 0.246, 'Q3', 8, 41, 1509, 106, 150, '13', '2012-2020', 'Agronomy and Crop Science (Q3); Biotechnology (Q3); Plant Science (Q3)'), (15691, 'Journal of Public and Nonprofit Affairs', 23813717, 0.246, 'Q3', 6, 20, 1101, 32, 47, '2', '2015-2019', 'Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Organizational Behavior and Human Resource Management (Q3); Public Administration (Q3); Sociology '), (15692, 'Journal of Religion in Europe', 18748929, 0.246, 'Q1', 11, 20, 1024, 16, 32, '16', '2008-2020', 'Religious Studies (Q1)'), (15693, 'Medical Letter on Drugs and Therapeutics', 25732, 0.246, 'Q3', 19, 98, 526, 125, 179, '2', '1965-2020', 'Medicine (miscellaneous) (Q3); Pharmacology (Q3); Pharmacology (medical) (Q3)'), (15694, 'Middle East Development Journal', 17938120, 0.246, 'Q3', 8, 17, 660, 37, 40, '3', '2012-2020', 'Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (15695, 'Notices of the American Mathematical Society', 29920, 0.246, 'Q3', 37, 218, 1410, 156, 97, '2', '1995, 2004-2020', 'Mathematics (miscellaneous) (Q3)'), (15696, 'Ortopedia Traumatologia Rehabilitacja', 20844336, 0.246, 'Q3', 22, 49, 698, 80, 149, '17', '2002-2020', 'Orthopedics and Sports Medicine (Q3); Rehabilitation (Q3)'), (15697, 'Polymer Science - Series B', 15556123, 0.246, 'Q3', 19, 79, 2968, 268, 266, '10', '1996-2020', 'Ceramics and Composites (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (15698, 'Publications de l Institut Mathematique', 3501302, 0.246, 'Q3', 17, 29, 534, 69, 121, '55', '2005, 2007-2020', 'Mathematics (miscellaneous) (Q3)'), (15699, 'Review of Education, Pedagogy, and Cultural S', 15563022, 0.246, 'Q1', 21, 32, 1485, 49, 66, '3', '1994-2020', 'Cultural Studies (Q1); Education (Q3)'), (15700, 'Seed Science and Technology', 2510952, 0.246, 'Q3', 42, 1, 18, 58, 75, '19', '1977, 1993-1994, 1996-2020', 'Agronomy and Crop Science (Q3); Horticulture (Q3); Plant Science (Q3)'), (15701, 'Shima', 18346049, 0.246, 'Q1', 4, 32, 1639, 39, 76, '11', '2017-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Geography, Planning and Development (Q3)'), (15702, 'Sociologia', 491225, 0.246, 'Q3', 13, 26, 1422, 48, 78, '53', '1998, 2002-2020', 'Sociology and Political Science (Q3)'), (15703, 'Thaiszia Journal of Botany', 12100420, 0.246, 'Q3', 8, 13, 573, 17, 41, '53', '2009-2020', 'Plant Science (Q3)'), (15704, 'Vestnik Tomskogo Gosudarstvennogo Universitet', 23112255, 0.246, 'Q3', 5, 60, 1049, 100, 198, '10', '2017-2020', 'Computational Mechanics (Q3); Mathematics (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (15705, 'Ying Yong Li Xue Xue Bao/Chinese Journal of A', 10004939, 0.246, 'Q3', 16, 371, 6737, 454, 594, '1', '1997-1999, 2001-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q3)'), (15706, 'Zhongguo Huanjing Kexue/China Environmental S', 10006923, 0.246, 'Q3', 28, 616, 22902, 1950, 1761, '1', '2001-2020', 'Environmental Science (miscellaneous) (Q3)'), (15707, 'Zoology and Ecology', 21658005, 0.246, 'Q3', 18, 20, 919, 85, 114, '3', '2012-2020', 'Animal Science and Zoology (Q3); Ecology (Q3)'), (15708, 'Acta Arachnologica', 15202, 0.245, 'Q4', 15, 21, 328, 18, 40, '6', '1936-1942, 1944, 1947-1955, 1957-1961, 1963-1978, 1980-2020', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (15709, 'Agris On-line Papers in Economics and Informa', 18041930, 0.245, 'Q3', 16, 31, 1147, 121, 117, '31', '2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q'), (15710, 'Archeometriai Muhely', 1786271, 0.245, 'Q2', 7, 0, 0, 19, 37, '50', '2010-2019', 'Archeology (arts and humanities) (Q2)'), (15711, 'Australian Journal of Anthropology, The', 10358811, 0.245, 'Q2', 25, 26, 1132, 47, 67, '2', '1990-2020', 'Anthropology (Q2)'), (15712, 'Australian Journal of Emergency Management', 13241540, 0.245, 'Q2', 26, 66, 786, 102, 158, '11', '1998-2018', 'Emergency Medical Services (Q2); Health Professions (miscellaneous) (Q3); Safety Research (Q3)'), (15713, 'Black Scholar', 64246, 0.245, 'Q1', 15, 39, 0, 33, 54, '3', '1969-2020', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Sociology and Political Science (Q3)'), (15714, 'British Journal of Middle Eastern Studies', 14693542, 0.245, 'Q1', 24, 99, 313, 93, 139, '3', '1992-2020', 'History (Q1); Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (15715, 'Capitalism and Society', 21946140, 0.245, 'Q1', 11, 0, 0, 7, 3, '2', '2009-2012, 2014-2017', 'History (Q1); Economics and Econometrics (Q3); Sociology and Political Science (Q3)'), (15716, 'Computational Thermal Sciences', 19402554, 0.245, 'Q3', 17, 34, 1080, 110, 104, '2', '2009-2020', 'Computational Mathematics (Q3); Energy Engineering and Power Technology (Q3); Fluid Flow and Transfer Processes (Q4); Surfaces and Interfaces (Q4)'), (15717, 'Computer Fraud and Security', 13613723, 0.245, 'Q2', 26, 46, 339, 185, 150, '3', '1996-2020', 'Law (Q2); Computer Science (miscellaneous) (Q3)'), (15718, 'Economic Papers', 17593441, 0.245, 'Q3', 19, 34, 1548, 67, 82, '2', '1994, 1999, 2003, 2016-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (15719, 'Estudos de Psicologia (Campinas)', 19820275, 0.245, 'Q3', 8, 50, 1818, 83, 124, '14', '2015-2021', 'Psychology (miscellaneous) (Q3)'), (15720, 'Ethnomusicology Forum', 17411920, 0.245, 'Q1', 6, 17, 707, 21, 52, '3', '2015-2020', 'Music (Q1); Anthropology (Q2)'), (15721, 'European Journal of Pure and Applied Mathemat', 13075543, 0.245, 'Q3', 5, 79, 1374, 74, 116, '2', '2019-2020', 'Numerical Analysis (Q3); Algebra and Number Theory (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4); Statistics and Probability (Q4); Theoretical Computer Science (Q4)'), (15722, 'Folia Medica', 2048043, 0.245, 'Q4', 21, 127, 0, 224, 223, '61', '1961, 1964-2020', 'Medicine (miscellaneous) (Q4)'), (15723, 'Gruppe. Interaktion. Organisation. Zeitschrif', 23666145, 0.245, 'Q3', 11, 46, 1705, 58, 115, '5', '2016-2020', 'Education (Q3); Organizational Behavior and Human Resource Management (Q3); Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Social Psychology (Q4)'), (15724, 'Indian Journal of Geo-Marine Sciences', 9751033, 0.245, 'Q4', 36, 223, 6620, 451, 807, '4', '2007-2020', 'Oceanography (Q4)'), (15725, 'Indian Journal of Pharmaceutical Sciences', 250474, 0.245, 'Q3', 57, 239, 6657, 461, 381, '4', '1978-2020', 'Pharmaceutical Science (Q3)'), (15726, 'International Journal of Comparative Educatio', 23094907, 0.245, 'Q3', 5, 12, 620, 31, 40, '3', '2018-2020', 'Education (Q3)'), (15727, 'International Journal of Data Analysis Techni', 17558050, 0.245, 'Q3', 15, 19, 661, 54, 64, '19', '2011-2014, 2020', 'Information Systems (Q3); Information Systems and Management (Q3); Applied Mathematics (Q4)'), (15728, 'Journal of Failure Analysis and Prevention', 18641245, 0.245, 'Q3', 26, 245, 5613, 464, 480, '2', '2001-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Safety, Risk, Reliability and Quality (Q3)'), (15729, 'Langage et Societe', 1814095, 0.245, 'Q2', 14, 37, 1399, 21, 84, '8', '2000-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15730, 'Malaysian Journal of Pathology', 1268635, 0.245, 'Q3', 21, 66, 1618, 107, 144, '23', '1979-1983, 1985-2020', 'Pathology and Forensic Medicine (Q3); Cell Biology (Q4); Histology (Q4); Medicine (miscellaneous) (Q4)'), (15731, 'Midwest Studies in Philosophy', 3636550, 0.245, 'Q2', 31, 0, 0, 30, 62, '3', '1976-1984, 1986-2019', 'Philosophy (Q2)'), (15732, 'Multiple Sclerosis and Demyelinating Disorder', 20566115, 0.245, 'Q4', 2, 0, 0, 3, 3, '3', '2017, 2019', 'Immunology (Q4); Immunology and Allergy (Q4); Neurology (Q4); Neurology (clinical) (Q4)'), (15733, 'Palpu Chongi Gisul/Journal of Korea Technical', 2533200, 0.245, 'Q2', 12, 36, 657, 82, 245, '13', '2000-2019', 'Media Technology (Q2); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (15734, 'Problemy Ekorozwoju', 18956912, 0.245, 'Q3', 20, 61, 2332, 111, 116, '17', '2008-2020', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q4)'), (15735, 'Progress In Electromagnetics Research Letters', 19376480, 0.245, 'Q3', 33, 128, 2243, 464, 466, '2', '2008-2020', 'Electronic, Optical and Magnetic Materials (Q3)'), (15736, 'Revista Brasileirade Ciencias Agrarias', 19811160, 0.245, 'Q3', 13, 105, 3220, 135, 204, '14', '2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (15737, 'Russian Journal of Communication', 19409419, 0.245, 'Q2', 7, 19, 813, 50, 64, '3', '2008-2011, 2013-2020', 'Political Science and International Relations (Q2); Communication (Q3)'), (15738, 'SAGE Open Nursing', 23779608, 0.245, 'Q3', 5, 55, 1929, 61, 74, '2', '2018-2020', 'Nursing (miscellaneous) (Q3)'), (15739, 'Shiyou Diqiu Wuli Kantan/Oil Geophysical Pros', 10007210, 0.245, 'Q3', 24, 167, 4519, 575, 575, '1', '1998, 2001-2020', 'Energy Engineering and Power Technology (Q3); Geology (Q3); Geotechnical Engineering and Engineering Geology (Q3)'), (15740, 'Studies in Communication Sciences', 14244896, 0.245, 'Q3', 8, 20, 755, 41, 59, '5', '2012-2020', 'Communication (Q3)'), (15741, 'Unasylva', 416436, 0.245, 'Q3', 30, 0, 0, 22, 21, '7', '1977-1988, 1990, 1995-2018', 'Ecology (Q3); Forestry (Q3); Geography, Planning and Development (Q3)'), (15742, 'Urology Case Reports', 22144420, 0.245, 'Q3', 9, 406, 1941, 354, 677, '2', '2013-2020', 'Urology (Q3)'), (15743, 'Vestnik Drevnei Istorii', 3210391, 0.245, 'Q1', 4, 37, 1608, 28, 133, '10', '2016-2020', 'Classics (Q1); History (Q1); Archeology (arts and humanities) (Q2); Linguistics and Language (Q2)'), (15744, 'Acta Limnologica Brasiliensia', 1026712, 0.244, 'Q3', 16, 36, 1787, 124, 116, '14', '2011-2020', 'Ecology (Q3); Water Science and Technology (Q3); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (15745, 'African Finance Journal', 16059786, 0.244, 'Q3', 6, 0, 0, 31, 23, '27', '2013-2019', 'Finance (Q3)'), (15746, 'Asian Journal of Anesthesiology', 2468824, 0.244, 'Q3', 26, 26, 0, 41, 55, '22', '2017-2019', 'Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q4)'), (15747, 'Breast Disease', 8886008, 0.244, 'Q4', 33, 21, 657, 47, 53, '16', '1987-1996, 1998-2008, 2010-2020', 'Cancer Research (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4)'), (15748, 'Canadian Journal of Linguistics', 17101115, 0.244, 'Q2', 17, 22, 1030, 51, 80, '9', '1996-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15749, 'Canadian Journal of Physics', 84204, 0.244, 'Q3', 57, 150, 5713, 703, 533, '9', '1970-1991, 1993-1994, 1996-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (15750, 'Comparative Economic Research', 15082008, 0.244, 'Q3', 8, 12, 371, 89, 100, '5', '2009-2013, 2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (15751, 'Comptes Rendus de L Academie Bulgare des Scie', 13101331, 0.244, 'Q2', 17, 68, 1076, 226, 545, '61', '1977-1985, 2002, 2007-2020', 'Multidisciplinary (Q2)'), (15752, 'Computer Science and Information Systems', 24061018, 0.244, 'Q3', 24, 71, 2213, 166, 123, '55', '2008-2020', 'Computer Science (miscellaneous) (Q3)'), (15753, 'Current Optics and Photonics', 25087266, 0.244, 'Q4', 7, 64, 1451, 180, 237, '13', '2017-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (15754, 'Global Studies of Childhood', 20436106, 0.244, 'Q3', 4, 47, 1868, 47, 57, '3', '2018-2020', 'Demography (Q3); Development (Q3); Education (Q3); Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4)'), (15755, 'Hokkaido Mathematical Journal', 3854035, 0.244, 'Q3', 27, 5, 131, 72, 85, '6', '1972-2020', 'Mathematics (miscellaneous) (Q3)'), (15756, 'Human Sport Medicine', 25000209, 0.244, 'Q3', 5, 82, 1494, 95, 216, '10', '2016-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (15757, 'International Economic Journal', 1743517, 0.244, 'Q3', 26, 34, 1579, 99, 102, '3', '1987-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (15758, 'International Journal of Emergency Management', 17415071, 0.244, 'Q3', 24, 9, 493, 42, 64, '3', '2003-2014', 'Emergency Medicine (Q3)'), (15759, 'Journal of Agricultural and Food Industrial O', 15420485, 0.244, 'Q3', 21, 28, 1274, 25, 38, '5', '2003-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Food Science (Q3)'), (15760, 'Journal of Agricultural and Food Information', 15404722, 0.244, 'Q3', 13, 13, 313, 65, 76, '2', '1993-1996, 2000, 2002-2004, 2006-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3); Information Systems and Management (Q3)'), (15761, 'Journal of Economics and Finance', 10550925, 0.244, 'Q3', 30, 40, 1655, 120, 135, '2', '1992-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (15762, 'Journal of Engineering (United States)', 23144912, 0.244, 'Q3', 20, 25, 2394, 135, 89, '32', '2013-2020', 'Chemical Engineering (miscellaneous) (Q3); Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Industrial and Manufacturing Engineering ('), (15763, 'Journal of Forensic Practice', 20508808, 0.244, 'Q2', 19, 19, 767, 53, 83, '3', '2013-2020', 'Law (Q2); Pathology and Forensic Medicine (Q3); Psychiatry and Mental Health (Q3); Applied Psychology (Q4)'), (15764, 'Journal of Pharmaceutical Health Services Res', 17598885, 0.244, 'Q2', 15, 56, 1734, 113, 142, '3', '2010-2020', 'Pharmacy (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (15765, 'Journal of Physical Science', 16753402, 0.244, 'Q3', 20, 26, 708, 220, 192, '23', '2011-2020', 'Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3)'), (15766, 'Journal of South Asian Development', 9731741, 0.244, 'Q1', 13, 16, 797, 49, 40, '4', '2006-2007, 2009-2020', 'History (Q1); Business and International Management (Q3); Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (15767, 'Journal of Wealth Management', 15347524, 0.244, 'Q3', 12, 38, 900, 60, 123, '2', '2008-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (15768, 'Macroheterocycles', 19989539, 0.244, 'Q4', 17, 38, 1281, 172, 184, '10', '2008-2020', 'Analytical Chemistry (Q4); Organic Chemistry (Q4)'), (15769, 'Nevtani Ertesito', 1392190, 0.244, 'Q2', 5, 10, 506, 5, 28, '50', '2011-2018, 2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15770, 'Non-ferrous Metals', 20720807, 0.244, 'Q3', 7, 19, 557, 44, 54, '10', '2013-2020', 'Ceramics and Composites (Q3); Metals and Alloys (Q3)'), (15771, 'Nukleonika', 15085791, 0.244, 'Q3', 23, 34, 611, 82, 77, '17', '1968, 1970, 1973-1974, 1978, 1981, 1996-2020', 'Instrumentation (Q3); Nuclear Energy and Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Waste Management and Disposal (Q3); Condensed Matter Physics (Q4); Nuclear and High Energy Physic'), (15772, 'Onomazein', 7171285, 0.244, 'Q2', 11, 24, 842, 61, 108, '45', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15773, 'Ornis Hungarica', 12151610, 0.244, 'Q3', 8, 12, 607, 27, 63, '50', '1992, 2009, 2011-2020', 'Animal Science and Zoology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15774, 'Postepy biochemii', 325422, 0.244, 'Q4', 15, 3, 0, 75, 100, '17', '1954, 1956-2020', 'Medicine (miscellaneous) (Q4)'), (15775, 'Rechtsmedizin', 14345196, 0.244, 'Q3', 22, 61, 1656, 76, 182, '5', '1995-2020', 'Pathology and Forensic Medicine (Q3)'), (15776, 'Romanian Journal of European Affairs', 15828271, 0.244, 'Q2', 7, 14, 555, 21, 39, '43', '2011-2020', 'Political Science and International Relations (Q2)'), (15777, 'South African Journal of Clinical Nutrition', 22211268, 0.244, 'Q3', 20, 31, 975, 64, 66, '3', '2001-2020', 'Nutrition and Dietetics (Q3); Medicine (miscellaneous) (Q4)'), (15778, 'Archivos de la Sociedad Espanola de Oftalmolo', 3656691, 0.243, 'Q4', 23, 251, 3141, 256, 485, '12', '1973-1986, 1989-1997, 2000-2020', 'Ophthalmology (Q4)'), (15779, 'Asian Affairs', 3068374, 0.243, 'Q2', 12, 37, 0, 75, 69, '3', '1979, 1995-2020', 'Law (Q2); Political Science and International Relations (Q2); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)'), (15780, 'BPA Applied Psychology Bulletin', 66761, 0.243, 'Q4', 7, 1, 45, 38, 43, '7', '2014-2019', 'Applied Psychology (Q4)'), (15781, 'Comparative Clinical Pathology', 1618565, 0.243, 'Q3', 31, 157, 5865, 630, 669, '3', '1996-2020', 'Anatomy (Q3); Pathology and Forensic Medicine (Q3)'), (15782, 'Comprehensive Child and Adolescent Nursing', 24694207, 0.243, 'Q3', 37, 58, 1997, 88, 118, '3', '2016-2020', 'Pediatrics (Q3)'), (15783, 'Cultura, Ciencia y Deporte', 16965043, 0.243, 'Q3', 12, 50, 2516, 80, 71, '12', '2009-2020', 'Health (social science) (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (15784, 'Eastern Journal of European Studies', 20686633, 0.243, 'Q1', 5, 47, 2111, 62, 64, '43', '2017-2020', 'History (Q1); Political Science and International Relations (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (15785, 'European Journal of Risk Regulation', 21908249, 0.243, 'Q2', 16, 70, 2970, 127, 164, '5', '2010-2020', 'Law (Q2); Safety Research (Q3)'), (15786, 'Evolution Psychiatrique', 17696674, 0.243, 'Q2', 13, 69, 2425, 61, 177, '8', '1948-1979, 1996-2020', 'Arts and Humanities (miscellaneous) (Q2); Psychiatry and Mental Health (Q3)'), (15787, 'Geofizika', 3523659, 0.243, 'Q3', 16, 11, 543, 39, 33, '58', '1989-1992, 1996-1999, 2001, 2003-2020', 'Geophysics (Q3)'), (15788, 'Geography Research Forum', 3335275, 0.243, 'Q3', 12, 0, 0, 5, 7, '36', '1990-1993, 1995-2013, 2015-2016', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (15789, 'Indian Journal of Fibre and Textile Research', 9710426, 0.243, 'Q3', 42, 67, 1695, 167, 189, '4', '1990-2020', 'Chemical Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Polymers and Plastics (Q3)'), (15790, 'International Journal of Business Performance', 17589401, 0.243, 'Q3', 15, 16, 1044, 46, 36, '3', '2009-2019', 'Business and International Management (Q3); Strategy and Management (Q3); Management Science and Operations Research (Q4)'), (15791, 'International Journal of Group Psychotherapy', 207284, 0.243, 'Q3', 28, 27, 1288, 64, 108, '3', '1961-2020', 'Clinical Psychology (Q3)'), (15792, 'International Journal of Information Security', 19301650, 0.243, 'Q3', 14, 19, 753, 85, 73, '2', '2007-2020', 'Information Systems (Q3)'), (15793, 'International Journal of Thermodynamics', 13019724, 0.243, 'Q3', 32, 22, 930, 51, 74, '18', '2000-2020', 'Engineering (miscellaneous) (Q3); Condensed Matter Physics (Q4)'), (15794, 'Journal of Information Technology Case and Ap', 15228053, 0.243, 'Q3', 16, 20, 730, 87, 36, '2', '2005-2020', 'Information Systems and Management (Q3); Management Science and Operations Research (Q4)'), (15795, 'Journal of International Wildlife Law and Pol', 15481476, 0.243, 'Q2', 18, 14, 153, 27, 41, '3', '1998-2020', 'Law (Q2); Ecology (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)'), (15796, 'Journal of Southern History', 224642, 0.243, 'Q1', 17, 15, 2286, 15, 44, '2', '1959, 1965, 1968-1971, 1976-1977, 1981-1986, 2000, 2002-2020', 'History (Q1)'), (15797, 'Mausam', 2529416, 0.243, 'Q3', 12, 59, 1635, 95, 155, '4', '1979, 1981, 1983, 1985, 2008-2020', 'Geophysics (Q3); Atmospheric Science (Q4)'), (15798, 'Media Watch', 9760911, 0.243, 'Q1', 9, 59, 2627, 129, 164, '4', '2014-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3)'), (15799, 'Nippon Suisan Gakkaishi', 215392, 0.243, 'Q4', 25, 93, 1161, 85, 286, '6', '1932-1944, 1947-2020', 'Aquatic Science (Q4)'), (15800, 'Open Engineering', 23915439, 0.243, 'Q3', 24, 118, 3152, 273, 190, '17', '2015-2020', 'Aerospace Engineering (Q3); Civil and Structural Engineering (Q3); Electrical and Electronic Engineering (Q3); Environmental Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engine'), (15801, 'Otorinolaringologia', 3926621, 0.243, 'Q3', 7, 27, 544, 49, 93, '43', '1952-1971, 1973-2020', 'Otorhinolaryngology (Q3)'), (15802, 'Pathologica', 312983, 0.243, 'Q3', 18, 40, 506, 66, 93, '7', '1945-1948, 1950-2020', 'Pathology and Forensic Medicine (Q3)'), (15803, 'Philosophy, Psychiatry and Psychology', 10863303, 0.243, 'Q2', 13, 53, 1359, 63, 74, '2', '2011-2020', 'Philosophy (Q2); Ecology (Q3); Psychiatry and Mental Health (Q3)'), (15804, 'Reviews in Medical Microbiology', 14735601, 0.243, 'Q4', 27, 14, 650, 82, 83, '2', '1990-2020', 'Microbiology (medical) (Q4)'), (15805, 'Revista CIDOB d Afers Internacionals', 2013035, 0.243, 'Q2', 4, 25, 847, 47, 88, '12', '2016-2020', 'Political Science and International Relations (Q2)'), (15806, 'Revista Mexicana de Psicologia', 1856073, 0.243, 'Q3', 17, 8, 331, 30, 42, '30', '1996-2009, 2011-2019', 'Psychology (miscellaneous) (Q3)'), (15807, 'Salud Colectiva', 16692381, 0.243, 'Q3', 12, 66, 1949, 74, 125, '46', '2008-2020', 'Health Policy (Q3); Public Health, Environmental and Occupational Health (Q4)'), (15808, 'SMPTE Motion Imaging Journal', 15450279, 0.243, 'Q2', 20, 100, 604, 106, 226, '2', '2002-2020', 'Media Technology (Q2); Electrical and Electronic Engineering (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (15809, 'Southeast Asian Studies', 21867275, 0.243, 'Q2', 8, 14, 903, 36, 51, '6', '2012-2020', 'Political Science and International Relations (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (15810, 'Water Practice and Technology', 1751231, 0.243, 'Q3', 15, 104, 3103, 272, 294, '3', '2011-2020', 'Water Science and Technology (Q3)'), (15811, 'Advanced Electromagnetics', 21190275, 0.242, 'Q3', 15, 33, 770, 211, 191, '8', '2012-2020', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Radiation (Q4)'), (15812, 'Agronomia Colombiana', 1209965, 0.242, 'Q3', 11, 30, 1196, 67, 101, '47', '2010, 2012-2020', 'Agronomy and Crop Science (Q3)'), (15813, 'American Communication Journal', 15325865, 0.242, 'Q3', 13, 2, 65, 11, 23, '2', '1997-2004, 2006-2019', 'Communication (Q3)'), (15814, 'Anthropological Journal of European Cultures', 17552923, 0.242, 'Q1', 7, 17, 582, 41, 61, '2', '2008-2020', 'Cultural Studies (Q1); Anthropology (Q2)'), (15815, 'Astrophysics', 15738191, 0.242, 'Q4', 18, 54, 1484, 116, 156, '5', '1965-1991, 1993-1996, 1999-2020', 'Astronomy and Astrophysics (Q4)'), (15816, 'Baltica', 673064, 0.242, 'Q3', 17, 16, 747, 43, 45, '69', '1994-1995, 1997-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (15817, 'BAR - Brazilian Administration Review', 18077692, 0.242, 'Q3', 15, 24, 1429, 66, 60, '14', '2009-2020', 'Strategy and Management (Q3)'), (15818, 'Clinical Pathology', 2632010, 0.242, 'Q4', 10, 18, 440, 29, 34, '3', '2019-2020', 'Histology (Q4); Microbiology (medical) (Q4); Pathology and Forensic Medicine (Q4)'), (15819, 'Colonial Latin American Review', 10609164, 0.242, 'Q2', 12, 30, 1607, 29, 70, '3', '1992-1996, 2001, 2003-2020', 'Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q3)'), (15820, 'Contributions to Political Economy', 14643588, 0.242, 'Q3', 19, 4, 116, 3, 18, '3', '1982-2003, 2005-2019', 'Economics and Econometrics (Q3); Sociology and Political Science (Q3)'), (15821, 'Der Anaesthesist', 32417, 0.242, 'Q3', 44, 154, 4058, 317, 345, '5', '1952-2020', 'Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q4)'), (15822, 'Economie et Statistique', 17775574, 0.242, 'Q3', 13, 10, 395, 52, 82, '8', '1977-1998, 2007-2020', 'Economics and Econometrics (Q3); Sociology and Political Science (Q3); Statistics and Probability (Q4)'), (15823, 'Egitim Arastirmalari - Eurasian Journal of Ed', 1302597, 0.242, 'Q3', 17, 67, 3859, 175, 195, '18', '2008-2020', 'Education (Q3)'), (15824, 'Electronic Notes in Theoretical Computer Scie', 15710661, 0.242, 'Q3', 60, 20, 381, 233, 229, '16', '1995-2019', 'Computer Science (miscellaneous) (Q3); Theoretical Computer Science (Q4)'), (15825, 'Finisterra', 4305027, 0.242, 'Q3', 10, 62, 1373, 48, 86, '26', '1978-1990, 1992-2002, 2007, 2012-2019', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (15826, 'Harvard Papers in Botany', 10434534, 0.242, 'Q3', 9, 30, 696, 25, 78, '2', '2009-2010, 2012, 2014-2019', 'Plant Science (Q3)'), (15827, 'Heterocycles', 3855414, 0.242, 'Q3', 64, 167, 5366, 426, 651, '6', '1983-2020', 'Pharmacology (Q3); Analytical Chemistry (Q4); Organic Chemistry (Q4)'), (15828, 'Historia y Comunicacion Social', 19883056, 0.242, 'Q1', 9, 53, 1712, 60, 105, '12', '2010-2020', 'History (Q1); Communication (Q3); Sociology and Political Science (Q3)'), (15829, 'International Journal of Geotechnical Earthqu', 19478496, 0.242, 'Q3', 8, 6, 264, 27, 30, '2', '2010-2020', 'Geotechnical Engineering and Engineering Geology (Q3)'), (15830, 'International Journal of Knowledge-Based and ', 13272314, 0.242, 'Q3', 20, 25, 666, 123, 66, '16', '2004-2020', 'Control and Systems Engineering (Q3); Software (Q3); Artificial Intelligence (Q4)'), (15831, 'Journal of Interactive Online Learning', 15414914, 0.242, 'Q3', 35, 0, 0, 14, 12, '2', '2002-2018', 'Computer Science Applications (Q3); Education (Q3); Human-Computer Interaction (Q3); E-learning (Q4)'), (15832, 'Journal of Krishna Institute of Medical Scien', 22314261, 0.242, 'Q4', 10, 56, 1055, 107, 201, '4', '2012-2020', 'Medicine (miscellaneous) (Q4)'), (15833, 'Journal of Medical Devices, Transactions of t', 1932619, 0.242, 'Q4', 29, 31, 802, 141, 171, '2', '2007-2020', 'Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)'), (15834, 'Journal of Operations and Supply Chain Manage', 19843046, 0.242, 'Q3', 2, 0, 0, 8, 15, '14', '2018', 'Information Systems and Management (Q3); Management Information Systems (Q3); Management Science and Operations Research (Q4)'), (15835, 'Journal of the North Atlantic', 19351933, 0.242, 'Q1', 7, 2, 131, 17, 30, '2', '2012, 2014-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (15836, 'JPMA. The Journal of the Pakistan Medical Ass', 309982, 0.242, 'Q4', 43, 666, 3013, 893, 1291, '34', '1966, 1972-2020', 'Medicine (miscellaneous) (Q4)'), (15837, 'Kerntechnik', 9323902, 0.242, 'Q3', 18, 57, 842, 58, 202, '5', '1969-1971, 1973-1978, 1988-1993, 1995-2020', 'Materials Science (miscellaneous) (Q3); Nuclear Energy and Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Nuclear and High Energy Physics (Q4); Radiation (Q4)'), (15838, 'Law and Ethics of Human Rights', 19382545, 0.242, 'Q2', 11, 10, 891, 18, 32, '5', '2010-2019', 'Law (Q2); Sociology and Political Science (Q3)'), (15839, 'Person-Centered and Experiential Psychotherap', 17529182, 0.242, 'Q3', 16, 28, 993, 25, 64, '2', '2002-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3); Developmental and Educational Psychology (Q4)'), (15840, 'Physics of Particles and Nuclei', 10637796, 0.242, 'Q4', 39, 125, 3475, 219, 335, '10', '1996-2020', 'Nuclear and High Energy Physics (Q4)'), (15841, 'Pigment and Resin Technology', 3699420, 0.242, 'Q3', 32, 100, 3114, 237, 201, '3', '1972-2020', 'Materials Chemistry (Q3); Surfaces, Coatings and Films (Q3)'), (15842, 'Revue de Medecine Veterinaire', 351555, 0.242, 'Q3', 33, 0, 0, 77, 90, '8', '1949, 1961, 1973-1989, 1996-2019', 'Veterinary (miscellaneous) (Q3)'), (15843, 'Social Analysis', 155977, 0.242, 'Q1', 25, 33, 1369, 65, 82, '2', '2002-2020', 'Cultural Studies (Q1); Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Sociology and Political Science (Q3)'), (15844, 'South African Journal of International Affair', 10220461, 0.242, 'Q2', 17, 25, 0, 71, 84, '3', '1993-2020', 'Political Science and International Relations (Q2)'), (15845, 'SPIIRAS Proceedings', 20789181, 0.242, 'Q3', 9, 47, 1625, 205, 164, '10', '2016-2020', 'Computer Networks and Communications (Q3); Control and Systems Engineering (Q3); Applied Mathematics (Q4); Artificial Intelligence (Q4)'), (15846, 'Tempo e Argumento', 21751803, 0.242, 'Q1', 6, 66, 2158, 31, 164, '14', '2009-2020', 'History (Q1)'), (15847, 'Transactions of the Royal Institution of Nava', 14798751, 0.242, 'Q3', 17, 18, 498, 64, 104, '3', '2006-2020', 'Environmental Engineering (Q3); Ocean Engineering (Q3)'), (15848, 'Wiadomosci Konserwatorskie', 8602395, 0.242, 'Q2', 2, 63, 1122, 24, 61, '17', '2019-2020', 'Architecture (Q2); Conservation (Q2)'), (15849, 'World Journal of Entrepreneurship, Management', 20425961, 0.242, 'Q1', 3, 37, 2342, 16, 18, '3', '2019-2020', 'Cultural Studies (Q1); Business and International Management (Q3); Demography (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3); Strategy and Managem'), (15850, 'African Journal of Social Work', 24095605, 0.241, 'Q3', 3, 35, 617, 32, 45, '97', '2018-2020', 'Education (Q3); Health (social science) (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (15851, 'AIJ Journal of Technology and Design', 18818188, 0.241, 'Q2', 6, 219, 1276, 67, 671, '6', '2007-2020', 'Architecture (Q2); Building and Construction (Q3)'), (15852, 'Applied Mathematics E - Notes', 16072510, 0.241, 'Q4', 19, 51, 896, 69, 126, '22', '2001-2020', 'Applied Mathematics (Q4)'), (15853, 'Australasian Journal of Special Education', 18336914, 0.241, 'Q3', 13, 0, 0, 11, 9, '3', '2009-2017', 'Education (Q3)'), (15854, 'Cereal Foods World', 1466283, 0.241, 'Q3', 41, 0, 0, 75, 85, '2', '1993, 1996-2018', 'Food Science (Q3)'), (15855, 'CJC Open', 2589790, 0.241, 'Q3', 3, 120, 2748, 25, 53, '2', '2019-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (15856, 'Eklem Hastaliklari ve Cerrahisi', 13058282, 0.241, 'Q3', 16, 1, 23, 219, 120, '18', '2008-2020', 'Orthopedics and Sports Medicine (Q3); Rehabilitation (Q3); Surgery (Q3)'), (15857, 'Estudos Avancados', 18069592, 0.241, 'Q1', 25, 77, 2150, 89, 225, '14', '2006-2020', 'Cultural Studies (Q1); Sociology and Political Science (Q3)'), (15858, 'Global Change, Peace and Security', 14781158, 0.241, 'Q2', 15, 19, 0, 53, 61, '3', '2008-2020', 'Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (15859, 'Guti Huojian Jishu/Journal of Solid Rocket Te', 10062793, 0.241, 'Q3', 14, 115, 2173, 149, 397, '1', '1996, 2001-2020', 'Materials Science (miscellaneous) (Q3); Aerospace Engineering (Q4)'), (15860, 'Indian Journal of Agricultural Research', 3678245, 0.241, 'Q3', 8, 107, 2636, 131, 324, '4', '1979, 1983, 1988, 1990, 2012-2020', 'Agronomy and Crop Science (Q3); Horticulture (Q3); Plant Science (Q3); Soil Science (Q3)'), (15861, 'Indonesian Journal of Electrical Engineering ', 25024760, 0.241, 'Q3', 17, 640, 18687, 2415, 2023, '21', '2016-2020', 'Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q3); Information Systems (Q3); Signal Processing (Q3); Control and Optimization (Q4)'), (15862, 'International Journal of Language and Culture', 22143157, 0.241, 'Q2', 6, 15, 684, 16, 31, '16', '2014-2019', 'Multidisciplinary (Q2)'), (15863, 'International Journal of Practical Theology', 16129768, 0.241, 'Q1', 11, 14, 372, 18, 45, '5', '1997-2020', 'Religious Studies (Q1)'), (15864, 'International Journal of Sociotechnology and ', 19416253, 0.241, 'Q3', 10, 25, 1255, 61, 43, '2', '2009-2020', 'Computer Science Applications (Q3); Information Systems and Management (Q3)'), (15865, 'Iranian Journal of Medical Physics', 17357241, 0.241, 'Q4', 9, 58, 1549, 86, 122, '15', '2011-2020', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (15866, 'Isegoria', 19888376, 0.241, 'Q2', 7, 32, 1261, 32, 93, '12', '2009-2019', 'Philosophy (Q2)'), (15867, 'Journal of Analytical Chemistry', 16083199, 0.241, 'Q4', 33, 222, 7623, 554, 534, '10', '1996-2020', 'Analytical Chemistry (Q4)'), (15868, 'Journal of Applied Water Engineering and Rese', 23249676, 0.241, 'Q3', 10, 36, 1445, 63, 66, '3', '2013-2020', 'Water Science and Technology (Q3)'), (15869, 'Journal of Biologically Active Products from ', 22311874, 0.241, 'Q3', 11, 41, 1611, 121, 117, '3', '2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Complementary and Alternative Medicine (Q3); Plant Science (Q3); Drug Discovery (Q4); Pharmacology (Q4); Toxicology (Q4)'), (15870, 'Journal of Education and Health Promotion', 22779531, 0.241, 'Q3', 5, 138, 4349, 218, 262, '4', '2019-2020', 'Education (Q3); Medicine (miscellaneous) (Q4)'), (15871, 'Journal of Hospital Librarianship', 15323269, 0.241, 'Q3', 9, 36, 450, 30, 114, '2', '2001-2020', 'Library and Information Sciences (Q3); Medicine (miscellaneous) (Q4)'), (15872, 'Journal of Modern Project Management', 23173963, 0.241, 'Q3', 8, 31, 1560, 72, 103, '26', '2013-2019', 'Business and International Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (15873, 'Journal of Regional Analysis and Policy', 10904999, 0.241, 'Q2', 22, 7, 272, 28, 53, '2', '1996-2020', 'Political Science and International Relations (Q2); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)'), (15874, 'Journal of Technical Education and Training', 22298932, 0.241, 'Q3', 7, 67, 2463, 114, 91, '23', '2016-2020', 'Education (Q3)'), (15875, 'Main Group Chemistry', 17451167, 0.241, 'Q3', 20, 31, 922, 102, 105, '16', '1995-2000, 2005-2020', 'Materials Chemistry (Q3); Inorganic Chemistry (Q4); Organic Chemistry (Q4)'), (15876, 'Meditsina truda i promyshlennaia ekologiia', 10269428, 0.241, 'Q4', 9, 171, 2514, 71, 349, '10', '1965-2016', 'Medicine (miscellaneous) (Q4)'), (15877, 'Migration Letters', 17418992, 0.241, 'Q3', 13, 74, 2836, 102, 127, '3', '2011-2020', 'Demography (Q3); Geography, Planning and Development (Q3)'), (15878, 'Oriental Insects', 21578745, 0.241, 'Q4', 15, 72, 2120, 80, 109, '3', '1967-1985, 1991-2020', 'Insect Science (Q4)'), (15879, 'Polycyclic Aromatic Compounds', 15635333, 0.241, 'Q3', 35, 411, 17502, 334, 225, '3', '1990-2020', 'Materials Chemistry (Q3); Polymers and Plastics (Q3); Organic Chemistry (Q4)'), (15880, 'Probus', 16134079, 0.241, 'Q2', 26, 11, 855, 21, 30, '5', '1989-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15881, 'Quarterly Report of RTRI (Railway Technical R', 339008, 0.241, 'Q3', 23, 49, 373, 51, 145, '6', '1969-2020', 'Mechanical Engineering (Q3)'), (15882, 'Rendiconti Online Societa Geologica Italiana', 20358008, 0.241, 'Q3', 15, 21, 833, 107, 172, '7', '2008-2020', 'Geology (Q3)'), (15883, 'Revista Chilena de Pediatria', 7176228, 0.241, 'Q3', 16, 157, 3988, 233, 263, '45', '1945-1967, 1970-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (15884, 'Revista Latinoamericana de Investigacion en M', 16652436, 0.241, 'Q3', 9, 15, 549, 15, 39, '30', '2009-2020', 'Education (Q3)'), (15885, 'Scientia Agriculturae Bohemica', 18059430, 0.241, 'Q3', 12, 13, 544, 89, 108, '5', '2012-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (15886, 'Scientific Annals of Computer Science', 18438121, 0.241, 'Q3', 12, 7, 214, 19, 24, '43', '2009-2020', 'Computer Science (miscellaneous) (Q3); Applied Mathematics (Q4)'), (15887, 'Serangga', 13945130, 0.241, 'Q4', 4, 34, 1300, 62, 96, '23', '2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (15888, 'Social Text', 1642472, 0.241, 'Q1', 3, 23, 1162, 11, 19, '2', '2019-2020', 'Cultural Studies (Q1); Anthropology (Q2); Gender Studies (Q3)'), (15889, 'Spanish Journal of Paleontology', 22550550, 0.241, 'Q3', 9, 15, 1179, 34, 63, '12', '2013-2020', 'Paleontology (Q3)'), (15890, 'TESL-EJ', 10724303, 0.241, 'Q2', 4, 52, 2143, 44, 69, '2', '2018-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3); Education (Q3)'), (15891, 'Transition Studies Review', 16144007, 0.241, 'Q3', 15, 14, 352, 23, 36, '7', '2005-2020', 'Development (Q3)'), (15892, 'Turkish Journal of Orthodontics', 25289659, 0.241, 'Q3', 4, 35, 1072, 49, 62, '18', '2018-2020', 'Orthodontics (Q3)'), (15893, 'Turkish Journal of Pharmaceutical Sciences', 1304530, 0.241, 'Q3', 14, 97, 3281, 180, 167, '18', '2006-2020', 'Pharmaceutical Science (Q3); Molecular Medicine (Q4)'), (15894, 'Vikalpa', 23953799, 0.241, 'Q3', 23, 16, 401, 57, 49, '4', '1981-1982, 1986, 1994, 1996-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q3)'), (15895, 'Zapiski Rossiiskogo Mineralogicheskogo Obshch', 8696055, 0.241, 'Q3', 5, 0, 0, 73, 163, '10', '2016-2019', 'Economic Geology (Q3); Geology (Q3); Materials Chemistry (Q3); Geochemistry and Petrology (Q4)'), (15896, 'Analog Integrated Circuits and Signal Process', 9251030, 0.24, 'Q3', 49, 186, 5104, 832, 579, '16', '1991-2020', 'Hardware and Architecture (Q3); Signal Processing (Q3); Surfaces, Coatings and Films (Q3)'), (15897, 'Architecture, City and Environment', 18864805, 0.24, 'Q2', 8, 44, 1920, 64, 110, '12', '2011-2020', 'Architecture (Q2); Urban Studies (Q2); Geography, Planning and Development (Q3)'), (15898, 'Bulletin of Latin American Research', 14709856, 0.24, 'Q3', 33, 84, 3160, 79, 130, '3', '1982-2020', 'Development (Q3); Geography, Planning and Development (Q3)'), (15899, 'Critical Care Nursing Quarterly', 15505111, 0.24, 'Q3', 34, 44, 1593, 112, 135, '2', '1987-2020', 'Critical Care Nursing (Q3)'), (15900, 'East Asian Pragmatics', 20557760, 0.24, 'Q1', 3, 13, 629, 11, 23, '3', '2018-2020', 'Cultural Studies (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3)'), (15901, 'Economic Affairs', 2650665, 0.24, 'Q3', 18, 42, 1157, 61, 81, '3', '1980-2020', 'Development (Q3); Geography, Planning and Development (Q3); Aerospace Engineering (Q4)'), (15902, 'Educacao e Pesquisa', 15179702, 0.24, 'Q3', 15, 107, 4038, 126, 267, '14', '1999-2002, 2006-2020', 'Education (Q3)'), (15903, 'Eurasian Journal of Soil Science', 21474249, 0.24, 'Q3', 5, 40, 1802, 71, 78, '18', '2018-2020', 'Agronomy and Crop Science (Q3); Environmental Science (miscellaneous) (Q3); Plant Science (Q3); Soil Science (Q3)'), (15904, 'Fatigue: Biomedicine, Health and Behavior', 21641846, 0.24, 'Q4', 14, 21, 890, 66, 54, '3', '2013-2020', 'Behavioral Neuroscience (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (15905, 'Feddes Repertorium', 1522239, 0.24, 'Q3', 25, 26, 800, 34, 52, '2', '1965-1987, 1989-2020', 'Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15906, 'Fish Pathology', 18817335, 0.24, 'Q3', 43, 14, 250, 37, 65, '6', '1967-2020', 'Animal Science and Zoology (Q3); Aquatic Science (Q4)'), (15907, 'Foundations and Trends in Microeconomics', 15479846, 0.24, 'Q3', 18, 0, 0, 5, 4, '2', '2005-2015, 2017-2018', 'Economics and Econometrics (Q3)'), (15908, 'Genetika', 18206069, 0.24, 'Q3', 15, 93, 3355, 179, 270, '55', '2007-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Plant Science (Q3); Genetics (Q4)'), (15909, 'International Journal of Ethics and Systems', 25149369, 0.24, 'Q2', 20, 33, 2622, 163, 116, '3', '2018-2020', 'Philosophy (Q2); Economics and Econometrics (Q3)'), (15910, 'International Journal of Modern Physics B', 2179792, 0.24, 'Q4', 76, 482, 13295, 1512, 1395, '37', '1996-2020', 'Condensed Matter Physics (Q4); Statistical and Nonlinear Physics (Q4)'), (15911, 'International Studies in the Philosophy of Sc', 2698595, 0.24, 'Q2', 25, 0, 0, 12, 22, '3', '1986-2017', 'History and Philosophy of Science (Q2)'), (15912, 'Israeli Journal of Aquaculture - Bamidgeh', 792156, 0.24, 'Q3', 28, 12, 456, 75, 140, '36', '1988-2020', 'Agronomy and Crop Science (Q3); Aquatic Science (Q4)'), (15913, 'JAAPA : official journal of the American Acad', 8937400, 0.24, 'Q1', 17, 188, 746, 283, 395, '2', '1989, 1999-2020', 'Nurse Assisting (Q1)'), (15914, 'Journal of Drug Education', 15414159, 0.24, 'Q3', 40, 8, 288, 12, 15, '2', '1972-2018, 2020', 'Health (social science) (Q3); Psychiatry and Mental Health (Q3); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (15915, 'Jurnal Komunikasi: Malaysian Journal of Commu', 2289151, 0.24, 'Q3', 9, 109, 4573, 245, 270, '23', '2014-2020', 'Communication (Q3)'), (15916, 'Keio Journal of Medicine', 18801293, 0.24, 'Q4', 43, 14, 480, 34, 38, '6', '1952-2020', 'Medicine (miscellaneous) (Q4)'), (15917, 'Manufacturing Technology', 12132489, 0.24, 'Q3', 24, 103, 1610, 369, 614, '31', '2011-2020', 'Industrial and Manufacturing Engineering (Q3)'), (15918, 'Opuscula', 20000898, 0.24, 'Q1', 6, 0, 0, 18, 24, '39', '2015-2019', 'Classics (Q1); History (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (15919, 'Post reproductive health', 20533691, 0.24, 'Q3', 34, 36, 963, 81, 66, '2', '1995, 2014-2020', 'Obstetrics and Gynecology (Q3)'), (15920, 'Progress in Rubber, Plastics and Recycling Te', 14777606, 0.24, 'Q3', 13, 25, 1070, 49, 43, '3', '2003-2020', 'Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3); Organic Chemistry (Q4)'), (15921, 'Revista Brasileira de Linguistica Aplicada', 16760786, 0.24, 'Q2', 3, 30, 1144, 30, 106, '14', '2017-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15922, 'Revista del Museo Argentino de Ciencias Natur', 15145158, 0.24, 'Q3', 13, 18, 879, 50, 68, '46', '2008-2020', 'Animal Science and Zoology (Q3); Paleontology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15923, 'Russian Journal of Theriology', 16823559, 0.24, 'Q3', 9, 17, 873, 26, 46, '10', '2011-2020', 'Animal Science and Zoology (Q3); Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15924, 'Soins Psychiatrie', 2416972, 0.24, 'Q4', 7, 64, 579, 32, 150, '8', '1980-2020', 'Medicine (miscellaneous) (Q4); Psychiatric Mental Health (Q4)'), (15925, 'Strategic Design Research Journal', 19842988, 0.24, 'Q2', 3, 18, 587, 36, 60, '14', '2018-2019', 'Arts and Humanities (miscellaneous) (Q2); Engineering (miscellaneous) (Q3); Modeling and Simulation (Q4)'), (15926, 'Zeitschrift fur Vergleichende Politikwissensc', 18652646, 0.24, 'Q3', 13, 19, 1078, 51, 83, '5', '2007-2020', 'Sociology and Political Science (Q3)'), (15927, 'ACM Transactions on Asian and Low-Resource La', 23754699, 0.239, 'Q3', 14, 60, 2594, 289, 126, '2', '2015-2020', 'Computer Science (miscellaneous) (Q3)'), (15928, 'Acta medica (Hradec Kralove)', 12114286, 0.239, 'Q4', 26, 35, 0, 88, 93, '31', '1996-2020', 'Medicine (miscellaneous) (Q4)'), (15929, 'Applied Mathematics and Mechanics', 10000887, 0.239, 'Q3', 9, 123, 2726, 211, 363, '1', '2016-2020', 'Mechanical Engineering (Q3); Applied Mathematics (Q4)'), (15930, 'Aviation', 18224180, 0.239, 'Q4', 13, 31, 985, 71, 50, '69', '2004-2020', 'Aerospace Engineering (Q4)'), (15931, 'Bulletin Mineralogie Petrologie', 25707337, 0.239, 'Q3', 10, 44, 1491, 56, 86, '31', '2017-2020', 'Economic Geology (Q3); Geology (Q3); Geochemistry and Petrology (Q4)'), (15932, 'Bulletin of the European Association of Fish ', 1080288, 0.239, 'Q3', 38, 30, 716, 57, 81, '3', '1996-2020', 'Small Animals (Q3); Aquatic Science (Q4)'), (15933, 'Canadian Journal of African Studies', 83968, 0.239, 'Q1', 8, 37, 1972, 38, 59, '3', '1976, 1980, 1982-1986, 1988-1996, 1999, 2001, 2014-2020', 'Cultural Studies (Q1); History (Q1); Anthropology (Q2); Demography (Q3); Development (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3)'), (15934, 'Clean Air Journal', 2410972, 0.239, 'Q3', 4, 21, 459, 33, 41, '2', '2017-2020', 'Management, Monitoring, Policy and Law (Q3); Pollution (Q3)'), (15935, 'Critical Horizons', 14409917, 0.239, 'Q2', 15, 22, 776, 32, 70, '3', '2003-2020', 'Philosophy (Q2); Sociology and Political Science (Q3)'), (15936, 'Enfermeria Intensiva', 11302399, 0.239, 'Q3', 15, 46, 955, 59, 56, '12', '1994-2020', 'Advanced and Specialized Nursing (Q3); Critical Care and Intensive Care Medicine (Q3); Fundamentals and Skills (Q3); Critical Care Nursing (Q4)'), (15937, 'Estudos do Quaternario', 8740801, 0.239, 'Q2', 4, 0, 0, 9, 33, '26', '2015-2019', 'Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Earth-Surface Processes (Q3); Geology (Q3); Paleontology (Q3)'), (15938, 'GAMM Mitteilungen', 9367195, 0.239, 'Q3', 18, 21, 1862, 63, 44, '5', '2009-2020', 'Materials Science (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3); Applied Mathematics (Q4)'), (15939, 'Geography Teacher', 17526884, 0.239, 'Q3', 6, 37, 492, 18, 42, '2', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Education (Q3)'), (15940, 'Hematology Reports', 20388322, 0.239, 'Q4', 12, 21, 728, 76, 90, '7', '2011-2020', 'Hematology (Q4)'), (15941, 'Innovative Marketing', 18142427, 0.239, 'Q3', 5, 46, 2209, 77, 55, '44', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Management of Technology and Innovation (Q3); Marketing (Q3)'), (15942, 'International Journal of Applied Electromagne', 13835416, 0.239, 'Q3', 30, 317, 5251, 510, 615, '16', '1996-2020', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q3); Mechanical Engineering (Q3); Mechanics of Materials (Q3); Condensed Matter Physics (Q4)'), (15943, 'International Journal of Design Sciences and ', 16307267, 0.239, 'Q3', 6, 0, 0, 13, 7, '8', '2005-2012, 2015-2017, 2019', 'Engineering (miscellaneous) (Q3)'), (15944, 'International Journal of Embedded Systems', 17411076, 0.239, 'Q3', 16, 104, 2916, 235, 181, '3', '2005-2010, 2013-2014, 2020', 'Hardware and Architecture (Q3); Software (Q3)'), (15945, 'International Journal of Engineering Research', 16634144, 0.239, 'Q3', 24, 83, 2228, 252, 265, '19', '2010-2020', 'Engineering (miscellaneous) (Q3)'), (15946, 'International Journal of Food Studies', 21821054, 0.239, 'Q3', 11, 30, 1156, 52, 60, '28', '2013-2020', 'Food Science (Q3)'), (15947, 'International Journal of Peptides', 16879767, 0.239, 'Q4', 25, 0, 0, 6, 3, '2', '2010-2017', 'Biochemistry (Q4)'), (15948, 'Israel Journal of Psychiatry and Related Scie', 3337308, 0.239, 'Q4', 35, 18, 608, 53, 76, '36', '1981-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (15949, 'Journal of Real Estate Portfolio Management', 10835547, 0.239, 'Q3', 19, 6, 213, 22, 27, '2', '2003-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Management Information Systems (Q3)'), (15950, 'Korean Economic Review', 2543737, 0.239, 'Q3', 6, 9, 277, 22, 28, '13', '2012-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (15951, 'Law and Philosophy', 15730522, 0.239, 'Q2', 30, 30, 252, 46, 69, '16', '1982-2020', 'Law (Q2); Philosophy (Q2)'), (15952, 'Linguistic Research', 12291374, 0.239, 'Q2', 4, 24, 1106, 38, 76, '13', '2014-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (15953, 'Mental Illness', 20367457, 0.239, 'Q3', 10, 7, 139, 43, 44, '7', '2009-2020', 'Psychiatry and Mental Health (Q3)'), (15954, 'Missouri Journal of Mathematical Sciences', 8996180, 0.239, 'Q3', 10, 19, 286, 22, 56, '2', '2001-2020', 'Mathematics (miscellaneous) (Q3)'), (15955, 'OBETS', 19891385, 0.239, 'Q2', 8, 12, 709, 35, 67, '12', '2014-2019', 'Arts and Humanities (miscellaneous) (Q2); Social Sciences (miscellaneous) (Q3)'), (15956, 'Rehabilitation Research and Practice', 20902875, 0.239, 'Q3', 9, 4, 189, 16, 13, '32', '2013-2017, 2019', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (15957, 'Rheedea', 9712313, 0.239, 'Q3', 11, 43, 1175, 33, 62, '4', '2006-2020', 'Plant Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (15958, 'Senses and Society', 17458927, 0.239, 'Q1', 15, 28, 954, 48, 77, '3', '2009-2020', 'Cultural Studies (Q1); Communication (Q3)'), (15959, 'Solvent Extraction Research and Development', 21884765, 0.239, 'Q3', 20, 15, 387, 40, 32, '6', '1996-2019', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (15960, 'Spinal cord series and cases', 20586124, 0.239, 'Q4', 6, 107, 1714, 73, 102, '3', '2018-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (15961, 'Statistical Applications in Genetics and Mole', 15446115, 0.239, 'Q3', 46, 22, 935, 38, 69, '5', '2004-2020', 'Computational Mathematics (Q3); Genetics (Q4); Molecular Biology (Q4); Statistics and Probability (Q4)'), (15962, 'Tehnicki Vjesnik', 13303651, 0.239, 'Q3', 27, 268, 7096, 792, 853, '58', '1994-1995, 1997-2020', 'Engineering (miscellaneous) (Q3)'), (15963, 'Turkish Journal of Chemistry', 13036130, 0.239, 'Q3', 46, 128, 5411, 458, 332, '18', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (15964, 'Yuanzineng Kexue Jishu/Atomic Energy Science ', 10006931, 0.239, 'Q3', 16, 374, 7055, 307, 1062, '1', '1993-2020', 'Nuclear Energy and Engineering (Q3)'), (15965, 'Academy of Strategic Management Journal', 15441458, 0.238, 'Q3', 17, 137, 4583, 419, 396, '2', '2009-2020', 'Business and International Management (Q3); Strategy and Management (Q3)'), (15966, 'Accounting Perspectives', 19113838, 0.238, 'Q3', 17, 16, 665, 32, 51, '9', '2007-2020', 'Accounting (Q3); Finance (Q3)'), (15967, 'Archives of Razi Institute', 20089872, 0.238, 'Q3', 8, 46, 1158, 75, 115, '15', '2012-2020', 'Veterinary (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q4); Toxicology (Q4)'), (15968, 'ARPN Journal of Engineering and Applied Scien', 18196608, 0.238, 'Q3', 32, 379, 7678, 1391, 2353, '34', '2009, 2011-2020', 'Engineering (miscellaneous) (Q3)'), (15969, 'Austrian Journal of Political Science', 23135433, 0.238, 'Q3', 8, 3, 131, 30, 64, '5', '2015-2019', 'Sociology and Political Science (Q3)'), (15970, 'Complementary Medicine Research', 25042106, 0.238, 'Q3', 38, 73, 2576, 127, 131, '19', '2015, 2017-2020', 'Complementary and Alternative Medicine (Q3)'), (15971, 'Comunicata Scientiae', 21775133, 0.238, 'Q3', 12, 71, 2149, 117, 216, '14', '2010-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (15972, 'Egyptian Journal of Forensic Sciences', 20905939, 0.238, 'Q2', 18, 39, 961, 157, 157, '19', '2011-2020', 'Law (Q2); Health (social science) (Q3); Pathology and Forensic Medicine (Q4)'), (15973, 'Environmental Health and Toxicology', 22336567, 0.238, 'Q4', 4, 22, 1041, 18, 13, '13', '2019-2020', 'Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4); Toxicology (Q4)'), (15974, 'European Journal of Humour Research', 2307700, 0.238, 'Q1', 4, 27, 1176, 58, 92, '17', '2017-2020', 'Cultural Studies (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3); Applied Psychology (Q4)'), (15975, 'Farmacia Hospitalaria', 21718695, 0.238, 'Q4', 23, 77, 844, 132, 157, '12', '1990-2020', 'Medicine (miscellaneous) (Q4); Pharmacology (Q4)'), (15976, 'Ferroelectrics', 150193, 0.238, 'Q4', 56, 316, 7954, 739, 1004, '3', '1970-2020', 'Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (15977, 'Fruits', 1625967, 0.238, 'Q3', 29, 28, 1263, 86, 105, '8', '1995, 2001-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3); Horticulture (Q3)'), (15978, 'Geografie-Sbornik CGS', 12120014, 0.238, 'Q3', 23, 20, 1120, 59, 67, '31', '1992-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (15979, 'International Journal of Applied Pharmaceutic', 9757058, 0.238, 'Q3', 15, 273, 8860, 696, 839, '4', '2011-2020', 'Pharmaceutical Science (Q3)'), (15980, 'International Journal of Organization Theory ', 10934537, 0.238, 'Q3', 8, 20, 1496, 59, 63, '3', '2012-2020', 'Public Administration (Q3); Applied Psychology (Q4); Organizational Behavior and Human Resource Management (Q4)'), (15981, 'International Journal of Work Organisation an', 17408946, 0.238, 'Q4', 15, 20, 1163, 47, 58, '3', '2005-2014', 'Organizational Behavior and Human Resource Management (Q4)'), (15982, 'Journal of Animal Behaviour and Biometeorolog', 23181265, 0.238, 'Q3', 7, 55, 2324, 61, 72, '14', '2013-2020', 'Animal Science and Zoology (Q3); Ecology (Q3); Atmospheric Science (Q4)'), (15983, 'Journal of Dentistry for Children', 15518949, 0.238, 'Q3', 40, 31, 481, 52, 90, '2', '1996-2020', 'Dentistry (miscellaneous) (Q3)'), (15984, 'Journal of Electronic Imaging', 1560229, 0.238, 'Q3', 66, 119, 4393, 988, 756, '2', '1993-2020', 'Computer Science Applications (Q3); Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4)'), (15985, 'Journal of International Women s Studies', 15398706, 0.238, 'Q3', 21, 131, 3375, 122, 246, '2', '2002-2020', 'Gender Studies (Q3)'), (15986, 'Journal of Nutrition and Health', 22883959, 0.238, 'Q4', 11, 53, 1717, 97, 165, '13', '2013-2020', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)'), (15987, 'Journal of Popular Culture', 15405931, 0.238, 'Q1', 24, 72, 2488, 65, 196, '3', '1967-2020', 'History (Q1); Literature and Literary Theory (Q1); Arts and Humanities (miscellaneous) (Q2)'), (15988, 'Journal of Siberian Federal University - Huma', 23136014, 0.238, 'Q2', 7, 172, 4427, 139, 311, '10', '2018-2020', 'Anthropology (Q2)'), (15989, 'Korean Journal of Thoracic and Cardiovascular', 2233601, 0.238, 'Q3', 16, 67, 1252, 177, 224, '13', '2011-2020', 'Cardiology and Cardiovascular Medicine (Q3); Pulmonary and Respiratory Medicine (Q3); Surgery (Q3)'), (15990, 'Method and Theory in the Study of Religion', 9433058, 0.238, 'Q1', 24, 35, 1320, 32, 84, '16', '1989-1991, 1993, 1995-2020', 'Religious Studies (Q1)'), (15991, 'Negotiation Journal', 15719979, 0.238, 'Q3', 32, 37, 1169, 50, 97, '3', '1985-2020', 'Management of Technology and Innovation (Q3); Social Sciences (miscellaneous) (Q3); Strategy and Management (Q3)'), (15992, 'Neurocirugia', 23406305, 0.238, 'Q3', 22, 75, 1946, 84, 123, '12', '1972-1980, 1990-1995, 1999-2020', 'Surgery (Q3); Neurology (clinical) (Q4)'), (15993, 'Open Life Sciences', 23915412, 0.238, 'Q3', 34, 116, 4285, 196, 189, '5', '2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Immunology and Microbiology (miscellaneous) (Q4); Neuroscience (miscellan'), (15994, 'Organic Communications', 13076175, 0.238, 'Q4', 15, 22, 701, 71, 73, '18', '2008-2020', 'Organic Chemistry (Q4)'), (15995, 'Organon F', 13350668, 0.238, 'Q2', 8, 24, 589, 27, 82, '53', '2002-2020', 'Philosophy (Q2)'), (15996, 'Pharmaceutical Sciences', 23832886, 0.238, 'Q3', 17, 69, 2824, 202, 140, '15', '2009-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (15997, 'Review of Clinical Pharmacology and Pharmacok', 10116583, 0.238, 'Q3', 9, 31, 524, 15, 68, '61', '1989-2020', 'Pharmacology (medical) (Q3)'), (15998, 'Revista Fitotecnia Mexicana', 1877380, 0.238, 'Q3', 16, 68, 1834, 89, 166, '30', '2007-2020', 'Agronomy and Crop Science (Q3); Horticulture (Q3); Genetics (Q4); Plant Science (Q4)'), (15999, 'Slavery and Abolition', 17439523, 0.238, 'Q1', 23, 51, 0, 50, 101, '3', '1980-2020', 'History (Q1); Sociology and Political Science (Q3)'), (16000, 'Trudy Instituta Matematiki i Mekhaniki UrO RA', 26584786, 0.238, 'Q3', 3, 66, 1054, 45, 96, '10', '2019-2020', 'Computational Mechanics (Q3); Computer Science Applications (Q3); Mathematics (miscellaneous) (Q3); Applied Mathematics (Q4)'), (16001, 'Acta Alimentaria', 1393006, 0.237, 'Q3', 28, 59, 1289, 135, 180, '50', '1973-1975, 1996-2020', 'Food Science (Q3)'), (16002, 'Acta Zoologica Bulgarica', 3240770, 0.237, 'Q3', 15, 83, 3237, 196, 351, '61', '2010-2019', 'Animal Science and Zoology (Q3); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (16003, 'Administration', 18325, 0.237, 'Q3', 6, 17, 407, 40, 85, '5', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Public Administration (Q3); Sociology and Political Science (Q3)'), (16004, 'Advances in Acoustics and Vibration', 16876261, 0.237, 'Q3', 14, 1, 0, 32, 25, '2', '2011-2020', 'Acoustics and Ultrasonics (Q3); Building and Construction (Q3); Mechanics of Materials (Q3)'), (16005, 'Advances in Hospitality and Tourism Research', 21479100, 0.237, 'Q3', 3, 1, 52, 19, 24, '18', '2018-2020', 'Development (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (16006, 'AIB Studi', 22396152, 0.237, 'Q3', 5, 10, 345, 18, 77, '7', '2014-2020', 'Library and Information Sciences (Q3)'), (16007, 'Applications of Mathematics', 8627940, 0.237, 'Q4', 28, 47, 993, 110, 104, '16', '1997-2020', 'Applied Mathematics (Q4)'), (16008, 'Brazilian Journal of Food Technology', 15167275, 0.237, 'Q3', 7, 90, 3337, 179, 217, '14', '2015-2020', 'Food Science (Q3)'), (16009, 'Bulletin of the Korean Chemical Society', 2532964, 0.237, 'Q3', 59, 204, 6262, 587, 762, '2', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (16010, 'Expert Opinion on Orphan Drugs', 21678707, 0.237, 'Q3', 18, 49, 4388, 151, 216, '3', '2013-2020', 'Health Policy (Q3); Pharmacology (medical) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (16011, 'Geologia USP - Serie Cientifica', 1519874, 0.237, 'Q3', 21, 0, 0, 66, 105, '14', '2002-2019', 'Geology (Q3)'), (16012, 'Historia (Chile)', 732435, 0.237, 'Q1', 10, 19, 1091, 28, 56, '45', '1999, 2002, 2007-2020', 'Cultural Studies (Q1); History (Q1); History and Philosophy of Science (Q2)'), (16013, 'Image Analysis and Stereology', 15803139, 0.237, 'Q3', 27, 15, 516, 69, 65, '60', '2000-2020', 'Acoustics and Ultrasonics (Q3); Biotechnology (Q3); Computer Vision and Pattern Recognition (Q3); Instrumentation (Q3); Materials Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q3); Signal'), (16014, 'Indian Journal of Marketing', 9738703, 0.237, 'Q3', 10, 34, 1218, 127, 145, '4', '2013-2020', 'Marketing (Q3)'), (16015, 'International Journal of Multiphysics', 17509548, 0.237, 'Q3', 12, 28, 683, 59, 85, '3', '2010-2020', 'Computational Mechanics (Q3); Mechanics of Materials (Q3); Fluid Flow and Transfer Processes (Q4); Modeling and Simulation (Q4); Numerical Analysis (Q4)'), (16016, 'International Journal on E-Learning: Corporat', 15372456, 0.237, 'Q3', 11, 11, 472, 50, 53, '2', '2011-2019', 'Computer Science Applications (Q3); Education (Q3)'), (16017, 'International Journal on Engineering Applicat', 25332295, 0.237, 'Q3', 5, 30, 922, 72, 58, '7', '2018-2020', 'Computer Science Applications (Q3); Engineering (miscellaneous) (Q3)'), (16018, 'International Social Science Journal', 208701, 0.237, 'Q3', 43, 17, 759, 72, 53, '3', '1973-1975, 1978-2006, 2008-2014, 2016-2020', 'Social Sciences (miscellaneous) (Q3)'), (16019, 'Journal for Nurse Practitioners', 15554155, 0.237, 'Q3', 19, 294, 4882, 362, 611, '2', '2005-2020', 'Advanced and Specialized Nursing (Q3); Fundamentals and Skills (Q3); LPN and LVN (Q3)'), (16020, 'Journal of Celtic Linguistics', 9621377, 0.237, 'Q2', 4, 7, 712, 3, 10, '3', '2004-2006, 2008-2009, 2012, 2014-2015, 2018-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16021, 'Journal of Groups in Addiction and Recovery', 1556035, 0.237, 'Q3', 16, 0, 0, 16, 16, '2', '2006-2014, 2017', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q3)'), (16022, 'Journal of the Faculty of Engineering and Arc', 13001884, 0.237, 'Q2', 18, 174, 6484, 413, 399, '18', '1998-2020', 'Architecture (Q2); Engineering (miscellaneous) (Q3)'), (16023, 'Journal of Vibroengineering', 13928716, 0.237, 'Q3', 26, 136, 3342, 751, 846, '69', '2008-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3)'), (16024, 'Kant Yearbook', 18684599, 0.237, 'Q2', 2, 6, 402, 7, 24, '5', '2016-2019', 'Philosophy (Q2)'), (16025, 'Nexus Network Journal', 15224600, 0.237, 'Q1', 17, 77, 2024, 66, 122, '2', '2004-2020', 'Visual Arts and Performing Arts (Q1); Architecture (Q2); Mathematics (miscellaneous) (Q3)'), (16026, 'Quality Assurance and Safety of Crops and Foo', 17578361, 0.237, 'Q3', 19, 36, 1824, 158, 179, '16', '2009-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3)'), (16027, 'Revista de Psiquiatria Clinica', 1806938, 0.237, 'Q3', 25, 36, 936, 59, 84, '14', '2000-2020', 'Psychiatry and Mental Health (Q3)'), (16028, 'Revue Francaise de Sociologie', 352969, 0.237, 'Q3', 32, 0, 0, 39, 53, '8', '1977-1978, 1981-1983, 1985-1991, 1994, 1996-2019', 'Sociology and Political Science (Q3)'), (16029, 'Science of Tsunami Hazards', 87556839, 0.237, 'Q3', 14, 17, 580, 75, 41, '2', '2007-2020', 'Geology (Q3); Oceanography (Q4)'), (16030, 'State Crime Journal', 20466056, 0.237, 'Q2', 3, 5, 299, 21, 27, '3', '2018-2019', 'Law (Q2); Management, Monitoring, Policy and Law (Q3)'), (16031, 'Studies in the Age of Chaucer', 19490755, 0.237, 'Q1', 12, 15, 322, 10, 35, '2', '1997, 2002-2019', 'Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1)'), (16032, 'Turk Pediatri Arsivi', 13086278, 0.237, 'Q3', 11, 90, 1896, 137, 151, '18', '2006-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (16033, 'ACM Transactions on Parallel Computing', 23294957, 0.236, 'Q3', 16, 27, 1400, 133, 60, '2', '2014-2020', 'Computer Science Applications (Q3); Hardware and Architecture (Q3); Software (Q3); Computational Theory and Mathematics (Q4); Modeling and Simulation (Q4)'), (16034, 'Archivos Argentinos de Pediatria', 3250075, 0.236, 'Q3', 19, 220, 3909, 392, 586, '46', '1945, 1960-1974, 1976-1978, 2008-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (16035, 'Atlantic Studies : Global Currents', 14788810, 0.236, 'Q1', 8, 37, 2430, 35, 83, '3', '2010-2020', 'Cultural Studies (Q1); History (Q1); Literature and Literary Theory (Q1)'), (16036, 'Comparative Parasitology', 15252647, 0.236, 'Q4', 30, 18, 621, 44, 90, '2', '1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Parasitology (Q4)'), (16037, 'Contaduria y Administracion', 1861042, 0.236, 'Q3', 12, 61, 2995, 179, 225, '30', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (16038, 'DLSU Business and Economics Review', 1167111, 0.236, 'Q3', 8, 25, 868, 59, 98, '63', '2008-2019', 'Accounting (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Marketing (Q3); Strategy and Management (Q3)'), (16039, 'Economia Agro-Alimentare', 19724802, 0.236, 'Q3', 9, 23, 784, 57, 79, '7', '2012-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q3); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Food Science (Q3);'), (16040, 'Fundamentalnaya i Prikladnaya Gidrofizika', 20736673, 0.236, 'Q3', 5, 30, 786, 56, 118, '10', '2017-2020', 'Geophysics (Q3); Water Science and Technology (Q3); Condensed Matter Physics (Q4); Oceanography (Q4)'), (16041, 'Indian Journal of Ecology', 3045250, 0.236, 'Q3', 7, 368, 7462, 249, 495, '4', '1974-1981, 1986-1987, 2013-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (16042, 'Interdisciplinary Science Reviews', 3080188, 0.236, 'Q2', 24, 43, 2125, 65, 78, '3', '1976-2020', 'History and Philosophy of Science (Q2); Multidisciplinary (Q2); Social Sciences (miscellaneous) (Q3)'), (16043, 'International Journal of Business and Society', 15116670, 0.236, 'Q3', 15, 105, 4772, 295, 303, '23', '2009-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)'), (16044, 'International Journal of Energetic Materials ', 2150766, 0.236, 'Q3', 14, 22, 596, 62, 71, '2', '2009-2020', 'Materials Science (miscellaneous) (Q3)'), (16045, 'International Journal of Entrepreneurship and', 17415098, 0.236, 'Q3', 24, 27, 1590, 81, 91, '3', '2001-2014, 2017, 2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (16046, 'International Journal of Plastics Technology', 972656, 0.236, 'Q3', 14, 2, 60, 153, 81, '4', '2010-2020', 'Polymers and Plastics (Q3)'), (16047, 'International Journal of Reconfigurable Compu', 16877209, 0.236, 'Q3', 16, 3, 94, 43, 32, '2', '2010-2020', 'Hardware and Architecture (Q3)'), (16048, 'International Journal of Revenue Management', 14747332, 0.236, 'Q3', 12, 9, 416, 16, 23, '3', '2007-2013, 2015', 'Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Strategy and Management (Q3)'), (16049, 'International Journal of Software Engineering', 2181940, 0.236, 'Q3', 36, 78, 2878, 353, 213, '37', '1996-2020', 'Computer Graphics and Computer-Aided Design (Q3); Computer Networks and Communications (Q3); Software (Q3); Artificial Intelligence (Q4)'), (16050, 'Journal of Electrochemical Science and Engine', 18479286, 0.236, 'Q3', 6, 34, 1139, 86, 74, '58', '2020', 'Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Colloid and Surface Chemistry (Q4); Electrochemistry (Q4)'), (16051, 'Journal of Excipients and Food Chemicals', 21502668, 0.236, 'Q3', 16, 8, 141, 27, 22, '2', '2010-2020', 'Food Science (Q3); Pharmaceutical Science (Q3)'), (16052, 'Journal of Immersion and Content-Based Langua', 22128433, 0.236, 'Q2', 2, 12, 586, 6, 8, '16', '2019-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (16053, 'Journal of Information and Knowledge Manageme', 2196492, 0.236, 'Q3', 21, 68, 3484, 157, 137, '2', '2002-2020', 'Computer Networks and Communications (Q3); Computer Science Applications (Q3); Library and Information Sciences (Q3)'), (16054, 'Journal of Mechanics in Medicine and Biology', 2195194, 0.236, 'Q4', 30, 126, 3930, 435, 397, '37', '2008-2020', 'Biomedical Engineering (Q4)'), (16055, 'Journal of Military, Veteran and Family Healt', 23687924, 0.236, 'Q4', 3, 75, 2055, 20, 17, '9', '2020', 'Medicine (miscellaneous) (Q4)'), (16056, 'Journal of Natural Science, Biology and Medic', 22297707, 0.236, 'Q3', 30, 36, 1008, 163, 169, '4', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (16057, 'Journal of Nonlinear Optical Physics and Mate', 17936624, 0.236, 'Q3', 33, 0, 0, 137, 143, '37', '1996-2019', 'Physics and Astronomy (miscellaneous) (Q3); Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (16058, 'Journal of Surface Investigation', 10274510, 0.236, 'Q3', 20, 274, 5870, 378, 653, '10', '1997-2001, 2007-2020', 'Surfaces, Coatings and Films (Q3); Nanoscience and Nanotechnology (Q4)'), (16059, 'Journal of the Ramanujan Mathematical Society', 23203110, 0.236, 'Q3', 13, 14, 256, 44, 80, '4', '2006-2020', 'Mathematics (miscellaneous) (Q3)'), (16060, 'Kepes', 17947111, 0.236, 'Q1', 3, 33, 1270, 16, 83, '47', '2011-2019', 'Visual Arts and Performing Arts (Q1)'), (16061, 'Note di Matematica', 11232536, 0.236, 'Q4', 19, 20, 295, 37, 58, '7', '1996-1999, 2001-2019', 'Mathematics (miscellaneous) (Q4)'), (16062, 'Pamatky Archeologicke', 310506, 0.236, 'Q2', 9, 2, 432, 5, 9, '31', '2009-2013, 2015-2018', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16063, 'Qualitative Research in Financial Markets', 17554187, 0.236, 'Q3', 17, 17, 1441, 115, 83, '3', '2009-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (16064, 'Transactions of A. Razmadze Mathematical Inst', 23468092, 0.236, 'Q4', 8, 16, 306, 106, 93, '81', '2016-2018', 'Mathematics (miscellaneous) (Q4)'), (16065, 'University of Toronto Law Journal', 420220, 0.236, 'Q2', 17, 35, 1806, 62, 77, '9', '1974-1975, 1977, 1981, 1989, 1991-1993, 2008-2020', 'Law (Q2); Sociology and Political Science (Q3)'), (16066, 'Vestnik of Saint Petersburg University. Earth', 2587585, 0.236, 'Q3', 5, 41, 1582, 63, 89, '10', '2017-2019', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geology (Q3)'), (16067, 'Vestnik St. Petersburg University: Mathematic', 19347855, 0.236, 'Q4', 10, 55, 700, 61, 151, '10', '2007-2020', 'Mathematics (miscellaneous) (Q4)'), (16068, 'Zbornik Radova Ekonomskog Fakultet au Rijeci', 18467520, 0.236, 'Q3', 12, 26, 1320, 94, 90, '58', '2008-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (16069, 'Agrivita', 1260537, 0.235, 'Q3', 9, 53, 1988, 161, 156, '21', '2013-2020', 'Agronomy and Crop Science (Q3)'), (16070, 'Austrian Journal of South-East Asian Studies', 19992521, 0.235, 'Q3', 7, 16, 816, 43, 44, '28', '2015-2020', 'Social Sciences (miscellaneous) (Q3)'), (16071, 'Bijdragen tot de Taal-, Land- en Volkenkunde', 62294, 0.235, 'Q1', 15, 17, 822, 33, 42, '16', '2005-2020', 'Cultural Studies (Q1); Anthropology (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q3)'), (16072, 'BioRisk', 13132644, 0.235, 'Q3', 8, 3, 240, 6, 8, '61', '2011-2020', 'Environmental Science (miscellaneous) (Q3)'), (16073, 'Bois et Forets des Tropiques', 17775760, 0.235, 'Q3', 9, 28, 964, 66, 82, '8', '2010-2020', 'Ecology (Q3); Forestry (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (16074, 'Contributions to Geophysics and Geodesy', 13352806, 0.235, 'Q3', 18, 21, 697, 49, 60, '53', '1992, 2000-2020', 'Geophysics (Q3)'), (16075, 'Cuaternario y Geomorfologia', 2141744, 0.235, 'Q3', 8, 10, 326, 21, 31, '12', '2012-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); Geology (Q3); Paleontology (Q3)'), (16076, 'ETS Research Report Series', 23308516, 0.235, 'Q3', 5, 29, 1872, 65, 91, '2', '2018-2020', 'Education (Q3); Applied Psychology (Q4); Social Psychology (Q4); Statistics, Probability and Uncertainty (Q4)'), (16077, 'Gene Reports', 24520144, 0.235, 'Q4', 9, 407, 16946, 331, 441, '16', '2015-2020', 'Genetics (Q4)'), (16078, 'Journal for Deradicalization', 23639849, 0.235, 'Q2', 3, 0, 0, 27, 30, '5', '2019', 'Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (16079, 'Journal of Binocular Vision and Ocular Motili', 2576117, 0.235, 'Q4', 9, 34, 872, 31, 67, '3', '2018-2020', 'Ophthalmology (Q4)'), (16080, 'Journal of Energy and Development', 3614476, 0.235, 'Q3', 6, 0, 0, 18, 29, '2', '1979-1986, 1988, 2011-2014, 2016-2019', 'Economics and Econometrics (Q3); Energy (miscellaneous) (Q3)'), (16081, 'Journal of The Institution of Engineers (Indi', 22502483, 0.235, 'Q3', 8, 39, 1046, 69, 64, '4', '2012-2020', 'Chemical Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3)'), (16082, 'Journal of the Japan Petroleum Institute', 13468804, 0.235, 'Q3', 27, 44, 1480, 109, 118, '6', '2002-2020', 'Energy Engineering and Power Technology (Q3); Fuel Technology (Q3)'), (16083, 'Kidney Medicine', 25900595, 0.235, 'Q3', 5, 127, 3478, 27, 45, '2', '2019-2020', 'Internal Medicine (Q3); Nephrology (Q4)'), (16084, 'List Forum fur Wirtschafts- und Finanzpolitik', 9370862, 0.235, 'Q3', 5, 31, 884, 21, 76, '5', '2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16085, 'Mikrobiyoloji Bulteni', 3749096, 0.235, 'Q4', 21, 32, 851, 82, 137, '18', '1973-2020', 'Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Microbiology (medical) (Q4)'), (16086, 'Neurosciences', 13196138, 0.235, 'Q4', 21, 68, 1358, 140, 148, '29', '2002-2020', 'Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (16087, 'Oecologia Australis', 21776199, 0.235, 'Q3', 19, 88, 4119, 105, 168, '14', '2010-2020', 'Ecology (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (16088, 'Pan-American Journal of Aquatic Sciences', 18099009, 0.235, 'Q4', 20, 34, 1470, 44, 71, '14', '2008-2020', 'Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (16089, 'Psychoanalysis, Culture &amp; Society', 10880763, 0.235, 'Q1', 8, 50, 1413, 35, 84, '3', '2004, 2014-2020', 'Cultural Studies (Q1); Health (social science) (Q3); Sociology and Political Science (Q3); Applied Psychology (Q4); Social Psychology (Q4)'), (16090, 'Publicacion Electronica de la Asociacion Pale', 24690228, 0.235, 'Q4', 2, 0, 0, 12, 14, '46', '2019', 'Paleontology (Q4)'), (16091, 'RAUSP Management Journal', 25310488, 0.235, 'Q3', 4, 16, 618, 83, 72, '3', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)'), (16092, 'Rethinking Marxism', 8935696, 0.235, 'Q3', 24, 32, 1169, 34, 89, '3', '1988-1996, 1998-2020', 'Sociology and Political Science (Q3)'), (16093, 'Revue de l Infirmiere', 12938505, 0.235, 'Q3', 5, 219, 1082, 37, 477, '8', '1971-2000, 2002-2020', 'Nursing (miscellaneous) (Q3)'), (16094, 'Scandinavian Psychoanalytic Review', 1062301, 0.235, 'Q3', 9, 8, 230, 9, 47, '3', '1978-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)'), (16095, 'Sotsiologicheskoe Obozrenie', 1728192, 0.235, 'Q3', 4, 48, 1865, 40, 146, '10', '2016-2020', 'Social Sciences (miscellaneous) (Q3)'), (16096, 'Survey Methodology', 14920921, 0.235, 'Q4', 21, 11, 379, 19, 34, '9', '1987-1988, 1992, 2008-2017, 2019-2020', 'Modeling and Simulation (Q4); Statistics and Probability (Q4)'), (16097, 'Turkish Journal of Physical Medicine and Reha', 25870823, 0.235, 'Q3', 5, 55, 1385, 104, 102, '18', '2018-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (16098, 'Victorian Literature and Culture', 10601503, 0.235, 'Q1', 15, 32, 1559, 66, 209, '3', '1996-2020', 'Cultural Studies (Q1); Literature and Literary Theory (Q1)'), (16099, 'Wounds UK', 17466814, 0.235, 'Q3', 18, 82, 1137, 81, 162, '3', '2006-2020', 'Dermatology (Q3)'), (16100, 'AES: Journal of the Audio Engineering Society', 47554, 0.234, 'Q2', 60, 58, 1902, 236, 221, '2', '1970-2020', 'Music (Q2); Engineering (miscellaneous) (Q3)'), (16101, 'Analyse und Kritik', 1715860, 0.234, 'Q2', 11, 22, 1020, 15, 67, '5', '2011-2020', 'Philosophy (Q2); Sociology and Political Science (Q3)'), (16102, 'Applied Ecology and Environmental Research', 17850037, 0.234, 'Q3', 32, 525, 23910, 1556, 1906, '50', '2003, 2005-2020', 'Agronomy and Crop Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (16103, 'Asian Academy of Management Journal', 21804184, 0.234, 'Q3', 14, 16, 1060, 88, 69, '23', '2011-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (16104, 'British Journal of Guidance and Counselling', 3069885, 0.234, 'Q4', 46, 99, 5192, 192, 171, '2', '1973-2020', 'Applied Psychology (Q4)'), (16105, 'Chalcogenide Letters', 15848663, 0.234, 'Q3', 30, 68, 1763, 170, 196, '43', '2006-2020', 'Chemistry (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q3); Electronic, Optical and Magnetic Materials (Q4)'), (16106, 'Chinese Journal of Eco-Agriculture', 16713990, 0.234, 'Q3', 7, 189, 7073, 324, 386, '1', '2018-2020', 'Agronomy and Crop Science (Q3); Ecology (Q3); Soil Science (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (16107, 'Forschung im Ingenieurwesen/Engineering Resea', 157899, 0.234, 'Q3', 22, 39, 880, 125, 164, '5', '1930, 1964-2020', 'Engineering (miscellaneous) (Q3)'), (16108, 'Home healthcare now', 23744529, 0.234, 'Q3', 26, 97, 429, 135, 266, '2', '2015-2020', 'Advanced and Specialized Nursing (Q3); Community and Home Care (Q3); Health (social science) (Q3)'), (16109, 'Inorganic and Nano-Metal Chemistry', 24701556, 0.234, 'Q4', 45, 348, 14158, 550, 418, '3', '2017-2020', 'Inorganic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)'), (16110, 'Journal of Algorithms and Computational Techn', 17483018, 0.234, 'Q3', 13, 33, 790, 157, 108, '3', '2011-2020', 'Computational Mathematics (Q3); Applied Mathematics (Q4); Numerical Analysis (Q4)'), (16111, 'Journal of Applied Analysis', 18696082, 0.234, 'Q4', 16, 26, 562, 45, 61, '5', '1995-2020', 'Applied Mathematics (Q4); Computational Theory and Mathematics (Q4); Mathematical Physics (Q4); Statistics, Probability and Uncertainty (Q4)'), (16112, 'Journal of Graphic Novels and Comics', 21504857, 0.234, 'Q1', 10, 94, 2485, 57, 117, '3', '2010-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)'), (16113, 'Journal of Pharmaceutical Negative Results', 9769234, 0.234, 'Q3', 5, 14, 322, 21, 32, '4', '2010-2011, 2013-2020', 'Pharmaceutical Science (Q3); Drug Discovery (Q4); Pharmacology (Q4)'), (16114, 'Kappa Delta Pi Record', 21631611, 0.234, 'Q3', 7, 36, 528, 59, 93, '3', '1996, 2015-2020', 'Education (Q3)'), (16115, 'Klinische Monatsblatter fur Augenheilkunde', 232165, 0.234, 'Q4', 37, 261, 5344, 287, 575, '5', '1963-2020', 'Medicine (miscellaneous) (Q4); Ophthalmology (Q4)'), (16116, 'Liquid Crystals Today', 14645181, 0.234, 'Q3', 15, 11, 302, 33, 37, '3', '1991-1996, 2000-2020', 'Materials Chemistry (Q3); Condensed Matter Physics (Q4); Inorganic Chemistry (Q4)'), (16117, 'Markov Processes and Related Fields', 10242953, 0.234, 'Q4', 10, 0, 0, 9, 10, '10', '2013-2018', 'Applied Mathematics (Q4); Statistics and Probability (Q4)'), (16118, 'Operations and Supply Chain Management', 19793561, 0.234, 'Q3', 5, 32, 1963, 69, 44, '21', '2018-2020', 'Information Systems and Management (Q3); Management Information Systems (Q3); Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4)'), (16119, 'Pakistan Journal of Statistics', 10129367, 0.234, 'Q4', 17, 24, 539, 81, 77, '34', '2008-2020', 'Statistics and Probability (Q4)'), (16120, 'Plains Anthropologist', 320447, 0.234, 'Q2', 19, 17, 1403, 13, 45, '3', '1972-1973, 1978-1982, 1984-1986, 1989, 1996-2020', 'Anthropology (Q2)'), (16121, 'Records of the Australian Museum', 671975, 0.234, 'Q1', 22, 21, 1076, 18, 34, '11', '1983, 2005-2012, 2014-2020', 'History (Q1); Museology (Q1); Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (16122, 'Romanian Journal of Legal Medicine', 12218618, 0.234, 'Q4', 12, 54, 1506, 73, 241, '43', '1995-2020', 'Pathology and Forensic Medicine (Q4)'), (16123, 'Sustainability', 19370709, 0.234, 'Q3', 14, 28, 740, 73, 97, '2', '2009-2020', 'Education (Q3); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q4)'), (16124, 'WSEAS Transactions on Fluid Mechanics', 2224347, 0.234, 'Q3', 11, 20, 444, 50, 52, '39', '2009-2015, 2017-2020', 'Computational Mechanics (Q3); Ocean Engineering (Q3); Physics and Astronomy (miscellaneous) (Q3); Fluid Flow and Transfer Processes (Q4); Modeling and Simulation (Q4)'), (16125, 'A&amp;A practice', 25753126, 0.233, 'Q4', 14, 227, 0, 206, 302, '2', '2018-2020', 'Medicine (miscellaneous) (Q4)'), (16126, 'ACM Transactions on Programming Languages and', 1640925, 0.233, 'Q3', 70, 9, 532, 143, 60, '2', '1979-2020', 'Software (Q3)'), (16127, 'Acta Chirurgica Belgica', 15458, 0.233, 'Q3', 36, 132, 2718, 192, 245, '3', '1946-2020', 'Surgery (Q3); Medicine (miscellaneous) (Q4)'), (16128, 'Acta Theriologica Sinica', 10001050, 0.233, 'Q4', 21, 69, 2682, 122, 196, '1', '1990-2020', 'Animal Science and Zoology (Q4)'), (16129, 'Bariatric Surgical Patient Care', 2168023, 0.233, 'Q2', 12, 41, 1069, 48, 85, '2', '2013-2020', 'Medical and Surgical Nursing (Q2); Surgery (Q3); Nutrition and Dietetics (Q4)'), (16130, 'Bio-Medical Engineering', 63398, 0.233, 'Q3', 16, 96, 1301, 185, 288, '2', '1967-2020', 'Medical Laboratory Technology (Q3); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)'), (16131, 'Boletim de Ciencias Geodesicas', 14134853, 0.233, 'Q3', 11, 17, 499, 76, 110, '14', '2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (16132, 'Botanicheskii Zhurnal', 68136, 0.233, 'Q4', 3, 97, 3703, 39, 121, '10', '1977, 1979-1983, 2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (16133, 'Critique - Studies in Contemporary Fiction', 111619, 0.233, 'Q1', 13, 94, 3244, 43, 145, '2', '1956-2020', 'Literature and Literary Theory (Q1)'), (16134, 'Etude de la Population Africaine', 8505780, 0.233, 'Q3', 14, 14, 625, 64, 109, '102', '1992, 1996, 2004-2008, 2010-2019', 'Demography (Q3)'), (16135, 'European Journal of Health Law', 9290273, 0.233, 'Q2', 21, 32, 643, 47, 82, '16', '1994-2020', 'Law (Q2); Health Policy (Q3)'), (16136, 'European Journal of Psychiatry', 2136163, 0.233, 'Q4', 24, 38, 1323, 51, 72, '12', '1987-2020', 'Psychiatry and Mental Health (Q4)'), (16137, 'Higher Learning Research Communications', 21576254, 0.233, 'Q3', 3, 15, 523, 7, 17, '2', '2018-2020', 'Education (Q3)'), (16138, 'History Workshop Journal', 14774569, 0.233, 'Q1', 30, 12, 624, 46, 97, '2', '1976-2019', 'History (Q1); History and Philosophy of Science (Q2)'), (16139, 'Informes de la Construccion', 200883, 0.233, 'Q2', 18, 47, 1268, 70, 150, '12', '2008-2020', 'Architecture (Q2); Building and Construction (Q3); Civil and Structural Engineering (Q3); Environmental Engineering (Q3)'), (16140, 'International Criminal Law Review', 1567536, 0.233, 'Q2', 22, 25, 1393, 24, 107, '16', '2001-2020', 'Law (Q2); Political Science and International Relations (Q2); Sociology and Political Science (Q3)'), (16141, 'International Journal of Health Science', 17914728, 0.233, 'Q4', 9, 0, 0, 11, 5, '39', '2016-2017', 'Medicine (miscellaneous) (Q4)'), (16142, 'International Journal of Morphology', 7179502, 0.233, 'Q3', 27, 274, 6756, 503, 708, '45', '2006-2020', 'Anatomy (Q3)'), (16143, 'Journal of Agriculture and Rural Development ', 16129830, 0.233, 'Q3', 17, 25, 1036, 53, 65, '5', '2002-2020', 'Agronomy and Crop Science (Q3); Development (Q3); Forestry (Q3); Geography, Planning and Development (Q3); Animal Science and Zoology (Q4)'), (16144, 'Journal of Interconnection Networks', 17936713, 0.233, 'Q3', 12, 16, 359, 28, 53, '37', '2008-2013, 2015-2020', 'Computer Networks and Communications (Q3)'), (16145, 'Journal of Peacebuilding and Development', 15423166, 0.233, 'Q2', 11, 43, 1616, 59, 92, '3', '2004-2010, 2013-2020', 'Political Science and International Relations (Q2); Safety Research (Q3)'), (16146, 'Kongzhi yu Juece/Control and Decision', 10010920, 0.233, 'Q3', 44, 360, 8644, 961, 973, '1', '1997-2020', 'Control and Systems Engineering (Q3); Software (Q3); Artificial Intelligence (Q4); Control and Optimization (Q4)'), (16147, 'Korean Journal of Food Preservation', 22877428, 0.233, 'Q3', 5, 100, 3359, 166, 348, '13', '2017-2020', 'Food Science (Q3)'), (16148, 'Library Philosophy and Practice', 15220222, 0.233, 'Q2', 20, 803, 19493, 529, 1394, '2', '1998-2020', 'Philosophy (Q2); Library and Information Sciences (Q3)'), (16149, 'NeuroRegulation', 23730587, 0.233, 'Q4', 8, 13, 495, 35, 38, '2', '2014-2020', 'Applied Psychology (Q4); Behavioral Neuroscience (Q4); Biological Psychiatry (Q4); Experimental and Cognitive Psychology (Q4); Neurology (clinical) (Q4); Neuropsychology and Physiological Psychology ('), (16150, 'New Educational Review', 17326729, 0.233, 'Q3', 13, 62, 1254, 115, 260, '17', '2008-2020', 'Education (Q3)'), (16151, 'Osiris', 19338287, 0.233, 'Q1', 27, 17, 399, 54, 48, '2', '1985-1987, 1989-1990, 1992-1995, 1997-2019', 'Cultural Studies (Q1); Arts and Humanities (miscellaneous) (Q2)'), (16152, 'Oxford Journal of Law and Religion', 20470770, 0.233, 'Q1', 11, 18, 1234, 27, 83, '3', '2012-2019', 'Religious Studies (Q1); Law (Q2)'), (16153, 'Pakistan Journal of Commerce and Social Scien', 19978553, 0.233, 'Q3', 7, 37, 3043, 152, 98, '34', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (16154, 'Peuce', 2588102, 0.233, 'Q2', 6, 14, 628, 11, 31, '43', '2003-2004, 2006-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16155, 'Pharmacien Hospitalier et Clinicien', 22111042, 0.233, 'Q3', 8, 56, 1151, 56, 116, '8', '2011-2020', 'Pharmacology (medical) (Q3)'), (16156, 'Philosophica', 3798402, 0.233, 'Q2', 6, 0, 0, 11, 10, '24', '2012-2015, 2017', 'Philosophy (Q2)'), (16157, 'Philosophy East and West', 15291898, 0.233, 'Q2', 20, 59, 2047, 46, 177, '2', '1990, 2002-2020', 'Philosophy (Q2)'), (16158, 'Politische Vierteljahresschrift', 323470, 0.233, 'Q3', 22, 32, 1916, 58, 96, '5', '1987, 1996-2020', 'Sociology and Political Science (Q3)'), (16159, 'Prague Economic Papers', 12100455, 0.233, 'Q3', 17, 35, 1239, 82, 122, '31', '2008-2020', 'Economics and Econometrics (Q3); Finance (Q3)'), (16160, 'Quaestio Rossica', 2311911, 0.233, 'Q1', 7, 116, 2683, 45, 231, '10', '2013-2020', 'History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16161, 'Russian Journal of Applied Chemistry', 10704272, 0.233, 'Q3', 29, 227, 5888, 619, 789, '10', '1995-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (16162, 'Scientific and Technical Information Processi', 1476882, 0.233, 'Q3', 10, 45, 1168, 100, 161, '10', '2008-2020', 'Computer Science (miscellaneous) (Q3)'), (16163, 'Shenyang Gongye Daxue Xuebao/Journal of Sheny', 10001646, 0.233, 'Q3', 11, 124, 1651, 210, 382, '1', '2009-2020', 'Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)'), (16164, 'Turkish Journal of Veterinary and Animal Scie', 13036181, 0.233, 'Q3', 35, 164, 5758, 221, 311, '18', '1996-2020', 'Veterinary (miscellaneous) (Q3)'), (16165, 'Vestnik Sankt-Peterburgskogo Universiteta, Pr', 18119905, 0.233, 'Q3', 8, 36, 652, 103, 129, '10', '2017-2020', 'Computer Science (miscellaneous) (Q3); Applied Mathematics (Q4); Control and Optimization (Q4)'), (16166, 'Veterinarski Arhiv', 3725480, 0.233, 'Q3', 29, 66, 2136, 126, 194, '58', '1981, 1996-2020', 'Veterinary (miscellaneous) (Q3)'), (16167, 'Vienna Yearbook of Population Research', 17285305, 0.233, 'Q3', 22, 12, 426, 31, 54, '28', '2005-2019', 'Demography (Q3)'), (16168, 'Western Birds', 1601121, 0.233, 'Q4', 10, 30, 705, 21, 78, '2', '1981, 2009-2019', 'Animal Science and Zoology (Q4)'), (16169, 'Zephyrus', 5147336, 0.233, 'Q1', 9, 10, 639, 14, 56, '12', '2011-2019', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16170, 'Advances in Traditional Medicine', 26624060, 0.232, 'Q3', 13, 102, 5277, 203, 156, '37', '2020', 'Complementary and Alternative Medicine (Q3)'), (16171, 'African Journal of Hospitality, Tourism and L', 2223814, 0.232, 'Q3', 11, 227, 11287, 570, 771, '27', '2017-2020', 'Geography, Planning and Development (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (16172, 'AgBioForum', 1522936, 0.232, 'Q3', 41, 5, 0, 25, 26, '2', '1998-2018', 'Agronomy and Crop Science (Q3); Biotechnology (Q3); Economics and Econometrics (Q3); Food Science (Q3)'), (16173, 'Agricultural Economics Review', 11092580, 0.232, 'Q3', 10, 0, 0, 6, 14, '39', '2011-2017', 'Agronomy and Crop Science (Q3)'), (16174, 'Archivos de Zootecnia', 18854494, 0.232, 'Q4', 15, 49, 2006, 132, 330, '12', '1981-1984, 2008-2020', 'Animal Science and Zoology (Q4)'), (16175, 'Asian-Pacific Economic Literature', 8189935, 0.232, 'Q3', 21, 15, 467, 47, 50, '3', '1987-2020', 'Development (Q3); Economics and Econometrics (Q3); Geography, Planning and Development (Q3)'), (16176, 'Buletinul Academiei de Stiinte a Republicii M', 10247696, 0.232, 'Q4', 7, 17, 228, 20, 80, '123', '2011-2020', 'Mathematics (miscellaneous) (Q4)'), (16177, 'Canadian Historical Review', 17101093, 0.232, 'Q1', 21, 23, 1637, 26, 66, '9', '1978, 1980-1983, 1985-1986, 1989, 1996-2020', 'History (Q1); Religious Studies (Q1)'), (16178, 'Children s Literature in Education', 456713, 0.232, 'Q2', 17, 56, 2122, 39, 86, '16', '1970-2002, 2005-2020', 'Linguistics and Language (Q2); Education (Q3)'), (16179, 'Current Issues in Personality Psychology', 23534192, 0.232, 'Q4', 4, 32, 1629, 61, 93, '17', '2019-2020', 'Social Psychology (Q4)'), (16180, 'Egyptian Journal of Neurology, Psychiatry and', 16878329, 0.232, 'Q3', 9, 118, 3548, 103, 130, '2', '2009-2016, 2018-2020', 'Surgery (Q3); Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4); Psychiatric Mental Health (Q4); Psychiatry and Mental Health (Q4)'), (16181, 'European Law Review', 3075400, 0.232, 'Q2', 20, 18, 2017, 46, 102, '3', '1995, 2008-2020', 'Law (Q2)'), (16182, 'Fennoscandia Archaeologica', 7817126, 0.232, 'Q2', 8, 0, 0, 6, 16, '38', '2011-2018', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16183, 'International Journal of Acoustics and Vibrat', 10275851, 0.232, 'Q3', 19, 45, 1332, 148, 189, '2', '2000, 2004-2020', 'Acoustics and Ultrasonics (Q3); Mechanical Engineering (Q3)'), (16184, 'International Journal of Applied Decision Sci', 17558085, 0.232, 'Q3', 18, 21, 1083, 82, 65, '3', '2009-2014, 2020', 'Economics and Econometrics (Q3); Information Systems and Management (Q3); Strategy and Management (Q3); Management Science and Operations Research (Q4)'), (16185, 'International Journal of Gas Turbine, Propuls', 18825079, 0.232, 'Q3', 8, 21, 421, 24, 13, '6', '2007-2008, 2010, 2012-2017', 'Mechanical Engineering (Q3)'), (16186, 'International Journal of Modeling, Simulation', 17939623, 0.232, 'Q3', 16, 74, 2414, 199, 201, '37', '2010-2020', 'Computer Science Applications (Q3); Modeling and Simulation (Q4)'), (16187, 'International Journal of Public Sector Perfor', 17411041, 0.232, 'Q3', 8, 60, 2448, 61, 85, '3', '2009-2010, 2012-2013, 2020', 'Public Administration (Q3); Strategy and Management (Q3); Organizational Behavior and Human Resource Management (Q4)'), (16188, 'International Journal of Surgery Case Reports', 22102612, 0.232, 'Q3', 19, 1200, 19016, 1486, 1890, '16', '2010-2020', 'Surgery (Q3)'), (16189, 'Iraqi Journal of Agricultural Sciences', 750530, 0.232, 'Q3', 7, 181, 5482, 359, 426, '48', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (16190, 'Jiaotong Yunshu Xitong Gongcheng Yu Xinxi/ Jo', 10096744, 0.232, 'Q3', 26, 209, 2274, 473, 630, '1', '2008-2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Transportation (Q3); Modeling and Simulation (Q4)'), (16191, 'Journal of Environmental Engineering (Japan)', 1881817, 0.232, 'Q3', 8, 101, 2009, 94, 328, '6', '2008-2020', 'Environmental Engineering (Q3)'), (16192, 'Journal of Map and Geography Libraries', 15420353, 0.232, 'Q3', 13, 4, 143, 29, 37, '2', '2004-2007, 2009-2020', 'Library and Information Sciences (Q3)'), (16193, 'Journal of the Belgian Society of Radiology', 25148281, 0.232, 'Q4', 24, 73, 495, 120, 118, '3', '2015-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (16194, 'Journal of the History of Medicine and Allied', 14684373, 0.232, 'Q1', 27, 17, 1215, 73, 56, '3', '1946-2020', 'History (Q1); Geriatrics and Gerontology (Q4)'), (16195, 'Legal Issues of Economic Integration', 15666573, 0.232, 'Q2', 10, 8, 501, 16, 63, '16', '2012-2020', 'Law (Q2); Economics and Econometrics (Q3)'), (16196, 'Maetagused', 1406992, 0.232, 'Q2', 2, 20, 720, 10, 80, '71', '2017-2020', 'Anthropology (Q2); Cultural Studies (Q2)'), (16197, 'Nami Jishu yu Jingmi Gongcheng/Nanotechnology', 16726030, 0.232, 'Q3', 12, 27, 1442, 119, 148, '1', '2006-2020', 'Industrial and Manufacturing Engineering (Q3); Instrumentation (Q3); Mechanical Engineering (Q3); Nanoscience and Nanotechnology (Q4)'), (16198, 'Nucleus (India)', 9767975, 0.232, 'Q4', 9, 43, 2401, 63, 92, '4', '2011-2020', 'Cell Biology (Q4); Genetics (Q4); Molecular Biology (Q4); Molecular Medicine (Q4)'), (16199, 'Planning Malaysia', 16756215, 0.232, 'Q2', 7, 98, 2435, 126, 263, '23', '2010-2020', 'Urban Studies (Q2); Geography, Planning and Development (Q3)'), (16200, 'Property Management', 2637472, 0.232, 'Q3', 28, 44, 2533, 130, 117, '3', '1983-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Finance (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (16201, 'Review of Behavioral Finance', 19405987, 0.232, 'Q3', 11, 50, 2566, 95, 79, '3', '2009-2020', 'Accounting (Q3); Finance (Q3); Strategy and Management (Q3)'), (16202, 'Revista Brasileira de Politica Internacional', 19833121, 0.232, 'Q1', 15, 27, 1280, 39, 60, '14', '2008-2020', 'History (Q1); Political Science and International Relations (Q2)'), (16203, 'Revista de la Construccion', 7177925, 0.232, 'Q3', 10, 42, 1362, 98, 127, '45', '2008-2020', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (16204, 'Sante Publique', 9953914, 0.232, 'Q4', 17, 71, 431, 89, 339, '8', '1947, 1973-1979, 1993, 1996-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (16205, 'Signa', 22549307, 0.232, 'Q1', 5, 37, 1377, 27, 135, '12', '2010-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3)'), (16206, 'Soldagem e Inspecao', 19806973, 0.232, 'Q3', 11, 39, 963, 75, 110, '14', '2008-2020', 'Mechanical Engineering (Q3); Metals and Alloys (Q3); Mechanics of Materials (Q4)'), (16207, 'Synergy', 22137130, 0.232, 'Q3', 9, 9, 407, 50, 30, '16', '2014-2020', 'Pharmacology (medical) (Q3); Cell Biology (Q4); Medicine (miscellaneous) (Q4); Molecular Biology (Q4)'), (16208, 'Teoria y Realidad Constitucional', 11395583, 0.232, 'Q2', 7, 37, 1373, 38, 126, '12', '2012-2020', 'Law (Q2); Political Science and International Relations (Q2)'), (16209, 'Xitong Gongcheng Lilun yu Shijian/System Engi', 10006788, 0.232, 'Q3', 40, 251, 9246, 736, 859, '1', '1998, 2001-2020', 'Computer Science Applications (Q3); Control and Systems Engineering (Q3); Economic Geology (Q3); Modeling and Simulation (Q4)'), (16210, 'Yuzuncu Yil University Journal of Agricultura', 13087576, 0.232, 'Q3', 5, 97, 3065, 94, 239, '18', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (16211, 'BMJ Case Reports', 1757790, 0.231, 'Q4', 26, 1885, 23119, 3319, 5645, '3', '2008-2020', 'Medicine (miscellaneous) (Q4)'), (16212, 'Buffalo Bulletin', 1256726, 0.231, 'Q3', 11, 75, 1273, 50, 239, '40', '2008-2020', 'Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)'), (16213, 'Business Systems Research', 18479375, 0.231, 'Q3', 6, 22, 1012, 90, 69, '5', '2017-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Information Systems (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)'), (16214, 'Ciudad y Territorio Estudios Territoriales', 11334762, 0.231, 'Q3', 4, 46, 1514, 39, 122, '12', '2014-2020', 'Geography, Planning and Development (Q3); Urban Studies (Q3)'), (16215, 'Deutsche Zeitschrift fur Sportmedizin', 3445925, 0.231, 'Q3', 20, 54, 1731, 73, 98, '5', '1996-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (16216, 'Ferroelectrics, Letters Section', 15635228, 0.231, 'Q4', 18, 12, 224, 34, 36, '3', '1983-2020', 'Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (16217, 'Forensische Psychiatrie, Psychologie, Krimino', 18627072, 0.231, 'Q2', 15, 57, 1874, 54, 126, '5', '2007-2020', 'Law (Q2); Applied Psychology (Q4); Psychiatry and Mental Health (Q4)'), (16218, 'Fuhe Cailiao Xuebao/Acta Materiae Compositae ', 10003851, 0.231, 'Q3', 26, 345, 9794, 895, 1124, '1', '1993-2020', 'Ceramics and Composites (Q3); Chemistry (miscellaneous) (Q3); Condensed Matter Physics (Q4); Mechanics of Materials (Q4)'), (16219, 'Herald of the Russian Academy of Sciences', 15556492, 0.231, 'Q2', 14, 92, 2441, 143, 218, '10', '2005-2020', 'Cultural Studies (Q2); Political Science and International Relations (Q2)'), (16220, 'Indian Journal of Surgical Oncology', 9757651, 0.231, 'Q3', 16, 252, 5167, 252, 382, '4', '2010-2020', 'Surgery (Q3); Oncology (Q4)'), (16221, 'Intelligent Data Analysis', 1088467, 0.231, 'Q3', 47, 90, 3497, 264, 223, '16', '1997-2020', 'Computer Vision and Pattern Recognition (Q3); Artificial Intelligence (Q4); Theoretical Computer Science (Q4)'), (16222, 'International Journal of Signal and Imaging S', 17480698, 0.231, 'Q3', 12, 7, 287, 56, 62, '3', '2009-2014', 'Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)'), (16223, 'International Journal on Algae', 15219429, 0.231, 'Q4', 9, 31, 1050, 33, 91, '2', '2004-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (16224, 'Isi Bilimi Ve Teknigi Dergisi/ Journal of The', 13003615, 0.231, 'Q3', 11, 29, 868, 49, 69, '18', '2008-2013, 2015-2019', 'Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Atomic and Molecular Physics, and Optics (Q4)'), (16225, 'Jisuan Lixue Xuebao/Chinese Journal of Comput', 10074708, 0.231, 'Q3', 20, 108, 2101, 163, 351, '1', '2001-2020', 'Computational Mechanics (Q3); Applied Mathematics (Q4); Modeling and Simulation (Q4)'), (16226, 'Jordan Journal of Mechanical and Industrial E', 19956665, 0.231, 'Q3', 16, 44, 1394, 90, 96, '62', '2009, 2011-2020', 'Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)'), (16227, 'Journal of Fuel Chemistry and Technology', 18725813, 0.231, 'Q3', 38, 172, 5560, 518, 555, '1', '1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Fuel Technology (Q3); Physical and Theoretical Chemistry (Q4)'), (16228, 'Journal of Internet Technology', 20794029, 0.231, 'Q3', 22, 149, 4205, 592, 577, '22', '2004-2020', 'Computer Networks and Communications (Q3); Software (Q3)'), (16229, 'Journal of Public Budgeting, Accounting and F', 10963367, 0.231, 'Q3', 11, 78, 4280, 79, 73, '3', '2011-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Finance (Q3); Public Administration (Q3); Strategy and Management (Q3)'), (16230, 'Journal of Technology Management and Innovati', 7182724, 0.231, 'Q3', 27, 37, 1853, 111, 119, '45', '2008-2020', 'Management of Technology and Innovation (Q3)'), (16231, 'Missionalia', 2569507, 0.231, 'Q1', 9, 0, 0, 12, 31, '27', '2002-2005, 2007-2018', 'Religious Studies (Q1)'), (16232, 'MSMR', 21580111, 0.231, 'Q4', 16, 32, 535, 45, 43, '2', '2011-2016, 2019-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (16233, 'Nonlinear Phenomena in Complex Systems', 15614085, 0.231, 'Q4', 12, 49, 1095, 69, 134, '75', '2009-2020', 'Mathematical Physics (Q4); Statistical and Nonlinear Physics (Q4)'), (16234, 'Obnovljeni Zivot', 3513947, 0.231, 'Q1', 3, 36, 944, 12, 91, '58', '2011-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (16235, 'Phosphorus, Sulfur and Silicon and the Relate', 10426507, 0.231, 'Q4', 42, 186, 7958, 566, 547, '3', '1989-2020', 'Biochemistry (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4)'), (16236, 'Pragmatics and Society', 18789722, 0.231, 'Q2', 12, 28, 1274, 50, 77, '16', '2010-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16237, 'Progress in Color, Colorants and Coatings', 20082134, 0.231, 'Q3', 8, 14, 469, 81, 80, '15', '2016-2020', 'Surfaces, Coatings and Films (Q3); Process Chemistry and Technology (Q4)'), (16238, 'Qwerty', 18287344, 0.231, 'Q2', 4, 7, 179, 23, 31, '7', '2017-2020', 'Cultural Studies (Q2); Communication (Q3); Education (Q3); Human-Computer Interaction (Q3)'), (16239, 'Somnologie', 1439054, 0.231, 'Q4', 25, 39, 1241, 80, 102, '5', '1997-2020', 'Physiology (medical) (Q4)'), (16240, 'American Journal of Nursing', 2936, 0.23, 'Q3', 57, 421, 401, 382, 651, '2', '1945-2020', 'Nursing (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (16241, 'Asian Studies', 22325131, 0.23, 'Q1', 5, 39, 1414, 47, 71, '60', '2013-2020', 'History (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2); Philosophy (Q2); Sociology and Political Science (Q3)'), (16242, 'Biotechnologia', 8607796, 0.23, 'Q3', 11, 31, 1616, 93, 102, '17', '2007-2020', 'Biotechnology (Q3); Plant Science (Q4)'), (16243, 'Ceramics - Silikaty', 8625468, 0.23, 'Q3', 32, 50, 1684, 148, 150, '31', '1991-2020', 'Chemical Engineering (miscellaneous) (Q3); Materials Chemistry (Q3); Analytical Chemistry (Q4); Ceramics and Composites (Q4); Physical and Theoretical Chemistry (Q4)'), (16244, 'Critical Arts', 19926049, 0.23, 'Q2', 16, 56, 2015, 39, 143, '3', '1980-1986, 1988, 1990-2020', 'Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Communication (Q3)'), (16245, 'Desarrollo y Sociedad', 1203584, 0.23, 'Q2', 6, 20, 967, 18, 41, '47', '1979-1985, 1994, 2010-2020', 'Political Science and International Relations (Q2); Development (Q3); Economics and Econometrics (Q3); Sociology and Political Science (Q3)'), (16246, 'Educar', 211819, 0.23, 'Q3', 3, 30, 1238, 38, 52, '12', '2018-2020', 'Communication (Q3); Education (Q3); Human-Computer Interaction (Q3)'), (16247, 'Egyptian Journal of Anaesthesia', 16871804, 0.23, 'Q3', 12, 43, 1137, 50, 109, '32', '2003-2020', 'Anesthesiology and Pain Medicine (Q3)'), (16248, 'Electronic Journal of Plant Breeding', 975928, 0.23, 'Q3', 9, 197, 3614, 193, 584, '4', '2009-2020', 'Agronomy and Crop Science (Q3); Soil Science (Q3); Plant Science (Q4)'), (16249, 'IEEE Instrumentation and Measurement Magazine', 10946969, 0.23, 'Q3', 45, 99, 1550, 261, 168, '2', '1998-2020', 'Electrical and Electronic Engineering (Q3); Instrumentation (Q3)'), (16250, 'International Journal of Continuing Engineeri', 15604624, 0.23, 'Q3', 20, 33, 765, 65, 70, '3', '1986, 1988, 1990-2014, 2020', 'Education (Q3); Engineering (miscellaneous) (Q3); E-learning (Q4)'), (16251, 'International Journal of Learning Technology', 17418119, 0.23, 'Q3', 9, 16, 630, 35, 49, '19', '2020', 'Education (Q3); E-learning (Q4)'), (16252, 'International Journal of Migration, Health an', 20428650, 0.23, 'Q2', 15, 37, 1864, 83, 97, '3', '2005-2020', 'Law (Q2); Health (social science) (Q3); Sociology and Political Science (Q3)'), (16253, 'International Journal of Mining and Mineral E', 1754890, 0.23, 'Q3', 13, 22, 589, 55, 58, '19', '2011-2014', 'Geotechnical Engineering and Engineering Geology (Q3); Industrial and Manufacturing Engineering (Q3)'), (16254, 'International Journal of Psychological Resear', 20117922, 0.23, 'Q3', 11, 20, 983, 34, 43, '47', '2011-2020', 'Psychology (miscellaneous) (Q3)'), (16255, 'International Journal of Service Science, Man', 19479603, 0.23, 'Q2', 8, 31, 1586, 133, 60, '2', '2014, 2017-2020', 'Multidisciplinary (Q2); Business, Management and Accounting (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)'), (16256, 'International Journal of Therapeutic Massage ', 1916257, 0.23, 'Q3', 13, 18, 447, 24, 26, '9', '2017-2020', 'Health Professions (miscellaneous) (Q3)'), (16257, 'Journal for Person-Oriented Research', 20030177, 0.23, 'Q3', 3, 8, 398, 9, 10, '20', '2019-2020', 'Psychology (miscellaneous) (Q3); Applied Psychology (Q4)'), (16258, 'Journal of Criminological Research, Policy an', 2056385, 0.23, 'Q2', 8, 30, 1418, 72, 72, '3', '2015-2020', 'Law (Q2); Health (social science) (Q3); Sociology and Political Science (Q3); Public Administration (Q4); Social Psychology (Q4)'), (16259, 'Journal of Elementology', 16442296, 0.23, 'Q3', 23, 105, 3629, 302, 324, '17', '2008-2020', 'Ecology (Q3); Pollution (Q3); Health, Toxicology and Mutagenesis (Q4); Inorganic Chemistry (Q4)'), (16260, 'Journal of European Competition Law and Pract', 20417772, 0.23, 'Q2', 8, 75, 1769, 27, 139, '2', '2010-2020', 'Law (Q2)'), (16261, 'Journal of Literary Semantics', 3417638, 0.23, 'Q1', 13, 9, 340, 10, 23, '5', '1972-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16262, 'Journal of Power Electronics', 15982092, 0.23, 'Q3', 33, 148, 3630, 528, 474, '13', '2008-2020', 'Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3)'), (16263, 'Journal of Teaching in International Business', 8975930, 0.23, 'Q3', 24, 20, 925, 66, 44, '2', '1989-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)'), (16264, 'Marine Technology Society Journal', 253324, 0.23, 'Q3', 43, 62, 1461, 133, 158, '2', '1969-1987, 1993-2020', 'Ocean Engineering (Q3); Oceanography (Q4)'), (16265, 'OCNOS', 1885446, 0.23, 'Q1', 10, 21, 896, 34, 65, '12', '2009-2020', 'Literature and Literary Theory (Q1); Education (Q3); Social Psychology (Q4)'), (16266, 'Physiotherapy Practice and Research', 22130683, 0.23, 'Q3', 8, 25, 797, 31, 54, '16', '2009-2020', 'Occupational Therapy (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (16267, 'Problems and Perspectives in Management', 17277051, 0.23, 'Q2', 18, 170, 7270, 558, 457, '44', '2003-2020', 'Law (Q2); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Information Systems and Management (Q3); Public Administration (Q3); Sociology and Polit'), (16268, 'Revista Brasileira de Educacao Especial', 14136538, 0.23, 'Q3', 10, 45, 1597, 46, 138, '14', '2007-2020', 'Education (Q3)'), (16269, 'Revista Electronica Interuniversitaria de For', 15750965, 0.23, 'Q3', 5, 28, 988, 48, 30, '12', '2019-2020', 'Education (Q3)'), (16270, 'Science and Society', 368237, 0.23, 'Q3', 24, 28, 771, 20, 66, '2', '1977, 1981, 1984, 1986, 1996-2020', 'Sociology and Political Science (Q3)'), (16271, 'Semiotica', 371998, 0.23, 'Q1', 33, 78, 3146, 79, 317, '5', '1969-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16272, 'Spectroscopy Letters', 387010, 0.23, 'Q4', 36, 73, 2627, 264, 245, '2', '1968-2020', 'Analytical Chemistry (Q4); Atomic and Molecular Physics, and Optics (Q4); Spectroscopy (Q4)'), (16273, 'Studia Paedagogica', 18037437, 0.23, 'Q3', 3, 34, 1732, 36, 89, '31', '2017-2020', 'Education (Q3)'), (16274, 'World Review of Science, Technology and Susta', 17412242, 0.23, 'Q2', 15, 22, 926, 44, 63, '3', '2004-2010, 2012-2014', 'Multidisciplinary (Q2)'), (16275, 'Archaeological Reports', 5706084, 0.229, 'Q1', 8, 8, 465, 13, 32, '3', '1955-2019', 'Classics (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16276, 'Asian Journal of Water, Environment and Pollu', 9729860, 0.229, 'Q3', 9, 62, 1371, 132, 162, '16', '2011-2020', 'Pollution (Q3); Water Science and Technology (Q3)'), (16277, 'Bylye Gody', 20739745, 0.229, 'Q1', 13, 129, 4014, 210, 508, '53', '2012-2020', 'History (Q1); Political Science and International Relations (Q2)'), (16278, 'Chinese Journal of Ecology', 10004890, 0.229, 'Q3', 23, 113, 4492, 760, 1259, '1', '1982-1984, 1987-1990, 1992, 1994, 2005-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (16279, 'Chinese Journal of Liquid Crystals and Displa', 10072780, 0.229, 'Q3', 9, 161, 3400, 263, 419, '1', '2015-2020', 'Instrumentation (Q3); Signal Processing (Q3); Electronic, Optical and Magnetic Materials (Q4)'), (16280, 'Concepts in Magnetic Resonance Part A: Bridgi', 15466086, 0.229, 'Q4', 49, 0, 0, 22, 25, '2', '2002-2018', 'Spectroscopy (Q4)'), (16281, 'Conservar Patrimonio', 1646043, 0.229, 'Q1', 6, 18, 590, 30, 68, '26', '2013-2020', 'Museology (Q1); Conservation (Q2)'), (16282, 'Contemporary Economics', 23008814, 0.229, 'Q3', 14, 33, 1640, 104, 98, '17', '2011-2020', 'Accounting (Q3); Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Finance (Q3); Social Sc'), (16283, 'Contributions to Discrete Mathematics', 17150868, 0.229, 'Q4', 8, 14, 176, 45, 61, '9', '2008, 2013-2019', 'Discrete Mathematics and Combinatorics (Q4)'), (16284, 'Doklady Chemistry', 125008, 0.229, 'Q3', 20, 47, 613, 145, 219, '10', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (16285, 'Economics Bulletin', 15452921, 0.229, 'Q3', 31, 209, 5044, 347, 654, '2', '2001-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16286, 'Indian Journal of Medical and Paediatric Onco', 9752129, 0.229, 'Q3', 22, 220, 3853, 246, 374, '4', '2009-2020', 'Pediatrics, Perinatology and Child Health (Q3); Oncology (Q4)'), (16287, 'Indian Journal of Otolaryngology and Head and', 22313796, 0.229, 'Q3', 22, 514, 9468, 356, 731, '4', '1993-2020', 'Otorhinolaryngology (Q3); Surgery (Q3)'), (16288, 'International Journal of Knowledge Management', 15480666, 0.229, 'Q3', 25, 24, 1450, 78, 64, '2', '2005-2020', 'Computer Science Applications (Q3); Management Information Systems (Q3); Management of Technology and Innovation (Q3)'), (16289, 'Journal of Applied Biological Chemistry', 19760442, 0.229, 'Q4', 18, 60, 1876, 111, 171, '13', '2008-2020', 'Bioengineering (Q4); Organic Chemistry (Q4)'), (16290, 'Journal of Applied Optics', 10022082, 0.229, 'Q4', 9, 185, 3330, 266, 481, '1', '2013-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (16291, 'Journal of Business Cycle Research', 25097970, 0.229, 'Q3', 6, 13, 423, 20, 26, '19', '2016-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Statistics, Probability and Uncertainty (Q4)'), (16292, 'Journal of Commonwealth Literature', 17416442, 0.229, 'Q1', 16, 87, 6439, 32, 144, '3', '1967-2020', 'Literature and Literary Theory (Q1)'), (16293, 'Journal of Interior Design', 10717641, 0.229, 'Q1', 13, 18, 620, 47, 51, '2', '1975-1991, 1993-2020', 'Visual Arts and Performing Arts (Q1)'), (16294, 'Journal of Investing', 21688613, 0.229, 'Q3', 3, 47, 985, 42, 115, '3', '2018-2020', 'Finance (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (16295, 'Journal of Legal, Ethical and Regulatory Issu', 15440036, 0.229, 'Q2', 11, 111, 2308, 262, 368, '2', '2009-2020', 'Law (Q2); Business and International Management (Q3); Economics and Econometrics (Q3); Sociology and Political Science (Q3); Strategy and Management (Q3)'), (16296, 'Journal of Marine Science and Technology', 10232796, 0.229, 'Q3', 27, 49, 1304, 153, 212, '22', '1998-2020', 'Mechanical Engineering (Q3); Ocean Engineering (Q3); Mechanics of Materials (Q4); Oceanography (Q4)'), (16297, 'Journal of Mobile Multimedia', 15504646, 0.229, 'Q2', 12, 18, 590, 47, 48, '2', '2011-2019', 'Media Technology (Q2); Communication (Q3); Industrial and Manufacturing Engineering (Q3)'), (16298, 'Journal of the College of Physicians and Surg', 1022386, 0.229, 'Q4', 33, 423, 6126, 559, 892, '34', '1996-2020', 'Medicine (miscellaneous) (Q4)'), (16299, 'Journal of the Egyptian Public Health Associa', 2090262, 0.229, 'Q3', 17, 31, 1054, 62, 54, '2', '1965-1974, 1976-1980, 1985, 1988-2005, 2007, 2010-2017, 2019-2020', 'Community and Home Care (Q3); Health Informatics (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16300, 'Journal of The Institution of Engineers (Indi', 22502130, 0.229, 'Q3', 10, 41, 1036, 111, 96, '4', '2012-2020', 'Geotechnical Engineering and Engineering Geology (Q3); Materials Chemistry (Q3); Mechanical Engineering (Q3); Metals and Alloys (Q3)'), (16301, 'Journal of the Serbian Society for Computatio', 18206530, 0.229, 'Q3', 9, 28, 790, 75, 59, '55', '2012-2020', 'Computational Mechanics (Q3)'), (16302, 'Journal of Water Management Modeling', 22926062, 0.229, 'Q3', 3, 0, 0, 20, 33, '9', '2018-2019', 'Civil and Structural Engineering (Q3); Geography, Planning and Development (Q3); Water Science and Technology (Q3)'), (16303, 'Kotuitui', 1177083, 0.229, 'Q3', 11, 26, 1013, 63, 56, '3', '2009-2010, 2012-2020', 'Social Sciences (miscellaneous) (Q3)'), (16304, 'Law and Contemporary Problems', 239186, 0.229, 'Q2', 37, 43, 868, 59, 99, '2', '1976, 1979, 1981-1982, 1985-1986, 1988-1989, 1991, 1993-1994, 1996, 2004-2020', 'Law (Q2)'), (16305, 'Materiale Plastice', 255289, 0.229, 'Q3', 24, 93, 2428, 345, 509, '43', '1970-1971, 1973, 1975-1986, 1988, 1996-2020', 'Chemistry (miscellaneous) (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3); Mechanics of Materials (Q4)'), (16306, 'Multicultural Education', 10683844, 0.229, 'Q2', 18, 15, 360, 23, 34, '2', '2005-2013, 2015-2020', 'Cultural Studies (Q2); Linguistics and Language (Q2); Education (Q3)'), (16307, 'Nanjing Li Gong Daxue Xuebao/Journal of Nanji', 10059830, 0.229, 'Q3', 13, 104, 1807, 204, 341, '1', '1994-2020', 'Engineering (miscellaneous) (Q3)'), (16308, 'Nova Economia', 1036351, 0.229, 'Q3', 9, 36, 1570, 31, 114, '14', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16309, 'Novosti Sistematiki Nizshikh Rastenii', 5685435, 0.229, 'Q4', 5, 35, 1129, 43, 90, '10', '2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (16310, 'Real Analysis Exchange', 1471937, 0.229, 'Q4', 20, 0, 0, 45, 64, '2', '1995, 2002-2004, 2006-2019', 'Analysis (Q4); Geometry and Topology (Q4)'), (16311, 'Senior care pharmacist, The', 26399636, 0.229, 'Q4', 21, 0, 0, 126, 175, '2', '2019', 'Medicine (miscellaneous) (Q4)'), (16312, 'South Asian Journal of Human Resources Manage', 23220937, 0.229, 'Q4', 8, 18, 1041, 53, 44, '3', '2014-2020', 'Organizational Behavior and Human Resource Management (Q4)'), (16313, 'TECHNE', 22390243, 0.229, 'Q2', 8, 31, 411, 75, 256, '7', '2015-2020', 'Architecture (Q2); Building and Construction (Q3); Education (Q3); Health (social science) (Q3)'), (16314, 'Trziste', 3534790, 0.229, 'Q3', 7, 24, 1223, 35, 36, '58', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Marketing (Q3)'), (16315, 'Underwater Technology', 17560543, 0.229, 'Q3', 19, 13, 217, 18, 24, '3', '1978-1981, 1984, 1986-1989, 2002, 2009-2020', 'Ocean Engineering (Q3)'), (16316, 'World Review of Entrepreneurship, Management ', 17460581, 0.229, 'Q3', 16, 37, 1957, 96, 120, '3', '2006-2014, 2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Renewable Energy, Sustainability and the Environment (Q4)'), (16317, 'Abstract and Applied Analysis', 10853375, 0.228, 'Q4', 56, 59, 1569, 79, 89, '2', '1996, 2002-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (16318, 'Applied Mathematics and Information Sciences', 19350090, 0.228, 'Q3', 38, 94, 2444, 521, 493, '2', '2007-2020', 'Computer Science Applications (Q3); Analysis (Q4); Applied Mathematics (Q4); Computational Theory and Mathematics (Q4); Numerical Analysis (Q4)'), (16319, 'Cartographica', 3177173, 0.228, 'Q3', 34, 23, 1106, 51, 61, '9', '1980-2001, 2004-2020', 'Earth-Surface Processes (Q3)'), (16320, 'Ciencia e Investigacion Agraria', 3045609, 0.228, 'Q3', 19, 0, 0, 78, 85, '45', '1982, 2008-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (16321, 'Contributions of the Astronomical Observatory', 13360337, 0.228, 'Q4', 12, 101, 1795, 101, 180, '53', '2007-2020', 'Astronomy and Astrophysics (Q4)'), (16322, 'Current Surgery Reports', 21674817, 0.228, 'Q3', 8, 31, 1659, 43, 80, '2', '2015-2020', 'Surgery (Q3)'), (16323, 'Education and Self Development', 19917740, 0.228, 'Q2', 3, 45, 1208, 34, 67, '10', '2018-2020', 'Political Science and International Relations (Q2); Development (Q3); Education (Q3)'), (16324, 'e-Journal of Surface Science and Nanotechnolo', 13480391, 0.228, 'Q3', 23, 46, 1084, 86, 131, '6', '2005-2020', 'Biotechnology (Q3); Surfaces, Coatings and Films (Q3); Bioengineering (Q4); Condensed Matter Physics (Q4); Mechanics of Materials (Q4); Nanoscience and Nanotechnology (Q4); Surfaces and Interfaces (Q4'), (16325, 'Gongcheng Kexue Yu Jishu/Advanced Engineering', 20963246, 0.228, 'Q3', 7, 162, 3721, 395, 593, '1', '2017-2020', 'Engineering (miscellaneous) (Q3)'), (16326, 'International Journal of Mathematical, Engine', 24557749, 0.228, 'Q3', 10, 111, 2948, 173, 176, '4', '2016-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Mathematics (miscellaneous) (Q4)'), (16327, 'International Journal of Modern Physics C', 1291831, 0.228, 'Q3', 67, 180, 6592, 447, 425, '37', '1996-2020', 'Computer Science Applications (Q3); Physics and Astronomy (miscellaneous) (Q3); Computational Theory and Mathematics (Q4); Mathematical Physics (Q4); Statistical and Nonlinear Physics (Q4)'), (16328, 'IRRIGA', 14137895, 0.228, 'Q3', 15, 60, 1650, 93, 245, '14', '2002, 2006-2020', 'Water Science and Technology (Q3)'), (16329, 'Israel Exploration Journal', 212059, 0.228, 'Q1', 15, 15, 651, 17, 40, '36', '2002-2019', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16330, 'Journal of Cases on Information Technology', 15487717, 0.228, 'Q3', 14, 14, 589, 78, 57, '2', '2005-2020', 'Computer Science Applications (Q3); Information Systems (Q3); Information Systems and Management (Q3); Strategy and Management (Q3)'), (16331, 'Journal of International Commerce, Economics ', 17939933, 0.228, 'Q3', 6, 16, 899, 42, 45, '37', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3); Finance (Q3)'), (16332, 'Journal of Military Ethics', 15027570, 0.228, 'Q2', 21, 25, 881, 27, 52, '3', '2002-2020', 'Philosophy (Q2); Sociology and Political Science (Q3)'), (16333, 'Journal of Religion, Spirituality and Aging', 15528030, 0.228, 'Q1', 19, 30, 1472, 40, 58, '2', '2005-2020', 'Religious Studies (Q1); Life-span and Life-course Studies (Q4)'), (16334, 'Journal of Traditional Chinese Medicine', 2552922, 0.228, 'Q3', 27, 115, 4110, 150, 234, '1', '1996-2020', 'Complementary and Alternative Medicine (Q3); Medicine (miscellaneous) (Q4)'), (16335, 'Jundishapur Journal of Natural Pharmaceutical', 22287876, 0.228, 'Q3', 21, 28, 886, 143, 163, '16', '2011-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (16336, 'Klinische Padiatrie', 14393824, 0.228, 'Q3', 44, 47, 1064, 113, 151, '5', '1972-2020', 'Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4)'), (16337, 'Koroze a Ochrana Materialu', 452599, 0.228, 'Q3', 7, 14, 338, 58, 67, '5', '2012-2020', 'Materials Science (miscellaneous) (Q3)'), (16338, 'KSII Transactions on Internet and Information', 19767277, 0.228, 'Q3', 25, 265, 8885, 1046, 963, '13', '2007-2020', 'Computer Networks and Communications (Q3); Information Systems (Q3)'), (16339, 'Language Learning in Higher Education', 2191611, 0.228, 'Q2', 4, 30, 972, 33, 68, '5', '2017-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (16340, 'Mikologiya I Fitopatologiya', 263648, 0.228, 'Q3', 12, 48, 1654, 60, 117, '10', '1996-2020', 'Ecology (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (16341, 'Nursing for Women s Health', 17514851, 0.228, 'Q3', 17, 67, 1619, 127, 151, '2', '2007-2020', 'Nursing (miscellaneous) (Q3)'), (16342, 'Orthopaedic Nursing', 7446020, 0.228, 'Q3', 37, 91, 1138, 145, 255, '2', '1981-2020', 'Advanced and Specialized Nursing (Q3); Orthopedics and Sports Medicine (Q3); Medicine (miscellaneous) (Q4)'), (16343, 'Pediatric Endocrinology, Diabetes and Metabol', 2081237, 0.228, 'Q3', 13, 32, 0, 58, 89, '17', '2007-2020', 'Pediatrics, Perinatology and Child Health (Q3); Endocrinology, Diabetes and Metabolism (Q4); Medicine (miscellaneous) (Q4)'), (16344, 'Plasma Medicine', 19475772, 0.228, 'Q3', 19, 10, 255, 61, 73, '2', '2011-2020', 'Physics and Astronomy (miscellaneous) (Q3); Biomedical Engineering (Q4)'), (16345, 'Politica Economica', 19738218, 0.228, 'Q3', 8, 5, 218, 22, 43, '7', '1997-2019', 'Economics and Econometrics (Q3); Political Science and International Relations (Q3)'), (16346, 'Polski Przeglad Chirurgiczny', 22992847, 0.228, 'Q3', 14, 70, 1260, 129, 211, '17', '1952-1980, 2002-2020', 'Surgery (Q3); Medicine (miscellaneous) (Q4)'), (16347, 'Portugaliae Mathematica', 16622758, 0.228, 'Q4', 14, 0, 0, 36, 41, '19', '2011-2019', 'Mathematics (miscellaneous) (Q4)'), (16348, 'Proceedings of the Royal Society of Victoria', 359211, 0.228, 'Q3', 20, 8, 446, 19, 24, '11', '1980-2011, 2014-2018', 'Ecology (Q3); Geology (Q3)'), (16349, 'Radiation and Risk', 2412950, 0.228, 'Q4', 5, 49, 925, 85, 125, '10', '2016-2020', 'Nuclear and High Energy Physics (Q4); Public Health, Environmental and Occupational Health (Q4); Radiation (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (16350, 'Russian Journal of Bioorganic Chemistry', 10681620, 0.228, 'Q4', 26, 145, 5615, 275, 304, '10', '1996-2020', 'Biochemistry (Q4); Organic Chemistry (Q4)'), (16351, 'Scandinavian Economic History Review', 3585522, 0.228, 'Q1', 15, 29, 1766, 27, 51, '3', '1953-2020', 'History (Q1); Arts and Humanities (miscellaneous) (Q2); Geography, Planning and Development (Q3); Aerospace Engineering (Q4)'), (16352, 'Slavia Centralis', 23858753, 0.228, 'Q1', 2, 21, 401, 13, 40, '60', '2016-2018', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16353, 'Trends in Glycoscience and Glycotechnology', 9157352, 0.228, 'Q4', 36, 48, 1649, 78, 126, '6', '1986, 1989-2020', 'Biochemistry (Q4); Organic Chemistry (Q4)'), (16354, 'Action Learning: Research and Practice', 14767341, 0.227, 'Q3', 12, 32, 561, 38, 63, '3', '2010-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)'), (16355, 'Balkan Journal of Medical Genetics', 13110160, 0.227, 'Q4', 12, 15, 389, 57, 78, '100', '2000-2019', 'Genetics (Q4); Genetics (clinical) (Q4)'), (16356, 'Bulletin of Economic Research', 3073378, 0.227, 'Q3', 29, 46, 1911, 75, 106, '3', '1948-2020', 'Economics and Econometrics (Q3)'), (16357, 'Ecological Questions', 16447298, 0.227, 'Q3', 10, 40, 1670, 95, 96, '17', '2002-2004, 2008-2020', 'Ecology (Q3); Geography, Planning and Development (Q3); Ecological Modeling (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (16358, 'English Studies', 17444217, 0.227, 'Q1', 17, 57, 2610, 38, 167, '3', '1919-1944, 1946-2020', 'Literature and Literary Theory (Q1); Linguistics and Language (Q2)'), (16359, 'Eurasian Chemico-Technological Journal', 15623920, 0.227, 'Q3', 9, 38, 1075, 124, 128, '65', '2007-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Condensed Matter Physics (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (16360, 'Geologica Belgica', 13748505, 0.227, 'Q3', 21, 19, 1263, 25, 33, '24', '2007-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (16361, 'Geology and Mineral Resources of Siberia', 23119594, 0.227, 'Q4', 2, 31, 542, 11, 38, '10', '2019-2020', 'Geochemistry and Petrology (Q4); Geology (Q4); Geophysics (Q4)'), (16362, 'Global Business and Organizational Excellence', 19322054, 0.227, 'Q3', 16, 43, 1298, 83, 119, '2', '2006-2020', 'Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q4)'), (16363, 'Grey Journal', 1574180, 0.227, 'Q3', 6, 39, 484, 17, 67, '16', '2009-2020', 'Library and Information Sciences (Q3)'), (16364, 'Indian Journal of Corporate Governance', 9746862, 0.227, 'Q3', 6, 13, 678, 61, 30, '3', '2008-2020', 'Business and International Management (Q3); Business, Management and Accounting (miscellaneous) (Q3); Strategy and Management (Q3)'), (16365, 'International Arab Journal of Information Tec', 16833198, 0.227, 'Q3', 27, 108, 3052, 348, 358, '62', '2008-2020', 'Computer Science (miscellaneous) (Q3)'), (16366, 'International Journal of Aquatic Research and', 19329997, 0.227, 'Q4', 12, 33, 1058, 19, 44, '2', '2012-2020', 'Aquatic Science (Q4)'), (16367, 'Journal of Operation and Automation in Power ', 24234567, 0.227, 'Q3', 3, 25, 868, 33, 24, '15', '2019-2020', 'Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3); Information Systems (Q3); Applied Mathematics (Q4)'), (16368, 'Journal of Poetry Therapy', 8893675, 0.227, 'Q3', 12, 24, 683, 54, 60, '3', '1990-1993, 2003-2020', 'Clinical Psychology (Q3); Rehabilitation (Q3)'), (16369, 'Journal of special operations medicine : a pe', 15539768, 0.227, 'Q4', 21, 83, 0, 154, 275, '2', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (16370, 'Journal of Spirituality in Mental Health', 19349645, 0.227, 'Q1', 12, 31, 1585, 39, 62, '2', '2007-2020', 'Religious Studies (Q1); Social Sciences (miscellaneous) (Q3); Applied Psychology (Q4); Social Psychology (Q4)'), (16371, 'Journal of Structural Chemistry', 224766, 0.227, 'Q3', 31, 203, 5845, 600, 753, '10', '1960-2020', 'Materials Chemistry (Q3); Inorganic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)'), (16372, 'Journal of the Serbian Chemical Society', 3525139, 0.227, 'Q3', 45, 113, 4199, 404, 345, '55', '1985, 1996-2020', 'Chemistry (miscellaneous) (Q3)'), (16373, 'Journal of Visual Languages and Computing', 10958533, 0.227, 'Q2', 49, 0, 0, 216, 110, '3', '1990-2019', 'Language and Linguistics (Q2); Computer Science Applications (Q3); Human-Computer Interaction (Q3)'), (16374, 'Mathematical Modeling and Computing', 23129794, 0.227, 'Q3', 6, 40, 790, 61, 88, '3', '2018-2020', 'Computational Mathematics (Q3); Computational Theory and Mathematics (Q4)'), (16375, 'Media History', 13688804, 0.227, 'Q1', 11, 56, 2350, 36, 94, '3', '2001, 2010-2020', 'History (Q1); Cultural Studies (Q2); Communication (Q3)'), (16376, 'Middle East Journal of Cancer', 20086709, 0.227, 'Q4', 7, 61, 1801, 82, 128, '15', '2014-2020', 'Cancer Research (Q4); Oncology (Q4)'), (16377, 'Pacific Rim Property Research Journal', 14445921, 0.227, 'Q3', 17, 4, 218, 54, 42, '3', '2000-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16378, 'Revista Iberoamericana de Tecnologias del Apr', 19328540, 0.227, 'Q3', 15, 49, 1672, 92, 69, '2', '2006-2020', 'Education (Q3); Engineering (miscellaneous) (Q3); E-learning (Q4)'), (16379, 'Revista Ingenieria de Construccion', 7162952, 0.227, 'Q3', 11, 27, 877, 52, 78, '45', '2007-2019', 'Building and Construction (Q3); Civil and Structural Engineering (Q3)'), (16380, 'Russian Metallurgy (Metally)', 15556255, 0.227, 'Q3', 17, 259, 4411, 407, 669, '10', '1984-1989, 1996-2020', 'Metals and Alloys (Q3)'), (16381, 'South African Computer Journal', 10157999, 0.227, 'Q3', 6, 22, 785, 84, 49, '27', '2016-2020', 'Computer Networks and Communications (Q3); Education (Q3); Human-Computer Interaction (Q3); Information Systems (Q3); Computer Science Applications (Q4)'), (16382, 'Strength, Fracture and Complexity', 15672069, 0.227, 'Q3', 11, 25, 593, 25, 40, '16', '2003-2007, 2009-2020', 'Mechanical Engineering (Q3); Condensed Matter Physics (Q4); Mechanics of Materials (Q4)'), (16383, 'Zeitschrift fur Allgemeinmedizin', 9376801, 0.227, 'Q4', 15, 116, 1219, 56, 222, '5', '1964, 1969-2020', 'Medicine (miscellaneous) (Q4)'), (16384, 'Addictive Disorders and their Treatment', 15315754, 0.226, 'Q4', 19, 34, 961, 50, 88, '2', '2002-2020', 'Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (16385, 'Anales de Pediatria', 16954033, 0.226, 'Q3', 32, 323, 4797, 349, 500, '12', '2003-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (16386, 'Bulletin of the Atomic Scientists', 19383282, 0.226, 'Q3', 24, 62, 1098, 130, 144, '3', '1946-1948, 1971, 1973-1975, 1979, 1996, 1998-2020', 'Political Science and International Relations (Q3)'), (16387, 'Bulletin of the Russian Academy of Sciences: ', 19349432, 0.226, 'Q3', 20, 356, 5574, 480, 1058, '10', '2005-2020', 'Physics and Astronomy (miscellaneous) (Q3)'), (16388, 'Computational Mathematics and Modeling', 1046283, 0.226, 'Q4', 13, 41, 726, 53, 124, '2', '1990-2002, 2005-2020', 'Computational Mathematics (Q4)'), (16389, 'Current Computer-Aided Drug Design', 15734099, 0.226, 'Q4', 29, 74, 3171, 126, 101, '52', '2006-2020', 'Drug Discovery (Q4); Medicine (miscellaneous) (Q4); Molecular Medicine (Q4)'), (16390, 'Czech Polar Reports', 18050689, 0.226, 'Q3', 7, 22, 834, 46, 74, '31', '2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)'), (16391, 'Differencialnie Uravnenia i Protsesy Upravlen', 18172172, 0.226, 'Q3', 3, 22, 379, 28, 27, '10', '2019-2020', 'Information Systems (Q3); Software (Q3); Analysis (Q4); Applied Mathematics (Q4); Computer Science Applications (Q4); Control and Optimization (Q4)'), (16392, 'Enfermeria Clinica', 11308621, 0.226, 'Q3', 16, 571, 7637, 310, 418, '12', '2005-2020', 'Fundamentals and Skills (Q3); Nursing (miscellaneous) (Q3); Research and Theory (Q3)'), (16393, 'Estudios de Cultura Maya', 1852574, 0.226, 'Q2', 6, 20, 880, 24, 71, '30', '2013-2020', 'Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2); Cultural Studies (Q2)'), (16394, 'Exceptionality Education International', 19185227, 0.226, 'Q3', 8, 0, 0, 24, 39, '9', '2012-2018', 'Education (Q3); Developmental and Educational Psychology (Q4)'), (16395, 'Geociencias', 1980900, 0.226, 'Q3', 18, 97, 3652, 61, 140, '14', '1982-1985, 1988-1990, 1992-1997, 2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (16396, 'Geologia Croatica', 1330030, 0.226, 'Q3', 28, 15, 993, 49, 60, '58', '1992-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geology (Q4)'), (16397, 'Griffith Law Review', 18394205, 0.226, 'Q2', 15, 9, 715, 38, 66, '3', '2003-2006, 2008-2020', 'Law (Q2)'), (16398, 'Historical Encounters', 22037543, 0.226, 'Q1', 6, 18, 716, 24, 28, '11', '2014-2020', 'History (Q1)'), (16399, 'IEEE Potentials', 2786648, 0.226, 'Q3', 33, 65, 296, 135, 147, '2', '1984-2020', 'Education (Q3); Electrical and Electronic Engineering (Q3); Strategy and Management (Q3)'), (16400, 'Innovations in Incidence Geometry', 26407345, 0.226, 'Q4', 2, 4, 59, 7, 12, '2', '2019', 'Geometry and Topology (Q4)'), (16401, 'International Education Journal', 14431475, 0.226, 'Q3', 34, 12, 404, 43, 83, '11', '1999-2008, 2011-2019', 'Education (Q3)'), (16402, 'International Review for Spatial Planning and', 21873666, 0.226, 'Q3', 8, 32, 1317, 79, 108, '6', '2013-2020', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Urban Studies (Q3)'), (16403, 'Izvestiya Vysshikh Uchebnykh Zavedeniy. Prikl', 8696632, 0.226, 'Q3', 5, 39, 1271, 72, 102, '10', '2017-2020', 'Physics and Astronomy (miscellaneous) (Q3); Applied Mathematics (Q4); Statistical and Nonlinear Physics (Q4)'), (16404, 'Journal of Advanced Mechanical Design, System', 18813054, 0.226, 'Q3', 18, 105, 2086, 228, 298, '6', '2010-2020', 'Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3)'), (16405, 'Journal of Educational Multimedia and Hyperme', 19435916, 0.226, 'Q3', 7, 0, 0, 36, 61, '2', '2013-2019', 'Education (Q3); Computer Science Applications (Q4)'), (16406, 'Journal of Electrical Engineering and Technol', 19750102, 0.226, 'Q3', 27, 260, 6490, 842, 799, '13', '2008-2020', 'Electrical and Electronic Engineering (Q3)'), (16407, 'Journal of Extension', 10775315, 0.226, 'Q3', 32, 161, 2342, 203, 482, '2', '1976, 1996-2020', 'Education (Q3)'), (16408, 'Journal of Healthcare Informatics Research', 2509498, 0.226, 'Q3', 6, 21, 876, 76, 48, '19', '2017-2020', 'Information Systems (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Health Informatics (Q4)'), (16409, 'Journal of Korean Religions', 20937288, 0.226, 'Q1', 4, 13, 441, 12, 37, '2', '2010, 2013-2020', 'Religious Studies (Q1)'), (16410, 'Journal of Renal Injury Prevention', 23452781, 0.226, 'Q3', 9, 35, 1006, 130, 175, '15', '2017-2020', 'Urology (Q3); Nephrology (Q4)'), (16411, 'Journal of Veterinary Dentistry', 8987564, 0.226, 'Q3', 26, 34, 661, 62, 95, '2', '1988-2020', 'Veterinary (miscellaneous) (Q3)'), (16412, 'Journal on Data Semantics', 18612040, 0.226, 'Q3', 16, 9, 478, 66, 36, '19', '2012-2020', 'Computer Networks and Communications (Q3); Information Systems (Q3); Artificial Intelligence (Q4)'), (16413, 'Keel ja Kirjandus', 1311441, 0.226, 'Q1', 5, 54, 2120, 23, 147, '71', '2013-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16414, 'Library Leadership and Management', 19458851, 0.226, 'Q3', 11, 8, 91, 27, 78, '2', '2009-2020', 'Library and Information Sciences (Q3); Strategy and Management (Q3)'), (16415, 'Linguistics Journal', 17182301, 0.226, 'Q2', 1, 23, 875, 5, 9, '11', '2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16416, 'Machine Translation', 9226567, 0.226, 'Q2', 29, 14, 971, 115, 41, '16', '1989-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Software (Q3); Artificial Intelligence (Q4)'), (16417, 'Osteuropa', 306428, 0.226, 'Q3', 10, 89, 4193, 27, 248, '5', '1974, 1976, 1978-1979, 1984, 1986, 1996-2014, 2017, 2019-2020', 'Sociology and Political Science (Q3)'), (16418, 'Proyecciones', 7176279, 0.226, 'Q4', 12, 86, 1584, 109, 162, '45', '2000-2002, 2006-2020', 'Mathematics (miscellaneous) (Q4)'), (16419, 'Przemysl Chemiczny', 332496, 0.226, 'Q3', 18, 24, 621, 294, 926, '17', '1973, 1975-1988, 1990, 1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (16420, 'Revista de Ciencias Sociales', 13159518, 0.226, 'Q3', 10, 126, 4288, 255, 168, '94', '2007-2020', 'Social Sciences (miscellaneous) (Q3)'), (16421, 'Russian Journal of General Chemistry', 16083350, 0.226, 'Q3', 28, 402, 10164, 1090, 1182, '10', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (16422, 'Tanaffos', 17350344, 0.226, 'Q3', 16, 26, 642, 99, 141, '15', '2006-2019', 'Critical Care and Intensive Care Medicine (Q3); Pulmonary and Respiratory Medicine (Q4)'), (16423, 'Tuberculosis and Lung Diseases', 25421506, 0.226, 'Q4', 12, 99, 1886, 170, 341, '10', '2010, 2017-2020', 'Infectious Diseases (Q4); Pulmonary and Respiratory Medicine (Q4)'), (16424, 'Vestnik Tomskogo Gosudarstvennogo Universitet', 19986645, 0.226, 'Q1', 5, 103, 2850, 67, 277, '10', '2015-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16425, 'Acta Crystallographica Section E: Crystallogr', 20569890, 0.225, 'Q3', 13, 362, 9390, 717, 1254, '3', '2015-2020', 'Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Condensed Matter Physics (Q4)'), (16426, 'Advances in Electrical and Electronic Enginee', 18043119, 0.225, 'Q3', 19, 30, 759, 241, 208, '31', '2011-2020', 'Electrical and Electronic Engineering (Q3)'), (16427, 'African Journal of Science, Technology, Innov', 20421338, 0.225, 'Q3', 11, 168, 8278, 239, 236, '3', '2013-2020', 'Civil and Structural Engineering (Q3); Computer Networks and Communications (Q3); Development (Q3); Computer Science Applications (Q4)'), (16428, 'Automatisierungstechnik', 1782312, 0.225, 'Q3', 25, 97, 2380, 216, 233, '5', '1964-1968, 1970-1973, 1975-2020', 'Control and Systems Engineering (Q3); Electrical and Electronic Engineering (Q3); Computer Science Applications (Q4)'), (16429, 'Bulletin of the Section of Logic', 1380680, 0.225, 'Q2', 13, 16, 326, 18, 54, '17', '1996-2019', 'Philosophy (Q2); Logic (Q4)'), (16430, 'Computer Animation and Virtual Worlds', 15464261, 0.225, 'Q3', 49, 55, 1632, 232, 153, '3', '2004-2020', 'Computer Graphics and Computer-Aided Design (Q3); Software (Q3)'), (16431, 'Domes : digest of Middle East studies', 10604367, 0.225, 'Q1', 10, 16, 1187, 24, 47, '2', '1994, 1998, 2016, 2018-2020', 'History (Q1); Religious Studies (Q1); Cultural Studies (Q2); Law (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (16432, 'Electromagnetics', 1532527, 0.225, 'Q3', 32, 48, 961, 132, 140, '3', '1981-2020', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4); Radiation (Q4)'), (16433, 'FormAkademisk', 18909515, 0.225, 'Q1', 3, 31, 1347, 24, 44, '33', '2018-2020', 'Visual Arts and Performing Arts (Q1); Urban Studies (Q3)'), (16434, 'Geologos', 14268981, 0.225, 'Q3', 16, 18, 894, 45, 53, '17', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (16435, 'IEEE Spectrum', 189235, 0.225, 'Q3', 65, 155, 0, 518, 397, '2', '1964-2020', 'Electrical and Electronic Engineering (Q3)'), (16436, 'International Energy Journal', 1513718, 0.225, 'Q3', 14, 54, 1792, 64, 77, '40', '2000-2012, 2014-2020', 'Energy (miscellaneous) (Q3)'), (16437, 'International Journal of Applied Management S', 17558913, 0.225, 'Q3', 13, 17, 614, 44, 54, '19', '2008-2014, 2020', 'Strategy and Management (Q3)'), (16438, 'International Journal of Embedded and Real-Ti', 19473184, 0.225, 'Q3', 10, 22, 778, 48, 48, '2', '2010-2020', 'Computer Science (miscellaneous) (Q3)'), (16439, 'International Journal of Engineering, Transac', 17359244, 0.225, 'Q3', 17, 103, 3020, 254, 210, '15', '2004-2020', 'Engineering (miscellaneous) (Q3)'), (16440, 'International Journal of Human Factors and Er', 20457804, 0.225, 'Q4', 6, 20, 932, 38, 38, '3', '2016-2020', 'Human Factors and Ergonomics (Q4)'), (16441, 'International Journal of Innovation and Learn', 14718197, 0.225, 'Q3', 27, 53, 2588, 123, 151, '3', '2003, 2005-2014, 2018, 2020', 'Education (Q3); Management of Technology and Innovation (Q3)'), (16442, 'International Journal of Mobile and Blended L', 19418655, 0.225, 'Q3', 17, 21, 1163, 61, 60, '2', '2009-2020', 'Computer Science (miscellaneous) (Q3); Education (Q3); E-learning (Q4)'), (16443, 'International Journal of Six Sigma and Compet', 14792753, 0.225, 'Q3', 25, 14, 660, 31, 20, '3', '2005-2014', 'Industrial and Manufacturing Engineering (Q3); Strategy and Management (Q3)'), (16444, 'International Journal of Transport Economics', 3918440, 0.225, 'Q3', 23, 0, 0, 38, 66, '7', '1979-1981, 1987, 1989-2019', 'Geography, Planning and Development (Q3); Transportation (Q4)'), (16445, 'Journal of IMAB - Annual Proceeding (Scientif', 1312773, 0.225, 'Q3', 2, 0, 0, 2, 1, '61', '2015-2017', 'Dentistry (miscellaneous) (Q3)'), (16446, 'Journal of Maritime Archaeology', 15572293, 0.225, 'Q2', 13, 17, 820, 29, 63, '2', '2006-2020', 'Archeology (arts and humanities) (Q2)'), (16447, 'Journal of Nano- and Electronic Physics', 20776772, 0.225, 'Q3', 18, 210, 3532, 483, 665, '44', '2009-2020', 'Materials Science (miscellaneous) (Q3); Condensed Matter Physics (Q4); Radiation (Q4)'), (16448, 'Journal of Pidgin and Creole Languages', 9209034, 0.225, 'Q2', 18, 12, 680, 19, 37, '16', '1986-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16449, 'Journal of Spanish Language Teaching', 23247800, 0.225, 'Q2', 7, 13, 747, 26, 39, '3', '2014-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (16450, 'Journal of Sport and Health Research', 19896239, 0.225, 'Q3', 6, 27, 1040, 86, 87, '12', '2018-2019', 'Education (Q3); Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Developmental and Educational Psychology (Q4); Public Health, Environmental and Occupati'), (16451, 'JPRAS Open', 23525878, 0.225, 'Q3', 7, 57, 781, 94, 151, '3', '2014-2020', 'Surgery (Q3)'), (16452, 'Medical History', 20488343, 0.225, 'Q1', 27, 25, 1237, 51, 116, '3', '1957-2020', 'History (Q1); Nursing (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (16453, 'Medizinische Klinik - Intensivmedizin und Not', 21936218, 0.225, 'Q3', 15, 156, 4030, 189, 301, '5', '1997, 2002, 2011-2020', 'Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3); Emergency Nursing (Q3); Internal Medicine (Q3)'), (16454, 'Metron', 261424, 0.225, 'Q4', 21, 28, 790, 52, 60, '7', '1973-1974, 1999-2020', 'Statistics and Probability (Q4)'), (16455, 'Open Sports Sciences Journal', 1875399, 0.225, 'Q3', 12, 20, 699, 42, 44, '16', '2009-2010, 2012-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (16456, 'Periodicals of Engineering and Natural Scienc', 23034521, 0.225, 'Q2', 11, 222, 5154, 421, 340, '90', '2017-2020', 'Architecture (Q2); Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3); Bioengineering (Q4); B'), (16457, 'Psikhologicheskii Zhurnal', 2059592, 0.225, 'Q3', 10, 68, 1919, 77, 213, '10', '1984, 1996-2020', 'Psychology (miscellaneous) (Q3)'), (16458, 'Psychology and Neuroscience', 19843054, 0.225, 'Q4', 18, 33, 1279, 92, 108, '14', '2010-2020', 'Neuropsychology and Physiological Psychology (Q4); Neuroscience (miscellaneous) (Q4)'), (16459, 'Radioengineering', 12102512, 0.225, 'Q3', 43, 76, 2261, 491, 387, '31', '1996-2020', 'Electrical and Electronic Engineering (Q3)'), (16460, 'Research Journal of Pharmacy and Technology', 9743618, 0.225, 'Q3', 46, 818, 23930, 3004, 2538, '4', '1997, 2005, 2011-2020', 'Pharmacology (medical) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (16461, 'Revista de Psicopatologia y Psicologia Clinic', 11365420, 0.225, 'Q3', 14, 13, 616, 34, 59, '12', '2011-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)'), (16462, 'Revista Internacional de Sociologia', 1988429, 0.225, 'Q3', 17, 28, 1612, 72, 92, '12', '1976-1981, 1983, 1985-1988, 1992-1993, 1995, 1997, 1999, 2008-2020', 'Social Sciences (miscellaneous) (Q3)'), (16463, 'Rocks and Minerals', 19401191, 0.225, 'Q3', 7, 80, 510, 24, 148, '2', '1981-1997, 2007-2020', 'Economic Geology (Q3); Stratigraphy (Q3); Geology (Q4)'), (16464, 'Romanian Journal of Acoustics and Vibration', 15847284, 0.225, 'Q3', 10, 12, 227, 38, 66, '43', '2012-2019', 'Acoustics and Ultrasonics (Q3); Mechanics of Materials (Q4)'), (16465, 'South African Journal of Industrial Engineeri', 1012277, 0.225, 'Q3', 16, 66, 2397, 191, 193, '27', '2008-2020', 'Industrial and Manufacturing Engineering (Q3)'), (16466, 'Technology and Disability', 1878643, 0.225, 'Q3', 35, 27, 948, 63, 51, '16', '1992-2020', 'Rehabilitation (Q3); Health Informatics (Q4)'), (16467, 'Theatre, Dance and Performance Training', 19443919, 0.225, 'Q1', 7, 61, 919, 25, 85, '3', '2010-2020', 'Visual Arts and Performing Arts (Q1); Education (Q3)'), (16468, 'Turkish Journal of Electrical Engineering and', 13000632, 0.225, 'Q3', 30, 230, 7035, 1108, 989, '18', '1996-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)'), (16469, 'Wirtschaftsdienst', 436275, 0.225, 'Q3', 9, 254, 1813, 78, 348, '5', '1973, 1975, 1977-1981, 1983-1984, 1986-1987, 1993, 2005-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (16470, 'Acta Ortopedica Brasileira', 14137852, 0.224, 'Q3', 19, 62, 1228, 130, 211, '14', '2006-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4)'), (16471, 'Africa Education Review', 18146627, 0.224, 'Q3', 8, 43, 1526, 93, 139, '3', '2015-2020', 'Education (Q3)'), (16472, 'Archeologicke Rozhledy', 3231267, 0.224, 'Q2', 13, 10, 821, 30, 70, '31', '2001-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16473, 'Atencion Familiar', 14058871, 0.224, 'Q3', 2, 0, 0, 1, 1, '12', '2016-2017', 'Family Practice (Q3); Public Health, Environmental and Occupational Health (Q4)'), (16474, 'Australian Journal of Mathematical Analysis a', 14495910, 0.224, 'Q4', 11, 20, 433, 41, 62, '11', '2008-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (16475, 'Austrian Journal of Earth Sciences', 2517493, 0.224, 'Q4', 22, 16, 1264, 31, 42, '28', '2007-2020', 'Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)'), (16476, 'Bulletin of the Mineral Research and Explorat', 264563, 0.224, 'Q3', 8, 41, 2171, 60, 100, '18', '2014-2020', 'Geotechnical Engineering and Engineering Geology (Q3); Geology (Q4)'), (16477, 'Communications on Stochastic Analysis', 9739599, 0.224, 'Q4', 10, 0, 0, 137, 78, '4', '2017-2020', 'Statistics and Probability (Q4)'), (16478, 'EGA Revista de Expresion Grafica Arquitectoni', 22546103, 0.224, 'Q1', 6, 60, 789, 29, 185, '12', '2011-2020', 'Visual Arts and Performing Arts (Q1); Architecture (Q2)'), (16479, 'Elektronika ir Elektrotechnika', 13921215, 0.224, 'Q3', 26, 59, 1446, 316, 238, '69', '2008-2020', 'Electrical and Electronic Engineering (Q3)'), (16480, 'Historia del Presente', 15798135, 0.224, 'Q1', 3, 24, 832, 10, 43, '12', '2012-2016, 2018-2019', 'History (Q1)'), (16481, 'Imaging Science Journal', 13682199, 0.224, 'Q2', 26, 21, 906, 165, 128, '3', '1997-2020', 'Media Technology (Q2); Computer Vision and Pattern Recognition (Q3)'), (16482, 'International Review of Automatic Control', 19746059, 0.224, 'Q3', 13, 35, 1239, 189, 133, '7', '2010, 2012-2020', 'Control and Systems Engineering (Q3)'), (16483, 'Israel Affairs', 13537121, 0.224, 'Q1', 18, 60, 1871, 61, 169, '3', '1994-2020', 'History (Q1); Cultural Studies (Q2); Political Science and International Relations (Q3)'), (16484, 'Jornal Vascular Brasileiro', 16775449, 0.224, 'Q3', 15, 76, 1775, 163, 166, '14', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (16485, 'Journal of Animal and Plant Sciences', 10187081, 0.224, 'Q4', 28, 229, 9681, 491, 702, '34', '2008-2021', 'Animal Science and Zoology (Q4); Plant Science (Q4)'), (16486, 'Journal of Cellular Automata', 15575977, 0.224, 'Q3', 15, 17, 389, 51, 62, '2', '2008-2020', 'Computer Science (miscellaneous) (Q3); Control and Systems Engineering (Q3)'), (16487, 'Journal of Engineering Science and Technology', 18234690, 0.224, 'Q3', 27, 331, 8871, 925, 968, '23', '2009-2020', 'Engineering (miscellaneous) (Q3)'), (16488, 'Journal of Portuguese Linguistics', 23975563, 0.224, 'Q2', 2, 14, 638, 4, 13, '26', '2018-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16489, 'Journal of Risk', 17552842, 0.224, 'Q3', 11, 22, 862, 53, 78, '2', '2011-2020', 'Finance (Q3); Strategy and Management (Q3)'), (16490, 'Journal of the History of the Neurosciences', 17445213, 0.224, 'Q2', 26, 37, 1803, 34, 87, '3', '1992-2020', 'History and Philosophy of Science (Q2); Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4)'), (16491, 'Journal of the Korea Concrete Institute', 12295515, 0.224, 'Q3', 3, 58, 1090, 54, 123, '13', '2018-2020', 'Building and Construction (Q3); Materials Science (miscellaneous) (Q3); Civil and Structural Engineering (Q4); Mechanics of Materials (Q4)'), (16492, 'Materials Performance and Characterization', 21653992, 0.224, 'Q3', 12, 78, 2890, 242, 345, '2', '2012-2020', 'Metals and Alloys (Q3); Polymers and Plastics (Q3); Ceramics and Composites (Q4); Mechanics of Materials (Q4)'), (16493, 'Participatory Educational Research', 21486123, 0.224, 'Q3', 3, 55, 3008, 24, 23, '18', '2019-2020', 'Education (Q3); Developmental and Educational Psychology (Q4)'), (16494, 'Respiratory Medicine: X', 25901435, 0.224, 'Q4', 2, 11, 515, 7, 10, '3', '2019-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (16495, 'Revista Brasileira de Medicina do Esporte', 15178692, 0.224, 'Q3', 28, 99, 2948, 158, 265, '14', '2003-2020', 'Orthopedics and Sports Medicine (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3); Sports Science (Q4)'), (16496, 'Russian Journal of Coordination Chemistry/Koo', 10703284, 0.224, 'Q3', 27, 89, 3595, 336, 337, '10', '1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (16497, 'South of Russia: Ecology, Development', 24130958, 0.224, 'Q3', 4, 45, 1038, 48, 126, '10', '2018-2020', 'Ecology (Q3); Geography, Planning and Development (Q3); Ecology, Evolution, Behavior and Systematics (Q4)'), (16498, 'Strategic Analysis', 9700161, 0.224, 'Q3', 14, 46, 0, 85, 103, '3', '1978-1984, 1998-2004, 2007-2020', 'Political Science and International Relations (Q3); Safety Research (Q3)'), (16499, 'Strategy and Leadership', 10878572, 0.224, 'Q3', 45, 46, 0, 116, 107, '3', '1996-2020', 'Strategy and Management (Q3)'), (16500, 'Transport Problems', 18960596, 0.224, 'Q3', 12, 70, 1856, 189, 185, '17', '2012-2020', 'Automotive Engineering (Q3); Mechanical Engineering (Q3); Transportation (Q4)'), (16501, 'Tropicultura', 7713312, 0.224, 'Q3', 4, 10, 349, 49, 125, '24', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)'), (16502, 'Acta Physiologica Sinica', 3710874, 0.223, 'Q4', 26, 12, 0, 159, 276, '1', '1960, 1963-1966, 1981-2020', 'Medicine (miscellaneous) (Q4); Physiology (Q4)'), (16503, 'Advances and Applications in Bioinformatics a', 11786949, 0.223, 'Q3', 15, 2, 116, 17, 11, '41', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Biochemistry (Q4); Computer Science Applications (Q4)'), (16504, 'African Identities', 14725843, 0.223, 'Q2', 12, 87, 3651, 39, 78, '2', '2010-2020', 'Anthropology (Q2); Cultural Studies (Q2)'), (16505, 'Agricultural Engineering International: CIGR ', 16821130, 0.223, 'Q3', 20, 111, 3205, 275, 370, '6', '2011-2020', 'Agronomy and Crop Science (Q3); Automotive Engineering (Q3); Energy (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3)'), (16506, 'Algorithmic Finance', 21576203, 0.223, 'Q3', 8, 4, 115, 33, 21, '16', '2011-2019', 'Computer Vision and Pattern Recognition (Q3); Finance (Q3); Computational Mathematics (Q4); Computer Science Applications (Q4)'), (16507, 'American Journal of Philology', 10863168, 0.223, 'Q1', 22, 20, 1643, 17, 62, '2', '1972-1973, 1976, 1978-1980, 1985-1989, 1992-1993, 1995-1997, 2000-2020', 'Classics (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16508, 'Ars Combinatoria', 3817032, 0.223, 'Q4', 37, 70, 1058, 103, 374, '9', '1996-2018', 'Mathematics (miscellaneous) (Q4)'), (16509, 'Astra Salvensis', 23441887, 0.223, 'Q1', 11, 60, 2580, 280, 678, '43', '2013-2019', 'History (Q1); Literature and Literary Theory (Q1); Religious Studies (Q1); Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Philosophy (Q2); Education (Q3)'), (16510, 'Ayer', 11342277, 0.223, 'Q1', 8, 53, 110, 45, 125, '12', '2012-2014, 2017-2020', 'History (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)'), (16511, 'Bioscience Horizons', 17547431, 0.223, 'Q3', 17, 0, 0, 25, 25, '3', '2008-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (16512, 'British Journal for the History of Mathematic', 26375494, 0.223, 'Q2', 6, 12, 618, 18, 44, '3', '2019-2020', 'History and Philosophy of Science (Q2); Education (Q3); Mathematics (miscellaneous) (Q4)'), (16513, 'Community Psychology in Global Perspective.', 24212113, 0.223, 'Q3', 3, 25, 1398, 12, 13, '7', '2019-2020', 'Health (social science) (Q3); Social Psychology (Q4)'), (16514, 'Digital journal of ophthalmology : DJO', 15428958, 0.223, 'Q4', 7, 1, 0, 28, 53, '2', '2013-2020', 'Medicine (miscellaneous) (Q4)'), (16515, 'Earthquake Science', 18678777, 0.223, 'Q4', 23, 16, 533, 59, 78, '1', '2009-2019', 'Geology (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (16516, 'Educational and Developmental Psychologist', 20590784, 0.223, 'Q4', 7, 20, 1042, 21, 24, '3', '2016-2020', 'Developmental and Educational Psychology (Q4)'), (16517, 'Environmental Research, Engineering and Manag', 20292139, 0.223, 'Q3', 5, 43, 1260, 58, 77, '69', '2015-2020', 'Environmental Engineering (Q3); Management, Monitoring, Policy and Law (Q3); Waste Management and Disposal (Q3); Pollution (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (16518, 'Ilha do Desterro', 1014846, 0.223, 'Q1', 6, 43, 1321, 23, 127, '14', '2012-2020', 'Literature and Literary Theory (Q1)'), (16519, 'Indian Journal of Engineering and Materials S', 9714588, 0.223, 'Q3', 31, 114, 3309, 141, 161, '4', '1994-2020', 'Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (16520, 'Industria', 19738137, 0.223, 'Q3', 9, 15, 959, 36, 71, '7', '2010-2020', 'Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3)'), (16521, 'International Journal of Action Research', 18611303, 0.223, 'Q3', 12, 14, 507, 24, 41, '5', '2009-2020', 'Sociology and Political Science (Q3); Organizational Behavior and Human Resource Management (Q4)'), (16522, 'International Journal of Computational Econom', 17571170, 0.223, 'Q3', 5, 23, 711, 36, 57, '3', '2020', 'Economics and Econometrics (Q3); Computer Science Applications (Q4)'), (16523, 'International Journal of Global Energy Issues', 17415128, 0.223, 'Q3', 25, 20, 422, 45, 47, '3', '1989-2013, 2020', 'Energy Engineering and Power Technology (Q3); Nuclear Energy and Engineering (Q3); Renewable Energy, Sustainability and the Environment (Q4)'), (16524, 'International Journal of Information and Deci', 17567017, 0.223, 'Q3', 14, 18, 875, 48, 53, '19', '2008, 2011, 2013-2014, 2020', 'Information Systems and Management (Q3); Management of Technology and Innovation (Q3); Computer Science Applications (Q4); Strategy and Management (Q4)'), (16525, 'International Journal of Knowledge and System', 19478216, 0.223, 'Q3', 4, 15, 530, 38, 41, '2', '2017-2020', 'Information Systems (Q3); Information Systems and Management (Q3); Management of Technology and Innovation (Q3); Strategy and Management (Q3); Artificial Intelligence (Q4); Organizational Behavior and'), (16526, 'Journal of Eastern European and Central Asian', 23288280, 0.223, 'Q3', 5, 33, 1161, 44, 61, '2', '2014-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Finance (Q3); Marketing (Q3); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)'), (16527, 'Journal of Network Theory in Finance', 20557795, 0.223, 'Q3', 4, 0, 0, 30, 27, '3', '2018-2019', 'Computer Networks and Communications (Q3); Finance (Q3); Modeling and Simulation (Q4)'), (16528, 'Journal of Nursing Measurement', 19457049, 0.223, 'Q3', 39, 51, 2018, 97, 141, '2', '1993-2020', 'Nursing (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (16529, 'Journal of Nuts', 23833416, 0.223, 'Q3', 3, 26, 1099, 31, 48, '15', '2017-2020', 'Agronomy and Crop Science (Q3); Plant Science (Q4); Soil Science (Q4)'), (16530, 'Journal of Physical Sciences', 19366256, 0.223, 'Q3', 3, 0, 0, 14, 9, '2', '2019', 'Physics and Astronomy (miscellaneous) (Q3)'), (16531, 'Letters in Drug Design and Discovery', 15701808, 0.223, 'Q3', 33, 143, 5765, 467, 413, '52', '2005-2020', 'Pharmaceutical Science (Q3); Drug Discovery (Q4); Molecular Medicine (Q4)'), (16532, 'Malaysian Forester', 3022935, 0.223, 'Q3', 8, 30, 874, 38, 77, '23', '1979, 2007-2020', 'Forestry (Q3)'), (16533, 'Open Access Journal of Clinical Trials', 11791519, 0.223, 'Q3', 12, 6, 207, 11, 17, '41', '2009-2020', 'Pharmacology (medical) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (16534, 'Pakistan Journal of Pharmaceutical Sciences', 1011601, 0.223, 'Q3', 39, 315, 7730, 853, 1184, '34', '1995, 2005-2020', 'Pharmaceutical Science (Q3)'), (16535, 'Performance Evaluation Review', 1635999, 0.223, 'Q3', 80, 72, 565, 337, 301, '2', '1980, 1982, 1984, 1986-1989, 1994, 1996-2020', 'Computer Networks and Communications (Q3); Software (Q3); Hardware and Architecture (Q4)'), (16536, 'Periodica Polytechnica, Social and Management', 14163837, 0.223, 'Q3', 11, 18, 700, 48, 54, '50', '1999-2020', 'Decision Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Strategy and Management (Q3)'), (16537, 'Physis', 18094481, 0.223, 'Q3', 16, 108, 3044, 70, 185, '14', '1969-1984, 2008-2020', 'Health (social science) (Q3); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16538, 'Prabandhan: Indian Journal of Management', 9752854, 0.223, 'Q3', 7, 30, 1160, 97, 140, '4', '2015-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (16539, 'Proceedings of the Institution of Civil Engin', 17550807, 0.223, 'Q3', 18, 21, 1080, 47, 72, '3', '2009-2020', 'Geography, Planning and Development (Q3); Urban Studies (Q3); Civil and Structural Engineering (Q4)'), (16540, 'Review of International Geographical Educatio', 21460353, 0.223, 'Q3', 4, 43, 2222, 43, 71, '18', '2017-2020', 'Education (Q3); Geography, Planning and Development (Q3)'), (16541, 'Revista Contabilidade e Financas', 1808057, 0.223, 'Q3', 6, 34, 1532, 58, 82, '14', '2015-2020', 'Finance (Q3); Accounting (Q4)'), (16542, 'Romanian Journal of Internal Medicine', 2501062, 0.223, 'Q4', 20, 23, 0, 118, 113, '43', '1991-2000, 2002-2020', 'Medicine (miscellaneous) (Q4)'), (16543, 'Sovremennaya Evropa', 2017083, 0.223, 'Q3', 5, 95, 1666, 66, 329, '10', '2016-2020', 'Economics and Econometrics (Q3); Political Science and International Relations (Q3)'), (16544, 'Xiyou Jinshu Cailiao Yu Gongcheng/Rare Metal ', 1002185, 0.223, 'Q3', 30, 615, 15372, 1362, 2070, '1', '1993-1994, 1996-2020', 'Electrical and Electronic Engineering (Q3); Materials Chemistry (Q3); Metals and Alloys (Q3); Electronic, Optical and Magnetic Materials (Q4)'), (16545, 'Zeitschrift des Deutschen Palastina-Vereins', 121169, 0.223, 'Q1', 9, 0, 0, 6, 9, '5', '2009-2017', 'History (Q1); Religious Studies (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2); Cultural Studies (Q2)'), (16546, 'Advances in Pure and Applied Mathematics', 18696090, 0.222, 'Q4', 12, 2, 67, 60, 79, '5', '2010-2019', 'Mathematics (miscellaneous) (Q4)'), (16547, 'AORN Journal', 18780369, 0.222, 'Q2', 43, 288, 2461, 276, 475, '2', '1963-2020', 'Medical and Surgical Nursing (Q2)'), (16548, 'Arboriculture and Urban Forestry', 19355297, 0.222, 'Q3', 47, 1, 63, 40, 53, '2', '2006-2018, 2020', 'Forestry (Q3); Ecology (Q4)'), (16549, 'Balkan Journal of Geometry and its Applicatio', 12242780, 0.222, 'Q4', 18, 24, 519, 34, 57, '43', '2002-2019', 'Geometry and Topology (Q4)'), (16550, 'Biology Bulletin', 16083059, 0.222, 'Q3', 20, 174, 6851, 219, 492, '10', '1996-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (16551, 'British Journal of Community Nursing', 14624753, 0.222, 'Q4', 28, 193, 2867, 235, 415, '3', '2000-2020', 'Community and Home Care (Q4); Medicine (miscellaneous) (Q4)'), (16552, 'Bulletin of the Kanagawa Prefectural Museum, ', 4531906, 0.222, 'Q3', 6, 8, 177, 12, 32, '6', '1979-1980, 1984-1985, 1987, 1989-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (16553, 'Caplletra', 23867159, 0.222, 'Q2', 2, 26, 836, 9, 38, '12', '2018-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16554, 'Communication Sciences and Disorders', 22880917, 0.222, 'Q2', 10, 71, 3063, 113, 244, '13', '2013-2020', 'Linguistics and Language (Q2); Communication (Q3); Speech and Hearing (Q3)'), (16555, 'Conservation Evidence', 17582067, 0.222, 'Q3', 10, 8, 108, 18, 37, '3', '2011-2020', 'Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (16556, 'Egyptian Journal of Botany', 23570350, 0.222, 'Q3', 3, 65, 3708, 67, 61, '32', '2019-2020', 'Biotechnology (Q3); Cell Biology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Plant Science (Q4)'), (16557, 'Etnolog', 3540316, 0.222, 'Q1', 6, 0, 0, 5, 39, '60', '1996-2018', 'History (Q1); Museology (Q1); Anthropology (Q2); Cultural Studies (Q2)'), (16558, 'IBIMA Business Review', 19473788, 0.222, 'Q3', 4, 20, 751, 37, 29, '2', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Education (Q3)'), (16559, 'Indian Journal of Chemical Technology', 971457, 0.222, 'Q3', 39, 59, 1743, 184, 198, '4', '1994-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (16560, 'International Journal of Care Coordination', 20534353, 0.222, 'Q4', 15, 23, 567, 36, 46, '3', '2014-2020', 'Health Policy (Q4); Leadership and Management (Q4)'), (16561, 'International Journal of Intelligent Computin', 1756378, 0.222, 'Q3', 19, 23, 1137, 117, 89, '3', '2008-2020', 'Computer Science (miscellaneous) (Q3)'), (16562, 'International Journal of One Health', 24555673, 0.222, 'Q3', 6, 27, 877, 29, 38, '4', '2015-2020', 'Veterinary (miscellaneous) (Q3); Health Policy (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16563, 'International Journal of Sustainable Agricult', 20545827, 0.222, 'Q3', 5, 25, 1050, 52, 58, '3', '2015-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q3)'), (16564, 'International Journal of the Legal Profession', 9695958, 0.222, 'Q2', 21, 30, 1314, 19, 54, '3', '1994-2020', 'Law (Q2); Strategy and Management (Q4)'), (16565, 'Journal of Exotic Pet Medicine', 19316283, 0.222, 'Q3', 32, 74, 1572, 112, 193, '3', '2006-2020', 'Veterinary (miscellaneous) (Q3)'), (16566, 'Journal of Marine and Island Cultures', 22126821, 0.222, 'Q2', 12, 0, 0, 18, 38, '16', '2012-2019', 'Anthropology (Q2); Cultural Studies (Q2); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3)'), (16567, 'Journal of Pharmacy Practice and Research', 1445937, 0.222, 'Q2', 22, 88, 1884, 145, 214, '2', '2002-2020', 'Pharmacy (Q2); Pharmacology (medical) (Q3)'), (16568, 'Mandenkan', 7525443, 0.222, 'Q2', 2, 3, 85, 12, 15, '8', '2018-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16569, 'Maydica', 256153, 0.222, 'Q3', 34, 27, 982, 47, 78, '7', '1993-2020', 'Agronomy and Crop Science (Q3); Genetics (Q4); Plant Science (Q4)'), (16570, 'Powder Metallurgy and Metal Ceramics', 10681302, 0.222, 'Q3', 22, 80, 1803, 167, 263, '2', '1993-2020', 'Materials Chemistry (Q3); Metals and Alloys (Q3); Ceramics and Composites (Q4); Condensed Matter Physics (Q4); Mechanics of Materials (Q4)'), (16571, 'Prikladnaya Diskretnaya Matematika', 23112263, 0.222, 'Q4', 4, 41, 686, 40, 103, '10', '2016-2020', 'Applied Mathematics (Q4); Computational Theory and Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4); Signal Processing (Q4); Theoretical Computer Science (Q4)'), (16572, 'Psihologija', 14519283, 0.222, 'Q3', 16, 25, 1499, 69, 80, '55', '2007-2020', 'Psychology (miscellaneous) (Q3)'), (16573, 'Psychology of Language and Communication', 12342238, 0.222, 'Q2', 9, 10, 555, 31, 56, '17', '2008-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4)'), (16574, 'Qualitative Research in Education', 20146418, 0.222, 'Q2', 2, 8, 499, 23, 25, '12', '2018-2020', 'Arts and Humanities (miscellaneous) (Q2); Education (Q3); Developmental and Educational Psychology (Q4)'), (16575, 'Rasprave Instituta za Hrvatski Jezik i Jeziko', 13316745, 0.222, 'Q2', 6, 52, 1380, 20, 88, '58', '2011, 2013-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16576, 'Regions and Cohesion', 2152906, 0.222, 'Q3', 5, 25, 770, 27, 53, '2', '2014-2020', 'Geography, Planning and Development (Q3); Political Science and International Relations (Q3); Global and Planetary Change (Q4)'), (16577, 'Religion and Society', 21509298, 0.222, 'Q1', 5, 13, 474, 15, 42, '2', '2014-2019', 'Religious Studies (Q1)'), (16578, 'Revista Brasileira de Educacao', 1809449, 0.222, 'Q3', 14, 63, 2209, 66, 162, '14', '2007-2020', 'Education (Q3)'), (16579, 'Revista Brasileira de Geomorfologia', 15191540, 0.222, 'Q3', 5, 51, 2507, 94, 142, '14', '2017-2020', 'Earth-Surface Processes (Q3)'), (16580, 'Revista Chilena de Infectologia', 7161018, 0.222, 'Q4', 19, 91, 1948, 167, 284, '45', '2000-2020', 'Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16581, 'Revista de Estudios Internacionales Mediterra', 18874460, 0.222, 'Q3', 3, 24, 902, 15, 49, '12', '2013-2019', 'Social Sciences (miscellaneous) (Q3)'), (16582, 'Techniques in Orthopaedics', 23330600, 0.222, 'Q4', 22, 89, 1968, 101, 175, '2', '1986-2020', 'Orthopedics and Sports Medicine (Q4)'), (16583, 'Zygon', 5912385, 0.222, 'Q1', 23, 67, 2952, 98, 177, '3', '1966-2020', 'Religious Studies (Q1); Cultural Studies (Q2); Education (Q3)'), (16584, 'Analisi', 23405236, 0.221, 'Q2', 4, 26, 810, 28, 43, '12', '2017-2020', 'Cultural Studies (Q2); Communication (Q3)'), (16585, 'ANZIAM Journal', 14461811, 0.221, 'Q4', 28, 21, 511, 77, 99, '3', '2000-2020', 'Mathematics (miscellaneous) (Q4)'), (16586, 'Case Reports in Dentistry', 20906455, 0.221, 'Q3', 11, 129, 2975, 222, 266, '32', '2013-2020', 'Dentistry (miscellaneous) (Q3)'), (16587, 'Contemporary European History', 9607773, 0.221, 'Q1', 24, 45, 2163, 49, 124, '3', '1992-2020', 'History (Q1)'), (16588, 'Cumhuriyet Dental Journal', 21462852, 0.221, 'Q3', 5, 75, 2702, 169, 142, '18', '2010-2020', 'Dentistry (miscellaneous) (Q3)'), (16589, 'Current Directions in Biomedical Engineering', 23645504, 0.221, 'Q4', 9, 217, 2361, 287, 507, '5', '2015-2019', 'Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)'), (16590, 'Current Nutrition and Food Science', 15734013, 0.221, 'Q3', 25, 160, 8168, 178, 171, '52', '2006-2020', 'Food Science (Q3); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16591, 'Education in the Knowledge Society', 24448729, 0.221, 'Q3', 9, 30, 1413, 77, 32, '12', '2019-2020', 'Education (Q3); Computer Science Applications (Q4)'), (16592, 'Electronic Notes in Discrete Mathematics', 15710653, 0.221, 'Q4', 26, 0, 0, 370, 540, '16', '1999-2019', 'Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)'), (16593, 'Estudios Demograficos y Urbanos', 1867210, 0.221, 'Q3', 5, 23, 1144, 26, 68, '30', '1986-1999, 2014-2020', 'Demography (Q3); Urban Studies (Q3)'), (16594, 'Ethics and Bioethics (in Central Europe)', 13385615, 0.221, 'Q2', 4, 15, 443, 21, 58, '5', '2017-2019', 'Philosophy (Q2); Education (Q3); Health Policy (Q4)'), (16595, 'Forensic Science International: Genetics Supp', 1875175, 0.221, 'Q4', 22, 0, 0, 249, 584, '42', '2008-2009, 2011, 2013, 2015, 2017, 2019', 'Genetics (Q4); Pathology and Forensic Medicine (Q4)'), (16596, 'Gene: X', 25901583, 0.221, 'Q4', 2, 13, 691, 9, 17, '16', '2019-2020', 'Genetics (Q4)'), (16597, 'Hautarzt', 14321173, 0.221, 'Q3', 39, 199, 4167, 284, 459, '5', '1952-2020', 'Dermatology (Q3); Medicine (miscellaneous) (Q4)'), (16598, 'Intereconomics', 1613964, 0.221, 'Q3', 20, 71, 998, 124, 128, '5', '1966-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16599, 'International Journal of Computational Geomet', 17936357, 0.221, 'Q4', 39, 7, 176, 47, 47, '37', '1996-2019', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Geometry and Topology (Q4); Theoretical Computer Science (Q4)'), (16600, 'International Journal of Oil, Gas and Coal Te', 17533309, 0.221, 'Q3', 18, 79, 2580, 194, 224, '3', '2009-2016, 2018', 'Energy (miscellaneous) (Q3)'), (16601, 'Iranian Journal of Chemistry and Chemical Eng', 10219986, 0.221, 'Q3', 24, 167, 6544, 364, 399, '15', '1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (16602, 'Izvestiya Vysshikh Uchebnykh Zavedenii, Seriy', 5792991, 0.221, 'Q3', 5, 180, 4644, 216, 513, '10', '1980, 1982, 2017-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (16603, 'Japan Agricultural Research Quarterly', 213551, 0.221, 'Q3', 31, 41, 1039, 77, 121, '6', '1973-1974, 1977-1978, 1983, 1987, 1993-2020', 'Agronomy and Crop Science (Q3); Biotechnology (Q3); Animal Science and Zoology (Q4); Ecology (Q4)'), (16604, 'Journal of Advanced Manufacturing Technology', 19853157, 0.221, 'Q3', 5, 23, 416, 104, 229, '23', '2017-2020', 'Automotive Engineering (Q3); Computer Networks and Communications (Q3); Industrial and Manufacturing Engineering (Q3); Management of Technology and Innovation (Q3); Control and Optimization (Q4); Hard'), (16605, 'Journal of Agro-Environment Science', 16722043, 0.221, 'Q3', 7, 292, 11561, 569, 592, '1', '2018-2020', 'Agronomy and Crop Science (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Environmental Chem'), (16606, 'Journal of Computational Geometry', 1920180, 0.221, 'Q4', 3, 19, 550, 17, 24, '9', '2019-2020', 'Computational Theory and Mathematics (Q4); Computer Science Applications (Q4); Geometry and Topology (Q4)'), (16607, 'Journal of Dermatological Case Reports', 18987249, 0.221, 'Q3', 19, 0, 0, 12, 8, '17', '2009-2017', 'Dermatology (Q3)'), (16608, 'Journal of healthcare risk management : the j', 20400861, 0.221, 'Q4', 16, 25, 0, 52, 60, '2', '1992-1999, 2001-2020', 'Medicine (miscellaneous) (Q4)'), (16609, 'Journal of Information Processing', 3876101, 0.221, 'Q3', 21, 118, 2781, 248, 261, '6', '1979-1992, 2008-2020', 'Computer Science (miscellaneous) (Q3)'), (16610, 'Journal of Interdisciplinary Mathematics', 9720502, 0.221, 'Q4', 14, 138, 2584, 271, 428, '3', '1998-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (16611, 'Journal of Object Technology', 16601769, 0.221, 'Q4', 37, 43, 1683, 47, 36, '19', '2002-2020', 'Software (Q4)'), (16612, 'Journal of Public Affairs', 14791854, 0.221, 'Q3', 20, 548, 26744, 238, 195, '2', '2008-2020', 'Political Science and International Relations (Q3); Public Administration (Q4)'), (16613, 'Journal of the Indian Society of Soil Science', 19638, 0.221, 'Q3', 10, 13, 413, 57, 155, '4', '1986-1988, 2011-2019', 'Agronomy and Crop Science (Q3); Soil Science (Q4)'), (16614, 'Journal of Theoretical and Computational Chem', 2196336, 0.221, 'Q4', 25, 57, 2753, 150, 180, '37', '2004-2020', 'Computational Theory and Mathematics (Q4); Computer Science Applications (Q4); Physical and Theoretical Chemistry (Q4)'), (16615, 'KOME', 20637330, 0.221, 'Q2', 6, 12, 789, 41, 39, '50', '2015-2020', 'Linguistics and Language (Q2); Communication (Q3)'), (16616, 'Marine Biological Journal', 24999776, 0.221, 'Q4', 4, 36, 1045, 47, 115, '10', '2019-2020', 'Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (16617, 'Mendel', 18033814, 0.221, 'Q3', 13, 11, 218, 48, 89, '31', '2005-2007, 2009-2020', 'Computer Science (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q3); Artificial Intelligence (Q4); Computational Mathematics (Q4); Control and Systems Engineering (Q4); Theoretical Computer '), (16618, 'Microbiology Australia', 13244272, 0.221, 'Q4', 5, 53, 1091, 65, 81, '11', '2018-2020', 'Applied Microbiology and Biotechnology (Q4); Microbiology (Q4); Microbiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16619, 'Natural Product Communications', 15559475, 0.221, 'Q3', 44, 298, 10937, 1128, 1205, '2', '2006-2020', 'Complementary and Alternative Medicine (Q3); Drug Discovery (Q4); Medicine (miscellaneous) (Q4); Pharmacology (Q4); Plant Science (Q4)'), (16620, 'Near Eastern Archaeology', 10942076, 0.221, 'Q1', 20, 29, 775, 39, 97, '2', '2002-2020', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16621, 'Network: Computation in Neural Systems', 954898, 0.221, 'Q4', 58, 5, 324, 18, 15, '3', '1990-2020', 'Neuroscience (miscellaneous) (Q4)'), (16622, 'Neuropsychiatrie', 9486259, 0.221, 'Q3', 18, 48, 1017, 55, 64, '28', '1995-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)'), (16623, 'Nonlinear Studies', 21534373, 0.221, 'Q4', 13, 9, 201, 91, 178, '3', '2011-2020', 'Applied Mathematics (Q4); Modeling and Simulation (Q4)'), (16624, 'Nuclear and Radiation Safety', 20736231, 0.221, 'Q3', 5, 29, 463, 75, 126, '44', '2012-2020', 'Nuclear Energy and Engineering (Q3); Safety, Risk, Reliability and Quality (Q3)'), (16625, 'On the Horizon', 10748121, 0.221, 'Q3', 24, 12, 512, 121, 87, '3', '2000-2020', 'Education (Q3)'), (16626, 'Open Public Health Journal', 18749445, 0.221, 'Q3', 7, 121, 4044, 111, 157, '16', '2011-2020', 'Health (social science) (Q3); Community and Home Care (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16627, 'Pasado y Memoria', 15793311, 0.221, 'Q1', 2, 26, 1187, 7, 51, '12', '2017-2020', 'History (Q1)'), (16628, 'Przeglad Geologiczny', 332151, 0.221, 'Q4', 31, 106, 2841, 116, 391, '17', '1981-1982, 1985, 1993-2019', 'Atmospheric Science (Q4); Geology (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (16629, 'Radiology Case Reports', 19300433, 0.221, 'Q4', 10, 585, 7653, 562, 825, '2', '2006-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (16630, 'Res Publica', 13564765, 0.221, 'Q2', 19, 51, 1602, 59, 87, '16', '1994-2020', 'Law (Q2); Philosophy (Q2)'), (16631, 'Revista de Estudios Historico-Juridicos', 7176260, 0.221, 'Q1', 6, 33, 1632, 9, 65, '45', '1997-2019', 'History (Q1); Law (Q2)'), (16632, 'Sociological Focus', 380237, 0.221, 'Q3', 25, 24, 1549, 50, 72, '2', '1970-1984, 1987-2013, 2015-2020', 'Psychology (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (16633, 'Sprawozdania Archeologiczne', 813834, 0.221, 'Q2', 4, 37, 2002, 19, 52, '17', '2016-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16634, 'Techne: Research in Philosophy and Technology', 1617249, 0.221, 'Q2', 15, 20, 822, 49, 55, '2', '1996-1999, 2001-2004, 2008-2020', 'History and Philosophy of Science (Q2); Philosophy (Q2)'), (16635, 'Telopea', 3129764, 0.221, 'Q4', 16, 26, 619, 10, 19, '11', '1984, 1986, 1988-1997, 2006-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (16636, 'Volumina Jurassica', 18967876, 0.221, 'Q4', 4, 9, 1105, 15, 14, '17', '2018', 'Paleontology (Q4)'), (16637, 'Yugoslav Journal of Operations Research', 3540243, 0.221, 'Q4', 21, 31, 955, 93, 96, '55', '1994-1997, 1999-2020', 'Management Science and Operations Research (Q4)'), (16638, 'African Journal of Food, Agriculture, Nutriti', 16845358, 0.22, 'Q3', 11, 88, 2822, 157, 210, '72', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Development (Q3); Food Science (Q3)'), (16639, 'Archives of Clinical Infectious Diseases', 23452641, 0.22, 'Q3', 14, 77, 1962, 176, 191, '15', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q3); Critical Care and Intensive Care Medicine (Q3); Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Microbiology (Q4); Public Heal'), (16640, 'Arqueologia Iberoamericana', 19894104, 0.22, 'Q2', 8, 19, 455, 41, 99, '12', '2012-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16641, 'Cypriot Journal of Educational Sciences', 13059076, 0.22, 'Q3', 5, 126, 4775, 107, 121, '74', '2018-2020', 'Education (Q3)'), (16642, 'Defense and Security Analysis', 14751798, 0.22, 'Q3', 12, 29, 0, 59, 76, '3', '2003-2004, 2006-2020', 'Geography, Planning and Development (Q3); Political Science and International Relations (Q3)'), (16643, 'Diagnostyka', 24495220, 0.22, 'Q3', 13, 48, 1199, 149, 154, '17', '2013-2020', 'Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Software (Q4)'), (16644, 'European Education', 19447086, 0.22, 'Q3', 16, 25, 1335, 56, 61, '3', '1996-2013, 2017-2020', 'Education (Q3)'), (16645, 'Graphical Models', 15240703, 0.22, 'Q3', 57, 29, 1342, 108, 85, '2', '2000-2020', 'Computer Graphics and Computer-Aided Design (Q3); Geometry and Topology (Q4); Modeling and Simulation (Q4); Software (Q4)'), (16646, 'Indian Journal of Agricultural Sciences', 195022, 0.22, 'Q3', 26, 90, 1744, 332, 901, '4', '1974, 1976, 1978, 1980-1981, 1983, 1987-1988, 1993-2020', 'Agronomy and Crop Science (Q3)'), (16647, 'International Journal of Computers and Applic', 1206212, 0.22, 'Q3', 14, 144, 4316, 225, 179, '3', '1997-2020', 'Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q4); Hardware and Architecture (Q4); Software (Q4)'), (16648, 'International Journal of Diversity in Educati', 23272163, 0.22, 'Q2', 2, 18, 564, 6, 23, '2', '2013-2020', 'Cultural Studies (Q2); Education (Q3)'), (16649, 'International Journal of Foresight and Innova', 17402816, 0.22, 'Q3', 19, 13, 716, 16, 42, '3', '2004-2013', 'Management of Technology and Innovation (Q3); Strategy and Management (Q4)'), (16650, 'International Journal of Green Economics', 17449936, 0.22, 'Q3', 14, 21, 970, 44, 53, '3', '2006-2014', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16651, 'International Journal of Vehicle Design', 1433369, 0.22, 'Q3', 42, 0, 0, 159, 113, '3', '1979-2014', 'Automotive Engineering (Q3); Mechanical Engineering (Q3)'), (16652, 'Iran Occupational Health', 17355133, 0.22, 'Q4', 11, 26, 902, 81, 205, '15', '2011-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (16653, 'IZA Journal of Development and Migration', 25201786, 0.22, 'Q2', 3, 21, 1109, 24, 31, '3', '2018-2019', 'Anthropology (Q2); Demography (Q3); Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3); Organiza'), (16654, 'Jixie Qiangdu/Journal of Mechanical Strength', 10019669, 0.22, 'Q3', 19, 226, 3695, 262, 747, '1', '2001-2020', 'Mechanical Engineering (Q3); Applied Mathematics (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4)'), (16655, 'Johns Hopkins APL Technical Digest (Applied P', 2705214, 0.22, 'Q3', 33, 0, 0, 52, 56, '2', '1981-1994, 1996-2019', 'Engineering (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q4)'), (16656, 'Journal of Applied Journalism and Media Studi', 20010818, 0.22, 'Q3', 3, 16, 943, 26, 46, '3', '2018-2020', 'Communication (Q3)'), (16657, 'Journal of Architectural Conservation', 13556207, 0.22, 'Q2', 14, 17, 0, 40, 39, '3', '1995-2020', 'Conservation (Q2); Building and Construction (Q3)'), (16658, 'Journal of Chemical Technology and Metallurgy', 13147978, 0.22, 'Q3', 18, 165, 4093, 340, 425, '61', '2013-2020', 'Chemical Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3)'), (16659, 'Journal of Dance Education', 15290824, 0.22, 'Q1', 15, 60, 1559, 38, 69, '3', '2001-2020', 'Visual Arts and Performing Arts (Q1); Education (Q3)'), (16660, 'Journal of Korea Trade', 1229828, 0.22, 'Q3', 5, 46, 2085, 60, 106, '3', '2013-2019', 'Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Industrial Relations (Q3)'), (16661, 'Journal of Library and Information Studies', 16067509, 0.22, 'Q3', 1, 13, 724, 4, 11, '22', '2019-2020', 'Library and Information Sciences (Q3)'), (16662, 'Kinematics and Physics of Celestial Bodies', 19348401, 0.22, 'Q4', 10, 28, 937, 49, 83, '10', '2009-2020', 'Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)'), (16663, 'Kovove Materialy', 23432, 0.22, 'Q3', 22, 46, 1411, 136, 154, '53', '1968-1993, 1996-2020', 'Materials Chemistry (Q3); Mechanical Engineering (Q3); Metals and Alloys (Q3); Mechanics of Materials (Q4)'), (16664, 'Matematiche', 3733505, 0.22, 'Q3', 4, 19, 429, 42, 76, '7', '2017-2020', 'Information Systems (Q3); Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)'), (16665, 'Minerva Psichiatrica', 3911772, 0.22, 'Q4', 12, 32, 879, 46, 76, '7', '1977-2020', 'Psychiatry and Mental Health (Q4)'), (16666, 'Pakistan Journal of Agricultural Sciences', 20760906, 0.22, 'Q3', 20, 187, 7528, 278, 343, '34', '2011-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3); Plant Science (Q4); Soil Science (Q4)'), (16667, 'Poblacion y Sociedad', 18528562, 0.22, 'Q3', 4, 16, 658, 14, 31, '46', '2015-2019', 'Demography (Q3)'), (16668, 'Proceedings of the Jangjeon Mathematical Soci', 15987264, 0.22, 'Q4', 21, 45, 603, 86, 129, '13', '2008-2020', 'Mathematics (miscellaneous) (Q4)'), (16669, 'Radiologia', 1578178, 0.22, 'Q4', 14, 90, 2538, 138, 191, '12', '1961, 1970, 1972-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (16670, 'Revista Peruana de Biologia', 17279933, 0.22, 'Q3', 20, 61, 2616, 92, 162, '68', '1974, 1980, 1990, 1992, 1998-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (16671, 'Technical Electrodynamics', 16077970, 0.22, 'Q3', 13, 82, 886, 155, 257, '44', '2012-2020', 'Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q3)'), (16672, 'Techniques in Gastrointestinal Endoscopy', 10962883, 0.22, 'Q4', 16, 2, 32, 57, 124, '3', '1999-2020', 'Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (16673, 'Tianjin Daxue Xuebao (Ziran Kexue yu Gongchen', 4932137, 0.22, 'Q2', 20, 159, 3310, 282, 590, '1', '1982-1988, 2003-2020', 'Multidisciplinary (Q2)'), (16674, 'Universitas Psychologica', 16579267, 0.22, 'Q3', 24, 16, 731, 169, 303, '47', '2007-2020', 'Psychology (miscellaneous) (Q3); Social Psychology (Q4)'), (16675, 'Virittaja', 426806, 0.22, 'Q2', 6, 16, 790, 13, 62, '38', '2011, 2013-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16676, 'Wisconsin Medical Journal', 10981861, 0.22, 'Q4', 31, 70, 1060, 82, 121, '2', '1945-2020', 'Medicine (miscellaneous) (Q4)'), (16677, 'Worldviews: Environment, Culture, Religion', 13635247, 0.22, 'Q1', 13, 12, 711, 16, 41, '16', '1997-2020', 'Religious Studies (Q1); Cultural Studies (Q2); Philosophy (Q2); Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3); Ecology (Q4)'), (16678, 'Zhongguo Zaozhi Xuebao/Transactions of China ', 10006842, 0.22, 'Q2', 8, 53, 1386, 90, 142, '1', '1997-1998, 2002-2020', 'Media Technology (Q2); Chemical Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (16679, 'AJIL Unbound', 23987723, 0.219, 'Q2', 8, 89, 999, 97, 221, '2', '2013, 2019-2020', 'Law (Q2)'), (16680, 'Computer Music Journal', 1489267, 0.219, 'Q2', 41, 16, 578, 25, 31, '2', '1982-1991, 1993-2018, 2020', 'Media Technology (Q2); Music (Q2); Computer Science Applications (Q4)'), (16681, 'European Journal of Inflammation', 1721727, 0.219, 'Q4', 20, 64, 2068, 79, 72, '2', '2004-2020', 'Immunology (Q4); Immunology and Allergy (Q4)'), (16682, 'European Journal of Plastic Surgery', 930343, 0.219, 'Q3', 22, 162, 3317, 159, 295, '5', '1986-2020', 'Surgery (Q3)'), (16683, 'European Review', 10627987, 0.219, 'Q3', 27, 129, 4477, 78, 164, '3', '1993-2020', 'Geography, Planning and Development (Q3); Political Science and International Relations (Q3)'), (16684, 'IET Computers and Digital Techniques', 1751861, 0.219, 'Q3', 46, 37, 1384, 138, 111, '3', '2007-2020', 'Electrical and Electronic Engineering (Q3); Hardware and Architecture (Q4); Software (Q4)'), (16685, 'Illness Crisis and Loss', 10541373, 0.219, 'Q3', 13, 35, 1545, 51, 65, '2', '2005-2020', 'Sociology and Political Science (Q3); Health (social science) (Q4)'), (16686, 'International Journal of Electric and Hybrid ', 17514096, 0.219, 'Q3', 16, 21, 607, 72, 67, '3', '2007-2014, 2018', 'Automotive Engineering (Q3); Fuel Technology (Q3); Renewable Energy, Sustainability and the Environment (Q4)'), (16687, 'International Journal of Plant Biology', 20370164, 0.219, 'Q4', 10, 7, 257, 26, 26, '7', '2010-2020', 'Plant Science (Q4)'), (16688, 'Intersections (Australia)', 14409151, 0.219, 'Q1', 1, 3, 150, 3, 10, '11', '2018-2020', 'History (Q1); Cultural Studies (Q2); Gender Studies (Q3)'), (16689, 'Journal of Applied Biotechnology Reports', 23221186, 0.219, 'Q4', 9, 38, 1469, 84, 89, '15', '2014-2020', 'Biotechnology (Q4)'), (16690, 'Journal of Electronic Publishing', 10802711, 0.219, 'Q3', 17, 0, 0, 7, 29, '2', '1996-2002, 2006-2019', 'Information Systems (Q3)'), (16691, 'Journal of Enabling Technologies', 23986263, 0.219, 'Q3', 18, 20, 819, 62, 56, '3', '2017-2020', 'Management of Technology and Innovation (Q3); Rehabilitation (Q3); Computer Science Applications (Q4); Health (social science) (Q4)'), (16692, 'Journal of Historical Pragmatics', 15665852, 0.219, 'Q2', 22, 13, 599, 24, 40, '16', '2000-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16693, 'Journal of Leadership Studies', 19352611, 0.219, 'Q3', 14, 45, 1359, 66, 133, '3', '2010-2020', 'Education (Q3)'), (16694, 'Journal of Optical Technology (A Translation ', 10910786, 0.219, 'Q3', 24, 91, 1803, 212, 432, '2', '1995-2020', 'Engineering (miscellaneous) (Q3); Applied Mathematics (Q4); Atomic and Molecular Physics, and Optics (Q4); Computational Mathematics (Q4)'), (16695, 'Journal of Payments Strategy and Systems', 17501806, 0.219, 'Q3', 3, 43, 862, 32, 58, '3', '2018-2020', 'Information Systems (Q3); Information Systems and Management (Q3); Management Information Systems (Q3); Accounting (Q4)'), (16696, 'Journal of World-Systems Research', 1076156, 0.219, 'Q3', 2, 19, 871, 14, 26, '2', '2019-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (16697, 'Kexue Tongbao/Chinese Science Bulletin', 977411, 0.219, 'Q2', 24, 453, 20889, 1066, 1162, '1', '1963-1964, 1980-1984, 1989, 2015-2020', 'Multidisciplinary (Q2)'), (16698, 'Kongzhi Lilun Yu Yinyong/Control Theory and A', 10008152, 0.219, 'Q3', 34, 283, 7227, 636, 621, '1', '1993-2020', 'Electrical and Electronic Engineering (Q3); Control and Systems Engineering (Q4)'), (16699, 'Literatura y Linguistica', 7165811, 0.219, 'Q1', 7, 41, 1291, 29, 115, '45', '2008-2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16700, 'Molecular Crystals and Liquid Crystals', 15421406, 0.219, 'Q3', 51, 195, 5294, 806, 992, '3', '1972, 2003-2020', 'Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Condensed Matter Physics (Q4)'), (16701, 'Nippon Shokuhin Kagaku Kogaku Kaishi', 1341027, 0.219, 'Q3', 23, 50, 1126, 50, 202, '6', '1995-2020', 'Food Science (Q3)'), (16702, 'Nyame Akuma', 7135815, 0.219, 'Q2', 5, 0, 0, 4, 17, '2', '2013-2017', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16703, 'Optoelectronics, Instrumentation and Data Pro', 87566990, 0.219, 'Q3', 11, 67, 1375, 188, 255, '10', '1984-1990, 2011-2020', 'Electrical and Electronic Engineering (Q3); Condensed Matter Physics (Q4); Instrumentation (Q4)'), (16704, 'Pediatric nursing', 979805, 0.219, 'Q3', 45, 59, 1081, 54, 71, '3', '1975-2019', 'Pediatrics (Q3); Medicine (miscellaneous) (Q4)'), (16705, 'Public Archaeology', 14655187, 0.219, 'Q2', 13, 8, 541, 11, 26, '3', '2011-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16706, 'RoFo Fortschritte auf dem Gebiet der Rontgens', 14389010, 0.219, 'Q4', 48, 409, 2202, 391, 580, '5', '1975-2020', 'Medicine (miscellaneous) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (16707, 'Socialism and Democracy', 8854300, 0.219, 'Q3', 14, 26, 688, 18, 54, '3', '1985-1992, 1995-1997, 1999, 2001-2002, 2004-2020', 'Sociology and Political Science (Q3)'), (16708, 'TM. Technisches Messen', 1718096, 0.219, 'Q3', 20, 100, 1992, 190, 299, '5', '1931-1939, 1941-1943, 1948, 1950-1953, 1956-2020', 'Electrical and Electronic Engineering (Q3); Instrumentation (Q4)'), (16709, 'Verhaltenstherapie', 14230402, 0.219, 'Q3', 23, 41, 1806, 55, 85, '19', '1991-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)'), (16710, 'Vestnik Zoologii', 20732333, 0.219, 'Q4', 11, 0, 0, 99, 155, '44', '2009-2019', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (16711, 'VLC Arquitectura', 23413050, 0.219, 'Q1', 1, 14, 732, 6, 26, '12', '2018-2020', 'History (Q1); Visual Arts and Performing Arts (Q1); Architecture (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3)'), (16712, 'Woman in Russian Society', 19922892, 0.219, 'Q3', 4, 32, 616, 36, 149, '10', '2017-2020', 'Gender Studies (Q3); Sociology and Political Science (Q3)'), (16713, 'Zeitschrift fur Naturforschung - Section B Jo', 9320776, 0.219, 'Q3', 47, 123, 4651, 317, 366, '5', '1947-2020', 'Chemistry (miscellaneous) (Q3)'), (16714, 'Acta Medica Iranica', 446025, 0.218, 'Q4', 27, 116, 2908, 238, 388, '15', '1956-1960, 1974-1978, 1988, 2005-2020', 'Medicine (miscellaneous) (Q4)'), (16715, 'AICCM Bulletin', 10344233, 0.218, 'Q2', 8, 10, 364, 15, 35, '3', '1984-1997, 1999-2003, 2005-2006, 2008, 2011-2019', 'Conservation (Q2); Museology (Q2)'), (16716, 'Archives of Pediatric Infectious Diseases', 23221836, 0.218, 'Q3', 12, 37, 980, 97, 126, '16', '2013-2020', 'Pediatrics, Perinatology and Child Health (Q3); Infectious Diseases (Q4)'), (16717, 'Archivo Espanol de Arqueologia', 666742, 0.218, 'Q1', 7, 16, 799, 14, 41, '12', '2009-2019', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16718, 'Boletin Latinoamericano y del Caribe de Plant', 7177917, 0.218, 'Q3', 21, 45, 2812, 120, 125, '45', '2008-2020', 'Complementary and Alternative Medicine (Q3); Drug Discovery (Q4); Pharmacology (Q4); Plant Science (Q4)'), (16719, 'Cahiers de Biologie Marine', 22623094, 0.218, 'Q4', 33, 3, 100, 46, 66, '8', '1992-2020', 'Aquatic Science (Q4)'), (16720, 'Casopis pro Moderni Filologii', 23366591, 0.218, 'Q2', 3, 21, 355, 13, 47, '31', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16721, 'Cell and Organ Transplantology', 23083794, 0.218, 'Q3', 1, 4, 173, 1, 5, '44', '2019', 'Transplantation (Q3); Biomedical Engineering (Q4); Biotechnology (Q4); Immunology and Allergy (Q4)'), (16722, 'Chang an Daxue Xuebao (Ziran Kexue Ban)/Journ', 16718879, 0.218, 'Q3', 18, 77, 2217, 155, 285, '1', '2003-2020', 'Building and Construction (Q3); Mechanical Engineering (Q3)'), (16723, 'Christian Higher Education', 15363759, 0.218, 'Q1', 13, 31, 1161, 27, 64, '3', '2002-2020', 'Religious Studies (Q1); Education (Q3)'), (16724, 'Ciencia e Tecnologia dos Materiais', 8708312, 0.218, 'Q3', 10, 0, 0, 79, 70, '12', '2012-2017', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Renewable Energy, Sustainability and the Environment (Q4)'), (16725, 'Comptabilite Controle Audit', 12622788, 0.218, 'Q3', 7, 8, 508, 14, 38, '8', '2012-2020', 'Finance (Q3); Accounting (Q4)'), (16726, 'Contemporary Theatre Review', 10486801, 0.218, 'Q1', 13, 34, 0, 33, 78, '3', '1992, 1994-2020', 'Visual Arts and Performing Arts (Q1)'), (16727, 'Criminal Law and Philosophy', 18719791, 0.218, 'Q2', 18, 43, 349, 89, 120, '16', '2007-2020', 'Law (Q2); Philosophy (Q2)'), (16728, 'Critical Research on Religion', 20503032, 0.218, 'Q1', 10, 15, 891, 31, 52, '3', '2013-2020', 'Religious Studies (Q1)'), (16729, 'Croatian Yearbook of European Law and Policy', 18455662, 0.218, 'Q2', 5, 15, 1499, 12, 31, '58', '2012-2019', 'Law (Q2)'), (16730, 'Educational Sciences: Theory and Practice', 21487561, 0.218, 'Q3', 20, 21, 1424, 315, 454, '18', '2008-2020', 'Education (Q3)'), (16731, 'Food Research', 25502166, 0.218, 'Q3', 7, 415, 14036, 231, 228, '23', '2017-2020', 'Food Science (Q3)'), (16732, 'Handchirurgie Mikrochirurgie Plastische Chiru', 7221819, 0.218, 'Q3', 29, 105, 1999, 121, 214, '5', '1982-2020', 'Surgery (Q3); Orthopedics and Sports Medicine (Q4)'), (16733, 'Health Marketing Quarterly', 15450864, 0.218, 'Q3', 27, 20, 767, 58, 61, '2', '1983-2020', 'Marketing (Q3); Health Professions (miscellaneous) (Q4)'), (16734, 'Hellenic Journal of Psychology', 17901391, 0.218, 'Q3', 8, 15, 892, 21, 47, '39', '2011-2020', 'Education (Q3); Psychology (miscellaneous) (Q3)'), (16735, 'Hydrobiological Journal', 3758990, 0.218, 'Q3', 10, 45, 1559, 70, 177, '2', '1974-1976, 1978-1983, 1987-2020', 'Water Science and Technology (Q3); Aquatic Science (Q4); Ecology (Q4)'), (16736, 'IETE Journal of Research', 3772063, 0.218, 'Q3', 25, 358, 11351, 684, 457, '3', '1974-1975, 1979-1989, 1993-2020', 'Electrical and Electronic Engineering (Q3); Computer Science Applications (Q4); Theoretical Computer Science (Q4)'), (16737, 'Informacion Tecnologica', 7180764, 0.218, 'Q2', 14, 136, 4059, 283, 472, '45', '1996-2020', 'Multidisciplinary (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q3); Chemical Engineering (miscellaneous) (Q3); Chemistry (misce'), (16738, 'International Applied Mechanics', 10637095, 0.218, 'Q3', 34, 63, 1432, 196, 192, '2', '1992-2020', 'Mechanical Engineering (Q3); Mechanics of Materials (Q4)'), (16739, 'International Journal of Emerging Trends in E', 23473983, 0.218, 'Q3', 14, 1073, 23740, 763, 132, '4', '2019-2020', 'Engineering (miscellaneous) (Q3)'), (16740, 'International Journal of Mobile Human Compute', 1942390, 0.218, 'Q4', 17, 10, 657, 60, 49, '2', '2009-2020', 'Human-Computer Interaction (Q4)'), (16741, 'Journal of African American Studies', 15591646, 0.218, 'Q2', 17, 41, 1214, 50, 92, '2', '1996, 2003-2005, 2008-2020', 'Cultural Studies (Q2); Gender Studies (Q3); Sociology and Political Science (Q3)'), (16742, 'Journal of Algebraic Systems', 2345511, 0.218, 'Q4', 1, 12, 185, 6, 24, '15', '2019-2020', 'Algebra and Number Theory (Q4); Discrete Mathematics and Combinatorics (Q4); Geometry and Topology (Q4)'), (16743, 'Journal of Biological Research (Italy)', 18268838, 0.218, 'Q3', 6, 23, 910, 49, 56, '7', '2011-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biochemistry (medical) (Q4); Plant Science (Q4)'), (16744, 'Journal of Human Growth and Development', 1041282, 0.218, 'Q4', 11, 56, 1817, 87, 129, '14', '2012-2020', 'Life-span and Life-course Studies (Q4)'), (16745, 'Journal of Mathematics and Computer Science', 2008949, 0.218, 'Q3', 5, 100, 2429, 74, 88, '23', '2018-2020', 'Computational Mechanics (Q3); Computational Mathematics (Q4); Computer Science Applications (Q4); Mathematics (miscellaneous) (Q4)'), (16746, 'Journal of the Korean Society of Clothing and', 22340793, 0.218, 'Q3', 4, 71, 2836, 61, 222, '13', '2017-2020', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Polymers and Plastics (Q3)'), (16747, 'Journal of Verification, Validation and Uncer', 23772158, 0.218, 'Q4', 4, 0, 0, 32, 28, '2', '2018-2019', 'Computational Theory and Mathematics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)'), (16748, 'Kybernetika', 235954, 0.218, 'Q3', 38, 41, 1348, 198, 182, '31', '1961-1989, 1996-2020', 'Electrical and Electronic Engineering (Q3); Artificial Intelligence (Q4); Control and Systems Engineering (Q4); Information Systems (Q4); Software (Q4); Theoretical Computer Science (Q4)'), (16749, 'Lex Localis', 1855363, 0.218, 'Q2', 13, 50, 2345, 95, 146, '60', '2009-2020', 'Law (Q2); Public Administration (Q4)'), (16750, 'Light and Engineering', 2362945, 0.218, 'Q3', 9, 84, 1569, 129, 278, '10', '2008-2020', 'Electrical and Electronic Engineering (Q3)'), (16751, 'Logica Universalis', 16618300, 0.218, 'Q4', 16, 25, 654, 35, 79, '19', '2007-2020', 'Applied Mathematics (Q4); Logic (Q4)'), (16752, 'Novel: A Forum on Fiction', 295132, 0.218, 'Q1', 14, 23, 967, 22, 61, '2', '2002-2007, 2009-2019', 'Literature and Literary Theory (Q1)'), (16753, 'Open Theology', 23006579, 0.218, 'Q1', 6, 55, 2406, 30, 138, '17', '2015-2020', 'Religious Studies (Q1)'), (16754, 'Organization Development Journal', 8896402, 0.218, 'Q4', 22, 29, 1041, 28, 72, '2', '2005-2013, 2017-2020', 'Organizational Behavior and Human Resource Management (Q4)'), (16755, 'Revista Espanola de Salud Publica', 21739110, 0.218, 'Q4', 35, 159, 751, 153, 228, '12', '1995-2020', 'Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16756, 'Russian Journal of Physical Chemistry A', 360244, 0.218, 'Q4', 29, 421, 11735, 922, 1325, '10', '1996-2020', 'Physical and Theoretical Chemistry (Q4)'), (16757, 'SAE International Journal of Passenger Cars -', 19464002, 0.218, 'Q3', 25, 7, 149, 120, 125, '2', '2008-2020', 'Automotive Engineering (Q3); Mechanical Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Modeling and Simulation (Q4)'), (16758, 'Science and Sports', 17784131, 0.218, 'Q4', 24, 121, 3931, 160, 232, '8', '1986-2020', 'Orthopedics and Sports Medicine (Q4); Sports Science (Q4)'), (16759, 'Seminars in Cardiothoracic and Vascular Anest', 10892532, 0.218, 'Q3', 34, 47, 1802, 94, 128, '2', '1997-2020', 'Anesthesiology and Pain Medicine (Q3); Cardiology and Cardiovascular Medicine (Q3)'), (16760, 'Social Philosophy and Policy', 2650525, 0.218, 'Q2', 31, 13, 534, 42, 78, '3', '1970, 1983-2019', 'Philosophy (Q2); Social Sciences (miscellaneous) (Q3)'), (16761, 'Turkish Journal of Computer and Mathematics E', 13094653, 0.218, 'Q3', 3, 28, 1455, 18, 54, '18', '2018-2019', 'Education (Q3); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Mathematics (miscellaneous) (Q4)'), (16762, 'Turk Psikiyatri Dergisi', 13002163, 0.218, 'Q4', 28, 53, 1799, 91, 149, '18', '2003-2020', 'Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (16763, 'Volta Review', 428639, 0.218, 'Q2', 28, 0, 0, 5, 9, '2', '1946-1948, 1973, 1996-2001, 2004-2015, 2017-2018', 'Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Developmental and Educational Psychology (Q4)'), (16764, 'Voprosy Psikhologii', 428841, 0.218, 'Q3', 9, 66, 2207, 78, 231, '10', '1960-1962, 1973-1975, 1996-2019', 'Psychology (miscellaneous) (Q3)'), (16765, 'Zhongnan Daxue Xuebao (Ziran Kexue Ban)/Journ', 16727207, 0.218, 'Q3', 28, 361, 8581, 688, 1190, '1', '2005-2020', 'Materials Chemistry (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (16766, 'AAPP Atti della Accademia Peloritana dei Peri', 3650359, 0.217, 'Q2', 11, 37, 1285, 93, 132, '7', '2004-2020', 'History and Philosophy of Science (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Earth and Planetary Sciences ('), (16767, 'Acta Agriculturae Slovenica', 18541941, 0.217, 'Q3', 17, 66, 2466, 126, 186, '60', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Water Science and Technology (Q3)'), (16768, 'Acta Physica Polonica A', 5874246, 0.217, 'Q4', 38, 431, 8342, 1358, 1840, '17', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (16769, 'Acta Prataculturae Sinica', 10045759, 0.217, 'Q3', 9, 241, 8938, 398, 763, '1', '2016-2020', 'Agronomy and Crop Science (Q3); Nature and Landscape Conservation (Q3); Plant Science (Q4); Soil Science (Q4)'), (16770, 'Ad-Hoc and Sensor Wireless Networks', 15519899, 0.217, 'Q3', 21, 38, 1406, 126, 128, '2', '2005-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Instrumentation (Q4)'), (16771, 'Archives of Biological Sciences', 3544664, 0.217, 'Q3', 25, 59, 2667, 225, 257, '55', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (16772, 'British Tax Review', 71870, 0.217, 'Q2', 1, 59, 6, 1, 7, '2', '2019-2020', 'Law (Q2); Finance (Q3); Accounting (Q4)'), (16773, 'Chemie in Unserer Zeit', 92851, 0.217, 'Q3', 24, 76, 1079, 44, 129, '5', '1967-2020', 'Chemistry (miscellaneous) (Q3)'), (16774, 'Chinese Neurosurgical Journal', 20574967, 0.217, 'Q3', 6, 37, 1183, 63, 110, '3', '2015-2020', 'Surgery (Q3); Neurology (Q4); Neurology (clinical) (Q4)'), (16775, 'Current Organocatalysis', 22133372, 0.217, 'Q4', 10, 24, 1544, 63, 60, '52', '2014-2020', 'Analytical Chemistry (Q4); Catalysis (Q4); Organic Chemistry (Q4)'), (16776, 'Egyptian Journal of Aquatic Biology and Fishe', 25369814, 0.217, 'Q4', 6, 299, 12788, 243, 310, '32', '2017-2020', 'Aquatic Science (Q4)'), (16777, 'GaBI Journal', 20336403, 0.217, 'Q2', 11, 7, 146, 52, 67, '24', '2014-2018', 'Drug Guides (Q2); Pharmacy (Q2)'), (16778, 'Hipogrifo', 23281308, 0.217, 'Q1', 4, 91, 2762, 53, 265, '12', '2013-2020', 'History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)'), (16779, 'Historical Social Research', 1726404, 0.217, 'Q1', 21, 1, 59, 113, 171, '5', '2006-2020', 'History (Q1); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (16780, 'Home Cultures', 17406315, 0.217, 'Q1', 15, 4, 208, 18, 35, '3', '2008-2019', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Social Psychology (Q4)'), (16781, 'Indian Journal of Finance', 9738711, 0.217, 'Q4', 9, 31, 901, 107, 142, '4', '2013-2020', 'Finance (Q4)'), (16782, 'Indian Journal of Pathology and Microbiology', 3774929, 0.217, 'Q4', 31, 216, 2431, 275, 399, '4', '1972, 1974-2020', 'Medicine (miscellaneous) (Q4); Microbiology (medical) (Q4); Pathology and Forensic Medicine (Q4)'), (16783, 'Inner Asia', 22105018, 0.217, 'Q2', 17, 18, 551, 15, 30, '16', '1999-2019', 'Anthropology (Q2); Arts and Humanities (miscellaneous) (Q2); Development (Q3); Geography, Planning and Development (Q3)'), (16784, 'International Journal of Language Studies', 21574901, 0.217, 'Q2', 5, 32, 1460, 54, 54, '2', '2018-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16785, 'International Journal of Powertrains', 17424275, 0.217, 'Q3', 4, 17, 441, 36, 52, '3', '2018', 'Automotive Engineering (Q3); Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3)'), (16786, 'International Journal of Standardization Rese', 24708550, 0.217, 'Q3', 3, 0, 0, 9, 17, '2', '2015-2019', 'Management of Technology and Innovation (Q3); Computer Science Applications (Q4)'), (16787, 'Isis', 211753, 0.217, 'Q1', 41, 56, 54, 75, 123, '2', '1945-1963, 1965-2020', 'History (Q1); History and Philosophy of Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q3)'), (16788, 'Japan Forum', 9555803, 0.217, 'Q1', 15, 54, 2438, 36, 94, '3', '1989-2003, 2005-2020', 'History (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)'), (16789, 'Journal of Camel Practice and Research', 22778934, 0.217, 'Q4', 19, 35, 868, 47, 123, '4', '1996-2019', 'Animal Science and Zoology (Q4)'), (16790, 'Journal of Energy Systems', 26022052, 0.217, 'Q3', 3, 12, 347, 22, 17, '18', '2019-2020', 'Energy Engineering and Power Technology (Q3); Management, Monitoring, Policy and Law (Q3); Renewable Energy, Sustainability and the Environment (Q4)'), (16791, 'Journal of Indian Philosophy', 221791, 0.217, 'Q2', 17, 43, 1900, 31, 113, '16', '1970-2020', 'Cultural Studies (Q2); Philosophy (Q2)'), (16792, 'Journal of Information and Communication Tech', 21803862, 0.217, 'Q3', 10, 23, 1007, 152, 72, '23', '2011-2020', 'Computer Science (miscellaneous) (Q3); Mathematics (miscellaneous) (Q4)'), (16793, 'Journal of Public Deliberation', 19372841, 0.217, 'Q3', 20, 0, 0, 29, 40, '2', '2006-2011, 2017-2018', 'Sociology and Political Science (Q3)'), (16794, 'Journal of Risk Management in Financial Insti', 17528887, 0.217, 'Q3', 3, 32, 680, 22, 47, '3', '2018-2020', 'Finance (Q3); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (16795, 'Journal of the Indonesian Tropical Animal Agr', 20878273, 0.217, 'Q3', 11, 39, 1203, 92, 131, '21', '2009-2020', 'Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)'), (16796, 'Journal of the Royal Army Medical Corps', 20520468, 0.217, 'Q4', 27, 0, 0, 349, 303, '3', '1945-1964, 1973-2020', 'Medicine (miscellaneous) (Q4)'), (16797, 'Journal of the Royal Society of Western Austr', 35922, 0.217, 'Q2', 26, 8, 374, 12, 15, '11', '1981, 1983-2020', 'Multidisciplinary (Q2)'), (16798, 'Journal of Urban History', 15526771, 0.217, 'Q1', 25, 141, 372, 80, 163, '2', '1974-2020', 'History (Q1); Sociology and Political Science (Q3); Urban Studies (Q3)'), (16799, 'Membrane Water Treatment', 20058624, 0.217, 'Q3', 14, 45, 1673, 134, 140, '13', '2010-2019', 'Chemical Engineering (miscellaneous) (Q3); Water Science and Technology (Q3)'), (16800, 'Modeling, Identification and Control', 3327353, 0.217, 'Q4', 26, 13, 517, 49, 47, '33', '1980-1989, 1996-2020', 'Computer Science Applications (Q4); Control and Systems Engineering (Q4); Modeling and Simulation (Q4); Software (Q4)'), (16801, 'Molecular Biology', 16083245, 0.217, 'Q4', 23, 79, 4137, 217, 308, '10', '1971-1976, 1979-1982, 1996-2020', 'Biophysics (Q4); Structural Biology (Q4)'), (16802, 'Revue de l OFCE', 12659576, 0.217, 'Q3', 14, 30, 864, 17, 112, '8', '2001-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16803, 'Revue Francaise de Gestion', 3384551, 0.217, 'Q3', 17, 33, 1191, 48, 209, '8', '2002-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Strategy and Management (Q4)'), (16804, 'Travailler', 21025150, 0.217, 'Q3', 12, 22, 628, 18, 62, '8', '2001-2020', 'Clinical Psychology (Q3); Health (social science) (Q4); Social Psychology (Q4)'), (16805, 'Urbanities', 22395725, 0.217, 'Q2', 4, 37, 691, 15, 59, '7', '2015-2020', 'Anthropology (Q2); Urban Studies (Q3)'), (16806, 'Zeitschrift fur Orthopadie und Unfallchirurgi', 18646697, 0.217, 'Q3', 36, 138, 2798, 159, 287, '5', '2007-2020', 'Surgery (Q3); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)'), (16807, 'Zhongguo Xitu Xuebao/Journal of the Chinese R', 10004343, 0.217, 'Q3', 15, 94, 2880, 178, 282, '1', '2008-2020', 'Materials Science (miscellaneous) (Q3)'), (16808, 'Acta Agronomica', 445959, 0.216, 'Q3', 8, 18, 535, 100, 188, '47', '1968, 2012-2020', 'Agronomy and Crop Science (Q3); Soil Science (Q4)'), (16809, 'ACTA Paulista de Enfermagem', 19820194, 0.216, 'Q3', 21, 100, 2707, 182, 272, '14', '2006-2014, 2017-2020', 'Advanced and Specialized Nursing (Q3); Medical and Surgical Nursing (Q3)'), (16810, 'Acta Scientiae', 15174492, 0.216, 'Q2', 2, 50, 1563, 20, 126, '14', '2018-2020', 'Multidisciplinary (Q2); Education (Q3)'), (16811, 'Applied Computational Electromagnetics Societ', 10544887, 0.216, 'Q3', 29, 271, 4859, 525, 681, '2', '1989, 1991-2020', 'Electrical and Electronic Engineering (Q3); Astronomy and Astrophysics (Q4)'), (16812, 'Asian Journal of Sports Medicine', 20087209, 0.216, 'Q4', 27, 34, 1056, 88, 120, '15', '2011, 2013, 2017-2020', 'Orthopedics and Sports Medicine (Q4); Sports Science (Q4)'), (16813, 'Atlantic Economic Journal', 1974254, 0.216, 'Q3', 23, 46, 1028, 63, 109, '16', '1973-2002, 2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16814, 'Biointerface Research in Applied Chemistry', 20695837, 0.216, 'Q4', 11, 320, 13811, 529, 315, '43', '2016-2021', 'Biochemistry (Q4); Biotechnology (Q4); Molecular Biology (Q4); Molecular Medicine (Q4)'), (16815, 'British Journal of Midwifery', 9694900, 0.216, 'Q3', 21, 136, 2661, 136, 305, '3', '2006-2015, 2017-2020', 'Maternity and Midwifery (Q3)'), (16816, 'Cognition, Brain, Behavior. An Interdisciplin', 2601226, 0.216, 'Q4', 4, 20, 1085, 25, 44, '43', '2017-2020', 'Experimental and Cognitive Psychology (Q4)'), (16817, 'Contemporary Pacific', 1043898, 0.216, 'Q3', 31, 34, 1129, 43, 45, '2', '1992, 1996-2020', 'Geography, Planning and Development (Q3); Sociology and Political Science (Q3)'), (16818, 'Critical Studies in Teaching and Learning', 23107103, 0.216, 'Q3', 2, 29, 1036, 15, 23, '27', '2018-2020', 'Education (Q3); Sociology and Political Science (Q3)'), (16819, 'Der Internist', 14321289, 0.216, 'Q3', 19, 183, 3159, 218, 363, '5', '1960-2020', 'Internal Medicine (Q3)'), (16820, 'EPJ Applied Physics', 12860042, 0.216, 'Q4', 49, 107, 3584, 227, 261, '8', '1998-2020', 'Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4)'), (16821, 'Foro de Educacion', 16987802, 0.216, 'Q3', 2, 25, 986, 18, 29, '12', '2019-2020', 'Education (Q3)'), (16822, 'Geosystem Engineering', 21663394, 0.216, 'Q3', 18, 33, 1117, 138, 108, '3', '1998-2020', 'Environmental Engineering (Q3); Waste Management and Disposal (Q3); Pollution (Q4)'), (16823, 'Indian Journal of Fisheries', 9706011, 0.216, 'Q4', 12, 79, 2921, 155, 211, '4', '1974, 1977-1983, 2009-2014, 2016-2020', 'Aquatic Science (Q4)'), (16824, 'International Game Theory Review', 2191989, 0.216, 'Q3', 23, 40, 1116, 47, 71, '37', '2003-2020', 'Business and International Management (Q3); Computer Science (miscellaneous) (Q3); Statistics, Probability and Uncertainty (Q4)'), (16825, 'International Journal of Business Governance ', 1741802, 0.216, 'Q3', 15, 22, 1527, 28, 36, '3', '2004-2020', 'Business and International Management (Q3); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)'), (16826, 'International Journal of Communication Networ', 20760930, 0.216, 'Q3', 20, 51, 1845, 185, 147, '34', '2009-2020', 'Computer Networks and Communications (Q3); Software (Q4)'), (16827, 'International Journal of Computational Materi', 2047685, 0.216, 'Q3', 8, 25, 811, 66, 56, '37', '2012-2013, 2016-2020', 'Materials Science (miscellaneous) (Q3); Computer Science Applications (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4); Numerical Analysis (Q4)'), (16828, 'International Journal of Computer Mathematics', 23799935, 0.216, 'Q4', 5, 25, 624, 34, 47, '3', '2016-2020', 'Computational Mathematics (Q4); Computational Theory and Mathematics (Q4)'), (16829, 'International Journal of Special Education', 8273383, 0.216, 'Q3', 25, 0, 0, 67, 115, '9', '1995, 2001-2019', 'Education (Q3); Rehabilitation (Q3)'), (16830, 'International Journal of Supply and Operation', 23831359, 0.216, 'Q3', 5, 21, 964, 60, 56, '15', '2018-2020', 'Information Systems and Management (Q3); Management Information Systems (Q3); Civil and Structural Engineering (Q4); Management Science and Operations Research (Q4); Transportation (Q4)'), (16831, 'International Journal of Technology Marketing', 17418798, 0.216, 'Q3', 10, 14, 1149, 41, 40, '19', '2017-2020', 'Marketing (Q3); Computer Science Applications (Q4)'), (16832, 'International Journal on Advanced Science, En', 20885334, 0.216, 'Q3', 22, 349, 9957, 1065, 994, '21', '2015-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)'), (16833, 'Italian Journal of Pure and Applied Mathemati', 22390227, 0.216, 'Q4', 15, 174, 3066, 224, 403, '7', '2010-2020', 'Mathematics (miscellaneous) (Q4)'), (16834, 'Jinshu Rechuli/Heat Treatment of Metals', 2546051, 0.216, 'Q3', 17, 589, 8591, 792, 1720, '1', '1980, 1986-1994, 1998, 2001-2020', 'Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q3); Metals and Alloys (Q3); Mechanics of Materials (Q4)'), (16835, 'Jiqiren/Robot', 10020446, 0.216, 'Q3', 25, 70, 2414, 337, 296, '1', '1998, 2001-2020', 'Electrical and Electronic Engineering (Q3); Mechanical Engineering (Q3); Applied Mathematics (Q4); Artificial Intelligence (Q4); Modeling and Simulation (Q4); Software (Q4)'), (16836, 'Jisuanji Yanjiu yu Fazhan/Computer Research a', 10001239, 0.216, 'Q3', 36, 206, 8198, 736, 690, '1', '1998, 2001-2020', 'Computer Networks and Communications (Q3); Hardware and Architecture (Q4); Software (Q4)'), (16837, 'Jordan Journal of Biological Sciences', 19956673, 0.216, 'Q3', 11, 68, 2963, 157, 183, '62', '2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (16838, 'Journal of Burma Studies', 2010314, 0.216, 'Q1', 7, 10, 451, 16, 28, '2', '2001, 2009-2019', 'History (Q1); Cultural Studies (Q2)'), (16839, 'Journal of Empirical Theology', 15709256, 0.216, 'Q1', 9, 7, 300, 19, 40, '16', '1988-1994, 2010-2019', 'Religious Studies (Q1); Social Sciences (miscellaneous) (Q3)'), (16840, 'Journal of Mathematical and Fundamental Scien', 23375760, 0.216, 'Q2', 12, 19, 434, 84, 72, '21', '2011, 2013-2020', 'Multidisciplinary (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Earth and Planetar'), (16841, 'Journal of Mechanical Engineering', 18235514, 0.216, 'Q3', 12, 31, 637, 366, 528, '23', '2011-2020', 'Mechanical Engineering (Q3)'), (16842, 'Journal of Medical Biography', 17581087, 0.216, 'Q2', 12, 77, 2468, 30, 131, '3', '1977, 1988, 1993-2020', 'History and Philosophy of Science (Q2); Medicine (miscellaneous) (Q4)'), (16843, 'Journal of Structured Finance', 23741325, 0.216, 'Q4', 3, 29, 495, 17, 92, '2', '2017-2020', 'Finance (Q4)'), (16844, 'Journal of the History of the Behavioral Scie', 225061, 0.216, 'Q1', 26, 20, 1399, 28, 53, '2', '1969-2020', 'History (Q1); Psychology (miscellaneous) (Q3)'), (16845, 'Kiva, The', 231940, 0.216, 'Q1', 22, 29, 1419, 17, 62, '2', '1964, 1981, 1987, 1998-2020', 'History (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16846, 'Medicine, Conflict and Survival', 13623699, 0.216, 'Q4', 20, 28, 956, 47, 53, '3', '1996-2020', 'Pathology and Forensic Medicine (Q4)'), (16847, 'Moscow University Mechanics Bulletin', 271330, 0.216, 'Q3', 7, 24, 246, 35, 85, '10', '1973-1987, 1989, 2007-2020', 'Mechanical Engineering (Q3); Mathematics (miscellaneous) (Q4); Mechanics of Materials (Q4)'), (16848, 'Mutatis Mutandis', 2011799, 0.216, 'Q2', 4, 25, 1254, 14, 70, '47', '2013-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16849, 'Nanoscience and Technology', 25724258, 0.216, 'Q3', 11, 23, 782, 180, 58, '2', '2019-2020', 'Materials Science (miscellaneous) (Q3); Condensed Matter Physics (Q4); Mechanics of Materials (Q4)'), (16850, 'Nuclear Medicine Review', 16444345, 0.216, 'Q4', 21, 27, 278, 46, 67, '17', '2002-2020', 'Medicine (miscellaneous) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (16851, 'Problems of Atomic Science and Technology', 16829344, 0.216, 'Q3', 17, 189, 2597, 253, 701, '44', '2008-2020', 'Materials Science (miscellaneous) (Q3); Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4); Radiation (Q4)'), (16852, 'Progress In Electromagnetics Research M', 19378726, 0.216, 'Q4', 31, 221, 5028, 686, 697, '2', '2008-2020', 'Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (16853, 'Psychological Studies', 332968, 0.216, 'Q3', 9, 51, 2506, 97, 132, '4', '1971, 1980, 1992, 2009, 2014-2020', 'Psychology (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (16854, 'Quasigroups and Related Systems', 15612848, 0.216, 'Q4', 10, 25, 348, 50, 90, '123', '2011-2020', 'Algebra and Number Theory (Q4); Discrete Mathematics and Combinatorics (Q4)'), (16855, 'Revista Medica de Chile', 7176163, 0.216, 'Q4', 38, 238, 5551, 433, 616, '45', '1945-2020', 'Medicine (miscellaneous) (Q4)'), (16856, 'Russian Journal of Organic Chemistry', 10704280, 0.216, 'Q4', 33, 347, 8069, 579, 899, '10', '1996-2020', 'Organic Chemistry (Q4)'), (16857, 'Shuili Fadian Xuebao/Journal of Hydroelectric', 10031243, 0.216, 'Q3', 19, 131, 4010, 254, 451, '1', '1998, 2001-2020', 'Energy Engineering and Power Technology (Q3); Mechanical Engineering (Q3); Water Science and Technology (Q3)'), (16858, 'Software Testing Verification and Reliability', 10991689, 0.216, 'Q2', 49, 28, 1206, 106, 45, '3', '1991-2020', 'Media Technology (Q2); Safety, Risk, Reliability and Quality (Q3); Software (Q4)'), (16859, 'Studia Socjologiczne', 393371, 0.216, 'Q3', 6, 36, 1865, 32, 105, '17', '2008-2020', 'Sociology and Political Science (Q3)'), (16860, 'Thalassas', 2125919, 0.216, 'Q4', 12, 79, 3407, 91, 149, '12', '2005, 2008-2020', 'Aquatic Science (Q4); Oceanography (Q4)'), (16861, 'Tongji Daxue Xuebao/Journal of Tongji Univers', 253374, 0.216, 'Q2', 31, 213, 4424, 421, 848, '1', '1999-2020', 'Multidisciplinary (Q2)'), (16862, 'Turkish Journal of Surgery', 13000705, 0.216, 'Q3', 11, 59, 1325, 133, 212, '18', '1994-2020', 'Surgery (Q3)'), (16863, 'Utrecht Law Review', 1871515, 0.216, 'Q2', 14, 20, 575, 50, 56, '16', '2012-2020', 'Law (Q2)'), (16864, 'Acta Hydrotechnica', 15810267, 0.215, 'Q3', 3, 7, 258, 10, 12, '60', '2019-2020', 'Environmental Engineering (Q3); Geotechnical Engineering and Engineering Geology (Q4)'), (16865, 'Acta Pharmaceutica Sciencia', 13072080, 0.215, 'Q3', 19, 32, 909, 105, 86, '18', '2006-2011, 2016-2020', 'Pharmaceutical Science (Q3)'), (16866, 'Asian Economic and Financial Review', 23052147, 0.215, 'Q3', 10, 101, 4078, 205, 201, '34', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16867, 'CESifo Forum', 1615245, 0.215, 'Q3', 13, 22, 403, 57, 67, '5', '2006-2020', 'Economics and Econometrics (Q3)'), (16868, 'Chinese Medical Sciences Journal', 10019294, 0.215, 'Q4', 21, 51, 1489, 97, 125, '3', '1991-2020', 'Medicine (miscellaneous) (Q4)'), (16869, 'Ciencias Marinas', 1853880, 0.215, 'Q4', 29, 27, 1014, 43, 50, '30', '1992-2020', 'Aquatic Science (Q4)'), (16870, 'Communication Teacher', 17404622, 0.215, 'Q3', 10, 53, 759, 55, 123, '3', '2010-2020', 'Communication (Q3); Education (Q3)'), (16871, 'Gastroenterology Nursing', 1042895, 0.215, 'Q3', 30, 91, 2383, 127, 194, '2', '1989-2020', 'Advanced and Specialized Nursing (Q3); Gastroenterology (Q4); Medicine (miscellaneous) (Q4)'), (16872, 'History of Education Quarterly', 182680, 0.215, 'Q1', 9, 30, 1906, 29, 61, '2', '1967, 1971-1972, 1974-1976, 1978, 1980-1981, 1983-1986, 1999-2000, 2002-2003, 2008-2020', 'History (Q1); Education (Q3)'), (16873, 'Innovations', 12674982, 0.215, 'Q3', 9, 19, 1004, 35, 72, '3', '2001-2020', 'Economics and Econometrics (Q3); Strategy and Management (Q4)'), (16874, 'International Journal of Athletic Therapy and', 21577285, 0.215, 'Q3', 16, 54, 1314, 51, 126, '2', '2012-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4); Sports Science (Q4)'), (16875, 'International Journal of Electronic Marketing', 17411025, 0.215, 'Q3', 10, 20, 1499, 48, 62, '3', '2006-2013, 2020', 'Business and International Management (Q3); Management Information Systems (Q3); Marketing (Q3)'), (16876, 'International Journal of High-Rise Buildings', 22889930, 0.215, 'Q2', 4, 35, 690, 45, 65, '13', '2018-2020', 'Architecture (Q2); Building and Construction (Q3); Urban Studies (Q3); Civil and Structural Engineering (Q4)'), (16877, 'International Journal of Integrated Engineeri', 2229838, 0.215, 'Q3', 10, 259, 7033, 501, 575, '23', '2017-2020', 'Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Civil and Structural Engineering (Q4); M'), (16878, 'International Polymer Processing', 930777, 0.215, 'Q3', 35, 21, 740, 153, 188, '5', '1988-1990, 1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Chemistry (Q3); Polymers and Plastics (Q3)'), (16879, 'Inzynieria Mineralna', 16404920, 0.215, 'Q4', 9, 83, 1130, 74, 273, '17', '2004-2019', 'Geochemistry and Petrology (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (16880, 'Journal of Antitrust Enforcement', 20500688, 0.215, 'Q2', 7, 39, 1519, 23, 65, '3', '2013-2019', 'Law (Q2)'), (16881, 'Journal of College Student Psychotherapy', 87568225, 0.215, 'Q3', 24, 53, 2090, 71, 73, '2', '1987-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)'), (16882, 'Journal of Emerging Market Finance', 9730710, 0.215, 'Q3', 17, 13, 631, 48, 67, '4', '2002-2020', 'Economics and Econometrics (Q3); Finance (Q4)'), (16883, 'Journal of Institute of Control, Robotics and', 19765622, 0.215, 'Q4', 11, 143, 2599, 243, 457, '13', '2008-2020', 'Applied Mathematics (Q4); Control and Systems Engineering (Q4); Software (Q4)'), (16884, 'Journal of the Korean Physical Society', 19768524, 0.215, 'Q4', 48, 390, 9738, 782, 1195, '13', '1996-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (16885, 'Languages in Contrast', 13876759, 0.215, 'Q2', 11, 12, 610, 18, 36, '16', '2008-2020', 'Linguistics and Language (Q2)'), (16886, 'Medycyna wieku rozwojowego', 1428345, 0.215, 'Q4', 16, 0, 0, 84, 125, '17', '1999-2019', 'Medicine (miscellaneous) (Q4)'), (16887, 'Oxidation Communications', 2094541, 0.215, 'Q3', 22, 54, 1581, 111, 249, '61', '1996-2020', 'Chemistry (miscellaneous) (Q3)'), (16888, 'Psychological Science and Education', 18142052, 0.215, 'Q3', 2, 45, 1057, 2, 2, '10', '2020', 'Education (Q3); Developmental and Educational Psychology (Q4); Social Psychology (Q4)'), (16889, 'Rehabilitacia', 338680, 0.215, 'Q3', 8, 12, 374, 24, 87, '53', '1980-1990, 1995-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3)'), (16890, 'Religion and Education', 15507394, 0.215, 'Q1', 12, 30, 1, 29, 63, '3', '1995-2020', 'Religious Studies (Q1); Education (Q3)'), (16891, 'Revista de Ciencias Agroveterinarias', 22381171, 0.215, 'Q3', 4, 71, 2008, 89, 207, '14', '2017-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3); Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4); Plant Science (Q4); Soil Science (Q4)'), (16892, 'Revista de Investigacoes Constitucionais', 23595639, 0.215, 'Q2', 5, 34, 1332, 47, 97, '14', '2014-2019', 'Law (Q2); Sociology and Political Science (Q3)'), (16893, 'Sociologia del Lavoro', 3925048, 0.215, 'Q3', 4, 30, 1275, 31, 140, '7', '1992, 1996, 2016-2020', 'Economics and Econometrics (Q3); Sociology and Political Science (Q3); Organizational Behavior and Human Resource Management (Q4)'), (16894, 'Zeitschrift fur Kinder- und Jugendpsychiatrie', 16642880, 0.215, 'Q3', 24, 82, 2283, 104, 187, '19', '1996-2020', 'Clinical Psychology (Q3); Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (16895, 'Annali di Botanica', 22393129, 0.214, 'Q4', 18, 9, 390, 27, 26, '7', '1996-2000, 2002-2008, 2011-2020', 'Plant Science (Q4)'), (16896, 'Archives des Maladies Professionnelles et de ', 17758785, 0.214, 'Q4', 10, 56, 961, 18, 128, '8', '2004-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (16897, 'Asian Journal of Comparative Politics', 20578911, 0.214, 'Q3', 5, 55, 2873, 41, 60, '3', '2016-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (16898, 'Asia Pacific Disability Rehabilitation Journa', 10294414, 0.214, 'Q3', 14, 45, 1195, 53, 91, '4', '2006-2008, 2015, 2017-2020', 'Fundamentals and Skills (Q3); Community and Home Care (Q4); Research and Theory (Q4)'), (16899, 'Biomedical and Biotechnology Research Journal', 25889842, 0.214, 'Q4', 5, 88, 2873, 14, 15, '4', '2017, 2020', 'Biotechnology (Q4)'), (16900, 'Canadian Foreign Policy Journal', 21570817, 0.214, 'Q3', 6, 35, 1450, 49, 60, '3', '2014-2020', 'Political Science and International Relations (Q3)'), (16901, 'Catalan Journal of Communication and Cultural', 17571898, 0.214, 'Q2', 5, 20, 851, 40, 52, '3', '2013-2020', 'Cultural Studies (Q2); Communication (Q3)'), (16902, 'Clinical Microbiology Newsletter', 1964399, 0.214, 'Q4', 22, 33, 1044, 68, 109, '2', '1979-2020', 'Infectious Diseases (Q4); Microbiology (medical) (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (16903, 'Croatica Chemica Acta', 1334417, 0.214, 'Q3', 50, 18, 704, 154, 179, '58', '1980-1981, 1996-2020', 'Chemistry (miscellaneous) (Q3)'), (16904, 'Epitheorese Klinikes Farmakologias kai Farmak', 10116575, 0.214, 'Q3', 5, 26, 862, 8, 53, '61', '1989-2020', 'Pharmacology (medical) (Q3); Pharmacology (Q4)'), (16905, 'Filosofija, Sociologija', 2357186, 0.214, 'Q2', 10, 41, 954, 31, 102, '69', '2008-2020', 'Philosophy (Q2); Sociology and Political Science (Q3)'), (16906, 'Geological Bulletin of China', 16712552, 0.214, 'Q3', 47, 176, 7811, 289, 637, '1', '2006-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3)'), (16907, 'Germanoslavica (Czech Republic)', 12109029, 0.214, 'Q1', 2, 0, 0, 1, 29, '31', '2002, 2006-2014, 2016-2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16908, 'Hastings Law Journal', 178322, 0.214, 'Q2', 28, 0, 0, 25, 38, '2', '1974-1977, 1979-1981, 1986, 1988, 1991-2018', 'Law (Q2)'), (16909, 'Health Psychology Report', 23535571, 0.214, 'Q3', 3, 32, 1716, 39, 32, '17', '2019-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)'), (16910, 'International Journal of Data Mining and Bioi', 17485681, 0.214, 'Q3', 21, 41, 1482, 107, 122, '3', '2006-2015', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Library and Information Sciences (Q3); Information Systems (Q4)'), (16911, 'International Journal of Online Pedagogy and ', 21556873, 0.214, 'Q3', 4, 15, 596, 39, 60, '2', '2017-2020', 'Education (Q3)'), (16912, 'Iranian Journal of Applied Animal Science', 2251628, 0.214, 'Q4', 6, 78, 3121, 123, 223, '15', '2016-2020', 'Animal Science and Zoology (Q4)'), (16913, 'Jiliang Xuebao/Acta Metrologica Sinica', 10001158, 0.214, 'Q3', 14, 290, 4768, 637, 570, '1', '2001-2020', 'Electrical and Electronic Engineering (Q3); Instrumentation (Q4)'), (16914, 'Journal fur Verbraucherschutz und Lebensmitte', 16615751, 0.214, 'Q3', 28, 38, 1459, 125, 131, '19', '2006-2020', 'Agronomy and Crop Science (Q3); Food Science (Q3); Biotechnology (Q4); Food Animals (Q4)'), (16915, 'Journal of Environmental Engineering and Scie', 1496256, 0.214, 'Q3', 40, 22, 660, 51, 59, '3', '2002-2008, 2015-2020', 'Environmental Science (miscellaneous) (Q3); Environmental Chemistry (Q4); Environmental Engineering (Q4)'), (16916, 'Journal of Environmental Protection and Ecolo', 13115065, 0.214, 'Q3', 20, 220, 3664, 377, 613, '61', '2008-2020', 'Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Waste Management and Disposal (Q3); Pollution (Q4)'), (16917, 'Journal of Flow Visualization and Image Proce', 10653090, 0.214, 'Q3', 12, 21, 566, 27, 59, '2', '1996-2020', 'Mechanical Engineering (Q3); Computer Science Applications (Q4); Condensed Matter Physics (Q4)'), (16918, 'Journal of Mathematics and Music', 17459737, 0.214, 'Q2', 14, 24, 789, 28, 37, '3', '2007-2020', 'Music (Q2); Applied Mathematics (Q4); Computational Mathematics (Q4); Modeling and Simulation (Q4)'), (16919, 'Journal of Microwaves, Optoelectronics and El', 21791074, 0.214, 'Q3', 17, 41, 948, 186, 168, '14', '2011-2020', 'Electrical and Electronic Engineering (Q3)'), (16920, 'Journal of Research in Pharmacy', 13090801, 0.214, 'Q3', 14, 94, 3359, 268, 273, '18', '2019-2020', 'Pharmacology (medical) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (16921, 'Journal of the Association of Medical Microbi', 23710888, 0.214, 'Q4', 4, 41, 922, 30, 88, '9', '2016-2020', 'Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (16922, 'Kardiochirurgia i Torakochirurgia Polska', 17315530, 0.214, 'Q3', 10, 34, 755, 99, 117, '17', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)'), (16923, 'Medical Journal Armed Forces India', 3771237, 0.214, 'Q4', 23, 202, 3566, 175, 231, '4', '1975-1978, 2001-2020', 'Medicine (miscellaneous) (Q4)'), (16924, 'National Academy Science Letters', 250541, 0.214, 'Q3', 19, 175, 2461, 241, 270, '4', '2005-2020', 'Engineering (miscellaneous) (Q3)'), (16925, 'NeuroQuantology', 13035150, 0.214, 'Q4', 20, 124, 2868, 251, 548, '18', '2007-2020', 'Atomic and Molecular Physics, and Optics (Q4); Cognitive Neuroscience (Q4); Developmental Neuroscience (Q4)'), (16926, 'Nonlinear Optics Quantum Optics', 15430537, 0.214, 'Q3', 20, 25, 878, 70, 90, '2', '2003-2020', 'Computer Science (miscellaneous) (Q3); Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4); Statistical and Nonlinear Physics (Q4)'), (16927, 'Progress in Steel Building Structures', 16719379, 0.214, 'Q3', 5, 93, 1568, 70, 239, '1', '2015-2020', 'Building and Construction (Q3); Metals and Alloys (Q3); Civil and Structural Engineering (Q4); Numerical Analysis (Q4)'), (16928, 'Przeglad Geograficzny', 332143, 0.214, 'Q3', 12, 31, 1499, 64, 80, '17', '1976-1989, 1993-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (16929, 'Psychology and Developing Societies', 9713336, 0.214, 'Q4', 18, 13, 719, 24, 35, '4', '1989-2020', 'Social Psychology (Q4)'), (16930, 'Puerto Rico Health Sciences Journal', 7380658, 0.214, 'Q4', 25, 41, 917, 97, 148, '105', '1985-2020', 'Medicine (miscellaneous) (Q4)'), (16931, 'Quimica Nova', 1004042, 0.214, 'Q3', 73, 187, 9716, 437, 480, '14', '1992, 1997-2020', 'Chemistry (miscellaneous) (Q3)'), (16932, 'Research in Accounting Regulation', 10520457, 0.214, 'Q3', 18, 0, 0, 27, 38, '16', '2003-2005, 2007-2018', 'Sociology and Political Science (Q3); Accounting (Q4); Finance (Q4)'), (16933, 'Ruan Jian Xue Bao/Journal of Software', 10009825, 0.214, 'Q4', 63, 231, 10905, 845, 731, '1', '1995-2020', 'Software (Q4)'), (16934, 'Russian Microelectronics', 10637397, 0.214, 'Q3', 17, 77, 1529, 127, 246, '10', '1996-2020', 'Electrical and Electronic Engineering (Q3); Materials Chemistry (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (16935, 'Siberian Historical Research', 23124628, 0.214, 'Q1', 3, 58, 1768, 24, 130, '10', '2013-2019', 'History (Q1); Anthropology (Q2); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (16936, 'Southeast Asian Journal of Tropical Medicine ', 1251562, 0.214, 'Q4', 51, 3, 60, 121, 239, '40', '1971-2019', 'Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (16937, 'Tien Tzu Hsueh Pao/Acta Electronica Sinica', 3722112, 0.214, 'Q3', 46, 316, 6909, 931, 1184, '1', '1993-2020', 'Electrical and Electronic Engineering (Q3)'), (16938, 'World Earthquake Engineering', 10076069, 0.214, 'Q4', 16, 99, 2188, 115, 313, '1', '2005-2020', 'Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (16939, 'Youth Theatre Journal', 8929092, 0.214, 'Q1', 9, 19, 338, 13, 38, '3', '1995-2020', 'Visual Arts and Performing Arts (Q1); Education (Q3)'), (16940, 'Zhonghua wei zhong bing ji jiu yi xue', 20954352, 0.214, 'Q3', 17, 343, 6912, 474, 802, '1', '2013-2020', 'Critical Care and Intensive Care Medicine (Q3); Medicine (miscellaneous) (Q4)'), (16941, 'Arquivo Brasileiro de Medicina Veterinaria e ', 1020935, 0.213, 'Q3', 33, 294, 6955, 346, 767, '14', '1996-2020', 'Veterinary (miscellaneous) (Q3)'), (16942, 'Asian Journal of Conservation Biology', 22787666, 0.213, 'Q3', 3, 30, 1209, 23, 55, '4', '2017-2020', 'Nature and Landscape Conservation (Q3); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (16943, 'Audiology and Speech Research', 26355019, 0.213, 'Q3', 3, 40, 1158, 21, 37, '13', '2019-2020', 'Otorhinolaryngology (Q3); Speech and Hearing (Q3); Health (social science) (Q4)'), (16944, 'Beijing Jiaotong Daxue Xuebao/Journal of Beij', 16730291, 0.213, 'Q3', 15, 90, 1597, 162, 334, '1', '2005-2020', 'Engineering (miscellaneous) (Q3)'), (16945, 'BioLaw Journal', 22844503, 0.213, 'Q2', 5, 165, 3270, 44, 188, '7', '2014-2020', 'Law (Q2); Philosophy (Q2); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Biotechnology (Q4); Health Policy (Q4); Medicine (miscellaneous) (Q4)'), (16946, 'Bodenkultur', 65471, 0.213, 'Q4', 18, 11, 468, 43, 60, '5', '1974, 1976-1977, 1979-1981, 1983-1985, 1987-1988, 1993-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Soil Science (Q4)'), (16947, 'China Journal of Social Work', 17525098, 0.213, 'Q3', 10, 30, 1264, 24, 42, '3', '2010-2020', 'Sociology and Political Science (Q3); Health (social science) (Q4); Social Work (Q4)'), (16948, 'Contemporary Levant', 20581831, 0.213, 'Q1', 5, 14, 660, 20, 34, '3', '2016-2020', 'History (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)'), (16949, 'Current Proteomics', 15701646, 0.213, 'Q4', 24, 41, 2487, 112, 118, '52', '2005-2020', 'Biochemistry (Q4); Molecular Biology (Q4)'), (16950, 'Drugs and Alcohol Today', 17459265, 0.213, 'Q3', 15, 37, 1738, 77, 88, '3', '2001-2020', 'Clinical Psychology (Q3); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (16951, 'Environmental and Engineering Geoscience', 10787275, 0.213, 'Q3', 33, 44, 1320, 43, 52, '2', '1995-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (16952, 'Fangzhi Xuebao/Journal of Textile Research', 2539721, 0.213, 'Q3', 6, 349, 7339, 399, 702, '1', '2016, 2018-2020', 'Materials Chemistry (Q3); Materials Science (miscellaneous) (Q3); Polymers and Plastics (Q3)'), (16953, 'Glotta - Zeitschrift fur Griechische und Late', 171298, 0.213, 'Q1', 6, 14, 735, 12, 52, '5', '1975, 1979-1981, 1986, 1995, 2002-2005, 2007-2019', 'Classics (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16954, 'Hipertension y Riesgo Vascular', 18891837, 0.213, 'Q3', 8, 35, 886, 49, 86, '12', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3)'), (16955, 'Indian Journal of Hematology and Blood Transf', 9714502, 0.213, 'Q4', 15, 186, 3435, 233, 317, '4', '2000-2003, 2007-2020', 'Hematology (Q4)'), (16956, 'Innovations in Systems and Software Engineeri', 16145054, 0.213, 'Q4', 27, 26, 1006, 87, 59, '3', '2005-2020', 'Software (Q4)'), (16957, 'International Journal for the Semiotics of La', 9528059, 0.213, 'Q2', 13, 115, 5643, 48, 119, '16', '1988-2002, 2004-2020', 'Language and Linguistics (Q2); Law (Q2)'), (16958, 'International Journal of Conservation Science', 20678223, 0.213, 'Q2', 16, 98, 3051, 127, 213, '43', '2010-2020', 'Conservation (Q2); Nature and Landscape Conservation (Q3)'), (16959, 'International Journal of Engineering, Transac', 1728144, 0.213, 'Q3', 17, 121, 3433, 353, 346, '15', '2004-2020', 'Engineering (miscellaneous) (Q3)'), (16960, 'International Journal of Intelligent Informat', 15483665, 0.213, 'Q4', 15, 11, 458, 63, 54, '2', '2005-2020', 'Decision Sciences (miscellaneous) (Q4); Information Systems (Q4)'), (16961, 'International Journal of Sociology of Educati', 20143575, 0.213, 'Q3', 3, 13, 729, 17, 23, '12', '2018-2020', 'Education (Q3); Social Sciences (miscellaneous) (Q3)'), (16962, 'International Journal of the Analytic Hierarc', 19366744, 0.213, 'Q3', 3, 29, 1039, 63, 52, '2', '2018-2020', 'Decision Sciences (miscellaneous) (Q3)'), (16963, 'Investment Management and Financial Innovatio', 18104967, 0.213, 'Q3', 18, 123, 4585, 433, 359, '44', '2004-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Accounting (Q4); Finance (Q4); Strategy and Management (Q4)'), (16964, 'Isokinetics and Exercise Science', 18785913, 0.213, 'Q3', 27, 45, 1708, 61, 118, '16', '1991-1998, 2000-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Biophysics (Q4); Orthopedics and Sports Medicine (Q4); Sports Science (Q4)'), (16965, 'Journal of Cellular Biotechnology', 23523697, 0.213, 'Q4', 4, 6, 311, 21, 25, '2', '2019-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Molecular Biology (Q4)'), (16966, 'Journal of Clinical Ethics', 10467890, 0.213, 'Q4', 35, 51, 0, 74, 112, '2', '1990-2020', 'Health Policy (Q4); Health (social science) (Q4); Issues, Ethics and Legal Aspects (Q4); Medicine (miscellaneous) (Q4)'), (16967, 'Journal of Comparative Politics', 13381385, 0.213, 'Q3', 3, 6, 398, 18, 33, '60', '2017-2020', 'Sociology and Political Science (Q3)'), (16968, 'Journal of dental hygiene : JDH / American De', 15530205, 0.213, 'Q4', 27, 42, 0, 85, 112, '2', '1988-2020', 'Medicine (miscellaneous) (Q4)'), (16969, 'Journal of Environmental Assessment Policy an', 14643332, 0.213, 'Q3', 29, 0, 0, 42, 56, '37', '2003-2019', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q3)'), (16970, 'Journal of Visual Communication in Medicine', 17453062, 0.213, 'Q1', 15, 33, 589, 60, 93, '3', '1978-2020', 'Visual Arts and Performing Arts (Q1); Health Professions (miscellaneous) (Q4)'), (16971, 'Kagaku Kogaku Ronbunshu', 386216, 0.213, 'Q3', 19, 30, 558, 52, 152, '6', '1975-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (16972, 'Malaysian Journal of Analytical Sciences', 13942506, 0.213, 'Q4', 15, 102, 2845, 337, 395, '23', '2010-2020', 'Analytical Chemistry (Q4)'), (16973, 'Operative Techniques in Orthopaedics', 10486666, 0.213, 'Q3', 30, 33, 972, 41, 116, '3', '1991-2020', 'Surgery (Q3); Orthopedics and Sports Medicine (Q4)'), (16974, 'Orphan Drugs: Research and Reviews', 22306161, 0.213, 'Q3', 3, 0, 0, 5, 4, '41', '2014-2015, 2017', 'Pharmaceutical Science (Q3); Drug Discovery (Q4)'), (16975, 'Papers in Applied Geography', 2375494, 0.213, 'Q3', 8, 44, 1844, 65, 74, '2', '2015-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Urban Studies (Q3)'), (16976, 'Polish Journal of Soil Science', 792985, 0.213, 'Q3', 11, 19, 663, 34, 68, '17', '1976, 1978-1979, 1987-2020', 'Earth-Surface Processes (Q3); Ecology (Q4); Soil Science (Q4)'), (16977, 'Praxis Educativa', 18094031, 0.213, 'Q3', 4, 99, 3879, 20, 116, '14', '2018-2020', 'Education (Q3); Social Sciences (miscellaneous) (Q3)'), (16978, 'Prispevki za novejs&amp;#x030c;o zgodovino / ', 3530329, 0.213, 'Q1', 4, 20, 739, 9, 88, '60', '2002, 2010-2019', 'History (Q1)'), (16979, 'RAIRO - Theoretical Informatics and Applicati', 1290385, 0.213, 'Q4', 30, 5, 126, 30, 40, '8', '1995-2020', 'Computer Science Applications (Q4); Mathematics (miscellaneous) (Q4); Software (Q4)'), (16980, 'Revista Internacional de Metodos Numericos pa', 2131315, 0.213, 'Q3', 9, 38, 960, 53, 108, '12', '1987, 2009-2020', 'Engineering (miscellaneous) (Q3); Applied Mathematics (Q4)'), (16981, 'Slovenian Veterinary Research', 15804003, 0.213, 'Q3', 13, 13, 454, 155, 183, '60', '2007-2020', 'Veterinary (miscellaneous) (Q3)'), (16982, 'Sojourn', 17932858, 0.213, 'Q2', 18, 11, 605, 52, 62, '37', '1988-1993, 1995-1996, 1999-2001, 2003-2020', 'Anthropology (Q2); Sociology and Political Science (Q3)'), (16983, 'South African Journal of Accounting Research', 23763981, 0.213, 'Q3', 4, 20, 1334, 23, 24, '3', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Accounting (Q4)'), (16984, 'Studies in Social Justice', 19114788, 0.213, 'Q2', 14, 16, 583, 48, 67, '9', '2009-2019', 'Law (Q2); Gender Studies (Q3); Sociology and Political Science (Q3)'), (16985, 'Trends in Anaesthesia and Critical Care', 22108440, 0.213, 'Q3', 21, 52, 1397, 61, 86, '3', '2011-2020', 'Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)'), (16986, 'Ukrainian Journal of Physics', 20710186, 0.213, 'Q4', 17, 115, 3691, 345, 394, '44', '2007-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (16987, 'Vakuum in Forschung und Praxis', 15222454, 0.213, 'Q3', 13, 30, 263, 27, 89, '5', '1989-2020', 'Surfaces, Coatings and Films (Q3); Condensed Matter Physics (Q4)'), (16988, 'Acta Biologica Szegediensis', 15884082, 0.212, 'Q3', 28, 7, 316, 37, 53, '50', '1997-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (16989, 'Acta Neuropsychologica', 17307503, 0.212, 'Q4', 12, 32, 1338, 57, 86, '17', '2005-2020', 'Applied Psychology (Q4); Neuropsychology and Physiological Psychology (Q4)'), (16990, 'Annali Italiani di Chirurgia', 3469, 0.212, 'Q3', 23, 169, 3561, 233, 421, '7', '1947-1948, 1950-1971, 1973-2020', 'Surgery (Q3)'), (16991, 'BrewingScience', 18665195, 0.212, 'Q3', 15, 0, 0, 51, 56, '5', '2007-2019', 'Food Science (Q3); Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4)'), (16992, 'Egyptian Heart Journal', 2090911, 0.212, 'Q3', 9, 84, 1997, 140, 149, '32', '2011-2020', 'Cardiology and Cardiovascular Medicine (Q3)'), (16993, 'Foods and Raw Materials', 23084057, 0.212, 'Q3', 8, 49, 1709, 156, 144, '10', '2013-2020', 'Food Science (Q3)'), (16994, 'Iranian Economic Review', 10266542, 0.212, 'Q3', 6, 43, 1441, 74, 131, '15', '2013-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (16995, 'Journal of Fishery Sciences of China', 10058737, 0.212, 'Q3', 5, 107, 3994, 177, 372, '1', '2016-2019', 'Management, Monitoring, Policy and Law (Q3); Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (16996, 'Journal of Multiple-Valued Logic and Soft Com', 15423980, 0.212, 'Q4', 24, 9, 247, 114, 155, '2', '2003-2020', 'Logic (Q4); Software (Q4); Theoretical Computer Science (Q4)'), (16997, 'Journal of Youth and Theology', 24055093, 0.212, 'Q1', 5, 10, 402, 10, 24, '16', '2002-2019', 'Religious Studies (Q1)'), (16998, 'Lahivordlusi Lahivertailuj', 22283854, 0.212, 'Q2', 7, 10, 236, 8, 29, '71', '2011-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (16999, 'Masculinities and Social Change', 20143605, 0.212, 'Q3', 11, 12, 646, 19, 32, '12', '2012-2020', 'Gender Studies (Q3)'), (17000, 'Natural Volatiles and Essential Oils', 21489637, 0.212, 'Q3', 3, 18, 604, 20, 31, '18', '2018-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Plant Science (Q4)'), (17001, 'Nova Biotechnologica et Chimica', 1339004, 0.212, 'Q3', 9, 25, 1025, 55, 60, '5', '2012-2019', 'Food Science (Q3); Analytical Chemistry (Q4); Biotechnology (Q4); Health, Toxicology and Mutagenesis (Q4)'), (17002, 'Odonatologica', 3750183, 0.212, 'Q4', 24, 0, 0, 25, 49, '16', '1996-2019', 'Insect Science (Q4)'), (17003, 'Open Physics', 23915471, 0.212, 'Q4', 38, 120, 4123, 421, 355, '5', '2015-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (17004, 'Psychology in Russia: State of the Art', 20746857, 0.212, 'Q3', 10, 41, 1692, 118, 169, '10', '2012-2020', 'Psychology (miscellaneous) (Q3)'), (17005, 'Revue Internationale de Criminologie et de Po', 14244683, 0.212, 'Q2', 7, 19, 864, 20, 95, '19', '2009-2020', 'Law (Q2); Social Sciences (miscellaneous) (Q3)'), (17006, 'Smith College Studies in Social Work', 15530426, 0.212, 'Q3', 21, 16, 800, 32, 62, '2', '1930-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Social Work (Q4)'), (17007, 'USDA Forest Service - Research Papers PNW-RP', 8825165, 0.212, 'Q3', 4, 2, 91, 6, 6, '2', '2005-2020', 'Forestry (Q3); Ecology (Q4); Plant Science (Q4)'), (17008, 'Well Testing', 10044388, 0.212, 'Q3', 7, 77, 1586, 231, 279, '1', '2004-2020', 'Energy Engineering and Power Technology (Q3)'), (17009, 'Zhongguo Jixie Gongcheng/China Mechanical Eng', 1004132, 0.212, 'Q3', 23, 361, 8366, 751, 1280, '1', '1993-1994, 1997-1998, 2001-2020', 'Mechanical Engineering (Q3)'), (17010, 'Advances in Radio Science', 16849965, 0.211, 'Q3', 22, 11, 183, 87, 90, '5', '2003-2019', 'Electrical and Electronic Engineering (Q3)'), (17011, 'Annals of Emerging Technologies in Computing', 2516029, 0.211, 'Q3', 7, 30, 877, 88, 51, '3', '2017-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)'), (17012, 'Applied Marketing Analytics', 20547544, 0.211, 'Q3', 2, 35, 589, 19, 47, '3', '2018-2020', 'Marketing (Q3); Statistics, Probability and Uncertainty (Q4); Strategy and Management (Q4)'), (17013, 'Apunts Medicina de l Esport', 2133717, 0.211, 'Q3', 12, 0, 0, 38, 56, '12', '1995, 2006-2019', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4); Sports Science (Q4)'), (17014, 'Archeo-Nil', 11610492, 0.211, 'Q2', 5, 8, 636, 10, 19, '8', '2011, 2013-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (17015, 'Asia Pacific Journal of Social Work and Devel', 21650993, 0.211, 'Q3', 11, 49, 1533, 62, 59, '3', '1991-1998, 2005-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Social Work (Q4)'), (17016, 'Atom Indonesia', 23565322, 0.211, 'Q3', 8, 24, 585, 42, 72, '21', '2010-2020', 'Waste Management and Disposal (Q3); Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4); Radiation (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (17017, 'Boletin Geologico y Minero', 3660176, 0.211, 'Q4', 20, 0, 0, 61, 114, '12', '1980-2019', 'Geochemistry and Petrology (Q4); Geology (Q4)'), (17018, 'Bulgarian Journal of Veterinary Medicine', 13111477, 0.211, 'Q3', 10, 51, 1447, 84, 148, '61', '2011-2020', 'Veterinary (miscellaneous) (Q3)'), (17019, 'Bulletin of Mineralogy Petrology and Geochemi', 10072802, 0.211, 'Q3', 24, 0, 0, 43, 75, '1', '2001-2017', 'Economic Geology (Q3); Geochemistry and Petrology (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (17020, 'China Report', 94455, 0.211, 'Q3', 12, 23, 1165, 38, 57, '4', '1971, 1979, 1989-2020', 'Development (Q3); Geography, Planning and Development (Q3); Political Science and International Relations (Q3)'), (17021, 'Confluentes Mathematici', 17937442, 0.211, 'Q4', 4, 4, 118, 21, 24, '8', '2017-2019', 'Applied Mathematics (Q4); Mathematical Physics (Q4); Mathematics (miscellaneous) (Q4)'), (17022, 'Dados', 16784588, 0.211, 'Q3', 26, 28, 1525, 39, 83, '14', '1996-2020', 'Social Sciences (miscellaneous) (Q3)'), (17023, 'Dental update', 3055000, 0.211, 'Q3', 31, 162, 2337, 113, 361, '3', '1973-2020', 'Dentistry (miscellaneous) (Q3)'), (17024, 'Engenharia Sanitaria e Ambiental', 14134152, 0.211, 'Q3', 17, 79, 2736, 220, 351, '14', '2006-2020', 'Waste Management and Disposal (Q3)'), (17025, 'Engineering Transactions', 867888, 0.211, 'Q3', 10, 23, 631, 100, 108, '17', '2012-2020', 'Engineering (miscellaneous) (Q3)'), (17026, 'Foundations of Management', 23005661, 0.211, 'Q4', 7, 18, 629, 78, 72, '5', '2009-2012, 2015-2020', 'Strategy and Management (Q4)'), (17027, 'Global Trade and Customs Journal', 18756468, 0.211, 'Q2', 2, 52, 1752, 21, 118, '16', '2018-2020', 'Law (Q2); Business and International Management (Q3)'), (17028, 'Harvard Journal of Law and Public Policy', 1934872, 0.211, 'Q2', 27, 21, 2365, 23, 78, '2', '1980, 1985, 1990, 1995-2020', 'Law (Q2); Sociology and Political Science (Q3)'), (17029, 'Helia', 10181806, 0.211, 'Q4', 19, 12, 296, 27, 51, '55', '2000-2020', 'Agronomy and Crop Science (Q4)'), (17030, 'Historisk Tidskrift', 345469, 0.211, 'Q1', 5, 59, 3998, 8, 42, '20', '1973, 1977, 1979-1980, 1983-1987, 1999-2001, 2014-2018', 'History (Q1)'), (17031, 'IEICE Transactions on Communications', 9168516, 0.211, 'Q3', 56, 160, 3559, 566, 710, '6', '1993-2020', 'Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Software (Q4)'), (17032, 'Iheringia - Serie Botanica', 734705, 0.211, 'Q4', 16, 18, 620, 60, 134, '14', '2004-2020', 'Plant Science (Q4)'), (17033, 'In Practice', 20427689, 0.211, 'Q3', 25, 91, 1089, 79, 175, '3', '1981-1989, 1991-2020', 'Veterinary (miscellaneous) (Q3)'), (17034, 'International Journal of Performance Arts and', 20400934, 0.211, 'Q1', 10, 26, 698, 21, 48, '3', '2005-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q3)'), (17035, 'Irish Journal of Occupational Therapy', 7918437, 0.211, 'Q3', 2, 7, 371, 12, 19, '3', '2018-2020', 'Occupational Therapy (Q3); Public Health, Environmental and Occupational Health (Q4)'), (17036, 'Journal of Advances in Information Fusion', 15576418, 0.211, 'Q3', 12, 0, 0, 73, 40, '2', '2013-2019', 'Computer Vision and Pattern Recognition (Q3); Information Systems (Q4); Signal Processing (Q4)'), (17037, 'Journal of Institutional and Theoretical Econ', 9324569, 0.211, 'Q3', 36, 40, 990, 48, 92, '5', '1992-1993, 1996-2020', 'Economics and Econometrics (Q3)'), (17038, 'Journal of Nationalism Memory and Language Po', 25705857, 0.211, 'Q1', 5, 9, 460, 32, 31, '17', '2017-2020', 'History (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Sociology and Political Science (Q3)'), (17039, 'Journal of Neutron Research', 14772655, 0.211, 'Q4', 24, 51, 983, 31, 46, '16', '1993-2008, 2014-2020', 'Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)'), (17040, 'Journal of Optimization in Industrial Enginee', 24233935, 0.211, 'Q3', 4, 34, 1266, 38, 50, '15', '2018-2020', 'Industrial and Manufacturing Engineering (Q3)'), (17041, 'Journal of the Geothermal Research Society of', 3886735, 0.211, 'Q4', 5, 1, 12, 9, 26, '6', '1979-2010, 2016-2019', 'Geophysics (Q4)'), (17042, 'Journal of the South African Institution of C', 10212019, 0.211, 'Q4', 16, 20, 562, 55, 74, '27', '1993-1995, 2003-2020', 'Civil and Structural Engineering (Q4)'), (17043, 'Open Journal of Bioresources', 20565542, 0.211, 'Q3', 2, 20, 187, 2, 2, '3', '2019-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Cell Biology (Q4); Health Informatics (Q4); Health Information Management (Q4); Medicine (miscellaneous) (Q4)'), (17044, 'Sociologie du Travail', 380296, 0.211, 'Q3', 26, 14, 579, 16, 75, '8', '1972, 1980, 1988, 1994-2019', 'Industrial Relations (Q3); Sociology and Political Science (Q3)'), (17045, 'Teflin Journal', 23562641, 0.211, 'Q2', 2, 17, 740, 25, 31, '21', '2018-2020', 'Linguistics and Language (Q2); Education (Q3)'), (17046, 'World Futures', 2604027, 0.211, 'Q2', 17, 30, 1577, 69, 99, '3', '1962-1977, 1979-1995, 2006-2007, 2009-2020', 'Philosophy (Q2)'), (17047, 'WSEAS Transactions on Applied and Theoretical', 19918747, 0.211, 'Q3', 10, 23, 495, 50, 74, '39', '2008-2013, 2015, 2017-2020', 'Computational Mechanics (Q3); Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Civil and Structural Engineering (Q4); Fluid Flow and Transfer Processes (Q4); Mechanics of Materials'), (17048, 'WSEAS Transactions on Mathematics', 11092769, 0.211, 'Q4', 21, 71, 1515, 120, 154, '39', '2005-2014, 2017-2020', 'Algebra and Number Theory (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Control and Optimization (Q4); Discrete Mathematics and Combinatorics (Q4); Endocrinology, Diabetes and Metabo'), (17049, 'Zhongguo Youse Jinshu Xuebao/Chinese Journal ', 10040609, 0.211, 'Q3', 32, 299, 8504, 604, 873, '1', '2001-2020', 'Metals and Alloys (Q3); Condensed Matter Physics (Q4); Materials Chemistry (Q4)'), (17050, 'American Journal of Jurisprudence', 20496494, 0.21, 'Q2', 6, 7, 448, 15, 42, '2', '1973-1975, 1977, 1981, 1987, 1997, 2000, 2016-2019', 'Law (Q2)'), (17051, 'Annual Review of CyberTherapy and Telemedicin', 15548716, 0.21, 'Q3', 15, 0, 0, 59, 87, '24', '2009-2019', 'Computer Science (miscellaneous) (Q3); Psychology (miscellaneous) (Q3); Rehabilitation (Q3); Neuroscience (miscellaneous) (Q4)'), (17052, 'Applied Theatre Research', 20493010, 0.21, 'Q1', 2, 17, 402, 12, 42, '3', '2017-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)'), (17053, 'Archives of Psychiatry and Psychotherapy', 2083828, 0.21, 'Q3', 11, 32, 1010, 65, 98, '17', '2001-2020', 'Clinical Psychology (Q3); Psychiatry and Mental Health (Q4)'), (17054, 'Arkivoc', 15517004, 0.21, 'Q4', 58, 121, 5391, 276, 375, '2', '2000-2020', 'Organic Chemistry (Q4)'), (17055, 'Asia Pacific Journal of Information Systems', 22885404, 0.21, 'Q3', 3, 41, 2647, 35, 60, '13', '2018-2020', 'Information Systems and Management (Q3); Sociology and Political Science (Q3)'), (17056, 'Boyhood Studies', 23759240, 0.21, 'Q2', 2, 5, 96, 5, 14, '2', '2019', 'Cultural Studies (Q2); Education (Q3); Gender Studies (Q3); Developmental and Educational Psychology (Q4); Life-span and Life-course Studies (Q4); Social Psychology (Q4)'), (17057, 'Canadian Field-Naturalist', 83550, 0.21, 'Q4', 28, 6, 386, 42, 122, '9', '1979, 1981-1985, 1987, 1992-2019', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (17058, 'Clinical Case Reports', 20500904, 0.21, 'Q4', 9, 891, 12101, 548, 940, '3', '2013-2020', 'Medicine (miscellaneous) (Q4)'), (17059, 'Current Pharmaceutical Analysis', 15734129, 0.21, 'Q3', 24, 137, 5109, 204, 240, '52', '2006-2020', 'Pharmaceutical Science (Q3); Biochemistry (Q4); Biophysics (Q4); Molecular Medicine (Q4)'), (17060, 'Educational Theory', 132004, 0.21, 'Q3', 42, 35, 0, 54, 100, '2', '1951-2020', 'Education (Q3)'), (17061, 'European Journal of Physiotherapy', 21679177, 0.21, 'Q3', 8, 104, 4011, 78, 115, '3', '2013-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (17062, 'Geotechnical Engineering', 465828, 0.21, 'Q4', 20, 49, 1280, 86, 196, '40', '1978-1990, 1994-2020', 'Civil and Structural Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (17063, 'Gongcheng Kexue Xuebao/Chinese Journal of Eng', 20959389, 0.21, 'Q3', 23, 198, 6626, 454, 626, '1', '2015-2020', 'Engineering (miscellaneous) (Q3)'), (17064, 'Guangzi Xuebao/Acta Photonica Sinica', 10044213, 0.21, 'Q4', 24, 266, 6215, 593, 992, '1', '1997-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (17065, 'Hippokratia', 11084189, 0.21, 'Q4', 28, 43, 838, 60, 85, '39', '1999-2002, 2006-2020', 'Medicine (miscellaneous) (Q4)'), (17066, 'Historia Agraria', 11391472, 0.21, 'Q1', 15, 17, 1078, 25, 54, '12', '1998-2020', 'History (Q1); Arts and Humanities (miscellaneous) (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Multidisciplinary (Q3)'), (17067, 'Indogermanische Forschungen', 197262, 0.21, 'Q2', 9, 13, 859, 15, 41, '5', '1892-1900, 1903-1906, 1908-1917, 1921, 1923-1924, 1932, 1934, 1938, 1940, 1942, 1944, 1952, 1954, 19', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17068, 'International Journal of Distributed Systems ', 19473540, 0.21, 'Q3', 13, 19, 487, 50, 54, '2', '2010-2020', 'Computer Networks and Communications (Q3); Hardware and Architecture (Q4)'), (17069, 'International Journal of Human Resources Deve', 14656612, 0.21, 'Q4', 15, 18, 1150, 35, 56, '3', '2001-2013, 2018, 2020', 'Organizational Behavior and Human Resource Management (Q4)'), (17070, 'International Journal of Mathematics and Math', 16870425, 0.21, 'Q4', 39, 69, 1492, 109, 98, '2', '1978-1996, 2002-2020', 'Mathematics (miscellaneous) (Q4)'), (17071, 'International Journal of Tourism Anthropology', 17590450, 0.21, 'Q3', 4, 0, 0, 31, 39, '3', '2019', 'Anthropology (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (17072, 'JAVA - Journal of the Association for Vascula', 15571289, 0.21, 'Q4', 16, 0, 0, 43, 58, '2', '2003-2019', 'Medicine (miscellaneous) (Q4)'), (17073, 'Journal of Applied Biology and Biotechnology', 2347212, 0.21, 'Q3', 4, 94, 3477, 76, 89, '4', '2019-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Agronomy and Crop Science (Q4); Food Science (Q4); Plant Science (Q4)'), (17074, 'Journal of Cognitive Education and Psychology', 18107621, 0.21, 'Q3', 3, 12, 563, 34, 49, '2', '2017-2020', 'Education (Q3); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4)'), (17075, 'Journal of Continuing Higher Education', 19484801, 0.21, 'Q3', 15, 23, 801, 38, 59, '2', '1978-2020', 'Education (Q3)'), (17076, 'Journal of Ecology and Rural Environment', 16734831, 0.21, 'Q3', 16, 182, 5324, 376, 458, '1', '2006-2020', 'Development (Q3); Agronomy and Crop Science (Q4)'), (17077, 'Journal of Historical Research in Marketing', 17557518, 0.21, 'Q3', 16, 20, 1604, 29, 75, '3', '2009-2020', 'Marketing (Q3)'), (17078, 'Journal of Intelligent Systems', 3341860, 0.21, 'Q4', 20, 130, 4589, 174, 127, '5', '1991-2002, 2004-2020', 'Artificial Intelligence (Q4); Information Systems (Q4); Software (Q4)'), (17079, 'Journal of Physics: Conference Series', 17426588, 0.21, 'Q4', 85, 26434, 370242, 27264, 47075, '3', '2005-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (17080, 'LIA Language, Interaction and Acquisition', 18797873, 0.21, 'Q2', 11, 11, 574, 16, 30, '16', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3)'), (17081, 'Lymphology', 247766, 0.21, 'Q4', 46, 22, 94, 54, 65, '2', '1968-2020', 'Hematology (Q4); Immunology and Allergy (Q4)'), (17082, 'Milli Folklor', 13003984, 0.21, 'Q2', 7, 80, 2158, 23, 147, '18', '2002-2020', 'Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)'), (17083, 'Moscow University Chemistry Bulletin', 271314, 0.21, 'Q3', 11, 67, 1285, 89, 164, '10', '2004-2020', 'Chemistry (miscellaneous) (Q3)'), (17084, 'Neonatal network : NN', 15392880, 0.21, 'Q3', 36, 60, 1173, 101, 171, '2', '1985-2020', 'Critical Care and Intensive Care Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3); Critical Care Nursing (Q4); Medicine (miscellaneous) (Q4)'), (17085, 'Nordic Studies in Science Education', 18941257, 0.21, 'Q3', 3, 17, 527, 26, 55, '20', '2018-2020', 'Education (Q3)'), (17086, 'Obstetrics, Gynaecology and Reproductive Medi', 17517214, 0.21, 'Q3', 18, 71, 354, 92, 171, '3', '1970, 2007-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q3)'), (17087, 'Physica Status Solidi (C) Current Topics in S', 16101642, 0.21, 'Q4', 46, 0, 0, 121, 186, '5', '2004, 2006-2017', 'Condensed Matter Physics (Q4)'), (17088, 'Positions', 15278271, 0.21, 'Q1', 24, 25, 1073, 34, 81, '2', '2001-2019', 'History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)'), (17089, 'Proceedings of Singapore Healthcare', 20592329, 0.21, 'Q4', 9, 82, 1956, 89, 133, '37', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (17090, 'Psychiatrike&amp;#x0304; = Psychiatriki', 11052333, 0.21, 'Q4', 13, 31, 0, 66, 94, '39', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (17091, 'Quality - Access to Success', 15822559, 0.21, 'Q3', 21, 172, 5403, 625, 929, '43', '2009-2020', 'Business and International Management (Q3); Management Information Systems (Q3); Strategy and Management (Q4)'), (17092, 'Research of Environmental Sciences', 10016929, 0.21, 'Q3', 18, 330, 13301, 696, 737, '1', '2013-2020', 'Environmental Science (miscellaneous) (Q3)'), (17093, 'Revista Chapingo, Serie Horticultura', 20074034, 0.21, 'Q3', 9, 14, 467, 24, 45, '30', '2002, 2008-2020', 'Horticulture (Q3); Plant Science (Q4)'), (17094, 'Revista Latinoamericana de Hipertension', 18564550, 0.21, 'Q3', 7, 62, 1710, 123, 236, '94', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q3); Internal Medicine (Q3)'), (17095, 'Sagvntvm', 2174517, 0.21, 'Q2', 2, 2, 188, 12, 46, '12', '2017-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (17096, 'Scripta Theologica', 369764, 0.21, 'Q1', 4, 24, 1123, 26, 73, '12', '2011-2020', 'Religious Studies (Q1)'), (17097, 'SEARCH (Malaysia)', 2229872, 0.21, 'Q2', 5, 39, 2026, 41, 40, '23', '2012-2020', 'Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Communication (Q3)'), (17098, 'Techniques in Foot and Ankle Surgery', 15360644, 0.21, 'Q3', 18, 48, 1071, 27, 86, '2', '2002, 2005-2020', 'Surgery (Q3); Orthopedics and Sports Medicine (Q4)'), (17099, 'Western Folklore', 43373, 0.21, 'Q1', 10, 20, 775, 21, 30, '2', '1968-1969, 1979-1980, 1985, 1989, 1999, 2002-2014, 2017-2020', 'History (Q1); Visual Arts and Performing Arts (Q1); Anthropology (Q2); Cultural Studies (Q2)'), (17100, 'Aestimum', 15926117, 0.209, 'Q3', 9, 1, 35, 30, 32, '7', '2008-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Management, Monitoring, Policy and Law (Q3); Nature and Landscape Conservation (Q3); Urban Studies (Q3); Ecology (Q4)'), (17101, 'Ambiente e Sociedade', 1414753, 0.209, 'Q3', 18, 86, 3446, 75, 131, '14', '2006-2020', 'Environmental Science (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (17102, 'Asia Pacific Journal of Environmental Law', 18758258, 0.209, 'Q4', 7, 10, 379, 14, 33, '11', '1996-2002, 2004-2011, 2013-2020', 'Management, Monitoring, Policy and Law (Q4)'), (17103, 'Cement, Wapno, Beton', 14258129, 0.209, 'Q3', 14, 42, 979, 72, 91, '17', '2007-2020', 'Building and Construction (Q3); Materials Science (miscellaneous) (Q3)'), (17104, 'Communications on Applied Nonlinear Analysis', 1074133, 0.209, 'Q4', 14, 15, 347, 25, 73, '2', '2008-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (17105, 'Control Engineering and Applied Informatics', 14548658, 0.209, 'Q3', 18, 25, 789, 134, 123, '43', '2010-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)'), (17106, 'Craft Research', 20404697, 0.209, 'Q1', 5, 18, 588, 15, 42, '3', '2014-2020', 'Visual Arts and Performing Arts (Q1)'), (17107, 'Dao', 15697274, 0.209, 'Q2', 14, 35, 1075, 28, 95, '16', '2003, 2007-2020', 'Philosophy (Q2)'), (17108, 'De Economist', 15729982, 0.209, 'Q3', 29, 22, 916, 26, 59, '16', '1852-1944, 1946-1950, 1952-2020', 'Economics and Econometrics (Q3)'), (17109, 'Economic Annals-XXI', 17286239, 0.209, 'Q3', 14, 51, 1440, 198, 296, '44', '2013-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (17110, 'EJVES Short Reports', 24056553, 0.209, 'Q3', 5, 13, 98, 68, 105, '3', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q3); Surgery (Q3)'), (17111, 'Enterprise Development and Microfinance', 17551978, 0.209, 'Q3', 17, 13, 265, 40, 52, '3', '2007-2019', 'Development (Q3); Geography, Planning and Development (Q3)'), (17112, 'EuroMediterranean Biomedical Journal', 22797165, 0.209, 'Q4', 10, 40, 1091, 94, 120, '7', '2012-2020', 'Medicine (miscellaneous) (Q4)'), (17113, 'Folia Medica Cracoviensia', 155616, 0.209, 'Q4', 12, 31, 0, 102, 117, '17', '1960, 1964-1982, 1984-2009, 2011-2020', 'Medicine (miscellaneous) (Q4)'), (17114, 'History of European Ideas', 1916599, 0.209, 'Q1', 16, 118, 6529, 49, 190, '3', '1980-2020', 'History (Q1); Philosophy (Q2); Sociology and Political Science (Q3)'), (17115, 'IEEJ Transactions on Fundamentals and Materia', 13475533, 0.209, 'Q3', 21, 112, 1334, 89, 361, '6', '1972-1989, 2003-2020', 'Electrical and Electronic Engineering (Q3)'), (17116, 'International Journal of Conflict and Violenc', 18641385, 0.209, 'Q2', 18, 16, 1206, 33, 33, '5', '2010-2019', 'Law (Q2); Sociology and Political Science (Q3)'), (17117, 'International Journal of Electronic Governanc', 17427517, 0.209, 'Q3', 17, 20, 945, 37, 53, '19', '2007-2013', 'Sociology and Political Science (Q3); Computer Science Applications (Q4); Public Administration (Q4)'), (17118, 'International Journal of Structural Integrity', 17579872, 0.209, 'Q3', 19, 48, 1310, 135, 211, '3', '2010-2020', 'Mechanical Engineering (Q3); Civil and Structural Engineering (Q4); Mechanics of Materials (Q4)'), (17119, 'Investigacion y Educacion en Enfermeria', 22160280, 0.209, 'Q3', 9, 39, 856, 71, 97, '47', '2014-2020', 'Nursing (miscellaneous) (Q3)'), (17120, 'Journal for the Study of Religions and Ideolo', 15830039, 0.209, 'Q1', 12, 40, 1381, 29, 98, '43', '2002-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (17121, 'Journal of British Cinema and Television', 17434521, 0.209, 'Q1', 7, 26, 952, 17, 75, '3', '2011-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q3)'), (17122, 'Journal of Gaming and Virtual Worlds', 1757191, 0.209, 'Q3', 12, 13, 525, 31, 43, '3', '2009-2020', 'Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q4); Human-Computer Interaction (Q4)'), (17123, 'Journal of Internet Services and Information ', 21822077, 0.209, 'Q3', 3, 25, 765, 25, 19, '13', '2019-2020', 'Computer Networks and Communications (Q3); Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Computer Science Applications (Q4); Information Systems (Q4); Software (Q4'), (17124, 'Journal of Optics (India)', 9728821, 0.209, 'Q4', 15, 78, 1885, 188, 223, '4', '1996-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (17125, 'Journal of Population and Social Studies', 24654418, 0.209, 'Q3', 4, 20, 855, 42, 70, '40', '2017-2020', 'Anthropology (Q3); Demography (Q3); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Health (social science) (Q4)'), (17126, 'Journal of the Korean Chemical Society', 10172548, 0.209, 'Q3', 20, 46, 1377, 53, 161, '13', '2005-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (17127, 'Journal of the Society of Leather Technologie', 1440322, 0.209, 'Q3', 24, 41, 830, 63, 132, '3', '1994-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3)'), (17128, 'Listy Cukrovarnicke a Reparske', 12103306, 0.209, 'Q4', 12, 80, 834, 40, 175, '31', '1996-2020', 'Agronomy and Crop Science (Q4)'), (17129, 'Museologica Brunensia', 24645362, 0.209, 'Q2', 2, 19, 468, 5, 9, '31', '2019', 'Museology (Q2)'), (17130, 'Philippine Studies: Historical and Ethnograph', 22441093, 0.209, 'Q1', 9, 24, 1173, 17, 50, '63', '2012-2020', 'History (Q1); Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2); Sociology and Political Science (Q3)'), (17131, 'Political Theology', 1462317, 0.209, 'Q1', 6, 52, 1544, 28, 124, '3', '2013-2020', 'Religious Studies (Q1); Sociology and Political Science (Q3)'), (17132, 'Practical Theology', 1756073, 0.209, 'Q2', 6, 54, 1822, 38, 103, '3', '2013-2020', 'Philosophy (Q2)'), (17133, 'Prisma Social', 19893469, 0.209, 'Q3', 7, 54, 2368, 125, 182, '12', '2013-2020', 'Social Sciences (miscellaneous) (Q3)'), (17134, 'Quarterly Journal of Austrian Economics', 19364806, 0.209, 'Q3', 11, 21, 1067, 19, 53, '2', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17135, 'Revista Austral de Ciencias Sociales', 7173202, 0.209, 'Q3', 6, 31, 1540, 22, 76, '45', '2008-2010, 2012-2020', 'Social Sciences (miscellaneous) (Q3)'), (17136, 'Revista de Estudios Politicos', 487694, 0.209, 'Q3', 10, 39, 1752, 34, 106, '12', '2008-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17137, 'Revista Virtual de Quimica', 19846835, 0.209, 'Q3', 14, 126, 5819, 297, 402, '14', '2011-2014, 2017, 2019-2020', 'Chemistry (miscellaneous) (Q3); Mathematics (miscellaneous) (Q4)'), (17138, 'Society and Animals', 15685306, 0.209, 'Q3', 40, 53, 2616, 79, 115, '16', '1993-2020', 'Sociology and Political Science (Q3); Veterinary (miscellaneous) (Q3)'), (17139, 'Studies in East European Thought', 15730948, 0.209, 'Q2', 9, 33, 1205, 15, 64, '16', '1993-2020', 'Law (Q2); Philosophy (Q2); Social Sciences (miscellaneous) (Q3)'), (17140, 'Sumarski List', 3731332, 0.209, 'Q3', 13, 37, 1352, 67, 118, '58', '1980, 1982-1983, 1985, 2006-2019', 'Forestry (Q3)'), (17141, 'Suxing Gongcheng Xuebao/Journal of Plasticity', 10072012, 0.209, 'Q3', 13, 287, 5233, 387, 703, '1', '2001-2020', 'Chemical Engineering (miscellaneous) (Q3); Polymers and Plastics (Q3); Materials Chemistry (Q4)'), (17142, 'Transactions of Famena', 13331124, 0.209, 'Q4', 14, 25, 644, 88, 103, '58', '2002-2020', 'Mechanics of Materials (Q4)'), (17143, 'Transactions of the Korean Society of Mechani', 12264873, 0.209, 'Q3', 10, 116, 1712, 88, 392, '13', '2007-2020', 'Mechanical Engineering (Q3)'), (17144, 'Tropical Journal of Pharmaceutical Research', 15965996, 0.209, 'Q3', 36, 358, 8244, 735, 1041, '51', '2009-2020', 'Pharmaceutical Science (Q3); Pharmacology (medical) (Q3)'), (17145, 'Unity and Dialogue', 23858907, 0.209, 'Q1', 2, 35, 924, 12, 47, '60', '2018-2019', 'Religious Studies (Q1)'), (17146, 'Vestnik Sankt-Peterburgskogo Universiteta, Fi', 25422278, 0.209, 'Q1', 3, 59, 1257, 28, 163, '10', '2017-2019', 'Religious Studies (Q1); Cultural Studies (Q2); Philosophy (Q2); Sociology and Political Science (Q3)'), (17147, 'Acta Neurologica Taiwanica', 1028768, 0.208, 'Q4', 24, 21, 472, 51, 55, '22', '1997-2020', 'Medicine (miscellaneous) (Q4); Neurology (Q4); Neurology (clinical) (Q4)'), (17148, 'Annuaire Roumain d Anthropologie', 5702259, 0.208, 'Q3', 3, 13, 259, 9, 31, '43', '1972-1980, 1982, 2011-2019', 'Anthropology (Q3)'), (17149, 'Archives of Civil Engineering', 12302945, 0.208, 'Q4', 15, 92, 2200, 162, 183, '17', '1996-2020', 'Civil and Structural Engineering (Q4)'), (17150, 'Archivos Venezolanos de Farmacologia y Terape', 7980264, 0.208, 'Q3', 7, 165, 5405, 134, 269, '94', '2007-2013, 2015-2020', 'Pharmacology (medical) (Q3); Pharmacology (Q4)'), (17151, 'Asian Pacific Journal of Tropical Disease', 22221808, 0.208, 'Q4', 33, 0, 0, 103, 157, '16', '2011-2017', 'Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (17152, 'D-Lib Magazine', 10829873, 0.208, 'Q3', 52, 0, 0, 42, 33, '2', '1996-2017', 'Library and Information Sciences (Q3)'), (17153, 'Herzschrittmachertherapie und Elektrophysiolo', 14351544, 0.208, 'Q3', 15, 68, 1166, 94, 155, '5', '1998-2020', 'Cardiology and Cardiovascular Medicine (Q3); Medicine (miscellaneous) (Q4); Physiology (medical) (Q4)'), (17154, 'International Journal of Environment and Sust', 14787466, 0.208, 'Q3', 18, 25, 1134, 45, 61, '3', '2002-2014, 2019-2020', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (17155, 'International Journal of Swarm Intelligence R', 19479263, 0.208, 'Q4', 4, 20, 801, 42, 43, '2', '2017-2020', 'Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4); Computer Science Applications (Q4)'), (17156, 'Iranian Journal of Toxicology', 22519459, 0.208, 'Q4', 2, 32, 1001, 27, 32, '15', '2019-2020', 'Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)'), (17157, 'Jilin Daxue Xuebao (Gongxueban)/Journal of Ji', 16715497, 0.208, 'Q3', 20, 266, 5047, 413, 765, '1', '2005-2020', 'Multidisciplinary (Q3)'), (17158, 'Journal of Biosystems Engineering', 22341862, 0.208, 'Q3', 3, 42, 1465, 34, 31, '19', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Mechanical Engineering (Q3); Computer Science Applications (Q4)'), (17159, 'Journal of Breast Imaging', 26316110, 0.208, 'Q4', 3, 108, 2349, 8, 10, '2', '2019-2020', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (17160, 'Journal of Control Science and Engineering', 16875249, 0.208, 'Q3', 18, 32, 901, 181, 175, '2', '2007-2020', 'Electrical and Electronic Engineering (Q3); Computer Science Applications (Q4); Modeling and Simulation (Q4)'), (17161, 'Journal of Defense Modeling and Simulation', 15485129, 0.208, 'Q3', 19, 70, 2519, 119, 116, '2', '2004-2020', 'Engineering (miscellaneous) (Q3); Modeling and Simulation (Q4)'), (17162, 'Journal of Feminist Family Therapy', 15404099, 0.208, 'Q3', 18, 24, 1078, 27, 36, '2', '1989-2020', 'Gender Studies (Q3); Applied Psychology (Q4)'), (17163, 'Journal of Groundwater Science and Engineerin', 23057068, 0.208, 'Q4', 4, 37, 1025, 56, 103, '1', '2017-2020', 'Economic Geology (Q4); Water Science and Technology (Q4)'), (17164, 'Journal of Palestine Studies', 377919, 0.208, 'Q3', 29, 0, 0, 35, 76, '2', '1971-2019', 'Geography, Planning and Development (Q3); Sociology and Political Science (Q3)'), (17165, 'Mathematical Reports', 15823067, 0.208, 'Q4', 9, 14, 268, 60, 99, '43', '2012-2019', 'Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)'), (17166, 'Medziagotyra', 13921320, 0.208, 'Q3', 24, 59, 1578, 157, 236, '69', '2008-2020', 'Materials Science (miscellaneous) (Q3)'), (17167, 'Neotropical Biology and Conservation', 22363777, 0.208, 'Q3', 9, 43, 2080, 63, 113, '14', '2012-2020', 'Nature and Landscape Conservation (Q3)'), (17168, 'New Writing', 14790726, 0.208, 'Q1', 7, 66, 1586, 35, 123, '3', '2004-2020', 'Literature and Literary Theory (Q1)'), (17169, 'Nordic Journal of Religion and Society', 18907008, 0.208, 'Q1', 12, 7, 273, 18, 25, '33', '2011-2019', 'Religious Studies (Q1)'), (17170, 'Nuclear and Particle Physics Proceedings', 24056014, 0.208, 'Q4', 80, 30, 769, 171, 470, '16', '2015-2020', 'Nuclear and High Energy Physics (Q4)'), (17171, 'Operative Techniques in Sports Medicine', 10601872, 0.208, 'Q3', 30, 38, 1916, 47, 113, '3', '1993-2020', 'Surgery (Q3); Orthopedics and Sports Medicine (Q4); Sports Science (Q4)'), (17172, 'PASAA', 22870024, 0.208, 'Q2', 2, 20, 989, 14, 19, '40', '2019-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q3)'), (17173, 'Perspektiven der Wirtschaftspolitik', 14656493, 0.208, 'Q3', 15, 41, 1692, 19, 63, '5', '2000-2020', 'Geography, Planning and Development (Q3); Political Science and International Relations (Q3)'), (17174, 'Pertanika Journal of Tropical Agricultural Sc', 15113701, 0.208, 'Q4', 15, 47, 1682, 183, 288, '23', '2007-2020', 'Agronomy and Crop Science (Q4)'), (17175, 'Proceedings of the National Academy of Scienc', 3698203, 0.208, 'Q3', 17, 156, 4272, 298, 232, '4', '2006-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Physics and Astronomy (miscellaneous) (Q4)'), (17176, 'Progress In Electromagnetics Research B', 19376472, 0.208, 'Q3', 47, 40, 1683, 144, 139, '2', '2008-2020', 'Electrical and Electronic Engineering (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (17177, 'Research on Biomedical Engineering', 24464732, 0.208, 'Q4', 15, 59, 2127, 109, 109, '14', '2015-2020', 'Biomedical Engineering (Q4)'), (17178, 'Revista Venezolana de Gerencia', 13159984, 0.208, 'Q3', 10, 204, 6315, 130, 225, '94', '1996-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (17179, 'Russian Journal of Genetics', 10227954, 0.208, 'Q4', 24, 161, 7233, 303, 504, '10', '1996-2020', 'Genetics (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (17180, 'Sozialer Fortschritt', 18655386, 0.208, 'Q3', 8, 42, 1379, 15, 146, '5', '2008-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (17181, 'Theoretical and Experimental Chemistry', 1573935, 0.208, 'Q3', 19, 35, 1822, 103, 131, '2', '1965-2020', 'Chemistry (miscellaneous) (Q3)'), (17182, 'Transactions of Japanese Society for Medical ', 18814379, 0.208, 'Q4', 7, 20, 247, 23, 154, '6', '2009-2011, 2013-2020', 'Biomedical Engineering (Q4)'), (17183, 'Visual Anthropology', 8949468, 0.208, 'Q2', 16, 26, 831, 24, 62, '3', '1970, 1987-2001, 2003-2020', 'Cultural Studies (Q2); Anthropology (Q3)'), (17184, 'Yearbook of International Humanitarian Law', 1574096, 0.208, 'Q2', 16, 0, 0, 4, 8, '3', '1998-2013, 2015-2016, 2018', 'Law (Q2)'), (17185, 'Zairyo/Journal of the Society of Materials Sc', 18807488, 0.208, 'Q3', 24, 146, 2341, 102, 454, '6', '1963-2020', 'Materials Science (miscellaneous) (Q3); Mechanical Engineering (Q3); Condensed Matter Physics (Q4); Mechanics of Materials (Q4)'), (17186, 'Acta Polytechnica', 18052363, 0.207, 'Q3', 15, 58, 1410, 135, 166, '31', '2011-2020', 'Engineering (miscellaneous) (Q3)'), (17187, 'Adansonia', 12808571, 0.207, 'Q4', 14, 17, 440, 14, 36, '8', '2004-2020', 'Plant Science (Q4)'), (17188, 'Annals of the University of Craiova, Physics', 12236039, 0.207, 'Q4', 8, 28, 618, 25, 34, '43', '2009-2019', 'Physics and Astronomy (miscellaneous) (Q4)'), (17189, 'Arboricultural Journal', 21681074, 0.207, 'Q4', 21, 26, 582, 16, 40, '3', '1974-2020', 'Agronomy and Crop Science (Q4)'), (17190, 'Botanikai Kozlemenyek', 68144, 0.207, 'Q4', 4, 14, 711, 18, 36, '2', '2016-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (17191, 'Brazilian Archives of Biology and Technology', 15168913, 0.207, 'Q3', 49, 138, 5343, 261, 304, '14', '1998-2020', 'Multidisciplinary (Q3)'), (17192, 'Bulletin of the Transilvania University of Br', 20652135, 0.207, 'Q3', 6, 25, 635, 42, 85, '43', '2012-2020', 'Forestry (Q3); Agronomy and Crop Science (Q4); Food Science (Q4)'), (17193, 'Canadian Journal of Respiratory Therapy', 23686820, 0.207, 'Q4', 9, 15, 387, 20, 31, '9', '1996-2020', 'Health Professions (miscellaneous) (Q4); Pulmonary and Respiratory Medicine (Q4)'), (17194, 'Case Reports in Neurology', 1662680, 0.207, 'Q4', 15, 110, 1472, 117, 159, '19', '2010-2020', 'Neurology (clinical) (Q4)'), (17195, 'Categories and General Algebraic Structures w', 23455861, 0.207, 'Q4', 4, 12, 277, 19, 38, '15', '2017-2019', 'Analysis (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)'), (17196, 'Doklady Physical Chemistry', 125016, 0.207, 'Q4', 21, 36, 623, 101, 139, '10', '1996-2020', 'Physical and Theoretical Chemistry (Q4)'), (17197, 'Fascism', 22116249, 0.207, 'Q1', 7, 13, 1001, 12, 32, '16', '2012-2019', 'History (Q1); Sociology and Political Science (Q3)'), (17198, 'Formation Emploi', 21070946, 0.207, 'Q3', 6, 55, 1256, 18, 110, '8', '2012-2019', 'Sociology and Political Science (Q3); Organizational Behavior and Human Resource Management (Q4)'), (17199, 'Historia da Historiografia', 19839928, 0.207, 'Q1', 5, 36, 1516, 19, 110, '14', '2013-2019', 'History (Q1)'), (17200, 'International Journal of Communication Networ', 17543916, 0.207, 'Q3', 17, 41, 1785, 198, 138, '19', '2008-2014, 2018, 2020', 'Computer Networks and Communications (Q3)'), (17201, 'International Journal of Human Capital and In', 19473486, 0.207, 'Q3', 13, 15, 911, 58, 57, '2', '2010-2020', 'Computer Science (miscellaneous) (Q3); Management of Technology and Innovation (Q3)'), (17202, 'International Journal of Hydrology Science an', 20427808, 0.207, 'Q3', 10, 37, 1184, 58, 89, '3', '2011-2014, 2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Engineering (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)'), (17203, 'Jisuan Wuli/Chinese Journal of Computational ', 1001246, 0.207, 'Q4', 15, 80, 2049, 138, 256, '1', '2004-2020', 'Applied Mathematics (Q4); Modeling and Simulation (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (17204, 'Journal of Central European Agriculture', 13329049, 0.207, 'Q4', 17, 94, 3424, 172, 259, '58', '2007-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4)'), (17205, 'Journal of Cold War Studies', 15203972, 0.207, 'Q1', 11, 20, 101, 26, 67, '2', '2011-2020', 'History (Q1); Political Science and International Relations (Q3)'), (17206, 'Journal of Ship Production and Design', 21582874, 0.207, 'Q3', 23, 0, 0, 80, 95, '2', '2013-2019', 'Ocean Engineering (Q3); Mechanical Engineering (Q4)'), (17207, 'Journal of Silk', 10017003, 0.207, 'Q1', 4, 132, 2228, 110, 526, '1', '2017-2020', 'History (Q1); Cultural Studies (Q2); Chemistry (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q4)'), (17208, 'Malaysian Family Physician', 1985207, 0.207, 'Q3', 14, 43, 819, 70, 94, '23', '2007-2020', 'Family Practice (Q3); Community and Home Care (Q4)'), (17209, 'Nanotechnologies in Russia', 19950780, 0.207, 'Q3', 22, 78, 2952, 170, 247, '10', '2009-2019', 'Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q3); Condensed Matter Physics (Q4); Nanoscience and Nanotechnology (Q4)'), (17210, 'Open Psychology Journal', 18743501, 0.207, 'Q3', 11, 39, 1876, 73, 74, '16', '2011, 2014-2020', 'Psychology (miscellaneous) (Q3)'), (17211, 'Papers of the British School at Rome', 682462, 0.207, 'Q1', 18, 30, 965, 16, 62, '3', '1902, 1904, 1906-1907, 1910, 1913-1914, 1916-1917, 1920, 1927, 1929, 1932, 1935, 1938-1939, 1948-202', 'History (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (17212, 'Politiche Sociali', 22842098, 0.207, 'Q3', 5, 19, 677, 28, 84, '7', '2014-2020', 'Sociology and Political Science (Q3)'), (17213, 'Psychiatric Annals', 485713, 0.207, 'Q4', 37, 96, 2178, 87, 214, '2', '1974-1983, 1986, 1988-1989, 1992-1993, 1995-2020', 'Psychiatry and Mental Health (Q4)'), (17214, 'Rendiconti dell Istituto di Matematica dell U', 494704, 0.207, 'Q4', 16, 20, 353, 26, 38, '7', '1996-2020', 'Mathematics (miscellaneous) (Q4)'), (17215, 'Sikh Formations: Religion, Culture, Theory', 17448727, 0.207, 'Q1', 11, 32, 1378, 25, 69, '3', '2005-2020', 'Religious Studies (Q1); Cultural Studies (Q2)'), (17216, 'Sport Science', 18403662, 0.207, 'Q3', 19, 73, 2010, 69, 141, '90', '2008-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Orthopedics and Sports Medicine (Q4)'), (17217, 'Studia Ethnologica Croatica', 13303627, 0.207, 'Q2', 3, 14, 640, 12, 25, '58', '2015-2018', 'Cultural Studies (Q2); Anthropology (Q3)'), (17218, 'Teoriya i Praktika Fizicheskoy Kultury', 403601, 0.207, 'Q3', 12, 421, 2639, 274, 1276, '10', '1955, 1961, 2012-2020', 'Education (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q3)'), (17219, 'Turkiye parazitolojii dergisi', 13006320, 0.207, 'Q4', 18, 56, 0, 89, 148, '18', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (17220, 'Universitas Scientiarum', 20271352, 0.207, 'Q3', 10, 19, 841, 54, 54, '47', '2009-2020', 'Multidisciplinary (Q3)'), (17221, 'Voprosy Kognitivnoy Lingvistiki', 18123228, 0.207, 'Q2', 5, 26, 831, 33, 204, '10', '2014-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17222, 'Wildfowl', 9546324, 0.207, 'Q3', 21, 28, 1507, 19, 21, '3', '1981-1982, 1987, 1990-2003, 2005-2018', 'Nature and Landscape Conservation (Q3); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (17223, 'Acta Chirurgiae Orthopaedicae et Traumatologi', 15415, 0.206, 'Q3', 24, 61, 0, 76, 190, '31', '1950-1991, 1993-1994, 1996-2020', 'Surgery (Q3); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)'), (17224, 'Advances in Systems Science and Applications', 10786236, 0.206, 'Q3', 9, 42, 1089, 79, 100, '2', '2009-2020', 'Engineering (miscellaneous) (Q3); Multidisciplinary (Q3)'), (17225, 'Applied Magnetic Resonance', 9379347, 0.206, 'Q4', 44, 123, 5234, 245, 307, '28', '1990-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (17226, 'Art, Design &amp; Communication in Higher Edu', 1474273, 0.206, 'Q2', 7, 16, 561, 35, 43, '3', '2012-2020', 'Arts and Humanities (miscellaneous) (Q2); Communication (Q3); Education (Q3)'), (17227, 'Atti della Societa Toscana di Scienze Natural', 3657450, 0.206, 'Q3', 13, 11, 399, 34, 38, '7', '1995-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (17228, 'Baltic Journal of European Studies', 22280596, 0.206, 'Q1', 6, 9, 445, 50, 72, '5', '2015-2020', 'History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17229, 'Beijing Hangkong Hangtian Daxue Xuebao/Journa', 10015965, 0.206, 'Q4', 23, 262, 5600, 559, 915, '1', '1993-2020', 'Aerospace Engineering (Q4)'), (17230, 'Biochemistry (Moscow) Supplement Series A: Me', 19907478, 0.206, 'Q4', 12, 38, 1966, 91, 122, '10', '2008-2020', 'Biochemistry (Q4); Biophysics (Q4); Cell Biology (Q4)'), (17231, 'Biomedical Instrumentation and Technology', 8998205, 0.206, 'Q3', 28, 108, 752, 58, 259, '2', '1989-2020', 'Computer Networks and Communications (Q3); Biomedical Engineering (Q4)'), (17232, 'Castanea', 87475, 0.206, 'Q4', 26, 25, 867, 31, 62, '2', '1982, 1990-2020', 'Plant Science (Q4)'), (17233, 'Cosmos and History', 18329101, 0.206, 'Q2', 8, 28, 1193, 28, 154, '11', '2011-2020', 'Philosophy (Q2)'), (17234, 'Current Topics in Nutraceutical Research', 15407535, 0.206, 'Q4', 19, 0, 0, 2, 1, '2', '2004-2016, 2018', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)'), (17235, 'Current Trauma Reports', 21986096, 0.206, 'Q3', 7, 26, 1315, 66, 112, '19', '2015-2020', 'Rehabilitation (Q3); Surgery (Q3); Orthopedics and Sports Medicine (Q4)'), (17236, 'Ergonomics in Design', 10648046, 0.206, 'Q3', 21, 32, 619, 72, 45, '2', '1993-2020', 'Engineering (miscellaneous) (Q3); Human Factors and Ergonomics (Q4)'), (17237, 'Global Business and Finance Review', 23841648, 0.206, 'Q3', 6, 26, 1306, 49, 88, '13', '2014-2020', 'Business and International Management (Q3); Finance (Q4)'), (17238, 'Harbin Gongye Daxue Xuebao/Journal of Harbin ', 3676234, 0.206, 'Q3', 23, 303, 7284, 557, 979, '1', '2001-2020', 'Engineering (miscellaneous) (Q3)'), (17239, 'History of Geo- and Space Sciences', 21905010, 0.206, 'Q2', 6, 17, 780, 23, 40, '5', '2011-2020', 'History and Philosophy of Science (Q2); Earth and Planetary Sciences (miscellaneous) (Q3)'), (17240, 'Hongwai Yu Haomibo Xuebao/Journal of Infrared', 10019014, 0.206, 'Q4', 27, 105, 2497, 219, 373, '1', '1991-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (17241, 'IfCoLoG Journal of Logics and their Applicati', 26319829, 0.206, 'Q4', 6, 19, 497, 101, 117, '3', '2018-2020', 'Applied Mathematics (Q4); Logic (Q4)'), (17242, 'Indian Journal of Animal Sciences', 3678318, 0.206, 'Q3', 22, 256, 6452, 288, 800, '4', '1971-1978, 1980-1985, 1987-1988, 1996-2020', 'Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)'), (17243, 'Indonesian Journal of Geography', 249521, 0.206, 'Q3', 7, 37, 1195, 60, 90, '21', '1976-1984, 1986-1987, 1990-1992, 1994-1997, 2015-2020', 'Geography, Planning and Development (Q3)'), (17244, 'Intelligent Decision Technologies', 18724981, 0.206, 'Q3', 13, 49, 1675, 148, 105, '16', '2007-2020', 'Computer Vision and Pattern Recognition (Q3); Artificial Intelligence (Q4); Human-Computer Interaction (Q4); Software (Q4)'), (17245, 'International Journal of Business and Systems', 17512018, 0.206, 'Q3', 15, 25, 1252, 60, 71, '3', '2007-2014, 2020', 'Business and International Management (Q3); Management Information Systems (Q3); Strategy and Management (Q4)'), (17246, 'Intersections (Hungary)', 2416089, 0.206, 'Q2', 9, 33, 1701, 49, 87, '50', '2015-2020', 'Law (Q2); Sociology and Political Science (Q3)'), (17247, 'IWMI Research Report', 10260862, 0.206, 'Q4', 7, 1, 182, 3, 3, '76', '2009-2019', 'Oceanography (Q4); Water Science and Technology (Q4)'), (17248, 'Journal of Behavioral Science', 19064675, 0.206, 'Q4', 3, 16, 883, 32, 33, '40', '2018-2020', 'Applied Psychology (Q4); Social Psychology (Q4)'), (17249, 'Journal of Chemical Engineering of Japan', 219592, 0.206, 'Q3', 49, 95, 2487, 259, 343, '6', '1968-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (17250, 'Journal of Contemporary Central and Eastern E', 25739638, 0.206, 'Q1', 12, 14, 761, 36, 51, '3', '2015-2020', 'History (Q1); Cultural Studies (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (17251, 'Journal of Herbs, Spices and Medicinal Plants', 15403580, 0.206, 'Q3', 27, 36, 1241, 101, 98, '2', '1992-2020', 'Complementary and Alternative Medicine (Q3); Pharmacology (Q4)'), (17252, 'Journal of Hospitality Financial Management', 21522790, 0.206, 'Q4', 11, 13, 423, 11, 25, '3', '1997-2020', 'Finance (Q4); Strategy and Management (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (17253, 'Journal of Intellectual Disability - Diagnosi', 22922598, 0.206, 'Q4', 6, 79, 2065, 33, 71, '9', '2013-2020', 'Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Health (social science) (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (17254, 'Journal of Jewish Education', 15244113, 0.206, 'Q1', 11, 25, 1131, 15, 54, '3', '1929-1932, 1938-1945, 1949-1950, 1952-1956, 1958-1970, 1972-2020', 'Religious Studies (Q1); Cultural Studies (Q2); Education (Q3)'), (17255, 'Journal of Tort Law', 19329148, 0.206, 'Q2', 7, 15, 802, 8, 30, '5', '2010-2020', 'Law (Q2)'), (17256, 'Malaysian Online Journal of Educational Manag', 22894489, 0.206, 'Q3', 3, 15, 893, 27, 65, '23', '2017-2020', 'Education (Q3)'), (17257, 'Optical Memory and Neural Networks (Informati', 19347898, 0.206, 'Q3', 19, 35, 855, 115, 100, '10', '2008-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4)'), (17258, 'Poverty &amp; Public Policy', 19442858, 0.206, 'Q2', 4, 23, 1191, 31, 61, '2', '2016-2020', 'Cultural Studies (Q2); Sociology and Political Science (Q3)'), (17259, 'Revista 180', 7182309, 0.206, 'Q1', 4, 11, 304, 14, 60, '45', '2005-2019', 'Visual Arts and Performing Arts (Q1); Architecture (Q2); Urban Studies (Q3)'), (17260, 'Revista Espanola de Geriatria y Gerontologia', 211139, 0.206, 'Q4', 22, 91, 2090, 163, 255, '12', '1981-1982, 1988-2020', 'Aging (Q4); Geriatrics and Gerontology (Q4); Medicine (miscellaneous) (Q4)'), (17261, 'Revista Mexicana De Ciencias Pecuarias', 20071124, 0.206, 'Q3', 11, 52, 1941, 118, 174, '30', '2010-2020', 'Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)'), (17262, 'Revolutionary Russia', 17437873, 0.206, 'Q1', 7, 13, 596, 11, 38, '3', '1988-2020', 'History (Q1)'), (17263, 'Russian Law Journal', 23123605, 0.206, 'Q2', 5, 23, 292, 28, 67, '10', '2013-2020', 'Law (Q2)'), (17264, 'Scientia Agraria', 19832443, 0.206, 'Q4', 10, 0, 0, 60, 113, '14', '2008-2009, 2011-2018', 'Agronomy and Crop Science (Q4); Plant Science (Q4); Soil Science (Q4)'), (17265, 'Transactions of the Korean Society of Automot', 12256382, 0.206, 'Q3', 5, 104, 1352, 91, 209, '13', '2018-2020', 'Automotive Engineering (Q3)'), (17266, 'Transactions of the Royal Historical Society', 804401, 0.206, 'Q1', 27, 7, 370, 14, 23, '3', '1872-1874, 1876-1878, 1880-1886, 1889, 1891-1937, 1939-1992, 1994-2018', 'History (Q1)'), (17267, 'Zhidkie Kristally i Ikh Prakticheskoe Ispol z', 19913966, 0.206, 'Q4', 6, 39, 1046, 76, 118, '10', '2016-2020', 'Biomaterials (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4); Materials Science (miscellaneous) (Q4); Surfaces, Coatings and Films (Q4)'), (17268, 'Academy of Entrepreneurship Journal', 10879595, 0.205, 'Q3', 12, 103, 2870, 174, 194, '2', '2009-2020', 'Business and International Management (Q3); Economics and Econometrics (Q3); Strategy and Management (Q4)'), (17269, 'Acta Logistica', 13395629, 0.205, 'Q3', 3, 32, 836, 26, 25, '53', '2019-2020', 'Business and International Management (Q3); Industrial and Manufacturing Engineering (Q3); Civil and Structural Engineering (Q4); Transportation (Q4)'), (17270, 'Adaptation', 17550645, 0.205, 'Q1', 8, 19, 896, 16, 57, '3', '2010-2019', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)'), (17271, 'Anasthesiologie und Intensivmedizin', 1705334, 0.205, 'Q3', 21, 87, 3025, 98, 199, '5', '1978-2020', 'Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q3)'), (17272, 'Annales', 3952649, 0.205, 'Q1', 18, 30, 2391, 24, 45, '8', '1968, 1970, 1973-1993, 1995-1997, 1999-2020', 'History (Q1); Social Sciences (miscellaneous) (Q3)'), (17273, 'Applied Physics', 19960948, 0.205, 'Q4', 7, 87, 1275, 43, 201, '10', '2011-2019', 'Physics and Astronomy (miscellaneous) (Q4)'), (17274, 'Australian Journal of French Studies', 49468, 0.205, 'Q1', 6, 21, 452, 13, 65, '11', '1975, 1980, 1999, 2001-2020', 'History (Q1); Literature and Literary Theory (Q1); Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17275, 'Axiomathes', 11221151, 0.205, 'Q2', 20, 68, 2579, 49, 134, '16', '1993-2020', 'Philosophy (Q2); Mathematics (miscellaneous) (Q4)'), (17276, 'Berliner Journal fur Soziologie', 18622593, 0.205, 'Q3', 15, 18, 977, 17, 56, '5', '1992-1993, 1996-1999, 2001-2020', 'Sociology and Political Science (Q3)'), (17277, 'Bulletin of Computational Applied Mathematics', 22448659, 0.205, 'Q4', 4, 0, 0, 23, 23, '94', '2017-2019', 'Applied Mathematics (Q4); Computational Mathematics (Q4)'), (17278, 'Clinical Medicine Insights: Therapeutics', 1179559, 0.205, 'Q3', 9, 0, 0, 18, 28, '41', '2010-2018', 'Pharmaceutical Science (Q3); Medicine (miscellaneous) (Q4); Pharmacology (Q4)'), (17279, 'Concussion', 20563299, 0.205, 'Q4', 3, 15, 505, 15, 10, '3', '2017-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (17280, 'Crime Psychology Review', 23744014, 0.205, 'Q3', 6, 0, 0, 7, 8, '3', '2015-2018', 'Law (Q3); Applied Psychology (Q4)'), (17281, 'Critical Reviews in Biomedical Engineering', 278940, 0.205, 'Q4', 50, 24, 2042, 99, 83, '2', '1981-2020', 'Biomedical Engineering (Q4)'), (17282, 'Der Radiologe', 14322102, 0.205, 'Q4', 32, 151, 3843, 194, 322, '5', '1960-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (17283, 'Dusunen Adam', 10188681, 0.205, 'Q4', 12, 45, 1777, 92, 132, '18', '2011-2020', 'Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (17284, 'Dutch Journal of Applied Linguistics', 22117253, 0.205, 'Q2', 7, 12, 510, 34, 45, '16', '2012-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17285, 'European Competition Journal', 17441056, 0.205, 'Q3', 8, 28, 0, 28, 45, '3', '2005, 2014-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3)'), (17286, 'Evidence-Based Dentistry', 14620049, 0.205, 'Q4', 19, 74, 392, 143, 100, '3', '2004-2020', 'Dentistry (miscellaneous) (Q4)'), (17287, 'Family Medicine and Primary Care Review', 17343402, 0.205, 'Q4', 8, 60, 1719, 121, 193, '17', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (17288, 'Human Geographies', 18436587, 0.205, 'Q3', 11, 18, 780, 29, 39, '43', '2012-2020', 'Geography, Planning and Development (Q3)'), (17289, 'International Journal of Diabetes in Developi', 9733930, 0.205, 'Q3', 26, 116, 3440, 138, 244, '4', '2001-2002, 2006-2020', 'Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4)'), (17290, 'Japanese Economic Review', 13524739, 0.205, 'Q3', 28, 47, 1523, 45, 91, '3', '1995-2020', 'Economics and Econometrics (Q3)'), (17291, 'Journal of Engineering and Applied Science', 11101903, 0.205, 'Q3', 15, 105, 2487, 60, 75, '32', '1996-2020', 'Engineering (miscellaneous) (Q3)'), (17292, 'Journal of Evidence-Based Psychotherapies', 23600853, 0.205, 'Q3', 17, 17, 883, 32, 57, '43', '2014-2020', 'Clinical Psychology (Q3); Experimental and Cognitive Psychology (Q4)'), (17293, 'Journal of Settlements and Spatial Planning', 20693419, 0.205, 'Q3', 6, 23, 868, 33, 38, '43', '2015-2020', 'Geography, Planning and Development (Q3)'), (17294, 'Journal of the Canadian Chiropractic Associat', 17156181, 0.205, 'Q3', 12, 27, 848, 47, 64, '9', '2014-2020', 'Chiropractics (Q3)'), (17295, 'Journal of The Institution of Engineers (Indi', 22502157, 0.205, 'Q2', 10, 75, 1994, 204, 212, '4', '2012-2020', 'Architecture (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4); Mechanical Engineering (Q4)'), (17296, 'Lean Construction Journal', 15551369, 0.205, 'Q4', 22, 6, 166, 16, 17, '2', '2004-2005, 2007-2019', 'Building and Construction (Q4); Civil and Structural Engineering (Q4)'), (17297, 'Main Group Metal Chemistry', 21910219, 0.205, 'Q3', 25, 31, 975, 63, 64, '5', '1988, 1994-2020', 'Chemistry (miscellaneous) (Q3); Metals and Alloys (Q3); Condensed Matter Physics (Q4); Materials Chemistry (Q4)'), (17298, 'Mankind Quarterly', 252344, 0.205, 'Q2', 17, 36, 1470, 34, 120, '2', '1973, 1986, 1992, 1996-2019', 'Arts and Humanities (miscellaneous) (Q2); Anthropology (Q3)'), (17299, 'Mechanika', 13921207, 0.205, 'Q4', 23, 69, 1499, 198, 290, '69', '2005-2020', 'Condensed Matter Physics (Q4)'), (17300, 'Natural Products Journal', 22103163, 0.205, 'Q3', 11, 72, 2932, 82, 104, '16', '2011-2020', 'Complementary and Alternative Medicine (Q3); Drug Discovery (Q4)'), (17301, 'Natural Resources Journal', 280739, 0.205, 'Q3', 26, 5, 0, 22, 36, '2', '1977-2019', 'Environmental Science (miscellaneous) (Q3); Law (Q3)'), (17302, 'Neurophysiology', 15739007, 0.205, 'Q4', 14, 42, 1258, 95, 176, '2', '1969-2020', 'Neuroscience (miscellaneous) (Q4); Physiology (Q4)'), (17303, 'Notfall und Rettungsmedizin', 14360578, 0.205, 'Q3', 21, 139, 2369, 136, 249, '5', '1999-2001, 2003, 2005-2020', 'Emergency Medicine (Q3)'), (17304, 'Pediatric Dental Journal', 18803997, 0.205, 'Q3', 10, 36, 1079, 38, 80, '16', '1997, 2004-2020', 'Dentistry (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (17305, 'Practical Diabetes', 20472900, 0.205, 'Q3', 24, 60, 1098, 62, 135, '2', '2011-2020', 'Internal Medicine (Q3); Endocrinology, Diabetes and Metabolism (Q4)'), (17306, 'Problemy Radiatsiinoi Medytsyny ta Radiobiolo', 23048336, 0.205, 'Q4', 6, 38, 1184, 52, 114, '44', '2013, 2015-2019', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (17307, 'South Asia Economic Journal', 973077, 0.205, 'Q3', 14, 13, 490, 40, 42, '4', '2000-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17308, 'Stapp car crash journal', 15328546, 0.205, 'Q4', 40, 8, 0, 48, 43, '2', '2006-2019', 'Medicine (miscellaneous) (Q4)'), (17309, 'Translational Oncogenomics', 11772727, 0.205, 'Q4', 10, 0, 0, 2, 1, '41', '2006, 2008, 2010, 2012, 2014-2017', 'Cancer Research (Q4); Genetics (Q4); Oncology (Q4)'), (17310, 'Transplant Research and Risk Management', 11791616, 0.205, 'Q4', 6, 5, 110, 10, 15, '41', '2011-2020', 'Statistics, Probability and Uncertainty (Q4); Transplantation (Q4)'), (17311, 'Zeitschrift fur Entwicklungspsychologie und P', 498637, 0.205, 'Q3', 23, 0, 0, 27, 49, '5', '1982, 1996-2019', 'Education (Q3); Developmental and Educational Psychology (Q4)'), (17312, 'Asian Perspective', 2589184, 0.204, 'Q3', 20, 31, 1945, 37, 76, '2', '1974, 2005-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3); Life-span and Life-course Studies (Q4)'), (17313, 'Cauriensia', 18864945, 0.204, 'Q1', 3, 32, 1126, 25, 91, '12', '2012-2019', 'Religious Studies (Q1); Arts and Humanities (miscellaneous) (Q2); Philosophy (Q2); Social Sciences (miscellaneous) (Q3)'), (17314, 'China Petroleum Processing and Petrochemical ', 10086234, 0.204, 'Q4', 11, 0, 0, 74, 131, '1', '1999-2019', 'Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Mechanical Engineering (Q4); Process Chemistry and Technology (Q4)'), (17315, 'Chinese Space Science and Technology', 1000758, 0.204, 'Q3', 12, 79, 1376, 124, 211, '1', '2004-2020', 'Electrical and Electronic Engineering (Q3); Aerospace Engineering (Q4); Materials Science (miscellaneous) (Q4)'), (17316, 'Clinica y Salud', 21740550, 0.204, 'Q3', 10, 22, 817, 41, 61, '12', '2013-2020', 'Clinical Psychology (Q3)'), (17317, 'Gefahrstoffe Reinhaltung der Luft', 9498036, 0.204, 'Q4', 19, 65, 1049, 48, 189, '5', '1996-2018, 2020', 'Health, Toxicology and Mutagenesis (Q4); Management, Monitoring, Policy and Law (Q4); Pollution (Q4)'), (17318, 'Indian journal of medical ethics', 9748466, 0.204, 'Q4', 16, 55, 0, 102, 162, '4', '2004-2020', 'Medicine (miscellaneous) (Q4)'), (17319, 'Ingenieria e Investigacion', 22488723, 0.204, 'Q3', 12, 26, 1113, 71, 96, '47', '2009-2020', 'Engineering (miscellaneous) (Q3); Building and Construction (Q4)'), (17320, 'International Journal of Media and Informatio', 2500106, 0.204, 'Q3', 3, 23, 894, 31, 26, '53', '2016-2020', 'Communication (Q3); Education (Q3); Library and Information Sciences (Q3)'), (17321, 'Iranian Journal of Mathematical Sciences and ', 20089473, 0.204, 'Q4', 10, 27, 523, 37, 77, '15', '2011-2020', 'Mathematics (miscellaneous) (Q4)'), (17322, 'Journal of Datta Meghe Institute of Medical S', 9743901, 0.204, 'Q4', 14, 80, 1397, 203, 216, '4', '2012-2019', 'Medicine (miscellaneous) (Q4)'), (17323, 'Journal of East European Management Studies', 9496181, 0.204, 'Q3', 17, 42, 2797, 72, 91, '5', '1996-2001, 2004-2020', 'Business and International Management (Q3); Industrial Relations (Q3); Management, Monitoring, Policy and Law (Q4); Strategy and Management (Q4)'), (17324, 'Journal of Engineering Education Transformati', 23941707, 0.204, 'Q3', 5, 173, 2835, 84, 192, '4', '2018-2020', 'Development (Q3); Education (Q3); Engineering (miscellaneous) (Q3)'), (17325, 'Journal of Pharmacy and Pharmacognosy Researc', 7194250, 0.204, 'Q3', 9, 51, 1789, 97, 121, '45', '2013-2020', 'Pharmaceutical Science (Q3); Drug Discovery (Q4); Pharmacology (Q4)'), (17326, 'Journal of Real Estate Literature', 9277544, 0.204, 'Q3', 18, 0, 0, 40, 50, '2', '2003-2019', 'Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17327, 'Journal of Research in Applied Linguistics', 23453303, 0.204, 'Q2', 6, 51, 2059, 197, 235, '15', '2017-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17328, 'Journal of Speculative Philosophy', 891625, 0.204, 'Q2', 8, 17, 425, 30, 119, '2', '2010-2020', 'Philosophy (Q2)'), (17329, 'Journal on Efficiency and Responsibility in E', 23362375, 0.204, 'Q3', 7, 17, 1020, 37, 38, '31', '2008-2020', 'Education (Q3)'), (17330, 'Klinicka Onkologie', 862495, 0.204, 'Q4', 13, 97, 2482, 195, 294, '31', '1993-2020', 'Oncology (Q4)'), (17331, 'MEDICC Review', 15273172, 0.204, 'Q4', 21, 69, 994, 58, 79, '2', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (17332, 'Medicine', 18789390, 0.204, 'Q4', 20, 162, 978, 296, 423, '3', '2002-2020', 'Medicine (miscellaneous) (Q4)'), (17333, 'Mediterranean Journal of Nutrition and Metabo', 19737998, 0.204, 'Q4', 18, 33, 1596, 63, 80, '16', '2008-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Food Science (Q4); Nutrition and Dietetics (Q4)'), (17334, 'Nippon Kinzoku Gakkaishi/Journal of the Japan', 18806880, 0.204, 'Q3', 29, 48, 1179, 77, 209, '6', '1937-1944, 1948-1949, 1969-1992, 1994-2020', 'Metals and Alloys (Q3); Condensed Matter Physics (Q4); Materials Chemistry (Q4); Mechanics of Materials (Q4)'), (17335, 'Optica Applicata', 785466, 0.204, 'Q4', 28, 39, 1013, 120, 169, '17', '1988, 1996-2020', 'Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (17336, 'Papers on Social Representations', 18193978, 0.204, 'Q4', 4, 20, 1107, 11, 41, '3', '2016-2020', 'Social Psychology (Q4)'), (17337, 'Plant Science Today', 23481900, 0.204, 'Q3', 6, 85, 3590, 96, 120, '4', '2018-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (17338, 'Potchefstroom Electronic Law Journal', 17273781, 0.204, 'Q3', 6, 37, 1631, 42, 172, '27', '2013-2020', 'Law (Q3); Sociology and Political Science (Q3)'), (17339, 'Progress in Palliative Care', 9699260, 0.204, 'Q3', 16, 34, 861, 33, 53, '3', '2001-2020', 'Nursing (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (17340, 'Radioelektronika, Nanosistemy, Informacionnye', 22183000, 0.204, 'Q3', 5, 56, 1339, 39, 96, '10', '2017-2020', 'Computer Networks and Communications (Q3); Electronic, Optical and Magnetic Materials (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Materials Science (miscellaneous) (Q4)'), (17341, 'Ranshao Kexue Yu Jishu/Journal of Combustion ', 10068740, 0.204, 'Q4', 18, 78, 1641, 114, 245, '1', '1996-2020', 'Condensed Matter Physics (Q4); Physical and Theoretical Chemistry (Q4)'), (17342, 'Reviews of Adhesion and Adhesives', 21680973, 0.204, 'Q3', 13, 12, 1238, 41, 35, '2', '2013-2020', 'Polymers and Plastics (Q3); Ceramics and Composites (Q4); Materials Chemistry (Q4); Surfaces, Coatings and Films (Q4)'), (17343, 'Rev Roumaine des Sciences Techniques-Series E', 354066, 0.204, 'Q3', 15, 43, 907, 135, 215, '43', '1969-1970, 1972, 1974-1989, 2011-2019', 'Electrical and Electronic Engineering (Q3); Energy (miscellaneous) (Q3)'), (17344, 'Scientific Annals of Economics and Business', 25013165, 0.204, 'Q3', 6, 31, 1489, 92, 116, '43', '2016-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17345, 'Sibirica', 13617362, 0.204, 'Q1', 5, 18, 556, 30, 49, '2', '2014-2020', 'History (Q1); Cultural Studies (Q2); Anthropology (Q3); Sociology and Political Science (Q3)'), (17346, 'Studies in Ethnicity and Nationalism', 14738481, 0.204, 'Q3', 8, 20, 727, 34, 48, '3', '2015-2020', 'Sociology and Political Science (Q3)'), (17347, 'STUF - Sprachtypologie und Universalienforsch', 9422919, 0.204, 'Q2', 12, 34, 1727, 17, 43, '5', '2005-2008, 2011-2018, 2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17348, 'Swiss Journal of Sociology', 3793664, 0.204, 'Q3', 4, 26, 1313, 29, 61, '19', '1982, 1986, 1993, 2016-2020', 'Social Sciences (miscellaneous) (Q3)'), (17349, 'Victorian Periodicals Review', 1712526, 0.204, 'Q1', 10, 27, 955, 27, 110, '2', '1979-1980, 1999, 2001, 2009-2020', 'Literature and Literary Theory (Q1); History and Philosophy of Science (Q2)'), (17350, 'Vlakna a Textil', 13350617, 0.204, 'Q3', 8, 76, 1412, 75, 147, '53', '1994-2020', 'Business and International Management (Q3); Chemical Engineering (miscellaneous) (Q3); Polymers and Plastics (Q3); Materials Science (miscellaneous) (Q4)'), (17351, 'Voprosy Filosofii', 428744, 0.204, 'Q2', 8, 157, 1876, 97, 708, '10', '2002-2020', 'Philosophy (Q2)'), (17352, 'Voprosy Ginekologii, Akusherstva i Perinatolo', 24149152, 0.204, 'Q3', 9, 114, 3567, 367, 277, '10', '2016-2020', 'Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (17353, 'Advanced Emergency Nursing Journal', 19314485, 0.203, 'Q3', 17, 51, 560, 91, 132, '2', '2006-2020', 'Emergency Medicine (Q3); Emergency Nursing (Q3)'), (17354, 'Aquaculture Science', 3714217, 0.203, 'Q4', 4, 11, 325, 25, 97, '6', '2016-2020', 'Animal Science and Zoology (Q4); Aquatic Science (Q4)'), (17355, 'Asian Cardiovascular and Thoracic Annals', 2184923, 0.203, 'Q3', 27, 172, 2602, 231, 390, '2', '1994-2020', 'Surgery (Q3); Cardiology and Cardiovascular Medicine (Q4); Medicine (miscellaneous) (Q4); Pulmonary and Respiratory Medicine (Q4)'), (17356, 'Bulletin of the British Ornithologists Club', 71595, 0.203, 'Q4', 11, 39, 1430, 38, 104, '3', '2009-2020', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (17357, 'Bulletin of the Transilvania University of Br', 20652151, 0.203, 'Q4', 5, 54, 944, 38, 91, '43', '2011, 2013-2020', 'Mathematics (miscellaneous) (Q4)'), (17358, 'Cahiers de Linguistique Asie Orientale', 1533320, 0.203, 'Q2', 8, 16, 669, 9, 18, '16', '2002-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17359, 'Caldasia', 3665232, 0.203, 'Q3', 14, 39, 1143, 63, 102, '47', '1981, 1983-1984, 1986, 1989, 1992-1993, 1995-1997, 2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (17360, 'Estudios de Economia', 7185286, 0.203, 'Q3', 12, 10, 519, 20, 32, '45', '1977-1979, 1989, 2008-2020', 'Economics and Econometrics (Q3)'), (17361, 'FP essentials', 21593000, 0.203, 'Q4', 10, 60, 0, 105, 154, '2', '2012-2020', 'Medicine (miscellaneous) (Q4)'), (17362, 'Geotechnik', 1726145, 0.203, 'Q4', 12, 37, 470, 15, 52, '2', '1982, 1985, 1989, 1997-2020', 'Geotechnical Engineering and Engineering Geology (Q4)'), (17363, 'Great Lakes Entomologist', 900222, 0.203, 'Q4', 19, 19, 694, 16, 25, '2', '1993-2003, 2005-2015, 2018-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (17364, 'Health Risk Analysis', 23081163, 0.203, 'Q4', 3, 60, 1712, 77, 197, '10', '2018-2019', 'Health Informatics (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (17365, 'Historical Research', 14682281, 0.203, 'Q1', 21, 37, 4272, 32, 121, '3', '1923-2020', 'History (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)'), (17366, 'Interdisciplinary Studies of Literature', 25204920, 0.203, 'Q1', 1, 38, 604, 6, 149, '1', '2017-2019', 'Literature and Literary Theory (Q1)'), (17367, 'International Journal of Agricultural Managem', 20473710, 0.203, 'Q3', 4, 22, 503, 32, 54, '3', '2017-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q3); Geography, Planning and Development (Q3); Economics and Econometrics (Q4); Manageme'), (17368, 'International Journal of Speech Technology', 13812416, 0.203, 'Q2', 29, 106, 3706, 452, 263, '16', '1995, 1997-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Computer Vision and Pattern Recognition (Q4); Human-Computer Interaction (Q4); Software (Q4)'), (17369, 'International Journal of Veterinary Science', 23043075, 0.203, 'Q3', 5, 110, 3477, 123, 149, '51', '2017-2020', 'Veterinary (miscellaneous) (Q3)'), (17370, 'International Review of Mechanical Engineerin', 19708734, 0.203, 'Q4', 23, 83, 2732, 309, 330, '7', '2009-2020', 'Mechanical Engineering (Q4)'), (17371, 'Iranian Journal of Veterinary Science and Tec', 24236306, 0.203, 'Q3', 1, 22, 698, 8, 17, '15', '2019', 'Veterinary (miscellaneous) (Q3)'), (17372, 'Israel Journal of Ecology and Evolution', 22244662, 0.203, 'Q4', 31, 28, 1657, 21, 39, '3', '2006-2020', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (17373, 'Jewish Social Studies', 216704, 0.203, 'Q1', 3, 24, 1406, 22, 55, '2', '1975, 1978, 1980-1981, 1983, 2017-2020', 'History (Q1); Religious Studies (Q1); Cultural Studies (Q2); Anthropology (Q3)'), (17374, 'Journal of Applied Spectroscopy', 219037, 0.203, 'Q4', 25, 174, 4362, 383, 541, '5', '1965-1999, 2003-2020', 'Condensed Matter Physics (Q4); Spectroscopy (Q4)'), (17375, 'Journal of Ceramic Processing Research', 12299162, 0.203, 'Q4', 30, 115, 3645, 229, 355, '13', '2000-2020', 'Ceramics and Composites (Q4)'), (17376, 'Journal of Philosophical Research', 10538364, 0.203, 'Q2', 13, 14, 457, 20, 61, '2', '2002-2019', 'Philosophy (Q2)'), (17377, 'Journal of Research in Education Sciences', 2073753, 0.203, 'Q3', 8, 36, 1923, 48, 99, '22', '2009-2020', 'Education (Q3)'), (17378, 'Korean Journal of Food Science and Technology', 3676293, 0.203, 'Q4', 19, 98, 3319, 116, 278, '13', '2007-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Food Science (Q4)'), (17379, 'Korean journal of gastroenterology = Taehan S', 15989992, 0.203, 'Q4', 25, 87, 0, 164, 263, '13', '2003-2020', 'Medicine (miscellaneous) (Q4)'), (17380, 'Maastricht Journal of European and Comparativ', 1023263, 0.203, 'Q3', 17, 47, 0, 73, 120, '3', '1994-2020', 'Law (Q3); Political Science and International Relations (Q3)'), (17381, 'Nutricion Clinica y Dietetica Hospitalaria', 2116057, 0.203, 'Q4', 11, 41, 933, 69, 254, '12', '1981-1982, 2002-2019', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)'), (17382, 'Open Agriculture Journal', 18743315, 0.203, 'Q4', 9, 30, 1853, 77, 56, '16', '2012-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Soil Science (Q4)'), (17383, 'Papers', 2102862, 0.203, 'Q3', 10, 18, 929, 68, 91, '12', '2011-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (17384, 'Povijesni Prilozi', 3519767, 0.203, 'Q1', 3, 15, 721, 7, 52, '58', '1982, 2001-2002, 2014-2019', 'History (Q1)'), (17385, 'Qiche Gongcheng/Automotive Engineering', 1000680, 0.203, 'Q3', 15, 236, 4072, 353, 640, '1', '2001-2003, 2010-2020', 'Automotive Engineering (Q3)'), (17386, 'SAE International Journal of Materials and Ma', 19463987, 0.203, 'Q3', 20, 25, 713, 101, 129, '2', '2002, 2009-2020', 'Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (17387, 'Taiwan Journal of Forest Science', 10264469, 0.203, 'Q3', 15, 11, 361, 13, 73, '22', '1998-2019', 'Forestry (Q3)'), (17388, 'Transylvanian Review of Administrative Scienc', 18422845, 0.203, 'Q4', 16, 32, 1444, 78, 90, '43', '2008-2020', 'Public Administration (Q4); Strategy and Management (Q4)'), (17389, 'Vostok (Oriens)', 8691908, 0.203, 'Q1', 2, 97, 2467, 15, 91, '10', '1999, 2001, 2019-2020', 'History (Q1); Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Anthropology (Q3); Political Science and International Relations (Q3)'), (17390, 'Word', 437956, 0.203, 'Q2', 9, 16, 733, 12, 37, '2', '1998-2009, 2015-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17391, 'Zeitschrift fur Psychosomatische Medizin und ', 14383608, 0.203, 'Q3', 28, 44, 697, 58, 127, '5', '1996-2020', 'Clinical Psychology (Q3); Applied Psychology (Q4); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (17392, 'Acta Silvatica et Lignaria Hungarica', 1787064, 0.202, 'Q3', 11, 3, 103, 21, 24, '50', '2009-2020', 'Forestry (Q3)'), (17393, 'Anuario do Instituto de Geociencias', 19823908, 0.202, 'Q3', 12, 161, 5030, 184, 449, '14', '2004-2020', 'Development (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Economic Geology (Q4); Geology (Q4)'), (17394, 'Australian Journal of Telecommunications and ', 22031693, 0.202, 'Q2', 6, 31, 954, 64, 93, '11', '2015-2020', 'Media Technology (Q2); Communication (Q3); Computer Networks and Communications (Q3); Management of Technology and Innovation (Q3); Computer Science Applications (Q4)'), (17395, 'Composites: Mechanics, Computations, Applicat', 21522057, 0.202, 'Q4', 11, 16, 495, 54, 58, '2', '2010-2020', 'Ceramics and Composites (Q4); Mechanics of Materials (Q4)'), (17396, 'Dynamics of Asymmetric Conflict: Pathways tow', 17467594, 0.202, 'Q2', 11, 19, 1060, 43, 35, '3', '2010-2020', 'Cultural Studies (Q2); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Social Psychology (Q4)'), (17397, 'Environment and Natural Resources Journal', 16865456, 0.202, 'Q3', 5, 39, 1567, 57, 65, '40', '2017-2020', 'Environmental Science (miscellaneous) (Q3)'), (17398, 'European Journal of Post-Classical Archaeolog', 20397895, 0.202, 'Q2', 2, 21, 1114, 9, 30, '7', '2017-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (17399, 'Flora Montiberica', 11385952, 0.202, 'Q4', 7, 38, 1195, 41, 144, '12', '2014-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (17400, 'Geoscience Research Reports', 5148057, 0.202, 'Q4', 4, 12, 208, 13, 84, '31', '2014, 2016-2019', 'Geochemistry and Petrology (Q4); Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)'), (17401, 'Gesundheitsokonomie und Qualitatsmanagement', 14322625, 0.202, 'Q4', 13, 106, 828, 31, 94, '5', '1999-2020', 'Health Policy (Q4)'), (17402, 'Hospital Topics', 185868, 0.202, 'Q4', 21, 16, 0, 51, 53, '2', '1946-1949, 1965-2020', 'Medicine (miscellaneous) (Q4)'), (17403, 'Hsi-An Chiao Tung Ta Hsueh/Journal of Xi an J', 253987, 0.202, 'Q3', 25, 270, 6002, 493, 828, '1', '1986, 1990-1995, 1998-2020', 'Engineering (miscellaneous) (Q3); Clinical Biochemistry (Q4); Medicine (miscellaneous) (Q4)'), (17404, 'IEEE Annals of the History of Computing', 10586180, 0.202, 'Q2', 23, 39, 1276, 26, 83, '2', '1992-2020', 'History and Philosophy of Science (Q2); Computer Science (miscellaneous) (Q3)'), (17405, 'Informatsionno-Upravliaiushchie Sistemy', 25418610, 0.202, 'Q4', 6, 46, 1271, 91, 132, '10', '2018-2020', 'Computer Science Applications (Q4); Control and Optimization (Q4); Control and Systems Engineering (Q4); Human-Computer Interaction (Q4); Information Systems (Q4); Software (Q4)'), (17406, 'Interdisciplinary Neurosurgery: Advanced Tech', 22147519, 0.202, 'Q4', 8, 327, 6179, 137, 388, '16', '2014-2021', 'Neurology (clinical) (Q4); Surgery (Q4)'), (17407, 'International Journal of Cultural Property', 9407391, 0.202, 'Q1', 21, 18, 835, 37, 64, '3', '1992-2002, 2005-2020', 'History (Q1); Conservation (Q2); Cultural Studies (Q2); Museology (Q2); Anthropology (Q3)'), (17408, 'International Journal of Entrepreneurship', 19394675, 0.202, 'Q3', 12, 83, 2570, 187, 182, '2', '2009-2020', 'Business and International Management (Q3); Economics and Econometrics (Q4); Strategy and Management (Q4)'), (17409, 'International Journal of Safety and Security ', 2041904, 0.202, 'Q3', 10, 96, 2748, 122, 130, '3', '2011-2020', 'Environmental Science (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3)'), (17410, 'Italian Journal of Planning Practice', 2239267, 0.202, 'Q2', 6, 4, 145, 23, 18, '7', '2011-2020', 'Architecture (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3)'), (17411, 'Journal of Acupuncture and Tuina Science', 19930399, 0.202, 'Q3', 7, 69, 1755, 55, 213, '1', '2003, 2007-2020', 'Complementary and Alternative Medicine (Q3)'), (17412, 'Journal of Engineering and Technological Scie', 23375779, 0.202, 'Q3', 14, 60, 1672, 146, 162, '21', '2013-2020', 'Engineering (miscellaneous) (Q3)'), (17413, 'Journal of Psychology and Theology', 916471, 0.202, 'Q1', 34, 37, 1590, 40, 70, '2', '1990, 1992, 1996-2020', 'Religious Studies (Q1); Psychology (miscellaneous) (Q4)'), (17414, 'Journal of Research of the National Institute', 1044677, 0.202, 'Q3', 59, 31, 979, 72, 55, '2', '1986, 1989-2020', 'Engineering (miscellaneous) (Q3)'), (17415, 'Journal of Sociology and Social Welfare', 1915096, 0.202, 'Q3', 26, 27, 1588, 55, 94, '2', '1977, 1995, 2005-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (17416, 'Large Animal Review', 11244593, 0.202, 'Q3', 8, 20, 569, 44, 99, '7', '2008-2020', 'Veterinary (miscellaneous) (Q3)'), (17417, 'London Journal of Primary Care', 17571472, 0.202, 'Q4', 11, 0, 0, 59, 43, '3', '2008-2012, 2014-2018', 'Public Health, Environmental and Occupational Health (Q4)'), (17418, 'Phyton', 319457, 0.202, 'Q4', 17, 85, 4338, 80, 114, '46', '1984, 1996-2000, 2006-2020', 'Biochemistry (Q4); Physiology (Q4); Plant Science (Q4)'), (17419, 'Rassegna Italiana di Criminologia', 11211717, 0.202, 'Q3', 8, 24, 1369, 36, 101, '7', '2013-2020', 'Law (Q3)'), (17420, 'Rethinking Ecology', 25349260, 0.202, 'Q4', 2, 1, 169, 19, 9, '61', '2019', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (17421, 'Revista Colombiana de Educacion', 23230134, 0.202, 'Q3', 3, 45, 1971, 30, 62, '47', '2018-2020', 'Education (Q3)'), (17422, 'Revista de Urbanismo', 7175051, 0.202, 'Q3', 3, 14, 574, 17, 41, '45', '2018-2019', 'Geography, Planning and Development (Q3); Nature and Landscape Conservation (Q3); Urban Studies (Q3)'), (17423, 'Revista Hispanoamericana de Hernia', 22552677, 0.202, 'Q3', 5, 21, 314, 17, 77, '12', '2013-2020', 'Surgery (Q3); Gastroenterology (Q4)'), (17424, 'Revista MVZ Cordoba', 1220268, 0.202, 'Q3', 11, 37, 956, 69, 102, '47', '2008-2020', 'Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4); Aquatic Science (Q4)'), (17425, 'Russian Journal of Biomechanics', 2410065, 0.202, 'Q4', 5, 43, 868, 51, 123, '10', '2016-2020', 'Biomaterials (Q4); Biophysics (Q4)'), (17426, 'Veterinary Practitioner', 9724036, 0.202, 'Q3', 5, 43, 836, 34, 300, '4', '2008-2019', 'Veterinary (miscellaneous) (Q3)'), (17427, 'Acta Biologica Cracoviensia Series Botanica', 18980295, 0.201, 'Q4', 30, 8, 320, 41, 50, '17', '1996-2020', 'Plant Science (Q4)'), (17428, 'African Studies Quarterly', 10932658, 0.201, 'Q3', 18, 26, 1316, 18, 30, '2', '2002-2019', 'Social Sciences (miscellaneous) (Q3)'), (17429, 'Anadolu Psikiyatri Dergisi', 13026631, 0.201, 'Q4', 17, 85, 2650, 135, 338, '18', '2006-2020', 'Psychiatric Mental Health (Q4); Psychiatry and Mental Health (Q4)'), (17430, 'Asian Journal of Agriculture and Rural Develo', 22244433, 0.201, 'Q3', 2, 63, 2068, 18, 24, '2', '2019-2020', 'Geography, Planning and Development (Q3); Agronomy and Crop Science (Q4); Plant Science (Q4); Soil Science (Q4)'), (17431, 'Asian Journal of Social Science', 15684849, 0.201, 'Q3', 20, 24, 1383, 54, 82, '16', '1973-1995, 2000-2020', 'Social Sciences (miscellaneous) (Q3)'), (17432, 'Bulletin of the History of Medicine', 10863176, 0.201, 'Q1', 31, 23, 43, 49, 77, '2', '1945-2020', 'History (Q1); Nursing (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (17433, 'Chirurg', 94722, 0.201, 'Q4', 47, 215, 4116, 308, 468, '5', '1946-2020', 'Surgery (Q4)'), (17434, 'Current Physical Medicine and Rehabilitation ', 21674833, 0.201, 'Q3', 14, 51, 3915, 71, 105, '2', '2013-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q3); Rehabilitation (Q3); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)'), (17435, 'Der Urologe', 14330563, 0.201, 'Q3', 25, 304, 4610, 252, 479, '5', '1962-2020', 'Urology (Q3)'), (17436, 'Enlightening Tourism', 2174548, 0.201, 'Q4', 2, 13, 827, 19, 13, '12', '2018-2020', 'Tourism, Leisure and Hospitality Management (Q4)'), (17437, 'Estudios Geograficos', 141496, 0.201, 'Q3', 11, 23, 1097, 36, 69, '12', '1979-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (17438, 'Ethnohistory', 15275477, 0.201, 'Q1', 26, 25, 1456, 30, 73, '2', '1970, 1975-1977, 1981, 1983-1984, 1986, 1996-2020', 'History (Q1); Anthropology (Q3)'), (17439, 'Field Actions Science Report', 1867139, 0.201, 'Q3', 8, 44, 59, 60, 69, '8', '2012-2020', 'Development (Q3); Education (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3); Health (social science) (Q4)'), (17440, 'Harvard Civil Rights-Civil Liberties Law Revi', 178039, 0.201, 'Q3', 26, 0, 0, 31, 40, '2', '1973, 1975, 1981-1982, 1984, 1988, 1991-1992, 1996-2011, 2013-2019', 'Law (Q3)'), (17441, 'Hudebni Veda', 187003, 0.201, 'Q2', 4, 17, 1068, 5, 39, '31', '2002-2020', 'Music (Q2)'), (17442, 'Indian Journal of Pharmaceutical Education an', 195464, 0.201, 'Q3', 19, 209, 6607, 389, 475, '4', '2008-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (17443, 'Indian Journal of Pure and Applied Physics', 9751041, 0.201, 'Q3', 39, 72, 2099, 261, 294, '4', '1969, 1971, 1974-1990, 1993-2020', 'Multidisciplinary (Q3); Physics and Astronomy (miscellaneous) (Q4)'), (17444, 'Journal of Chemistry and Technologies', 26632934, 0.201, 'Q3', 2, 19, 632, 15, 42, '44', '2018-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q3)'), (17445, 'Journal of Child Custody', 15379418, 0.201, 'Q3', 19, 0, 0, 48, 60, '2', '2004-2019', 'Law (Q3); Sociology and Political Science (Q3); Health (social science) (Q4); Life-span and Life-course Studies (Q4)'), (17446, 'Journal of Chiropractic Humanities', 15563499, 0.201, 'Q3', 11, 7, 590, 14, 23, '2', '1993-1999, 2001, 2004-2019', 'Complementary and Alternative Medicine (Q3); Chiropractics (Q4)'), (17447, 'Journal of Computer Security', 926227, 0.201, 'Q3', 56, 16, 888, 89, 68, '16', '1992-2020', 'Computer Networks and Communications (Q3); Safety, Risk, Reliability and Quality (Q3); Hardware and Architecture (Q4); Software (Q4)'), (17448, 'Journal of Fisheries of China', 10000615, 0.201, 'Q4', 6, 72, 2523, 185, 570, '1', '2016-2020', 'Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Management, Monitoring, Policy and Law (Q4)'), (17449, 'Journal of Infant, Child, and Adolescent Psyc', 19409214, 0.201, 'Q4', 13, 37, 1380, 43, 91, '2', '2000, 2002, 2004-2009, 2014-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (17450, 'Journal of the Korean Society for Precision E', 12259071, 0.201, 'Q3', 4, 114, 1796, 107, 430, '13', '2017-2020', 'Industrial and Manufacturing Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Mechanical Engineering (Q4)'), (17451, 'Journal of the Korean Society for Railway', 17386225, 0.201, 'Q3', 4, 120, 1728, 79, 306, '13', '2017-2020', 'Automotive Engineering (Q3); Geography, Planning and Development (Q3); Civil and Structural Engineering (Q4); Energy Engineering and Power Technology (Q4); Strategy and Management (Q4); Transportation'), (17452, 'Journal of Urban Regeneration and Renewal', 17529638, 0.201, 'Q3', 11, 37, 1270, 46, 93, '3', '2011-2020', 'Urban Studies (Q3)'), (17453, 'LC-GC North America', 15275949, 0.201, 'Q4', 36, 85, 895, 66, 142, '2', '1999-2020', 'Analytical Chemistry (Q4)'), (17454, 'Malaysian Journal of Mathematical Sciences', 18238343, 0.201, 'Q4', 13, 47, 1024, 88, 143, '23', '2007-2020', 'Mathematics (miscellaneous) (Q4)'), (17455, 'Margin', 9738029, 0.201, 'Q3', 11, 19, 748, 43, 57, '3', '2007-2020', 'Development (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17456, 'Molekulyarnaya Biologiya', 268984, 0.201, 'Q4', 23, 94, 0, 152, 308, '10', '1973-2020', 'Medicine (miscellaneous) (Q4); Molecular Biology (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (17457, 'Noise Control Engineering Journal', 7362501, 0.201, 'Q3', 30, 41, 999, 101, 135, '2', '1979-2020', 'Automotive Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Acoustics and Ultrasonics (Q4); Aerospace Engineering (Q4); Building and Construction (Q4); Mechanical Engineering (Q4); Pub'), (17458, 'Palestine Exploration Quarterly', 17431301, 0.201, 'Q1', 13, 30, 1663, 14, 48, '3', '1865, 1869, 1871-1995, 2004-2020', 'History (Q1); Religious Studies (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (17459, 'Pedagogische Studien', 1650645, 0.201, 'Q3', 8, 0, 0, 23, 73, '16', '2009-2019', 'Education (Q3)'), (17460, 'Pharmacia', 4280296, 0.201, 'Q2', 9, 46, 1247, 89, 85, '61', '1945, 1954-1955, 1987-1991, 1997-2020', 'Pharmacy (Q2); Pharmaceutical Science (Q3); Pharmacology (medical) (Q3)'), (17461, 'Revista Brasileira de Ensino de Fisica', 1024744, 0.201, 'Q3', 11, 151, 3874, 84, 228, '14', '2006-2019', 'Education (Q3); Physics and Astronomy (miscellaneous) (Q4)'), (17462, 'Revista Chapingo, Serie Ciencias Forestales y', 20073828, 0.201, 'Q3', 10, 20, 862, 63, 97, '30', '2008, 2012-2019', 'Forestry (Q3); Ecology (Q4)'), (17463, 'Revista Escola de Minas', 3704467, 0.201, 'Q4', 14, 50, 935, 120, 216, '14', '2006-2020', 'Economic Geology (Q4); Geochemistry and Petrology (Q4); Geology (Q4); Materials Science (miscellaneous) (Q4); Waste Management and Disposal (Q4)'), (17464, 'Revue d Ecologie (La Terre et la Vie)', 2497395, 0.201, 'Q4', 26, 0, 0, 40, 63, '8', '1990-2014, 2016-2018', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (17465, 'Seminars in Arthroplasty', 10454527, 0.201, 'Q4', 13, 72, 2358, 34, 108, '3', '1990-1995, 1997, 2001-2018, 2020', 'Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (17466, 'SKASE Journal of Theoretical Linguistics', 1336782, 0.201, 'Q2', 2, 29, 969, 15, 54, '53', '2017-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17467, 'Social History of Medicine', 951631, 0.201, 'Q1', 33, 60, 5875, 83, 107, '3', '1988-2020', 'History (Q1); Medicine (miscellaneous) (Q4)'), (17468, 'Studies in Economics and Finance', 10867376, 0.201, 'Q3', 20, 36, 2396, 106, 122, '3', '1977-1987, 1989-1991, 1993-1998, 2002-2004, 2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Economics and Econometrics (Q4); Finance (Q4)'), (17469, 'Tanzania Journal of Health Research', 18216404, 0.201, 'Q4', 25, 0, 0, 58, 93, '83', '2008-2019', 'Medicine (miscellaneous) (Q4)'), (17470, 'Transactions on Electrical and Electronic Mat', 20927592, 0.201, 'Q3', 18, 101, 3250, 256, 215, '13', '2011-2020', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4)'), (17471, 'Vestnik Archeologii, Antropologii i Etnografi', 18117465, 0.201, 'Q2', 1, 72, 1893, 10, 62, '10', '2019-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2); Anthropology (Q3)'), (17472, 'Visual Communication Quarterly', 15551407, 0.201, 'Q3', 16, 24, 608, 32, 47, '3', '1994-2020', 'Communication (Q3); Education (Q3)'), (17473, 'Zhejiang Daxue Xuebao (Gongxue Ban)/Journal o', 1008973, 0.201, 'Q3', 25, 281, 6573, 503, 866, '1', '1987, 2001-2020', 'Engineering (miscellaneous) (Q3)'), (17474, 'Academy of Accounting and Financial Studies J', 15282635, 0.2, 'Q4', 12, 119, 3918, 314, 353, '2', '2009-2020', 'Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (17475, 'Acta Seismologica Sinica', 2533782, 0.2, 'Q4', 26, 64, 2510, 78, 219, '1', '1979-1981, 1986-1988, 1996, 2000-2020', 'Geophysics (Q4)'), (17476, 'African Renaissance', 25165305, 0.2, 'Q3', 2, 47, 1883, 23, 148, '3', '2018-2020', 'Development (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Public Administration (Q4)'), (17477, 'Bioagro', 13163361, 0.2, 'Q3', 8, 25, 675, 42, 62, '94', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (17478, 'Biomedical Human Kinetics', 20802234, 0.2, 'Q4', 4, 30, 1105, 51, 77, '17', '2016-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (17479, 'Case Reports in Medicine', 16879627, 0.2, 'Q4', 20, 113, 2015, 230, 332, '2', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (17480, 'Conservation Science in Cultural Heritage', 19739494, 0.2, 'Q2', 5, 1, 46, 20, 29, '7', '2014-2018, 2020', 'Conservation (Q2); Museology (Q2)'), (17481, 'Cuadernos de Geografia', 121215, 0.2, 'Q3', 3, 32, 1369, 25, 47, '47', '2018-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3)'), (17482, 'Engineering and Applied Science Research', 25396218, 0.2, 'Q3', 5, 48, 1662, 86, 122, '40', '2017-2020', 'Engineering (miscellaneous) (Q3); Computer Science Applications (Q4)'), (17483, 'Frequenz', 21916349, 0.2, 'Q3', 24, 48, 1176, 141, 189, '5', '1949-2020', 'Electrical and Electronic Engineering (Q3)'), (17484, 'High Temperatures - High Pressures', 181544, 0.2, 'Q4', 29, 20, 586, 42, 96, '2', '1969-1970, 1972-1992, 1994, 1997-2003, 2008-2020', 'Condensed Matter Physics (Q4); Mechanics of Materials (Q4); Physical and Theoretical Chemistry (Q4)'), (17485, 'Historia Critica', 1211617, 0.2, 'Q1', 8, 23, 1056, 45, 81, '47', '2002-2020', 'History (Q1); Cultural Studies (Q2); Geography, Planning and Development (Q3); Social Sciences (miscellaneous) (Q3)'), (17486, 'Icono14', 16978293, 0.2, 'Q3', 4, 54, 2016, 12, 21, '12', '2018-2020', 'Communication (Q3)'), (17487, 'IEICE Transactions on Information and Systems', 17451361, 0.2, 'Q3', 49, 319, 7789, 929, 1084, '6', '1993-2020', 'Electrical and Electronic Engineering (Q3); Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Hardware and Architecture (Q4); Software (Q4)'), (17488, 'Ikonomicheski Izsledvania', 2053292, 0.2, 'Q3', 6, 37, 1432, 40, 175, '61', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17489, 'Industrielle Beziehungen', 18620035, 0.2, 'Q3', 10, 22, 1348, 23, 58, '5', '2008-2020', 'Business and International Management (Q3); Industrial Relations (Q3); Organizational Behavior and Human Resource Management (Q4)'), (17490, 'International Journal of Web Based Communitie', 17418216, 0.2, 'Q3', 23, 23, 1201, 68, 68, '3', '2004-2014, 2020', 'Communication (Q3); Computer Networks and Communications (Q3); Education (Q4); Software (Q4)'), (17491, 'Iraqi Geological Journal', 24146064, 0.2, 'Q4', 5, 92, 2825, 38, 49, '48', '2016-2020', 'Geology (Q4)'), (17492, 'Journal of Biorheology', 18670474, 0.2, 'Q4', 9, 12, 315, 14, 30, '6', '2009-2011, 2013-2020', 'Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (17493, 'Journal of the Chilean Chemical Society', 7179324, 0.2, 'Q3', 31, 62, 2989, 207, 234, '45', '2003-2020', 'Chemistry (miscellaneous) (Q3)'), (17494, 'Journal of Theoretical and Applied Mechanics ', 8616663, 0.2, 'Q4', 8, 28, 681, 77, 74, '5', '2016-2019', 'Computational Mechanics (Q4); Mechanical Engineering (Q4); Modeling and Simulation (Q4)'), (17495, 'Khimiya Rastitel nogo Syr ya', 10295143, 0.2, 'Q4', 6, 153, 4347, 154, 374, '10', '2017-2018', 'Biomaterials (Q4); Organic Chemistry (Q4); Plant Science (Q4)'), (17496, 'Language Related Research', 23223081, 0.2, 'Q2', 4, 82, 2512, 43, 200, '15', '2012-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17497, 'Lasers in Engineering', 1029029, 0.2, 'Q3', 16, 64, 1557, 129, 234, '2', '1996-2020', 'Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4)'), (17498, 'Logforum', 1734459, 0.2, 'Q3', 4, 44, 1415, 54, 42, '17', '2019-2020', 'Information Systems and Management (Q3); Management Information Systems (Q3); Management Science and Operations Research (Q4)'), (17499, 'Modernism/Modernity', 10716068, 0.2, 'Q1', 20, 32, 1897, 31, 98, '2', '1999, 2002-2020', 'History (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Music (Q2); Sociology and Political Science (Q3)'), (17500, 'Motriz. Revista de Educacao Fisica', 14159805, 0.2, 'Q4', 14, 64, 2292, 92, 149, '14', '2010-2020', 'Health (social science) (Q4); Medicine (miscellaneous) (Q4); Sports Science (Q4)'), (17501, 'Names', 277738, 0.2, 'Q2', 12, 24, 857, 18, 61, '3', '1953-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Demography (Q3)'), (17502, 'National Medical Journal of India', 970258, 0.2, 'Q4', 41, 36, 305, 126, 200, '4', '1988-2019', 'Medicine (miscellaneous) (Q4)'), (17503, 'Open Chemical Engineering Journal', 18741231, 0.2, 'Q3', 10, 10, 375, 31, 23, '52', '2009-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (17504, 'Oriental Studies', 26191008, 0.2, 'Q1', 4, 73, 1720, 44, 281, '10', '2018-2019', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Anthropology (Q3)'), (17505, 'Pacific Rim International Journal of Nursing ', 19068107, 0.2, 'Q3', 4, 52, 1891, 45, 62, '40', '2019-2020', 'Nursing (miscellaneous) (Q3)'), (17506, 'Philippine Journal of Veterinary Medicine', 317705, 0.2, 'Q3', 5, 0, 0, 38, 63, '63', '2008-2019', 'Veterinary (miscellaneous) (Q3)'), (17507, 'Phlebologie', 25675826, 0.2, 'Q4', 23, 78, 1257, 61, 129, '5', '1991-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (17508, 'Physiology and Pharmacology', 17350581, 0.2, 'Q2', 11, 34, 1631, 72, 104, '15', '2009-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Pharmacology (Q4); Physiology (Q4)'), (17509, 'Platonic Investigations', 24103047, 0.2, 'Q2', 2, 29, 395, 7, 27, '10', '2019', 'Philosophy (Q2)'), (17510, 'Pravention und Gesundheitsforderung', 18616763, 0.2, 'Q4', 11, 84, 2218, 73, 153, '5', '2006-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (17511, 'Prospects', 331538, 0.2, 'Q3', 25, 65, 2112, 19, 27, '16', '1970, 1972-2020', 'Education (Q3)'), (17512, 'Psicologia e Sociedade', 18070310, 0.2, 'Q4', 16, 60, 1663, 24, 105, '14', '2006-2020', 'Social Psychology (Q4)'), (17513, 'Reliability: Theory and Applications', 19322321, 0.2, 'Q3', 4, 16, 249, 26, 82, '2', '2017, 2020', 'Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3); Statistics, Probability and Uncertainty (Q4)'), (17514, 'SKY Journal of Linguistics', 14568438, 0.2, 'Q2', 6, 7, 288, 10, 16, '38', '2011-2018', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17515, 'Tekstil ve Konfeksiyon', 13003356, 0.2, 'Q3', 15, 53, 1590, 61, 103, '18', '2008-2019', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q4)'), (17516, 'Theoria (Spain)', 4954548, 0.2, 'Q2', 15, 18, 593, 22, 70, '12', '2003-2020', 'History and Philosophy of Science (Q2); Philosophy (Q2)'), (17517, 'Turk Kardiyoloji Dernegi Arsivi', 10165169, 0.2, 'Q4', 24, 125, 3104, 194, 368, '18', '1990-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (17518, 'Zentralblatt fur Chirurgie', 14389592, 0.2, 'Q4', 32, 137, 2323, 131, 299, '5', '1947-1948, 1950-1961, 1963-2020', 'Medicine (miscellaneous) (Q4); Surgery (Q4)'), (17519, 'Acta Geotechnica Slovenica', 18540171, 0.199, 'Q4', 12, 8, 221, 29, 42, '60', '2008-2020', 'Geology (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (17520, 'American Journal of Economics and Sociology', 29246, 0.199, 'Q3', 38, 38, 1435, 68, 98, '3', '1941-1966, 1968-1976, 1978-2020', 'Sociology and Political Science (Q3); Economics and Econometrics (Q4)'), (17521, 'Annals of the University Dunarea de Jos of Ga', 2068259, 0.199, 'Q3', 8, 26, 1260, 46, 70, '43', '2012-2020', 'Industrial and Manufacturing Engineering (Q3); Food Science (Q4)'), (17522, 'Artery Research', 18729312, 0.199, 'Q3', 20, 16, 514, 80, 102, '16', '2006-2020', 'Anatomy (Q3); Cardiology and Cardiovascular Medicine (Q4); Physiology (medical) (Q4)'), (17523, 'Bioscience Journal', 19813163, 0.199, 'Q3', 19, 248, 7655, 269, 580, '14', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (17524, 'Educacion Quimica', 18708404, 0.199, 'Q4', 10, 82, 1323, 18, 40, '30', '2010-2017, 2020', 'Chemistry (miscellaneous) (Q4); Education (Q4)'), (17525, 'Eurasian Journal of Applied Linguistics', 21491135, 0.199, 'Q2', 3, 25, 1474, 26, 39, '18', '2018-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4); Social Psychology (Q4)'), (17526, 'Guang Pu Xue Yu Guang Pu Fen Xi/Spectroscopy ', 10000593, 0.199, 'Q4', 30, 658, 9840, 1314, 1974, '1', '1990-2020', 'Instrumentation (Q4); Spectroscopy (Q4)'), (17527, 'Insula', 204536, 0.199, 'Q1', 3, 130, 1390, 21, 305, '12', '2002-2020', 'Literature and Literary Theory (Q1)'), (17528, 'International Journal of Evaluation and Resea', 26205440, 0.199, 'Q4', 6, 140, 5748, 125, 92, '21', '2019-2020', 'Education (Q4)'), (17529, 'International Journal of Water', 17415322, 0.199, 'Q3', 15, 4, 162, 44, 66, '3', '2001-2005, 2007-2014, 2017', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4); Water Science and Technology (Q4)'), (17530, 'Intertax', 18758347, 0.199, 'Q3', 5, 108, 4004, 52, 123, '16', '2018-2020', 'Law (Q3); Accounting (Q4)'), (17531, 'Journal of clinical orthodontics : JCO', 223875, 0.199, 'Q4', 39, 80, 0, 70, 223, '2', '1970-2020', 'Medicine (miscellaneous) (Q4)'), (17532, 'Journal of Community and Supportive Oncology', 23307749, 0.199, 'Q4', 13, 0, 0, 32, 104, '2', '2014-2018', 'Hematology (Q4); Oncology (Q4)'), (17533, 'Journal of Magnetics', 12261750, 0.199, 'Q3', 15, 99, 2301, 163, 310, '13', '2008-2020', 'Electrical and Electronic Engineering (Q3); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (17534, 'Journal of Scandinavian Cinema', 20427891, 0.199, 'Q1', 4, 24, 772, 23, 63, '3', '2014-2020', 'Visual Arts and Performing Arts (Q1)'), (17535, 'Journal of the Korean Medical Association', 20935951, 0.199, 'Q4', 15, 99, 2753, 144, 293, '13', '2008-2020', 'Medicine (miscellaneous) (Q4)'), (17536, 'Journal of Translational Autoimmunity', 25899090, 0.199, 'Q4', 3, 41, 2298, 22, 21, '16', '2019-2020', 'Immunology (Q4); Immunology and Allergy (Q4)'), (17537, 'Lazaroa', 19883307, 0.199, 'Q4', 16, 0, 0, 7, 10, '12', '1981-1982, 1985, 1989, 1991-1992, 1994-2017', 'Plant Science (Q4)'), (17538, 'Linye Kexue/Scientia Silvae Sinicae', 10017488, 0.199, 'Q3', 7, 252, 9555, 374, 704, '1', '2016-2020', 'Forestry (Q3); Plant Science (Q4)'), (17539, 'Mathematics in Engineering, Science and Aeros', 20413173, 0.199, 'Q4', 6, 77, 1880, 76, 95, '2', '2018-2020', 'Aerospace Engineering (Q4); Applied Mathematics (Q4); Modeling and Simulation (Q4)'), (17540, 'Meta Gene', 22145400, 0.199, 'Q4', 20, 201, 7913, 202, 351, '16', '2013-2020', 'Genetics (Q4); Genetics (clinical) (Q4)'), (17541, 'Microelectronics International', 13565362, 0.199, 'Q3', 21, 23, 654, 64, 85, '3', '1982-2020', 'Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Surfaces, Coatings and Films '), (17542, 'New Physics: Sae Mulli', 22890041, 0.199, 'Q4', 7, 152, 3089, 113, 585, '13', '1989, 2014-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (17543, 'Optoelectronics and Advanced Materials, Rapid', 18426573, 0.199, 'Q3', 28, 87, 2336, 200, 357, '43', '2008-2020', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4)'), (17544, 'Pakistan Journal of Psychological Research', 10160604, 0.199, 'Q4', 5, 41, 2006, 66, 116, '34', '2016-2020', 'Psychology (miscellaneous) (Q4)'), (17545, 'Plastic Surgical Nursing', 7415206, 0.199, 'Q3', 20, 59, 796, 51, 78, '2', '1983-2020', 'Advanced and Specialized Nursing (Q3); Medical and Surgical Nursing (Q3); Medicine (miscellaneous) (Q4); Surgery (Q4)'), (17546, 'Polish Journal of Medical Physics and Enginee', 18980309, 0.199, 'Q4', 5, 32, 870, 61, 76, '17', '2009-2010, 2012-2020', 'Biophysics (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (17547, 'Politics and the Life Sciences', 14715457, 0.199, 'Q3', 19, 18, 1025, 37, 44, '3', '1983-1984, 1986-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Public Administration (Q4)'), (17548, 'Polyolefins Journal', 23456868, 0.199, 'Q3', 2, 11, 400, 17, 14, '15', '2019-2020', 'Chemistry (miscellaneous) (Q3); Polymers and Plastics (Q3); Catalysis (Q4)'), (17549, 'Proceedings of International Conference of th', 18149316, 0.199, 'Q3', 12, 0, 0, 186, 449, '2', '2014, 2016, 2018', 'Computer Science (miscellaneous) (Q3); Education (Q4)'), (17550, 'Proceedings of the ACM on Interactive, Mobile', 24749567, 0.199, 'Q3', 5, 168, 11164, 73, 35, '2', '2019-2020', 'Computer Networks and Communications (Q3); Hardware and Architecture (Q4); Human-Computer Interaction (Q4)'), (17551, 'Psychological Thought', 21937281, 0.199, 'Q4', 4, 3, 191, 45, 58, '5', '2017-2020', 'Psychology (miscellaneous) (Q4)'), (17552, 'Psychotherapeut', 14322080, 0.199, 'Q4', 22, 68, 2049, 109, 183, '5', '1994-2020', 'Clinical Psychology (Q4)'), (17553, 'Public Administration Issues', 19995431, 0.199, 'Q4', 6, 50, 2067, 76, 152, '10', '2016-2020', 'Public Administration (Q4)'), (17554, 'Revista Brasileira de Politicas Publicas', 22361677, 0.199, 'Q4', 4, 79, 3899, 40, 186, '14', '2017-2018, 2020', 'Public Administration (Q4)'), (17555, 'Revista Facultad Nacional de Agronomia Medell', 3042847, 0.199, 'Q3', 7, 37, 1149, 62, 96, '47', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Forestry (Q3); Horticulture (Q3); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Food Science (Q4)'), (17556, 'Ringing and Migration', 3078698, 0.199, 'Q4', 17, 0, 0, 16, 46, '3', '1975-2019', 'Animal Science and Zoology (Q4)'), (17557, 'Sarhad Journal of Agriculture', 10164383, 0.199, 'Q3', 4, 109, 3775, 129, 273, '3', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (17558, 'Strategies', 21683778, 0.199, 'Q4', 9, 60, 919, 57, 146, '3', '1996-2020', 'Education (Q4); Orthopedics and Sports Medicine (Q4)'), (17559, 'TEM Journal', 22178309, 0.199, 'Q3', 10, 233, 4597, 423, 444, '55', '2017-2020', 'Computer Science (miscellaneous) (Q3); Information Systems and Management (Q3); Education (Q4); Information Systems (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (17560, 'Therapeutic Communities', 9641866, 0.199, 'Q4', 17, 15, 407, 22, 52, '3', '1992-2020', 'Clinical Psychology (Q4); Health Professions (miscellaneous) (Q4); Psychiatric Mental Health (Q4); Psychiatry and Mental Health (Q4)'), (17561, 'Tidsskrift for Samfunnsforskning', 40716, 0.199, 'Q3', 9, 36, 896, 17, 76, '33', '1970, 1976, 1980-1982, 1985, 1987, 1998-1999, 2001-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (17562, 'Transactions of Tianjin University', 10064982, 0.199, 'Q3', 17, 53, 2840, 186, 197, '1', '2004-2020', 'Multidisciplinary (Q3)'), (17563, 'Transactions on Maritime Science', 18483305, 0.199, 'Q3', 4, 35, 932, 40, 60, '58', '2017-2020', 'Automotive Engineering (Q3); Law (Q3); Ocean Engineering (Q3); Transportation (Q4); Water Science and Technology (Q4)'), (17564, 'Tunisie Medicale', 414131, 0.199, 'Q4', 18, 159, 3327, 158, 501, '57', '1949-1950, 1954-2020', 'Medicine (miscellaneous) (Q4)'), (17565, 'Vestnik Tomskogo Gosudarstvennogo Universitet', 23112077, 0.199, 'Q3', 3, 39, 1375, 42, 80, '10', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Biochemistry (Q4)'), (17566, 'World Journal of Engineering', 17085284, 0.199, 'Q3', 9, 114, 4276, 265, 248, '3', '2014-2020', 'Electrical and Electronic Engineering (Q3); Civil and Structural Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (17567, 'World Journal on Educational Technology: Curr', 13090348, 0.199, 'Q3', 5, 29, 1210, 46, 51, '74', '2019-2020', 'Computer Science (miscellaneous) (Q3); Education (Q4); Management of Technology and Innovation (Q4)'), (17568, 'Wuli Xuebao/Acta Physica Sinica', 10003290, 0.199, 'Q4', 47, 766, 32471, 2015, 2462, '1', '1993-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (17569, 'Yejin Fenxi/Metallurgical Analysis', 10007571, 0.199, 'Q3', 10, 135, 3363, 156, 493, '1', '2001-2020', 'Metals and Alloys (Q3); Materials Chemistry (Q4)'), (17570, 'Acta Veterinaria Brno', 18017576, 0.198, 'Q3', 38, 49, 1484, 102, 166, '31', '1974-1975, 1993, 1996-2020', 'Veterinary (miscellaneous) (Q3)'), (17571, 'Aloma', 23399694, 0.198, 'Q3', 3, 20, 844, 24, 23, '12', '2018-2020', 'Computer Networks and Communications (Q3); Education (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Psychology (miscellaneous) (Q4)'), (17572, 'American Jewish History', 10863141, 0.198, 'Q1', 9, 21, 1598, 14, 89, '2', '1981, 2002-2004, 2007-2011, 2013-2020', 'History (Q1); Religious Studies (Q1); Cultural Studies (Q2)'), (17573, 'Asian Journal of University Education', 26009749, 0.198, 'Q4', 3, 57, 1951, 39, 43, '23', '2019-2020', 'Education (Q4)'), (17574, 'Australian Feminist Law Journal', 22040064, 0.198, 'Q1', 2, 17, 0, 9, 20, '11', '2018-2019', 'Literature and Literary Theory (Q1); Gender Studies (Q3); Law (Q3); Sociology and Political Science (Q3); Psychology (miscellaneous) (Q4)'), (17575, 'Biophysics (Russian Federation)', 15556654, 0.198, 'Q4', 17, 142, 4563, 247, 414, '10', '1957-1961, 1963-1982, 1984-1994, 2003-2020', 'Biophysics (Q4)'), (17576, 'Brazilian Journal of International Law', 2236997, 0.198, 'Q3', 2, 50, 2211, 30, 189, '14', '2016-2019', 'Law (Q3); Political Science and International Relations (Q3)'), (17577, 'Bulletin de la Societe de Pathologie Exotique', 379085, 0.198, 'Q4', 32, 9, 0, 46, 135, '8', '1990-2020', 'Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)'), (17578, 'Chinese Rare Earths', 10040277, 0.198, 'Q4', 12, 108, 2641, 126, 353, '1', '2013-2020', 'Materials Chemistry (Q4); Metals and Alloys (Q4)'), (17579, 'Chinese Semiotic Studies', 21989613, 0.198, 'Q2', 6, 32, 915, 21, 77, '5', '2009-2020', 'Language and Linguistics (Q2); Communication (Q3)'), (17580, 'Confinia Cephalalgica', 11220279, 0.198, 'Q4', 4, 21, 305, 12, 52, '7', '1993-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (17581, 'Continental Philosophy Review', 13872842, 0.198, 'Q2', 23, 39, 903, 46, 71, '16', '1996-2002, 2005-2020', 'Philosophy (Q2)'), (17582, 'Defence Science Journal', 11748, 0.198, 'Q3', 32, 93, 2282, 236, 269, '4', '1970-1989, 1991-2020', 'Chemical Engineering (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3); Biomedical Engineering (Q4); Computer Science Applications (Q4); Mechanical Engineering (Q4); Physics and Astrono'), (17583, 'Dialogic Pedagogy', 23253290, 0.198, 'Q2', 3, 23, 686, 11, 21, '2', '2018-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (17584, 'Dongnan Daxue Xuebao (Ziran Kexue Ban)/Journa', 10010505, 0.198, 'Q3', 22, 150, 3236, 306, 572, '1', '2002-2020', 'Engineering (miscellaneous) (Q3)'), (17585, 'Engineering Review', 13309587, 0.198, 'Q3', 11, 37, 858, 49, 106, '58', '2011-2020', 'Engineering (miscellaneous) (Q3)'), (17586, 'Fenmo Yejin Jishu/Powder Metallurgy Technolog', 10013784, 0.198, 'Q4', 11, 67, 1424, 101, 218, '1', '1986-1989, 1993-2020', 'Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (17587, 'Himalayan Geology', 9718966, 0.198, 'Q4', 14, 12, 578, 26, 20, '4', '2007-2018, 2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (17588, 'Historiallinen aikakauskirja', 182362, 0.198, 'Q1', 3, 58, 1538, 15, 105, '38', '1978, 1983, 1985, 1987, 1999-2001, 2011, 2013-2019', 'History (Q1)'), (17589, 'International Journal', 2052465, 0.198, 'Q3', 21, 45, 0, 76, 98, '9', '1981, 1995-2020', 'Political Science and International Relations (Q3)'), (17590, 'International Journal of Emerging Electric Po', 1553779, 0.198, 'Q4', 21, 59, 1810, 179, 198, '5', '2004-2020', 'Energy Engineering and Power Technology (Q4)'), (17591, 'International Labor and Working-Class History', 14716445, 0.198, 'Q1', 21, 28, 1309, 29, 59, '3', '1976-2020', 'History (Q1); Organizational Behavior and Human Resource Management (Q4)'), (17592, 'International Medical Case Reports Journal', 1179142, 0.198, 'Q4', 11, 113, 2000, 123, 202, '41', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (17593, 'Iranian Journal of Plant Physiology', 23222808, 0.198, 'Q4', 4, 37, 1545, 59, 89, '15', '2016-2020', 'Genetics (Q4); Physiology (Q4); Plant Science (Q4)'), (17594, 'Journal of Cyber Security and Mobility', 22454578, 0.198, 'Q3', 9, 18, 579, 61, 73, '25', '2012-2020', 'Computer Networks and Communications (Q3); Hardware and Architecture (Q4)'), (17595, 'Journal of Fluid Science and Technology', 18805558, 0.198, 'Q4', 5, 19, 453, 54, 75, '6', '2017-2020', 'Fluid Flow and Transfer Processes (Q4); Mechanical Engineering (Q4)'), (17596, 'Journal of Imagery Research in Sport and Phys', 19320191, 0.198, 'Q4', 9, 9, 445, 7, 11, '5', '2009-2020', 'Applied Psychology (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)'), (17597, 'Journal of Nuclear Fuel Cycle and Waste Techn', 22885471, 0.198, 'Q4', 3, 54, 1128, 19, 41, '13', '2019-2020', 'Fuel Technology (Q4); Management, Monitoring, Policy and Law (Q4); Nuclear Energy and Engineering (Q4); Renewable Energy, Sustainability and the Environment (Q4); Waste Management and Disposal (Q4)'), (17598, 'Journal of Pharmacy Technology', 15494810, 0.198, 'Q3', 11, 39, 852, 70, 95, '2', '1989-2020', 'Pharmaceutical Science (Q3)'), (17599, 'Journal of the Geological Society of Korea', 4354036, 0.198, 'Q3', 4, 56, 2432, 32, 53, '13', '2019-2020', 'Earth and Planetary Sciences (miscellaneous) (Q3); Geology (Q4)'), (17600, 'Landscape History', 1433768, 0.198, 'Q1', 9, 13, 699, 10, 36, '3', '1979-2020', 'History (Q1); Nature and Landscape Conservation (Q3); Horticulture (Q4)'), (17601, 'Muzeologia a Kulturne Dedicstvo', 24539759, 0.198, 'Q2', 5, 33, 1190, 26, 93, '53', '2013-2020', 'Conservation (Q2); Museology (Q2)'), (17602, 'Neuropsychological Trends', 19703201, 0.198, 'Q4', 7, 11, 437, 25, 37, '7', '2011-2020', 'Cellular and Molecular Neuroscience (Q4); Neuropsychology and Physiological Psychology (Q4)'), (17603, 'New Labor Forum', 15572978, 0.198, 'Q3', 4, 44, 0, 43, 67, '2', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Industrial Relations (Q3); Social Sciences (miscellaneous) (Q3); Urban Studies (Q3)'), (17604, 'Performance Research', 13528165, 0.198, 'Q1', 17, 108, 1840, 40, 496, '3', '1996-2020', 'Visual Arts and Performing Arts (Q1)'), (17605, 'Pharmacy Education', 14772701, 0.198, 'Q3', 17, 28, 969, 56, 108, '16', '1973-1978, 2002-2020', 'Pharmaceutical Science (Q3); Pharmacy (Q3); Education (Q4)'), (17606, 'Physikalische Medizin Rehabilitationsmedizin ', 1439085, 0.198, 'Q4', 16, 72, 1654, 54, 109, '5', '1991-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4); Sports Science (Q4)'), (17607, 'Prilozi Instituta za Arheologiju', 13300644, 0.198, 'Q1', 8, 8, 815, 11, 26, '58', '2002-2011, 2013-2019', 'History (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2)'), (17608, 'Pteridines', 21954720, 0.198, 'Q4', 16, 19, 645, 36, 62, '3', '1989-2020', 'Biochemistry (Q4); Clinical Biochemistry (Q4); Molecular Medicine (Q4)'), (17609, 'Revista da Abordagem Gestaltica', 19843542, 0.198, 'Q3', 3, 40, 1249, 12, 109, '14', '2012-2019', 'Sociology and Political Science (Q3); Social Psychology (Q4)'), (17610, 'Zeitschrift fur Papyrologie und Epigraphik', 845388, 0.198, 'Q2', 18, 167, 3669, 36, 330, '5', '1968, 1976-1978, 1997, 2002-2008, 2015-2016, 2018-2020', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (17611, 'Accounting, Economics and Law: A Convivium', 21522820, 0.197, 'Q3', 15, 37, 2385, 39, 70, '5', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3); Accounting (Q4)'), (17612, 'American journal of disaster medicine', 1932149, 0.197, 'Q4', 20, 40, 0, 39, 71, '2', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (17613, 'Cultura de los Cuidados', 11381728, 0.197, 'Q1', 4, 76, 1935, 40, 198, '12', '2014-2020', 'History (Q1); Cultural Studies (Q2); Anthropology (Q3); Nursing (miscellaneous) (Q3)'), (17614, 'Current Immunology Reviews', 15733955, 0.197, 'Q4', 19, 10, 361, 29, 48, '52', '2006-2019', 'Immunology (Q4); Immunology and Allergy (Q4)'), (17615, 'Current Issues in Education', 1099839, 0.197, 'Q4', 14, 0, 0, 3, 3, '2', '2000-2006, 2008-2017', 'Education (Q4)'), (17616, 'Current legal problems', 20448422, 0.197, 'Q3', 10, 0, 0, 26, 36, '3', '1983, 2014-2019', 'Law (Q3)'), (17617, 'Economics and Business Letters', 22544380, 0.197, 'Q3', 4, 41, 1132, 37, 60, '12', '2017-2020', 'Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17618, 'Eesti Rakenduslingvistika Uhingu Aastaraamat', 17362563, 0.197, 'Q2', 8, 14, 485, 12, 38, '71', '2005-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (17619, 'Emerald Emerging Markets Case Studies', 20450621, 0.197, 'Q3', 5, 122, 1226, 36, 300, '3', '2011-2020', 'Business and International Management (Q3); Economics and Econometrics (Q4); Education (Q4); Finance (Q4); Strategy and Management (Q4)'), (17620, 'Fuss und Sprunggelenk', 16199987, 0.197, 'Q4', 8, 34, 798, 27, 72, '5', '2005-2020', 'Orthopedics and Sports Medicine (Q4)'), (17621, 'High Temperature Material Processes', 10933611, 0.197, 'Q3', 18, 26, 631, 45, 79, '2', '1997-2020', 'Engineering (miscellaneous) (Q3); Condensed Matter Physics (Q4); Energy Engineering and Power Technology (Q4); Materials Science (miscellaneous) (Q4); Physical and Theoretical Chemistry (Q4); Spectros'), (17622, 'HSE Social and Education History', 20143567, 0.197, 'Q1', 3, 12, 595, 22, 47, '12', '2016-2020', 'History (Q1); Social Sciences (miscellaneous) (Q3); Education (Q4)'), (17623, 'International Journal of e-Business Research', 1548114, 0.197, 'Q3', 22, 12, 870, 55, 66, '2', '2005-2020', 'Management Information Systems (Q3); Computer Science Applications (Q4)'), (17624, 'International Journal of Financial Studies', 22277072, 0.197, 'Q4', 6, 77, 4011, 99, 69, '19', '2019-2020', 'Finance (Q4)'), (17625, 'International Journal of Fluid Mechanics Rese', 10642277, 0.197, 'Q4', 19, 33, 1030, 78, 106, '2', '1996-2020', 'Mechanical Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (17626, 'International Journal of High Speed Electroni', 1291564, 0.197, 'Q3', 24, 0, 0, 58, 79, '37', '2002-2009, 2011-2019', 'Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4); Hardware and Architecture (Q4)'), (17627, 'International Journal of Learning, Teaching a', 16942116, 0.197, 'Q4', 5, 220, 10064, 170, 289, '121', '2018-2020', 'Education (Q4)'), (17628, 'International Journal of Modern Manufacturing', 20673604, 0.197, 'Q3', 7, 61, 1385, 68, 105, '43', '2015-2020', 'Industrial and Manufacturing Engineering (Q3)'), (17629, 'International Journal of Nanoscience', 17935350, 0.197, 'Q3', 25, 62, 2021, 160, 223, '37', '2004-2020', 'Electrical and Electronic Engineering (Q3); Bioengineering (Q4); Biotechnology (Q4); Computer Science Applications (Q4); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Nanoscie'), (17630, 'Journal of Cardiology Cases', 18785409, 0.197, 'Q4', 8, 177, 1550, 177, 340, '3', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (17631, 'Journal of Chinese Sociology', 21982635, 0.197, 'Q3', 6, 24, 1140, 56, 59, '3', '2014-2020', 'Social Sciences (miscellaneous) (Q3)'), (17632, 'Journal of Landscape Architecture', 2164604, 0.197, 'Q3', 11, 22, 0, 32, 57, '3', '2006-2020', 'Geography, Planning and Development (Q3)'), (17633, 'Journal of Management and Business Administra', 24508829, 0.197, 'Q3', 5, 6, 539, 48, 68, '17', '2016-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Social Psychology (Q4)'), (17634, 'Journal of Russian Laser Research', 10712836, 0.197, 'Q3', 26, 78, 2081, 164, 217, '2', '1994-2020', 'Engineering (miscellaneous) (Q3); Atomic and Molecular Physics, and Optics (Q4)'), (17635, 'Kodai Mathematical Journal', 18815472, 0.197, 'Q4', 24, 28, 586, 58, 101, '6', '1949-2020', 'Mathematics (miscellaneous) (Q4)'), (17636, 'Logos (Lithuania)', 8687692, 0.197, 'Q2', 6, 86, 1493, 30, 231, '69', '2008-2020', 'Arts and Humanities (miscellaneous) (Q2); Cultural Studies (Q2)'), (17637, 'Malaysian Journal of Computer Science', 1279084, 0.197, 'Q3', 18, 31, 1189, 87, 86, '23', '1996-2020', 'Computer Science (miscellaneous) (Q3)'), (17638, 'Mission Studies', 15733831, 0.197, 'Q1', 7, 39, 896, 13, 54, '16', '1985, 1987-1990, 1993-1994, 1996-1997, 2000-2020', 'History (Q1); Religious Studies (Q1)'), (17639, 'Moral Philosophy and Politics', 21945616, 0.197, 'Q2', 7, 26, 952, 16, 50, '5', '2014-2020', 'Philosophy (Q2); History and Philosophy of Science (Q3); Sociology and Political Science (Q3)'), (17640, 'Museum Anthropology', 8928339, 0.197, 'Q2', 15, 7, 314, 21, 24, '2', '1986-2020', 'Museology (Q2); Anthropology (Q3)'), (17641, 'Nano Biomedicine', 21854734, 0.197, 'Q4', 9, 11, 315, 11, 33, '6', '2009-2016, 2018-2020', 'Biomedical Engineering (Q4)'), (17642, 'Pan-Pacific Entomologist', 310603, 0.197, 'Q4', 20, 34, 608, 23, 71, '2', '1993-2020', 'Insect Science (Q4)'), (17643, 'Pomorstvo', 13320718, 0.197, 'Q3', 8, 45, 1547, 80, 88, '58', '2001-2020', 'Engineering (miscellaneous) (Q3); Geography, Planning and Development (Q3); Ocean Engineering (Q3); Social Sciences (miscellaneous) (Q3)'), (17644, 'Progress in Agricultural Engineering Sciences', 1786335, 0.197, 'Q3', 8, 21, 513, 17, 28, '50', '2007-2009, 2011-2019', 'Industrial and Manufacturing Engineering (Q3); Environmental Engineering (Q4); Mechanical Engineering (Q4)'), (17645, 'Revista Brasileira de Cineantropometria e Des', 14158426, 0.197, 'Q4', 20, 69, 1760, 93, 186, '14', '1999-2020', 'Physiology (Q4); Physiology (medical) (Q4)'), (17646, 'Revue de Medecine Interne', 2488663, 0.197, 'Q4', 36, 190, 5551, 278, 464, '8', '1980-2020', 'Gastroenterology (Q4); Internal Medicine (Q4)'), (17647, 'Sabrao Journal of Breeding and Genetics', 10297073, 0.197, 'Q4', 14, 15, 610, 69, 97, '6', '2008-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Biotechnology (Q4); Genetics (Q4); Horticulture (Q4)'), (17648, 'SATS', 18697577, 0.197, 'Q2', 7, 16, 567, 7, 21, '5', '2000-2020', 'Philosophy (Q2)'), (17649, 'Slovenska Rec', 13384279, 0.197, 'Q2', 3, 16, 374, 8, 69, '53', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17650, 'Sociolinguistic Studies', 17508649, 0.197, 'Q2', 13, 19, 862, 15, 56, '3', '2008-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Sociology and Political Science (Q3)'), (17651, 'Ukrainian Geographical Journal', 15614980, 0.197, 'Q3', 2, 28, 618, 18, 60, '44', '2018-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3); History and Philosophy of Science (Q3); Earth and Planetary Sciences (miscellaneous) (Q4); Management of Technology and Innovati'), (17652, 'Veredas do Direito', 18063845, 0.197, 'Q3', 3, 45, 1725, 23, 123, '14', '2017-2020', 'Law (Q3); Management, Monitoring, Policy and Law (Q4)'), (17653, 'British journal of hospital medicine (London,', 17508460, 0.196, 'Q4', 28, 259, 3760, 325, 545, '3', '1996, 2005-2020', 'Medicine (miscellaneous) (Q4)'), (17654, 'Catalan Journal of Linguistics', 16956885, 0.196, 'Q2', 16, 1, 31, 18, 33, '12', '2002-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17655, 'Central European Journal of Economic Modellin', 2080119, 0.196, 'Q4', 5, 15, 531, 31, 36, '17', '2017-2020', 'Applied Mathematics (Q4); Economics and Econometrics (Q4); Statistics and Probability (Q4)'), (17656, 'Cirugia Plastica Ibero-Latinoamericana', 3767892, 0.196, 'Q4', 10, 70, 952, 40, 162, '12', '1975-2002, 2004-2020', 'Surgery (Q4)'), (17657, 'Cultural Management: Science and Education', 25126962, 0.196, 'Q3', 2, 17, 572, 6, 8, '5', '2019-2020', 'Arts and Humanities (miscellaneous) (Q3); Business and International Management (Q3); Education (Q4); Strategy and Management (Q4)'), (17658, 'Current Chemistry Letters', 1927730, 0.196, 'Q4', 5, 22, 722, 54, 59, '9', '2017-2021', 'Chemistry (miscellaneous) (Q4)'), (17659, 'ELH - English Literary History', 10806547, 0.196, 'Q1', 21, 41, 2460, 27, 123, '2', '2001-2020', 'History (Q1); Literature and Literary Theory (Q1)'), (17660, 'Haiyang Xuebao', 2534193, 0.196, 'Q3', 5, 32, 1150, 152, 433, '1', '2016-2020', 'Ocean Engineering (Q3); Aquatic Science (Q4); Oceanography (Q4)'), (17661, 'Hispania Nova', 11387319, 0.196, 'Q1', 3, 20, 830, 18, 61, '12', '2017-2020', 'History (Q1)'), (17662, 'International Journal of Electronic Commerce ', 20739729, 0.196, 'Q4', 9, 7, 349, 36, 29, '22', '2013-2019', 'Computer Science Applications (Q4)'), (17663, 'International Journal of Web Services Researc', 15465004, 0.196, 'Q3', 27, 12, 427, 58, 57, '2', '2004-2020', 'Computer Networks and Communications (Q3); Information Systems (Q4); Software (Q4)'), (17664, 'Journal of Banking Regulation', 17502071, 0.196, 'Q4', 13, 35, 1604, 44, 65, '3', '2008-2020', 'Economics and Econometrics (Q4); Finance (Q4)'), (17665, 'Journal of Health Research', 2586940, 0.196, 'Q4', 4, 57, 1966, 64, 106, '3', '2018-2020', 'Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (17666, 'Journal of Policy Practice', 15588742, 0.196, 'Q3', 14, 0, 0, 21, 27, '2', '2006-2017', 'Sociology and Political Science (Q3); Public Administration (Q4)'), (17667, 'Journal of UOEH', 387821, 0.196, 'Q4', 18, 44, 767, 75, 114, '6', '1979-2020', 'Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (17668, 'Libyan Studies', 2637189, 0.196, 'Q1', 7, 17, 527, 15, 44, '3', '1984-1985, 1988, 1990, 2013-2019', 'History (Q1); Cultural Studies (Q2)'), (17669, 'Management', 18463363, 0.196, 'Q3', 15, 43, 2082, 63, 75, '58', '2007-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Strategy and Management (Q4)'), (17670, 'Mechatronic Systems and Control', 25611771, 0.196, 'Q4', 18, 34, 726, 51, 78, '9', '2018-2020', 'Computer Science Applications (Q4); Control and Systems Engineering (Q4)'), (17671, 'Medicina dello Sport', 257826, 0.196, 'Q4', 14, 50, 1621, 99, 170, '7', '1965, 1973-1982, 1996-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)'), (17672, 'Monaldi Archives for Chest Disease', 11220643, 0.196, 'Q4', 46, 153, 3484, 128, 193, '7', '1993-2020', 'Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)'), (17673, 'New Research of Tuva', 20798482, 0.196, 'Q1', 4, 72, 2302, 82, 171, '10', '2016-2020', 'History (Q1); Cultural Studies (Q2); Anthropology (Q3)'), (17674, 'New Zealand Entomologist', 11793430, 0.196, 'Q4', 19, 10, 326, 18, 27, '3', '1952-1956, 1958-1966, 1968-1971, 1973, 1975-1980, 1982-1984, 1987-2020', 'Insect Science (Q4)'), (17675, 'Nonproliferation Review', 10736700, 0.196, 'Q3', 24, 18, 0, 37, 81, '3', '1993-2020', 'Political Science and International Relations (Q3)'), (17676, 'Operative Techniques in Otolaryngology - Head', 10431810, 0.196, 'Q3', 20, 61, 1731, 58, 128, '3', '1990-2020', 'Otorhinolaryngology (Q3); Surgery (Q4)'), (17677, 'Polish Psychological Bulletin', 16417844, 0.196, 'Q4', 14, 23, 1330, 69, 128, '17', '2008-2020', 'Psychology (miscellaneous) (Q4)'), (17678, 'Presence: Teleoperators and Virtual Environme', 15313263, 0.196, 'Q4', 90, 12, 705, 66, 35, '2', '1992-2020', 'Computer Vision and Pattern Recognition (Q4); Control and Systems Engineering (Q4); Human-Computer Interaction (Q4); Software (Q4)'), (17679, 'Psychodynamic Practice', 14753634, 0.196, 'Q4', 15, 33, 554, 38, 65, '3', '2002-2020', 'Clinical Psychology (Q4)'), (17680, 'Revista Colombiana de Entomologia', 1200488, 0.196, 'Q4', 19, 23, 976, 52, 102, '47', '2004-2020', 'Insect Science (Q4)'), (17681, 'Revista de Estudios Sociales', 19005180, 0.196, 'Q1', 10, 32, 1753, 69, 107, '47', '2009-2020', 'History (Q1); Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Gender Studies (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (17682, 'Revue des Maladies Respiratoires', 17762588, 0.196, 'Q4', 29, 128, 3691, 216, 371, '8', '1984-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (17683, 'Serbian Astronomical Journal', 1450698, 0.196, 'Q4', 16, 11, 435, 17, 32, '55', '2007-2019', 'Astronomy and Astrophysics (Q4)'), (17684, 'Series on Biomechanics', 13132458, 0.196, 'Q4', 5, 28, 780, 30, 80, '61', '2015-2020', 'Biomedical Engineering (Q4); Biophysics (Q4); Biotechnology (Q4); Orthopedics and Sports Medicine (Q4)'), (17685, 'Tourismos', 17908418, 0.196, 'Q3', 18, 0, 0, 14, 21, '39', '2006-2017', 'Business and International Management (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (17686, 'USDA Forest Service - General Technical Repor', 2775786, 0.196, 'Q4', 23, 9, 969, 15, 36, '2', '1998-1999, 2002-2020', 'Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (17687, 'Alauda', 24619, 0.195, 'Q4', 14, 38, 793, 25, 99, '8', '1981-2020', 'Animal Science and Zoology (Q4)'), (17688, 'American Catholic Philosophical Quarterly', 21538441, 0.195, 'Q1', 12, 24, 912, 18, 91, '2', '1996-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (17689, 'Asia-Pacific Population Journal', 259238, 0.195, 'Q3', 21, 0, 0, 9, 7, '40', '1986-2017', 'Demography (Q3)'), (17690, 'Australasian Orthodontic Journal', 22077480, 0.195, 'Q4', 23, 16, 409, 18, 80, '11', '2017-2019', 'Orthodontics (Q4)'), (17691, 'Biological Communications', 25875779, 0.195, 'Q3', 5, 25, 1615, 53, 75, '10', '2017-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q3)'), (17692, 'Bogoslovska Smotra', 3523101, 0.195, 'Q1', 3, 43, 2029, 19, 107, '58', '2011-2019', 'Religious Studies (Q1)'), (17693, 'Diametros', 17335566, 0.195, 'Q2', 8, 23, 1010, 21, 87, '17', '2004-2020', 'Philosophy (Q2)'), (17694, 'Entomological Review', 138738, 0.195, 'Q4', 16, 119, 4102, 143, 398, '10', '1990-1996, 2006-2020', 'Insect Science (Q4)'), (17695, 'EnvironmentAsia', 19061714, 0.195, 'Q3', 17, 46, 1274, 85, 152, '40', '2009-2020', 'Environmental Science (miscellaneous) (Q3); Toxicology (Q4)'), (17696, 'Ethics in Science and Environmental Politics', 16118014, 0.195, 'Q2', 18, 4, 393, 10, 15, '5', '2001-2020', 'Philosophy (Q2); Sociology and Political Science (Q3); Ecology (Q4); Education (Q4); Management, Monitoring, Policy and Law (Q4)'), (17697, 'Futuribles: Analyse et Prospective', 337307, 0.195, 'Q3', 5, 55, 569, 18, 141, '8', '1977, 1979, 1983-1987, 1989-1997, 1999, 2005-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (17698, 'Geographische Zeitschrift', 167479, 0.195, 'Q3', 17, 14, 721, 17, 37, '5', '1978-1994, 1996-2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (17699, 'Henry James Review', 10806555, 0.195, 'Q1', 10, 22, 567, 13, 66, '2', '2002-2020', 'Literature and Literary Theory (Q1)'), (17700, 'Indonesian Journal of Islam and Muslim Societ', 2406825, 0.195, 'Q1', 5, 12, 484, 22, 33, '21', '2011-2020', 'Religious Studies (Q1); Sociology and Political Science (Q3)'), (17701, 'International Journal of Critical Infrastruct', 14753219, 0.195, 'Q3', 26, 19, 705, 38, 54, '3', '2004-2014, 2020', 'Energy (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3)'), (17702, 'International Journal of Euro-Mediterranean S', 22326022, 0.195, 'Q1', 5, 13, 585, 9, 19, '60', '2012-2015, 2017-2020', 'History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4); Education (Q4)'), (17703, 'International Journal of Evidence Based Coach', 17418305, 0.195, 'Q3', 3, 23, 1132, 35, 59, '3', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Education (Q4)'), (17704, 'International Journal of Mathematical Modelli', 20403607, 0.195, 'Q4', 12, 20, 596, 48, 41, '19', '2009-2014, 2020', 'Applied Mathematics (Q4); Modeling and Simulation (Q4); Numerical Analysis (Q4)'), (17705, 'International Journal of Transport Developmen', 20588305, 0.195, 'Q3', 7, 24, 446, 78, 116, '3', '2017-2020', 'Automotive Engineering (Q3); Civil and Structural Engineering (Q4); Transportation (Q4)'), (17706, 'Interventional Medicine and Applied Science', 20611617, 0.195, 'Q4', 14, 11, 301, 93, 100, '50', '2009-2019', 'Medicine (miscellaneous) (Q4)'), (17707, 'Journal of Ayub Medical College, Abbottabad :', 10259589, 0.195, 'Q4', 31, 132, 0, 280, 477, '34', '2001-2020', 'Medicine (miscellaneous) (Q4)'), (17708, 'Journal of Information Science and Engineerin', 10162364, 0.195, 'Q3', 37, 84, 2316, 187, 228, '22', '1993-1994, 1996-2020', 'Library and Information Sciences (Q3); Computational Theory and Mathematics (Q4); Hardware and Architecture (Q4); Human-Computer Interaction (Q4); Software (Q4)'), (17709, 'Journal of Mathematics in Industry', 21905983, 0.195, 'Q4', 12, 27, 723, 48, 34, '5', '2011-2020', 'Applied Mathematics (Q4)'), (17710, 'Journal of Metals, Materials and Minerals', 8576149, 0.195, 'Q4', 4, 59, 2012, 87, 104, '40', '2017-2020', 'Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)'), (17711, 'Journal of Textile Engineering', 13468235, 0.195, 'Q4', 14, 16, 255, 15, 53, '6', '2000-2020', 'Materials Science (miscellaneous) (Q4)'), (17712, 'Language and Linguistics', 1606822, 0.195, 'Q2', 14, 22, 1002, 22, 62, '22', '2008-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17713, 'Laser and Optoelectronics Progress', 10064125, 0.195, 'Q3', 9, 384, 10399, 701, 1107, '1', '2017-2020', 'Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4)'), (17714, 'Latin American Policy', 20417373, 0.195, 'Q3', 4, 25, 1127, 29, 43, '3', '2016-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17715, 'Manuelle Medizin', 14330466, 0.195, 'Q3', 15, 52, 778, 29, 129, '5', '1973-2020', 'Complementary and Alternative Medicine (Q3); Complementary and Manual Therapy (Q3); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (17716, 'Mitteilungen der Osterreichischen Geographisc', 299138, 0.195, 'Q3', 8, 20, 924, 18, 40, '28', '1978-2008, 2011-2018, 2020', 'Earth-Surface Processes (Q3); Geography, Planning and Development (Q3)'), (17717, 'MM Science Journal', 18050476, 0.195, 'Q3', 10, 82, 1294, 141, 359, '31', '2014-2020', 'Automotive Engineering (Q3); Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q4)'), (17718, 'Nankai Business Review International', 20408757, 0.195, 'Q3', 13, 24, 1328, 81, 90, '3', '2010-2020', 'Business and International Management (Q3); Strategy and Management (Q4)'), (17719, 'Nordic Studies in Education', 18915949, 0.195, 'Q4', 8, 22, 1085, 19, 53, '33', '2012-2020', 'Education (Q4)'), (17720, 'Online Journal of Nursing Informatics', 10899758, 0.195, 'Q3', 13, 0, 0, 34, 50, '2', '1997-2018', 'Nursing (miscellaneous) (Q3); Health Informatics (Q4)'), (17721, 'Organizations and Markets in Emerging Economi', 23450037, 0.195, 'Q3', 4, 19, 1050, 43, 50, '69', '2016-2020', 'Business and International Management (Q3); Development (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (17722, 'Ornis Norvegica', 15020878, 0.195, 'Q4', 8, 0, 0, 3, 4, '33', '1999-2018', 'Animal Science and Zoology (Q4)'), (17723, 'Progress in Pediatric Cardiology', 10589813, 0.195, 'Q3', 32, 91, 2962, 80, 179, '42', '1992-2020', 'Pediatrics, Perinatology and Child Health (Q3); Cardiology and Cardiovascular Medicine (Q4)'), (17724, 'Revista de Metalurgia', 348570, 0.195, 'Q4', 18, 25, 730, 51, 73, '12', '1968-1972, 1974-1994, 1996-2020', 'Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Physical and Theoretical Chemistry (Q4)'), (17725, 'Revista de Salud Publica', 1240064, 0.195, 'Q4', 23, 68, 1953, 119, 321, '47', '2003-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (17726, 'SAE International Journal of Passenger Cars -', 19464622, 0.195, 'Q3', 17, 0, 0, 75, 86, '2', '2009-2019', 'Automotive Engineering (Q3); Electrical and Electronic Engineering (Q3); Safety, Risk, Reliability and Quality (Q3); Control and Systems Engineering (Q4)'), (17727, 'Shiraz E Medical Journal', 17351391, 0.195, 'Q4', 10, 100, 2604, 170, 228, '16', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (17728, 'Sodobna Pedagogika', 380474, 0.195, 'Q4', 4, 50, 1463, 20, 101, '60', '2015-2020', 'Education (Q4)'), (17729, 'Sophia', 1873930, 0.195, 'Q1', 11, 64, 1915, 36, 138, '16', '1962-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (17730, 'Surgery', 18781764, 0.195, 'Q4', 19, 118, 1660, 207, 320, '3', '2006-2020', 'Surgery (Q4)'), (17731, 'Tarim Bilimleri Dergisi', 13007580, 0.195, 'Q4', 16, 57, 1927, 125, 168, '18', '2009-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Plant Science (Q4)'), (17732, 'Techniques in Shoulder and Elbow Surgery', 15239896, 0.195, 'Q4', 21, 29, 627, 31, 87, '2', '2003-2020', 'Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (17733, 'Academia Economic Papers', 18104851, 0.194, 'Q3', 2, 16, 580, 6, 31, '22', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17734, 'Anthropozoologica', 7613032, 0.194, 'Q3', 9, 16, 1213, 9, 36, '8', '2011-2020', 'Anthropology (Q3); Animal Science and Zoology (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (17735, 'Asian Academy of Management Journal of Accoun', 18234992, 0.194, 'Q4', 14, 16, 718, 37, 44, '23', '2006, 2009-2020', 'Accounting (Q4); Finance (Q4)'), (17736, 'Banks and Bank Systems', 19917074, 0.194, 'Q3', 16, 75, 2938, 230, 210, '44', '2006-2020', 'Law (Q3); Finance (Q4); Management of Technology and Innovation (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4)'), (17737, 'Bridge Structures', 15732487, 0.194, 'Q4', 13, 5, 88, 20, 48, '3', '2005-2019', 'Building and Construction (Q4)'), (17738, 'Chinese Journal of Ophthalmology', 4124081, 0.194, 'Q4', 15, 119, 2050, 169, 385, '1', '1979-2020', 'Medicine (miscellaneous) (Q4); Ophthalmology (Q4)'), (17739, 'Clinical Archives of Communication Disorders', 25085948, 0.194, 'Q4', 4, 17, 579, 28, 73, '13', '2016-2020', 'Cognitive Neuroscience (Q4); Environmental Engineering (Q4); Public Health, Environmental and Occupational Health (Q4); Sensory Systems (Q4); Speech and Hearing (Q4)'), (17740, 'Current Orthopaedic Practice', 19417551, 0.194, 'Q4', 22, 113, 2794, 91, 324, '2', '2008-2020', 'Orthopedics and Sports Medicine (Q4)'), (17741, 'Entomological News', 21623236, 0.194, 'Q4', 23, 55, 1219, 64, 152, '2', '1965, 1967-1977, 1979, 1993-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (17742, 'Eurasian Physical Technical Journal', 24132179, 0.194, 'Q3', 2, 27, 515, 21, 41, '65', '2019-2020', 'Energy (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (17743, 'International Journal of Agricultural and Sta', 9763392, 0.194, 'Q3', 6, 113, 2019, 105, 395, '4', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Applied Mathematics (Q4); Statistics and Probability (Q4)'), (17744, 'International Journal of Cardiology: Hyperten', 25900862, 0.194, 'Q4', 2, 43, 1289, 12, 16, '9', '2019-2020', 'Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4)'), (17745, 'International Journal of Economics and Manage', 1823836, 0.194, 'Q3', 19, 30, 1551, 125, 198, '23', '2006-2020', 'Business and International Management (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Strategy and Management (Q4)'), (17746, 'International Journal of Fashion Studies', 20517106, 0.194, 'Q1', 3, 14, 697, 23, 34, '3', '2018-2020', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)'), (17747, 'International Journal of Medical Toxicology a', 9720448, 0.194, 'Q4', 9, 80, 1930, 56, 194, '4', '1999-2003, 2005-2011, 2017-2020', 'Pathology and Forensic Medicine (Q4); Toxicology (Q4)'), (17748, 'Japanese Studies', 10371397, 0.194, 'Q1', 17, 20, 957, 28, 57, '3', '1981-2020', 'History (Q1); Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17749, 'Journal of Early American History', 18770223, 0.194, 'Q1', 4, 6, 719, 6, 25, '16', '2011-2012, 2014-2019', 'History (Q1); Cultural Studies (Q2)'), (17750, 'Journal of Gerontology and Geriatrics', 24996564, 0.194, 'Q4', 7, 38, 1077, 64, 124, '7', '2016-2020', 'Aging (Q4); Geriatrics and Gerontology (Q4)'), (17751, 'Journal of International Trade Law and Policy', 14770024, 0.194, 'Q3', 9, 9, 404, 19, 29, '3', '2002-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Industrial Relations (Q3); Law (Q3); Political Science and International Relations (Q3)'), (17752, 'Journal of Mathematics and the Arts', 17513480, 0.194, 'Q1', 9, 64, 310, 28, 53, '3', '2007-2020', 'Visual Arts and Performing Arts (Q1); Computer Graphics and Computer-Aided Design (Q3); Mathematics (miscellaneous) (Q4)'), (17753, 'Journal of Statistics Applications and Probab', 20908423, 0.194, 'Q3', 6, 51, 1184, 74, 63, '2', '2018-2020', 'Library and Information Sciences (Q3); Statistical and Nonlinear Physics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (17754, 'JP Journal of Heat and Mass Transfer', 9735763, 0.194, 'Q4', 10, 92, 1328, 93, 247, '4', '2010-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (17755, 'Mathematical and Computer Modelling of Dynami', 13873954, 0.194, 'Q4', 34, 27, 907, 91, 88, '3', '1996-2020', 'Applied Mathematics (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Modeling and Simulation (Q4); Software (Q4)'), (17756, 'Medical Radiology and Radiation Safety', 10246177, 0.194, 'Q4', 3, 39, 603, 20, 105, '10', '2018-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (17757, 'Medsurg nursing : official journal of the Aca', 10920811, 0.194, 'Q3', 32, 94, 1231, 56, 122, '2', '1992-2000, 2002-2019', 'Medical and Surgical Nursing (Q3); Medicine (miscellaneous) (Q4); Surgery (Q4)'), (17758, 'Metal Music Studies', 20523998, 0.194, 'Q2', 6, 22, 1087, 22, 79, '3', '2014-2020', 'Music (Q2)'), (17759, 'New Zealand Journal of Physiotherapy', 22304886, 0.194, 'Q4', 1, 16, 480, 12, 28, '41', '2018-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (17760, 'Nihon Reoroji Gakkaishi', 3871533, 0.194, 'Q4', 17, 19, 673, 58, 81, '6', '1973-2020', 'Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (17761, 'Orthopaedics and Trauma', 18771327, 0.194, 'Q4', 27, 68, 1441, 82, 160, '3', '2009-2020', 'Orthopedics and Sports Medicine (Q4)'), (17762, 'Paginas', 1851992, 0.194, 'Q1', 2, 54, 2097, 11, 54, '46', '2017-2019', 'History (Q1)'), (17763, 'Prakticky Lekar', 326739, 0.194, 'Q4', 8, 58, 1178, 30, 124, '31', '1949, 1951-1955, 1962, 1996-2020', 'Medicine (miscellaneous) (Q4)'), (17764, 'Psico-USF', 21753563, 0.194, 'Q4', 4, 56, 2310, 74, 155, '14', '2017-2020', 'Psychology (miscellaneous) (Q4)'), (17765, 'Psychologie du Travail et des Organisations', 14202530, 0.194, 'Q4', 9, 26, 1220, 38, 69, '8', '2005-2006, 2008-2020', 'Human Factors and Ergonomics (Q4); Social Psychology (Q4)'), (17766, 'Revista Mexicana de Ciencias Geologicas', 10268774, 0.194, 'Q4', 35, 13, 809, 56, 71, '30', '1996-2020', 'Geology (Q4)'), (17767, 'Sel skokhozyaistvennaya Biologiya', 23134836, 0.194, 'Q3', 11, 96, 4643, 233, 372, '10', '2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (17768, 'Sleep Medicine Research', 20939175, 0.194, 'Q4', 3, 26, 740, 22, 39, '13', '2018-2020', 'Neurology (Q4); Neurology (clinical) (Q4); Physiology (medical) (Q4); Psychiatry and Mental Health (Q4); Pulmonary and Respiratory Medicine (Q4)'), (17769, 'Tierarztliche Praxis Ausgabe G: Grosstiere - ', 14341220, 0.194, 'Q3', 19, 61, 1558, 72, 169, '5', '1996-2020', 'Veterinary (miscellaneous) (Q3); Food Animals (Q4)'), (17770, 'Translation and Translanguaging in Multilingu', 23521813, 0.194, 'Q1', 2, 18, 514, 6, 11, '16', '2019-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (17771, 'Trauma', 14770350, 0.194, 'Q3', 17, 92, 1947, 79, 139, '3', '1999-2020', 'Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3); Surgery (Q4)'), (17772, 'Yiyong Shengwu Lixue/Journal of Medical Biome', 10047220, 0.194, 'Q4', 12, 111, 2893, 144, 288, '1', '2010-2020', 'Biomedical Engineering (Q4)'), (17773, 'Zoologicheskii Zhurnal', 445134, 0.194, 'Q4', 17, 28, 783, 100, 381, '10', '1950-1951, 1982-1983, 1996-2020', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (17774, 'Accreditation and Quality Assurance', 9491775, 0.193, 'Q3', 38, 42, 938, 84, 139, '2', '1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Safety, Risk, Reliability and Quality (Q3); Chemistry (miscellaneous) (Q4); Instrumentation (Q4)'), (17775, 'Acta Universitatis Carolinae, Geographica', 3005402, 0.193, 'Q3', 13, 20, 977, 44, 60, '31', '1975-2020', 'Geography, Planning and Development (Q3); Earth and Planetary Sciences (miscellaneous) (Q4)'), (17776, 'Architektura a Urbanizmus', 448680, 0.193, 'Q2', 5, 25, 744, 15, 50, '53', '2007-2019', 'Architecture (Q2); Conservation (Q2); Urban Studies (Q3)'), (17777, 'Asian Journal of Political Science', 2185377, 0.193, 'Q3', 16, 19, 1232, 52, 62, '2', '1993-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17778, 'Asian Politics and Policy', 19430787, 0.193, 'Q3', 12, 37, 1842, 53, 104, '2', '2009-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17779, 'Australasian Journal of Gifted Education', 13239686, 0.193, 'Q4', 8, 10, 380, 25, 23, '11', '2009-2020', 'Education (Q4)'), (17780, 'Cave and Karst Science', 1356191, 0.193, 'Q3', 16, 20, 474, 10, 55, '3', '1995-2018', 'Earth-Surface Processes (Q3)'), (17781, 'Enfances et Psy', 12865559, 0.193, 'Q3', 7, 53, 568, 11, 101, '8', '2000-2020', 'Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4); Education (Q4)'), (17782, 'Enrahonar', 211402, 0.193, 'Q2', 1, 22, 593, 2, 14, '12', '2019-2020', 'Philosophy (Q2)'), (17783, 'European Review of History/Revue Europeenne d', 13507486, 0.193, 'Q1', 12, 41, 2476, 70, 146, '3', '1994-1998, 2001, 2009-2020', 'History (Q1)'), (17784, 'Fibre chemistry', 150541, 0.193, 'Q3', 19, 98, 1698, 102, 301, '2', '1969-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (17785, 'Folia Geographica', 24541001, 0.193, 'Q3', 3, 17, 793, 22, 30, '53', '2018-2020', 'Geography, Planning and Development (Q3)'), (17786, 'Gaoya Wuli Xuebao/Chinese Journal of High Pre', 10005773, 0.193, 'Q4', 15, 99, 2536, 122, 354, '1', '1996-2020', 'Condensed Matter Physics (Q4)'), (17787, 'Indian Veterinary Journal', 9749365, 0.193, 'Q3', 16, 83, 716, 159, 1033, '4', '1945-1951, 1965-1971, 1973-1979, 1996-2020', 'Veterinary (miscellaneous) (Q3)'), (17788, 'International Journal for Simulation and Mult', 17796288, 0.193, 'Q4', 4, 26, 651, 29, 32, '8', '2017-2020', 'Control and Optimization (Q4); Modeling and Simulation (Q4)'), (17789, 'International Journal of Advanced Computer Sc', 21565570, 0.193, 'Q3', 18, 1063, 32250, 2018, 1849, '3', '2017-2020', 'Computer Science (miscellaneous) (Q3)'), (17790, 'International Journal of Cyber Behavior, Psyc', 21557136, 0.193, 'Q4', 15, 16, 776, 36, 53, '2', '2011-2020', 'Developmental and Educational Psychology (Q4); Education (Q4); Experimental and Cognitive Psychology (Q4)'), (17791, 'International Journal of Design and Nature an', 17557445, 0.193, 'Q3', 13, 104, 2824, 88, 110, '3', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3)'), (17792, 'International Journal of Energy Technology an', 1741508, 0.193, 'Q3', 15, 29, 1128, 66, 61, '3', '2002-2013, 2020', 'Geography, Planning and Development (Q3); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)'), (17793, 'International Journal of Minority and Group R', 15718115, 0.193, 'Q3', 14, 42, 1853, 16, 67, '16', '1993-1997, 1999-2020', 'Geography, Planning and Development (Q3); Political Science and International Relations (Q3)'), (17794, 'International Journal of Mobile Computing and', 19379412, 0.193, 'Q3', 10, 17, 478, 50, 51, '2', '2009-2014, 2016-2020', 'Computer Networks and Communications (Q3)'), (17795, 'International Journal of Technology Managemen', 14742748, 0.193, 'Q3', 7, 11, 689, 34, 44, '3', '2013-2020', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4); Management of Technology and Innovation (Q4)'), (17796, 'International Journal of Therapy and Rehabili', 17411645, 0.193, 'Q4', 24, 87, 3017, 95, 184, '3', '1996-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (17797, 'Journal of Aesthetic Education', 218510, 0.193, 'Q3', 16, 30, 1147, 18, 84, '2', '2002-2019', 'Arts and Humanities (miscellaneous) (Q3); Education (Q4)'), (17798, 'Journal of Biomechanical Science and Engineer', 18809863, 0.193, 'Q4', 17, 21, 457, 31, 72, '6', '2007-2020', 'Biomedical Engineering (Q4)'), (17799, 'Journal of Consumer Health on the Internet', 15398285, 0.193, 'Q4', 14, 39, 791, 51, 107, '2', '2003-2020', 'Health (social science) (Q4)'), (17800, 'Journal of Phenomenological Psychology', 15691624, 0.193, 'Q4', 21, 8, 388, 13, 24, '16', '1970-2019', 'Psychology (miscellaneous) (Q4)'), (17801, 'Journal of Property, Planning and Environment', 25149407, 0.193, 'Q3', 11, 16, 690, 29, 47, '3', '2018-2020', 'Law (Q3); Urban Studies (Q3); Management, Monitoring, Policy and Law (Q4)'), (17802, 'Journal of Scientometric Research', 23200057, 0.193, 'Q3', 3, 31, 1167, 22, 26, '4', '2019-2020', 'Library and Information Sciences (Q3); Computer Science Applications (Q4); Information Systems (Q4)'), (17803, 'Journal of Southeast Asian Economies', 23395095, 0.193, 'Q3', 4, 10, 431, 55, 72, '37', '2017-2019', 'Political Science and International Relations (Q3); Economics and Econometrics (Q4); Finance (Q4)'), (17804, 'Kajian Malaysia', 1274082, 0.193, 'Q1', 8, 22, 1055, 39, 47, '23', '2011-2020', 'History (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)'), (17805, 'Material Religion', 17518342, 0.193, 'Q1', 15, 46, 1107, 35, 84, '3', '2005-2020', 'Religious Studies (Q1); Visual Arts and Performing Arts (Q1)'), (17806, 'Medical Journal of Malaysia', 3005283, 0.193, 'Q4', 35, 178, 3258, 206, 333, '23', '1963-1964, 1973-2020', 'Medicine (miscellaneous) (Q4)'), (17807, 'Open Medicine', 19112092, 0.193, 'Q4', 29, 2, 130, 40, 29, '9', '2008-2019', 'Medicine (miscellaneous) (Q4)'), (17808, 'Proceedings of the Association for Informatio', 23739231, 0.193, 'Q3', 14, 2, 32, 269, 576, '2', '2015-2019', 'Computer Science (miscellaneous) (Q3); Library and Information Sciences (Q3)'), (17809, 'Revista Catalana d Ornitologia', 16974697, 0.193, 'Q4', 5, 0, 0, 7, 14, '12', '2011-2018', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (17810, 'Revista Internacional de Andrologia', 1698031, 0.193, 'Q3', 9, 49, 1310, 52, 74, '12', '2005-2020', 'Urology (Q3); Reproductive Medicine (Q4)'), (17811, 'Revista Latinoamericana de Ciencias Sociales,', 20277679, 0.193, 'Q3', 3, 28, 1245, 19, 42, '47', '2019-2020', 'Social Sciences (miscellaneous) (Q3); Developmental and Educational Psychology (Q4)'), (17812, 'Ribarstvo, Croatian Journal of Fisheries', 1330061, 0.193, 'Q4', 11, 16, 620, 41, 54, '58', '1993-1997, 2013-2020', 'Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Management, Monitoring, Policy and Law (Q4)'), (17813, 'Rural Theology', 14704994, 0.193, 'Q1', 4, 21, 221, 16, 38, '3', '2014-2020', 'Religious Studies (Q1)'), (17814, 'Studia Historica Nitriensia', 13387219, 0.193, 'Q1', 3, 27, 950, 22, 136, '53', '2016-2019', 'History (Q1); Cultural Studies (Q2); Museology (Q2)'), (17815, 'Zgodovinski Casopis', 3505774, 0.193, 'Q1', 4, 0, 0, 4, 46, '60', '1979, 1982, 1984, 2011, 2013-2019', 'History (Q1)'), (17816, 'Acta medica academica', 18402879, 0.192, 'Q4', 13, 32, 0, 82, 89, '90', '2012-2020', 'Medicine (miscellaneous) (Q4)'), (17817, 'Acta Musicologica', 16241, 0.192, 'Q2', 7, 7, 255, 6, 27, '19', '2002-2019', 'Music (Q2)'), (17818, 'Advances in Cell Biology', 20802218, 0.192, 'Q4', 7, 0, 0, 6, 7, '5', '2008-2011, 2014, 2017', 'Cell Biology (Q4)'), (17819, 'Archives of Craniofacial Surgery', 22871152, 0.192, 'Q4', 3, 77, 1205, 61, 80, '13', '2019-2020', 'Otorhinolaryngology (Q4); Surgery (Q4)'), (17820, 'Biomeditsinskaya Khimiya', 23106905, 0.192, 'Q4', 15, 48, 1622, 117, 199, '10', '2003-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (17821, 'Bulletin of the Georgian National Academy of ', 1321447, 0.192, 'Q3', 13, 90, 1093, 89, 311, '81', '2011-2020', 'Multidisciplinary (Q3)'), (17822, 'Cell and Tissue Biology', 1990519, 0.192, 'Q4', 12, 58, 1986, 108, 174, '10', '2007-2020', 'Cell Biology (Q4)'), (17823, 'Cesky Lid', 90794, 0.192, 'Q2', 6, 12, 522, 10, 62, '31', '2008-2020', 'Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (17824, 'Contemporary Management Research', 18135498, 0.192, 'Q3', 2, 11, 665, 18, 21, '22', '2018-2020', 'Management Information Systems (Q3); Economics and Econometrics (Q4); Management, Monitoring, Policy and Law (Q4); Management of Technology and Innovation (Q4); Marketing (Q4); Strategy and Management'), (17825, 'Democratic Theory', 23328894, 0.192, 'Q2', 6, 27, 733, 22, 33, '2', '2014-2020', 'Philosophy (Q2); Sociology and Political Science (Q3)'), (17826, 'Economics and Policy of Energy and the Enviro', 22807667, 0.192, 'Q4', 7, 3, 109, 27, 59, '7', '2009-2010, 2012-2019', 'Economics and Econometrics (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (17827, 'Emergency medicine practice', 15241971, 0.192, 'Q4', 14, 54, 0, 35, 72, '2', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (17828, 'Ethnobotany Research and Applications', 15473465, 0.192, 'Q3', 25, 71, 4687, 41, 36, '2', '2007-2017, 2019-2020', 'Nature and Landscape Conservation (Q3); Plant Science (Q4)'), (17829, 'Foundations of Computing and Decision Science', 23003405, 0.192, 'Q3', 11, 12, 509, 51, 56, '5', '2012-2020', 'Computer Science (miscellaneous) (Q3); Theoretical Computer Science (Q4)'), (17830, 'Gadjah Mada International Journal of Business', 14111128, 0.192, 'Q3', 9, 15, 929, 49, 45, '21', '2010-2020', 'Business and International Management (Q3); Economics and Econometrics (Q4)'), (17831, 'Historical Records of Australian Science', 7273061, 0.192, 'Q3', 8, 15, 802, 20, 38, '11', '1980-1983, 1985-1987, 1989, 1996, 1998, 2000-2002, 2004-2020', 'Arts and Humanities (miscellaneous) (Q3); Demography (Q3); History and Philosophy of Science (Q3); Social Sciences (miscellaneous) (Q3); Human Factors and Ergonomics (Q4)'), (17832, 'International Journal of Digital Crime and Fo', 19416210, 0.192, 'Q4', 15, 26, 621, 85, 85, '2', '2009-2020', 'Software (Q4)'), (17833, 'International Journal of Environmental Techno', 1741511, 0.192, 'Q4', 21, 23, 358, 57, 76, '3', '2001-2014', 'Environmental Engineering (Q4); Management, Monitoring, Policy and Law (Q4)'), (17834, 'Italian Journal of Gynaecology and Obstetrics', 11218339, 0.192, 'Q3', 8, 28, 1034, 35, 76, '7', '1993-2020', 'Obstetrics and Gynecology (Q3)'), (17835, 'Journal of Clinical Urology', 20514158, 0.192, 'Q3', 10, 206, 3593, 85, 283, '3', '2008-2020', 'Urology (Q3); Surgery (Q4)'), (17836, 'Journal of Economic Cooperation and Developme', 13087800, 0.192, 'Q3', 15, 20, 854, 35, 74, '18', '2009-2020', 'Business and International Management (Q3); Political Science and International Relations (Q3); Economics and Econometrics (Q4)'), (17837, 'Journal of Mammalian Ova Research', 13475878, 0.192, 'Q4', 12, 0, 0, 5, 17, '6', '1995-2018', 'Cell Biology (Q4); Reproductive Medicine (Q4)'), (17838, 'Journal of Microelectronics and Electronic Pa', 15514897, 0.192, 'Q3', 17, 18, 282, 26, 40, '2', '2005-2012, 2014-2019', 'Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Electronic, Optical and Magnetic Materials (Q4)'), (17839, 'Landtechnik', 238082, 0.192, 'Q4', 7, 21, 493, 19, 48, '5', '1978, 1980-1981, 1988, 2001, 2012-2019', 'Agronomy and Crop Science (Q4); Horticulture (Q4)'), (17840, 'Malaysian Journal of Nutrition', 1394035, 0.192, 'Q4', 28, 43, 1320, 102, 152, '23', '1995-2002, 2004-2020', 'Food Science (Q4); Nutrition and Dietetics (Q4)'), (17841, 'Metaphor and the Social World', 22104097, 0.192, 'Q2', 11, 15, 631, 27, 39, '16', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17842, 'Moscow University Biological Sciences Bulleti', 1934791, 0.192, 'Q3', 11, 38, 1231, 116, 120, '10', '1980, 1988, 2009, 2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (17843, 'Nephrology Nursing Journal', 1526744, 0.192, 'Q3', 36, 57, 0, 89, 164, '2', '2000-2020', 'Advanced and Specialized Nursing (Q3); Medicine (miscellaneous) (Q4); Nephrology (Q4)'), (17844, 'New Directions for Teaching and Learning', 2710633, 0.192, 'Q4', 46, 57, 1312, 72, 104, '2', '1980-2020', 'Education (Q4)'), (17845, 'NTU Management Review', 10181601, 0.192, 'Q3', 4, 21, 1230, 16, 77, '22', '2012-2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (17846, 'Oftalmologicheskii Zhurnal', 300675, 0.192, 'Q4', 4, 77, 1652, 45, 220, '44', '1959, 1961-1993, 2015-2020', 'Ophthalmology (Q4)'), (17847, 'Pharmaceutical Care and Research', 16712838, 0.192, 'Q3', 8, 103, 1157, 37, 393, '1', '2004-2020', 'Pharmaceutical Science (Q3); Pharmacy (Q3); Drug Discovery (Q4); Pharmacology (Q4)'), (17848, 'Psicologia Clinica dello Sviluppo', 1824078, 0.192, 'Q4', 12, 31, 1146, 37, 77, '7', '1998-2020', 'Clinical Psychology (Q4); Developmental and Educational Psychology (Q4)'), (17849, 'Revue Roumaine de Geographie', 12205311, 0.192, 'Q3', 4, 18, 495, 15, 46, '43', '1996, 2016-2020', 'Geography, Planning and Development (Q3)'), (17850, 'Scalable Computing', 18951767, 0.192, 'Q3', 18, 60, 1910, 160, 109, '43', '2005-2020', 'Computer Science (miscellaneous) (Q3)'), (17851, 'Science and Global Security', 15477800, 0.192, 'Q3', 16, 11, 81, 11, 19, '3', '1989-1996, 2000, 2008-2020', 'Engineering (miscellaneous) (Q3)'), (17852, 'Sudebno-Meditsinskaya Ekspertisa', 394521, 0.192, 'Q3', 7, 75, 1233, 82, 250, '10', '1962, 1965-2020', 'Anatomy (Q3); Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)'), (17853, 'Tijdschrift voor Gerontologie en Geriatrie', 1679228, 0.192, 'Q4', 18, 27, 614, 21, 61, '16', '1982-2020', 'Geriatrics and Gerontology (Q4); Gerontology (Q4)'), (17854, 'Transactions of the Atomic Energy Society of ', 13472879, 0.192, 'Q3', 15, 20, 494, 13, 48, '6', '2002-2020', 'Safety, Risk, Reliability and Quality (Q3); Nuclear Energy and Engineering (Q4)'), (17855, 'Zdravotnicke Listy', 26444909, 0.192, 'Q3', 1, 41, 941, 10, 41, '53', '2019-2020', 'Nursing (miscellaneous) (Q3); Occupational Therapy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4)'), (17856, 'AANA Journal', 946354, 0.191, 'Q3', 32, 74, 1155, 97, 179, '2', '1973-2020', 'Advanced and Specialized Nursing (Q3); Anesthesiology and Pain Medicine (Q3); Medical and Surgical Nursing (Q3); Medicine (miscellaneous) (Q4)'), (17857, 'Acta Didactica Norge', 15049922, 0.191, 'Q4', 2, 0, 0, 8, 24, '33', '2019', 'Education (Q4)'), (17858, 'Agriculture and Forestry', 18006492, 0.191, 'Q3', 4, 84, 2584, 48, 47, '116', '1979, 1981-1983, 1985-1986, 2019-2020', 'Nature and Landscape Conservation (Q3); Agronomy and Crop Science (Q4); Food Science (Q4); Forestry (Q4); Plant Science (Q4); Soil Science (Q4)'), (17859, 'American literature; a journal of literary hi', 15272117, 0.191, 'Q1', 18, 29, 1265, 27, 85, '2', '1968-1969, 1981, 1983, 1985-1986, 2000, 2002-2020', 'Literature and Literary Theory (Q1)'), (17860, 'Analisis Politico', 1214705, 0.191, 'Q1', 7, 32, 1498, 36, 87, '47', '1996, 2007-2012, 2014-2020', 'History (Q1); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17861, 'Anesthesia Progress', 33006, 0.191, 'Q3', 35, 47, 0, 79, 125, '2', '1966-2020', 'Anesthesiology and Pain Medicine (Q3); Medicine (miscellaneous) (Q4)'), (17862, 'Annales de Dermatologie et de Venereologie', 1519638, 0.191, 'Q3', 37, 224, 3976, 261, 518, '8', '1977-2020', 'Dermatology (Q3)'), (17863, 'Annals of Dunarea de Jos\" University of Galat', 12214639, 0.191, 'Q4', 6, 11, 242, 18, 23, '43', '2010-2019', 'Mechanical Engineering (Q4)'), (17864, 'Archivos de Alergia e Inmunologia Clinica', 15159825, 0.191, 'Q4', 3, 0, 0, 4, 4, '46', '2010-2012, 2015-2016, 2018', 'Immunology and Allergy (Q4)'), (17865, 'Berkeley Planning Journal', 10475192, 0.191, 'Q3', 14, 6, 280, 8, 13, '2', '1992-1997, 1999-2002, 2004-2014, 2016-2018', 'Geography, Planning and Development (Q3)'), (17866, 'Biomedical and Pharmacology Journal', 9746242, 0.191, 'Q4', 18, 242, 7524, 637, 773, '4', '2009-2020', 'Pharmacology (Q4)'), (17867, 'Bonplandia', 18538460, 0.191, 'Q4', 3, 16, 610, 6, 9, '46', '2019-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Plant Science (Q4)'), (17868, 'British Actuarial Journal', 13573217, 0.191, 'Q4', 2, 21, 274, 8, 14, '3', '2018-2020', 'Economics and Econometrics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (17869, 'China Quarterly of International Strategic St', 23777419, 0.191, 'Q3', 5, 9, 242, 56, 94, '37', '2015-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17870, 'Contributii Botanice', 699616, 0.191, 'Q4', 3, 11, 507, 8, 31, '43', '2016-2019', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (17871, 'Corrosion Science and Technology', 15986462, 0.191, 'Q4', 3, 28, 708, 25, 40, '13', '2019-2020', 'Electrochemistry (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)'), (17872, 'Croatian Economic Survey', 13304860, 0.191, 'Q3', 8, 7, 304, 15, 19, '58', '2008, 2010-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Economics and Econometrics (Q4)'), (17873, 'Dead Sea Discoveries', 9290761, 0.191, 'Q1', 23, 16, 843, 14, 47, '16', '1994-2020', 'Religious Studies (Q1); History (Q2)'), (17874, 'Dianzi Yu Xinxi Xuebao/Journal of Electronics', 10095896, 0.191, 'Q3', 27, 371, 8755, 967, 1235, '1', '2001-2020', 'Electrical and Electronic Engineering (Q3)'), (17875, 'Educacao and Realidade', 1003143, 0.191, 'Q3', 3, 60, 1855, 40, 163, '14', '2018-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Education (Q4)'), (17876, 'Electronic Journal of Foreign Language Teachi', 2199874, 0.191, 'Q2', 11, 36, 1287, 34, 43, '37', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (17877, 'Enfermeria Nefrologica', 22542884, 0.191, 'Q3', 9, 42, 908, 43, 111, '12', '2012-2020', 'Advanced and Specialized Nursing (Q3); Nursing (miscellaneous) (Q3); Nephrology (Q4); Urology (Q4)'), (17878, 'Folklore', 15587, 0.191, 'Q1', 16, 17, 1120, 16, 59, '3', '1890-2020', 'History (Q1); Cultural Studies (Q2); Anthropology (Q3)'), (17879, 'Forum der Psychoanalyse', 14370751, 0.191, 'Q4', 12, 45, 1037, 21, 81, '5', '1987-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (17880, 'Huanjing Kexue Xuebao / Acta Scientiae Circum', 2532468, 0.191, 'Q3', 25, 488, 18070, 1120, 1573, '1', '2008-2020', 'Environmental Science (miscellaneous) (Q3); Environmental Chemistry (Q4); Environmental Engineering (Q4)'), (17881, 'Indian Journal of Traditional Knowledge', 9751068, 0.191, 'Q3', 33, 128, 4735, 218, 317, '4', '2008-2020', 'Complementary and Alternative Medicine (Q3); Complementary and Manual Therapy (Q3)'), (17882, 'Integrative Medicine Research', 22134239, 0.191, 'Q3', 5, 53, 1162, 3, 1, '16', '2020', 'Complementary and Alternative Medicine (Q3)'), (17883, 'Interchange', 15731790, 0.191, 'Q3', 17, 32, 1278, 55, 85, '16', '1970-2003, 2005-2020', 'Arts and Humanities (miscellaneous) (Q3); Law (Q3); Social Sciences (miscellaneous) (Q3); Education (Q4)'), (17884, 'International Journal of Biometrics', 1755831, 0.191, 'Q3', 14, 30, 854, 56, 60, '3', '2009-2014, 2020', 'Electrical and Electronic Engineering (Q3); Applied Mathematics (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4)'), (17885, 'International Journal of Humanities and Arts ', 17538548, 0.191, 'Q3', 3, 15, 529, 11, 28, '3', '2018-2020', 'Arts and Humanities (miscellaneous) (Q3); Computer Science (miscellaneous) (Q3); Human-Computer Interaction (Q4)'), (17886, 'International Journal of Philosophical Studie', 14664542, 0.191, 'Q2', 20, 41, 979, 55, 105, '3', '1993-2020', 'Philosophy (Q2)'), (17887, 'International Journal of Product Development', 14779056, 0.191, 'Q3', 26, 17, 583, 32, 41, '3', '2005-2020', 'Business and International Management (Q3); Economics and Econometrics (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (17888, 'International Journal of Risk Assessment and ', 14668297, 0.191, 'Q3', 24, 12, 282, 26, 58, '3', '2000-2003, 2005-2014', 'Business and International Management (Q3); Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4)'), (17889, 'JBJS Case Connector', 21603251, 0.191, 'Q4', 7, 313, 2042, 156, 374, '2', '2014-2020', 'Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (17890, 'Journal of Applied Security Research', 19361629, 0.191, 'Q3', 13, 53, 2225, 92, 87, '3', '2008-2020', 'Law (Q3); Safety Research (Q3); Safety, Risk, Reliability and Quality (Q3); Education (Q4)'), (17891, 'Journal of Chinese Overseas', 17930391, 0.191, 'Q1', 8, 11, 496, 12, 32, '16', '2007-2020', 'History (Q1); Cultural Studies (Q2); Anthropology (Q3); Sociology and Political Science (Q3)'), (17892, 'Journal of Communications Software and System', 18456421, 0.191, 'Q3', 13, 33, 1160, 103, 94, '58', '2010-2020', 'Electrical and Electronic Engineering (Q3); Software (Q4)'), (17893, 'Journal of Electrical Engineering', 1339309, 0.191, 'Q3', 27, 65, 1412, 205, 220, '5', '2004-2020', 'Electrical and Electronic Engineering (Q3)'), (17894, 'Journal of Military Medicine', 17351537, 0.191, 'Q4', 12, 127, 4121, 83, 219, '15', '2011-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (17895, 'Journal of Social Structure', 15291227, 0.191, 'Q3', 6, 5, 295, 10, 19, '2', '2012-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (17896, 'Journal of Youth Development', 23254009, 0.191, 'Q4', 3, 52, 1662, 29, 66, '2', '2019-2020', 'Developmental and Educational Psychology (Q4); Life-span and Life-course Studies (Q4)'), (17897, 'Jurnal Teknologi (Sciences and Engineering)', 21803722, 0.191, 'Q3', 22, 99, 3182, 359, 468, '23', '2006-2007, 2010-2020', 'Engineering (miscellaneous) (Q3)'), (17898, 'Medicina Naturista', 15763080, 0.191, 'Q3', 5, 42, 1041, 16, 64, '12', '2000, 2002, 2004-2011, 2015-2020', 'Complementary and Alternative Medicine (Q3); Chiropractics (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (17899, 'Medicinski Glasnik', 18402445, 0.191, 'Q4', 13, 85, 2378, 118, 126, '90', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (17900, 'Meta: Avaliacao', 21752753, 0.191, 'Q4', 4, 32, 1259, 18, 93, '14', '2009-2020', 'Education (Q4)'), (17901, 'Mineralia Slovaca', 3692086, 0.191, 'Q4', 2, 5, 216, 13, 33, '53', '1981-1985, 1989, 2017-2019', 'Geochemistry and Petrology (Q4); Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (17902, 'Netherlands Journal of Critical Care', 15693511, 0.191, 'Q3', 8, 43, 879, 41, 90, '16', '2008-2020', 'Critical Care and Intensive Care Medicine (Q3)'), (17903, 'Ocean and Polar Research', 1598141, 0.191, 'Q3', 13, 14, 406, 23, 71, '13', '2001-2020', 'Ocean Engineering (Q3); Aquatic Science (Q4); Fluid Flow and Transfer Processes (Q4); Geology (Q4)'), (17904, 'Pharmaceutical Chemistry Journal', 15739031, 0.191, 'Q4', 31, 212, 5202, 371, 582, '2', '1967-2020', 'Drug Discovery (Q4); Pharmacology (Q4)'), (17905, 'Qudus International Journal of Islamic Studie', 24769304, 0.191, 'Q1', 3, 9, 383, 21, 28, '21', '2018-2020', 'History (Q1); Religious Studies (Q1); Cultural Studies (Q2); Political Science and International Relations (Q3)'), (17906, 'Reviews in Agricultural Science', 2187090, 0.191, 'Q3', 3, 23, 2076, 21, 18, '6', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (17907, 'Revista Brasileira de Saude e Producao Animal', 15199940, 0.191, 'Q4', 12, 41, 1118, 63, 120, '14', '2012-2020', 'Animal Science and Zoology (Q4)'), (17908, 'Schole', 19954336, 0.191, 'Q1', 6, 46, 1272, 28, 144, '10', '2011-2020', 'Classics (Q1); Philosophy (Q2)'), (17909, 'Teorema', 2101602, 0.191, 'Q2', 6, 19, 500, 20, 75, '12', '2008-2020', 'Philosophy (Q2)'), (17910, 'Teorija in Praksa', 403598, 0.191, 'Q3', 8, 65, 2659, 30, 153, '60', '1981-1983, 1985, 2011-2020', 'Social Sciences (miscellaneous) (Q3)'), (17911, 'Textile: The Journal of Cloth and Culture', 14759756, 0.191, 'Q3', 10, 39, 927, 16, 84, '3', '2006-2020', 'Arts and Humanities (miscellaneous) (Q3)'), (17912, 'Transactions on Transport Sciences', 18029876, 0.191, 'Q3', 2, 13, 455, 12, 35, '31', '2017-2020', 'Automotive Engineering (Q3); Applied Psychology (Q4); Civil and Structural Engineering (Q4); Management, Monitoring, Policy and Law (Q4); Transportation (Q4)'), (17913, 'Vigo International Journal of Applied Linguis', 16970381, 0.191, 'Q2', 11, 6, 343, 6, 12, '12', '2009-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17914, 'Zhen ci yan jiu = Acupuncture research / [Zho', 10000607, 0.191, 'Q4', 13, 167, 0, 225, 436, '1', '1985-1996, 2007-2020', 'Medicine (miscellaneous) (Q4)'), (17915, 'Acta Horticulturae Sinica', 513353, 0.19, 'Q4', 9, 232, 7401, 464, 973, '1', '2016-2020', 'Horticulture (Q4); Plant Science (Q4)'), (17916, 'Advances in Dynamical Systems and Application', 974021, 0.19, 'Q4', 1, 9, 177, 2, 1, '4', '2019-2020', 'Analysis (Q4); Applied Mathematics (Q4); Computational Mechanics (Q4); Control and Optimization (Q4); Geometry and Topology (Q4); Modeling and Simulation (Q4)'), (17917, 'America Latina en la Historia Economica', 20073496, 0.19, 'Q2', 5, 25, 1227, 24, 72, '30', '2000-2001, 2012-2020', 'History (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17918, 'American Journal of Pharmacy Benefits', 21642494, 0.19, 'Q3', 13, 0, 0, 12, 23, '2', '2010-2018', 'Business and International Management (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Decision Sciences (miscellaneous) (Q4)'), (17919, 'Articulo - Journal of Urban Research', 16614941, 0.19, 'Q3', 6, 7, 434, 18, 34, '78', '2014-2019', 'Urban Studies (Q3)'), (17920, 'Botanica Serbica', 18212638, 0.19, 'Q4', 9, 26, 1252, 40, 68, '55', '2013-2020', 'Plant Science (Q4)'), (17921, 'Carbon and Climate Law Review', 21908230, 0.19, 'Q3', 2, 2, 0, 10, 21, '5', '2019', 'Law (Q3); Global and Planetary Change (Q4); Pollution (Q4)'), (17922, 'Computer Systems Science and Engineering', 2676192, 0.19, 'Q3', 26, 28, 761, 105, 102, '3', '1985-1988, 1990-2020', 'Computer Science (miscellaneous) (Q3); Control and Systems Engineering (Q4); Theoretical Computer Science (Q4)'), (17923, 'Distributed Generation and Alternative Energy', 21566550, 0.19, 'Q3', 12, 1, 30, 32, 32, '2', '2011-2019', 'Electrical and Electronic Engineering (Q3); Energy Engineering and Power Technology (Q4)'), (17924, 'Egyptian Journal of Radiology and Nuclear Med', 378603, 0.19, 'Q4', 13, 253, 5973, 188, 427, '32', '2010-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (17925, 'European Science Editing', 25183354, 0.19, 'Q3', 12, 22, 330, 22, 31, '61', '2006-2020', 'Communication (Q3); Health Informatics (Q4)'), (17926, 'Geopolitica(s)', 21727155, 0.19, 'Q3', 2, 44, 1383, 13, 39, '12', '2017-2020', 'Geography, Planning and Development (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (17927, 'ICIC Express Letters', 1881803, 0.19, 'Q3', 20, 148, 2601, 247, 522, '6', '2009-2020', 'Computer Science (miscellaneous) (Q3); Control and Systems Engineering (Q4)'), (17928, 'Immunohematology', 19303955, 0.19, 'Q4', 25, 22, 0, 35, 79, '2', '1989-2020', 'Hematology (Q4); Immunology and Allergy (Q4); Medicine (miscellaneous) (Q4)'), (17929, 'Informacios Tarsadalom', 15878694, 0.19, 'Q3', 4, 19, 619, 12, 69, '50', '2008-2019', 'Communication (Q3)'), (17930, 'International Journal of Banking, Accounting ', 17553830, 0.19, 'Q4', 10, 20, 1160, 19, 28, '19', '2008-2014, 2020', 'Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (17931, 'International Journal of Christianity and Edu', 2056998, 0.19, 'Q1', 4, 24, 908, 14, 35, '3', '2015-2020', 'Religious Studies (Q1); Education (Q4)'), (17932, 'International Journal of Computational Method', 20460554, 0.19, 'Q4', 9, 35, 836, 115, 222, '3', '2013-2020', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Mechanics (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)'), (17933, 'International Journal of Economics and Busine', 17569869, 0.19, 'Q3', 7, 49, 2482, 116, 176, '19', '2016, 2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (17934, 'International Journal of Environment, Workpla', 17418437, 0.19, 'Q4', 10, 11, 591, 30, 30, '3', '2005-2008', 'Organizational Behavior and Human Resource Management (Q4)'), (17935, 'International Journal of Image and Graphics', 2194678, 0.19, 'Q3', 21, 63, 2308, 72, 49, '37', '2001-2016, 2018-2020', 'Computer Graphics and Computer-Aided Design (Q3); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4)'), (17936, 'International Journal of Management and Enter', 17418127, 0.19, 'Q3', 25, 21, 1256, 38, 50, '3', '2004-2014', 'Business and International Management (Q3); Management Science and Operations Research (Q4)'), (17937, 'International Journal of Probiotics and Prebi', 15551431, 0.19, 'Q4', 15, 2, 170, 28, 30, '2', '2008-2018, 2020', 'Applied Microbiology and Biotechnology (Q4); Food Animals (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)'), (17938, 'International Journal of Stochastic Analysis', 20903340, 0.19, 'Q4', 28, 0, 0, 6, 6, '32', '2010-2018', 'Analysis (Q4); Applied Mathematics (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)'), (17939, 'International journal of yoga therapy', 15312054, 0.19, 'Q4', 13, 13, 0, 43, 46, '2', '2011-2013, 2016-2019', 'Medicine (miscellaneous) (Q4)'), (17940, 'Journal of Distribution Science', 17383110, 0.19, 'Q3', 10, 63, 2585, 239, 323, '13', '2016-2020', 'Business and International Management (Q3); Economics and Econometrics (Q4); Marketing (Q4)'), (17941, 'Journal of Engineering Science and Technology', 17912377, 0.19, 'Q3', 28, 160, 5126, 399, 467, '39', '2008-2020', 'Engineering (miscellaneous) (Q3)'), (17942, 'Journal of Screenwriting', 17597145, 0.19, 'Q1', 5, 23, 947, 10, 52, '3', '2014-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)'), (17943, 'Korean Journal of Neurotrauma', 22348999, 0.19, 'Q4', 3, 48, 917, 34, 68, '13', '2018-2020', 'Surgery (Q4)'), (17944, 'Kriminalistik', 234699, 0.19, 'Q3', 8, 140, 2560, 37, 366, '5', '1974-1983, 1996-2020', 'Law (Q3)'), (17945, 'Legal Studies', 1748121, 0.19, 'Q3', 23, 33, 1418, 65, 104, '2', '1981-2020', 'Law (Q3)'), (17946, 'L Orthodontie fran&amp;#x00e7;aise', 786608, 0.19, 'Q4', 8, 28, 0, 19, 88, '8', '1964-1971, 1973-1992, 1997-2019', 'Medicine (miscellaneous) (Q4)'), (17947, 'Macedonian Journal of Chemistry and Chemical ', 18575552, 0.19, 'Q3', 16, 25, 801, 69, 67, '100', '2008-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q4)'), (17948, 'Medecine Palliative', 16366522, 0.19, 'Q3', 11, 59, 1054, 13, 133, '8', '1970, 2004-2020', 'Anesthesiology and Pain Medicine (Q3); Oncology (Q4); Oncology (nursing) (Q4)'), (17949, 'Metall', 260746, 0.19, 'Q4', 13, 55, 320, 8, 107, '5', '1968-1994, 1996-2020', 'Condensed Matter Physics (Q4); Materials Chemistry (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (17950, 'Notes and Records of the Royal Society', 359149, 0.19, 'Q3', 18, 35, 1754, 40, 72, '3', '1970-1973, 1975-2020', 'History and Philosophy of Science (Q3)'), (17951, 'NTT Technical Review', 13483447, 0.19, 'Q3', 15, 85, 297, 42, 368, '6', '2003-2019', 'Computer Networks and Communications (Q3); Electrical and Electronic Engineering (Q3); Computer Science Applications (Q4)'), (17952, 'Poradnik Jezykowy', 5515343, 0.19, 'Q2', 3, 82, 1882, 18, 226, '17', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17953, 'Pragmalinguistica', 1133682, 0.19, 'Q2', 3, 0, 0, 10, 53, '12', '2011-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (17954, 'Progress in Neurology and Psychiatry', 13677543, 0.19, 'Q4', 12, 33, 494, 31, 72, '3', '1946-1948, 1952-1957, 1961, 1963, 1965-1972, 2008-2020', 'Neurology (Q4); Neurology (clinical) (Q4); Psychiatric Mental Health (Q4); Psychiatry and Mental Health (Q4)'), (17955, 'Przeglad Elektrotechniczny', 332097, 0.19, 'Q3', 27, 488, 8754, 729, 1565, '17', '1969-1984, 2005-2020', 'Electrical and Electronic Engineering (Q3)'), (17956, 'Rambam Maimonides Medical Journal', 20769172, 0.19, 'Q4', 3, 39, 1856, 28, 24, '36', '2019-2020', 'Medicine (miscellaneous) (Q4)'), (17957, 'Reports in Medical Imaging', 11791586, 0.19, 'Q4', 8, 1, 100, 14, 15, '41', '2010-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (17958, 'Revista Pedagogia Universitaria y Didactica d', 7195885, 0.19, 'Q3', 3, 27, 851, 29, 13, '45', '2019', 'Law (Q3); Education (Q4)'), (17959, 'Revue Francaise d Administration Publique', 1527401, 0.19, 'Q3', 14, 57, 1417, 29, 120, '8', '2002-2020', 'Sociology and Political Science (Q3); Public Administration (Q4)'), (17960, 'Russian Electronic Journal of Radiology', 22227415, 0.19, 'Q4', 5, 84, 1813, 53, 287, '10', '2016-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (17961, 'Sixties, The', 17541336, 0.19, 'Q2', 6, 8, 229, 4, 29, '3', '2008-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (17962, 'Small Axe', 15346714, 0.19, 'Q1', 2, 48, 974, 22, 74, '2', '2018-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Sociology and Political Science (Q3)'), (17963, 'Studies in European Cinema', 17411548, 0.19, 'Q1', 9, 30, 995, 22, 55, '3', '2004-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q3)'), (17964, 'VacciMonitor', 10250298, 0.19, 'Q4', 4, 20, 415, 13, 43, '85', '2012-2020', 'Drug Discovery (Q4); Immunology (Q4); Immunology and Allergy (Q4); Molecular Medicine (Q4)'), (17965, 'Voprosy Pitaniia', 428833, 0.19, 'Q4', 16, 85, 2642, 200, 225, '10', '1954-2020', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)'), (17966, 'Actual Problems of Theory and History of Art', 23122129, 0.189, 'Q1', 3, 76, 1978, 19, 226, '10', '2011-2019', 'Visual Arts and Performing Arts (Q1); History (Q2)'), (17967, 'Aegyptus', 18277888, 0.189, 'Q2', 5, 0, 0, 12, 27, '7', '1972, 1977, 2002-2018', 'Archeology (Q2); Archeology (arts and humanities) (Q2); History (Q2)'), (17968, 'Agrociencia', 14053195, 0.189, 'Q3', 22, 76, 2386, 116, 246, '30', '2000-2020', 'Environmental Science (miscellaneous) (Q3); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Plant Science (Q4)'), (17969, 'Anales del Jardin Botanico de Madrid', 2111322, 0.189, 'Q4', 15, 13, 574, 19, 40, '12', '2004, 2008-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (17970, 'Annals of Pediatric Surgery', 16874137, 0.189, 'Q3', 6, 54, 1011, 33, 119, '2', '2009, 2011-2020', 'Pediatrics, Perinatology and Child Health (Q3); Surgery (Q4)'), (17971, 'British Journal of Diabetes and Vascular Dise', 17534305, 0.189, 'Q4', 24, 0, 0, 18, 30, '2', '2003-2017', 'Cardiology and Cardiovascular Medicine (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (17972, 'Ceska Gynekologie', 12107832, 0.189, 'Q3', 16, 69, 1417, 83, 213, '31', '1959-1963, 1994-2020', 'Obstetrics and Gynecology (Q3)'), (17973, 'Chemical Industry and Chemical Engineering Qu', 14519372, 0.189, 'Q3', 26, 40, 1455, 108, 139, '55', '2000-2020', 'Chemical Engineering (miscellaneous) (Q3)'), (17974, 'Christian Education Journal', 7398913, 0.189, 'Q1', 1, 53, 1928, 10, 54, '2', '2018-2020', 'Religious Studies (Q1); Education (Q4)'), (17975, 'Chuan Bo Li Xue/Journal of Ship Mechanics', 10077294, 0.189, 'Q3', 18, 172, 3100, 156, 459, '1', '1998-2020', 'Ocean Engineering (Q3); Mechanical Engineering (Q4)'), (17976, 'Commentationes Mathematicae Universitatis Car', 102628, 0.189, 'Q4', 27, 1, 13, 53, 122, '31', '1996-2019', 'Mathematics (miscellaneous) (Q4)'), (17977, 'Communications in Mathematical Biology and Ne', 20522541, 0.189, 'Q4', 7, 98, 2754, 71, 74, '3', '2017-2020', 'Applied Mathematics (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4)'), (17978, 'Dandao Xuebao/Journal of Ballistics', 1004499, 0.189, 'Q4', 14, 58, 775, 39, 191, '1', '2001-2020', 'Mechanical Engineering (Q4)'), (17979, 'Economia Chilena', 7173830, 0.189, 'Q4', 5, 0, 0, 9, 28, '45', '2008-2019', 'Economics and Econometrics (Q4); Finance (Q4)'), (17980, 'Environmental Protection Engineering', 3248828, 0.189, 'Q4', 21, 7, 161, 124, 194, '17', '1980-1981, 1983, 1996-2019', 'Environmental Engineering (Q4); Waste Management and Disposal (Q4)'), (17981, 'Global Business and Economics Review', 10974954, 0.189, 'Q4', 13, 39, 2433, 67, 111, '3', '2004-2014, 2017, 2020', 'Business and International Management (Q4); Economics and Econometrics (Q4)'), (17982, 'Hispania - Revista Espanola de Historia', 182141, 0.189, 'Q2', 10, 22, 1535, 16, 67, '12', '1968, 1974, 1978-1979, 1990, 1996-2020', 'History (Q2)'), (17983, 'International and Multidisciplinary Journal o', 20143680, 0.189, 'Q2', 3, 13, 679, 10, 12, '12', '2014, 2019-2020', 'History (Q2); Philosophy (Q2); Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4)'), (17984, 'International Journal of Applied Mechanics an', 23539003, 0.189, 'Q4', 8, 58, 1584, 158, 191, '5', '2015-2020', 'Civil and Structural Engineering (Q4); Fluid Flow and Transfer Processes (Q4); Transportation (Q4)'), (17985, 'International Journal of Information Technolo', 15541053, 0.189, 'Q3', 14, 21, 709, 66, 65, '2', '2006-2020', 'Computer Science (miscellaneous) (Q3)'), (17986, 'International Journal of Technology, Policy a', 17415292, 0.189, 'Q3', 19, 18, 691, 26, 58, '3', '2001-2014', 'Business, Management and Accounting (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)'), (17987, 'IT - Information Technology', 21967032, 0.189, 'Q3', 4, 28, 891, 30, 33, '5', '2019-2020', 'Computer Science (miscellaneous) (Q3)'), (17988, 'Journal of Applied Mathematics and Mechanics', 218928, 0.189, 'Q4', 25, 0, 0, 29, 30, '3', '1958-2017', 'Applied Mathematics (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4)'), (17989, 'Journal of Applied Nonlinear Dynamics', 21646457, 0.189, 'Q4', 10, 45, 1347, 74, 120, '2', '2012-2020', 'Civil and Structural Engineering (Q4); Mechanical Engineering (Q4)'), (17990, 'Journal of Chemical Research', 17475198, 0.189, 'Q4', 30, 165, 5682, 278, 400, '3', '2000, 2004-2020', 'Chemistry (miscellaneous) (Q4)'), (17991, 'Journal of Educational Media and Library Scie', 1013090, 0.189, 'Q2', 8, 12, 375, 13, 37, '22', '2005-2019', 'Archeology (arts and humanities) (Q2); Conservation (Q2); Library and Information Sciences (Q3); Information Systems (Q4)'), (17992, 'Journal of World s Poultry Research', 2322455, 0.189, 'Q4', 6, 103, 3798, 86, 110, '18', '2017-2020', 'Animal Science and Zoology (Q4); Food Animals (Q4)'), (17993, 'Language Problems and Language Planning', 15699889, 0.189, 'Q2', 21, 5, 200, 22, 46, '16', '1977-2019', 'Linguistics and Language (Q2); Communication (Q3)'), (17994, 'Libri Oncologici', 3008142, 0.189, 'Q4', 3, 7, 158, 10, 51, '58', '1972-1978, 1988-1999, 2001-2020', 'Oncology (Q4)'), (17995, 'Lipid Technology', 956666, 0.189, 'Q4', 21, 0, 0, 11, 10, '2', '2009-2017', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Control and Systems Engineering (Q4); Food Science (Q4)'), (17996, 'Mediterranean Botany', 26039109, 0.189, 'Q4', 4, 14, 846, 27, 30, '12', '2018-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (17997, 'New directions for student leadership', 23733357, 0.189, 'Q4', 5, 47, 0, 35, 87, '6', '2015-2020', 'Medicine (miscellaneous) (Q4)'), (17998, 'Opus', 15177017, 0.189, 'Q2', 2, 47, 1737, 10, 101, '14', '2017-2019', 'Music (Q2)'), (17999, 'Parallel Processing Letters', 1793642, 0.189, 'Q4', 31, 25, 507, 41, 49, '37', '1994-2020', 'Hardware and Architecture (Q4); Software (Q4); Theoretical Computer Science (Q4)'), (18000, 'Philippine Journal of Systematic Biology', 25080342, 0.189, 'Q4', 3, 28, 1234, 24, 43, '63', '2017-2019', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (18001, 'Praxema', 24089176, 0.189, 'Q2', 3, 39, 718, 36, 104, '10', '2018-2020', 'Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18002, 'Problems of Cryobiology and Cryomedicine', 23076143, 0.189, 'Q4', 4, 52, 895, 24, 73, '44', '2013-2020', 'Biophysics (Q4); Medicine (miscellaneous) (Q4)'), (18003, 'Problemy Analiza', 23063432, 0.189, 'Q4', 6, 29, 463, 46, 75, '10', '2016-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (18004, 'Public Services Quarterly', 15229114, 0.189, 'Q3', 14, 23, 295, 27, 79, '2', '2002-2003, 2006-2020', 'Library and Information Sciences (Q3); Accounting (Q4); Public Administration (Q4)'), (18005, 'Revista de Economia Mundial', 15760162, 0.189, 'Q2', 11, 24, 1192, 37, 77, '12', '2003-2020', 'History (Q2); Geography, Planning and Development (Q3); Political Science and International Relations (Q3); Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4); Transportation (Q4)'), (18006, 'Revue d Histoire des Mathematiques', 1777568, 0.189, 'Q2', 8, 6, 513, 4, 11, '8', '2005-2019', 'History (Q2); Mathematics (miscellaneous) (Q4)'), (18007, 'Schweizerische Zeitschrift fur Forstwesen', 22351469, 0.189, 'Q4', 10, 38, 604, 28, 123, '19', '1978-1979, 1982, 1984-1987, 1989, 2011-2020', 'Forestry (Q4)'), (18008, 'Studia Universitatis Babes-Bolyai Chemia', 12247154, 0.189, 'Q4', 11, 81, 2212, 162, 281, '43', '2009-2020', 'Chemistry (miscellaneous) (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (18009, 'Acta Colombiana de Psicologia', 19099711, 0.188, 'Q4', 11, 33, 1548, 47, 74, '47', '2007-2020', 'Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)'), (18010, 'Acta Linguistica Hafniensia', 3740463, 0.188, 'Q2', 13, 13, 748, 10, 31, '3', '1939-1940, 1942, 1944-1945, 1951-1952, 1960, 1965-1966, 1968-1969, 1971, 1973-1974, 1978, 1982-1983,', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18011, 'Advanced Composites Letters', 9636935, 0.188, 'Q3', 21, 74, 2381, 69, 90, '3', '1995-2020', 'Industrial and Manufacturing Engineering (Q3); Ceramics and Composites (Q4)'), (18012, 'Ancient Philosophy', 7402007, 0.188, 'Q1', 17, 21, 765, 11, 51, '2', '1980, 1996-2020', 'Classics (Q1); Philosophy (Q2)'), (18013, 'Asian anthropology', 21684227, 0.188, 'Q3', 7, 18, 740, 34, 50, '3', '2002, 2015-2020', 'Anthropology (Q3)'), (18014, 'Brazilian Journal of Occupational Therapy', 25268910, 0.188, 'Q4', 4, 68, 2820, 65, 162, '14', '2018-2020', 'Education (Q4); Health (social science) (Q4); Occupational Therapy (Q4)'), (18015, 'Bulletin of Ugric Studies', 25879766, 0.188, 'Q2', 3, 60, 1508, 51, 66, '10', '2019-2020', 'History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Anthropology (Q3); History and Philosophy of Science (Q3)'), (18016, 'Ceskoslovenska Psychologie', 18046436, 0.188, 'Q3', 15, 28, 1186, 57, 109, '31', '1960-1962, 1996-2020', 'Arts and Humanities (miscellaneous) (Q3); Psychology (miscellaneous) (Q4)'), (18017, 'Chemical and Process Engineering - Inzynieria', 2086425, 0.188, 'Q3', 20, 13, 382, 77, 111, '17', '1986-1989, 1996-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q4)'), (18018, 'Communicatio', 17535379, 0.188, 'Q3', 13, 25, 1265, 44, 69, '3', '1975-1976, 1978-2020', 'Communication (Q3)'), (18019, 'Digital Icons', 20437633, 0.188, 'Q1', 1, 0, 0, 7, 14, '3', '2017', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Linguistics and Language (Q2); Communication (Q3)'), (18020, 'Early Music', 17417260, 0.188, 'Q2', 14, 40, 762, 22, 151, '3', '1973-2019', 'Music (Q2)'), (18021, 'Electronic Journal of General Medicine', 25163507, 0.188, 'Q4', 17, 78, 2416, 216, 218, '3', '2018-2020', 'Medicine (miscellaneous) (Q4)'), (18022, 'Giornale di Chirurgia', 3919005, 0.188, 'Q4', 22, 18, 547, 130, 211, '7', '1946-1958, 1982-2020', 'Medicine (miscellaneous) (Q4); Surgery (Q4)'), (18023, 'IEICE Transactions on Fundamentals of Electro', 9168508, 0.188, 'Q3', 52, 219, 4356, 522, 991, '6', '1993-2020', 'Computer Graphics and Computer-Aided Design (Q3); Electrical and Electronic Engineering (Q3); Applied Mathematics (Q4); Signal Processing (Q4)'), (18024, 'International Organizations Law Review', 15723739, 0.188, 'Q3', 18, 23, 1254, 16, 44, '16', '2004-2019', 'Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4)'), (18025, 'Journal of Amino Acids', 20900104, 0.188, 'Q4', 5, 0, 0, 4, 1, '32', '2014-2017', 'Biochemistry (Q4); Molecular Biology (Q4)'), (18026, 'Journal of Consumer Satisfaction, Dissatisfac', 8998620, 0.188, 'Q4', 2, 0, 0, 6, 8, '2', '2018', 'Applied Psychology (Q4); Business and International Management (Q4); Marketing (Q4); Social Psychology (Q4)'), (18027, 'Journal of Contemporary History', 220094, 0.188, 'Q2', 34, 47, 0, 53, 115, '3', '1966-1990, 1993-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (18028, 'Journal of Hard Tissue Biology', 13417649, 0.188, 'Q4', 12, 38, 1025, 81, 165, '6', '2003-2005, 2007-2020', 'Biochemistry (Q4); Biomaterials (Q4); Cell Biology (Q4); Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4)'), (18029, 'Journal of Index Investing', 21547238, 0.188, 'Q4', 2, 27, 496, 15, 44, '3', '2018-2020', 'Finance (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (18030, 'Journal of Indian Council of Philosophical Re', 23639962, 0.188, 'Q2', 3, 35, 552, 16, 94, '4', '2015-2020', 'Philosophy (Q2)'), (18031, 'Journal of Intellectual Property Rights', 9717544, 0.188, 'Q3', 13, 21, 781, 30, 68, '4', '2008-2020', 'Law (Q3)'), (18032, 'Journal of Optoelectronics and Advanced Mater', 14544164, 0.188, 'Q3', 48, 91, 2695, 179, 325, '43', '1999-2020', 'Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (18033, 'Journal of Theoretical and Philosophical Psyc', 10688471, 0.188, 'Q2', 23, 16, 559, 47, 48, '2', '1986-2020', 'Philosophy (Q2); Psychology (miscellaneous) (Q4)'), (18034, 'Maejo International Journal of Science and Te', 19057873, 0.188, 'Q3', 16, 20, 540, 38, 57, '40', '2009-2020', 'Multidisciplinary (Q3)'), (18035, 'Mekhatronika, Avtomatizatsiya, Upravlenie', 16846427, 0.188, 'Q3', 2, 78, 1657, 27, 89, '10', '2019-2020', 'Electrical and Electronic Engineering (Q3); Artificial Intelligence (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Human-Computer Interaction (Q4); Software (Q4)'), (18036, 'Mocaxue Xuebao/Tribology', 10040595, 0.188, 'Q4', 25, 89, 2254, 188, 288, '1', '1993-2020', 'Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces, Coatings and Films (Q4)'), (18037, 'Music Scholarship', 19970854, 0.188, 'Q2', 6, 80, 984, 52, 230, '10', '2016-2020', 'Music (Q2); Education (Q4)'), (18038, 'Perinola', 11386363, 0.188, 'Q1', 5, 6, 390, 8, 46, '12', '2011-2020', 'Literature and Literary Theory (Q1)'), (18039, 'Revista de Direito, Estado e Telecomunicacoes', 19849729, 0.188, 'Q3', 3, 20, 693, 11, 47, '14', '2009, 2013-2020', 'Electrical and Electronic Engineering (Q3); Law (Q3); Computer Networks and Communications (Q4)'), (18040, 'Revue Sage - Femme', 16374088, 0.188, 'Q3', 3, 78, 897, 8, 124, '8', '2004-2020', 'Maternity and Midwifery (Q3)'), (18041, 'Rural China', 22136746, 0.188, 'Q2', 6, 14, 378, 21, 46, '16', '2013-2019', 'Cultural Studies (Q2); History (Q2); Anthropology (Q3); Geography, Planning and Development (Q3)'), (18042, 'Russian Journal of Nematology', 8696918, 0.188, 'Q4', 23, 10, 382, 17, 40, '10', '1996-2015, 2017', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (18043, 'SA Journal of Human Resource Management', 2071078, 0.188, 'Q3', 5, 37, 2346, 83, 92, '27', '2018-2020', 'Demography (Q3); Organizational Behavior and Human Resource Management (Q4)'), (18044, 'Shiyou Huagong Shebei/ Petro-Chemical Equipme', 10007466, 0.188, 'Q3', 8, 89, 1669, 24, 264, '1', '1998, 2001-2004, 2006-2020', 'Chemical Engineering (miscellaneous) (Q3); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)'), (18045, 'Statistics and Risk Modeling', 21931402, 0.188, 'Q4', 19, 3, 77, 22, 20, '5', '1982-2002, 2011-2020', 'Modeling and Simulation (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (18046, 'Tecnologia y Ciencias del Agua', 1878336, 0.188, 'Q4', 12, 62, 2093, 86, 195, '30', '2010-2020', 'Civil and Structural Engineering (Q4); Water Science and Technology (Q4)'), (18047, 'Vavilovskii Zhurnal Genetiki i Selektsii', 25000462, 0.188, 'Q3', 7, 94, 4189, 232, 386, '10', '2017-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (18048, 'Wisdom', 18293824, 0.188, 'Q2', 2, 53, 1101, 9, 46, '93', '2018-2020', 'Philosophy (Q2)'), (18049, 'Women s History Review', 9612025, 0.188, 'Q2', 22, 108, 0, 52, 179, '3', '1992-2020', 'History (Q2); Gender Studies (Q3)'), (18050, 'WT Werkstattstechnik', 14364980, 0.188, 'Q4', 9, 142, 1953, 85, 404, '5', '2012-2020', 'Automotive Engineering (Q4); Control and Systems Engineering (Q4)'), (18051, 'Acta Bioethica', 1726569, 0.187, 'Q4', 8, 29, 662, 33, 84, '45', '2007-2020', 'Health Policy (Q4); Health (social science) (Q4)'), (18052, 'Advances in Transportation Studies', 18245463, 0.187, 'Q3', 16, 43, 1193, 86, 191, '7', '2004-2020', 'Safety, Risk, Reliability and Quality (Q3); Automotive Engineering (Q4); Civil and Structural Engineering (Q4); Transportation (Q4)'), (18053, 'America Latina Hoy', 11302887, 0.187, 'Q2', 8, 23, 1029, 26, 59, '12', '2011-2020', 'History (Q2); Sociology and Political Science (Q3)'), (18054, 'ArcHistoR', 23848898, 0.187, 'Q1', 1, 103, 2634, 9, 86, '7', '2019', 'Visual Arts and Performing Arts (Q1); Architecture (Q2); History (Q2)'), (18055, 'Archives des Sciences', 1661464, 0.187, 'Q3', 14, 5, 185, 2, 15, '19', '2004-2014, 2017-2018', 'Multidisciplinary (Q3)'), (18056, 'Asian Journal of Business and Accounting', 21803137, 0.187, 'Q4', 12, 22, 1208, 62, 55, '23', '2008-2020', 'Accounting (Q4); Business and International Management (Q4)'), (18057, 'Avant', 20826710, 0.187, 'Q3', 9, 63, 2170, 21, 129, '17', '2010-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Cognitive Neuroscience (Q4)'), (18058, 'B.E. Journal of Theoretical Economics', 19351704, 0.187, 'Q3', 18, 62, 1693, 33, 92, '5', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (18059, 'Brazilian Journal of Veterinary Research and ', 16784456, 0.187, 'Q3', 17, 40, 1299, 53, 136, '14', '2006-2020', 'Veterinary (miscellaneous) (Q3)'), (18060, 'Canadian Journal of Latin American and Caribb', 8263663, 0.187, 'Q3', 11, 21, 1002, 29, 52, '9', '1984-2011, 2014-2020', 'Geography, Planning and Development (Q3); Political Science and International Relations (Q3); Development (Q4)'), (18061, 'Clinical Medicine Insights: Case Reports', 11795476, 0.187, 'Q4', 12, 33, 678, 66, 109, '41', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (18062, 'Congress and the Presidency', 7343469, 0.187, 'Q3', 15, 19, 1000, 11, 54, '3', '1981-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18063, 'Dialectologia et Geolinguistica', 9424040, 0.187, 'Q2', 5, 5, 195, 7, 20, '5', '1993-1995, 2009-2012, 2014-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18064, 'Dilemas', 19835922, 0.187, 'Q3', 8, 41, 1547, 17, 93, '14', '2013-2020', 'Law (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (18065, 'Geographische Rundschau', 167460, 0.187, 'Q3', 12, 119, 948, 19, 181, '5', '1975, 1977-2014, 2018-2020', 'Energy (miscellaneous) (Q3); Geography, Planning and Development (Q3); Atmospheric Science (Q4); Water Science and Technology (Q4)'), (18066, 'Geologija', 167789, 0.187, 'Q4', 7, 26, 1288, 31, 62, '60', '1981-1982, 2014-2020', 'Geology (Q4); Geophysics (Q4); Paleontology (Q4)'), (18067, 'Global Economy Journal', 15245861, 0.187, 'Q3', 18, 23, 1064, 37, 77, '5', '2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (18068, 'Hispania', 182133, 0.187, 'Q2', 11, 47, 1448, 33, 211, '2', '2010, 2013-2020', 'Linguistics and Language (Q2); Education (Q4)'), (18069, 'Human Affairs', 12103055, 0.187, 'Q2', 13, 53, 1550, 51, 117, '5', '2001, 2007-2020', 'Philosophy (Q2); Law (Q3); Sociology and Political Science (Q3)'), (18070, 'Icelandic Agricultural Sciences', 1670567, 0.187, 'Q4', 10, 8, 267, 14, 20, '87', '2010-2019', 'Agronomy and Crop Science (Q4)'), (18071, 'IC Revista Cientifica de Informacion y Comuni', 21731071, 0.187, 'Q2', 2, 0, 0, 8, 24, '12', '2016-2018', 'Cultural Studies (Q2); Linguistics and Language (Q2); Communication (Q3); Library and Information Sciences (Q3)'), (18072, 'Indian Phytopathology', 367973, 0.187, 'Q4', 6, 104, 3447, 103, 250, '2', '1987-1988, 2016-2020', 'Agronomy and Crop Science (Q4); Plant Science (Q4)'), (18073, 'Indo-European Linguistics', 22125892, 0.187, 'Q2', 2, 7, 591, 7, 16, '16', '2018-2019', 'Cultural Studies (Q2); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3); Experimental and Cognitive Psychology (Q4)'), (18074, 'Innovative Surgical Sciences', 23647485, 0.187, 'Q4', 5, 94, 3276, 23, 27, '5', '2017-2020', 'Surgery (Q4)'), (18075, 'International Journal of Grid and Utility Com', 1741847, 0.187, 'Q3', 20, 73, 2325, 174, 127, '3', '2005, 2009, 2011-2014, 2020', 'Management Information Systems (Q3); Applied Mathematics (Q4); Computer Science Applications (Q4)'), (18076, 'International Journal of Intelligent Engineer', 21853118, 0.187, 'Q3', 15, 234, 6506, 594, 528, '6', '2008-2020', 'Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3)'), (18077, 'International Journal of Mechanical Engineeri', 22780149, 0.187, 'Q4', 9, 243, 4299, 309, 355, '4', '2016-2020', 'Artificial Intelligence (Q4); Control and Systems Engineering (Q4); Mechanical Engineering (Q4)'), (18078, 'International Journal of Surgery Open', 24058572, 0.187, 'Q4', 7, 124, 3381, 87, 118, '3', '2015-2020', 'Surgery (Q4)'), (18079, 'Iranian Journal of Electrical and Electronic ', 17352827, 0.187, 'Q3', 13, 78, 2288, 136, 132, '15', '2010-2020', 'Electrical and Electronic Engineering (Q3)'), (18080, 'Irish Medical Journal', 3323102, 0.187, 'Q4', 31, 234, 2454, 161, 389, '42', '1974-2020', 'Medicine (miscellaneous) (Q4)'), (18081, 'Journal of Condensed Matter Nuclear Science', 22273123, 0.187, 'Q4', 6, 23, 622, 47, 95, '3', '2016-2017, 2019', 'Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)'), (18082, 'Journal of Histotechnology', 1478885, 0.187, 'Q3', 22, 36, 677, 46, 60, '3', '1977-2020', 'Medical Laboratory Technology (Q3); Anatomy (Q4); Histology (Q4)'), (18083, 'Journal of Postcolonial Writing', 17449863, 0.187, 'Q1', 15, 74, 2193, 48, 147, '3', '2005-2020', 'Literature and Literary Theory (Q1)'), (18084, 'Journal of Urban and Environmental Engineerin', 19823932, 0.187, 'Q3', 13, 15, 656, 59, 88, '14', '2007-2020', 'Urban Studies (Q3); Environmental Engineering (Q4)'), (18085, 'Knygotyra', 23450053, 0.187, 'Q1', 1, 34, 1162, 8, 36, '69', '2018-2020', 'Literature and Literary Theory (Q1); Communication (Q3); Library and Information Sciences (Q3)'), (18086, 'Laryngo- Rhino- Otologie', 9358943, 0.187, 'Q4', 33, 215, 4161, 154, 436, '5', '1989-2020', 'Otorhinolaryngology (Q4)'), (18087, 'Lebende Sprachen', 239909, 0.187, 'Q2', 5, 18, 740, 12, 63, '5', '1956-1976, 1978-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18088, 'Mathematical Intelligencer', 3436993, 0.187, 'Q3', 26, 54, 757, 52, 144, '2', '1977-2020', 'History and Philosophy of Science (Q3); Mathematics (miscellaneous) (Q4)'), (18089, 'Network Modeling and Analysis in Health Infor', 21926670, 0.187, 'Q4', 13, 64, 2628, 67, 61, '2', '2012-2020', 'Urology (Q4)'), (18090, 'Neurodiagnostic journal,The', 21646821, 0.187, 'Q3', 17, 37, 334, 31, 91, '3', '1996-2020', 'Medical Laboratory Technology (Q3); Neurology (clinical) (Q4)'), (18091, 'Nursing', 3604039, 0.187, 'Q3', 23, 212, 1449, 180, 513, '2', '1971-2020', 'Advanced and Specialized Nursing (Q3); Emergency Nursing (Q3); LPN and LVN (Q3); Assessment and Diagnosis (Q4); Critical Care Nursing (Q4)'), (18092, 'Pesquisas em Geociencias', 18079806, 0.187, 'Q4', 9, 19, 931, 32, 71, '14', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (18093, 'Plural. History. Culture. Society', 2345184, 0.187, 'Q2', 2, 16, 394, 10, 28, '123', '2018-2019', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (18094, 'Psiholingvistika', 23091797, 0.187, 'Q2', 2, 51, 1640, 19, 39, '44', '2019-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Experimental and Cognitive Psychology (Q4)'), (18095, 'Psihoterapija', 3503186, 0.187, 'Q4', 2, 20, 639, 14, 34, '58', '1973, 1999, 2016-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (18096, 'Reneng Dongli Gongcheng/Journal of Engineerin', 10012060, 0.187, 'Q4', 15, 340, 6014, 293, 761, '1', '1998-2020', 'Condensed Matter Physics (Q4); Mechanical Engineering (Q4)'), (18097, 'Review of Middle East Studies', 21513481, 0.187, 'Q2', 6, 14, 156, 29, 57, '2', '2007-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (18098, 'Revista Cubana de Medicina Militar', 15613046, 0.187, 'Q4', 8, 90, 1677, 19, 161, '85', '1996-2002, 2006-2020', 'Medicine (miscellaneous) (Q4)'), (18099, 'Slovo a Slovesnost', 377031, 0.187, 'Q2', 6, 19, 812, 12, 43, '31', '2004-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18100, 'Studia Linguistica', 393193, 0.187, 'Q2', 28, 26, 2001, 17, 56, '2', '1947-1949, 1951-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); History and Philosophy of Science (Q3)'), (18101, 'SUT Journal of Mathematics', 9165746, 0.187, 'Q4', 15, 11, 221, 10, 23, '6', '1995-2019', 'Mathematics (miscellaneous) (Q4)'), (18102, 'T oung Pao', 15685322, 0.187, 'Q1', 8, 13, 571, 11, 35, '16', '1890-1891, 1897, 1899-1901, 1907, 1909, 1916, 1918, 1920, 1924-1925, 1929, 1931, 1933-1934, 1939-194', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); History and Philosophy of Science (Q3)'), (18103, 'Turkish Journal of Pediatrics', 414301, 0.187, 'Q3', 36, 152, 3696, 238, 430, '18', '1963-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (18104, 'Vjesnik Bibliotekara Hrvatske', 5071925, 0.187, 'Q3', 6, 33, 968, 19, 123, '58', '2009-2019', 'Library and Information Sciences (Q3)'), (18105, 'Zpravy Lesnickeho Vyzkumu', 18059872, 0.187, 'Q3', 10, 30, 1337, 39, 96, '31', '2009-2020', 'Nature and Landscape Conservation (Q3); Forestry (Q4)'), (18106, 'African Vision and Eye Health', 24101516, 0.186, 'Q4', 5, 35, 1150, 38, 72, '27', '2015-2020', 'Ophthalmology (Q4); Optometry (Q4)'), (18107, 'Applied Economics Quarterly', 18655122, 0.186, 'Q3', 3, 4, 213, 17, 41, '5', '2016-2018', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (18108, 'Archivio Penale', 40304, 0.186, 'Q3', 3, 187, 13121, 8, 287, '7', '2017-2020', 'Law (Q3)'), (18109, 'Azerbaijan Medical Journal', 52523, 0.186, 'Q4', 3, 64, 924, 15, 283, '92', '1961-1963, 2002-2013, 2016-2020', 'Medicine (miscellaneous) (Q4)'), (18110, 'Chinese Journal of Lung Cancer', 10093419, 0.186, 'Q4', 16, 160, 5698, 248, 419, '1', '2002-2020', 'Cancer Research (Q4); Oncology (Q4); Pulmonary and Respiratory Medicine (Q4)'), (18111, 'Current Anesthesiology Reports', 15233855, 0.186, 'Q3', 4, 62, 4097, 54, 74, '2', '2018-2020', 'Anesthesiology and Pain Medicine (Q3)'), (18112, 'Cytology and Genetics', 954527, 0.186, 'Q4', 13, 69, 2692, 101, 184, '10', '1978, 1982, 1984, 1988-1989, 2009-2020', 'Genetics (Q4); Genetics (clinical) (Q4); Histology (Q4)'), (18113, 'Deutsch als Fremdsprache', 119741, 0.186, 'Q2', 2, 18, 459, 6, 49, '5', '2013, 2017-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (18114, 'Educacion Matematica', 24488089, 0.186, 'Q4', 2, 33, 1039, 19, 61, '30', '2018-2020', 'Education (Q4); Mathematics (miscellaneous) (Q4)'), (18115, 'Estetika : The Central European Journal of Ae', 141291, 0.186, 'Q1', 4, 12, 297, 9, 33, '31', '2008-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Philosophy (Q2)'), (18116, 'Forktail', 9501746, 0.186, 'Q4', 9, 0, 0, 8, 14, '3', '1986, 2009-2014, 2018', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (18117, 'Gefasschirurgie', 9487034, 0.186, 'Q4', 14, 105, 2542, 113, 239, '5', '1996-2020', 'Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)'), (18118, 'Hacettepe Egitim Dergisi', 13005340, 0.186, 'Q4', 17, 68, 4056, 79, 185, '18', '2008-2020', 'Education (Q4)'), (18119, 'History of Psychiatry', 957154, 0.186, 'Q4', 26, 40, 2069, 36, 94, '3', '1990-2020', 'Psychiatry and Mental Health (Q4)'), (18120, 'Iberoamerica (Russian Federation)', 20759711, 0.186, 'Q3', 2, 36, 964, 16, 82, '10', '2017-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3); Political Science and International Relations (Q3); Safety Research (Q3); Sociology and Political Science (Q3)'), (18121, 'International Community Law Review', 18719732, 0.186, 'Q3', 13, 33, 1201, 22, 57, '16', '2007-2020', 'Law (Q3); Political Science and International Relations (Q3)'), (18122, 'International Journal of Business and Globali', 17533627, 0.186, 'Q3', 15, 80, 3990, 95, 197, '19', '2007, 2011-2014, 2020', 'Business, Management and Accounting (miscellaneous) (Q3)'), (18123, 'International Journal of Web Information Syst', 17440084, 0.186, 'Q4', 18, 24, 993, 106, 91, '3', '2005-2020', 'Computer Networks and Communications (Q4); Information Systems (Q4)'), (18124, 'Istoriya', 20798784, 0.186, 'Q1', 1, 428, 10546, 23, 321, '10', '2019-2020', 'Visual Arts and Performing Arts (Q1); History (Q2); History and Philosophy of Science (Q3); Sociology and Political Science (Q3)'), (18125, 'Jahrbuch fur Wirtschaftsgeschichte', 752800, 0.186, 'Q2', 9, 22, 989, 15, 59, '5', '1960-1996, 1999-2020', 'History (Q2); Economics and Econometrics (Q4)'), (18126, 'Jazykovedny Casopis', 215597, 0.186, 'Q2', 4, 26, 737, 23, 121, '53', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18127, 'Journal Global Policy and Governance', 21947759, 0.186, 'Q3', 2, 16, 485, 4, 12, '5', '2019-2020', 'Political Science and International Relations (Q3); Economics and Econometrics (Q4)'), (18128, 'Journal of Historical Sociology', 14676443, 0.186, 'Q2', 26, 44, 1879, 62, 124, '3', '1988-2020', 'History (Q2); Sociology and Political Science (Q3)'), (18129, 'Journal of Microbiology, Biotechnology and Fo', 13385178, 0.186, 'Q4', 7, 183, 7836, 266, 389, '53', '2016-2020', 'Biotechnology (Q4); Food Science (Q4); Microbiology (Q4); Molecular Biology (Q4)'), (18130, 'Journal of the Early Republic', 2751275, 0.186, 'Q2', 17, 30, 1463, 20, 70, '2', '1983, 1987, 2002-2019', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (18131, 'Journal of the Hellenic Veterinary Medical So', 17922720, 0.186, 'Q3', 7, 75, 2992, 89, 185, '39', '1953, 2003-2004, 2011-2020', 'Veterinary (miscellaneous) (Q3)'), (18132, 'Journal of the Society of Powder Technology, ', 3866157, 0.186, 'Q4', 3, 41, 681, 35, 184, '6', '2017-2020', 'Catalysis (Q4); Filtration and Separation (Q4); Fluid Flow and Transfer Processes (Q4); Process Chemistry and Technology (Q4)'), (18133, 'Korean Journal of Physical, Multiple and Heal', 22883843, 0.186, 'Q4', 4, 24, 962, 65, 73, '13', '2018-2020', 'Developmental and Educational Psychology (Q4); Education (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (18134, 'Lavoro e Diritto', 1120947, 0.186, 'Q3', 8, 27, 832, 8, 89, '7', '1997-2020', 'Law (Q3)'), (18135, 'Masaryk University Journal of Law and Technol', 18025951, 0.186, 'Q3', 4, 13, 579, 20, 39, '31', '2013-2020', 'Law (Q3); Library and Information Sciences (Q3); Computer Science Applications (Q4)'), (18136, 'Mecosan', 23848804, 0.186, 'Q4', 4, 48, 890, 13, 57, '7', '2008-2020', 'Health Policy (Q4)'), (18137, 'Medical Writing', 20474814, 0.186, 'Q2', 4, 39, 567, 24, 145, '3', '2016-2020', 'Medical Terminology (Q2); Education (Q4); Health Informatics (Q4); Medicine (miscellaneous) (Q4)'), (18138, 'Medycyna Weterynaryjna', 258628, 0.186, 'Q3', 19, 116, 4151, 157, 394, '17', '1945, 1950-1951, 1960-1963, 1973-1979, 1996-2019', 'Veterinary (miscellaneous) (Q3)'), (18139, 'Pegem Egitim ve Ogretim Dergisi', 2148239, 0.186, 'Q4', 3, 29, 1809, 40, 93, '18', '2017-2020', 'Education (Q4)'), (18140, 'Phuket Marine Biological Center Research Bull', 8581088, 0.186, 'Q4', 6, 10, 308, 19, 20, '40', '2011-2013, 2016-2020', 'Aquatic Science (Q4); Oceanography (Q4)'), (18141, 'Prescrire International', 11677422, 0.186, 'Q3', 12, 77, 850, 25, 157, '8', '1996-2020', 'Pharmacology (medical) (Q3); Pharmacology (Q4)'), (18142, 'Proceedings of the Institution of Civil Engin', 17550785, 0.186, 'Q4', 14, 17, 522, 28, 38, '3', '2009-2020', 'Civil and Structural Engineering (Q4); Mechanics of Materials (Q4)'), (18143, 'Przeglad Wschodnioeuropejski', 20811128, 0.186, 'Q3', 4, 70, 1554, 19, 178, '17', '2014-2019', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4)'), (18144, 'Recent Results in Cancer Research', 21976767, 0.186, 'Q4', 55, 55, 6558, 205, 16, '2', '1970, 1972-2003, 2005-2020', 'Cancer Research (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4)'), (18145, 'Recerca', 22544135, 0.186, 'Q2', 5, 8, 250, 31, 46, '12', '2016-2020', 'Philosophy (Q2); Social Sciences (miscellaneous) (Q3)'), (18146, 'Revista Brasileira de Direito Processual Pena', 23593881, 0.186, 'Q3', 3, 51, 2006, 26, 91, '14', '2018-2020', 'Anthropology (Q3); Law (Q3); Safety Research (Q3); Sociology and Political Science (Q3); Psychiatry and Mental Health (Q4)'), (18147, 'Revista Transilvania', 2550539, 0.186, 'Q1', 5, 141, 2613, 34, 320, '43', '2009-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2)'), (18148, 'Revue d Homeopathie', 18789730, 0.186, 'Q3', 6, 32, 516, 9, 92, '8', '2010-2020', 'Complementary and Alternative Medicine (Q3)'), (18149, 'Revue Internationale de Politique Comparee', 13700731, 0.186, 'Q3', 11, 31, 1684, 10, 25, '24', '2001-2018, 2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18150, 'Russian Journal of Genetics: Applied Research', 20790600, 0.186, 'Q4', 10, 0, 0, 77, 125, '10', '2011-2018', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Genetics (Q4)'), (18151, 'ScienceAsia', 15131874, 0.186, 'Q3', 30, 98, 3052, 130, 194, '40', '2006-2020', 'Multidisciplinary (Q3)'), (18152, 'Society', 1472011, 0.186, 'Q3', 25, 84, 1448, 97, 181, '2', '1968, 1971-1999, 2002-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (18153, 'Stato e Mercato', 3929701, 0.186, 'Q3', 18, 9, 299, 26, 37, '7', '1997-2018', 'Sociology and Political Science (Q3)'), (18154, 'Transnational Legal Theory', 20414013, 0.186, 'Q3', 8, 25, 0, 39, 67, '3', '2015-2020', 'Law (Q3)'), (18155, 'Trends in Psychology', 23581883, 0.186, 'Q4', 8, 47, 1981, 102, 239, '14', '2018-2020', 'Psychology (miscellaneous) (Q4)'), (18156, 'Verbum Vitae', 2451280, 0.186, 'Q1', 2, 61, 2571, 17, 96, '17', '2016-2020', 'Religious Studies (Q1)'), (18157, 'Acta Phytopathologica et Entomologica Hungari', 2381249, 0.185, 'Q4', 20, 10, 258, 37, 78, '50', '1996-2019', 'Insect Science (Q4); Plant Science (Q4)'), (18158, 'Annals of Economics and Finance', 15297373, 0.185, 'Q4', 23, 19, 612, 50, 72, '1', '2000-2020', 'Economics and Econometrics (Q4); Finance (Q4)'), (18159, 'Asia-Pacific Forum on Science Learning and Te', 16094913, 0.185, 'Q4', 14, 0, 0, 35, 56, '35', '2009-2019', 'Education (Q4)'), (18160, 'Asia Pacific Journal of Anthropology', 17409314, 0.185, 'Q2', 22, 28, 1207, 55, 77, '3', '2000-2020', 'Cultural Studies (Q2); Anthropology (Q3)'), (18161, 'Asia-Pacific Journal of Research in Early Chi', 19761961, 0.185, 'Q4', 1, 27, 1175, 12, 35, '1', '2018-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (18162, 'Biochemistry (Moscow) Supplement Series B: Bi', 19907516, 0.185, 'Q4', 13, 44, 1553, 61, 117, '10', '2008-2020', 'Biochemistry (Q4); Clinical Biochemistry (Q4); Molecular Medicine (Q4)'), (18163, 'Complex Systems', 8912513, 0.185, 'Q3', 8, 19, 911, 38, 59, '2', '2012-2020', 'Computer Science (miscellaneous) (Q3); Control and Systems Engineering (Q4)'), (18164, 'Folia Forestalia Polonica, Series A', 716677, 0.185, 'Q4', 10, 5, 146, 43, 77, '17', '1993, 1995-2007, 2009-2020', 'Ecology (Q4); Forestry (Q4)'), (18165, 'Genetics of Aquatic Organisms', 24591831, 0.185, 'Q4', 3, 10, 506, 13, 30, '4', '2017-2020', 'Aquatic Science (Q4); Genetics (Q4)'), (18166, 'Hacienda Publica Espanola', 2101173, 0.185, 'Q4', 12, 23, 1055, 31, 62, '12', '2007-2020', 'Economics and Econometrics (Q4); Finance (Q4)'), (18167, 'IEEJ Transactions on Industry Applications', 9136339, 0.185, 'Q3', 31, 133, 1635, 133, 381, '6', '1987-2020', 'Electrical and Electronic Engineering (Q3); Industrial and Manufacturing Engineering (Q3)'), (18168, 'Infocommunications Journal', 20612125, 0.185, 'Q3', 7, 28, 769, 44, 61, '50', '2011-2020', 'Computer Science (miscellaneous) (Q3); Electrical and Electronic Engineering (Q3)'), (18169, 'International Journal of E-Services and Mobil', 1941627, 0.185, 'Q4', 7, 7, 484, 52, 54, '2', '2017-2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Management Information Systems (Q4); Marketing (Q4); Strategy and Management (Q4)'), (18170, 'International Journal of Information Science ', 20088310, 0.185, 'Q3', 12, 8, 251, 30, 61, '15', '2008-2019', 'Information Systems and Management (Q3); Library and Information Sciences (Q3); Management Information Systems (Q4); Statistics, Probability and Uncertainty (Q4)'), (18171, 'International Journal of Metadata, Semantics ', 1744263, 0.185, 'Q3', 20, 21, 913, 39, 43, '3', '2006-2014, 2020', 'Library and Information Sciences (Q3); Computer Science Applications (Q4); E-learning (Q4); Information Systems (Q4)'), (18172, 'Investigacion Economica', 1851667, 0.185, 'Q3', 10, 11, 364, 34, 58, '30', '1981, 2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (18173, 'Islam - Zeitschrift fur Geschichte und Kultur', 16130928, 0.185, 'Q2', 12, 13, 845, 14, 48, '5', '1910-1918, 1920-1930, 1932-1933, 1935-1938, 1942, 1948, 1950, 1952-1954, 1956-1961, 1963-2005, 2008-', 'Cultural Studies (Q2); History (Q2)'), (18174, 'Jiangsu Daxue Xuebao (Ziran Kexue Ban) / Jour', 16717775, 0.185, 'Q3', 16, 113, 1541, 143, 358, '1', '2005-2020', 'Engineering (miscellaneous) (Q3)'), (18175, 'Journal of African Union Studies', 20504306, 0.185, 'Q3', 2, 20, 727, 14, 55, '3', '2018-2019', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3); Development (Q4)'), (18176, 'Journal of Communications', 17962021, 0.185, 'Q3', 35, 108, 2753, 352, 356, '2', '1955-1956, 2006-2020', 'Electrical and Electronic Engineering (Q3)'), (18177, 'Journal of Entomological Research', 3789519, 0.185, 'Q4', 8, 109, 2627, 48, 231, '4', '2011-2020', 'Insect Science (Q4)'), (18178, 'Journal of Mechanical Engineering Research an', 10241752, 0.185, 'Q4', 14, 292, 6680, 335, 325, '59', '1995, 1997, 2001, 2014-2020', 'Computational Mechanics (Q4); Computer Science Applications (Q4); Mechanical Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (18179, 'Journal of Value Inquiry', 15730492, 0.185, 'Q2', 18, 65, 484, 55, 97, '16', '1967-2020', 'Philosophy (Q2); Law (Q3); Social Sciences (miscellaneous) (Q3)'), (18180, 'Jurnal Infektologii', 24999865, 0.185, 'Q4', 5, 70, 1445, 57, 198, '10', '2016-2020', 'Infectious Diseases (Q4)'), (18181, 'Mechanics of Advanced Composite Structures', 24234826, 0.185, 'Q3', 3, 32, 1217, 28, 41, '15', '2018-2020', 'Polymers and Plastics (Q3); Biomaterials (Q4); Ceramics and Composites (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (18182, 'Medical Law International', 20479441, 0.185, 'Q3', 11, 17, 0, 21, 33, '3', '1993-2020', 'Law (Q3); Medicine (miscellaneous) (Q4)'), (18183, 'Nordic Journal of International Law', 9027351, 0.185, 'Q3', 14, 23, 1115, 30, 54, '16', '1934, 1937-1939, 1941-1942, 1947, 1949, 1951-1953, 1955-1957, 1960, 1962-1964, 1968-1971, 1973-1974,', 'Law (Q3); Political Science and International Relations (Q3)'), (18184, 'North American Journal of Psychology', 15277143, 0.185, 'Q3', 27, 36, 1273, 57, 134, '2', '2005-2020', 'Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4); Education (Q4); Psychology (miscellaneous) (Q4)'), (18185, 'Northern Lights', 1601829, 0.185, 'Q1', 9, 10, 251, 8, 23, '3', '2012-2014, 2016-2019', 'Visual Arts and Performing Arts (Q1); Communication (Q3)'), (18186, 'Nursing older people', 14720795, 0.185, 'Q4', 21, 56, 710, 70, 216, '3', '2000-2020', 'Gerontology (Q4)'), (18187, 'Pachyderm', 10262881, 0.185, 'Q4', 13, 20, 329, 20, 29, '19', '2008-2015, 2017-2019', 'Animal Science and Zoology (Q4)'), (18188, 'Pesquisa Brasileira em Odontopediatria e Clin', 19834632, 0.185, 'Q3', 12, 177, 5074, 450, 333, '14', '2009-2020', 'Pediatrics, Perinatology and Child Health (Q3); Dentistry (miscellaneous) (Q4)'), (18189, 'Politics, Religion and Ideology', 21567697, 0.185, 'Q1', 8, 27, 0, 55, 71, '3', '2011, 2014-2020', 'Religious Studies (Q1); Philosophy (Q2); Molecular Biology (Q4)'), (18190, 'Radioelectronics and Communications Systems', 19348061, 0.185, 'Q4', 12, 59, 1355, 141, 179, '10', '1984-1990, 2005-2020', 'Electrical and Electronic Engineering (Q4)'), (18191, 'Revista Brasileira de Ciencias Sociais', 1026909, 0.185, 'Q3', 16, 56, 2273, 22, 83, '14', '2006-2021', 'Social Sciences (miscellaneous) (Q3)'), (18192, 'Revista Internacional de Contaminacion Ambien', 1884999, 0.185, 'Q4', 19, 80, 3741, 180, 338, '30', '1996-2020', 'Pollution (Q4); Waste Management and Disposal (Q4)'), (18193, 'Revue Economique', 352764, 0.185, 'Q3', 19, 41, 1378, 23, 127, '8', '1974, 2001-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (18194, 'SEI Technical Review', 13434349, 0.185, 'Q3', 21, 22, 108, 42, 133, '6', '1998-2020', 'Electrical and Electronic Engineering (Q3)'), (18195, 'Semiconductor Physics, Quantum Electronics an', 15608034, 0.185, 'Q3', 2, 57, 1394, 35, 62, '44', '2019-2020', 'Electrical and Electronic Engineering (Q3); Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (18196, 'Surveys in Mathematics and its Applications', 18437265, 0.185, 'Q4', 3, 21, 869, 19, 34, '43', '2018-2020', 'Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)'), (18197, 'Yadian Yu Shengguang/Piezoelectrics and Acous', 10042474, 0.185, 'Q4', 13, 186, 2323, 123, 599, '1', '1993-1999, 2001-2020', 'Acoustics and Ultrasonics (Q4); Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4)'), (18198, 'Acta Biologica Colombiana', 120548, 0.184, 'Q3', 13, 51, 2513, 67, 115, '47', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (18199, 'Ankara Universitesi Veteriner Fakultesi Dergi', 13000861, 0.184, 'Q3', 12, 61, 1992, 96, 174, '18', '2008-2020', 'Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)'), (18200, 'Ars et Humanitas', 18549632, 0.184, 'Q3', 2, 35, 1047, 11, 113, '60', '2016-2020', 'Arts and Humanities (miscellaneous) (Q3)'), (18201, 'BRICS Law Journal', 24122343, 0.184, 'Q3', 4, 26, 294, 36, 61, '10', '2017-2020', 'Law (Q3)'), (18202, 'Chinese Journal of Comparative Law', 20504802, 0.184, 'Q3', 5, 24, 1254, 28, 44, '3', '2013-2019', 'Law (Q3); Economics and Econometrics (Q4)'), (18203, 'Current Respiratory Medicine Reviews', 1573398, 0.184, 'Q4', 13, 35, 1390, 59, 100, '52', '2006-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (18204, 'Electronic Journal of Structural Engineering', 14439255, 0.184, 'Q4', 20, 1, 25, 24, 21, '11', '2001-2002, 2006-2018', 'Civil and Structural Engineering (Q4)'), (18205, 'eTropic', 14482940, 0.184, 'Q1', 3, 24, 878, 18, 42, '11', '2018-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Urban Studies (Q3)'), (18206, 'Financial Markets and Portfolio Management', 19344554, 0.184, 'Q4', 21, 17, 1092, 35, 47, '2', '2006-2020', 'Accounting (Q4); Finance (Q4)'), (18207, 'Functional Materials', 22182993, 0.184, 'Q4', 14, 74, 1654, 160, 381, '44', '2007, 2010-2020', 'Materials Science (miscellaneous) (Q4)'), (18208, 'Geodeziya i Kartografiya', 167126, 0.184, 'Q4', 2, 65, 947, 16, 87, '10', '1979-1982, 2019-2020', 'Computers in Earth Sciences (Q4); Earth-Surface Processes (Q4); Geophysics (Q4)'), (18209, 'Hearing, Balance and Communication', 21695725, 0.184, 'Q4', 10, 50, 1622, 49, 111, '3', '2013-2020', 'Otorhinolaryngology (Q4); Speech and Hearing (Q4)'), (18210, 'Hrvatski Geografski Glasnik', 13315854, 0.184, 'Q3', 9, 9, 512, 14, 26, '58', '1998-2001, 2003-2020', 'Geography, Planning and Development (Q3); Earth-Surface Processes (Q4)'), (18211, 'Humana Mente', 19721293, 0.184, 'Q2', 2, 10, 465, 13, 34, '7', '2018-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Philosophy (Q2); History and Philosophy of Science (Q3); Education (Q4)'), (18212, 'International Journal of Computing', 17276209, 0.184, 'Q3', 11, 63, 1822, 126, 89, '44', '2016-2020', 'Computer Science (miscellaneous) (Q3); Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Software (Q4)'), (18213, 'International Journal of Digital Television', 20404182, 0.184, 'Q3', 7, 0, 0, 25, 33, '3', '2014-2018', 'Communication (Q3); Media Technology (Q3); Sociology and Political Science (Q3)'), (18214, 'International Journal of Discrimination and t', 13582291, 0.184, 'Q3', 8, 14, 351, 15, 31, '2', '2000, 2005-2009, 2011-2020', 'Law (Q3); Sociology and Political Science (Q3)'), (18215, 'International Journal of Education and Practi', 23116897, 0.184, 'Q4', 8, 65, 2820, 92, 61, '2', '2018-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (18216, 'International Journal of Engineering and Tech', 2226809, 0.184, 'Q4', 8, 24, 616, 78, 72, '22', '2015-2020', 'Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (18217, 'International journal of online and biomedica', 26268493, 0.184, 'Q3', 8, 146, 3864, 199, 143, '5', '2019-2020', 'Engineering (miscellaneous) (Q3)'), (18218, 'International Journal of Urological Nursing', 17497701, 0.184, 'Q3', 8, 20, 519, 21, 44, '3', '2008-2020', 'Nursing (miscellaneous) (Q3); Nephrology (Q4); Urology (Q4)'), (18219, 'International Philosophical Quarterly', 190365, 0.184, 'Q2', 8, 18, 945, 6, 64, '2', '1974, 1985, 1988, 1992, 2002-2020', 'Philosophy (Q2)'), (18220, 'Irish Journal of Sociology', 20505280, 0.184, 'Q3', 16, 39, 1129, 36, 47, '3', '1996-2007, 2009-2020', 'Social Sciences (miscellaneous) (Q3)'), (18221, 'Journal of Biopesticides', 22308385, 0.184, 'Q4', 20, 22, 700, 37, 81, '4', '2010-2020', 'Agronomy and Crop Science (Q4); Plant Science (Q4)'), (18222, 'Journal of Endocrinology and Metabolism', 19232861, 0.184, 'Q4', 3, 32, 797, 19, 30, '9', '2018-2020', 'Endocrinology, Diabetes and Metabolism (Q4)'), (18223, 'Journal of Nietzsche Studies', 9688005, 0.184, 'Q2', 7, 18, 433, 18, 54, '2', '2010-2020', 'Philosophy (Q2)'), (18224, 'Journal of Persianate Studies', 18747094, 0.184, 'Q2', 8, 8, 625, 11, 28, '16', '2008-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (18225, 'Journal of Shanghai Jiaotong University (Scie', 10071172, 0.184, 'Q3', 19, 118, 2432, 253, 335, '1', '2005-2020', 'Multidisciplinary (Q3)'), (18226, 'Journal of the Kansas Entomological Society', 228567, 0.184, 'Q4', 33, 14, 449, 31, 88, '2', '1994-2020', 'Insect Science (Q4)'), (18227, 'Journal of Transport and Supply Chain Managem', 19955235, 0.184, 'Q3', 2, 16, 854, 12, 13, '27', '2019-2020', 'Industrial and Manufacturing Engineering (Q3); Information Systems and Management (Q4); Management Information Systems (Q4); Management Science and Operations Research (Q4); Transportation (Q4)'), (18228, 'Manuscrito', 1006045, 0.184, 'Q2', 3, 32, 681, 20, 81, '14', '2017-2020', 'Philosophy (Q2)'), (18229, 'New Disease Reports', 20440588, 0.184, 'Q4', 4, 3, 14, 46, 8, '3', '2019-2020', 'Agronomy and Crop Science (Q4); Health, Toxicology and Mutagenesis (Q4); Plant Science (Q4)'), (18230, 'Open Biomarkers Journal', 18753183, 0.184, 'Q4', 5, 9, 339, 9, 15, '52', '2009-2013, 2015, 2018-2020', 'Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Medicine (miscellaneous) (Q4)'), (18231, 'Pakistan Journal of Information Management an', 24097462, 0.184, 'Q3', 7, 6, 273, 11, 15, '34', '2014-2019', 'Library and Information Sciences (Q3); Computer Science Applications (Q4)'), (18232, 'Photonics Letters of Poland', 20802242, 0.184, 'Q4', 16, 41, 523, 64, 119, '17', '2009-2020', 'Electronic, Optical and Magnetic Materials (Q4)'), (18233, 'Physical and Occupational Therapy in Geriatri', 2703181, 0.184, 'Q4', 20, 40, 1813, 50, 60, '2', '1980-2020', 'Geriatrics and Gerontology (Q4); Gerontology (Q4); Occupational Therapy (Q4); Rehabilitation (Q4)'), (18234, 'Primenjena Psihologija', 23347287, 0.184, 'Q4', 3, 16, 791, 21, 72, '55', '2017-2019', 'Applied Psychology (Q4)'), (18235, 'Review of Urban and Regional Development Stud', 9170553, 0.184, 'Q3', 21, 0, 0, 23, 35, '3', '1989-2019', 'Geography, Planning and Development (Q3); Development (Q4)'), (18236, 'Revista de la Educacion Superior', 23959037, 0.184, 'Q4', 8, 0, 0, 43, 88, '30', '2014-2019', 'Education (Q4)'), (18237, 'Romanian Astronomical Journal', 22853758, 0.184, 'Q4', 3, 17, 371, 11, 19, '43', '2019', 'Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)'), (18238, 'Romanian Journal of Information Science and T', 14538245, 0.184, 'Q3', 17, 42, 1165, 62, 77, '43', '2008-2020', 'Computer Science (miscellaneous) (Q3)'), (18239, 'Technology Architecture and Design', 24751448, 0.184, 'Q1', 6, 37, 320, 48, 89, '2', '2017-2020', 'Visual Arts and Performing Arts (Q1); Architecture (Q2); Urban Studies (Q3)'), (18240, 'Theory of Stochastic Processes', 3213900, 0.184, 'Q4', 5, 0, 0, 19, 44, '44', '2011-2012, 2014-2019', 'Applied Mathematics (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)'), (18241, 'Tire Science and Technology', 908657, 0.184, 'Q4', 25, 0, 0, 28, 40, '2', '1973-1980, 1985, 1987-2019', 'Automotive Engineering (Q4); Mechanics of Materials (Q4); Polymers and Plastics (Q4)'), (18242, 'Yearbook for Traditional Music', 7401558, 0.184, 'Q2', 11, 9, 370, 8, 27, '2', '2002-2019', 'Music (Q2)'), (18243, 'Acta Physica Polonica B, Proceedings Suppleme', 18992358, 0.183, 'Q4', 20, 124, 2185, 168, 406, '17', '2008-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (18244, 'Acta Scientiarum - Technology', 18078664, 0.183, 'Q3', 17, 74, 2395, 134, 195, '14', '2008-2020', 'Computer Science (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics an'), (18245, 'Advances in Animal and Veterinary Sciences', 23093331, 0.183, 'Q3', 8, 208, 7956, 187, 345, '34', '2016-2020', 'Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)'), (18246, 'Anales de Geografia de la Universidad Complut', 19882378, 0.183, 'Q3', 8, 22, 902, 28, 57, '12', '2011-2019', 'Geography, Planning and Development (Q3); Urban Studies (Q3)'), (18247, 'Biharean Biologist', 18435637, 0.183, 'Q3', 8, 26, 710, 41, 89, '43', '2012-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (18248, 'Biuletyn - Panstwowego Instytutu Geologiczneg', 8676143, 0.183, 'Q4', 20, 0, 0, 38, 96, '17', '1991-2019', 'Geology (Q4)'), (18249, 'Chemistry and Technology of Fuels and Oils', 93092, 0.183, 'Q3', 15, 114, 1860, 150, 305, '5', '1965-2020', 'Chemical Engineering (miscellaneous) (Q3); Chemistry (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)'), (18250, 'Chilean Journal of Agricultural and Animal Sc', 7193882, 0.183, 'Q3', 5, 28, 881, 43, 86, '45', '2014-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (18251, 'Dermatology Reports', 20367392, 0.183, 'Q3', 10, 22, 364, 41, 92, '7', '2010-2020', 'Dermatology (Q3)'), (18252, 'Economic Thought', 20493509, 0.183, 'Q3', 4, 12, 484, 12, 28, '3', '2017-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Economics and Econometrics (Q4)'), (18253, 'Electronic Journal of Knowledge Management', 14794411, 0.183, 'Q4', 5, 18, 1073, 24, 24, '3', '2018-2019', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)'), (18254, 'Geomatica', 19254296, 0.183, 'Q3', 21, 8, 252, 15, 27, '9', '1993-2020', 'Geography, Planning and Development (Q3); Earth-Surface Processes (Q4)'), (18255, 'Geopersia', 22287817, 0.183, 'Q4', 4, 25, 1663, 43, 66, '15', '2017-2020', 'Earth-Surface Processes (Q4); Geochemistry and Petrology (Q4); Geology (Q4)'), (18256, 'Hangkong Cailiao Xuebao/Journal of Aeronautic', 10055053, 0.183, 'Q4', 20, 70, 2127, 166, 242, '1', '1998-2020', 'Aerospace Engineering (Q4); Ceramics and Composites (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4)'), (18257, 'Heart International', 20362579, 0.183, 'Q4', 12, 11, 304, 2, 13, '7', '2010-2013, 2015-2017, 2019', 'Cardiology and Cardiovascular Medicine (Q4)'), (18258, 'Huisarts en Wetenschap', 18765912, 0.183, 'Q3', 24, 187, 842, 19, 512, '16', '1973-1975, 1987-2020', 'Family Practice (Q3)'), (18259, 'Indian Journal of Surgery', 195650, 0.183, 'Q4', 21, 619, 9047, 205, 398, '4', '1945-1952, 1958, 1965, 1967, 1973-1983, 2004-2020', 'Surgery (Q4)'), (18260, 'International Arbitration Law Review', 13678272, 0.183, 'Q3', 1, 13, 585, 1, 15, '2', '2019', 'Law (Q3); Political Science and International Relations (Q3)'), (18261, 'International Journal of Ad Hoc and Ubiquitou', 17438225, 0.183, 'Q4', 24, 56, 2103, 138, 190, '3', '2005-2014, 2020', 'Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Software (Q4)'), (18262, 'International Journal of Advances in Intellig', 25483161, 0.183, 'Q4', 9, 27, 999, 88, 68, '21', '2015-2020', 'Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Human-Computer Interaction (Q4)'), (18263, 'International Journal of Information Systems ', 19355688, 0.183, 'Q4', 12, 18, 708, 40, 58, '2', '2009-2020', 'Information Systems (Q4); Information Systems and Management (Q4); Management Information Systems (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)'), (18264, 'International Journal of Mechatronics and Man', 17531039, 0.183, 'Q3', 14, 19, 643, 33, 57, '3', '2009-2014, 2020', 'Industrial and Manufacturing Engineering (Q3); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4)'), (18265, 'International Journal of Parallel, Emergent a', 17445779, 0.183, 'Q4', 21, 62, 1752, 182, 139, '3', '2005-2020', 'Computer Networks and Communications (Q4); Software (Q4)'), (18266, 'International Medical Journal', 13412051, 0.183, 'Q4', 17, 76, 1895, 69, 299, '6', '1996-2020', 'Medicine (miscellaneous) (Q4)'), (18267, 'Iranian Journal of Ageing', 1735806, 0.183, 'Q4', 3, 28, 1026, 38, 92, '15', '2018-2020', 'Aging (Q4); Geriatrics and Gerontology (Q4)'), (18268, 'Iranian Rehabilitation Journal', 17353602, 0.183, 'Q4', 9, 36, 1000, 67, 148, '15', '2006-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Psychiatry and Mental Health (Q4); Rehabilitation (Q4)'), (18269, 'Journal of Biomimetics, Biomaterials and Biom', 22969837, 0.183, 'Q4', 10, 48, 1078, 99, 124, '5', '2014-2020', 'Bioengineering (Q4); Biomedical Engineering (Q4); Biotechnology (Q4)'), (18270, 'Journal of Content, Community and Communicati', 23957514, 0.183, 'Q3', 4, 50, 2240, 63, 83, '4', '2015-2020', 'Communication (Q3)'), (18271, 'Journal of Crop Protection', 2251905, 0.183, 'Q4', 4, 47, 1780, 73, 107, '15', '2017-2020', 'Agronomy and Crop Science (Q4); Plant Science (Q4)'), (18272, 'Journal of Policing, Intelligence and Counter', 18335330, 0.183, 'Q3', 11, 15, 978, 48, 46, '3', '2006-2013, 2016-2020', 'Law (Q3); Political Science and International Relations (Q3)'), (18273, 'Journal of the Magnetics Society of Japan', 18822932, 0.183, 'Q4', 3, 26, 583, 27, 19, '6', '2019-2020', 'Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4)'), (18274, 'Krisis', 18757103, 0.183, 'Q2', 6, 21, 286, 30, 100, '16', '2011-2019', 'Cultural Studies (Q2); Philosophy (Q2); Sociology and Political Science (Q3)'), (18275, 'Numen', 295973, 0.183, 'Q1', 19, 16, 865, 24, 61, '16', '1954-2020', 'Religious Studies (Q1); History (Q2)'), (18276, 'Periodicum Biologorum', 315362, 0.183, 'Q3', 20, 0, 0, 38, 52, '58', '1980, 1984, 1986, 1990-2018', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (18277, 'Perspektivy Nauki i Obrazovania', 23072334, 0.183, 'Q2', 5, 207, 5647, 178, 494, '10', '2018-2020', 'Philosophy (Q2); Education (Q4)'), (18278, 'RAE Revista de Administracao de Empresas', 2178938, 0.183, 'Q3', 15, 38, 1440, 92, 131, '14', '2007-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Industrial Relations (Q3); Business and International Management (Q4); Development (Q4); Education (Q4); Information Systems and Management (Q'), (18279, 'Revista de Economia Contemporanea', 14159848, 0.183, 'Q3', 6, 28, 1024, 30, 64, '14', '2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (18280, 'Scientia Sinica: Physica, Mechanica et Astron', 20959478, 0.183, 'Q4', 10, 146, 6207, 302, 394, '1', '2016-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (18281, 'Theology and Science', 14746719, 0.183, 'Q1', 12, 45, 14, 61, 113, '3', '2003-2020', 'Religious Studies (Q1); History and Philosophy of Science (Q3); Multidisciplinary (Q3)'), (18282, 'Tijdschrift voor Sociale en Economische Gesch', 15721701, 0.183, 'Q2', 12, 24, 1341, 14, 43, '16', '2004-2020', 'History (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (18283, 'Trauma Case Reports', 23526440, 0.183, 'Q3', 6, 100, 1179, 99, 189, '16', '2015-2020', 'Critical Care and Intensive Care Medicine (Q3); Emergency Medicine (Q3); Orthopedics and Sports Medicine (Q4)'), (18284, 'Varia Historia', 1048775, 0.183, 'Q2', 3, 29, 950, 27, 82, '14', '2016-2020', 'History (Q2)'), (18285, 'Veterinaria Mexico', 3015092, 0.183, 'Q3', 12, 27, 1029, 24, 38, '30', '2008-2020', 'Veterinary (miscellaneous) (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (18286, 'African and Black Diaspora', 17528631, 0.182, 'Q2', 9, 28, 900, 26, 60, '3', '2010-2020', 'Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Demography (Q3); Sociology and Political Science (Q3)'), (18287, 'AFTE Journal', 10489959, 0.182, 'Q3', 7, 19, 305, 54, 70, '2', '2013-2020', 'Law (Q3); Health (social science) (Q4); Mechanics of Materials (Q4); Safety, Risk, Reliability and Quality (Q4)'), (18288, 'Alter', 18750672, 0.182, 'Q4', 17, 28, 1093, 27, 52, '8', '2007-2020', 'Health Policy (Q4); Health (social science) (Q4); Orthopedics and Sports Medicine (Q4); Psychiatry and Mental Health (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18289, 'Applied Mathematics', 19930445, 0.182, 'Q4', 20, 31, 865, 98, 99, '5', '1993-2020', 'Applied Mathematics (Q4)'), (18290, 'Biocell', 16675746, 0.182, 'Q4', 27, 56, 2606, 59, 60, '46', '1995-2013, 2015-2020', 'Cell Biology (Q4)'), (18291, 'Bulletin of the International Association for', 18466273, 0.182, 'Q4', 1, 11, 435, 10, 19, '58', '2017-2020', 'Dentistry (miscellaneous) (Q4); Paleontology (Q4)'), (18292, 'Clinical advances in periodontics', 25738046, 0.182, 'Q4', 2, 33, 0, 20, 46, '2', '2017-2020', 'Medicine (miscellaneous) (Q4); Periodontics (Q4)'), (18293, 'Ecosistemas', 16972473, 0.182, 'Q4', 6, 57, 2976, 55, 133, '12', '2015-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (18294, 'ELOPE: English Language Overseas Perspectives', 15818918, 0.182, 'Q1', 1, 27, 836, 6, 42, '60', '2017-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (18295, 'FinanzArchiv', 152218, 0.182, 'Q4', 18, 16, 786, 21, 54, '5', '1981, 2006-2020', 'Finance (Q4)'), (18296, 'Fresenius Environmental Bulletin', 10184619, 0.182, 'Q4', 38, 1174, 35920, 845, 1320, '5', '1993-2020', 'Environmental Chemistry (Q4); Pollution (Q4); Waste Management and Disposal (Q4)'), (18297, 'Giornale Italiano di Cardiologia', 19726481, 0.182, 'Q4', 20, 201, 2732, 127, 368, '7', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (18298, 'Hrvatska Revija Za Rehabilitacijska Istraziva', 13313010, 0.182, 'Q4', 8, 21, 974, 25, 78, '58', '1999-2006, 2008-2020', 'Developmental and Educational Psychology (Q4); Rehabilitation (Q4)'), (18299, 'Human Ecology Review', 10744827, 0.182, 'Q3', 40, 0, 0, 32, 50, '2', '1998-2019', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4)'), (18300, 'Idesia', 734675, 0.182, 'Q3', 12, 48, 990, 58, 178, '45', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Agronomy and Crop Science (Q4)'), (18301, 'IEICE Transactions on Electronics', 9168524, 0.182, 'Q4', 48, 106, 1831, 229, 404, '6', '1993-2020', 'Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (18302, 'IEIE Transactions on Smart Processing and Com', 22875255, 0.182, 'Q4', 5, 48, 1076, 100, 120, '13', '2018-2020', 'Electrical and Electronic Engineering (Q4); Signal Processing (Q4)'), (18303, 'Information Bulletin on Variable Stars', 3740676, 0.182, 'Q4', 16, 0, 0, 28, 78, '50', '2007-2019', 'Astronomy and Astrophysics (Q4); Instrumentation (Q4)'), (18304, 'Information Display', 3620972, 0.182, 'Q4', 20, 57, 230, 47, 84, '2', '1975-1977, 1986-1989, 1993-2020', 'Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4)'), (18305, 'International Journal of E-Entrepreneurship a', 19478585, 0.182, 'Q3', 2, 10, 481, 12, 16, '2', '2018-2020', 'Law (Q3); Business and International Management (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)'), (18306, 'International Journal of Management Practice', 17418143, 0.182, 'Q4', 12, 35, 2234, 38, 66, '3', '2004-2014, 2020', 'Business and International Management (Q4); Strategy and Management (Q4)'), (18307, 'International Journal of Vehicular Technology', 16875702, 0.182, 'Q4', 18, 0, 0, 3, 2, '32', '2011-2017', 'Automotive Engineering (Q4); Computer Science Applications (Q4); Mechanical Engineering (Q4)'), (18308, 'Investigacion Bibliotecologica', 187358, 0.182, 'Q3', 10, 40, 1509, 53, 120, '30', '2008-2020', 'Library and Information Sciences (Q3)'), (18309, 'Iranian Journal of Epidemiology', 17357489, 0.182, 'Q4', 11, 36, 937, 62, 152, '15', '2010-2020', 'Epidemiology (Q4)'), (18310, 'Journal International des Sciences de la Vign', 11510285, 0.182, 'Q4', 34, 0, 0, 24, 33, '8', '1996-2017', 'Food Science (Q4); Horticulture (Q4)'), (18311, 'Journal of Integrated Coastal Zone Management', 16468872, 0.182, 'Q4', 7, 19, 710, 17, 32, '26', '2015-2019', 'Aquatic Science (Q4); Management, Monitoring, Policy and Law (Q4); Oceanography (Q4); Water Science and Technology (Q4)'), (18312, 'Journal of Korean Academy of Community Health', 22884203, 0.182, 'Q3', 4, 50, 1467, 56, 149, '13', '2017-2020', 'Nursing (miscellaneous) (Q3); Community and Home Care (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18313, 'Journal of Planning History', 15526585, 0.182, 'Q3', 18, 20, 0, 20, 44, '2', '2002-2020', 'Geography, Planning and Development (Q3)'), (18314, 'Journal of Tehran University Heart Center', 20082371, 0.182, 'Q4', 13, 40, 793, 46, 104, '15', '2007-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (18315, 'Journal of the American Pomological Society', 15273741, 0.182, 'Q4', 23, 2, 59, 11, 33, '2', '2000-2007, 2018-2020', 'Horticulture (Q4)'), (18316, 'Journal of the Korean Society of Surveying Ge', 15984850, 0.182, 'Q4', 9, 46, 903, 76, 185, '13', '2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (18317, 'Libres', 10586768, 0.182, 'Q3', 11, 4, 86, 10, 16, '11', '1996-2020', 'Library and Information Sciences (Q3)'), (18318, 'Midland History', 47729, 0.182, 'Q2', 3, 24, 0, 4, 35, '3', '1971-1979, 1981-1995, 1999, 2001-2002, 2014-2020', 'History (Q2)'), (18319, 'Neiranji Gongcheng/Chinese Internal Combustio', 10000925, 0.182, 'Q4', 14, 75, 1485, 130, 304, '1', '1984-1988, 1991-1992, 2003-2020', 'Automotive Engineering (Q4); Mechanical Engineering (Q4)'), (18320, 'Philosophy', 318191, 0.182, 'Q2', 25, 24, 687, 27, 74, '3', '1926-2020', 'Philosophy (Q2)'), (18321, 'Physics and Chemistry of Glasses: European Jo', 17533562, 0.182, 'Q4', 24, 0, 0, 69, 88, '3', '2006-2019', 'Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4); Physical and Theoretical Chemistry (Q4)'), (18322, 'Progress in Nutrition', 11298723, 0.182, 'Q4', 9, 231, 8366, 215, 441, '7', '2002-2020', 'Food Science (Q4); Nutrition and Dietetics (Q4)'), (18323, 'Revista Chilena de Nutricion', 7177518, 0.182, 'Q4', 18, 113, 4448, 121, 161, '45', '1981-1983, 2006-2020', 'Food Science (Q4); Nutrition and Dietetics (Q4)'), (18324, 'Revista de Investigaciones Veterinarias del P', 16099117, 0.182, 'Q3', 11, 206, 6008, 152, 489, '68', '1999-2020', 'Veterinary (miscellaneous) (Q3)'), (18325, 'Revista de Psicologia (Peru)', 2549247, 0.182, 'Q4', 5, 26, 1171, 39, 73, '68', '2016-2020', 'Psychology (miscellaneous) (Q4)'), (18326, 'Revista Mexicana de Pediatria', 350052, 0.182, 'Q3', 4, 51, 818, 30, 109, '30', '1986-1992, 2010-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (18327, 'Sensing and Imaging', 15572064, 0.182, 'Q4', 20, 57, 2078, 120, 109, '5', '2006-2020', 'Electrical and Electronic Engineering (Q4); Instrumentation (Q4)'), (18328, 'Taiyangneng Xuebao/Acta Energiae Solaris Sini', 2540096, 0.182, 'Q4', 27, 601, 9830, 619, 1443, '1', '1986-2020', 'Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4); Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (18329, 'Tongxin Xuebao/Journal on Communications', 1000436, 0.182, 'Q4', 27, 239, 6459, 578, 700, '1', '2005-2020', 'Computer Networks and Communications (Q4); Information Systems (Q4); Signal Processing (Q4)'), (18330, 'Voprosy Leksikografii', 22274200, 0.182, 'Q2', 3, 20, 670, 16, 52, '10', '2017-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18331, 'Xi Tong Gong Cheng Yu Dian Zi Ji Shu/Systems ', 1001506, 0.182, 'Q4', 27, 370, 10178, 764, 1196, '1', '1990-1991, 2001-2020', 'Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)'), (18332, 'Zeitschrift fur Kristallographie - New Crysta', 14337266, 0.182, 'Q4', 36, 374, 4860, 357, 1274, '5', '1954, 1956-2020', 'Condensed Matter Physics (Q4); Inorganic Chemistry (Q4); Materials Science (miscellaneous) (Q4)'), (18333, 'Zhongguo Kexue Jishu Kexue/Scientia Sinica Te', 16747259, 0.182, 'Q4', 10, 125, 5380, 393, 402, '1', '2016-2017', 'Computer Networks and Communications (Q4); Control and Systems Engineering (Q4)'), (18334, 'American Pharmaceutical Review', 10998012, 0.181, 'Q3', 22, 29, 288, 48, 203, '2', '2002-2020', 'Pharmaceutical Science (Q3)'), (18335, 'Americas', 15336247, 0.181, 'Q2', 16, 17, 1374, 18, 57, '2', '1969, 1971, 1973, 1975, 1982-1983, 1985, 1999, 2001-2020', 'Cultural Studies (Q2); History (Q2)'), (18336, 'Analise Psicologica', 8708231, 0.181, 'Q4', 8, 19, 870, 46, 111, '26', '2010-2020', 'Education (Q4); Psychology (miscellaneous) (Q4)'), (18337, 'Annals of the Academy of Romanian Scientists:', 20665997, 0.181, 'Q4', 9, 36, 840, 24, 59, '43', '2009-2019', 'Mathematics (miscellaneous) (Q4)'), (18338, 'ARQ', 7160852, 0.181, 'Q1', 5, 48, 399, 13, 123, '45', '2007-2020', 'Visual Arts and Performing Arts (Q1); Architecture (Q2); Conservation (Q2)'), (18339, 'Artificial Satellites', 20836104, 0.181, 'Q4', 10, 17, 535, 19, 26, '17', '2009-2020', 'Space and Planetary Science (Q4)'), (18340, 'Child Health Nursing Research', 22879129, 0.181, 'Q3', 3, 43, 1245, 44, 105, '13', '2018-2020', 'Pediatrics, Perinatology and Child Health (Q3); Pediatrics (Q4)'), (18341, 'Current Women s Health Reviews', 15734048, 0.181, 'Q3', 14, 48, 1793, 45, 91, '52', '2006-2020', 'Obstetrics and Gynecology (Q3)'), (18342, 'Earth Sciences Research Journal', 17946190, 0.181, 'Q4', 15, 53, 1637, 82, 102, '47', '2007-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (18343, 'Economics of Peace and Security Journal', 1749852, 0.181, 'Q3', 1, 12, 436, 6, 10, '2', '2019-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Political Science and International Relations (Q3); Management of Technology and Innovation (Q4)'), (18344, 'Ekonomia i Srodowisko', 8678898, 0.181, 'Q4', 2, 35, 1054, 22, 56, '17', '2019', 'Ecology (Q4); Economics and Econometrics (Q4); Management, Monitoring, Policy and Law (Q4)'), (18345, 'Electronic Journal of Business Research Metho', 14777029, 0.181, 'Q4', 23, 15, 568, 34, 42, '3', '2002-2003, 2005-2020', 'Business and International Management (Q4); Strategy and Management (Q4)'), (18346, 'Gaceta Medica de Mexico', 163813, 0.181, 'Q4', 21, 158, 2765, 184, 393, '30', '1945-1946, 1948, 1950-2020', 'Medicine (miscellaneous) (Q4)'), (18347, 'Homeland Security Affairs', 1558643, 0.181, 'Q3', 5, 0, 0, 5, 10, '2', '2012-2018', 'Law (Q3); Safety Research (Q3); Public Administration (Q4)'), (18348, 'International Journal of Agricultural Resourc', 14624605, 0.181, 'Q4', 23, 11, 342, 43, 64, '3', '2000-2009, 2011-2012, 2014', 'Agronomy and Crop Science (Q4); Ecology (Q4); Management, Monitoring, Policy and Law (Q4)'), (18349, 'International Journal of Criminology and Soci', 19294409, 0.181, 'Q2', 6, 386, 11709, 58, 28, '9', '2018-2020', 'Cultural Studies (Q2); Law (Q3); Sociology and Political Science (Q3)'), (18350, 'Japanese Journal of Political Science', 14681099, 0.181, 'Q3', 18, 12, 771, 35, 80, '3', '2000-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18351, 'Jezyk Polski', 216941, 0.181, 'Q2', 3, 44, 1220, 16, 115, '17', '2012-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18352, 'Jornal Brasileiro de Patologia e Medicina Lab', 16762444, 0.181, 'Q4', 15, 53, 1041, 71, 157, '14', '2001-2002, 2006-2020', 'Clinical Biochemistry (Q4); Medical Laboratory Technology (Q4); Pathology and Forensic Medicine (Q4)'), (18353, 'Journal of Asian Architecture and Building En', 13472852, 0.181, 'Q2', 19, 112, 3828, 156, 220, '6', '2002-2020', 'Architecture (Q2); Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4)'), (18354, 'Journal of Globalization and Development', 19481837, 0.181, 'Q3', 5, 8, 465, 11, 24, '5', '2016-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Development (Q4)'), (18355, 'Journal of Pentecostal Theology', 17455251, 0.181, 'Q1', 11, 20, 1180, 9, 52, '16', '1992-2011, 2013-2020', 'Religious Studies (Q1)'), (18356, 'Journal of Solid Waste Technology and Managem', 10881697, 0.181, 'Q4', 16, 43, 1745, 64, 124, '2', '1997-1999, 2001-2020', 'Waste Management and Disposal (Q4)'), (18357, 'KEDI Journal of Educational Policy', 17394341, 0.181, 'Q4', 11, 14, 776, 20, 41, '13', '2008-2019', 'Education (Q4)'), (18358, 'Kritika', 1531023, 0.181, 'Q2', 23, 26, 1913, 23, 76, '2', '2002-2020', 'Cultural Studies (Q2); History (Q2)'), (18359, 'Materiale si Cercetari Arheologice', 765147, 0.181, 'Q2', 4, 14, 845, 8, 46, '43', '2015-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2); History (Q2)'), (18360, 'Multiagent and Grid Systems', 15741702, 0.181, 'Q3', 19, 21, 943, 38, 46, '2', '2005-2020', 'Computer Science (miscellaneous) (Q3)'), (18361, 'Multidisciplinary Journal of Educational Rese', 20142862, 0.181, 'Q3', 3, 12, 667, 23, 24, '12', '2018-2020', 'Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4); Education (Q4)'), (18362, 'Progress on Chemistry and Application of Chit', 18965644, 0.181, 'Q4', 10, 18, 695, 40, 57, '17', '2012-2019', 'Biochemistry (Q4); Organic Chemistry (Q4)'), (18363, 'Psychology, Journal of the Higher School of E', 18138918, 0.181, 'Q2', 4, 49, 1771, 51, 135, '10', '2016-2020', 'Cultural Studies (Q2); Education (Q4); Psychology (miscellaneous) (Q4)'), (18364, 'Rad Hrvatske Akademije Znanosti i Umjetnosti,', 18454100, 0.181, 'Q4', 4, 10, 209, 17, 32, '58', '2013, 2015-2019', 'Mathematics (miscellaneous) (Q4)'), (18365, 'Revista Brasileira de Medicina do Trabalho', 16794435, 0.181, 'Q4', 7, 42, 1149, 50, 186, '14', '2011-2019', 'Physiology (medical) (Q4)'), (18366, 'Revista Mexicana de Fisica', 35001, 0.181, 'Q4', 25, 100, 3311, 125, 162, '30', '1991-1993, 1995-2020', 'Education (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (18367, 'Scandinavian Journal of Information Systems', 19010990, 0.181, 'Q4', 11, 15, 940, 18, 19, '25', '2011-2020', 'Information Systems (Q4)'), (18368, 'Scientia Geologica Sinica', 5635020, 0.181, 'Q4', 41, 79, 3365, 75, 256, '1', '1979-2020', 'Geology (Q4)'), (18369, 'Terapevticheskii Arkhiv', 23095342, 0.181, 'Q4', 14, 192, 6148, 434, 696, '10', '1949-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (18370, 'Vjesnik Arheoloskog Muzeja u Zagrebu', 3507165, 0.181, 'Q2', 2, 0, 0, 4, 7, '58', '1979, 1981, 2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (18371, 'AATCC Journal of Research', 24723444, 0.18, 'Q4', 8, 39, 1320, 63, 87, '2', '2014-2020', 'Materials Chemistry (Q4); Polymers and Plastics (Q4); Process Chemistry and Technology (Q4)'), (18372, 'Acta Scientiae Veterinariae', 16780345, 0.18, 'Q3', 12, 105, 2382, 155, 503, '14', '2010-2020', 'Veterinary (miscellaneous) (Q3)'), (18373, 'Anthropologica', 35459, 0.18, 'Q3', 18, 38, 1420, 44, 96, '9', '1980, 1985, 1999, 2005-2020', 'Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (18374, 'Anuario Lope de Vega', 20148860, 0.18, 'Q1', 3, 24, 1006, 21, 50, '12', '2015-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18375, 'Art Inquiry', 24510327, 0.18, 'Q1', 2, 13, 314, 9, 52, '17', '2016-2019', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Music (Q2)'), (18376, 'Asian Journal of Business Research', 24634522, 0.18, 'Q3', 3, 24, 1803, 29, 30, '41', '2018-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3); Business and International Management (Q4); Marketing (Q4); Strategy and Management (Q4)'), (18377, 'Behavioral and Social Sciences Librarian', 1639269, 0.18, 'Q3', 16, 3, 104, 4, 10, '2', '1979-2002, 2004-2017, 2019-2020', 'Library and Information Sciences (Q3); Social Sciences (miscellaneous) (Q3)'), (18378, 'B-ENT', 1781782, 0.18, 'Q4', 32, 1, 69, 4, 12, '24', '2005-2020', 'Medicine (miscellaneous) (Q4); Otorhinolaryngology (Q4)'), (18379, 'Cailiao Gongcheng/Journal of Materials Engine', 10014381, 0.18, 'Q4', 18, 246, 8571, 502, 734, '1', '1993-2020', 'Aerospace Engineering (Q4)'), (18380, 'Central European Journal of Nursing and Midwi', 23363517, 0.18, 'Q3', 7, 28, 801, 42, 73, '31', '2014-2020', 'Nursing (miscellaneous) (Q3)'), (18381, 'Colombia Forestal', 1200739, 0.18, 'Q3', 4, 15, 705, 22, 44, '47', '2016-2020', 'Nature and Landscape Conservation (Q3); Forestry (Q4); Soil Science (Q4)'), (18382, 'Drustvena Istrazivanja', 18486096, 0.18, 'Q3', 15, 33, 1403, 48, 87, '58', '1996-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (18383, 'Emerging Materials Research', 20460155, 0.18, 'Q4', 7, 46, 1837, 102, 161, '2', '2015-2020', 'Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)'), (18384, 'Fashion, Style and Popular Culture', 20500734, 0.18, 'Q2', 2, 31, 1137, 18, 59, '3', '2016-2020', 'Cultural Studies (Q2); Marketing (Q4); Materials Science (miscellaneous) (Q4); Social Psychology (Q4); Strategy and Management (Q4)'), (18385, 'Geogaceta', 21736545, 0.18, 'Q4', 3, 30, 425, 48, 196, '12', '2017-2019', 'Geology (Q4)'), (18386, 'Hidrobiologica', 1888897, 0.18, 'Q4', 16, 26, 1231, 48, 89, '30', '2007-2019', 'Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Oceanography (Q4); Water Science and Technology (Q4)'), (18387, 'Indiana Journal of Global Legal Studies', 10800727, 0.18, 'Q3', 12, 22, 1612, 39, 79, '2', '2013-2019', 'Law (Q3)'), (18388, 'Indian Journal of Gender Studies', 9715215, 0.18, 'Q2', 19, 25, 810, 22, 54, '4', '1994-2020', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Gender Studies (Q3); Health (social science) (Q4)'), (18389, 'International Journal of Abrasive Technology', 1752265, 0.18, 'Q3', 14, 14, 272, 15, 44, '3', '2008-2014', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (18390, 'International Journal of Networked and Distri', 22117938, 0.18, 'Q4', 7, 12, 439, 54, 64, '16', '2013-2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4)'), (18391, 'International Journal of System of Systems En', 1748068, 0.18, 'Q4', 17, 19, 909, 21, 38, '3', '2008-2014, 2020', 'Hardware and Architecture (Q4); Information Systems (Q4)'), (18392, 'Journal of Food Quality and Hazards Control', 2345685, 0.18, 'Q4', 10, 26, 793, 46, 70, '15', '2014-2020', 'Food Science (Q4)'), (18393, 'Journal of Lymphoedema', 17507235, 0.18, 'Q4', 8, 15, 262, 16, 32, '3', '2011-2020', 'Hematology (Q4)'), (18394, 'Journal of Middle East Women s Studies', 15525864, 0.18, 'Q2', 8, 25, 467, 36, 95, '2', '2013-2020', 'Cultural Studies (Q2); History (Q2); Gender Studies (Q3); Sociology and Political Science (Q3)'), (18395, 'Journal of Modern History', 15375358, 0.18, 'Q2', 30, 17, 65, 28, 40, '2', '1975, 1978-1979, 1982, 1987, 1998-2001, 2005-2020', 'History (Q2)'), (18396, 'Journal of pastoral care &amp; counseling : J', 15423050, 0.18, 'Q4', 19, 51, 0, 58, 116, '2', '2002-2020', 'Medicine (miscellaneous) (Q4)'), (18397, 'Journal of Physical Education (Maringa)', 24482455, 0.18, 'Q4', 9, 77, 2481, 86, 214, '14', '2016-2020', 'Education (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18398, 'Letters in Organic Chemistry', 15701786, 0.18, 'Q4', 29, 121, 4213, 330, 372, '52', '2005-2020', 'Biochemistry (Q4); Organic Chemistry (Q4)'), (18399, 'Magyar Nyelvor', 250236, 0.18, 'Q2', 4, 26, 967, 7, 93, '50', '2011-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18400, 'Modern American History', 25150456, 0.18, 'Q2', 2, 17, 1435, 4, 23, '2', '2018-2020', 'History (Q2)'), (18401, 'Nigerian Journal of Physiological Sciences', 794859, 0.18, 'Q4', 17, 36, 1055, 46, 93, '51', '1988-1991, 2006-2019', 'Medicine (miscellaneous) (Q4); Physiology (Q4); Physiology (medical) (Q4)'), (18402, 'NJES Nordic Journal of English Studies', 15027694, 0.18, 'Q1', 8, 66, 2004, 10, 50, '33', '2008-2009, 2011-2018', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18403, 'Operating Systems Review (ACM)', 1635980, 0.18, 'Q4', 104, 7, 371, 58, 33, '2', '1980-1991, 1993, 1996-2010, 2013-2017, 2019', 'Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems (Q4)'), (18404, 'Pediatric Infection and Vaccine', 23841087, 0.18, 'Q3', 3, 25, 531, 17, 73, '13', '2014-2020', 'Pediatrics, Perinatology and Child Health (Q3); Infectious Diseases (Q4)'), (18405, 'Politicka Misao', 18468721, 0.18, 'Q2', 5, 20, 879, 45, 82, '58', '1985, 2015-2019', 'History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18406, 'Proceedings of the Indian National Science Ac', 3700046, 0.18, 'Q4', 18, 98, 5473, 111, 162, '4', '1978-1980, 1984, 2005-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (18407, 'Prometheus', 8109028, 0.18, 'Q3', 25, 0, 0, 15, 15, '3', '1983-2017', 'Geography, Planning and Development (Q3); Earth-Surface Processes (Q4)'), (18408, 'Review of Black Political Economy', 346446, 0.18, 'Q2', 16, 30, 1315, 23, 60, '2', '1970-2020', 'Cultural Studies (Q2); Economics and Econometrics (Q4)'), (18409, 'Revista Numismatica Hecate', 23868643, 0.18, 'Q2', 2, 11, 361, 9, 49, '12', '2014-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2)'), (18410, 'South African Journal of Radiology', 1027202, 0.18, 'Q4', 3, 23, 473, 19, 44, '27', '2014-2020', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (18411, 'TheoLogica', 25930265, 0.18, 'Q1', 2, 26, 820, 11, 40, '24', '2017-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (18412, 'Trimestre Economico', 413011, 0.18, 'Q4', 11, 46, 1451, 35, 79, '30', '1979, 1981, 1989, 1996-2020', 'Economics and Econometrics (Q4)'), (18413, 'WIT Transactions on Ecology and the Environme', 17433541, 0.18, 'Q3', 21, 151, 3780, 343, 747, '3', '2006-2015, 2017-2019', 'Environmental Science (miscellaneous) (Q3)'), (18414, 'Zeitschrift fur Germanistische Linguistik', 3013294, 0.18, 'Q2', 12, 24, 1073, 15, 68, '5', '1973-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Developmental and Educational Psychology (Q4)'), (18415, 'Zeitschrift fur Sportpsychologie', 21906300, 0.18, 'Q4', 11, 29, 577, 29, 40, '5', '2008-2020', 'Applied Psychology (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Social Psychology (Q4)'), (18416, 'Acta Universitatis Agriculturae et Silvicultu', 12118516, 0.179, 'Q3', 17, 93, 2994, 284, 530, '31', '2007-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (18417, 'Advances in Integrative Medicine', 22129588, 0.179, 'Q3', 10, 40, 1202, 61, 62, '16', '2014-2020', 'Complementary and Alternative Medicine (Q3)'), (18418, 'Africa Development/Afrique et Developpement', 8503907, 0.179, 'Q3', 12, 25, 947, 30, 74, '102', '1978-1979, 1981-1986, 1990, 1994-1995, 2007-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3); Development (Q4)'), (18419, 'Africa Today', 15271978, 0.179, 'Q3', 30, 16, 857, 37, 68, '2', '1981, 1984, 1993, 1996-2020', 'Geography, Planning and Development (Q3); Sociology and Political Science (Q3)'), (18420, 'Agrokemia es Talajtan', 21873, 0.179, 'Q4', 9, 6, 426, 17, 67, '50', '2007-2019', 'Agronomy and Crop Science (Q4); Soil Science (Q4)'), (18421, 'Applied Engineering Letters', 24664847, 0.179, 'Q3', 3, 20, 441, 28, 40, '55', '2020', 'Energy (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)'), (18422, 'Archives of Design Research', 22882987, 0.179, 'Q1', 4, 55, 1587, 32, 154, '13', '2017-2020', 'Visual Arts and Performing Arts (Q1); Architecture (Q2); Computer Graphics and Computer-Aided Design (Q3)'), (18423, 'Asia Pacific Allergy', 22338268, 0.179, 'Q3', 6, 0, 0, 2, 2, '13', '2015-2017', 'Dermatology (Q3); Immunology and Allergy (Q4)'), (18424, 'Australian Journal of Educational and Develop', 14465442, 0.179, 'Q4', 21, 0, 0, 3, 2, '11', '2001-2017', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (18425, 'Beijing Linye Daxue Xuebao/Journal of Beijing', 10047301, 0.179, 'Q4', 17, 176, 5950, 257, 538, '1', '1998-2020', 'Forestry (Q4)'), (18426, 'Bulgarian Chemical Communications', 8619808, 0.179, 'Q4', 16, 152, 3535, 315, 765, '61', '2008-2020', 'Chemistry (miscellaneous) (Q4)'), (18427, 'Clinical Pediatric Emergency Medicine', 15228401, 0.179, 'Q3', 19, 30, 1136, 53, 126, '3', '1999-2020', 'Emergency Medicine (Q3); Pediatrics, Perinatology and Child Health (Q3)'), (18428, 'Creativity Studies', 23450487, 0.179, 'Q2', 9, 32, 1417, 31, 66, '69', '2014-2020', 'Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18429, 'Current Medical Imaging Reviews', 15734056, 0.179, 'Q4', 26, 141, 7127, 295, 286, '52', '2006-2020', 'Internal Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (18430, 'Digital Creativity', 17443806, 0.179, 'Q3', 21, 24, 911, 40, 65, '3', '2005-2020', 'Arts and Humanities (miscellaneous) (Q3); Computational Theory and Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Human-Computer Interaction (Q4)'), (18431, 'Dog Behavior', 24210684, 0.179, 'Q3', 5, 6, 174, 13, 41, '7', '2015-2019', 'Small Animals (Q3); Animal Science and Zoology (Q4); Applied Psychology (Q4)'), (18432, 'Economic Research Guardian', 22478531, 0.179, 'Q3', 1, 4, 150, 2, 6, '43', '2019-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4)'), (18433, 'Electronic Green Journal', 10767975, 0.179, 'Q3', 13, 7, 382, 4, 8, '2', '2001-2020', 'Geography, Planning and Development (Q3)'), (18434, 'Gerontechnology', 1569111, 0.179, 'Q4', 17, 26, 1007, 69, 109, '16', '2011-2020', 'Biomedical Engineering (Q4); Geriatrics and Gerontology (Q4); Gerontology (Q4)'), (18435, 'i-com', 21966826, 0.179, 'Q3', 4, 19, 850, 37, 37, '5', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Communication (Q3); Computer Networks and Communications (Q4); Human-Computer Interaction (Q4); Information Systems (Q4); Social Psychology (Q'), (18436, 'India Quarterly', 2513048, 0.179, 'Q3', 7, 38, 1230, 41, 77, '4', '1954-1963, 1966-2008, 2011-2020', 'Political Science and International Relations (Q3)'), (18437, 'Information Visualization', 14738724, 0.179, 'Q4', 48, 17, 1082, 108, 63, '2', '1997, 2002-2020', 'Computer Vision and Pattern Recognition (Q4)'), (18438, 'International Forum of Psychoanalysis', 16512324, 0.179, 'Q4', 16, 37, 1042, 14, 95, '3', '1992-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (18439, 'International Journal of Business', 10834346, 0.179, 'Q4', 10, 21, 777, 50, 67, '2', '2011-2020', 'Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Strategy and Management (Q4)'), (18440, 'International Journal of Climate Change: Impa', 18357156, 0.179, 'Q4', 3, 3, 191, 18, 37, '2', '2017-2020', 'Atmospheric Science (Q4); Global and Planetary Change (Q4); Management, Monitoring, Policy and Law (Q4)'), (18441, 'International Journal of Computing Science an', 17525063, 0.179, 'Q4', 17, 60, 1273, 204, 159, '3', '2007-2010, 2012-2014, 2020', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Theoretical Computer Science (Q4)'), (18442, 'International Journal of Nanomanufacturing', 17469406, 0.179, 'Q3', 14, 25, 633, 49, 98, '3', '2007-2014, 2020', 'Industrial and Manufacturing Engineering (Q3); Nanoscience and Nanotechnology (Q4)'), (18443, 'International Journal of Sustainable Society', 17562546, 0.179, 'Q3', 15, 20, 1062, 40, 55, '3', '2008-2014, 2020', 'Environmental Science (miscellaneous) (Q3); Geography, Planning and Development (Q3); Sociology and Political Science (Q3); Management, Monitoring, Policy and Law (Q4)'), (18444, 'International Trade Journal', 8853908, 0.179, 'Q3', 20, 44, 1820, 69, 71, '3', '1986-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Business and International Management (Q4)'), (18445, 'Iranian Studies', 210862, 0.179, 'Q1', 18, 45, 2170, 21, 111, '3', '1967-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2)'), (18446, 'Journal of African Law', 218553, 0.179, 'Q3', 16, 24, 727, 18, 65, '3', '1957-2000, 2003-2020', 'Law (Q3)'), (18447, 'Journal of Bacteriology and Virology', 15982467, 0.179, 'Q4', 12, 7, 157, 20, 65, '13', '2001-2020', 'Immunology (Q4); Microbiology (Q4); Virology (Q4)'), (18448, 'Journal of Classroom Interaction', 7494025, 0.179, 'Q4', 7, 5, 140, 10, 25, '2', '2009, 2014-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (18449, 'Journal of Commonwealth and Postcolonial Stud', 10731687, 0.179, 'Q1', 4, 1, 4, 2, 27, '2', '2002-2006, 2008, 2010, 2014, 2016-2018', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18450, 'Journal of Health Management', 9720634, 0.179, 'Q4', 17, 42, 1373, 99, 132, '4', '1994, 1999-2020', 'Health Policy (Q4)'), (18451, 'Journal of New Zealand Grasslands', 24632872, 0.179, 'Q3', 2, 22, 554, 15, 33, '41', '2019', 'Nature and Landscape Conservation (Q3); Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4); Soil Science (Q4)'), (18452, 'Journal of the Turkish Chemical Society, Sect', 21490120, 0.179, 'Q4', 6, 77, 2563, 148, 179, '18', '2018-2020', 'Chemistry (miscellaneous) (Q4)'), (18453, 'Kratkiye Soobshcheniya Instituta Arkheologii', 1302620, 0.179, 'Q2', 1, 52, 1067, 15, 96, '10', '2019', 'Archeology (arts and humanities) (Q2); History (Q2)'), (18454, 'Magyar Nyelv', 15881210, 0.179, 'Q2', 4, 32, 793, 12, 129, '50', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18455, 'Mundo Agrario', 15155994, 0.179, 'Q2', 8, 25, 1105, 13, 73, '46', '2008-2020', 'History (Q2); Agricultural and Biological Sciences (miscellaneous) (Q3); Geography, Planning and Development (Q3); Urban Studies (Q3); Industrial Relations (Q4)'), (18456, 'Netherlands International Law Review', 165070, 0.179, 'Q3', 17, 24, 564, 33, 60, '19', '1953, 1955-2020', 'Law (Q3)'), (18457, 'Optoelectronics Letters', 16731905, 0.179, 'Q4', 18, 92, 1859, 208, 293, '5', '2007-2020', 'Atomic and Molecular Physics, and Optics (Q4); Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (18458, 'Paediatrics and Child Health (United Kingdom)', 1878206, 0.179, 'Q3', 21, 80, 758, 130, 270, '3', '2007-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (18459, 'Pragmatics and Cognition', 15699943, 0.179, 'Q2', 33, 0, 0, 24, 51, '16', '1993-2014, 2016-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Computer Science (miscellaneous) (Q3); History and Philosophy of Science (Q3); Behavioral Neuroscience (Q4)'), (18460, 'Psychology, Society and Education', 1989709, 0.179, 'Q3', 8, 20, 817, 85, 88, '12', '2012, 2015-2020', 'Sociology and Political Science (Q3); Clinical Psychology (Q4); Education (Q4); Social Psychology (Q4)'), (18461, 'Radovi - Zavoda za povijesne znanosti HAZU u ', 13300474, 0.179, 'Q2', 4, 17, 736, 7, 46, '58', '2009-2011, 2013-2019', 'History (Q2)'), (18462, 'Respiratory Medicine and Research', 25900412, 0.179, 'Q4', 15, 53, 1062, 64, 126, '8', '2019-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (18463, 'Restaurator', 345806, 0.179, 'Q2', 27, 15, 388, 12, 45, '5', '1970, 1972, 1978-1980, 1983-1984, 1986-2020', 'Conservation (Q2); Media Technology (Q3); Materials Science (miscellaneous) (Q4)'), (18464, 'Revista de Logopedia, Foniatria y Audiologia', 2144603, 0.179, 'Q3', 12, 33, 1306, 30, 59, '12', '1981-1995, 2005-2020', 'LPN and LVN (Q3); Speech and Hearing (Q4)'), (18465, 'Romanian Journal of Diabetes, Nutrition and M', 15838609, 0.179, 'Q4', 6, 10, 243, 47, 87, '17', '2011-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (18466, 'Sahand Communications in Mathematical Analysi', 24233900, 0.179, 'Q4', 2, 35, 799, 24, 58, '15', '2019-2020', 'Analysis (Q4); Applied Mathematics (Q4); Numerical Analysis (Q4)'), (18467, 'Social Research', 37783, 0.179, 'Q3', 44, 57, 1218, 73, 138, '2', '1946-1947, 1972-1974, 1976, 1979-1980, 1982-1986, 1988, 1995-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (18468, 'South African Journal of Business Management', 20785585, 0.179, 'Q4', 15, 2, 129, 71, 92, '27', '2008-2020', 'Business and International Management (Q4); Strategy and Management (Q4)'), (18469, 'Swedish Journal of Romanian Studies', 20030924, 0.179, 'Q1', 1, 16, 300, 1, 24, '20', '2018-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Anthropology (Q3)'), (18470, 'Acta IMEKO', 2221870, 0.178, 'Q4', 12, 99, 1932, 175, 161, '50', '2012-2020', 'Electrical and Electronic Engineering (Q4); Instrumentation (Q4); Mechanical Engineering (Q4)'), (18471, 'Advances in Decision Sciences', 20903367, 0.178, 'Q4', 13, 23, 931, 30, 41, '22', '2010-2020', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Decision Sciences (miscellaneous) (Q4); Statistics and Probability (Q4)'), (18472, 'American Communist History', 14743892, 0.178, 'Q2', 4, 9, 529, 11, 31, '3', '2010-2020', 'History (Q2); Sociology and Political Science (Q3)'), (18473, 'Annual of the British School at Athens', 682454, 0.178, 'Q1', 19, 12, 804, 15, 36, '3', '1894, 1896-1914, 1916, 1918-1921, 1923, 1925-1928, 1930-1940, 1945, 1947-1957, 1959-2020', 'Classics (Q1); Visual Arts and Performing Arts (Q1); Archeology (Q2); Archeology (arts and humanities) (Q2); History (Q2)'), (18474, 'Anti-Infective Agents', 22113533, 0.178, 'Q4', 24, 47, 1753, 38, 51, '52', '2012-2020', 'Infectious Diseases (Q4); Pharmacology (Q4)'), (18475, 'Asian Biomedicine', 1875855, 0.178, 'Q4', 17, 40, 1126, 59, 94, '40', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (18476, 'Biosystems Diversity', 25202529, 0.178, 'Q4', 5, 41, 2481, 92, 150, '44', '2017-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (18477, 'Cailiao Rechuli Xuebao/Transactions of Materi', 10096264, 0.178, 'Q4', 20, 281, 6355, 376, 885, '1', '2001-2020', 'Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (18478, 'Ceska a Slovenska Oftalmologie', 9059, 0.178, 'Q4', 11, 39, 808, 45, 115, '31', '1950-2020', 'Ophthalmology (Q4)'), (18479, 'Environmental Policy and Law', 378777, 0.178, 'Q3', 12, 64, 1337, 32, 139, '16', '1975-2020', 'Environmental Science (miscellaneous) (Q3); Law (Q3); Management, Monitoring, Policy and Law (Q4)'), (18480, 'Estudios de Fonetica Experimental', 15755533, 0.178, 'Q2', 6, 10, 521, 9, 23, '12', '2011-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18481, 'European Transport - Trasporti Europei', 18253997, 0.178, 'Q4', 20, 49, 1342, 41, 86, '7', '2010-2013, 2015-2020', 'Automotive Engineering (Q4); Transportation (Q4)'), (18482, 'Foreign Literature Studies', 10037519, 0.178, 'Q1', 8, 91, 1645, 18, 309, '1', '2005-2020', 'Literature and Literary Theory (Q1)'), (18483, 'Harbin Gongcheng Daxue Xuebao/Journal of Harb', 10067043, 0.178, 'Q3', 17, 269, 5160, 388, 903, '1', '2004-2020', 'Chemical Engineering (miscellaneous) (Q3); Aerospace Engineering (Q4); Control and Systems Engineering (Q4); Mechanical Engineering (Q4); Nuclear Energy and Engineering (Q4)'), (18484, 'IEICE Electronics Express', 13492543, 0.178, 'Q4', 36, 143, 4554, 525, 836, '6', '2004-2020', 'Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (18485, 'Indo-Iranian Journal', 15728536, 0.178, 'Q2', 11, 7, 692, 9, 28, '16', '1957-2019', 'Linguistics and Language (Q2); Philosophy (Q2); Political Science and International Relations (Q3)'), (18486, 'International Journal Bioautomation', 13142321, 0.178, 'Q4', 13, 32, 816, 47, 101, '61', '2011-2020', 'Biochemistry (Q4); Biotechnology (Q4); Ecological Modeling (Q4); Food Science (Q4); Genetics (Q4)'), (18487, 'International Journal of Business Intelligenc', 17438195, 0.178, 'Q4', 19, 57, 1614, 68, 103, '3', '2005-2014, 2016, 2020', 'Information Systems and Management (Q4); Management Information Systems (Q4); Statistics, Probability and Uncertainty (Q4)'), (18488, 'International Journal of Childbirth', 21565295, 0.178, 'Q3', 3, 20, 945, 18, 44, '2', '2018-2019', 'Maternity and Midwifery (Q3); Obstetrics and Gynecology (Q3)'), (18489, 'Journal of Biotech Research', 19443285, 0.178, 'Q4', 11, 20, 719, 29, 46, '2', '2009-2013, 2015-2020', 'Biotechnology (Q4); Genetics (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (18490, 'Journal of Economic Development', 2548372, 0.178, 'Q4', 3, 18, 987, 31, 60, '13', '2017-2020', 'Economics and Econometrics (Q4); Finance (Q4)'), (18491, 'Journal of Hand Surgery Global Online', 25895141, 0.178, 'Q4', 2, 70, 1411, 14, 49, '2', '2019-2020', 'Surgery (Q4)'), (18492, 'Journal of Tekirdag Agricultural Faculty', 13027050, 0.178, 'Q3', 2, 37, 1336, 35, 117, '18', '2017-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Pollution (Q4)'), (18493, 'Journal of the Association of Physicians of I', 45772, 0.178, 'Q4', 58, 693, 601, 361, 740, '4', '1961-2020', 'Medicine (miscellaneous) (Q4)'), (18494, 'Journal of Transatlantic Studies', 17541018, 0.178, 'Q2', 10, 27, 1253, 26, 63, '3', '2003-2007, 2010-2020', 'History (Q2); Political Science and International Relations (Q3)'), (18495, 'Macedonian Veterinary Review', 14097621, 0.178, 'Q3', 6, 24, 652, 37, 68, '100', '2013-2020', 'Veterinary (miscellaneous) (Q3)'), (18496, 'Macroeconomics and Finance in Emerging Market', 17520843, 0.178, 'Q4', 9, 33, 1427, 32, 49, '3', '2010-2020', 'Economics and Econometrics (Q4); Finance (Q4)'), (18497, 'Medecine et sante tropicales', 22613684, 0.178, 'Q4', 9, 0, 0, 91, 270, '8', '2012-2019', 'Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18498, 'Medwave', 7176384, 0.178, 'Q4', 7, 107, 0, 122, 218, '45', '2014-2020', 'Medicine (miscellaneous) (Q4)'), (18499, 'Model Assisted Statistics and Applications', 15741699, 0.178, 'Q4', 11, 33, 883, 47, 88, '16', '2005, 2007-2020', 'Applied Mathematics (Q4); Modeling and Simulation (Q4); Statistics and Probability (Q4)'), (18500, 'Rassegna di Psicologia', 11255196, 0.178, 'Q4', 5, 7, 377, 33, 54, '7', '2016-2019', 'Behavioral Neuroscience (Q4); Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)'), (18501, 'Review of Central and East European Law', 9259880, 0.178, 'Q1', 15, 22, 619, 17, 49, '16', '1975, 1977-1981, 1983-2020', 'Classics (Q1); History (Q2); Philosophy (Q2); Law (Q3)'), (18502, 'Review of Economic Perspectives', 12132446, 0.178, 'Q3', 8, 18, 720, 45, 64, '17', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (18503, 'Revista Mexicana de Fisica E', 18703542, 0.178, 'Q4', 10, 34, 843, 27, 71, '30', '2006-2020', 'Education (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (18504, 'Russia in Global Affairs', 18106374, 0.178, 'Q2', 2, 59, 1032, 20, 59, '2', '2018-2020', 'Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18505, 'SiSal Journal', 21853762, 0.178, 'Q2', 2, 22, 444, 7, 24, '6', '2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Computer Science Applications (Q4); Education (Q4)'), (18506, 'Studies in African Linguistics', 393533, 0.178, 'Q2', 4, 6, 286, 3, 18, '2', '2011-2018', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18507, 'Washington Law Review', 430617, 0.178, 'Q3', 23, 42, 106, 65, 115, '2', '1973-1974, 1976, 1980, 1982-1983, 1986, 1988, 1990-1992, 1994-2000, 2002-2020', 'Law (Q3)'), (18508, 'Artseduca', 22540709, 0.177, 'Q3', 2, 58, 1445, 7, 30, '12', '2019-2020', 'Arts and Humanities (miscellaneous) (Q3); Education (Q4)'), (18509, 'Australasian Journal of Paramedicine', 22027270, 0.177, 'Q2', 15, 44, 1264, 44, 71, '11', '2008-2009, 2013-2020', 'Emergency Medical Services (Q2); Emergency Medicine (Q3); Emergency Nursing (Q3)'), (18510, 'Boletin de Investigaciones Marinas y Costeras', 1229761, 0.177, 'Q4', 14, 9, 486, 27, 56, '47', '1996-1998, 2001-2019', 'Animal Science and Zoology (Q4); Aquatic Science (Q4); Oceanography (Q4); Water Science and Technology (Q4)'), (18511, 'Cahiers de Nutrition et de Dietetique', 79960, 0.177, 'Q4', 13, 35, 1632, 53, 101, '8', '1973-1991, 1994-2020', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)'), (18512, 'China: An International Journal', 2197472, 0.177, 'Q3', 15, 45, 0, 59, 115, '37', '2008-2020', 'Social Sciences (miscellaneous) (Q3); Business and International Management (Q4); Economics and Econometrics (Q4)'), (18513, 'Chinese Journal of Schistosomiasis Control', 10056661, 0.177, 'Q4', 14, 143, 1174, 157, 521, '1', '2011-2020', 'Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Parasitology (Q4)'), (18514, 'Classical Philology', 9837, 0.177, 'Q1', 24, 33, 2277, 25, 71, '2', '1970, 1973, 1978, 1980-1982, 1984, 1987, 1992-1994, 1996-2020', 'Classics (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18515, 'Cor et Vasa', 108650, 0.177, 'Q4', 15, 97, 1821, 77, 284, '17', '1961-1994, 2006-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (18516, 'Culture and Religion', 14755610, 0.177, 'Q1', 17, 9, 252, 37, 71, '3', '2010-2020', 'Religious Studies (Q1); Cultural Studies (Q2); Philosophy (Q2)'), (18517, 'Dialogue-Canadian Philosophical Review', 122173, 0.177, 'Q2', 11, 40, 976, 23, 108, '3', '1962-2020', 'Philosophy (Q2)'), (18518, 'Dyna (Spain)', 127361, 0.177, 'Q3', 11, 97, 1537, 217, 313, '12', '2009-2020', 'Engineering (miscellaneous) (Q3)'), (18519, 'Ecletica Quimica', 1004670, 0.177, 'Q4', 19, 21, 615, 41, 49, '14', '1996-2020', 'Chemistry (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (18520, 'Farmakoekonomika', 20704933, 0.177, 'Q4', 3, 41, 1050, 14, 22, '10', '2020', 'Health Policy (Q4); Pharmacology (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18521, 'Gayana', 717652, 0.177, 'Q4', 17, 10, 413, 17, 42, '45', '2006-2019', 'Animal Science and Zoology (Q4); Aquatic Science (Q4)'), (18522, 'Global Environment', 19733739, 0.177, 'Q2', 5, 29, 78, 29, 52, '3', '2014-2020', 'History (Q2); Global and Planetary Change (Q4); Management, Monitoring, Policy and Law (Q4)'), (18523, 'IEEJ Transactions on Sensors and Micromachine', 13475525, 0.177, 'Q4', 16, 69, 907, 58, 238, '6', '1995-2001, 2003-2020', 'Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4)'), (18524, 'International Journal of Asian Business and I', 19479638, 0.177, 'Q2', 3, 27, 1547, 32, 48, '2', '2017-2020', 'Cultural Studies (Q2); Business and International Management (Q4); Computer Science Applications (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (18525, 'International Journal of Electronic Security ', 17519128, 0.177, 'Q3', 13, 24, 721, 65, 73, '3', '2007-2010, 2012-2014, 2020', 'Law (Q3); Computer Networks and Communications (Q4); Safety, Risk, Reliability and Quality (Q4)'), (18526, 'International Journal of Nutrition, Pharmacol', 22310738, 0.177, 'Q4', 6, 34, 1248, 37, 33, '4', '2014-2020', 'Neurology (clinical) (Q4); Nutrition and Dietetics (Q4); Pharmacology (medical) (Q4)'), (18527, 'International Journal of Software Innovation', 21667179, 0.177, 'Q4', 5, 26, 583, 62, 73, '2', '2017-2020', 'Artificial Intelligence (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Software (Q4)'), (18528, 'Journal for the Study of the New Testament', 17455294, 0.177, 'Q1', 17, 26, 1636, 11, 82, '3', '1978-2020', 'Religious Studies (Q1)'), (18529, 'Journal of Grey System', 9573720, 0.177, 'Q4', 15, 0, 0, 89, 101, '3', '2008-2019', 'Applied Mathematics (Q4); Control and Optimization (Q4); Modeling and Simulation (Q4); Statistics, Probability and Uncertainty (Q4)'), (18530, 'Journal of insurance medicine (New York, N.Y.', 7436661, 0.177, 'Q4', 19, 0, 0, 27, 43, '2', '1991-2014, 2016-2019', 'Medicine (miscellaneous) (Q4)'), (18531, 'Journal of International Oral Health', 9767428, 0.177, 'Q4', 7, 100, 2732, 226, 199, '4', '2016-2020', 'Dentistry (miscellaneous) (Q4)'), (18532, 'Journal of Islamic Economics, Banking and Fin', 20704658, 0.177, 'Q4', 2, 0, 0, 22, 49, '59', '2017-2018', 'Development (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (18533, 'Journal of Language and Education', 24117390, 0.177, 'Q2', 4, 46, 2425, 55, 71, '10', '2018-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (18534, 'Medicina', 16699106, 0.177, 'Q4', 32, 210, 4580, 179, 320, '46', '1945-2020', 'Medicine (miscellaneous) (Q4)'), (18535, 'MELUS', 19463170, 0.177, 'Q1', 8, 28, 1188, 18, 111, '2', '1974-1975, 1977-1985, 1987, 1989-1990, 1992-1995, 2011-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2)'), (18536, 'Middle East Policy', 14754967, 0.177, 'Q3', 27, 44, 0, 74, 96, '3', '1992-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18537, 'Mnemosyne', 267074, 0.177, 'Q1', 15, 76, 3168, 19, 207, '16', '1948-1991, 1993-2020', 'Classics (Q1); Literature and Literary Theory (Q1); Archeology (arts and humanities) (Q2); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18538, 'Oceanic Linguistics', 298115, 0.177, 'Q2', 17, 18, 870, 30, 50, '2', '2004-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18539, 'Physical Culture and Sport, Studies and Resea', 20812221, 0.177, 'Q2', 5, 25, 1163, 53, 81, '17', '2016-2020', 'Cultural Studies (Q2); Applied Psychology (Q4); Education (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (18540, 'Revista de Humanidades (SPAIN)', 23408995, 0.177, 'Q3', 3, 19, 626, 24, 81, '12', '2016-2020', 'Arts and Humanities (miscellaneous) (Q3)'), (18541, 'Revista Romana de Materiale/ Romanian Journal', 15833186, 0.177, 'Q4', 13, 69, 1756, 147, 210, '43', '2008-2020', 'Materials Science (miscellaneous) (Q4)'), (18542, 'Revue Des Sciences De L Eau', 9927158, 0.177, 'Q4', 24, 12, 456, 35, 66, '9', '1988-2020', 'Water Science and Technology (Q4)'), (18543, 'Songklanakarin Journal of Science and Technol', 1253395, 0.177, 'Q3', 33, 181, 5116, 260, 450, '40', '2006-2020', 'Multidisciplinary (Q3)'), (18544, 'Southern African Linguistics and Applied Lang', 16073614, 0.177, 'Q2', 17, 24, 1059, 25, 80, '3', '2003-2020', 'Linguistics and Language (Q2)'), (18545, 'Studies in Australasian Cinema', 17503175, 0.177, 'Q1', 10, 17, 571, 19, 31, '3', '2007-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q3)'), (18546, 'Terra Sebus', 20669143, 0.177, 'Q2', 7, 24, 913, 8, 65, '43', '2009-2019', 'Archeology (Q2); Archeology (arts and humanities) (Q2); Conservation (Q2); History (Q2); Museology (Q2)'), (18547, 'Xi an Jianzhu Keji Daxue Xuebao/Journal of Xi', 10067930, 0.177, 'Q2', 14, 120, 2178, 112, 386, '1', '1998, 2001-2020', 'Architecture (Q2); Arts and Humanities (miscellaneous) (Q3); Building and Construction (Q4)'), (18548, 'ZARCH', 23870346, 0.177, 'Q2', 2, 16, 424, 13, 92, '12', '2017-2019', 'Architecture (Q2); Urban Studies (Q3)'), (18549, 'Zhonghua gan zang bing za zhi = Zhonghua ganz', 10073418, 0.177, 'Q4', 21, 164, 0, 4, 3, '1', '1999-2016, 2020', 'Medicine (miscellaneous) (Q4)'), (18550, 'Acoustical Science and Technology', 13463969, 0.176, 'Q4', 37, 158, 3286, 108, 165, '6', '2000-2020', 'Acoustics and Ultrasonics (Q4)'), (18551, 'Archive for History of Exact Sciences', 14320657, 0.176, 'Q3', 22, 28, 1498, 24, 50, '5', '1960-2020', 'History and Philosophy of Science (Q3); Mathematics (miscellaneous) (Q4)'), (18552, 'Asia-Pacific Journal of Science and Technolog', 25396293, 0.176, 'Q3', 5, 40, 1054, 86, 120, '40', '2017-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3); Engineering (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (18553, 'Brazilian Business Review', 18082386, 0.176, 'Q4', 4, 30, 1599, 53, 73, '14', '2018-2020', 'Accounting (Q4); Business and International Management (Q4); Economics and Econometrics (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (18554, 'Cailiao Yanjiu Xuebao/Chinese Journal of Mate', 10053093, 0.176, 'Q4', 16, 117, 3204, 192, 373, '1', '1994, 1996-2020', 'Materials Science (miscellaneous) (Q4)'), (18555, 'Convergencia', 14051435, 0.176, 'Q3', 11, 20, 1041, 48, 82, '30', '2008-2020', 'Social Sciences (miscellaneous) (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (18556, 'Croatian Operational Research Review', 18480225, 0.176, 'Q4', 5, 14, 366, 61, 92, '58', '2017-2020', 'Applied Mathematics (Q4); Economics and Econometrics (Q4); Management Science and Operations Research (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (18557, 'Cultural Dynamics', 14617048, 0.176, 'Q2', 23, 21, 724, 33, 56, '3', '1988-1993, 1995-2020', 'Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (18558, 'Ecology Law Quarterly', 461121, 0.176, 'Q3', 24, 4, 300, 41, 110, '2', '1973, 1978-1987, 1996, 1999-2019', 'Environmental Science (miscellaneous) (Q3); Law (Q3)'), (18559, 'Ethics and Global Politics', 16546369, 0.176, 'Q3', 13, 14, 355, 16, 40, '3', '2009-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18560, 'Evolution, Mind and Behaviour', 25600982, 0.176, 'Q3', 24, 1, 58, 6, 9, '50', '2015-2019', 'Anthropology (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Experimental and Cognitive Psychology (Q4); Social Psychology (Q4)'), (18561, 'Gestao e Producao', 104530, 0.176, 'Q3', 16, 82, 3953, 132, 206, '14', '2006-2020', 'Industrial and Manufacturing Engineering (Q3); Business and International Management (Q4)'), (18562, 'Groups, Complexity, Cryptology', 18696104, 0.176, 'Q4', 12, 1, 18, 35, 34, '5', '2009-2020', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4)'), (18563, 'HIV Infection and Immunosuppressive Disorders', 20781792, 0.176, 'Q4', 4, 41, 1039, 46, 121, '10', '2017-2019', 'Immunology (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18564, 'International Journal of Education Economics ', 17595673, 0.176, 'Q4', 4, 23, 1088, 23, 62, '19', '2020', 'Education (Q4)'), (18565, 'International Journal of Emergency Services', 20470908, 0.176, 'Q3', 11, 29, 1631, 66, 71, '3', '2012-2020', 'Safety Research (Q3); Management Science and Operations Research (Q4)'), (18566, 'International Journal of Hindu Studies', 10224556, 0.176, 'Q1', 10, 17, 695, 19, 52, '16', '2006-2020', 'Religious Studies (Q1); Cultural Studies (Q2)'), (18567, 'International Journal of Navigation and Obser', 16876008, 0.176, 'Q3', 18, 0, 0, 4, 4, '2', '2010-2018', 'Engineering (miscellaneous) (Q3); Earth and Planetary Sciences (miscellaneous) (Q4); Instrumentation (Q4)'), (18568, 'Journal de la Societe des Oceanistes', 17607256, 0.176, 'Q2', 8, 9, 347, 30, 92, '8', '1968, 1986, 1999, 2001, 2011-2020', 'Cultural Studies (Q2); History (Q2); Anthropology (Q3)'), (18569, 'Journal of Chinese Mass Spectrometry Society', 10042997, 0.176, 'Q4', 8, 70, 1674, 86, 226, '1', '2013-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (18570, 'Journal of Cosmetic Science', 15257886, 0.176, 'Q4', 36, 35, 671, 60, 90, '2', '1996-2020', 'Chemistry (miscellaneous) (Q4); Dermatology (Q4); Medicine (miscellaneous) (Q4)'), (18571, 'Journal of Islamic Archaeology', 20519729, 0.176, 'Q2', 5, 0, 0, 9, 27, '3', '2014-2019', 'Archeology (arts and humanities) (Q2); Archeology (Q3)'), (18572, 'Journal of Medical Sciences (Taiwan)', 10114564, 0.176, 'Q4', 12, 61, 1201, 58, 153, '22', '1963, 2005-2020', 'Medicine (miscellaneous) (Q4)'), (18573, 'Journal of Music Theory', 19417497, 0.176, 'Q2', 13, 7, 316, 6, 23, '2', '2002-2020', 'Music (Q2)'), (18574, 'Journal of the Nepal Medical Association', 1815672, 0.176, 'Q4', 19, 254, 3816, 130, 300, '88', '1975, 1988, 1993-1994, 1996, 2005-2020', 'Medicine (miscellaneous) (Q4)'), (18575, 'Journal of Transportation Security', 19387741, 0.176, 'Q3', 14, 22, 1034, 34, 27, '2', '2008-2020', 'Law (Q3); Political Science and International Relations (Q3); Safety Research (Q3); Sociology and Political Science (Q3); Management Science and Operations Research (Q4); Transportation (Q4)'), (18576, 'Koomesh', 16087046, 0.176, 'Q4', 12, 88, 3152, 107, 308, '15', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (18577, 'Law and Critique', 9578536, 0.176, 'Q3', 19, 25, 1207, 45, 55, '16', '1990-2002, 2004-2020', 'Law (Q3)'), (18578, 'Leather and Footwear Journal', 15834433, 0.176, 'Q3', 6, 37, 880, 34, 92, '43', '2010-2020', 'Industrial and Manufacturing Engineering (Q3); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (18579, 'Molecular Genetics, Microbiology and Virology', 8914168, 0.176, 'Q4', 9, 34, 1032, 62, 106, '10', '2007-2020', 'Genetics (Q4); Infectious Diseases (Q4); Microbiology (Q4); Molecular Biology (Q4); Virology (Q4)'), (18580, 'Muziki', 1753593, 0.176, 'Q2', 6, 11, 508, 29, 36, '2', '2004-2020', 'Music (Q2)'), (18581, 'Orvosi Hetilap', 306002, 0.176, 'Q4', 21, 308, 7881, 391, 898, '50', '1949-2020', 'Medicine (miscellaneous) (Q4)'), (18582, 'Paideia', 103863, 0.176, 'Q4', 12, 38, 1194, 58, 133, '14', '2011-2020', 'Education (Q4); Psychology (miscellaneous) (Q4)'), (18583, 'Philippine Journal of Science', 317683, 0.176, 'Q3', 15, 116, 3696, 130, 211, '63', '1979, 1982-1983, 1986-1988, 2009-2020', 'Multidisciplinary (Q3); Social Sciences (miscellaneous) (Q3)'), (18584, 'Principia', 14144247, 0.176, 'Q2', 4, 24, 1024, 15, 67, '14', '2012-2020', 'Philosophy (Q2); History and Philosophy of Science (Q3)'), (18585, 'Revista Colombiana de Matematicas', 347426, 0.176, 'Q4', 7, 7, 127, 21, 56, '47', '2014-2019', 'Mathematics (miscellaneous) (Q4)'), (18586, 'Revista Internacional de Linguistica Iberoame', 15799425, 0.176, 'Q2', 11, 10, 381, 7, 56, '5', '2003-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18587, 'Transactions of the American Philological Ass', 3605949, 0.176, 'Q1', 19, 18, 1246, 9, 44, '2', '2002-2020', 'Classics (Q1); Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18588, 'Transnational Marketing Journal', 20414684, 0.176, 'Q3', 2, 2, 134, 18, 18, '3', '2018-2019', 'Communication (Q3); Sociology and Political Science (Q3); Marketing (Q4)'), (18589, 'Turk Geriatri Dergisi', 13042947, 0.176, 'Q4', 16, 64, 1397, 72, 175, '18', '1998-2002, 2006-2020', 'Geriatrics and Gerontology (Q4)'), (18590, 'Vlaams Diergeneeskundig Tijdschrift', 3039021, 0.176, 'Q3', 18, 49, 1226, 46, 139, '24', '1996-2020', 'Veterinary (miscellaneous) (Q3)'), (18591, 'Zentralblatt fur Arbeitsmedizin, Arbeitsschut', 21980713, 0.176, 'Q4', 14, 54, 1661, 46, 175, '5', '1953-1963, 1993-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (18592, 'Zhiwu Shengli Xuebao/Plant Physiology Journal', 20951108, 0.176, 'Q3', 12, 281, 11380, 411, 660, '1', '2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q3)'), (18593, 'Zuchtungskunde', 445401, 0.176, 'Q4', 16, 22, 484, 18, 102, '5', '1977, 1996-2020', 'Animal Science and Zoology (Q4); Food Animals (Q4)'), (18594, 'Accounting', 23697407, 0.175, 'Q3', 5, 160, 5349, 37, 21, '9', '2018-2020', 'Pharmaceutical Science (Q3); Accounting (Q4)'), (18595, 'Anales del Sistema Sanitario de Navarra', 11376627, 0.175, 'Q4', 23, 53, 1187, 87, 96, '12', '1999-2020', 'Medicine (miscellaneous) (Q4)'), (18596, 'Archives and Manuscripts', 1576895, 0.175, 'Q3', 8, 25, 0, 34, 59, '3', '2013-2020', 'Communication (Q3); Library and Information Sciences (Q3)'), (18597, 'Asian Journal of Gerontology and Geriatrics', 18191576, 0.175, 'Q4', 7, 17, 288, 11, 30, '1', '2012-2020', 'Geriatrics and Gerontology (Q4)'), (18598, 'Asia-Pacific Financial Markets', 13872834, 0.175, 'Q4', 22, 38, 1270, 39, 54, '2', '1996-2020', 'Finance (Q4)'), (18599, 'Comunicazioni Sociali', 3928667, 0.175, 'Q1', 3, 24, 1006, 19, 102, '7', '2016-2019', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Communication (Q3)'), (18600, 'Cuadernos de Economia (Colombia)', 22484337, 0.175, 'Q3', 7, 40, 1641, 27, 93, '47', '2007-2020', 'Arts and Humanities (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (18601, 'Cultures et Conflits', 1157996, 0.175, 'Q3', 3, 25, 980, 19, 60, '8', '1997, 2016-2020', 'Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18602, 'Direccion y Organizacion', 1132175, 0.175, 'Q3', 6, 35, 1730, 34, 54, '12', '2011-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3)'), (18603, 'Dynamis', 2119536, 0.175, 'Q3', 12, 9, 702, 20, 57, '12', '1981-1985, 1987, 1989-2019', 'History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4)'), (18604, 'Enfance', 137545, 0.175, 'Q3', 13, 29, 1140, 20, 97, '8', '1949-1953, 2002-2020', 'Arts and Humanities (miscellaneous) (Q3); Pediatrics, Perinatology and Child Health (Q3); Developmental and Educational Psychology (Q4); Education (Q4); Health (social science) (Q4)'), (18605, 'Etnoloska Tribina', 3511944, 0.175, 'Q2', 5, 0, 0, 8, 27, '58', '2011-2019', 'Cultural Studies (Q2); Anthropology (Q3)'), (18606, 'European Journal of English Studies', 13825577, 0.175, 'Q1', 9, 21, 722, 32, 58, '3', '2008, 2010-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18607, 'Higher Education Forum', 24329614, 0.175, 'Q4', 3, 11, 579, 8, 36, '6', '2009-2012, 2014-2018, 2020', 'Education (Q4)'), (18608, 'History of Philosophy Quarterly', 7400675, 0.175, 'Q2', 7, 0, 0, 7, 45, '2', '2011-2019', 'Philosophy (Q2)'), (18609, 'Hrvatski Meteoroloski Casopis/Croatian Meteor', 13300083, 0.175, 'Q4', 9, 0, 0, 7, 14, '58', '1991-1998, 2000-2001, 2003-2008, 2011-2013, 2015-2017', 'Atmospheric Science (Q4)'), (18610, 'Implicit Religion', 17431697, 0.175, 'Q1', 9, 2, 94, 26, 66, '3', '2011-2019', 'Religious Studies (Q1)'), (18611, 'Indian Journal of Mathematics', 195324, 0.175, 'Q4', 9, 2, 40, 30, 54, '4', '2012-2019', 'Mathematics (miscellaneous) (Q4)'), (18612, 'International Journal of Industrial Engineeri', 10724761, 0.175, 'Q3', 24, 26, 1388, 90, 153, '2', '1994, 1996-2006, 2008-2020', 'Industrial and Manufacturing Engineering (Q3)'), (18613, 'Iran and the Caucasus', 16098498, 0.175, 'Q2', 11, 24, 1094, 21, 87, '16', '1997-1998, 2001-2020', 'Cultural Studies (Q2); History (Q2)'), (18614, 'ITE Journal (Institute of Transportation Engi', 1628178, 0.175, 'Q4', 25, 0, 0, 27, 78, '2', '1978-2019', 'Automotive Engineering (Q4); Mechanical Engineering (Q4)'), (18615, 'Jaen Journal on Approximation', 18893066, 0.175, 'Q4', 9, 0, 0, 21, 22, '12', '2009-2019', 'Analysis (Q4); Numerical Analysis (Q4)'), (18616, 'Japanese Journal of Health Physics', 3676110, 0.175, 'Q4', 3, 24, 292, 14, 65, '6', '2018-2020', 'Epidemiology (Q4); Health, Toxicology and Mutagenesis (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (18617, 'Journal of Hematopathology', 18655785, 0.175, 'Q4', 19, 47, 922, 26, 66, '5', '2010-2012, 2014-2020', 'Hematology (Q4); Histology (Q4); Pathology and Forensic Medicine (Q4)'), (18618, 'Journal of Namibian Studies', 18635954, 0.175, 'Q2', 2, 7, 237, 11, 35, '5', '2017-2019', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (18619, 'Journal of Oral and Maxillofacial Surgery, Me', 22125558, 0.175, 'Q4', 10, 115, 2735, 127, 311, '3', '2012-2020', 'Oral Surgery (Q4); Otorhinolaryngology (Q4); Pathology and Forensic Medicine (Q4); Surgery (Q4)'), (18620, 'Journal of Research Practice', 1712851, 0.175, 'Q2', 22, 0, 0, 11, 13, '2', '2005-2018', 'Philosophy (Q2); Social Sciences (miscellaneous) (Q3); Education (Q4)'), (18621, 'Journal of Sustainability Science and Managem', 26727226, 0.175, 'Q3', 14, 115, 4910, 173, 210, '23', '2009-2020', 'Geography, Planning and Development (Q3); Management, Monitoring, Policy and Law (Q4); Pollution (Q4)'), (18622, 'Korean journal of medical education', 2005727, 0.175, 'Q4', 8, 34, 628, 23, 32, '13', '2015-2016, 2019-2020', 'Education (Q4)'), (18623, 'Materiaux et Techniques', 326895, 0.175, 'Q4', 9, 22, 710, 51, 114, '8', '1976, 1978, 1980-1988, 1990-1994, 2005, 2009-2020', 'Materials Science (miscellaneous) (Q4)'), (18624, 'Obshchaya Reanimatologiya', 24117110, 0.175, 'Q3', 6, 47, 1813, 95, 139, '10', '2015-2020', 'Critical Care and Intensive Care Medicine (Q3)'), (18625, 'Oceanologia et Limnologia Sinica', 29814, 0.175, 'Q4', 6, 155, 5769, 161, 456, '1', '1988, 2016-2020', 'Aquatic Science (Q4); Oceanography (Q4); Water Science and Technology (Q4)'), (18626, 'Polarforschung', 322490, 0.175, 'Q4', 24, 0, 0, 13, 22, '5', '1978-1980, 1982, 1984-1985, 1988-1990, 1992-1997, 1999-2006, 2008-2014, 2016-2018', 'Oceanography (Q4)'), (18627, 'Post-Medieval Archaeology', 17458137, 0.175, 'Q2', 13, 16, 1043, 14, 56, '3', '1967-1995, 2002-2020', 'Archeology (arts and humanities) (Q2); History (Q2); Archeology (Q3)'), (18628, 'Psicoterapia Cognitiva e Comportamentale', 11261072, 0.175, 'Q4', 12, 16, 643, 11, 37, '7', '2004-2020', 'Clinical Psychology (Q4)'), (18629, 'Qinghua Daxue Xuebao/Journal of Tsinghua Univ', 10000054, 0.175, 'Q3', 33, 128, 3001, 273, 518, '1', '1993-2020', 'Engineering (miscellaneous) (Q3); Applied Mathematics (Q4); Computer Science Applications (Q4)'), (18630, 'Research in African Literatures', 15272044, 0.175, 'Q1', 20, 32, 1448, 35, 137, '2', '2002-2019', 'Literature and Literary Theory (Q1)'), (18631, 'Revista Cubana de Informacion en Ciencias de ', 23072113, 0.175, 'Q3', 11, 55, 1398, 35, 83, '85', '2013-2020', 'Library and Information Sciences (Q3); Health Information Management (Q4); Health Policy (Q4)'), (18632, 'Revista de Linguistica y Lenguas Aplicadas', 18866298, 0.175, 'Q2', 3, 8, 300, 21, 38, '12', '2015-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18633, 'Romanian Journal of Communication and Public ', 23445440, 0.175, 'Q3', 4, 24, 1260, 16, 34, '43', '2015-2020', 'Communication (Q3)'), (18634, 'RUSI Journal', 17440378, 0.175, 'Q3', 20, 47, 0, 70, 123, '3', '1972-2020', 'Political Science and International Relations (Q3)'), (18635, 'Rusin', 23451149, 0.175, 'Q1', 9, 52, 1499, 53, 212, '123', '2011-2019', 'Literature and Literary Theory (Q1); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Anthropology (Q3); Sociology and Political Science (Q3)'), (18636, 'Scientia Sinica Chimica', 16747224, 0.175, 'Q4', 4, 139, 10511, 81, 150, '1', '2019-2020', 'Biochemistry (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)'), (18637, 'Shenyang Jianzhu Daxue Xuebao (Ziran Kexue Ba', 16712021, 0.175, 'Q3', 13, 138, 2731, 122, 403, '1', '2005-2020', 'Multidisciplinary (Q3)'), (18638, 'Shiyan Liuti Lixue/Journal of Experiments in ', 16729897, 0.175, 'Q4', 16, 77, 2377, 92, 243, '1', '2006-2020', 'Aerospace Engineering (Q4)'), (18639, 'Southern African Journal of Anaesthesia and A', 22201181, 0.175, 'Q3', 10, 93, 1661, 47, 127, '3', '2008-2020', 'Anesthesiology and Pain Medicine (Q3)'), (18640, 'Studies About Languages', 16482824, 0.175, 'Q2', 3, 16, 665, 12, 48, '69', '2016-2020', 'Archeology (arts and humanities) (Q2); Linguistics and Language (Q2); Education (Q4)'), (18641, 'Terminology', 15699994, 0.175, 'Q2', 23, 7, 290, 24, 31, '16', '1994-1998, 2000-2020', 'Language and Linguistics (Q2); Communication (Q3); Library and Information Sciences (Q3)'), (18642, 'Transactions Hong Kong Institution of Enginee', 1023697, 0.175, 'Q3', 15, 14, 456, 45, 68, '1', '1994-2020', 'Engineering (miscellaneous) (Q3)'), (18643, 'Transnational Screens', 25785265, 0.175, 'Q1', 8, 18, 612, 12, 26, '3', '2020', 'Visual Arts and Performing Arts (Q1); Communication (Q3)'), (18644, 'World Competition', 18758436, 0.175, 'Q3', 4, 25, 0, 27, 63, '16', '2016-2020', 'Law (Q3); Economics and Econometrics (Q4)'), (18645, 'Zeitschrift fur Geburtshilfe und Neonatologie', 14391651, 0.175, 'Q3', 19, 115, 1946, 56, 126, '5', '1995-2020', 'Maternity and Midwifery (Q3); Obstetrics and Gynecology (Q3); Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4)'), (18646, 'Adultspan Journal', 21610029, 0.174, 'Q4', 9, 11, 373, 13, 24, '2', '2009-2020', 'Developmental and Educational Psychology (Q4)'), (18647, 'African Journal of Urology', 11105704, 0.174, 'Q4', 11, 86, 1969, 77, 160, '32', '2012-2020', 'Urology (Q4)'), (18648, 'Agrarforschung Schweiz', 16637909, 0.174, 'Q4', 9, 24, 694, 40, 154, '19', '2012-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Food Science (Q4); Horticulture (Q4); Pollution (Q4)'), (18649, 'American Journal of Animal and Veterinary Sci', 15574563, 0.174, 'Q3', 15, 41, 1503, 45, 78, '2', '2007-2020', 'Veterinary (miscellaneous) (Q3); Animal Science and Zoology (Q4)'), (18650, 'Animation', 17468485, 0.174, 'Q1', 12, 19, 714, 12, 49, '3', '2006-2020', 'Visual Arts and Performing Arts (Q1)'), (18651, 'Asia-Pacific Social Science Review', 1198386, 0.174, 'Q2', 6, 67, 2756, 76, 143, '63', '2009-2020', 'History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics and Econometrics (Q4)'), (18652, 'Caderno CRH', 1034979, 0.174, 'Q2', 10, 32, 1067, 29, 111, '14', '2009-2020', 'Cultural Studies (Q2); Sociology and Political Science (Q3)'), (18653, 'California Fish and Game', 81078, 0.174, 'Q4', 18, 25, 976, 14, 42, '2', '1979-1984, 1990, 1996-2019', 'Animal Science and Zoology (Q4); Aquatic Science (Q4)'), (18654, 'Chinese Journal of Contemporary Pediatrics', 10088830, 0.174, 'Q3', 16, 233, 3856, 247, 677, '1', '2005-2020', 'Pediatrics, Perinatology and Child Health (Q3); Medicine (miscellaneous) (Q4)'), (18655, 'Ciencia Animal Brasileira', 18096891, 0.174, 'Q4', 10, 61, 1907, 59, 164, '14', '2012-2020', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (18656, 'Classical Journal', 98353, 0.174, 'Q1', 11, 20, 774, 14, 53, '2', '1970, 1974, 1982, 2002-2019', 'Classics (Q1)'), (18657, 'Creative nursing', 10784535, 0.174, 'Q4', 11, 70, 1176, 71, 157, '2', '1994-2020', 'Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)'), (18658, 'Current Drug Therapy', 15748855, 0.174, 'Q3', 17, 53, 3296, 31, 49, '52', '2007-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Pharmacology (medical) (Q4)'), (18659, 'Der Pathologe', 14321963, 0.174, 'Q4', 26, 146, 3138, 179, 305, '5', '1979-2020', 'Pathology and Forensic Medicine (Q4)'), (18660, 'Diaspora Studies', 9763457, 0.174, 'Q2', 6, 13, 745, 21, 33, '3', '2015-2020', 'History (Q2); Demography (Q3); Geography, Planning and Development (Q3); Political Science and International Relations (Q3)'), (18661, 'Drug Delivery Letters', 2210304, 0.174, 'Q3', 2, 31, 1566, 20, 32, '16', '2019-2020', 'Pharmaceutical Science (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Biomedical Engineering (Q4)'), (18662, 'European Research in Telemedicine', 2212764, 0.174, 'Q4', 11, 0, 0, 20, 14, '16', '2012-2017', 'Health Informatics (Q4); Health Information Management (Q4)'), (18663, 'Farmatsiya i Farmakologiya', 23079266, 0.174, 'Q3', 3, 12, 527, 27, 35, '10', '2019-2020', 'Pharmaceutical Science (Q3); Pharmacy (Q3); Pharmacology (Q4); Pharmacology (medical) (Q4)'), (18664, 'Fa yi xue za zhi', 10045619, 0.174, 'Q4', 10, 112, 2612, 101, 285, '1', '1997-2020', 'Pathology and Forensic Medicine (Q4)'), (18665, 'French Studies', 161128, 0.174, 'Q1', 9, 23, 1683, 19, 74, '3', '1947-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18666, 'History and Technology', 7341512, 0.174, 'Q3', 24, 20, 1681, 28, 51, '3', '1983-1988, 1990-2020', 'History and Philosophy of Science (Q3)'), (18667, 'Horizon. Fenomenologiceskie Issledovania', 23116986, 0.174, 'Q2', 3, 33, 922, 13, 90, '10', '2012-2019', 'Philosophy (Q2)'), (18668, 'Human Physiology', 16083164, 0.174, 'Q4', 15, 108, 4375, 130, 328, '10', '1975-1986, 1996, 1999, 2003, 2005-2020', 'Physiology (Q4); Physiology (medical) (Q4)'), (18669, 'Indian Journal of Otology', 22499520, 0.174, 'Q4', 9, 45, 748, 43, 175, '4', '1999-2020', 'Otorhinolaryngology (Q4)'), (18670, 'International Journal of Electronics and Tele', 20818491, 0.174, 'Q4', 18, 109, 2177, 191, 229, '17', '2010-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)'), (18671, 'International Journal of Environment and Wast', 14789876, 0.174, 'Q4', 18, 63, 2350, 78, 138, '3', '2007-2014, 2020', 'Environmental Engineering (Q4); Waste Management and Disposal (Q4)'), (18672, 'International Journal of Health Governance', 2059464, 0.174, 'Q3', 23, 40, 1365, 51, 84, '3', '2016-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Health Policy (Q4); Paleontology (Q4); Public Health, Environmental and Occupational Health (Q4); Strategy and Management (Q4)'), (18673, 'International Journal of Systems, Control and', 17559359, 0.174, 'Q4', 13, 23, 644, 44, 63, '19', '2011-2014', 'Control and Systems Engineering (Q4)'), (18674, 'Internetworking Indonesia Journal', 19429703, 0.174, 'Q4', 8, 5, 89, 31, 36, '2', '2009-2019', 'Computer Science (miscellaneous) (Q4)'), (18675, 'Iranian Journal of Neonatology', 23222158, 0.174, 'Q3', 8, 75, 1651, 79, 170, '15', '2013-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (18676, 'Japanese Journal of Veterinary Research', 471917, 0.174, 'Q3', 23, 26, 831, 53, 97, '6', '1965-2020', 'Veterinary (miscellaneous) (Q3)'), (18677, 'Journal of Central South University (Medical ', 16727347, 0.174, 'Q4', 17, 225, 5338, 265, 659, '1', '2004-2020', 'Medicine (miscellaneous) (Q4)'), (18678, 'Journal of Cognitive Psychotherapy', 8898391, 0.174, 'Q4', 49, 24, 1172, 36, 80, '2', '1987-2020', 'Clinical Psychology (Q4); Experimental and Cognitive Psychology (Q4); Psychiatry and Mental Health (Q4)'), (18679, 'Journal of Social History', 15271897, 0.174, 'Q2', 35, 24, 2375, 34, 123, '2', '1967-2019', 'History (Q2); Sociology and Political Science (Q3)'), (18680, 'Memoirs on Differential Equations and Mathema', 15120015, 0.174, 'Q4', 16, 8, 309, 17, 60, '81', '1996-2020', 'Analysis (Q4); Applied Mathematics (Q4); Mathematical Physics (Q4)'), (18681, 'Modern Judaism', 10863273, 0.174, 'Q1', 13, 16, 831, 9, 43, '2', '1981-2020', 'Religious Studies (Q1); Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18682, 'Pertanika Journal of Science and Technology', 1287680, 0.174, 'Q4', 15, 121, 3828, 442, 685, '23', '2010-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Chemical Engineering (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (18683, 'Phenomenology and Mind', 22807853, 0.174, 'Q2', 2, 0, 0, 24, 59, '7', '2018-2019', 'Philosophy (Q2); Cognitive Neuroscience (Q4); Psychology (miscellaneous) (Q4)'), (18684, 'Revista de Filologia Espanola', 2109174, 0.174, 'Q1', 8, 20, 1070, 7, 41, '12', '1996-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18685, 'Sendebar', 11305509, 0.174, 'Q2', 6, 26, 1083, 10, 40, '12', '2011-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18686, 'Sociologija', 380318, 0.174, 'Q3', 8, 28, 1399, 23, 111, '55', '2007-2020', 'Social Sciences (miscellaneous) (Q3)'), (18687, 'South Asian Diaspora', 19438184, 0.174, 'Q2', 10, 15, 741, 15, 39, '3', '2009-2020', 'Cultural Studies (Q2); Anthropology (Q3); Sociology and Political Science (Q3)'), (18688, 'Tokai Journal of Experimental and Clinical Me', 3850005, 0.174, 'Q4', 21, 44, 946, 60, 84, '6', '1976-2020', 'Medicine (miscellaneous) (Q4)'), (18689, 'Transactions of the Korean Institute of Elect', 19758359, 0.174, 'Q4', 11, 268, 3624, 134, 746, '13', '2007-2020', 'Electrical and Electronic Engineering (Q4)'), (18690, 'WSEAS Transactions on Systems and Control', 22242856, 0.174, 'Q4', 16, 79, 1986, 121, 170, '39', '2008-2020', 'Artificial Intelligence (Q4); Control and Optimization (Q4); Control and Systems Engineering (Q4); Mathematics (miscellaneous) (Q4)'), (18691, 'Xitong Fangzhen Xuebao / Journal of System Si', 1004731, 0.174, 'Q4', 28, 269, 4964, 423, 1300, '1', '1998-1999, 2001-2020', 'Aerospace Engineering (Q4); Computer Science Applications (Q4); Modeling and Simulation (Q4)'), (18692, 'Applied Science and Engineering Progress', 26730421, 0.173, 'Q3', 4, 44, 1083, 34, 32, '40', '2019-2020', 'Engineering (miscellaneous) (Q3); Chemical Engineering (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4)'), (18693, 'Archaeological Journal', 23732288, 0.173, 'Q2', 13, 12, 1019, 10, 29, '3', '1977, 1996-2020', 'Archeology (arts and humanities) (Q2); Conservation (Q2); Archeology (Q3)'), (18694, 'Biological Letters', 16447700, 0.173, 'Q4', 9, 0, 0, 4, 5, '17', '2009-2016, 2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (18695, 'Business Economics', 7666, 0.173, 'Q4', 13, 34, 314, 43, 78, '3', '1987, 1997, 2006-2020', 'Business and International Management (Q4); Economics and Econometrics (Q4)'), (18696, 'Case Reports in Oncological Medicine', 20906714, 0.173, 'Q4', 7, 0, 0, 1, 3, '32', '2014-2017', 'Oncology (Q4)'), (18697, 'Chiang Mai University Journal of Natural Scie', 16851994, 0.173, 'Q3', 10, 65, 2256, 64, 86, '40', '2003, 2006, 2009-2020', 'Multidisciplinary (Q3)'), (18698, 'Counseling Psychology and Psychotherapy', 20753470, 0.173, 'Q4', 5, 22, 503, 50, 124, '10', '2016-2020', 'Clinical Psychology (Q4); Health (social science) (Q4)'), (18699, 'Democracy and Security', 15555860, 0.173, 'Q3', 12, 20, 312, 22, 49, '3', '2010-2020', 'Political Science and International Relations (Q3); Safety Research (Q3); Sociology and Political Science (Q3)'), (18700, 'Dickensian', 122440, 0.173, 'Q1', 4, 23, 460, 9, 42, '3', '1964, 1980, 2002-2008, 2013-2016, 2018-2019', 'Literature and Literary Theory (Q1)'), (18701, 'Edad Media', 25306448, 0.173, 'Q2', 1, 17, 1111, 4, 27, '12', '2017-2019', 'History (Q2)'), (18702, 'Entomologica Fennica', 7858760, 0.173, 'Q4', 21, 0, 0, 42, 63, '38', '1993-2019', 'Insect Science (Q4)'), (18703, 'Ethics, Medicine and Public Health', 23525525, 0.173, 'Q4', 6, 132, 2991, 54, 189, '8', '2016-2020', 'Health Policy (Q4)'), (18704, 'Folia Onomastica Croatica', 13300695, 0.173, 'Q2', 4, 0, 0, 1, 22, '58', '2011-2014, 2016-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18705, 'Indonesian Journal of Biotechnology', 20892241, 0.173, 'Q4', 2, 16, 544, 14, 32, '21', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biotechnology (Q4); Environmental Science (miscellaneous) (Q4); Food Science (Q4)'), (18706, 'International Journal for Court Administratio', 21567964, 0.173, 'Q3', 4, 22, 602, 10, 30, '2', '2016-2020', 'Law (Q3)'), (18707, 'International Journal of Power Electronics', 1756638, 0.173, 'Q4', 12, 51, 1208, 34, 55, '19', '2010-2014, 2020', 'Electrical and Electronic Engineering (Q4)'), (18708, 'Ius Canonicum', 21325, 0.173, 'Q1', 4, 27, 1378, 14, 78, '12', '2016-2020', 'Religious Studies (Q1); Law (Q3)'), (18709, 'Journal of Archival Organization', 15332748, 0.173, 'Q3', 12, 13, 31, 12, 36, '2', '2002, 2004-2014, 2016-2020', 'Library and Information Sciences (Q3)'), (18710, 'Journal of Chinese History', 20591640, 0.173, 'Q2', 3, 28, 1020, 11, 37, '3', '2017-2020', 'Cultural Studies (Q2); History (Q2)'), (18711, 'Journal of Electrical Systems', 11125209, 0.173, 'Q4', 16, 40, 1071, 132, 155, '8', '2009-2020', 'Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)'), (18712, 'Journal of Iron and Steel Research', 10010963, 0.173, 'Q4', 17, 0, 0, 192, 406, '1', '1996-2019', 'Materials Chemistry (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (18713, 'Journal of Military and Veterans Health', 18351271, 0.173, 'Q4', 8, 0, 0, 20, 33, '11', '2012-2018', 'Medicine (miscellaneous) (Q4)'), (18714, 'Journal of Operational Risk', 17446740, 0.173, 'Q4', 12, 13, 493, 16, 47, '2', '2011-2020', 'Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (18715, 'Journal of Southeast Asian American Education', 21538999, 0.173, 'Q4', 2, 14, 241, 3, 4, '2', '2019-2020', 'Education (Q4)'), (18716, 'Journal of The Institution of Engineers (Indi', 22502114, 0.173, 'Q4', 13, 74, 2047, 165, 188, '4', '2012-2020', 'Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)'), (18717, 'Kuei Suan Jen Hsueh Pao/ Journal of the Chine', 4545648, 0.173, 'Q4', 28, 249, 7638, 403, 741, '1', '2000-2020', 'Ceramics and Composites (Q4); Inorganic Chemistry (Q4); Materials Chemistry (Q4)'), (18718, 'Landscape Journal', 2772426, 0.173, 'Q3', 11, 0, 0, 12, 32, '2', '2009-2019', 'Nature and Landscape Conservation (Q3)'), (18719, 'Malaysian Journal of Economic Studies', 15114554, 0.173, 'Q3', 11, 16, 838, 30, 48, '23', '2007-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (18720, 'Mesto a Dejiny', 13390163, 0.173, 'Q2', 2, 8, 471, 3, 17, '53', '2018-2019', 'History (Q2); Urban Studies (Q3)'), (18721, 'Old Testament Essays', 23123621, 0.173, 'Q1', 3, 19, 766, 20, 119, '27', '2017-2020', 'Religious Studies (Q1); Archeology (arts and humanities) (Q2); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Archeology (Q3)'), (18722, 'Practical Gastroenterology', 2774208, 0.173, 'Q4', 18, 29, 684, 37, 105, '2', '1989-2013, 2016-2020', 'Gastroenterology (Q4)'), (18723, 'Psykhe', 7182228, 0.173, 'Q4', 17, 18, 856, 30, 55, '45', '2007-2019', 'Psychology (miscellaneous) (Q4)'), (18724, 'Public Historian', 2723433, 0.173, 'Q2', 17, 0, 0, 28, 78, '2', '1978-2019', 'Conservation (Q2); History (Q2); Museology (Q2)'), (18725, 'Public Sector Economics', 24598860, 0.173, 'Q4', 4, 20, 821, 39, 69, '58', '2017-2020', 'Economics and Econometrics (Q4); Finance (Q4)'), (18726, 'Qualitative Research Reports in Communication', 17459443, 0.173, 'Q3', 13, 0, 0, 11, 20, '3', '2005-2013, 2016-2018', 'Communication (Q3)'), (18727, 'Recht und Psychiatrie', 7242247, 0.173, 'Q3', 12, 0, 0, 19, 49, '5', '1999-2019', 'Law (Q3); Health Policy (Q4); Psychiatry and Mental Health (Q4)'), (18728, 'Resonance', 9718044, 0.173, 'Q3', 13, 112, 1103, 81, 269, '4', '1996, 2002, 2009-2020', 'Multidisciplinary (Q3); Education (Q4)'), (18729, 'Slovenske Divadlo', 37699, 0.173, 'Q1', 1, 34, 776, 5, 31, '53', '2019-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); History (Q2); Music (Q2); Communication (Q3)'), (18730, 'Southwestern Naturalist', 384909, 0.173, 'Q4', 30, 12, 329, 39, 120, '2', '1979, 1981-1986, 1994-2020', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (18731, 'Trends in Sport Sciences', 2391436, 0.173, 'Q4', 4, 27, 863, 30, 47, '17', '2018-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (18732, 'Tribologia: Finnish Journal of Tribology', 7802285, 0.173, 'Q4', 8, 10, 376, 6, 13, '38', '1988-2012, 2014-2017, 2019', 'Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)'), (18733, 'UCJC Business and Society Review', 26593270, 0.173, 'Q3', 14, 16, 437, 17, 44, '12', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics and Econometrics (Q4); Finance (Q4)'), (18734, 'Ukrainian Biochemical Journal', 24094943, 0.173, 'Q4', 15, 87, 3021, 120, 186, '44', '2013-2020', 'Biochemistry (Q4)'), (18735, 'Uludag Aricilik Dergisi', 13030248, 0.173, 'Q4', 1, 11, 518, 8, 17, '18', '2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Food Science (Q4); Insect Science (Q4)'), (18736, 'University of Illinois Law Review', 2769948, 0.173, 'Q3', 30, 31, 4174, 46, 121, '2', '1990-1992, 1994-2020', 'Law (Q3)'), (18737, 'Veterinarska Stanica', 18491170, 0.173, 'Q4', 4, 73, 2833, 42, 139, '58', '2017-2020', 'Veterinary (miscellaneous) (Q4)'), (18738, 'Archiv fur Geschichte der Philosophie', 39101, 0.172, 'Q2', 19, 41, 1937, 20, 51, '5', '1888-1918, 1920-1924, 1926, 1928, 1931, 1933, 1960-2020', 'Philosophy (Q2)'), (18739, 'Avances en Psicologia Latinoamericana', 17944724, 0.172, 'Q4', 12, 42, 2049, 53, 105, '47', '1983, 2006-2020', 'Clinical Psychology (Q4)'), (18740, 'Bulletin de l Institut Scientifique, Section ', 11146834, 0.172, 'Q4', 6, 10, 371, 11, 22, '56', '2012-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (18741, 'Computers in Entertainment', 15443574, 0.172, 'Q4', 30, 0, 0, 52, 43, '2', '2006-2012, 2014, 2016-2018', 'Computer Science Applications (Q4)'), (18742, 'Concrete Operators', 22993282, 0.172, 'Q4', 2, 11, 328, 5, 8, '5', '2019-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (18743, 'Environmental and Socio-Economic Studies', 23540079, 0.172, 'Q3', 3, 24, 1091, 32, 50, '5', '2018-2020', 'Geography, Planning and Development (Q3); Urban Studies (Q3); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Pollution (Q4)'), (18744, 'European Public Law', 13543725, 0.172, 'Q3', 2, 37, 3749, 8, 34, '16', '2018', 'Law (Q3)'), (18745, 'Food Protection Trends', 15419576, 0.172, 'Q4', 15, 47, 1224, 46, 115, '2', '2011-2018', 'Food Science (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18746, 'Geneses', 11553219, 0.172, 'Q2', 20, 23, 494, 30, 90, '8', '2000-2019', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3); Public Administration (Q4)'), (18747, 'Gerokomos', 1134928, 0.172, 'Q4', 11, 24, 491, 37, 106, '12', '2005-2020', 'Geriatrics and Gerontology (Q4); Gerontology (Q4)'), (18748, 'Gothic Studies', 2050456, 0.172, 'Q1', 2, 20, 916, 7, 62, '3', '2016-2020', 'Literature and Literary Theory (Q1); History (Q2)'), (18749, 'Informatica (Slovenia)', 18543871, 0.172, 'Q4', 34, 51, 1524, 135, 163, '60', '1995-2020', 'Artificial Intelligence (Q4); Computer Science Applications (Q4); Software (Q4); Theoretical Computer Science (Q4)'), (18750, 'International Journal for Engineering Modelli', 13301365, 0.172, 'Q4', 10, 14, 305, 23, 37, '58', '1991-1992, 1994-2020', 'Computer Science Applications (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4); Software (Q4)'), (18751, 'Journal of Advanced Computational Intelligenc', 13430130, 0.172, 'Q4', 20, 102, 2456, 201, 393, '6', '2009-2020', 'Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Human-Computer Interaction (Q4)'), (18752, 'Journal of Computing Science and Engineering', 19764677, 0.172, 'Q3', 16, 16, 381, 36, 46, '13', '2012-2020', 'Engineering (miscellaneous) (Q3); Computer Science Applications (Q4)'), (18753, 'Journal of Conchology', 220019, 0.172, 'Q4', 20, 0, 0, 21, 40, '3', '1981-1990, 1996-2018', 'Aquatic Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (18754, 'Journal of Information Hiding and Multimedia ', 20734239, 0.172, 'Q4', 26, 16, 452, 142, 344, '22', '2010-2020', 'Computer Vision and Pattern Recognition (Q4); Software (Q4)'), (18755, 'Journal of the International Society for Sout', 8593132, 0.172, 'Q4', 8, 26, 1003, 43, 92, '63', '2012-2020', 'Plant Science (Q4)'), (18756, 'Journal of the Mexican Chemical Society', 1870249, 0.172, 'Q4', 22, 27, 1072, 79, 117, '30', '2008-2020', 'Chemistry (miscellaneous) (Q4)'), (18757, 'Jurnal Manajemen Hutan Tropika', 20892063, 0.172, 'Q4', 7, 29, 1285, 31, 58, '21', '2014-2015, 2018-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4)'), (18758, 'Mondes En Developpement', 3023052, 0.172, 'Q4', 10, 33, 1296, 25, 107, '24', '1977-1979, 1982-2020', 'Development (Q4); Economics and Econometrics (Q4)'), (18759, 'Moroccan Journal of Chemistry', 2351812, 0.172, 'Q4', 5, 77, 2545, 86, 145, '56', '2018-2020', 'Chemistry (miscellaneous) (Q4)'), (18760, 'Neuropsychiatrie de l Enfance et de l Adolesc', 2229617, 0.172, 'Q3', 17, 65, 2117, 55, 149, '8', '1979-2020', 'Pediatrics, Perinatology and Child Health (Q3); Developmental and Educational Psychology (Q4); Psychiatry and Mental Health (Q4)'), (18761, 'NWIG New West Indian Guide', 22134360, 0.172, 'Q2', 5, 5, 308, 5, 18, '16', '1977-1978, 2001-2002, 2011-2019', 'Cultural Studies (Q2); History (Q2); Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (18762, 'Open House International', 1682601, 0.172, 'Q2', 11, 25, 1163, 47, 145, '3', '2007-2020', 'Architecture (Q2); Geography, Planning and Development (Q3); Urban Studies (Q3)'), (18763, 'Pacific Focus', 12254657, 0.172, 'Q3', 12, 22, 1508, 25, 57, '2', '1986-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18764, 'Petroleum and Coal', 13377027, 0.172, 'Q3', 12, 130, 2787, 102, 321, '53', '2011-2020', 'Energy (miscellaneous) (Q3)'), (18765, 'Philosophical Investigations', 14679205, 0.172, 'Q2', 14, 29, 319, 14, 60, '3', '1978-2020', 'Philosophy (Q2)'), (18766, 'Research and theory for nursing practice', 15416577, 0.172, 'Q4', 41, 24, 849, 42, 75, '2', '2002-2020', 'Medicine (miscellaneous) (Q4); Research and Theory (Q4)'), (18767, 'Revista Iberoamericana de Educacion Superior', 20072872, 0.172, 'Q4', 6, 11, 521, 48, 98, '30', '2015-2019', 'Education (Q4)'), (18768, 'South Asian Popular Culture', 14746689, 0.172, 'Q1', 14, 21, 584, 16, 53, '3', '2003-2020', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)'), (18769, 'Studies in Religion-Sciences Religieuses', 84298, 0.172, 'Q1', 12, 38, 1946, 19, 78, '2', '1971-2020', 'Religious Studies (Q1)'), (18770, 'Zhongguo Zhongyao Zazhi', 10015302, 0.172, 'Q3', 29, 763, 26379, 1071, 2249, '1', '1989-2020', 'Complementary and Alternative Medicine (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Pharmacology (medical) (Q4)'), (18771, 'Advances in Gerontology', 20790570, 0.171, 'Q4', 8, 61, 1805, 55, 183, '10', '2011-2020', 'Geriatrics and Gerontology (Q4); Gerontology (Q4)'), (18772, 'Alternatives', 21633150, 0.171, 'Q3', 40, 10, 938, 21, 36, '2', '1975-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18773, 'Archiwum Medycyny Sadowej i Kryminologii', 3248267, 0.171, 'Q4', 7, 5, 0, 24, 66, '17', '1974-1983, 2002-2020', 'Medicine (miscellaneous) (Q4)'), (18774, 'Asian Education and Development Studies', 20463170, 0.171, 'Q3', 10, 87, 3628, 73, 140, '3', '2013-2020', 'Social Sciences (miscellaneous) (Q3); Development (Q4); Education (Q4)'), (18775, 'Atherosclerosis: X', 25901354, 0.171, 'Q4', 1, 0, 0, 1, 6, '42', '2019', 'Cardiology and Cardiovascular Medicine (Q4)'), (18776, 'Australasian Journal of Regional Studies', 10307923, 0.171, 'Q3', 5, 10, 483, 19, 38, '11', '2016-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Geography, Planning and Development (Q3); Urban Studies (Q3); Management, Monitoring, Policy and Law (Q4)'), (18777, 'Aviakosmicheskaia i ekologicheskaia meditsina', 233528, 0.171, 'Q4', 14, 79, 1739, 47, 205, '10', '1992-2019', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (18778, 'Biomedical Engineering - Applications, Basis ', 10162372, 0.171, 'Q4', 22, 47, 1361, 104, 144, '37', '1992-2020', 'Bioengineering (Q4); Biomedical Engineering (Q4); Biophysics (Q4)'), (18779, 'Canadian Theatre Review', 3150836, 0.171, 'Q1', 6, 69, 632, 18, 176, '9', '2009-2020', 'Visual Arts and Performing Arts (Q1)'), (18780, 'Chinese Journal of Chromatography (Se Pu)', 18722059, 0.171, 'Q4', 19, 169, 7166, 426, 559, '1', '1997-2019', 'Analytical Chemistry (Q4); Biochemistry (Q4); Chemical Engineering (miscellaneous) (Q4); Electrochemistry (Q4); Organic Chemistry (Q4)'), (18781, 'Cold War History', 14682745, 0.171, 'Q2', 19, 41, 81, 41, 82, '3', '2000-2020', 'History (Q2); Political Science and International Relations (Q3)'), (18782, 'Family Court Review', 15312445, 0.171, 'Q3', 4, 78, 1586, 22, 49, '2', '2019-2020', 'Law (Q3)'), (18783, 'Food and Drug Law Journal', 1064590, 0.171, 'Q3', 19, 0, 0, 29, 42, '2', '1992-2018', 'Law (Q3); Medicine (miscellaneous) (Q4); Pharmacology (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18784, 'Forestry Ideas', 13143905, 0.171, 'Q4', 3, 38, 1403, 14, 67, '61', '2016-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)'), (18785, 'Funtai Oyobi Fummatsu Yakin/Journal of the Ja', 18809014, 0.171, 'Q3', 22, 91, 1824, 71, 233, '6', '1949-1950, 1956, 1958-2020', 'Industrial and Manufacturing Engineering (Q3); Materials Chemistry (Q4); Mechanical Engineering (Q4); Metals and Alloys (Q4)'), (18786, 'Gorteria: Tijdschrift voor Onderzoek aan de W', 172294, 0.171, 'Q4', 7, 2, 65, 6, 25, '16', '1988-2020', 'Plant Science (Q4)'), (18787, 'Human Factors and Mechanical Engineering for ', 25098004, 0.171, 'Q4', 4, 7, 192, 27, 23, '37', '2017-2020', 'Biomedical Engineering (Q4); Biotechnology (Q4); Mechanical Engineering (Q4)'), (18788, 'ICIC Express Letters, Part B: Applications', 21852766, 0.171, 'Q4', 12, 149, 2310, 134, 510, '6', '2010-2020', 'Computer Science (miscellaneous) (Q4)'), (18789, 'Interciencia', 3781844, 0.171, 'Q3', 35, 83, 2704, 137, 296, '94', '1979, 1981-1982, 1986, 1990, 1993, 1996-2020', 'Multidisciplinary (Q3)'), (18790, 'International Journal of Applied Science and ', 17277841, 0.171, 'Q3', 4, 32, 951, 30, 40, '22', '2013, 2016-2020', 'Engineering (miscellaneous) (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Chemical Engineering (miscellaneous) (Q4); Control and Optimization (Q4); Numerical Analysis (Q4)'), (18791, 'International Journal of Contemporary Iraqi S', 17512875, 0.171, 'Q3', 3, 0, 0, 8, 29, '3', '2013-2018', 'Arts and Humanities (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (18792, 'International Journal of Development Issues', 14468956, 0.171, 'Q3', 15, 31, 1538, 51, 61, '3', '2003-2020', 'Political Science and International Relations (Q3); Development (Q4); Economics and Econometrics (Q4)'), (18793, 'International Journal of Electrical and Elect', 23192518, 0.171, 'Q4', 6, 58, 1353, 142, 113, '17', '2017-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Instrumentation (Q4)'), (18794, 'International Journal of Energy Production an', 20563280, 0.171, 'Q3', 6, 28, 696, 51, 89, '3', '2016-2020', 'Sociology and Political Science (Q3); Energy Engineering and Power Technology (Q4); Global and Planetary Change (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (18795, 'International Journal of Manufacturing Techno', 13682148, 0.171, 'Q3', 21, 32, 927, 55, 90, '3', '2000-2013, 2020', 'Industrial and Manufacturing Engineering (Q3); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Information Systems and Management (Q4); Strategy and Management (Q4)'), (18796, 'International Journal of Microsimulation', 17475864, 0.171, 'Q4', 5, 12, 358, 24, 50, '78', '2015-2020', 'Modeling and Simulation (Q4)'), (18797, 'International Journal on Smart Sensing and In', 11785608, 0.171, 'Q4', 27, 38, 1078, 113, 109, '41', '2010-2020', 'Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)'), (18798, 'Israel Studies', 10849513, 0.171, 'Q2', 3, 48, 2058, 47, 98, '2', '2001, 2017-2020', 'Cultural Studies (Q2); History (Q2); Anthropology (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18799, 'Jordan Journal of Pharmaceutical Sciences', 19957157, 0.171, 'Q3', 9, 39, 1315, 21, 34, '62', '2009-2020', 'Pharmaceutical Science (Q3)'), (18800, 'Journal of Australian Taxation', 14400405, 0.171, 'Q4', 1, 0, 0, 1, 10, '11', '2019', 'Accounting (Q4); Finance (Q4)'), (18801, 'Journal of Disability and Religion', 23312521, 0.171, 'Q1', 13, 36, 1099, 19, 72, '3', '2014-2020', 'Religious Studies (Q1); Health (social science) (Q4); Rehabilitation (Q4)'), (18802, 'Journal of Language and Linguistic Studies', 1305578, 0.171, 'Q2', 3, 123, 5029, 44, 90, '18', '2019-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (18803, 'Journal of Orofacial Sciences', 9758844, 0.171, 'Q4', 6, 23, 549, 38, 61, '4', '2015-2020', 'Oral Surgery (Q4); Orthodontics (Q4)'), (18804, 'Kurume Medical Journal', 18812090, 0.171, 'Q4', 21, 0, 0, 31, 57, '6', '1954-2020', 'Medicine (miscellaneous) (Q4)'), (18805, 'Lenguas Modernas', 7160542, 0.171, 'Q2', 4, 8, 325, 18, 40, '45', '2015-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18806, 'Mass Spectrometry Letters', 20938950, 0.171, 'Q4', 9, 20, 611, 27, 60, '13', '2010-2020', 'Analytical Chemistry (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Spectroscopy (Q4)'), (18807, 'Neutron News', 19317352, 0.171, 'Q4', 22, 13, 123, 23, 68, '1', '1990-2020', 'Atomic and Molecular Physics, and Optics (Q4); Nuclear and High Energy Physics (Q4)'), (18808, 'New Perspectives', 23368268, 0.171, 'Q3', 8, 47, 1085, 41, 94, '31', '2015-2020', 'Political Science and International Relations (Q3)'), (18809, 'Ochrona Srodowiska i Zasobow Naturalnych', 12307831, 0.171, 'Q4', 5, 17, 398, 26, 51, '17', '2016-2020', 'Environmental Science (miscellaneous) (Q4)'), (18810, 'Pratiques Psychologiques', 1878092, 0.171, 'Q4', 12, 33, 1921, 35, 80, '8', '2004-2020', 'Psychology (miscellaneous) (Q4)'), (18811, 'Qatar Medical Journal', 22270426, 0.171, 'Q4', 9, 36, 895, 11, 26, '66', '2000-2017, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (18812, 'Recent patents on food, nutrition &amp; agric', 18761429, 0.171, 'Q4', 26, 28, 1689, 35, 35, '52', '2009-2020', 'Agronomy and Crop Science (Q4); Food Science (Q4); Medicine (miscellaneous) (Q4)'), (18813, 'Revista Electronica de LEEME', 15759563, 0.171, 'Q2', 3, 26, 839, 16, 23, '12', '2018-2019', 'Music (Q2); Education (Q4)'), (18814, 'Soziale Welt', 386073, 0.171, 'Q3', 15, 4, 269, 15, 57, '5', '1996-2019', 'Sociology and Political Science (Q3)'), (18815, 'Tatra Mountains Mathematical Publications', 12103195, 0.171, 'Q4', 12, 35, 755, 37, 75, '17', '2009-2020', 'Mathematics (miscellaneous) (Q4)'), (18816, 'Teaching of Mathematics', 14514966, 0.171, 'Q4', 8, 12, 130, 12, 26, '55', '1998-2020', 'Education (Q4); Mathematics (miscellaneous) (Q4)'), (18817, 'Transactions of Nanjing University of Aeronau', 10051120, 0.171, 'Q4', 14, 93, 2257, 141, 304, '1', '2005-2020', 'Aerospace Engineering (Q4); Space and Planetary Science (Q4)'), (18818, 'Turk hijiyen ve deneysel biyoloji dergisi. Tu', 13082523, 0.171, 'Q4', 5, 78, 2257, 57, 162, '18', '1964-1978, 2012-2020', 'Infectious Diseases (Q4); Microbiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18819, 'UPB Scientific Bulletin, Series B: Chemistry ', 14542331, 0.171, 'Q4', 20, 94, 2026, 144, 258, '43', '1999-2020', 'Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (18820, 'Vestnik Oftalmologii', 23091282, 0.171, 'Q4', 11, 179, 4853, 174, 360, '10', '1945-1946, 1949-2020', 'Medicine (miscellaneous) (Q4); Ophthalmology (Q4)'), (18821, 'Vestnik Oto-Rino-Laringologii', 424668, 0.171, 'Q4', 7, 119, 2315, 97, 338, '10', '1945-1946, 1948, 1950-2020', 'Medicine (miscellaneous) (Q4); Otorhinolaryngology (Q4)'), (18822, 'Written Language and Literacy', 13876732, 0.171, 'Q2', 22, 14, 731, 7, 31, '16', '1998-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18823, 'Zeitschrift fur Neuropsychologie', 1016264, 0.171, 'Q4', 12, 21, 877, 20, 41, '19', '1999-2003, 2010-2020', 'Cognitive Neuroscience (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)'), (18824, 'Acta Poloniae Pharmaceutica', 16837, 0.17, 'Q3', 42, 80, 2693, 253, 468, '17', '1951-1955, 1961-2020', 'Pharmaceutical Science (Q3); Pharmacology (Q4)'), (18825, 'American Journalism', 88211127, 0.17, 'Q3', 8, 22, 0, 11, 59, '3', '1983-2020', 'Communication (Q3)'), (18826, 'Anaesthesia, Pain and Intensive Care', 16078322, 0.17, 'Q3', 8, 128, 2307, 83, 249, '34', '2009-2020', 'Anesthesiology and Pain Medicine (Q3); Critical Care and Intensive Care Medicine (Q4)'), (18827, 'Ancient Asia', 20425937, 0.17, 'Q1', 2, 11, 281, 5, 14, '3', '2018-2020', 'Visual Arts and Performing Arts (Q1); History (Q2); Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (18828, 'Annals of the University of Craiova, Mathemat', 22469958, 0.17, 'Q4', 10, 32, 623, 29, 77, '43', '2011-2019', 'Computer Science Applications (Q4); Mathematics (miscellaneous) (Q4)'), (18829, 'Berliner und Munchener Tierarztliche Wochensc', 14390299, 0.17, 'Q4', 35, 36, 1459, 45, 133, '5', '1946-1949, 1961, 1965-2020', 'Medicine (miscellaneous) (Q4); Veterinary (miscellaneous) (Q4)'), (18830, 'Boletin Cientifico del Centro de Museos', 1233068, 0.17, 'Q2', 6, 28, 1164, 31, 96, '47', '2014-2019', 'Conservation (Q2); Museology (Q2)'), (18831, 'Case Reports in Psychiatry', 2090682, 0.17, 'Q4', 4, 44, 910, 49, 63, '32', '2018-2020', 'Psychiatry and Mental Health (Q4)'), (18832, 'Central European History', 89389, 0.17, 'Q2', 19, 33, 2415, 16, 79, '3', '1968-2020', 'History (Q2)'), (18833, 'Corpoica Ciencia y Tecnologia Agropecuaria', 1228706, 0.17, 'Q4', 5, 39, 1621, 48, 71, '47', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (18834, 'Educational Leadership', 131784, 0.17, 'Q4', 59, 0, 0, 80, 311, '2', '1976, 1981, 1994-2019', 'Education (Q4)'), (18835, 'Eighteenth Century Studies', 132586, 0.17, 'Q2', 19, 40, 2191, 20, 72, '2', '1969, 1972, 1975-1976, 1979-1980, 1983-1985, 1998, 2000, 2002-2020', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3)'), (18836, 'Environmental Claims Journal', 1547657, 0.17, 'Q4', 8, 34, 793, 28, 67, '3', '1988-2020', 'Management, Monitoring, Policy and Law (Q4)'), (18837, 'Geometry, Integrability and Quantization', 23677147, 0.17, 'Q4', 4, 0, 0, 19, 37, '61', '2018-2019', 'Applied Mathematics (Q4); Geometry and Topology (Q4); Mathematical Physics (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (18838, 'Great Plains Research', 10525165, 0.17, 'Q4', 19, 13, 473, 12, 37, '2', '1991, 1993-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Geography, Planning and Development (Q4)'), (18839, 'gulf journal of oncology, The', 20782101, 0.17, 'Q4', 10, 40, 0, 54, 119, '80', '2007-2013, 2016-2020', 'Medicine (miscellaneous) (Q4)'), (18840, 'Guti Lixue Xuebao/Acta Mechanica Solida Sinic', 2547805, 0.17, 'Q4', 14, 50, 2075, 89, 147, '1', '2007-2020', 'Mechanics of Materials (Q4)'), (18841, 'International Journal of Intelligent Unmanned', 20496427, 0.17, 'Q4', 10, 38, 901, 68, 47, '3', '2013-2020', 'Automotive Engineering (Q4); Economics and Econometrics (Q4); Mechanical Engineering (Q4); Modeling and Simulation (Q4)'), (18842, 'International Journal of Internet Technology ', 17485703, 0.17, 'Q4', 10, 42, 1250, 65, 85, '19', '2007, 2009-2014, 2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4)'), (18843, 'Investigaciones Geograficas', 24487279, 0.17, 'Q4', 14, 38, 1524, 48, 105, '30', '1990-1993, 1995-1996, 2001, 2003-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (18844, 'Iranian Journal of Materials Science and Engi', 17350808, 0.17, 'Q3', 13, 29, 968, 59, 96, '15', '2010-2020', 'Engineering (miscellaneous) (Q3); Materials Science (miscellaneous) (Q4)'), (18845, 'Journal of Ancient History and Archaeology', 2360266, 0.17, 'Q1', 2, 69, 3437, 8, 37, '43', '2019-2020', 'Classics (Q1); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (18846, 'Journal of Arthroscopy and Joint Surgery', 22149635, 0.17, 'Q4', 5, 54, 1274, 41, 102, '4', '2015-2020', 'Orthopedics and Sports Medicine (Q4)'), (18847, 'Journal of Family Practice', 15337294, 0.17, 'Q3', 93, 148, 0, 144, 409, '2', '1974-2020', 'Family Practice (Q3); Medicine (miscellaneous) (Q4)'), (18848, 'Journal of Fisheries and Environment', 26300826, 0.17, 'Q4', 2, 18, 701, 19, 51, '40', '2017-2020', 'Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (18849, 'Journal of Ocean Technology', 17183200, 0.17, 'Q3', 10, 60, 313, 45, 76, '9', '2009-2020', 'Ocean Engineering (Q3)'), (18850, 'Learning and Teaching', 17552281, 0.17, 'Q3', 3, 12, 350, 20, 46, '2', '2017-2020', 'Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4); Education (Q4)'), (18851, 'Lucentum', 19899904, 0.17, 'Q2', 3, 15, 1339, 7, 54, '12', '2015-2019', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Paleontology (Q4)'), (18852, 'Magnetic Resonance in Solids', 20725981, 0.17, 'Q4', 9, 5, 415, 31, 63, '10', '2012-2020', 'Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4); Nuclear and High Energy Physics (Q4); Spectroscopy (Q4)'), (18853, 'Methods of Functional Analysis and Topology', 24157503, 0.17, 'Q4', 4, 37, 748, 35, 84, '44', '2017-2020', 'Analysis (Q4); Geometry and Topology (Q4); Mathematical Physics (Q4)'), (18854, 'Nursing leadership (Toronto, Ont.)', 1910622, 0.17, 'Q4', 28, 33, 0, 39, 102, '9', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (18855, 'Online Journal Modelling the New Europe', 22470514, 0.17, 'Q3', 4, 25, 922, 35, 78, '43', '2015-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18856, 'Pedagogika', 13920340, 0.17, 'Q4', 6, 51, 2159, 67, 177, '69', '2008-2020', 'Education (Q4)'), (18857, 'Photographies', 17540771, 0.17, 'Q1', 11, 23, 627, 18, 57, '3', '2008-2020', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Communication (Q3)'), (18858, 'Physiotherapy Quarterly', 25444395, 0.17, 'Q4', 8, 32, 1110, 23, 62, '17', '2017-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (18859, 'Psychiatry, Psychotherapy and Clinical Psycho', 24142212, 0.17, 'Q4', 2, 73, 1718, 10, 175, '75', '2016-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (18860, 'Radiologic Technology', 338397, 0.17, 'Q4', 20, 101, 1653, 141, 218, '2', '1963-2020', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (18861, 'Revista Brasileira de Ornitologia', 1035657, 0.17, 'Q4', 23, 0, 0, 44, 112, '14', '2002-2020', 'Animal Science and Zoology (Q4)'), (18862, 'Revista Cubana de Enfermeria', 8640319, 0.17, 'Q4', 8, 80, 1597, 36, 165, '85', '1985-2002, 2006-2020', 'Nursing (miscellaneous) (Q4)'), (18863, 'Revue de Medecine Legale', 18786537, 0.17, 'Q4', 5, 29, 681, 14, 71, '8', '1970, 2010-2020', 'Pathology and Forensic Medicine (Q4)'), (18864, 'Rossiiskaia Istoria', 8695687, 0.17, 'Q2', 4, 112, 11, 30, 203, '10', '1999, 2001-2002, 2009-2020', 'History (Q2); Sociology and Political Science (Q3)'), (18865, 'Sign Systems Studies', 14064243, 0.17, 'Q2', 7, 21, 1033, 37, 81, '71', '2012-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (18866, 'Transactions of the Korean Society of Mechani', 22885234, 0.17, 'Q4', 8, 88, 1410, 50, 293, '13', '2007-2020', 'Mechanical Engineering (Q4)'), (18867, 'Transactions of the Royal Institution of Nava', 17400694, 0.17, 'Q3', 10, 0, 0, 9, 17, '3', '2006-2018', 'Ocean Engineering (Q3); Civil and Structural Engineering (Q4)'), (18868, 'Vibrations in Physical Systems', 8606897, 0.17, 'Q4', 7, 64, 877, 42, 79, '17', '2012, 2014, 2016-2020', 'Mechanics of Materials (Q4)'), (18869, 'Voprosy Prakticheskoi Pediatrii', 18177646, 0.17, 'Q3', 5, 90, 2746, 81, 231, '10', '2013-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (18870, 'Anasthesiologie, Intensivmedizin, Notfallmedi', 14391074, 0.169, 'Q3', 26, 109, 1434, 92, 198, '5', '1980-2020', 'Anesthesiology and Pain Medicine (Q3); Emergency Medicine (Q3); Critical Care and Intensive Care Medicine (Q4); Medicine (miscellaneous) (Q4)'), (18871, 'Art Documentation', 21619417, 0.169, 'Q1', 4, 19, 109, 15, 62, '2', '2015-2020', 'Visual Arts and Performing Arts (Q1); Archeology (arts and humanities) (Q3); Library and Information Sciences (Q3)'), (18872, 'Arxius de Miscellania Zoologica', 16980476, 0.169, 'Q4', 5, 13, 418, 20, 38, '12', '2011-2020', 'Animal Science and Zoology (Q4)'), (18873, 'Australian Journal of Rehabilitation Counsell', 13238922, 0.169, 'Q4', 11, 17, 356, 12, 26, '3', '1995-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (18874, 'Carpathian Journal of Food Science and Techno', 20666845, 0.169, 'Q4', 7, 67, 2227, 93, 220, '43', '2009-2020', 'Food Science (Q4)'), (18875, 'Chinese Pharmacological Bulletin', 10011978, 0.169, 'Q4', 16, 111, 1965, 224, 1022, '1', '1993-2019', 'Pharmacology (Q4)'), (18876, 'Cientifica', 1000039, 0.169, 'Q4', 2, 43, 1285, 34, 103, '14', '1981-1982, 2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (18877, 'Cogent Arts and Humanities', 23311983, 0.169, 'Q3', 7, 73, 3383, 74, 150, '3', '2014-2020', 'Arts and Humanities (miscellaneous) (Q3)'), (18878, 'Earth Sciences History', 736623, 0.169, 'Q3', 8, 23, 1545, 14, 64, '2', '1985, 1988, 1996-2020', 'History and Philosophy of Science (Q3); Earth and Planetary Sciences (miscellaneous) (Q4)'), (18879, 'Frontiers of Health Services Management', 24752797, 0.169, 'Q3', 23, 27, 0, 5, 10, '2', '1984-2017, 2019-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (18880, 'Generations', 7387806, 0.169, 'Q4', 34, 23, 197, 75, 197, '2', '1985, 1990, 1994, 1996-2019', 'Geriatrics and Gerontology (Q4); Life-span and Life-course Studies (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18881, 'Geologie de la France', 2460874, 0.169, 'Q4', 7, 3, 138, 6, 12, '8', '1983-1994, 2007, 2009-2012, 2014-2020', 'Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)'), (18882, 'Herba Polonica', 180599, 0.169, 'Q3', 4, 19, 709, 36, 49, '17', '1973-1979, 2018-2020', 'Complementary and Alternative Medicine (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Pharmacology (Q4); Plant Science (Q4)'), (18883, 'History and Theory', 14682303, 0.169, 'Q2', 41, 41, 0, 70, 97, '2', '1968-1969, 1977, 1996-2020', 'History (Q2); Philosophy (Q2)'), (18884, 'Ideggyogyaszati Szemle', 191442, 0.169, 'Q4', 14, 52, 1488, 66, 153, '50', '1954-1964, 1973-1985, 2002-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (18885, 'International Journal of Epilepsy', 22136320, 0.169, 'Q4', 4, 12, 295, 18, 48, '4', '2014-2018, 2020', 'Neurology (clinical) (Q4)'), (18886, 'International Journal of Online Engineering', 18681646, 0.169, 'Q3', 18, 0, 0, 306, 338, '5', '2011-2018', 'Engineering (miscellaneous) (Q3); E-learning (Q4)'), (18887, 'International Journal of Power and Energy Con', 17571162, 0.169, 'Q4', 9, 20, 566, 44, 63, '3', '2012-2014, 2020', 'Energy Engineering and Power Technology (Q4)'), (18888, 'Journal of Agricultural Extension', 24086851, 0.169, 'Q4', 4, 57, 1173, 65, 156, '51', '2016-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Development (Q4); Education (Q4)'), (18889, 'Journal of Agricultural Resources and Environ', 20956819, 0.169, 'Q4', 3, 104, 3728, 56, 96, '1', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (18890, 'Journal of Computing and Information Technolo', 13301136, 0.169, 'Q4', 27, 5, 123, 37, 56, '58', '1996-2020', 'Computer Science (miscellaneous) (Q4)'), (18891, 'Journal of Family History', 15525473, 0.169, 'Q3', 22, 30, 0, 26, 66, '2', '1976-2020', 'Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (18892, 'Journal of Geometry and Symmetry in Physics', 13145673, 0.169, 'Q4', 14, 12, 254, 31, 61, '61', '2004-2020', 'Geometry and Topology (Q4); Mathematical Physics (Q4)'), (18893, 'Journal of Modern Applied Statistical Methods', 15389472, 0.169, 'Q4', 28, 5, 164, 103, 158, '2', '2002-2019', 'Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (18894, 'Journal of Time Series Econometrics', 19411928, 0.169, 'Q4', 3, 9, 347, 12, 24, '5', '2016-2020', 'Economics and Econometrics (Q4)'), (18895, 'Jurnal Pengurusan', 1272713, 0.169, 'Q3', 13, 26, 1699, 86, 140, '23', '2006-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Accounting (Q4); Business and International Management (Q4)'), (18896, 'Landscapes (United Kingdom)', 14662035, 0.169, 'Q2', 5, 2, 202, 9, 25, '3', '2002-2018, 2020', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)'), (18897, 'Linguistic Variation', 22116842, 0.169, 'Q4', 3, 24, 561, 11, 33, '16', '2017-2020', 'Food Science (Q4)'), (18898, 'LUMAT', 23237112, 0.169, 'Q4', 3, 14, 633, 11, 43, '38', '2016-2019', 'Education (Q4)'), (18899, 'Mathematical Notes of NEFU', 2587876, 0.169, 'Q4', 2, 31, 643, 10, 35, '10', '2019-2020', 'Mathematics (miscellaneous) (Q4)'), (18900, 'Oxford Medical Case Reports', 20538855, 0.169, 'Q4', 9, 136, 1154, 147, 307, '2', '2014-2020', 'Infectious Diseases (Q4); Microbiology (Q4); Parasitology (Q4)'), (18901, 'Philippine Agricultural Scientist', 317454, 0.169, 'Q4', 14, 33, 1092, 45, 108, '63', '1996-2019', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Biotechnology (Q4)'), (18902, 'Pneumon', 1105848, 0.169, 'Q4', 7, 47, 589, 13, 42, '39', '2009-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (18903, 'Portuguese Economic Journal', 1617982, 0.169, 'Q3', 14, 29, 1361, 17, 28, '5', '2005-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Economics and Econometrics (Q4)'), (18904, 'Revista Brasileira de Orientacao Profissional', 16793390, 0.169, 'Q4', 10, 10, 387, 21, 59, '14', '2011-2019', 'Applied Psychology (Q4); Education (Q4); Organizational Behavior and Human Resource Management (Q4)'), (18905, 'Revista de Estudios Hispanicos', 34818, 0.169, 'Q1', 6, 32, 1211, 11, 103, '2', '2002-2012, 2015-2019', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)'), (18906, 'Revista Latinoamericana de Psicopatologia Fun', 19840381, 0.169, 'Q4', 8, 48, 1243, 9, 113, '14', '2008-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (18907, 'Revue Numismatique', 4848942, 0.169, 'Q3', 8, 0, 0, 8, 43, '8', '1985, 2002-2007, 2009-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (18908, 'Rocky Mountain Geology', 15557340, 0.169, 'Q4', 10, 3, 247, 5, 16, '2', '2007-2019', 'Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)'), (18909, 'Semergen', 15788865, 0.169, 'Q3', 10, 160, 3109, 142, 299, '12', '2003, 2005-2020', 'Family Practice (Q3); Public Health, Environmental and Occupational Health (Q4)'), (18910, 'South African Statistical Journal', 38271, 0.169, 'Q4', 10, 15, 389, 19, 41, '27', '1996-2019', 'Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (18911, 'Turkish Journal of Physics', 13036122, 0.169, 'Q4', 26, 26, 1211, 123, 194, '18', '1994-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (18912, 'World Political Science', 23634782, 0.169, 'Q3', 8, 0, 0, 19, 33, '5', '2015-2019', 'Political Science and International Relations (Q3)'), (18913, 'Annales de Cardiologie et d Angeiologie', 17683181, 0.168, 'Q4', 17, 78, 1919, 83, 238, '8', '1968-2020', 'Cardiology and Cardiovascular Medicine (Q4); Medicine (miscellaneous) (Q4)'), (18914, 'Asian Journal of Women s Studies', 12259276, 0.168, 'Q3', 12, 29, 1162, 34, 85, '3', '1996-2020', 'Gender Studies (Q3)'), (18915, 'Astronomy and Geophysics', 14684004, 0.168, 'Q4', 22, 61, 794, 66, 151, '3', '1996-2020', 'Astronomy and Astrophysics (Q4); Geochemistry and Petrology (Q4); Geophysics (Q4)'), (18916, 'Contemporary Literature', 107484, 0.168, 'Q1', 15, 14, 491, 13, 36, '2', '2002-2019', 'Literature and Literary Theory (Q1)'), (18917, 'Diagnostic Histopathology', 17562317, 0.168, 'Q4', 24, 76, 2498, 84, 184, '3', '2008-2020', 'Histology (Q4); Pathology and Forensic Medicine (Q4)'), (18918, 'e-Review of Tourism Research', 19415842, 0.168, 'Q4', 10, 64, 1917, 69, 138, '2', '2011-2012, 2014-2020', 'Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (18919, 'Foundation Review', 19445660, 0.168, 'Q3', 9, 25, 330, 8, 74, '2', '2009-2013, 2017-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (18920, 'Global Journal of Emerging Market Economies', 9749101, 0.168, 'Q3', 8, 21, 1091, 19, 30, '2', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Business and International Management (Q4); Development (Q4); Geography, Planning and Development (Q4); Global and Planetary Change (Q4)'), (18921, 'Indian Journal of Biotechnology', 9725849, 0.168, 'Q4', 36, 7, 251, 79, 182, '4', '2002-2019', 'Applied Microbiology and Biotechnology (Q4); Bioengineering (Q4); Biotechnology (Q4); Plant Science (Q4)'), (18922, 'Indonesian Journal of Electrical Engineering ', 20893272, 0.168, 'Q4', 8, 75, 2548, 172, 183, '21', '2017-2020', 'Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science (miscellaneous) (Q4); Control and Optimization (Q4); Control and Systems Engineering (Q4); Electrical and Elec'), (18923, 'Industrial Engineering and Management Systems', 15987248, 0.168, 'Q3', 12, 75, 2277, 132, 211, '13', '2014-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (18924, 'International Journal of Information Technolo', 19380232, 0.168, 'Q3', 5, 23, 939, 30, 42, '2', '2017-2020', 'Communication (Q3); Information Systems and Management (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4); Organizational Behavior and Human Resource Management (Q'), (18925, 'Iranian Journal of Pediatrics', 20082150, 0.168, 'Q3', 25, 80, 2039, 99, 272, '15', '2008-2020', 'Pediatrics, Perinatology and Child Health (Q3)'), (18926, 'Japanese Journal of Hygiene', 18826482, 0.168, 'Q4', 17, 7, 0, 52, 108, '6', '1961-2020', 'Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18927, 'Journal of Animal Health and Production', 23082801, 0.168, 'Q4', 3, 61, 2214, 28, 47, '34', '2018-2020', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (18928, 'Journal of Engineering Research', 23071877, 0.168, 'Q3', 9, 53, 1537, 131, 198, '80', '2013-2020', 'Engineering (miscellaneous) (Q3)'), (18929, 'Journal of Library Metadata', 19375034, 0.168, 'Q3', 15, 8, 228, 12, 36, '3', '2008-2020', 'Library and Information Sciences (Q3); E-learning (Q4)'), (18930, 'Journal of Marine Environmental Engineering', 1061026, 0.168, 'Q3', 14, 0, 0, 3, 14, '2', '1996-2001, 2003-2006, 2008, 2010, 2012-2013, 2015, 2017-2019', 'Ocean Engineering (Q3); Environmental Engineering (Q4); Pollution (Q4); Waste Management and Disposal (Q4)'), (18931, 'Journal of Medicinal Plants', 16840240, 0.168, 'Q3', 21, 96, 3517, 89, 191, '15', '2004-2020', 'Complementary and Alternative Medicine (Q3); Pharmacology (Q4)'), (18932, 'Journal of Men s Health', 18756867, 0.168, 'Q4', 33, 37, 1234, 42, 66, '16', '2008-2020', 'Medicine (miscellaneous) (Q4); Urology (Q4)'), (18933, 'Journal of Risk Model Validation', 17539587, 0.168, 'Q4', 8, 12, 381, 17, 46, '2', '2012-2020', 'Applied Mathematics (Q4); Economics and Econometrics (Q4); Finance (Q4); Modeling and Simulation (Q4)'), (18934, 'Journal of Sustainable Architecture and Civil', 20299990, 0.168, 'Q2', 2, 20, 488, 9, 18, '69', '2019-2020', 'Architecture (Q2); Building and Construction (Q4); Civil and Structural Engineering (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (18935, 'Journal of Urban Culture Research', 24081213, 0.168, 'Q1', 1, 20, 578, 1, 5, '40', '2019-2020', 'Visual Arts and Performing Arts (Q1); History (Q2); Music (Q2); Urban Studies (Q3)'), (18936, 'Korean Chemical Engineering Research', 304128, 0.168, 'Q4', 9, 81, 2085, 157, 363, '13', '2014-2020', 'Chemical Engineering (miscellaneous) (Q4)'), (18937, 'Korean Journal of Microbiology', 4402413, 0.168, 'Q4', 10, 78, 1465, 64, 233, '13', '2007-2020', 'Microbiology (Q4)'), (18938, 'Malaysian Journal of Music', 26009366, 0.168, 'Q2', 2, 11, 321, 4, 32, '23', '2018-2019', 'Cultural Studies (Q2); Music (Q2)'), (18939, 'Masonry International', 9502289, 0.168, 'Q4', 4, 0, 0, 8, 12, '3', '2012-2017, 2019', 'Building and Construction (Q4); Materials Science (miscellaneous) (Q4)'), (18940, 'Open Library of Humanities', 20566700, 0.168, 'Q2', 6, 49, 2515, 39, 138, '3', '2015-2020', 'Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (18941, 'Phytopathogenic Mollicutes', 22494669, 0.168, 'Q4', 2, 25, 1049, 36, 130, '4', '2019-2020', 'Cell Biology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4); Parasitology (Q4)'), (18942, 'Politique Europeenne', 16236297, 0.168, 'Q3', 2, 25, 1476, 15, 61, '8', '2017-2018, 2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18943, 'Proceedings of the Latvian Academy of Science', 1407009, 0.168, 'Q3', 9, 45, 1648, 91, 191, '17', '2008-2020', 'Multidisciplinary (Q3)'), (18944, 'Psyche (New York)', 332615, 0.168, 'Q4', 22, 2, 109, 14, 28, '32', '1874-1885, 1888-1910, 1912-1995, 2009-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (18945, 'Revista Espanola de Drogodependencias', 2137615, 0.168, 'Q4', 5, 17, 489, 26, 83, '12', '2012-2019', 'Psychiatry and Mental Health (Q4)'), (18946, 'Revista Internacional de Acupuntura', 18878369, 0.168, 'Q3', 4, 24, 547, 9, 57, '12', '2007-2020', 'Complementary and Alternative Medicine (Q3)'), (18947, 'Revista Materia', 15177076, 0.168, 'Q4', 14, 245, 7514, 356, 733, '14', '2009-2020', 'Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (18948, 'Romanian Journal of Political Science', 20687613, 0.168, 'Q3', 9, 7, 329, 10, 25, '43', '2009-2013, 2015-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18949, 'Sociologia Urbana e Rurale', 3924939, 0.168, 'Q3', 4, 29, 1246, 29, 99, '7', '2017-2020', 'Demography (Q3); Sociology and Political Science (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)'), (18950, 'Studia Neophilologica', 393274, 0.168, 'Q2', 9, 29, 1397, 24, 70, '3', '1928-1953, 1955-2020', 'Philosophy (Q2)'), (18951, 'Trauma Monthly', 22517472, 0.168, 'Q4', 16, 47, 1281, 83, 181, '16', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (18952, 'Welding International', 17542138, 0.168, 'Q4', 24, 0, 0, 139, 291, '3', '1987-2018', 'Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (18953, 'World of Metallurgy - ERZMETALL', 16132394, 0.168, 'Q3', 12, 37, 349, 29, 93, '5', '2004-2020', 'Industrial and Manufacturing Engineering (Q3); Environmental Chemistry (Q4); Geotechnical Engineering and Engineering Geology (Q4); Waste Management and Disposal (Q4)'), (18954, 'Analitika i Kontrol', 20731442, 0.167, 'Q4', 6, 20, 674, 65, 129, '10', '2016-2020', 'Analytical Chemistry (Q4)'), (18955, 'Annales de Biologie Clinique', 33898, 0.167, 'Q4', 27, 94, 0, 93, 265, '8', '1945-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Immunology and Microbiology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (18956, 'Anthropological Forum', 14692902, 0.167, 'Q3', 20, 26, 1485, 23, 70, '3', '1963-1965, 1967-1973, 1975, 1977, 1980, 1983-1984, 1988-1991, 1993-1995, 2000-2001, 2003-2004, 2007-', 'Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (18957, 'Anthropos', 2579774, 0.167, 'Q3', 13, 32, 1159, 15, 104, '19', '1983, 1987, 1996-2019', 'Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (18958, 'Asian Pacific Journal of Reproduction', 23050500, 0.167, 'Q3', 17, 45, 1610, 182, 144, '4', '2012-2020', 'Obstetrics and Gynecology (Q3); Animal Science and Zoology (Q4); Plant Science (Q4); Reproductive Medicine (Q4); Veterinary (miscellaneous) (Q4)'), (18959, 'Asia Pacific Journal of Health Management', 22043136, 0.167, 'Q4', 2, 51, 1202, 12, 23, '11', '2020', 'Health Information Management (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18960, 'A|Z ITU Journal of Faculty of Architecture', 13028324, 0.167, 'Q1', 7, 45, 1521, 34, 103, '18', '2011-2020', 'Visual Arts and Performing Arts (Q1); Architecture (Q2); Urban Studies (Q3); Civil and Structural Engineering (Q4)'), (18961, 'Baghdad Science Journal', 24117986, 0.167, 'Q4', 6, 167, 3763, 191, 301, '48', '2017-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Mat'), (18962, 'Botanica Lithuanica', 2029932, 0.167, 'Q4', 5, 0, 0, 18, 28, '17', '2016-2018', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (18963, 'Canadian Biosystems Engineering / Le Genie de', 14929058, 0.167, 'Q4', 34, 4, 122, 11, 17, '9', '1997-2019', 'Mechanical Engineering (Q4)'), (18964, 'Canadian Journal of Law and Jurisprudence', 20564260, 0.167, 'Q3', 18, 20, 1734, 16, 58, '3', '1996-2003, 2007, 2012-2020', 'Law (Q3)'), (18965, 'Case Reports in Veterinary Medicine', 20907001, 0.167, 'Q4', 4, 20, 480, 16, 33, '32', '2011-2020', 'Veterinary (miscellaneous) (Q4)'), (18966, 'Challenges in Sustainability', 22976477, 0.167, 'Q4', 1, 3, 175, 2, 2, '19', '2019-2020', 'Ecology (Q4); Geography, Planning and Development (Q4); Global and Planetary Change (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)'), (18967, 'Computacion y Sistemas', 14055546, 0.167, 'Q4', 13, 126, 3335, 242, 328, '30', '2012-2020', 'Computer Science (miscellaneous) (Q4)'), (18968, 'European Journal of Comparative Economics', 18242979, 0.167, 'Q4', 4, 8, 340, 30, 37, '7', '2017-2020', 'Economics and Econometrics (Q4)'), (18969, 'European Journal of General Dentistry', 23204753, 0.167, 'Q4', 5, 33, 916, 26, 51, '4', '2016-2020', 'Dentistry (miscellaneous) (Q4)'), (18970, 'Geophysica', 3674231, 0.167, 'Q4', 19, 2, 93, 13, 23, '38', '1978-1985, 1988, 1990-2019', 'Geophysics (Q4)'), (18971, 'Gulf and Caribbean Research', 15280470, 0.167, 'Q4', 1, 14, 572, 4, 14, '2', '2019-2020', 'Aquatic Science (Q4); Oceanography (Q4); Water Science and Technology (Q4)'), (18972, 'International Journal of Arts and Technology', 17548861, 0.167, 'Q1', 17, 21, 607, 24, 41, '19', '2008-2014, 2020', 'Visual Arts and Performing Arts (Q1); Computer Science Applications (Q4)'), (18973, 'International Journal of Environment and Poll', 9574352, 0.167, 'Q4', 46, 4, 234, 60, 126, '3', '1991-2014, 2020', 'Management, Monitoring, Policy and Law (Q4); Pollution (Q4); Waste Management and Disposal (Q4)'), (18974, 'International Journal of Intelligence, Securi', 23800992, 0.167, 'Q3', 5, 24, 910, 16, 36, '3', '2016-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3); Information Systems and Management (Q4)'), (18975, 'International Journal of Networking and Virtu', 14709503, 0.167, 'Q4', 19, 48, 1982, 71, 122, '3', '2002-2013, 2019-2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems and Management (Q4); Strategy and Management (Q4)'), (18976, 'Investigacion Operacional', 2574306, 0.167, 'Q4', 9, 86, 1937, 102, 161, '85', '2012-2020', 'Applied Mathematics (Q4); Numerical Analysis (Q4); Statistics and Probability (Q4)'), (18977, 'Islam and Christian-Muslim Relations', 14699311, 0.167, 'Q1', 17, 19, 1172, 28, 70, '3', '1990-1997, 2000-2020', 'Religious Studies (Q1); Political Science and International Relations (Q3)'), (18978, 'Jiegou Huaxue', 2545861, 0.167, 'Q4', 22, 232, 7558, 443, 716, '1', '1996-2020', 'Chemistry (miscellaneous) (Q4)'), (18979, 'Journal for International Business and Entrep', 17476763, 0.167, 'Q3', 4, 12, 841, 26, 27, '19', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Political Science and International Relations (Q3); Development (Q4)'), (18980, 'Journal of Applied Probability and Statistics', 19306792, 0.167, 'Q4', 5, 9, 227, 19, 42, '34', '2012-2020', 'Applied Mathematics (Q4); Podiatry (Q4)'), (18981, 'Journal of Asian Sociology', 26718200, 0.167, 'Q3', 6, 20, 1067, 36, 81, '13', '2019-2020', 'Social Sciences (miscellaneous) (Q3)'), (18982, 'Journal of Coloproctology', 22379363, 0.167, 'Q4', 11, 72, 1540, 80, 181, '14', '2011-2020', 'Gastroenterology (Q4)'), (18983, 'Journal of Complex Analysis', 23144963, 0.167, 'Q4', 7, 0, 0, 15, 19, '2', '2013-2019', 'Analysis (Q4)'), (18984, 'Journal of Japan Society of Civil Engineers', 21875103, 0.167, 'Q4', 2, 25, 457, 10, 14, '6', '2019-2020', 'Civil and Structural Engineering (Q4); Environmental Engineering (Q4)'), (18985, 'Journal of Orthopaedics, Trauma and Rehabilit', 22104925, 0.167, 'Q4', 6, 45, 883, 26, 84, '16', '2010-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (18986, 'Journal of Southeast Asian Studies', 14740680, 0.167, 'Q2', 30, 28, 1613, 32, 65, '3', '1970-2019', 'History (Q2); Sociology and Political Science (Q3); Geography, Planning and Development (Q4)'), (18987, 'Kartographische Nachrichten', 229164, 0.167, 'Q4', 8, 0, 0, 20, 36, '5', '1978, 1981-1982, 1994-1996, 2009-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (18988, 'Kontakt', 18047122, 0.167, 'Q2', 8, 43, 1261, 75, 156, '31', '2014-2020', 'Philosophy (Q2); Nursing (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (18989, 'Malaysian Journal of Biochemistry and Molecul', 15112616, 0.167, 'Q4', 5, 54, 2217, 59, 90, '23', '2016-2020', 'Biochemistry (Q4); Molecular Biology (Q4)'), (18990, 'Middle East Journal of Culture and Communicat', 18739857, 0.167, 'Q2', 11, 13, 444, 15, 46, '16', '2008-2020', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Communication (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (18991, 'Nursing Management', 20478976, 0.167, 'Q4', 18, 55, 524, 47, 195, '3', '1994-2020', 'Leadership and Management (Q4)'), (18992, 'Orbital', 19846428, 0.167, 'Q4', 4, 38, 1151, 86, 173, '14', '2017-2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (18993, 'Plant Root', 18816754, 0.167, 'Q4', 12, 4, 133, 8, 19, '6', '2008-2019', 'Agronomy and Crop Science (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Plant Science (Q4)'), (18994, 'Polis', 11209488, 0.167, 'Q3', 12, 20, 908, 15, 48, '7', '1990, 1997, 2000-2008, 2010-2019', 'Sociology and Political Science (Q3)'), (18995, 'Przeglad Dermatologiczny', 332526, 0.167, 'Q4', 9, 53, 1498, 72, 169, '17', '1951-2020', 'Dermatology (Q4)'), (18996, 'Revista de Derecho Civil', 23412216, 0.167, 'Q3', 3, 25, 514, 16, 65, '12', '2018-2020', 'Law (Q3)'), (18997, 'Revue d Economie Politique', 3732630, 0.167, 'Q3', 13, 38, 1873, 27, 127, '8', '1975, 1978, 2005-2020', 'Political Science and International Relations (Q3)'), (18998, 'Thai Journal of Pharmaceutical Sciences', 1254685, 0.167, 'Q3', 11, 36, 1240, 51, 90, '40', '2009-2020', 'Pharmaceutical Science (Q3); Pharmacology (Q4)'), (18999, 'Topics in Geriatric Rehabilitation', 15502414, 0.167, 'Q4', 27, 43, 1414, 58, 113, '2', '1985-2020', 'Geriatrics and Gerontology (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (19000, 'Uniciencia', 22153470, 0.167, 'Q3', 2, 24, 695, 6, 16, '95', '2019-2020', 'Social Sciences (miscellaneous) (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Comp'), (19001, 'WHO Drug Information', 10109609, 0.167, 'Q4', 8, 9, 157, 5, 24, '19', '1996-2011, 2013-2020', 'Pharmacology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19002, 'Wisconsin Law Review', 43650, 0.167, 'Q3', 26, 0, 0, 26, 89, '2', '1976, 1978-1982, 1984-1985, 1987, 1990, 1992-1993, 1995-2019', 'Law (Q3)'), (19003, 'Zeitschrift fur die Alttestamentliche Wissens', 16130103, 0.167, 'Q1', 13, 31, 749, 15, 92, '5', '1881-1916, 1918, 1920-1939, 1941, 1943-1944, 1948, 1950-2020', 'Religious Studies (Q1); History (Q2)'), (19004, 'Ab Imperio', 21649731, 0.166, 'Q2', 9, 43, 521, 23, 104, '2', '2013-2020', 'History (Q2); Sociology and Political Science (Q3)'), (19005, 'Africa Journal of Nursing and Midwifery', 16825055, 0.166, 'Q3', 8, 47, 1448, 37, 106, '27', '2006-2008, 2014-2019', 'Advanced and Specialized Nursing (Q3); Maternity and Midwifery (Q3)'), (19006, 'African Journal of Agricultural and Resource ', 19933738, 0.166, 'Q4', 2, 16, 640, 23, 45, '72', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Economics and Econometrics (Q4)'), (19007, 'African Journal of Library Archives and Infor', 7954778, 0.166, 'Q3', 8, 7, 338, 20, 30, '51', '2008-2012, 2014-2017, 2019', 'Library and Information Sciences (Q3)'), (19008, 'Agriculturae Conspectus Scientificus', 13317768, 0.166, 'Q4', 19, 40, 1632, 88, 166, '58', '2005-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geophysics (Q4)'), (19009, 'Annals of Economics and Statistics', 21154430, 0.166, 'Q3', 2, 13, 544, 19, 51, '8', '2018-2020', 'Social Sciences (miscellaneous) (Q3); Economics and Econometrics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (19010, 'Athenea Digital: Revista de Pensamiento e Inv', 15788946, 0.166, 'Q3', 11, 57, 2683, 35, 156, '12', '2007-2020', 'Social Sciences (miscellaneous) (Q3)'), (19011, 'Bijdragen en Mededelingen Betreffende de Gesc', 1650505, 0.166, 'Q2', 9, 20, 669, 27, 76, '16', '1975, 1999-2002, 2009-2020', 'History (Q2)'), (19012, 'Central Asia and the Caucasus', 20023839, 0.166, 'Q3', 9, 53, 181, 37, 133, '20', '2013-2020', 'Ocean Engineering (Q3); Political Science and International Relations (Q3); Development (Q4)'), (19013, 'Croatian Journal of Education', 18485197, 0.166, 'Q4', 8, 77, 3190, 61, 137, '58', '2011-2019', 'Education (Q4)'), (19014, 'Cuadernos de Turismo', 19894635, 0.166, 'Q4', 9, 27, 318, 68, 141, '12', '2013-2020', 'Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (19015, 'Current History', 113530, 0.166, 'Q2', 20, 61, 0, 60, 170, '2', '1977, 1980, 1982, 1984, 1986, 1996, 1998-2002, 2005-2020', 'History (Q2)'), (19016, 'Current Regenerative Medicine', 24684244, 0.166, 'Q4', 2, 0, 0, 4, 9, '16', '2016-2017', 'Cell Biology (Q4); Developmental Biology (Q4); Developmental Neuroscience (Q4)'), (19017, 'Diritto and Questioni Pubbliche', 18250173, 0.166, 'Q3', 3, 18, 670, 13, 122, '7', '2017-2019', 'Law (Q3)'), (19018, 'EAI Endorsed Transactions on Pervasive Health', 24117145, 0.166, 'Q4', 3, 34, 1251, 32, 34, '24', '2018-2020', 'Computer Science (miscellaneous) (Q4); Health Informatics (Q4)'), (19019, 'Entreprises et Histoire', 11612770, 0.166, 'Q2', 8, 46, 1851, 16, 89, '8', '2001-2003, 2008-2020', 'History (Q2); Economics, Econometrics and Finance (miscellaneous) (Q3); Business and International Management (Q4)'), (19020, 'European Journal of Comparative Law and Gover', 22134506, 0.166, 'Q3', 4, 16, 858, 14, 34, '16', '2014-2020', 'Law (Q3); Sociology and Political Science (Q3); Public Administration (Q4)'), (19021, 'History of Economic Ideas', 11228792, 0.166, 'Q2', 7, 0, 0, 15, 66, '7', '2011-2019', 'History (Q2); Sociology and Political Science (Q3); Economics and Econometrics (Q4)'), (19022, 'Infektsionnye Bolezni', 17299225, 0.166, 'Q4', 5, 75, 1813, 59, 183, '10', '2015-2020', 'Epidemiology (Q4); Infectious Diseases (Q4); Virology (Q4)'), (19023, 'International Journal of Sustainable Construc', 26007959, 0.166, 'Q4', 4, 78, 2180, 33, 29, '23', '2018-2020', 'Building and Construction (Q4); Civil and Structural Engineering (Q4); Environmental Engineering (Q4)'), (19024, 'ITEA Informacion Tecnica Economica Agraria', 16996887, 0.166, 'Q3', 10, 30, 1261, 38, 72, '12', '2005, 2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Agronomy and Crop Science (Q4); Horticulture (Q4); Veterinary (miscellaneous) (Q4)'), (19025, 'Journal of Bionanoscience', 15577929, 0.166, 'Q4', 21, 0, 0, 192, 199, '2', '2008-2018', 'Biomaterials (Q4); Biomedical Engineering (Q4); Biotechnology (Q4); Nanoscience and Nanotechnology (Q4)'), (19026, 'Journal of Modern European History', 16118944, 0.166, 'Q2', 10, 36, 0, 23, 111, '5', '2010-2020', 'History (Q2)'), (19027, 'Journal of Population Therapeutics and Clinic', 1198581, 0.166, 'Q4', 40, 38, 1592, 35, 51, '9', '1996-2020', 'Health Policy (Q4); Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4)'), (19028, 'Journal of South China Agricultural Universit', 1001411, 0.166, 'Q4', 4, 104, 3060, 102, 223, '1', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (19029, 'Journal of the Palaeontological Society of In', 5529360, 0.166, 'Q4', 11, 2, 42, 25, 37, '4', '2011-2018', 'Paleontology (Q4)'), (19030, 'Journal on the Use of Force and International', 20531702, 0.166, 'Q3', 6, 17, 0, 7, 23, '3', '2014-2020', 'Law (Q3); Political Science and International Relations (Q3)'), (19031, 'Kathmandu University Medical Journal', 18122078, 0.166, 'Q4', 25, 102, 2283, 95, 236, '88', '2003-2019', 'Medicine (miscellaneous) (Q4)'), (19032, 'Khayyam Journal of Mathematics', 24234788, 0.166, 'Q4', 6, 24, 332, 37, 56, '15', '2015-2020', 'Mathematics (miscellaneous) (Q4)'), (19033, 'Klinicka Mikrobiologie a Infekcni Lekarstvi', 1211264, 0.166, 'Q4', 9, 15, 125, 28, 48, '31', '2001-2019', 'Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Microbiology (medical) (Q4)'), (19034, 'Koers', 23270, 0.166, 'Q1', 5, 19, 671, 18, 47, '27', '2014-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (19035, 'Mark Twain Annual', 15530981, 0.166, 'Q1', 2, 11, 247, 13, 34, '2', '2017-2019', 'Literature and Literary Theory (Q1)'), (19036, 'Memoirs of the Queensland Museum', 798835, 0.166, 'Q4', 34, 5, 176, 9, 20, '11', '1987-2009, 2011-2020', 'Ecology (Q4); Paleontology (Q4)'), (19037, 'Norwegian Journal of Entomology', 15018415, 0.166, 'Q4', 9, 23, 491, 13, 50, '33', '2009-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (19038, 'Pedagogia Social', 19899742, 0.166, 'Q3', 3, 23, 833, 28, 49, '12', '2018-2020', 'Sociology and Political Science (Q3); Education (Q4)'), (19039, 'Politics in Central Europe', 18013422, 0.166, 'Q3', 6, 15, 691, 26, 47, '17', '2016-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (19040, 'Progress in Reaction Kinetics and Mechanism', 14686783, 0.166, 'Q4', 25, 8, 245, 57, 105, '3', '1998-2020', 'Physical and Theoretical Chemistry (Q4)'), (19041, 'Regional and Sectoral Economic Studies', 15784460, 0.166, 'Q4', 10, 20, 706, 10, 41, '12', '2008-2020', 'Economics and Econometrics (Q4)'), (19042, 'Research in Agricultural Engineering', 12129151, 0.166, 'Q4', 20, 20, 499, 73, 86, '31', '2007-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4)'), (19043, 'Rwanda Medical Journal', 2079097, 0.166, 'Q4', 4, 30, 577, 16, 57, '120', '2013-2020', 'Medicine (miscellaneous) (Q4)'), (19044, 'social history of alcohol and drugs, The', 26407329, 0.166, 'Q2', 6, 12, 279, 11, 24, '2', '2005-2020', 'Cultural Studies (Q2); History (Q2); Law (Q3); Public Health, Environmental and Occupational Health (Q4)'), (19045, 'Sociologia e Antropologia', 22383875, 0.166, 'Q2', 2, 31, 1039, 38, 105, '14', '2017-2020', 'Cultural Studies (Q2); Anthropology (Q3); Social Sciences (miscellaneous) (Q3)'), (19046, 'South African Journal of Physiotherapy', 24108219, 0.166, 'Q4', 3, 31, 1124, 21, 31, '27', '1987-1989, 1991-1998, 2019-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (19047, 'South African Review of Sociology', 21528586, 0.166, 'Q3', 18, 9, 456, 37, 55, '3', '2006-2020', 'Social Sciences (miscellaneous) (Q3)'), (19048, 'Studia Regionalne i Lokalne', 15094995, 0.166, 'Q3', 6, 21, 1034, 27, 73, '17', '2013-2020', 'Social Sciences (miscellaneous) (Q3)'), (19049, 'Studies in Polish Linguistics', 17328160, 0.166, 'Q2', 2, 2, 63, 6, 32, '17', '2018-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19050, 'Tempo', 402982, 0.166, 'Q2', 7, 33, 348, 12, 122, '3', '1939, 1941, 1944-1950, 1963-1993, 1996-2020', 'Music (Q2)'), (19051, 'Translational and Clinical Pharmacology', 22890882, 0.166, 'Q4', 6, 21, 465, 41, 80, '13', '2014-2020', 'Pharmacology (medical) (Q4)'), (19052, 'West African Journal of Applied Ecology', 8554307, 0.166, 'Q4', 11, 24, 977, 35, 65, '73', '2009-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (19053, 'World Journal of Dentistry', 9766006, 0.166, 'Q4', 10, 79, 1998, 687, 268, '4', '2014-2020', 'Dentistry (miscellaneous) (Q4)'), (19054, 'Zhongshan Daxue Xuebao/Acta Scientiarum Natra', 5296579, 0.166, 'Q3', 12, 104, 2434, 74, 370, '1', '1980, 2001-2020', 'Multidisciplinary (Q3)'), (19055, 'African Evaluation Journal', 23065133, 0.165, 'Q3', 4, 11, 355, 18, 35, '27', '2017-2020', 'Sociology and Political Science (Q3); Development (Q4)'), (19056, 'Annee Psychologique', 35033, 0.165, 'Q3', 23, 17, 936, 12, 35, '8', '1952-1961, 1964-1984, 1995-2020', 'Arts and Humanities (miscellaneous) (Q3); Psychology (miscellaneous) (Q4)'), (19057, 'Anuario de Psicologia', 665126, 0.165, 'Q4', 15, 3, 132, 36, 52, '12', '2002-2009, 2011-2020', 'Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)'), (19058, 'Architecture and Engineering', 25000055, 0.165, 'Q3', 3, 22, 446, 18, 27, '10', '2019-2020', 'Architecture (Q3); Building and Construction (Q4); Mechanics of Materials (Q4)'), (19059, 'Avaliacao Psicologica', 21753431, 0.165, 'Q4', 5, 70, 2661, 54, 146, '14', '2015-2019', 'Psychology (miscellaneous) (Q4)'), (19060, 'Boletin Medico del Hospital Infantil de Mexic', 16651146, 0.165, 'Q4', 12, 57, 1626, 83, 152, '30', '1946-1965, 1974-1998, 2012-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (19061, 'Canadian Acoustics - Acoustique Canadienne', 7116659, 0.165, 'Q4', 20, 23, 533, 31, 171, '9', '1996-2020', 'Acoustics and Ultrasonics (Q4)'), (19062, 'Canadian Journal of Education', 3802361, 0.165, 'Q4', 37, 42, 2433, 58, 114, '9', '1996-1997, 1999-2002, 2005-2020', 'Education (Q4)'), (19063, 'Chinese General Practice', 10079572, 0.165, 'Q3', 10, 768, 19655, 493, 2225, '1', '2016-2020', 'Family Practice (Q3); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19064, 'Common Knowledge', 961754, 0.165, 'Q1', 12, 24, 808, 23, 91, '2', '2010-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Philosophy (Q2)'), (19065, 'Dictionaries', 21605076, 0.165, 'Q1', 2, 22, 621, 10, 37, '2', '2017-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19066, 'Discontinuity, Nonlinearity, and Complexity', 21646376, 0.165, 'Q4', 13, 48, 1280, 39, 108, '2', '2012-2020', 'Computational Mechanics (Q4); Control and Optimization (Q4); Discrete Mathematics and Combinatorics (Q4); Statistical and Nonlinear Physics (Q4)'), (19067, 'Economic and Environmental Geology', 22887962, 0.165, 'Q4', 3, 36, 1432, 40, 126, '13', '2017-2020', 'Economic Geology (Q4); Environmental Science (miscellaneous) (Q4); Geology (Q4)'), (19068, 'Ethiopian Medical Journal', 141755, 0.165, 'Q4', 27, 1, 16, 54, 155, '67', '1970-2020', 'Medicine (miscellaneous) (Q4)'), (19069, 'European Journal of Mental Health', 17887119, 0.165, 'Q4', 9, 4, 226, 27, 44, '50', '2008-2020', 'Health (social science) (Q4); Psychiatric Mental Health (Q4); Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19070, 'Folia Biologica', 17349168, 0.165, 'Q4', 23, 16, 687, 34, 62, '17', '1953-1955, 1965-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (19071, 'Fuzzy Economic Review', 11360593, 0.165, 'Q4', 9, 4, 125, 15, 22, '12', '2002-2019', 'Economics and Econometrics (Q4)'), (19072, 'Huagong Xuebao/CIESC Journal', 4381157, 0.165, 'Q4', 28, 663, 27169, 1101, 1847, '1', '1985-1987, 1989, 1993-2018', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (19073, 'International Journal of Advanced Mechatronic', 17568412, 0.165, 'Q4', 15, 19, 452, 20, 26, '19', '2011-2013', 'Control and Systems Engineering (Q4); Mechanical Engineering (Q4)'), (19074, 'International Journal of Aquatic Biology', 23225270, 0.165, 'Q4', 3, 35, 1606, 24, 46, '15', '2019-2020', 'Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Oceanography (Q4)'), (19075, 'International Journal of Electronics Letters', 21681732, 0.165, 'Q4', 9, 71, 1536, 120, 143, '3', '2013-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Instrumentation (Q4)'), (19076, 'International Journal of Internet Marketing a', 14775212, 0.165, 'Q4', 19, 23, 1670, 39, 54, '3', '2004-2020', 'Marketing (Q4)'), (19077, 'International Review of Applied Sciences and ', 20620810, 0.165, 'Q3', 5, 36, 899, 48, 81, '50', '2017-2020', 'Engineering (miscellaneous) (Q3); Environmental Engineering (Q4); Information Systems (Q4); Management Science and Operations Research (Q4); Materials Science (miscellaneous) (Q4)'), (19078, 'International Shipbuilding Progress', 15662829, 0.165, 'Q4', 25, 11, 334, 26, 39, '16', '1969-1992, 1994-2020', 'Mechanical Engineering (Q4); Ocean Engineering (Q4)'), (19079, 'Irish Geography', 19394055, 0.165, 'Q4', 20, 11, 621, 16, 31, '3', '1954-1965, 1969-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (19080, 'IZA Journal of Labor and Development', 21939020, 0.165, 'Q3', 13, 0, 0, 6, 4, '3', '2012-2017', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Development (Q4); Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4)'), (19081, 'Journal of law and medicine', 1320159, 0.165, 'Q3', 19, 61, 0, 76, 205, '11', '1994, 2001-2020', 'Law (Q3); Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4); Medicine (miscellaneous) (Q4)'), (19082, 'Journal of Muslim Minority Affairs', 14699591, 0.165, 'Q2', 16, 43, 0, 56, 106, '3', '1996, 2010-2020', 'Cultural Studies (Q2); Anthropology (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (19083, 'Knowledge Management', 23277998, 0.165, 'Q4', 4, 1, 26, 13, 13, '2', '2013-2020', 'Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (19084, 'Logos (Russian Federation)', 8695377, 0.165, 'Q1', 3, 31, 1286, 28, 212, '10', '2016-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Philosophy (Q2)'), (19085, 'Nouvelles Questions Feministes', 2484951, 0.165, 'Q3', 9, 17, 281, 12, 86, '19', '2005-2019', 'Gender Studies (Q3)'), (19086, 'Nursing and Midwifery Studies', 23221674, 0.165, 'Q3', 2, 36, 1117, 21, 32, '4', '2019-2020', 'Advanced and Specialized Nursing (Q3); Maternity and Midwifery (Q4)'), (19087, 'Pertanika Journal of Social Science and Human', 1287702, 0.165, 'Q3', 12, 235, 9023, 408, 1008, '23', '2009-2020', 'Arts and Humanities (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (19088, 'Research in Language', 20834616, 0.165, 'Q2', 9, 3, 128, 25, 62, '5', '2007, 2009-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19089, 'Revista do Instituto Geologico', 21761892, 0.165, 'Q4', 3, 13, 324, 9, 38, '14', '2016-2020', 'Geology (Q4)'), (19090, 'Slovene', 23040785, 0.165, 'Q1', 2, 16, 533, 26, 126, '10', '2016-2019', 'Religious Studies (Q1); Cultural Studies (Q2); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19091, 'Slovenscina 2.0', 23352736, 0.165, 'Q2', 1, 13, 415, 5, 17, '60', '2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19092, 'Teaching Theology and Religion', 13684868, 0.165, 'Q1', 11, 35, 692, 31, 89, '3', '2009-2020', 'Religious Studies (Q1); Education (Q4)'), (19093, 'Textual Practice', 950236, 0.165, 'Q1', 20, 168, 188, 65, 253, '3', '1987-2020', 'Literature and Literary Theory (Q1)'), (19094, 'Veterinary Record Case Reports', 20526121, 0.165, 'Q4', 4, 190, 4429, 89, 362, '3', '2013, 2015-2020', 'Veterinary (miscellaneous) (Q4)'), (19095, 'WSEAS Transactions on Power Systems', 17905060, 0.165, 'Q2', 14, 26, 528, 39, 70, '39', '2010-2014, 2018-2020', 'Cultural Studies (Q2); Anthropology (Q3); Energy (miscellaneous) (Q3); Industrial and Manufacturing Engineering (Q3); Sociology and Political Science (Q3); Urban Studies (Q3); Electrical and Electroni'), (19096, 'Alam Cipta', 18237231, 0.164, 'Q3', 2, 18, 449, 10, 41, '23', '2018-2020', 'Urban Studies (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)'), (19097, 'American Literary History', 14684365, 0.164, 'Q1', 29, 41, 1280, 30, 136, '2', '1989-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2)'), (19098, 'Anuario Iberoamericano de Justicia Constituci', 19895585, 0.164, 'Q3', 3, 9, 539, 15, 41, '12', '2011-2020', 'Law (Q3)'), (19099, 'Australian Aboriginal Studies', 7294352, 0.164, 'Q1', 14, 0, 0, 16, 13, '11', '2008-2018', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); History (Q2); Anthropology (Q3); Sociology and Political Science (Q3)'), (19100, 'Bilgi Dunyasi', 13023217, 0.164, 'Q3', 3, 16, 440, 8, 34, '18', '2013-2019', 'Library and Information Sciences (Q3)'), (19101, 'Chiang Mai Journal of Science', 1252526, 0.164, 'Q4', 20, 110, 2961, 266, 517, '40', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (misc'), (19102, 'Chinese Journal of Applied and Environmental ', 1006687, 0.164, 'Q4', 18, 160, 7137, 258, 569, '1', '2005-2020', 'Agronomy and Crop Science (Q4); Applied Microbiology and Biotechnology (Q4); Genetics (Q4); Pollution (Q4)'), (19103, 'Contemporary Pragmatism', 18758185, 0.164, 'Q2', 7, 17, 588, 28, 76, '16', '2011-2020', 'Philosophy (Q2)'), (19104, 'Creativity', 23540036, 0.164, 'Q1', 3, 17, 833, 19, 34, '17', '2018-2020', 'Visual Arts and Performing Arts (Q1); Arts and Humanities (miscellaneous) (Q3); Education (Q4); Social Psychology (Q4); Statistics, Probability and Uncertainty (Q4)'), (19105, 'Dental Hypotheses', 21558213, 0.164, 'Q4', 10, 24, 617, 35, 59, '4', '2010-2020', 'Dentistry (miscellaneous) (Q4)'), (19106, 'DYNA (Colombia)', 127353, 0.164, 'Q4', 18, 100, 3000, 299, 494, '47', '2008-2020', 'Engineering (miscellaneous) (Q4)'), (19107, 'Geographical Bulletin - Gamma Theta Upsilon', 7313292, 0.164, 'Q4', 9, 11, 317, 13, 23, '2', '1988-2006, 2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (19108, 'Immigrants and Minorities', 2619288, 0.164, 'Q3', 17, 11, 481, 10, 30, '3', '1982-2020', 'Demography (Q3)'), (19109, 'Informacao e Sociedade', 18094783, 0.164, 'Q3', 6, 66, 2490, 49, 165, '14', '2011-2019', 'Communication (Q3); Sociology and Political Science (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (19110, 'International Cardiovascular Research Journal', 22519149, 0.164, 'Q4', 11, 30, 709, 26, 80, '15', '2011-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19111, 'International Journal of Applied Geospatial R', 19479662, 0.164, 'Q4', 10, 19, 969, 26, 43, '2', '2010-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (19112, 'International Journal of Cognitive Informatic', 15573958, 0.164, 'Q4', 24, 24, 740, 39, 61, '2', '2007-2020', 'Artificial Intelligence (Q4); Human-Computer Interaction (Q4); Software (Q4)'), (19113, 'International Journal of Digital Multimedia B', 16877586, 0.164, 'Q3', 17, 4, 111, 23, 27, '2', '2009-2020', 'Communication (Q3); Media Technology (Q3); Electrical and Electronic Engineering (Q4)'), (19114, 'International Journal of Information System M', 19478186, 0.164, 'Q4', 16, 17, 660, 32, 52, '2', '2010-2020', 'Information Systems (Q4); Management of Technology and Innovation (Q4)'), (19115, 'Iranian Journal of Dermatology', 21082, 0.164, 'Q4', 7, 45, 1093, 34, 82, '15', '2011-2020', 'Dermatology (Q4)'), (19116, 'ITE Transactions on Media Technology and Appl', 21867364, 0.164, 'Q3', 12, 34, 744, 65, 71, '6', '2013-2020', 'Media Technology (Q3); Computer Graphics and Computer-Aided Design (Q4); Signal Processing (Q4)'), (19117, 'Japanese Journal of Limnology', 215104, 0.164, 'Q4', 14, 0, 0, 8, 26, '6', '1931, 1934-1944, 1949-1950, 1952, 1955-2014, 2016-2019', 'Aquatic Science (Q4); Ecology (Q4); Water Science and Technology (Q4)'), (19118, 'Journal of Aeronautics, Astronautics and Avia', 19907710, 0.164, 'Q4', 10, 34, 695, 36, 96, '22', '2009-2020', 'Aerospace Engineering (Q4); Space and Planetary Science (Q4)'), (19119, 'Journal of American Studies', 14695154, 0.164, 'Q3', 16, 52, 2270, 34, 152, '3', '1967-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (19120, 'Journal of Biophysics', 16878000, 0.164, 'Q4', 10, 0, 0, 4, 3, '32', '2010-2018', 'Biomedical Engineering (Q4); Biophysics (Q4)'), (19121, 'Journal of Electrical and Electronics Enginee', 18446035, 0.164, 'Q4', 7, 30, 490, 23, 69, '43', '2008-2020', 'Electrical and Electronic Engineering (Q4)'), (19122, 'Journal of Himalayan Earth Sciences', 23056959, 0.164, 'Q4', 7, 17, 490, 32, 70, '34', '2013-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (19123, 'Journal of Naval Architecture and Marine Engi', 20708998, 0.164, 'Q4', 10, 15, 364, 22, 26, '59', '2013-2020', 'Ocean Engineering (Q4)'), (19124, 'Journal of Pediatric Infectious Diseases', 13057707, 0.164, 'Q4', 12, 58, 1435, 44, 130, '16', '2006-2020', 'Infectious Diseases (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (19125, 'Journal of Tropical Meteorology', 10068775, 0.164, 'Q4', 10, 0, 0, 14, 47, '1', '2008-2015, 2017', 'Atmospheric Science (Q4)'), (19126, 'Klimik Dergisi', 13091484, 0.164, 'Q4', 8, 65, 1575, 51, 168, '18', '2010-2020', 'Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (19127, 'Kuangwu Yanshi', 10016872, 0.164, 'Q4', 22, 11, 152, 38, 131, '1', '1994-2019', 'Geology (Q4)'), (19128, 'Medical Journal of Indonesia', 22528083, 0.164, 'Q4', 9, 72, 1578, 67, 143, '21', '1994-2020', 'Medicine (miscellaneous) (Q4)'), (19129, 'Nanoscience and Nanotechnology - Asia', 22106812, 0.164, 'Q4', 11, 91, 3906, 78, 108, '52', '2011-2020', 'Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Nanoscience and Nanotechnology (Q4)'), (19130, 'Nuovo Cimento della Societa Italiana di Fisic', 20374909, 0.164, 'Q4', 25, 67, 1404, 177, 594, '7', '1978-2019', 'Astronomy and Astrophysics (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (19131, 'RA E GA - O Espaco Geografico em Analise', 15164136, 0.164, 'Q4', 7, 9, 311, 40, 125, '14', '2002-2006, 2008-2019', 'Geography, Planning and Development (Q4)'), (19132, 'South African Journal of Obstetrics and Gynae', 23058862, 0.164, 'Q3', 8, 17, 357, 21, 69, '27', '1968, 1970-1972, 1999-2020', 'Obstetrics and Gynecology (Q3)'), (19133, 'Studia Theologica', 12128570, 0.164, 'Q1', 4, 39, 2426, 8, 127, '31', '2005-2020', 'Religious Studies (Q1)'), (19134, 'Travail, Genre et Societes', 12946303, 0.164, 'Q3', 14, 37, 547, 15, 106, '8', '2001-2020', 'Gender Studies (Q3); Sociology and Political Science (Q3); Business and International Management (Q4); Economics and Econometrics (Q4); Organizational Behavior and Human Resource Management (Q4)'), (19135, 'UUM Journal of Legal Studies', 1279483, 0.164, 'Q3', 2, 16, 715, 9, 25, '23', '2018-2020', 'Law (Q3); Sociology and Political Science (Q3)'), (19136, 'Vojenske Zdravotnicke Listy', 3727025, 0.164, 'Q3', 2, 25, 850, 9, 37, '31', '1948-1951, 1961, 1963, 1965, 1973-1992, 2018-2020', 'Emergency Medical Services (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Emergency Medicine (Q4); Immunology and Microbiology (miscellaneous) (Q4); Public Health, Environment'), (19137, 'Zdravookhranenie Rossiiskoi Federatsii / Mini', 44197, 0.164, 'Q4', 3, 14, 321, 10, 38, '10', '1965-1980, 2016, 2019', 'Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19138, 'Acta Mathematica Sinica, Chinese Series', 5831431, 0.163, 'Q4', 10, 57, 1267, 53, 273, '1', '2012-2020', 'Mathematics (miscellaneous) (Q4)'), (19139, 'African Journal of Paediatric Surgery', 9745998, 0.163, 'Q4', 17, 28, 527, 21, 70, '4', '2009-2018', 'Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)'), (19140, 'Al-Masaq: Islam and the Medieval Mediterranea', 1473348, 0.163, 'Q1', 10, 25, 0, 12, 44, '3', '1988-1996, 2002, 2005-2020', 'Religious Studies (Q1); History (Q2)'), (19141, 'Ancient Society', 661619, 0.163, 'Q1', 6, 0, 0, 7, 22, '24', '2011-2013, 2015-2018', 'Classics (Q1); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19142, 'Apuntes', 22231757, 0.163, 'Q3', 1, 15, 695, 1, 16, '68', '2019-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (19143, 'Biotropia', 2156334, 0.163, 'Q4', 9, 28, 989, 45, 72, '21', '2006-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biotechnology (Q4); Ecology (Q4)'), (19144, 'British Columbia Medical Journal', 70556, 0.163, 'Q4', 14, 126, 887, 44, 100, '9', '1973-1975, 2004-2020', 'Medicine (miscellaneous) (Q4)'), (19145, 'CALL-EJ', 21879036, 0.163, 'Q2', 5, 30, 1354, 27, 44, '6', '2013-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Computer Science Applications (Q4)'), (19146, 'Cambridge Law Journal', 14692139, 0.163, 'Q3', 23, 46, 730, 43, 76, '3', '1921-1939, 1941-1998, 2000-2020', 'Law (Q3)'), (19147, 'Canadian Journal of Bioethics', 25614665, 0.163, 'Q2', 3, 57, 2036, 37, 81, '9', '2018-2019', 'Philosophy (Q2); Health Policy (Q4); Health (social science) (Q4)'), (19148, 'Chinese Journal of Cardiology', 2533758, 0.163, 'Q4', 22, 185, 1204, 157, 590, '1', '1979-1999, 2005-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19149, 'Contributions to the History of Concepts', 1874656, 0.163, 'Q2', 10, 12, 606, 12, 30, '2', '2005-2009, 2011-2020', 'History (Q2); Sociology and Political Science (Q3)'), (19150, 'Dongbei Daxue Xuebao/Journal of Northeastern ', 10053026, 0.163, 'Q4', 20, 288, 4113, 317, 1026, '1', '1998-2020', 'Applied Mathematics (Q4); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4)'), (19151, 'Frontiers of Economics in China', 16733444, 0.163, 'Q4', 14, 11, 365, 10, 32, '16', '2006-2014, 2016-2017', 'Economics and Econometrics (Q4)'), (19152, 'Geoingegneria Ambientale e Mineraria', 11219041, 0.163, 'Q4', 9, 11, 407, 56, 120, '7', '2007-2019', 'Environmental Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (19153, 'International Journal of Emergency Mental Hea', 15224821, 0.163, 'Q4', 31, 0, 0, 12, 24, '2', '1999-2017', 'Psychiatry and Mental Health (Q4)'), (19154, 'International Journal of Semantic Computing', 17937108, 0.163, 'Q2', 17, 23, 751, 76, 81, '37', '2007-2020', 'Linguistics and Language (Q2); Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems (Q4); Software (Q4)'), (19155, 'International Journal of Structural Engineeri', 17587328, 0.163, 'Q4', 13, 15, 442, 21, 45, '3', '2009-2014, 2020', 'Civil and Structural Engineering (Q4)'), (19156, 'Issues in Law and Medicine', 87568160, 0.163, 'Q4', 14, 0, 0, 14, 56, '2', '1985-2012, 2014-2019', 'Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4); Medicine (miscellaneous) (Q4)'), (19157, 'Izvestiya of Saratov University, New Series: ', 2542193, 0.163, 'Q4', 2, 32, 867, 13, 30, '10', '2019-2020', 'Engineering (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (19158, 'Journal for the Study of the Old Testament', 14766728, 0.163, 'Q1', 17, 42, 854, 22, 96, '3', '1976-2020', 'Religious Studies (Q1)'), (19159, 'Journal fur Entwicklungspolitik', 2582384, 0.163, 'Q4', 11, 20, 926, 19, 54, '28', '1991-1995, 1997-2020', 'Development (Q4); Geography, Planning and Development (Q4)'), (19160, 'Journal of Diabetes Nursing', 13681109, 0.163, 'Q3', 8, 34, 256, 23, 78, '3', '2006-2009, 2011-2012, 2014-2020', 'Advanced and Specialized Nursing (Q3); Endocrinology, Diabetes and Metabolism (Q4)'), (19161, 'Journal of Eastern Mediterranean Archaeology ', 21663548, 0.163, 'Q2', 3, 23, 1487, 22, 64, '2', '2017-2020', 'Conservation (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19162, 'Journal of Experimental Therapeutics and Onco', 13594117, 0.163, 'Q4', 37, 5, 116, 46, 75, '2', '1996, 2002-2020', 'Cancer Research (Q4); Drug Discovery (Q4); Pharmacology (Q4)'), (19163, 'Journal of Southeast University (English Edit', 10037985, 0.163, 'Q4', 15, 61, 1418, 89, 225, '1', '2003-2020', 'Engineering (miscellaneous) (Q4)'), (19164, 'Mappemonde', 17697298, 0.163, 'Q4', 9, 23, 420, 10, 160, '8', '1996-2001, 2004-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (19165, 'Maritime Affairs', 19466609, 0.163, 'Q4', 5, 18, 0, 10, 49, '3', '2015-2020', 'Ocean Engineering (Q4); Transportation (Q4); Water Science and Technology (Q4)'), (19166, 'Medicina Paliativa', 1134248, 0.163, 'Q4', 13, 34, 749, 31, 110, '12', '2000-2020', 'Anesthesiology and Pain Medicine (Q4); Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)'), (19167, 'Mongolian Journal of Chemistry', 24140082, 0.163, 'Q4', 3, 5, 133, 15, 19, '111', '2017-2019', 'Biochemistry (Q4); Chemistry (miscellaneous) (Q4); Environmental Chemistry (Q4); Materials Chemistry (Q4)'), (19168, 'Mouvement Social', 272671, 0.163, 'Q2', 11, 37, 1616, 14, 92, '8', '1975, 1978-1980, 1983, 1987, 1996-2019', 'History (Q2); Sociology and Political Science (Q3)'), (19169, 'Music Reference Services Quarterly', 10588167, 0.163, 'Q2', 8, 23, 24, 12, 42, '2', '1992-1998, 2001-2002, 2004, 2006-2020', 'Music (Q2); Library and Information Sciences (Q3)'), (19170, 'Oilfield Chemistry', 10004092, 0.163, 'Q4', 12, 129, 2713, 96, 418, '1', '1996-2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4)'), (19171, 'Palaeohispanica', 15785386, 0.163, 'Q2', 1, 29, 2666, 5, 9, '12', '2019', 'History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19172, 'Proceedings of the Institution of Civil Engin', 20439911, 0.163, 'Q4', 10, 18, 305, 26, 47, '3', '2011-2020', 'Safety, Risk, Reliability and Quality (Q4)'), (19173, 'Review of Law and Economics', 15555879, 0.163, 'Q3', 18, 22, 1117, 18, 62, '5', '2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3); Law (Q3)'), (19174, 'Revista Cubana de Educacion Medica Superior', 8642141, 0.163, 'Q4', 12, 78, 1675, 51, 241, '85', '1996-2002, 2006-2007, 2009-2020', 'Education (Q4); Medicine (miscellaneous) (Q4)'), (19175, 'Salud Mental', 1853325, 0.163, 'Q4', 24, 12, 443, 66, 100, '30', '1995-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (19176, 'Sociologija i Prostor', 18465226, 0.163, 'Q3', 8, 19, 761, 20, 39, '58', '2009-2020', 'Sociology and Political Science (Q3); Urban Studies (Q3); Education (Q4); Geography, Planning and Development (Q4)'), (19177, 'Staps', 17821568, 0.163, 'Q3', 9, 29, 1015, 10, 65, '24', '2001-2020', 'Social Sciences (miscellaneous) (Q3); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (19178, 'Studia Slavica et Balcanica Petropolitana', 1995848, 0.163, 'Q2', 3, 12, 417, 17, 72, '10', '2014-2019', 'History (Q2)'), (19179, 'Token', 22995900, 0.163, 'Q2', 2, 0, 0, 1, 20, '17', '2012-2013, 2018-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3)'), (19180, 'US Department of Agriculture, Forest Service ', 8889708, 0.163, 'Q4', 6, 5, 65, 2, 10, '2', '1974, 1978-1997, 1999, 2001, 2004-2006, 2008-2010, 2012-2014, 2016-2020', 'Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (19181, 'Web Intelligence', 24056464, 0.163, 'Q4', 23, 21, 715, 53, 71, '16', '2015-2020', 'Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Software (Q4)'), (19182, 'Zeitschrift fu&amp;#x0308;r die gesamte Versi', 442585, 0.163, 'Q4', 7, 22, 520, 22, 64, '5', '1979-1996, 2008-2020', 'Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (19183, 'Akustika', 18019064, 0.162, 'Q4', 7, 11, 132, 90, 178, '31', '2012-2020', 'Acoustics and Ultrasonics (Q4)'), (19184, 'Alberta Journal of Educational Research', 19231857, 0.162, 'Q4', 21, 19, 958, 45, 75, '9', '1996-2020', 'Education (Q4)'), (19185, 'Ancient Near Eastern Studies', 13784641, 0.162, 'Q1', 5, 0, 0, 4, 22, '24', '2011-2018', 'Classics (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19186, 'Annales de la Fondation Louis de Broglie', 1824295, 0.162, 'Q4', 16, 9, 137, 19, 23, '8', '1996-2014, 2016-2018', 'Physics and Astronomy (miscellaneous) (Q4)'), (19187, 'Athenaeum', 46574, 0.162, 'Q1', 8, 24, 1741, 13, 63, '7', '2002-2015, 2017-2019', 'Classics (Q1); Literature and Literary Theory (Q1); History (Q2)'), (19188, 'Australian Journal of Human Rights', 2573573, 0.162, 'Q2', 12, 14, 865, 26, 57, '11', '1994, 1996-2020', 'History (Q2); Philosophy (Q2); Law (Q3); Sociology and Political Science (Q3)'), (19189, 'Beijing Gongye Daxue Xuebao / Journal of Beij', 2540037, 0.162, 'Q4', 16, 143, 4448, 239, 582, '1', '2005-2020', 'Engineering (miscellaneous) (Q4)'), (19190, 'Biologie Aujourd hui', 21050686, 0.162, 'Q4', 21, 19, 815, 19, 72, '8', '2010-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (19191, 'Cadernos do Laboratorio Xeoloxico de Laxe', 2134497, 0.162, 'Q4', 12, 0, 0, 6, 29, '12', '1986-1999, 2001-2011, 2013, 2015, 2017-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (19192, 'Christian Bioethics', 17444195, 0.162, 'Q1', 10, 15, 548, 9, 58, '3', '1995-2006, 2010-2020', 'Religious Studies (Q1); Philosophy (Q2); Medicine (miscellaneous) (Q4)'), (19193, 'CT y F - Ciencia, Tecnologia y Futuro', 1225383, 0.162, 'Q4', 14, 19, 906, 38, 58, '47', '1996-2020', 'Chemical Engineering (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Fuel Technology (Q4); Geology (Q4); Geophysics (Q4); Renewable Energy, Sustainability and the '), (19194, 'Donald School Journal of Ultrasound in Obstet', 973614, 0.162, 'Q4', 16, 64, 1565, 26, 101, '4', '2011-2020', 'Geriatrics and Gerontology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (19195, 'EEA - Electrotehnica, Electronica, Automatica', 15825175, 0.162, 'Q4', 14, 48, 1292, 91, 231, '43', '2012-2020', 'Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)'), (19196, 'Ensayos Sobre Politica Economica', 1204483, 0.162, 'Q3', 7, 3, 406, 9, 33, '47', '2009-2020', 'Political Science and International Relations (Q3); Economics and Econometrics (Q4)'), (19197, 'Estudios Sociologicos', 1854186, 0.162, 'Q3', 4, 26, 1242, 14, 50, '30', '1984-1985, 1992, 1994-1996, 1998, 2014-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (19198, 'European Journal of Anatomy', 11364890, 0.162, 'Q4', 19, 63, 1843, 63, 131, '12', '1999-2019', 'Anatomy (Q4)'), (19199, 'Finance India', 9703772, 0.162, 'Q4', 1, 71, 2356, 8, 72, '4', '2018-2020', 'Accounting (Q4); Finance (Q4)'), (19200, 'Geodetski List', 16710, 0.162, 'Q4', 7, 12, 335, 20, 41, '58', '1979-1983, 1985, 2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (19201, 'Gephyra', 13093924, 0.162, 'Q1', 3, 23, 1209, 12, 52, '18', '2017-2020', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19202, 'Guofang Keji Daxue Xuebao/Journal of National', 10012486, 0.162, 'Q4', 17, 134, 2699, 181, 504, '1', '1998, 2001-2020', 'Electrical and Electronic Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Modeling and Simulation (Q4)'), (19203, 'Homme', 4394216, 0.162, 'Q3', 15, 0, 0, 18, 80, '8', '1977, 1992, 1996-2019', 'Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (19204, 'IEEJ Transactions on Electronics, Information', 3854221, 0.162, 'Q4', 18, 197, 2904, 105, 693, '6', '1972-1986, 2003-2020', 'Electrical and Electronic Engineering (Q4)'), (19205, 'Incontri Linguistici', 3902412, 0.162, 'Q2', 2, 0, 0, 1, 12, '7', '2011-2013, 2015-2018', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19206, 'Indian Growth and Development Review', 17538254, 0.162, 'Q4', 12, 17, 976, 19, 47, '3', '2008-2020', 'Business and International Management (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4)'), (19207, 'International Journal of the History of Sport', 9523367, 0.162, 'Q2', 20, 85, 0, 104, 301, '3', '1984-1995, 1998-2002, 2010-2020', 'History (Q2); Social Sciences (miscellaneous) (Q3); Sports Science (Q4)'), (19208, 'Internet Archaeology', 13635387, 0.162, 'Q3', 10, 0, 0, 25, 88, '3', '2011, 2013-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19209, 'I Tatti Studies', 3935949, 0.162, 'Q1', 5, 16, 0, 5, 50, '7', '2005, 2007, 2009, 2014-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); History (Q2); Music (Q2)'), (19210, 'Journal of Advanced Pharmacy Education and Re', 22493379, 0.162, 'Q3', 7, 85, 2282, 112, 269, '4', '2015, 2017-2020', 'Pharmaceutical Science (Q3); Pharmacy (Q3); Education (Q4)'), (19211, 'Journal of Agriculture and Environment for In', 22402802, 0.162, 'Q4', 5, 5, 412, 37, 51, '7', '2016-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Development (Q4); Environmental Science (miscellaneous) (Q4)'), (19212, 'Journal of Educational and Social Research', 2239978, 0.162, 'Q3', 5, 115, 4007, 73, 115, '17', '2018-2020', 'Social Sciences (miscellaneous) (Q3); Education (Q4)'), (19213, 'Journal of the Acoustical Society of Korea', 12254428, 0.162, 'Q4', 2, 75, 1142, 9, 85, '13', '2019-2020', 'Acoustics and Ultrasonics (Q4); Applied Mathematics (Q4); Instrumentation (Q4); Signal Processing (Q4); Speech and Hearing (Q4)'), (19214, 'Nanjing Hangkong Hangtian Daxue Xuebao/Journa', 10052615, 0.162, 'Q4', 18, 120, 2772, 145, 358, '1', '1994, 2001-2020', 'Aerospace Engineering (Q4)'), (19215, 'Neohelicon', 15882810, 0.162, 'Q3', 8, 60, 2031, 24, 132, '16', '1973-2002, 2006-2020', 'Arts and Humanities (miscellaneous) (Q3); Law (Q3); Social Sciences (miscellaneous) (Q3)'), (19216, 'Notizie di Politeia', 11282401, 0.162, 'Q2', 5, 40, 874, 11, 287, '7', '2001-2002, 2004, 2015-2020', 'Philosophy (Q2)'), (19217, 'Orbit (Cambridge)', 23986786, 0.162, 'Q1', 2, 3, 188, 8, 22, '3', '2017-2020', 'Literature and Literary Theory (Q1)'), (19218, 'Profilakticheskaya Meditsina', 23054948, 0.162, 'Q4', 6, 149, 3594, 98, 292, '10', '2016-2020', 'Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19219, 'Representations', 7346018, 0.162, 'Q2', 33, 4, 394, 31, 75, '2', '1983-2020', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Gender Studies (Q3); Sociology and Political Science (Q3)'), (19220, 'Rupkatha Journal on Interdisciplinary Studies', 9752935, 0.162, 'Q3', 6, 152, 3517, 30, 220, '4', '2009-2020', 'Arts and Humanities (miscellaneous) (Q3)'), (19221, 'Scientific Review Engineering and Environment', 17329353, 0.162, 'Q4', 5, 35, 800, 64, 164, '17', '2013-2020', 'Building and Construction (Q4); Civil and Structural Engineering (Q4); Earth-Surface Processes (Q4); Environmental Science (miscellaneous) (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (19222, 'Shuidonglixue Yanjiu yu Jinzhan/Chinese Journ', 10004874, 0.162, 'Q4', 15, 49, 891, 89, 287, '1', '2008-2019', 'Applied Mathematics (Q4); Computational Mechanics (Q4); Fluid Flow and Transfer Processes (Q4)'), (19223, 'Socijalna Ekologija', 13300113, 0.162, 'Q4', 9, 18, 623, 18, 36, '58', '1994-2020', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (19224, 'Somatechnics', 20440146, 0.162, 'Q3', 2, 23, 834, 15, 28, '3', '2018-2020', 'Arts and Humanities (miscellaneous) (Q3); Law (Q3); Sociology and Political Science (Q3); Anatomy (Q4); Human-Computer Interaction (Q4); Human Factors and Ergonomics (Q4)'), (19225, 'Standort', 1743635, 0.162, 'Q4', 5, 30, 534, 12, 70, '5', '2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (19226, 'Tidsskrift for den Norske Laegeforening', 292001, 0.162, 'Q4', 29, 809, 4134, 227, 1441, '33', '1946-2020', 'Medicine (miscellaneous) (Q4)'), (19227, 'Transinformacao', 1033786, 0.162, 'Q2', 8, 25, 870, 36, 85, '14', '2010-2020', 'Museology (Q2); Communication (Q3); Library and Information Sciences (Q3); Information Systems (Q4)'), (19228, 'Vegetos', 9704078, 0.162, 'Q4', 9, 84, 3620, 113, 359, '4', '2008-2020', 'Plant Science (Q4)'), (19229, 'Vie et Milieu', 2408759, 0.162, 'Q4', 35, 1, 74, 25, 57, '8', '1980-1987, 1989-2019', 'Aquatic Science (Q4); Ecology (Q4)'), (19230, 'Zhurnal Nevrologii i Psikhiatrii imeni S.S. K', 444588, 0.162, 'Q4', 16, 338, 10292, 531, 1167, '10', '1952-2020', 'Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (19231, 'Al-Jami ah', 2338557, 0.161, 'Q1', 6, 12, 637, 19, 47, '21', '2010, 2014-2020', 'Religious Studies (Q1); Arts and Humanities (miscellaneous) (Q3)'), (19232, 'American Journal of Biochemistry and Biotechn', 15533468, 0.161, 'Q4', 31, 61, 2186, 50, 89, '2', '2007-2020', 'Biochemistry (Q4); Biotechnology (Q4)'), (19233, 'Anuario de Estudios Medievales', 19884230, 0.161, 'Q2', 8, 29, 1704, 19, 80, '12', '1965-1966, 1968, 1996-1997, 2000-2020', 'History (Q2)'), (19234, 'Austral: Brazilian Journal of Strategy and In', 22386262, 0.161, 'Q3', 5, 32, 1239, 8, 107, '14', '2012-2020', 'Political Science and International Relations (Q3)'), (19235, 'Austrobaileya', 1554131, 0.161, 'Q4', 5, 14, 142, 9, 40, '11', '2009-2013, 2015-2017', 'Plant Science (Q4)'), (19236, 'BELGEO', 13772368, 0.161, 'Q4', 13, 43, 1893, 33, 92, '24', '2002-2019', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (19237, 'Brazilian Journal of Veterinary Pathology', 19830246, 0.161, 'Q4', 10, 30, 716, 20, 65, '14', '2010-2020', 'Veterinary (miscellaneous) (Q4)'), (19238, 'Cailiao Daobao/Materials Review', 1005023, 0.161, 'Q4', 9, 688, 27512, 922, 2018, '1', '2016-2020', 'Materials Science (miscellaneous) (Q4)'), (19239, 'Calitatea Vietii', 10180389, 0.161, 'Q3', 5, 20, 629, 11, 49, '43', '2012-2020', 'Sociology and Political Science (Q3); Health (social science) (Q4); Life-span and Life-course Studies (Q4)'), (19240, 'Church, Communication and Culture', 23753242, 0.161, 'Q1', 5, 25, 878, 23, 50, '2', '2016-2020', 'Religious Studies (Q1); Communication (Q3)'), (19241, 'Civitas', 19847289, 0.161, 'Q2', 2, 41, 1135, 21, 76, '14', '2018-2019', 'Cultural Studies (Q2); Anthropology (Q3); Sociology and Political Science (Q3); Development (Q4)'), (19242, 'Cuadernos de Desarrollo Rural', 1221450, 0.161, 'Q4', 9, 11, 641, 9, 36, '47', '2008-2019', 'Agronomy and Crop Science (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4)'), (19243, 'Das Argument', 41157, 0.161, 'Q2', 4, 33, 779, 13, 152, '5', '1979, 2011, 2013-2019', 'Philosophy (Q2); Social Sciences (miscellaneous) (Q3)'), (19244, 'E-Informatica Software Engineering Journal', 18977979, 0.161, 'Q4', 8, 5, 281, 29, 25, '17', '2012-2020', 'Software (Q4)'), (19245, 'Etnograficeskoe Obozrenie', 8695415, 0.161, 'Q2', 4, 65, 1921, 29, 197, '10', '2011-2020', 'Cultural Studies (Q2); Anthropology (Q3)'), (19246, 'Fortschritte der Neurologie Psychiatrie', 14393522, 0.161, 'Q4', 32, 161, 3184, 133, 220, '5', '1955-1963, 1973-2020', 'Medicine (miscellaneous) (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (19247, 'Fujitsu Scientific and Technical Journal', 162523, 0.161, 'Q4', 21, 15, 132, 100, 161, '6', '1968, 1970-2020', 'Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Human-Computer Interaction (Q4)'), (19248, 'Geographical Review of Japan', 13479555, 0.161, 'Q4', 9, 5, 123, 11, 43, '6', '2003-2009, 2011-2020', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (19249, 'Gosudarstvo, Religiia, Tserkov v Rossii i za', 20737211, 0.161, 'Q1', 5, 47, 1703, 32, 154, '10', '2012-2020', 'Religious Studies (Q1); Sociology and Political Science (Q3)'), (19250, 'Greece and Rome', 173835, 0.161, 'Q1', 19, 19, 460, 10, 29, '3', '1931-2020', 'Classics (Q1); Arts and Humanities (miscellaneous) (Q3)'), (19251, 'Ingenierie des Systemes d Information', 16331311, 0.161, 'Q4', 8, 96, 2433, 232, 155, '8', '2012-2020', 'Information Systems (Q4)'), (19252, 'Instrumentation Mesure Metrologie', 16314670, 0.161, 'Q4', 4, 57, 1411, 92, 135, '3', '2011-2014, 2016-2020', 'Engineering (miscellaneous) (Q4); Instrumentation (Q4)'), (19253, 'International Journal of Data Warehousing and', 15483924, 0.161, 'Q4', 23, 26, 847, 32, 48, '2', '2005-2020', 'Hardware and Architecture (Q4); Software (Q4)'), (19254, 'International Journal of Mining and Geo-Engin', 23456949, 0.161, 'Q4', 2, 25, 746, 15, 25, '15', '2019-2020', 'Economic Geology (Q4); Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (19255, 'International Journal of Nonlinear Analysis a', 20086822, 0.161, 'Q4', 3, 87, 2177, 33, 76, '15', '2018-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (19256, 'International Journal of Public Administratio', 23344539, 0.161, 'Q3', 2, 0, 0, 10, 16, '2', '2019', 'Library and Information Sciences (Q3); Computer Science Applications (Q4); Public Administration (Q4)'), (19257, 'Irish Journal of Earth Sciences', 7901763, 0.161, 'Q4', 11, 5, 319, 9, 18, '42', '1978, 1984-1987, 1989-2012, 2014-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (19258, 'Israel Journal of Entomology', 751243, 0.161, 'Q4', 10, 15, 336, 9, 28, '36', '1996-1999, 2004-2005', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (19259, 'Jordanian Journal of Computers and Informatio', 24151076, 0.161, 'Q4', 3, 19, 752, 20, 20, '62', '2019-2020', 'Computer Science (miscellaneous) (Q4)'), (19260, 'Journal of Advanced Microscopy Research', 21567573, 0.161, 'Q4', 11, 0, 0, 52, 98, '2', '2010-2018', 'Instrumentation (Q4); Materials Science (miscellaneous) (Q4)'), (19261, 'Journal of Cellular and Molecular Anesthesia', 24765120, 0.161, 'Q4', 6, 58, 1294, 30, 83, '15', '2016-2020', 'Anesthesiology and Pain Medicine (Q4); Pharmacology (medical) (Q4)'), (19262, 'Journal of Comparative Family Studies', 472328, 0.161, 'Q3', 39, 29, 1128, 26, 65, '9', '1973, 1976-2020', 'Anthropology (Q3); Sociology and Political Science (Q3); Social Psychology (Q4)'), (19263, 'Journal of Computer Science', 15493636, 0.161, 'Q4', 28, 155, 4748, 248, 342, '2', '2008-2020', 'Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Software (Q4)'), (19264, 'Journal of International Logistics and Trade', 25087592, 0.161, 'Q4', 3, 16, 644, 9, 21, '13', '2018-2020', 'Economics and Econometrics (Q4); Management Information Systems (Q4); Management Science and Operations Research (Q4); Marketing (Q4); Transportation (Q4)'), (19265, 'Journal of Maritime Law and Commerce', 222410, 0.161, 'Q3', 10, 5, 284, 11, 43, '16', '1979, 1996-2019', 'Law (Q3); Political Science and International Relations (Q3)'), (19266, 'Journal of the Korean Academy of Fundamentals', 22871802, 0.161, 'Q4', 1, 38, 1097, 10, 29, '13', '2019-2020', 'Nursing (miscellaneous) (Q4)'), (19267, 'Keikinzoku/Journal of Japan Institute of Ligh', 4515994, 0.161, 'Q4', 24, 44, 933, 37, 170, '6', '1952-2020', 'Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (19268, 'Kronika', 234923, 0.161, 'Q2', 3, 51, 1620, 10, 96, '60', '1975-1976, 1978-1987, 1999-2001, 2016-2020', 'Cultural Studies (Q2); History (Q2)'), (19269, 'Labour/Le Travail', 7003862, 0.161, 'Q2', 15, 20, 516, 15, 47, '9', '1978, 1985, 1993-2019', 'History (Q2); Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4)'), (19270, 'Louisiana Law Review', 246859, 0.161, 'Q3', 13, 26, 4592, 17, 63, '2', '1974-1976, 1979-1980, 1983-1985, 1991-1993, 1997-2019', 'Law (Q3)'), (19271, 'Metallurgical and Materials Engineering', 22178961, 0.161, 'Q4', 2, 31, 954, 10, 23, '55', '2019-2020', 'Mechanical Engineering (Q4); Metals and Alloys (Q4)'), (19272, 'Moshi Shibie yu Rengong Zhineng/Pattern Recog', 10036059, 0.161, 'Q4', 22, 112, 3424, 281, 352, '1', '2001-2020', 'Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Software (Q4)'), (19273, 'Pestology', 9703012, 0.161, 'Q4', 12, 37, 1014, 21, 159, '4', '1996-2001, 2003-2019', 'Agronomy and Crop Science (Q4)'), (19274, 'Psicologia Clinica', 1035665, 0.161, 'Q4', 9, 30, 920, 13, 80, '14', '2007-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (19275, 'Rational Pharmacotherapy in Cardiology', 18196446, 0.161, 'Q4', 9, 100, 2985, 150, 343, '10', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q4); Pharmacology (medical) (Q4)'), (19276, 'Reproductive and Developmental Medicine', 20962924, 0.161, 'Q3', 3, 35, 1255, 42, 115, '4', '2017-2020', 'Obstetrics and Gynecology (Q3); Reproductive Medicine (Q4)'), (19277, 'Revista de Economia Institucional', 1245996, 0.161, 'Q3', 9, 38, 1233, 21, 68, '47', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (19278, 'Rivista Italiana di Politiche Pubbliche', 17221137, 0.161, 'Q3', 5, 12, 522, 19, 49, '7', '2015-2019', 'Sociology and Political Science (Q3); Public Administration (Q4)'), (19279, 'Safundi', 17533171, 0.161, 'Q2', 11, 39, 1555, 26, 66, '3', '2000-2020', 'Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q3)'), (19280, 'Scandinavian Psychologist', 18945570, 0.161, 'Q4', 8, 0, 0, 18, 45, '33', '2014-2019', 'Psychology (miscellaneous) (Q4)'), (19281, 'Soils and Rocks', 19809743, 0.161, 'Q4', 10, 0, 0, 17, 49, '14', '2007-2018', 'Geotechnical Engineering and Engineering Geology (Q4)'), (19282, 'South-Western Journal of Horticulture, Biolog', 20687958, 0.161, 'Q4', 4, 5, 149, 19, 30, '43', '2016-2020', 'Agronomy and Crop Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4); Soil Science (Q4)'), (19283, 'Sovremennye Tehnologii v Medicine', 20764243, 0.161, 'Q4', 11, 81, 3462, 139, 267, '10', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (19284, 'Transactions on Education', 15320545, 0.161, 'Q4', 3, 15, 354, 12, 31, '2', '2018-2020', 'Education (Q4); Management Information Systems (Q4); Management Science and Operations Research (Q4)'), (19285, 'World Review of Nutrition and Dietetics', 16623975, 0.161, 'Q4', 37, 37, 857, 22, 50, '19', '1959-1961, 1964-1966, 1968-2001, 2003-2005, 2007-2020', 'Food Science (Q4); Nutrition and Dietetics (Q4)'), (19286, 'Zhongguo ying yong sheng li xue za zhi = Zhon', 10006834, 0.161, 'Q4', 9, 131, 0, 113, 321, '1', '1997, 2000-2020', 'Medicine (miscellaneous) (Q4)'), (19287, 'Zhonghua wei chang wai ke za zhi = Chinese jo', 16710274, 0.161, 'Q4', 13, 233, 0, 190, 613, '1', '2005-2020', 'Medicine (miscellaneous) (Q4)'), (19288, 'Acta Scientiarum - Biological Sciences', 16799283, 0.16, 'Q4', 23, 60, 2329, 108, 180, '14', '2003-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (19289, 'Aportes', 23864850, 0.16, 'Q2', 2, 1, 44, 4, 54, '12', '2017-2020', 'History (Q2)'), (19290, 'Applied Environmental Research', 22870741, 0.16, 'Q4', 2, 24, 938, 11, 24, '40', '2019-2020', 'Environmental Science (miscellaneous) (Q4)'), (19291, 'Chaucer Review, The', 15284204, 0.16, 'Q1', 12, 26, 1577, 12, 69, '2', '1979, 2002-2019', 'Literature and Literary Theory (Q1)'), (19292, 'Chemija', 2357216, 0.16, 'Q4', 15, 33, 1201, 47, 85, '69', '2008-2020', 'Chemistry (miscellaneous) (Q4)'), (19293, 'Croatian International Relations Review', 13311182, 0.16, 'Q3', 5, 0, 0, 22, 51, '58', '2013-2019', 'Political Science and International Relations (Q3)'), (19294, 'Current Treatment Options in Pediatrics', 21986088, 0.16, 'Q4', 4, 30, 1645, 18, 40, '19', '2015-2017, 2019-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (19295, 'CyberGeo', 12783366, 0.16, 'Q3', 16, 35, 1389, 46, 122, '8', '1997-1998, 2000-2019', 'Social Sciences (miscellaneous) (Q3)'), (19296, 'East Central Europe', 943037, 0.16, 'Q2', 9, 17, 728, 9, 47, '16', '1975-1983, 1985-1987, 1989-1990, 1992-1993, 1999-2006, 2009-2019', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (19297, 'Economists Voice', 15533832, 0.16, 'Q4', 15, 17, 492, 15, 35, '5', '2006-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19298, 'Ekologiya Cheloveka (Human Ecology)', 17280869, 0.16, 'Q4', 12, 100, 2510, 104, 322, '10', '2012-2020', 'Ecology (Q4); Health (social science) (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19299, 'European Data Protection Law Review', 2364284, 0.16, 'Q3', 3, 72, 129, 20, 56, '5', '2019-2020', 'Law (Q3)'), (19300, 'Fisioterapia', 15782107, 0.16, 'Q4', 10, 50, 1209, 35, 119, '12', '2005-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (19301, 'Generos', 20143613, 0.16, 'Q3', 2, 12, 622, 16, 25, '12', '2018-2020', 'Gender Studies (Q3); Education (Q4)'), (19302, 'Giornale Italiano di Endodonzia', 19711425, 0.16, 'Q4', 10, 32, 924, 19, 46, '7', '1990-1991, 2011-2020', 'Dentistry (miscellaneous) (Q4)'), (19303, 'Historia Regional', 3298213, 0.16, 'Q2', 1, 23, 706, 3, 40, '2', '2018-2019', 'History (Q2); Social Sciences (miscellaneous) (Q3)'), (19304, 'Holocaust Studies', 17504902, 0.16, 'Q2', 6, 28, 1470, 28, 71, '2', '2005-2020', 'Cultural Studies (Q2); History (Q2); Communication (Q3); Sociology and Political Science (Q3)'), (19305, 'Indonesian Biomedical Journal', 23559179, 0.16, 'Q4', 4, 48, 1547, 49, 105, '21', '2017-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (19306, 'Infectio', 1239392, 0.16, 'Q4', 9, 92, 4186, 65, 116, '47', '2012-2020', 'Infectious Diseases (Q4); Microbiology (medical) (Q4); Pharmacology (medical) (Q4)'), (19307, 'Informatik-Spektrum', 1706012, 0.16, 'Q4', 18, 83, 989, 87, 130, '5', '1985, 1987, 1999, 2005-2020', 'Computer Science Applications (Q4); Information Systems (Q4)'), (19308, 'Institutions and Economies', 22321640, 0.16, 'Q4', 9, 23, 1100, 34, 62, '23', '2012-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19309, 'International Journal of Dynamical Systems an', 17523591, 0.16, 'Q4', 14, 34, 970, 31, 73, '3', '2008-2009, 2011-2012, 2018, 2020', 'Control and Optimization (Q4); Discrete Mathematics and Combinatorics (Q4); Engineering (miscellaneous) (Q4)'), (19310, 'International Journal of Engineering Systems ', 17559766, 0.16, 'Q4', 14, 11, 305, 41, 61, '19', '2011-2014', 'Engineering (miscellaneous) (Q4); Modeling and Simulation (Q4)'), (19311, 'International Journal of Global Environmental', 14666650, 0.16, 'Q4', 22, 0, 0, 18, 47, '3', '2001-2014', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (19312, 'International Journal of Information Technolo', 19355718, 0.16, 'Q4', 11, 8, 325, 21, 30, '2', '2008-2020', 'Computer Science (miscellaneous) (Q4)'), (19313, 'International Journal of Intangible Heritage', 19753586, 0.16, 'Q2', 7, 2, 38, 10, 24, '13', '2011-2018, 2020', 'Conservation (Q2); Cultural Studies (Q2); Museology (Q2)'), (19314, 'International Journal of Mechanics', 19984448, 0.16, 'Q4', 20, 30, 830, 59, 86, '2', '2009-2020', 'Computational Mechanics (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (19315, 'Israel Journal of Veterinary Medicine', 23048859, 0.16, 'Q4', 11, 33, 836, 27, 89, '36', '2007-2020', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (19316, 'Jornal Brasileiro de Psiquiatria', 19820208, 0.16, 'Q4', 22, 41, 1206, 55, 94, '14', '1964-1977, 1982-2020', 'Psychiatry and Mental Health (Q4)'), (19317, 'Journal Europeen des Systemes Automatises', 12696935, 0.16, 'Q3', 20, 107, 2693, 102, 138, '8', '1996-2014, 2016-2020', 'Industrial and Manufacturing Engineering (Q3); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)'), (19318, 'Journal of Healthcare Quality Research', 26036479, 0.16, 'Q4', 17, 84, 1354, 62, 135, '12', '2018-2020', 'Health Policy (Q4)'), (19319, 'Journal of King Abdulaziz University, Islamic', 73831018, 0.16, 'Q3', 9, 39, 1204, 34, 107, '29', '2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q3)'), (19320, 'Journal of the European Pentecostal Theologic', 22247963, 0.16, 'Q1', 2, 12, 386, 6, 27, '3', '2018-2020', 'Religious Studies (Q1)'), (19321, 'Journal of the Geographical Institute Jovan C', 3507599, 0.16, 'Q4', 2, 24, 888, 18, 25, '55', '2019-2020', 'Geography, Planning and Development (Q4); Geology (Q4)'), (19322, 'Malaysian Journal of Public Health Medicine', 16750306, 0.16, 'Q4', 9, 133, 3591, 96, 189, '23', '2007, 2012-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (19323, 'Mathematics Enthusiast', 15513440, 0.16, 'Q4', 9, 29, 1432, 29, 85, '2', '2013-2020', 'Mathematics (miscellaneous) (Q4)'), (19324, 'Medicina e Morale', 22825940, 0.16, 'Q2', 1, 28, 995, 5, 22, '7', '2019-2020', 'Philosophy (Q2); Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4); Medicine (miscellaneous) (Q4)'), (19325, 'Nan fang yi ke da xue xue bao = Journal of So', 16734254, 0.16, 'Q4', 20, 279, 0, 243, 726, '1', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (19326, 'Nova Religio', 15418480, 0.16, 'Q2', 10, 0, 0, 18, 63, '2', '2009-2019', 'Religious Studies (Q2)'), (19327, 'Polski Merkuriusz Lekarski', 14269686, 0.16, 'Q4', 20, 96, 909, 113, 306, '17', '1996-2020', 'Medicine (miscellaneous) (Q4)'), (19328, 'Problemy Osobo Opasnykh Infektsii', 2658719, 0.16, 'Q4', 3, 76, 1527, 28, 53, '10', '2019-2020', 'Epidemiology (Q4); Immunology (Q4); Infectious Diseases (Q4); Microbiology (Q4); Microbiology (medical) (Q4)'), (19329, 'Proceedings on Applied Botany, Genetics and B', 22278834, 0.16, 'Q4', 2, 84, 2038, 25, 74, '10', '2019-2020', 'Biochemistry (Q4); Biotechnology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Molecular Biology (Q4); Physiology (Q4); Plant Science (Q4)'), (19330, 'Revista de la Asociacion Espanola de Especial', 11326255, 0.16, 'Q4', 4, 33, 670, 9, 64, '12', '1999-2002, 2005-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (19331, 'Revista de Metodos Cuantitativos para la Econ', 1886516, 0.16, 'Q3', 9, 36, 1462, 24, 87, '12', '2006-2020', 'Business, Management and Accounting (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q3)'), (19332, 'Revista Facultad de Ingenieria', 1206230, 0.16, 'Q4', 12, 54, 1672, 72, 117, '47', '2008-2021', 'Engineering (miscellaneous) (Q4)'), (19333, 'Scientific Papers of the University of Pardub', 18048048, 0.16, 'Q4', 6, 51, 2039, 71, 172, '31', '2014-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19334, 'Scottish Medical Journal', 369330, 0.16, 'Q4', 26, 34, 729, 47, 92, '3', '1956-2020', 'Medicine (miscellaneous) (Q4)'), (19335, 'Shedet', 25369954, 0.16, 'Q2', 1, 18, 796, 5, 14, '32', '2019', 'Conservation (Q2); Museology (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19336, 'Social Work and Social Sciences Review', 17466105, 0.16, 'Q3', 9, 12, 714, 17, 43, '3', '1997-1998, 2000, 2005, 2007-2008, 2010-2015, 2017-2020', 'Sociology and Political Science (Q3); Health (social science) (Q4); Social Work (Q4)'), (19337, 'South Eastern European Journal of Public Heal', 21975248, 0.16, 'Q4', 2, 22, 600, 6, 26, '5', '2018-2020', 'Health Policy (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19338, 'Utilitas Mathematica', 3153681, 0.16, 'Q4', 29, 21, 372, 100, 296, '9', '1996-2014, 2016-2019', 'Applied Mathematics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (19339, 'Veritas', 7189273, 0.16, 'Q1', 3, 30, 1046, 8, 66, '45', '2016-2020', 'Religious Studies (Q1); Philosophy (Q2)'), (19340, 'Vetus Testamentum', 15685330, 0.16, 'Q1', 17, 47, 1741, 21, 122, '16', '1951, 1954-1956, 1959-1961, 1963, 1965-1967, 1969-2020', 'Literature and Literary Theory (Q1); Religious Studies (Q1); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19341, 'Zeitschrift fur Angewandte Linguistik', 14339889, 0.16, 'Q2', 3, 13, 663, 13, 31, '5', '2016-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19342, 'African Arts', 19372108, 0.159, 'Q1', 10, 32, 927, 19, 67, '2', '2002-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1)'), (19343, 'Annals of Applied Sport Science', 24764981, 0.159, 'Q3', 4, 60, 2028, 60, 121, '15', '2017-2020', 'Social Sciences (miscellaneous) (Q3); Applied Psychology (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Tourism, Leisure and Hospitality Manageme'), (19344, 'Antipoda', 19005407, 0.159, 'Q2', 6, 26, 1070, 25, 82, '47', '2013-2020', 'Cultural Studies (Q2); Anthropology (Q3); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19345, 'Anuario Colombiano de Historia Social y de la', 1202456, 0.159, 'Q2', 4, 59, 1912, 22, 57, '47', '2013-2020', 'Cultural Studies (Q2); History (Q2)'), (19346, 'Arab Studies Quarterly', 2713519, 0.159, 'Q2', 2, 10, 598, 7, 31, '3', '1979, 1981, 2001, 2018-2020', 'Cultural Studies (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (19347, 'Archeologia Polski', 38180, 0.159, 'Q3', 2, 8, 658, 3, 16, '17', '2012-2016, 2018-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19348, 'Canadian Journal of History', 84107, 0.159, 'Q2', 8, 8, 545, 9, 39, '9', '1979, 1999-2019', 'History (Q2)'), (19349, 'Ceska a Slovenska Farmacie', 12107816, 0.159, 'Q3', 16, 31, 1090, 42, 84, '31', '1994-2020', 'Pharmaceutical Science (Q3)'), (19350, 'Contemporary Music Review', 7494467, 0.159, 'Q2', 16, 40, 1586, 27, 98, '3', '1984, 1987-1989, 1991-2020', 'Music (Q2)'), (19351, 'Diabetologie und Stoffwechsel', 18619002, 0.159, 'Q4', 14, 213, 1669, 105, 205, '5', '2006-2020', 'Endocrinology, Diabetes and Metabolism (Q4)'), (19352, 'Digithum', 15752275, 0.159, 'Q3', 3, 17, 768, 23, 47, '12', '2015-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (19353, 'Fronteiras', 22388869, 0.159, 'Q3', 5, 75, 3091, 54, 165, '14', '2015-2020', 'Social Sciences (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q4)'), (19354, 'Genes and Cells', 23131829, 0.159, 'Q4', 6, 42, 1705, 33, 122, '10', '2014-2020', 'Biomedical Engineering (Q4); Biotechnology (Q4); Cell Biology (Q4); Molecular Biology (Q4); Surgery (Q4); Transplantation (Q4)'), (19355, 'Geofisica International', 167169, 0.159, 'Q4', 26, 15, 524, 23, 42, '30', '1975, 1979, 1984-2020', 'Energy (miscellaneous) (Q4); Geophysics (Q4)'), (19356, 'Geopolitics Quarterly', 17354331, 0.159, 'Q3', 4, 30, 1325, 24, 82, '15', '2014-2020', 'Political Science and International Relations (Q3); Geography, Planning and Development (Q4)'), (19357, 'Intellectual History Review', 17496977, 0.159, 'Q2', 10, 54, 3465, 25, 83, '3', '2010-2020', 'History (Q2); History and Philosophy of Science (Q3)'), (19358, 'International Journal of Agricultural and Env', 19473206, 0.159, 'Q4', 14, 19, 593, 42, 55, '2', '2010-2020', 'Information Systems (Q4)'), (19359, 'International Journal of Aviation, Aeronautic', 23746793, 0.159, 'Q4', 8, 44, 1286, 63, 125, '2', '2014-2020', 'Aerospace Engineering (Q4); Civil and Structural Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)'), (19360, 'International Journal of Computer Networks an', 9752293, 0.159, 'Q4', 8, 43, 1245, 97, 136, '4', '2016-2020', 'Computer Networks and Communications (Q4); Hardware and Architecture (Q4)'), (19361, 'International Journal of Public Theology', 15697320, 0.159, 'Q2', 5, 36, 1200, 12, 69, '16', '2013-2020', 'Religious Studies (Q2); Sociology and Political Science (Q3)'), (19362, 'Journal for Cultural Research', 14797585, 0.159, 'Q2', 17, 24, 980, 38, 84, '3', '2005-2020', 'Cultural Studies (Q2); Anthropology (Q3)'), (19363, 'Journal of Modern Literature', 15291464, 0.159, 'Q1', 5, 29, 1057, 11, 115, '2', '2013-2019', 'Literature and Literary Theory (Q1)'), (19364, 'Journal of Policy History', 8980306, 0.159, 'Q3', 20, 16, 1374, 26, 72, '3', '1989-2020', 'Sociology and Political Science (Q3); Public Administration (Q4)'), (19365, 'Journal of Radiotherapy in Practice', 14603969, 0.159, 'Q4', 14, 156, 4119, 78, 170, '3', '1999-2000, 2002-2020', 'Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (19366, 'Journal of Research on Christian Education', 19344945, 0.159, 'Q2', 10, 19, 740, 11, 46, '3', '1992-1995, 1997-2020', 'Religious Studies (Q2); Education (Q4)'), (19367, 'Journal of the Canadian Health Libraries Asso', 17086892, 0.159, 'Q3', 1, 13, 111, 3, 14, '9', '2018-2020', 'Library and Information Sciences (Q3); Medicine (miscellaneous) (Q4)'), (19368, 'Journal of the Egyptian Women s Dermatologic ', 20902565, 0.159, 'Q4', 4, 32, 665, 25, 88, '2', '2015-2020', 'Dermatology (Q4)'), (19369, 'Kardiologiya', 24125660, 0.159, 'Q4', 16, 202, 5470, 304, 638, '10', '1961-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19370, 'Literature and Medicine', 2789671, 0.159, 'Q1', 18, 23, 575, 26, 60, '2', '1986-2009, 2011-2019', 'Literature and Literary Theory (Q1); Health (social science) (Q4)'), (19371, 'Malaysian Journal of Microbiology', 22317538, 0.159, 'Q4', 16, 59, 2325, 95, 195, '23', '2010-2020', 'Applied Microbiology and Biotechnology (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (19372, 'Noise and Vibration Worldwide', 9574565, 0.159, 'Q4', 14, 24, 502, 58, 56, '2', '1989-1992, 1994-2020', 'Acoustics and Ultrasonics (Q4); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (19373, 'Pneuma', 2720965, 0.159, 'Q2', 12, 11, 477, 11, 71, '16', '1979-1981, 1985-1986, 1988-1991, 1993-2020', 'Religious Studies (Q2)'), (19374, 'Point of Care', 15330303, 0.159, 'Q4', 13, 18, 445, 27, 73, '2', '2002-2008, 2016-2020', 'Nursing (miscellaneous) (Q4)'), (19375, 'Polish Journal of Natural Sciences', 16439953, 0.159, 'Q4', 10, 8, 286, 59, 139, '17', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Ecology (Q4)'), (19376, 'Pollution Research', 2578050, 0.159, 'Q4', 23, 52, 1226, 148, 299, '4', '1997-2020', 'Pollution (Q4); Water Science and Technology (Q4)'), (19377, 'Renaissance Quarterly', 19350236, 0.159, 'Q1', 19, 22, 2220, 18, 59, '2', '1971-1972, 1976-1979, 1982, 1984-1985, 1987-1991, 1993-1994, 1996, 1999-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); History (Q2)'), (19378, 'Reti Medievali Rivista', 15932214, 0.159, 'Q2', 5, 30, 2689, 4, 83, '7', '2011-2019', 'History (Q2)'), (19379, 'Revista Brasileira de Ciencias do Esporte', 1013289, 0.159, 'Q4', 8, 0, 0, 70, 200, '14', '2013-2019', 'Health (social science) (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (19380, 'Revista de Indias', 348341, 0.159, 'Q2', 13, 23, 1124, 14, 73, '12', '1980, 1983, 1985-1987, 1996-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (19381, 'Revista Galega de Economia', 11322799, 0.159, 'Q4', 6, 32, 1628, 27, 77, '12', '2001, 2003-2020', 'Economics and Econometrics (Q4)'), (19382, 'Revue d Histoire Moderne et Contemporaine', 488003, 0.159, 'Q2', 12, 30, 1176, 19, 81, '8', '1970-1971, 1974, 1976-1987, 1990, 1999-2020', 'History (Q2)'), (19383, 'Samuel Beckett Today - Aujourd hui', 9273131, 0.159, 'Q1', 7, 23, 663, 5, 128, '16', '2001-2019', 'Literature and Literary Theory (Q1)'), (19384, 'Sante Mentale au Quebec', 17083923, 0.159, 'Q4', 11, 21, 810, 24, 74, '9', '1990-1998, 2004-2020', 'Clinical Psychology (Q4); Medicine (miscellaneous) (Q4); Psychiatric Mental Health (Q4); Psychiatry and Mental Health (Q4)'), (19385, 'Sententiae', 20756461, 0.159, 'Q2', 2, 23, 604, 4, 55, '44', '2015-2019', 'Philosophy (Q2)'), (19386, 'Seventeenth Century', 268117, 0.159, 'Q2', 15, 50, 3204, 8, 83, '3', '1986-2020', 'Cultural Studies (Q2); History (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (19387, 'Social Medicine', 15577112, 0.159, 'Q4', 6, 21, 432, 9, 29, '2', '2012-2020', 'Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19388, 'Symposion', 23926260, 0.159, 'Q2', 3, 17, 406, 16, 42, '43', '2014-2020', 'Philosophy (Q2); Sociology and Political Science (Q3)'), (19389, 'Thai Journal of Veterinary Medicine', 1256491, 0.159, 'Q4', 12, 37, 1215, 61, 161, '40', '2008-2020', 'Veterinary (miscellaneous) (Q4)'), (19390, 'Tocqueville Review/La Revue Tocqueville, The', 730479, 0.159, 'Q2', 6, 25, 1061, 20, 84, '9', '2009-2020', 'History (Q2); Sociology and Political Science (Q3)'), (19391, 'Undersea and Hyperbaric Medicine', 10662936, 0.159, 'Q4', 42, 67, 0, 99, 223, '2', '1993-2020', 'Medicine (miscellaneous) (Q4); Physiology (medical) (Q4); Pulmonary and Respiratory Medicine (Q4)'), (19392, 'USDA Forest Service - Research Note PNW-RN', 8877262, 0.159, 'Q4', 4, 1, 12, 4, 6, '2', '1998-2010, 2012-2015, 2017, 2019-2020', 'Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (19393, 'World Affairs', 438200, 0.159, 'Q3', 14, 18, 913, 36, 47, '2', '1988-1990, 1992-2020', 'Social Sciences (miscellaneous) (Q3)'), (19394, 'Acta Veterinaria Eurasia', 2618639, 0.158, 'Q4', 2, 20, 667, 11, 35, '18', '2018-2020', 'Veterinary (miscellaneous) (Q4)'), (19395, 'AMHA - Acta Medico-Historica Adriatica', 13344366, 0.158, 'Q4', 8, 22, 747, 20, 71, '58', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (19396, 'Annales de Chimie: Science des Materiaux', 1519107, 0.158, 'Q4', 29, 58, 1593, 77, 114, '8', '1947-1948, 1973-1974, 1977, 1982, 1984, 1996-2013, 2015-2020', 'Materials Chemistry (Q4)'), (19397, 'Anuario de Estudios Americanos', 19884273, 0.158, 'Q2', 5, 23, 1007, 21, 72, '12', '1986, 1999, 2001, 2010-2020', 'Cultural Studies (Q2)'), (19398, 'Aries', 15700593, 0.158, 'Q2', 10, 16, 801, 14, 26, '16', '2001-2020', 'History (Q2); Philosophy (Q2); Religious Studies (Q2)'), (19399, 'Atlantis', 2106124, 0.158, 'Q1', 10, 23, 1224, 16, 57, '12', '2000-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19400, 'British Journal of Community Justice', 14750279, 0.158, 'Q3', 10, 8, 409, 3, 13, '3', '2010-2016, 2019-2020', 'Law (Q3)'), (19401, 'Buffalo Law Review', 239356, 0.158, 'Q3', 17, 26, 3311, 18, 61, '2', '1973-1976, 1978-1979, 1982, 1990-1994, 1996, 1999-2000, 2002-2019', 'Law (Q3)'), (19402, 'Canadian Slavonic Papers', 85006, 0.158, 'Q1', 12, 32, 1249, 13, 60, '9', '1977-1979, 1996-2020', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); History (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2); Philosophy (Q2); Sociology'), (19403, 'Cardiovascular Therapy and Prevention (Russia', 17288800, 0.158, 'Q4', 16, 120, 3265, 146, 281, '10', '2011-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19404, 'Caucasus Survey', 23761199, 0.158, 'Q2', 8, 20, 745, 24, 41, '2', '2013-2020', 'Cultural Studies (Q2); History (Q2); Anthropology (Q3); Demography (Q3); Sociology and Political Science (Q3); Geography, Planning and Development (Q4)'), (19405, 'Chemical Biology Letters', 23479825, 0.158, 'Q4', 10, 21, 1633, 35, 21, '4', '2014-2020', 'Biochemistry (Q4); Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Molecular Biology (Q4)'), (19406, 'Chinese Journal of Luminescence', 10007032, 0.158, 'Q4', 16, 180, 6223, 362, 680, '1', '2008-2020', 'Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Radiation (Q4)'), (19407, 'Clinical Neurology', 18820654, 0.158, 'Q4', 20, 156, 1854, 119, 365, '6', '1972-2020', 'Neurology (clinical) (Q4)'), (19408, 'Current Pediatric Research', 9719032, 0.158, 'Q4', 9, 68, 634, 85, 189, '4', '1998-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (19409, 'Deutsche Sprache', 3409341, 0.158, 'Q2', 7, 20, 789, 7, 41, '5', '2002-2011, 2017-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Social Sciences (miscellaneous) (Q3); Psychology (miscellaneous) (Q4)'), (19410, 'Diagnostic and Therapeutic Endoscopy', 10290516, 0.158, 'Q4', 24, 0, 0, 5, 6, '2', '1994-2001, 2009-2018', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (19411, 'Early Science and Medicine', 13837427, 0.158, 'Q2', 20, 29, 1427, 25, 55, '16', '1996-2020', 'History (Q2); History and Philosophy of Science (Q3); Multidisciplinary (Q3); Medicine (miscellaneous) (Q4)'), (19412, 'Geographia Cassoviensis', 13376748, 0.158, 'Q4', 4, 7, 292, 25, 42, '53', '2016-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (19413, 'Halteres', 9731555, 0.158, 'Q4', 4, 8, 238, 8, 23, '4', '2016-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4)'), (19414, 'Houille Blanche', 186368, 0.158, 'Q4', 16, 62, 1285, 31, 135, '8', '1902-1914, 1917-1930, 1933-1936, 1946-1963, 1969-2020', 'Water Science and Technology (Q4)'), (19415, 'Hungarian Journal of Legal Studies', 24985473, 0.158, 'Q3', 3, 0, 0, 9, 68, '50', '2016-2019', 'Law (Q3)'), (19416, 'International Journal for Technology in Mathe', 17442710, 0.158, 'Q4', 8, 0, 0, 26, 37, '3', '2012-2018', 'Computational Theory and Mathematics (Q4); Computer Science Applications (Q4); Education (Q4)'), (19417, 'International Journal of Advanced Intelligenc', 17550386, 0.158, 'Q4', 12, 80, 2095, 116, 162, '3', '2008-2014, 2018', 'Applied Mathematics (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (19418, 'International Journal of Agricultural Technol', 26300192, 0.158, 'Q4', 3, 125, 3276, 85, 280, '40', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (19419, 'International Journal of Applied Metaheuristi', 19478283, 0.158, 'Q4', 4, 15, 515, 37, 44, '2', '2016, 2018-2020', 'Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Decision Sciences (miscellaneous) (Q4); Modeling and Simul'), (19420, 'International Journal of Autonomous and Adapt', 17548640, 0.158, 'Q4', 13, 28, 688, 37, 61, '3', '2008-2014', 'Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)'), (19421, 'International Journal of Business Analytics', 23344555, 0.158, 'Q4', 9, 20, 865, 35, 57, '2', '2014-2020', 'Business and International Management (Q4); Strategy and Management (Q4)'), (19422, 'Journal of Applied Social Science', 19370245, 0.158, 'Q3', 12, 16, 650, 15, 31, '2', '2003-2020', 'Social Sciences (miscellaneous) (Q3)'), (19423, 'Journal of Architecture', 13602365, 0.158, 'Q1', 17, 47, 0, 50, 155, '3', '1996-2020', 'Visual Arts and Performing Arts (Q1); Architecture (Q3)'), (19424, 'Journal of Genocide Research', 14623528, 0.158, 'Q2', 26, 42, 0, 52, 62, '3', '1999-2020', 'History (Q2); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (19425, 'Journal of Pediatric and Neonatal Individuali', 22810692, 0.158, 'Q4', 6, 42, 1435, 36, 92, '7', '2016-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (19426, 'Journal of Technology, Management, and Applie', 21660123, 0.158, 'Q4', 19, 9, 260, 13, 11, '2', '2012-2020', 'Engineering (miscellaneous) (Q4)'), (19427, 'Journal of the Geodetic Society of Japan', 2185517, 0.158, 'Q4', 14, 2, 12, 4, 31, '6', '1955-1989, 1991-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (19428, 'Journal of the Philosophy of History', 18722636, 0.158, 'Q2', 12, 21, 1014, 19, 62, '16', '2007-2020', 'History (Q2); History and Philosophy of Science (Q3)'), (19429, 'Kerygma und Dogma', 230707, 0.158, 'Q2', 2, 21, 713, 6, 47, '5', '2011-2020', 'Religious Studies (Q2)'), (19430, 'Laboratoriums Medizin', 14390477, 0.158, 'Q4', 16, 0, 0, 21, 44, '5', '1977-2018', 'Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Medical Laboratory Technology (Q4)'), (19431, 'Literature Compass', 17414113, 0.158, 'Q1', 4, 41, 1865, 42, 118, '3', '2017-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2)'), (19432, 'Periodica polytechnica Electrical engineering', 20645279, 0.158, 'Q4', 13, 43, 1195, 91, 90, '50', '2012-2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Information Systems (Q4); Signal Processing (Q4); Software (Q4)'), (19433, 'Perspectivas em Ciencia da Informacao', 19815344, 0.158, 'Q2', 9, 42, 1443, 35, 154, '14', '2008-2020', 'Museology (Q2); Communication (Q3); Library and Information Sciences (Q3); Information Systems (Q4)'), (19434, 'Philosophia (Philippines)', 22441883, 0.158, 'Q2', 3, 22, 549, 2, 27, '63', '2007-2020', 'Philosophy (Q2)'), (19435, 'Praxis der Kinderpsychologie und Kinderpsychi', 327034, 0.158, 'Q4', 20, 76, 1443, 52, 173, '5', '1961-2020', 'Developmental and Educational Psychology (Q4); Psychiatry and Mental Health (Q4)'), (19436, 'Privredna Kretanja i Ekonomska Politika', 1330187, 0.158, 'Q4', 5, 0, 0, 4, 13, '58', '2008-2019', 'Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19437, 'Productions Animales', 11525428, 0.158, 'Q4', 31, 0, 0, 15, 35, '8', '1996-2017', 'Animal Science and Zoology (Q4)'), (19438, 'Przeglad Epidemiologiczny', 332100, 0.158, 'Q4', 18, 48, 0, 61, 159, '17', '1953-2019', 'Medicine (miscellaneous) (Q4)'), (19439, 'Psiholoska Obzorja', 13181874, 0.158, 'Q4', 3, 15, 634, 7, 29, '60', '2015-2019', 'Psychology (miscellaneous) (Q4)'), (19440, 'Review of Network Economics', 14469022, 0.158, 'Q4', 16, 8, 354, 15, 30, '5', '2010-2020', 'Economics and Econometrics (Q4)'), (19441, 'Revista Brasileira de Economia', 347140, 0.158, 'Q4', 12, 25, 578, 19, 66, '14', '2001-2002, 2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19442, 'Revista Cubana de Obstetricia y Ginecologia', 138600, 0.158, 'Q3', 9, 41, 955, 32, 161, '85', '1996-2002, 2006-2019', 'Obstetrics and Gynecology (Q3)'), (19443, 'Revue d Economie Industrielle', 1543229, 0.158, 'Q4', 12, 19, 1180, 19, 57, '24', '2008-2020', 'Economics and Econometrics (Q4); Industrial Relations (Q4)'), (19444, 'Roczniki Psychologiczne', 15077888, 0.158, 'Q4', 6, 20, 1183, 22, 51, '17', '2014-2020', 'Psychology (miscellaneous) (Q4)'), (19445, 'Russian Journal of Forest Science', 241148, 0.158, 'Q4', 4, 13, 409, 42, 127, '10', '2017-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)'), (19446, 'Scientia Medica', 19806108, 0.158, 'Q4', 7, 24, 703, 40, 137, '14', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (19447, 'Turkish World Mathematical Society Journal of', 21461147, 0.158, 'Q4', 5, 102, 1832, 55, 96, '18', '2018-2020', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Control and Optimization (Q4); Discrete Mathematics and Combinatorics (Q4); Mathematical Physics (Q4); Numerical Analysis (Q4); Statistics and'), (19448, 'Ulster Medical Journal', 416193, 0.158, 'Q4', 29, 43, 386, 65, 100, '3', '1946-1947, 1950-2020', 'Medicine (miscellaneous) (Q4)'), (19449, 'World Journal of Traditional Chinese Medicine', 23118571, 0.158, 'Q3', 7, 55, 2714, 28, 75, '4', '2017-2020', 'Complementary and Alternative Medicine (Q3)'), (19450, 'WSEAS Transactions on Business and Economics', 11099526, 0.158, 'Q4', 16, 112, 3514, 126, 169, '39', '2009-2015, 2017-2020', 'Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)'), (19451, 'Xibei Gongye Daxue Xuebao/Journal of Northwes', 10002758, 0.158, 'Q4', 17, 168, 2908, 210, 504, '1', '1986-2020', 'Engineering (miscellaneous) (Q4)'), (19452, 'Zhurnal Voprosy Neirokhirurgii Imeni N.N. Bur', 428817, 0.158, 'Q4', 10, 74, 2364, 76, 242, '10', '1945-2020', 'Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4)'), (19453, 'Araucaria', 15756823, 0.157, 'Q2', 5, 56, 1784, 28, 163, '12', '2012-2020', 'History (Q2); Philosophy (Q2); Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (19454, 'AUS', 7187262, 0.157, 'Q3', 5, 21, 479, 16, 69, '45', '2012-2020', 'Architecture (Q3); Urban Studies (Q3)'), (19455, 'Canadian Studies in Population', 3801489, 0.157, 'Q2', 8, 21, 572, 19, 40, '9', '1975, 1978, 2011-2020', 'History (Q2); Demography (Q4)'), (19456, 'Caspian Journal of Environmental Sciences', 17353033, 0.157, 'Q4', 2, 44, 1428, 13, 31, '15', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Environmental Science (miscellaneous) (Q4)'), (19457, 'Clinical and Experimental Obstetrics and Gyne', 3906663, 0.157, 'Q4', 33, 203, 4340, 127, 626, '9', '1974-2020', 'Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (19458, 'Cuadernos de Economia (Spain)', 2100266, 0.157, 'Q4', 7, 17, 696, 33, 63, '12', '1978, 2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19459, 'Cultural Politics', 17432197, 0.157, 'Q2', 11, 21, 1129, 26, 52, '2', '2012-2020', 'Cultural Studies (Q2); Communication (Q3); Sociology and Political Science (Q3)'), (19460, 'Current Enzyme Inhibition', 15734080, 0.157, 'Q4', 17, 24, 1475, 28, 56, '52', '2006-2020', 'Biochemistry (Q4); Drug Discovery (Q4); Molecular Medicine (Q4)'), (19461, 'Dalian Haishi Daxue Xuebao/Journal of Dalian ', 10067736, 0.157, 'Q4', 10, 60, 1116, 77, 221, '1', '2007-2020', 'Engineering (miscellaneous) (Q4); Ocean Engineering (Q4)'), (19462, 'Ethical Human Psychology and Psychiatry', 15594343, 0.157, 'Q4', 15, 10, 340, 14, 24, '2', '2004-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (19463, 'EurAsian Journal of BioSciences', 13079867, 0.157, 'Q4', 11, 400, 11240, 282, 413, '18', '2013-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (19464, 'Guangxue Jishu/Optical Technique', 10021582, 0.157, 'Q4', 18, 122, 2233, 124, 355, '1', '1992-2020', 'Atomic and Molecular Physics, and Optics (Q4)'), (19465, 'History of Education', 14645130, 0.157, 'Q3', 18, 47, 0, 66, 129, '3', '1972-1997, 1999-2001, 2005-2020', 'History and Philosophy of Science (Q3); Education (Q4)'), (19466, 'Immunology, Endocrine and Metabolic Agents in', 18715222, 0.157, 'Q4', 17, 0, 0, 17, 23, '52', '2006-2018', 'Endocrinology, Diabetes and Metabolism (Q4); Immunology and Allergy (Q4); Pharmacology (Q4)'), (19467, 'Indonesian Journal on Geoscience', 23559306, 0.157, 'Q4', 6, 16, 531, 18, 47, '21', '2014-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (19468, 'Insight Turkey', 1302177, 0.157, 'Q3', 20, 15, 335, 47, 100, '18', '2009-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (19469, 'International Journal of Enterprise Network M', 17481252, 0.157, 'Q4', 10, 21, 770, 57, 78, '3', '2007, 2009-2012, 2014', 'Business and International Management (Q4); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4)'), (19470, 'International Journal of Knowledge and Learni', 17411017, 0.157, 'Q4', 22, 17, 622, 18, 25, '19', '2005-2007, 2012', 'Education (Q4)'), (19471, 'Journal of Computational Methods in Sciences ', 14727978, 0.157, 'Q4', 17, 107, 2294, 113, 300, '16', '2001-2020', 'Computational Mathematics (Q4); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4)'), (19472, 'Journal of Degraded and Mining Lands Manageme', 25022458, 0.157, 'Q4', 2, 58, 1790, 22, 46, '21', '2019-2020', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Pollution (Q4)'), (19473, 'Journal of Design', 16068327, 0.157, 'Q1', 3, 18, 819, 13, 36, '1', '2015-2020', 'Visual Arts and Performing Arts (Q1)'), (19474, 'Journal of Imaging Science and Technology', 19433522, 0.157, 'Q4', 42, 63, 1738, 85, 155, '2', '1993-2020', 'Atomic and Molecular Physics, and Optics (Q4); Chemistry (miscellaneous) (Q4); Computer Science Applications (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (19475, 'Journal of Intelligence History', 16161262, 0.157, 'Q2', 4, 22, 0, 13, 35, '3', '2006-2008, 2013, 2015-2020', 'History (Q2); Political Science and International Relations (Q3)'), (19476, 'Journal of Media and Religion', 15348423, 0.157, 'Q2', 10, 12, 596, 11, 35, '2', '2010-2020', 'Religious Studies (Q2); Communication (Q3)'), (19477, 'Journal of Modern Greek Studies', 10863265, 0.157, 'Q2', 14, 23, 1180, 12, 44, '2', '2002-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (19478, 'Journal of Physical Studies', 10274642, 0.157, 'Q4', 12, 48, 1170, 39, 98, '44', '2004-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (19479, 'Journal of Punjab Studies', 9715223, 0.157, 'Q2', 6, 0, 0, 5, 25, '2', '1999, 2001-2002, 2006-2018', 'Cultural Studies (Q2); History (Q2); Political Science and International Relations (Q3); Development (Q4); Geography, Planning and Development (Q4)'), (19480, 'Journal of Radiology Nursing', 15460843, 0.157, 'Q3', 10, 82, 1549, 55, 138, '2', '2004-2020', 'Advanced and Specialized Nursing (Q3); Radiological and Ultrasound Technology (Q4)'), (19481, 'Journal of Visual Culture', 14704129, 0.157, 'Q1', 25, 27, 746, 18, 55, '3', '2002-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q3)'), (19482, 'Korea Observer', 233919, 0.157, 'Q3', 12, 15, 635, 22, 76, '13', '2007-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (19483, 'Ljetopis Socijalnog Rada', 18465412, 0.157, 'Q3', 8, 16, 666, 19, 52, '58', '2008-2020', 'Sociology and Political Science (Q3); Developmental and Educational Psychology (Q4); Education (Q4); Social Work (Q4)'), (19484, 'Medecine/Sciences', 7670974, 0.157, 'Q4', 27, 268, 40, 200, 703, '8', '1990-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (19485, 'Medicina Historica', 25322370, 0.157, 'Q2', 4, 16, 404, 26, 69, '7', '2017-2020', 'History (Q2); History and Philosophy of Science (Q3); Medicine (miscellaneous) (Q4)'), (19486, 'Melanges de l Institut Dominicaine des Etudes', 5751330, 0.157, 'Q2', 3, 16, 695, 6, 26, '24', '2012, 2014-2015, 2017-2018', 'Cultural Studies (Q2); History (Q2)'), (19487, 'Narodna Umjetnost', 5472504, 0.157, 'Q2', 7, 22, 877, 12, 51, '58', '1981, 2009-2020', 'Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (19488, 'Nevrologiya, Neiropsikhiatriya, Psikhosomatik', 20742711, 0.157, 'Q4', 9, 110, 3803, 258, 291, '10', '2016-2020', 'Clinical Psychology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (19489, 'Pediatric Traumatology, Orthopaedics and Reco', 23093994, 0.157, 'Q4', 4, 48, 1187, 33, 133, '10', '2013-2020', 'Orthopedics and Sports Medicine (Q4); Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)'), (19490, 'Professioni infermieristiche', 330205, 0.157, 'Q4', 11, 27, 0, 32, 84, '7', '1970-2020', 'Medicine (miscellaneous) (Q4)'), (19491, 'Reliable Computing', 13853139, 0.157, 'Q4', 33, 0, 0, 7, 22, '16', '1995-2008, 2010-2018', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Software (Q4)'), (19492, 'Revista Cientifica de la Sociedad Espanola de', 20135246, 0.157, 'Q4', 4, 29, 534, 16, 30, '12', '2010-2020', 'Nursing (miscellaneous) (Q4)'), (19493, 'Revista Cubana de Salud Publica', 8643466, 0.157, 'Q4', 13, 71, 1703, 73, 151, '85', '1996-2002, 2006-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (19494, 'Revista de Dialectologia y Tradiciones Popula', 19888457, 0.157, 'Q2', 9, 17, 777, 30, 81, '12', '1969, 1971, 1996-2019', 'Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19495, 'Revista de Gestao Social e Ambiental', 1981982, 0.157, 'Q4', 4, 14, 589, 15, 51, '14', '2013-2019', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (19496, 'Revista General de Derecho Administrativo', 16969650, 0.157, 'Q3', 4, 72, 1207, 22, 140, '12', '2012-2020', 'Law (Q3)'), (19497, 'Rivista di Studi sulla Sostenibilita', 22397221, 0.157, 'Q3', 12, 39, 1203, 39, 77, '7', '2011-2019', 'Law (Q3); Development (Q4); Economics and Econometrics (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4); Strategy and Management (Q4)'), (19498, 'Science-Fiction Studies', 917729, 0.157, 'Q1', 14, 0, 0, 18, 70, '2', '2002-2019', 'Literature and Literary Theory (Q1)'), (19499, 'Seoul Journal of Economics', 12250279, 0.157, 'Q4', 4, 23, 653, 13, 52, '13', '2015-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19500, 'Society and Economy', 1588970, 0.157, 'Q3', 11, 23, 985, 42, 95, '50', '2007-2020', 'Sociology and Political Science (Q3); Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Industrial Relations (Q4); Public Administration (Q4); Strat'), (19501, 'South African Journal of Surgery', 382361, 0.157, 'Q4', 22, 68, 1047, 64, 170, '27', '1965-2020', 'Surgery (Q4)'), (19502, 'Sports Orthopaedics and Traumatology', 949328, 0.157, 'Q4', 10, 48, 1075, 32, 104, '5', '2001-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (19503, 'Statistika', 18048765, 0.157, 'Q4', 6, 30, 693, 42, 90, '31', '2015-2019', 'Economics and Econometrics (Q4); Statistics, Probability and Uncertainty (Q4)'), (19504, 'Territorios', 1238418, 0.157, 'Q3', 1, 32, 1160, 2, 21, '47', '2019-2020', 'Urban Studies (Q3); Geography, Planning and Development (Q4)'), (19505, 'Travail Humain', 411868, 0.157, 'Q4', 21, 7, 426, 26, 43, '8', '1947-1949, 1972-1993, 1996-2020', 'Applied Psychology (Q4); Human Factors and Ergonomics (Q4); Industrial Relations (Q4); Psychology (miscellaneous) (Q4)'), (19506, 'Tuberkuloz ve Toraks', 4941373, 0.157, 'Q4', 18, 62, 1159, 64, 133, '18', '2003-2020', 'Critical Care and Intensive Care Medicine (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)'), (19507, 'University of Pennsylvania Journal of Interna', 19380283, 0.157, 'Q3', 9, 10, 1709, 30, 65, '2', '2014-2020', 'Law (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19508, 'WSEAS Transactions on Environment and Develop', 17905079, 0.157, 'Q4', 19, 97, 2466, 104, 190, '39', '2007-2015, 2017-2020', 'Development (Q4); Ecological Modeling (Q4); Energy (miscellaneous) (Q4); Environmental Chemistry (Q4); Environmental Engineering (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning a'), (19509, 'Zhonghua xue ye xue za zhi = Zhonghua xueyexu', 2532727, 0.157, 'Q4', 14, 225, 0, 169, 729, '1', '1997-2020', 'Medicine (miscellaneous) (Q4)'), (19510, 'Annales de Pathologie', 2426498, 0.156, 'Q4', 25, 91, 1302, 60, 225, '8', '1981-2020', 'Pathology and Forensic Medicine (Q4)'), (19511, 'Antarctic Record', 857289, 0.156, 'Q4', 9, 6, 124, 4, 13, '6', '1979-1986, 1990-2020', 'Aquatic Science (Q4); Earth and Planetary Sciences (miscellaneous) (Q4)'), (19512, 'Arkhiv Patologii', 23091266, 0.156, 'Q4', 10, 67, 1096, 75, 188, '10', '1950-2020', 'Pathology and Forensic Medicine (Q4)'), (19513, 'Bulletin of Educational Research', 10288708, 0.156, 'Q4', 2, 14, 696, 5, 35, '22', '2017-2020', 'Education (Q4)'), (19514, 'Bulletin of Glaciological Research', 13453807, 0.156, 'Q4', 9, 1, 26, 5, 12, '6', '2009-2020', 'Earth-Surface Processes (Q4)'), (19515, 'Chemical Product and Process Modeling', 19342659, 0.156, 'Q4', 16, 62, 1753, 79, 91, '5', '2006-2020', 'Chemical Engineering (miscellaneous) (Q4); Modeling and Simulation (Q4)'), (19516, 'Civil Engineering and Architecture', 23321091, 0.156, 'Q3', 4, 145, 3687, 45, 71, '2', '2018-2020', 'Architecture (Q3); Civil and Structural Engineering (Q4)'), (19517, 'Crkva u Svijetu', 3524000, 0.156, 'Q2', 3, 22, 836, 7, 100, '58', '2011-2020', 'Religious Studies (Q2)'), (19518, 'Dickens Quarterly', 7425473, 0.156, 'Q1', 5, 21, 533, 10, 55, '2', '2002-2020', 'Literature and Literary Theory (Q1)'), (19519, 'Disaster Advances', 22784543, 0.156, 'Q4', 16, 101, 2845, 68, 201, '4', '2009-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Safety, Risk, Reliability and Quality (Q4)'), (19520, 'EC Tax Review', 9282750, 0.156, 'Q3', 4, 40, 1156, 13, 50, '16', '2018-2020', 'Law (Q3); Accounting (Q4)'), (19521, 'Environment and History', 9673407, 0.156, 'Q2', 25, 26, 175, 26, 65, '3', '1995-2020', 'History (Q2); Arts and Humanities (miscellaneous) (Q3); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (19522, 'Etudes Philosophiques', 142166, 0.156, 'Q2', 4, 33, 1075, 9, 85, '8', '2001-2020', 'Philosophy (Q2)'), (19523, 'Europhysics News', 5317479, 0.156, 'Q4', 16, 29, 234, 25, 59, '8', '2006-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (19524, 'Gao Xiao Hua Xue Gong Cheng Xue Bao/Journal o', 10039015, 0.156, 'Q4', 17, 194, 4824, 220, 567, '1', '1990-1994, 2000-2020', 'Chemical Engineering (miscellaneous) (Q4)'), (19525, 'Giornale Italiano di Psicologia', 3905349, 0.156, 'Q4', 15, 65, 1447, 57, 241, '7', '2001-2002, 2011-2020', 'Psychology (miscellaneous) (Q4)'), (19526, 'HIV and AIDS Review', 17301270, 0.156, 'Q4', 8, 33, 875, 32, 113, '17', '2005-2020', 'Epidemiology (Q4); Infectious Diseases (Q4)'), (19527, 'Huazhong Keji Daxue Xuebao (Ziran Kexue Ban)/', 16714512, 0.156, 'Q4', 16, 264, 4296, 355, 833, '1', '2002-2020', 'Computer Science (miscellaneous) (Q4)'), (19528, 'Innovar', 1215051, 0.156, 'Q3', 11, 32, 1736, 58, 129, '47', '2008-2020', 'Sociology and Political Science (Q3); Accounting (Q4); Marketing (Q4); Public Administration (Q4); Strategy and Management (Q4)'), (19529, 'International Journal of Circuits, Systems an', 19984464, 0.156, 'Q4', 13, 146, 3478, 146, 270, '2', '2011-2020', 'Electrical and Electronic Engineering (Q4); Signal Processing (Q4)'), (19530, 'International Journal of Intelligent Systems ', 17408865, 0.156, 'Q4', 17, 34, 1037, 60, 83, '19', '2005-2009, 2011-2014, 2020', 'Computer Science (miscellaneous) (Q4)'), (19531, 'International Journal of Materials and Produc', 17415209, 0.156, 'Q3', 29, 30, 926, 72, 125, '3', '1986-2014, 2018, 2020', 'Industrial and Manufacturing Engineering (Q3); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Safety, Risk, Reliability and Quality (Q4)'), (19532, 'Iranian Heart Journal', 17357306, 0.156, 'Q4', 4, 59, 1354, 28, 127, '15', '2011-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19533, 'Israel Law Review', 20479336, 0.156, 'Q3', 19, 14, 756, 19, 46, '3', '1974-1975, 1977-1981, 1983, 1992-2002, 2004-2020', 'Law (Q3)'), (19534, 'Journal for Vascular Ultrasound', 15443175, 0.156, 'Q4', 12, 26, 281, 14, 70, '2', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (19535, 'Journal of Engineering Technology', 7479964, 0.156, 'Q4', 8, 9, 182, 10, 26, '2', '1985, 1989-1991, 1996-2020', 'Engineering (miscellaneous) (Q4)'), (19536, 'Journal of Environmental Science and Manageme', 1191144, 0.156, 'Q4', 9, 34, 1426, 26, 73, '63', '2011-2020', 'Environmental Science (miscellaneous) (Q4)'), (19537, 'Journal of Semiconductor Technology and Scien', 15981657, 0.156, 'Q4', 19, 70, 1221, 130, 288, '13', '2005, 2009-2020', 'Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (19538, 'Journal of Strategic Security', 19440472, 0.156, 'Q3', 8, 39, 1691, 36, 46, '2', '2014-2020', 'Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Safety Research (Q4)'), (19539, 'Majlesi Journal of Electrical Engineering', 2345377, 0.156, 'Q4', 7, 28, 726, 76, 113, '15', '2015-2020', 'Electrical and Electronic Engineering (Q4); Instrumentation (Q4)'), (19540, 'Monatsschrift fur Kinderheilkunde', 14330474, 0.156, 'Q4', 21, 215, 3957, 111, 345, '5', '1952-2020', 'Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)'), (19541, 'Narodopisna Revue', 8628351, 0.156, 'Q2', 3, 20, 677, 6, 86, '31', '2016-2020', 'Cultural Studies (Q2); Anthropology (Q3)'), (19542, 'New Review of Information Networking', 13614576, 0.156, 'Q4', 14, 4, 131, 22, 23, '3', '1995-2008, 2010-2020', 'Computer Networks and Communications (Q4); Education (Q4); Human-Computer Interaction (Q4); Information Systems (Q4)'), (19543, 'Oftalmologija. Vostochnaja Evropa', 24143642, 0.156, 'Q4', 2, 57, 1059, 6, 181, '75', '2017-2020', 'Ophthalmology (Q4)'), (19544, 'Oral Surgery', 17522471, 0.156, 'Q4', 11, 106, 3141, 75, 159, '3', '2008-2020', 'Oral Surgery (Q4); Surgery (Q4)'), (19545, 'Orbis', 304387, 0.156, 'Q3', 26, 43, 0, 46, 118, '16', '1986, 1989, 1993-2020', 'Sociology and Political Science (Q3); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4)'), (19546, 'Osterreichische Zeitschrift fur Soziologie', 10110070, 0.156, 'Q3', 9, 32, 1728, 40, 103, '19', '2001-2020', 'Social Sciences (miscellaneous) (Q3)'), (19547, 'Pakistan Journal of Engineering and Applied S', 19951302, 0.156, 'Q4', 3, 10, 251, 14, 28, '34', '2017-2020', 'Chemical Engineering (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Environmental Engineering (Q4); Materials Science (miscellaneous) (Q4); Mathematics '), (19548, 'Partial Answers', 15653668, 0.156, 'Q1', 11, 16, 598, 15, 61, '2', '2003-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Philosophy (Q2)'), (19549, 'Praktische Metallographie/Practical Metallogr', 32678, 0.156, 'Q4', 17, 55, 826, 38, 139, '5', '1969-2020', 'Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (19550, 'Soviet and Post Soviet Review', 18763324, 0.156, 'Q2', 7, 14, 635, 14, 38, '16', '1974, 1976-1977, 1979, 1981, 1983-1984, 1987-1988, 1993, 1995-1997, 1999-2000, 2009-2020', 'History (Q2); Sociology and Political Science (Q3)'), (19551, 'Sustentabilidade em Debate', 21777675, 0.156, 'Q4', 2, 11, 460, 20, 103, '14', '2017-2020', 'Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (19552, 'Territorio', 18258689, 0.156, 'Q1', 8, 48, 1125, 49, 272, '7', '2012-2019', 'Visual Arts and Performing Arts (Q1); Urban Studies (Q3); Geography, Planning and Development (Q4)'), (19553, 'Texto Livre', 19833652, 0.156, 'Q2', 4, 49, 1687, 44, 114, '14', '2017-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3); Computer Science Applications (Q4); Education (Q4)'), (19554, 'Urologiia', 17282985, 0.156, 'Q4', 9, 146, 1414, 124, 501, '10', '1999-2020', 'Urology (Q4)'), (19555, 'Women &amp; Performance', 17485819, 0.156, 'Q1', 13, 18, 340, 16, 72, '3', '1983-1990, 1992-1997, 1999-2020', 'Visual Arts and Performing Arts (Q1); Gender Studies (Q3)'), (19556, 'Agricultural Research in the Arid Areas', 10007601, 0.155, 'Q4', 4, 164, 1354, 161, 474, '1', '2017-2020', 'Agronomy and Crop Science (Q4)'), (19557, 'American Bankruptcy Law Journal', 279048, 0.155, 'Q3', 14, 0, 0, 8, 40, '2', '1996-2011, 2014-2019', 'Law (Q3); Business, Management and Accounting (miscellaneous) (Q4)'), (19558, 'Anthropological Linguistics', 35483, 0.155, 'Q2', 11, 0, 0, 12, 37, '2', '2005-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Anthropology (Q3)'), (19559, 'Anthropologie (Czech Republic)', 3231119, 0.155, 'Q3', 7, 23, 945, 14, 51, '31', '2014-2015, 2017-2020', 'Anthropology (Q3)'), (19560, 'Asian Journal of Agriculture and Biology', 23078553, 0.155, 'Q4', 9, 67, 2426, 94, 212, '34', '2013-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (19561, 'British Journal of Health Care Management', 13580574, 0.155, 'Q4', 15, 100, 1775, 66, 209, '3', '2006-2020', 'Health Policy (Q4); Leadership and Management (Q4)'), (19562, 'Chinese Journal of Inorganic Chemistry', 10014861, 0.155, 'Q4', 27, 159, 5825, 352, 600, '1', '1996-2020', 'Inorganic Chemistry (Q4)'), (19563, 'Coluna/ Columna', 18081851, 0.155, 'Q4', 7, 44, 957, 49, 167, '14', '2008-2020', 'Neurology (clinical) (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (19564, 'Current Chemical Biology', 22127968, 0.155, 'Q4', 22, 26, 1269, 46, 54, '52', '2008-2020', 'Biochemistry (Q4); Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Molecular Biology (Q4)'), (19565, 'Diabetes Mellitus', 20720351, 0.155, 'Q4', 12, 42, 1586, 140, 164, '10', '2012-2020', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (19566, 'Electronic Communications of the EASST', 18632122, 0.155, 'Q4', 21, 0, 0, 14, 27, '5', '2006-2019', 'Computational Theory and Mathematics (Q4); Software (Q4)'), (19567, 'Energy Engineering: Journal of the Associatio', 15460118, 0.155, 'Q4', 13, 39, 937, 36, 70, '2', '1980-1985, 1987-2020', 'Building and Construction (Q4); Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (19568, 'European Journal of Jewish Studies', 10259996, 0.155, 'Q1', 5, 15, 481, 2, 23, '16', '2007-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Religious Studies (Q2)'), (19569, 'Fizika Nizkikh Temperatur', 1326414, 0.155, 'Q4', 23, 159, 5625, 134, 542, '44', '1987-1989, 1996-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (19570, 'Gazi University Journal of Science', 13039709, 0.155, 'Q3', 16, 80, 2409, 146, 213, '18', '2009-2020', 'Multidisciplinary (Q3); Engineering (miscellaneous) (Q4)'), (19571, 'GLQ', 10642684, 0.155, 'Q2', 38, 43, 1422, 51, 64, '2', '1996, 1998-2001, 2003-2020', 'Cultural Studies (Q2); Gender Studies (Q3)'), (19572, 'Indian Journal of Physiology and Pharmacology', 195499, 0.155, 'Q4', 51, 67, 1578, 52, 165, '4', '1959-2020', 'Pharmacology (Q4); Physiology (Q4); Physiology (medical) (Q4)'), (19573, 'Indian Journal of Rheumatology', 9733698, 0.155, 'Q4', 11, 117, 2990, 95, 158, '4', '2007-2020', 'Rheumatology (Q4)'), (19574, 'International Advances in Economic Research', 10830898, 0.155, 'Q4', 25, 49, 904, 43, 105, '2', '1995-2020', 'Economics and Econometrics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19575, 'International Journal of Chinese Education', 22125868, 0.155, 'Q4', 6, 18, 864, 16, 44, '16', '2012-2020', 'Education (Q4)'), (19576, 'Issledovanie Zemli iz Kosmosa, (Earth Researc', 2059614, 0.155, 'Q4', 7, 0, 0, 21, 55, '19', '1980-1983, 1985, 1992-1995, 2001-2005, 2019', 'Atmospheric Science (Q4); Computers in Earth Sciences (Q4); Control and Systems Engineering (Q4); Geology (Q4); Space and Planetary Science (Q4)'), (19577, 'Journal of Asian Pacific Communication', 15699838, 0.155, 'Q3', 18, 13, 427, 15, 42, '16', '2000-2020', 'Communication (Q3); Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4)'), (19578, 'Journal of Cardiovascular Disease Research', 9753583, 0.155, 'Q4', 29, 132, 3105, 83, 98, '4', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19579, 'Journal of Design, Business and Society', 20552106, 0.155, 'Q1', 2, 15, 602, 6, 11, '3', '2019-2020', 'Visual Arts and Performing Arts (Q1); Cultural Studies (Q2); Industrial and Manufacturing Engineering (Q3); Business and International Management (Q4)'), (19580, 'Journal of Egyptian History', 18741657, 0.155, 'Q2', 6, 0, 0, 6, 23, '16', '2008, 2010-2019', 'History (Q2)'), (19581, 'Journal of Human Security', 18353800, 0.155, 'Q3', 7, 15, 828, 20, 10, '19', '2009-2011, 2013-2017, 2019-2020', 'Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3); Safety Research (Q4)'), (19582, 'Journal of Prime Research in Mathematics', 18185495, 0.155, 'Q4', 6, 15, 361, 14, 26, '34', '2011-2013, 2015-2019', 'Mathematics (miscellaneous) (Q4)'), (19583, 'Journal of Reports in Pharmaceutical Sciences', 23225106, 0.155, 'Q3', 7, 35, 1542, 57, 100, '15', '2012-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Biomedical Engineering (Q4); Pharmacology (medical) (Q4)'), (19584, 'Journal of the Chinese Society of Corrosion a', 10054537, 0.155, 'Q4', 16, 78, 2005, 90, 238, '1', '1993-2011, 2013-2020', 'Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (19585, 'Juvenile and Family Court Journal', 1617109, 0.155, 'Q3', 19, 26, 823, 23, 51, '2', '1953-1954, 1961-1969, 1971, 1977-2020', 'Law (Q3); Social Sciences (miscellaneous) (Q3)'), (19586, 'King s Law Journal', 17578442, 0.155, 'Q3', 5, 31, 0, 37, 69, '3', '2013-2020', 'Law (Q3)'), (19587, 'Lekarsky Obzor', 4574214, 0.155, 'Q4', 6, 85, 1487, 29, 224, '53', '1952-1954, 1961-1964, 1972-1994, 1999-2020', 'Medicine (miscellaneous) (Q4)'), (19588, 'Liaoning Gongcheng Jishu Daxue Xuebao (Ziran ', 10080562, 0.155, 'Q3', 16, 87, 1424, 79, 472, '1', '2001-2020', 'Multidisciplinary (Q3)'), (19589, 'Linguistica Silesiana', 2084228, 0.155, 'Q2', 2, 14, 368, 8, 64, '17', '2011-2013, 2016-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19590, 'Middle Eastern Studies', 17437881, 0.155, 'Q2', 32, 91, 0, 59, 164, '3', '1964-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3); Geography, Planning and Development (Q4)'), (19591, 'Neiranji Xuebao/Transactions of CSICE (Chines', 10000909, 0.155, 'Q4', 18, 72, 1372, 91, 224, '1', '1983-1989, 2001-2020', 'Automotive Engineering (Q4); Mechanical Engineering (Q4)'), (19592, 'Pakistan Journal of Analytical and Environmen', 1996918, 0.155, 'Q4', 3, 41, 1372, 30, 43, '34', '2018-2020', 'Analytical Chemistry (Q4); Environmental Chemistry (Q4)'), (19593, 'Poligrafi', 13188828, 0.155, 'Q1', 1, 16, 442, 2, 12, '60', '2019', 'Literature and Literary Theory (Q1); Philosophy (Q2); Religious Studies (Q2)'), (19594, 'Proceedings of the Royal Irish Academy, Secti', 20090048, 0.155, 'Q1', 7, 15, 935, 4, 28, '42', '1977, 1987, 2001, 2010-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19595, 'Psicologia: Teoria e Pesquisa', 1023772, 0.155, 'Q4', 21, 58, 2313, 41, 151, '14', '2006-2020', 'Psychology (miscellaneous) (Q4)'), (19596, 'Qiangjiguang Yu Lizishu/High Power Laser and ', 10014322, 0.155, 'Q4', 25, 219, 5518, 210, 885, '1', '1993-2020', 'Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4)'), (19597, 'Rassegna Italiana di Sociologia', 4860349, 0.155, 'Q3', 12, 23, 1345, 26, 92, '7', '1979, 1997-2020', 'Sociology and Political Science (Q3)'), (19598, 'Recenti Progressi in Medicina', 20381840, 0.155, 'Q4', 19, 187, 2889, 135, 340, '7', '1948, 1957-1958, 1960-2020', 'Medicine (miscellaneous) (Q4)'), (19599, 'Revista Argentina de Cardiologia', 347000, 0.155, 'Q4', 11, 95, 1632, 45, 146, '46', '1945, 1947, 1957, 1960, 1973-1982, 2008-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19600, 'Revista de Estudios Regionales', 2137585, 0.155, 'Q3', 7, 0, 0, 21, 49, '12', '1978, 2006, 2012-2019', 'Sociology and Political Science (Q3); Development (Q4); Economics and Econometrics (Q4)'), (19601, 'Rural History: Economy, Society, Culture', 9567933, 0.155, 'Q2', 18, 16, 861, 14, 36, '3', '1990-2020', 'History (Q2); Arts and Humanities (miscellaneous) (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4)'), (19602, 'Scottish Affairs', 9660356, 0.155, 'Q3', 5, 3, 90, 29, 68, '3', '2016-2020', 'Sociology and Political Science (Q3)'), (19603, 'Shanghai Jiaotong Daxue Xuebao/Journal of Sha', 10062467, 0.155, 'Q3', 22, 158, 2909, 235, 666, '1', '1988, 1998-2020', 'Multidisciplinary (Q3)'), (19604, 'Sibirskii Filologicheskii Zhurnal', 18137083, 0.155, 'Q1', 2, 100, 1974, 16, 187, '10', '2018-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19605, 'Statistics in Transition', 12347655, 0.155, 'Q4', 7, 61, 1456, 41, 111, '17', '2015-2020', 'Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (19606, 'Urological Science', 18795226, 0.155, 'Q4', 8, 59, 1061, 50, 146, '16', '2010-2020', 'Urology (Q4)'), (19607, 'World Policy Journal', 7402775, 0.155, 'Q3', 21, 0, 0, 19, 50, '2', '1989, 1994, 1996-2018', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (19608, 'Xi an Dianzi Keji Daxue Xuebao/Journal of Xid', 10012400, 0.155, 'Q4', 17, 117, 2035, 204, 518, '1', '2001-2020', 'Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)'), (19609, 'Zeitschrift fur die Neutestamentliche Wissens', 442615, 0.155, 'Q2', 11, 10, 336, 9, 34, '5', '1900-1916, 1918, 1920-1942, 1949, 1951, 1953-2020', 'History (Q2); Religious Studies (Q2)'), (19610, 'Zhonghua yi xue za zhi', 3762491, 0.155, 'Q4', 27, 557, 4207, 511, 1813, '1', '1945, 1973-1975, 1981-2020', 'Medicine (miscellaneous) (Q4)'), (19611, 'Acta Onomastica', 12114413, 0.154, 'Q2', 3, 29, 665, 3, 62, '31', '2011-2013, 2016-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19612, 'Advancements in Life Sciences', 23105380, 0.154, 'Q4', 2, 36, 1253, 15, 30, '34', '2019', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Veterinary (miscellaneous) (Q4)'), (19613, 'Advances in Health Care Management', 14748231, 0.154, 'Q4', 15, 0, 0, 5, 12, '3', '2000-2002, 2004-2005, 2007-2015, 2019', 'Health Policy (Q4); Medicine (miscellaneous) (Q4)'), (19614, 'Afkar', 25501755, 0.154, 'Q2', 1, 33, 1163, 6, 16, '23', '2019-2020', 'Philosophy (Q2); Religious Studies (Q2)'), (19615, 'American Indian Culture and Research Journal', 1616463, 0.154, 'Q3', 16, 0, 0, 20, 50, '2', '1986, 1988, 2000-2018', 'Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (19616, 'Annales Mathematicae et Informaticae', 17875021, 0.154, 'Q4', 14, 33, 560, 19, 59, '50', '1997-2020', 'Computer Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)'), (19617, 'Arbor', 2101963, 0.154, 'Q2', 15, 44, 1951, 58, 134, '12', '1973-1974, 1977, 1982, 1996-2020', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (19618, 'Bellaterra Journal of Teaching and Learning L', 20136196, 0.154, 'Q1', 5, 19, 404, 18, 53, '12', '2016-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2); Education (Q4)'), (19619, 'Communications in Mathematics', 18041388, 0.154, 'Q4', 5, 29, 481, 10, 30, '17', '2016-2020', 'Mathematics (miscellaneous) (Q4)'), (19620, 'Die Welt des Islams', 432539, 0.154, 'Q1', 20, 15, 385, 17, 37, '16', '1921, 1951-1955, 1957, 1959, 1961-1962, 1965-1966, 1968-1969, 1971, 1973-1976, 1978-1980, 1985-1986,', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Religious Studies (Q2)'), (19621, 'Dissent', 123846, 0.154, 'Q3', 18, 78, 0, 51, 165, '2', '1976-1977, 1979, 1981, 1983, 1986-1988, 1994, 1996-2019', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (19622, 'Himalaya', 19352212, 0.154, 'Q3', 11, 0, 0, 30, 83, '2', '1981, 2006, 2008-2011, 2013-2019', 'Social Sciences (miscellaneous) (Q3)'), (19623, 'Hispanic Research Journal', 14682737, 0.154, 'Q1', 5, 13, 586, 15, 101, '3', '2010-2019', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q1); Cultural Studies (Q2)'), (19624, 'Huanan Ligong Daxue Xuebao/Journal of South C', 1000565, 0.154, 'Q4', 18, 200, 4415, 263, 687, '1', '2001-2020', 'Engineering (miscellaneous) (Q4)'), (19625, 'IJC Metabolic and Endocrine', 22147624, 0.154, 'Q4', 11, 0, 0, 10, 14, '42', '2013-2017', 'Cardiology and Cardiovascular Medicine (Q4); Endocrinology, Diabetes and Metabolism (Q4); Physiology (medical) (Q4)'), (19626, 'International Journal of Intelligence and Cou', 8850607, 0.154, 'Q3', 18, 50, 0, 38, 87, '3', '1986, 1988-1991, 1993-2020', 'Political Science and International Relations (Q3)'), (19627, 'International Journal of Manufacturing, Mater', 21561672, 0.154, 'Q4', 8, 16, 494, 31, 43, '2', '2011-2020', 'Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (19628, 'International Journal of Sustainability Polic', 23251166, 0.154, 'Q3', 4, 5, 197, 9, 20, '2', '2013-2020', 'Sociology and Political Science (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (19629, 'International Journal of Web Portals', 19380208, 0.154, 'Q4', 8, 10, 372, 35, 27, '2', '2009-2020', 'Computer Science Applications (Q4)'), (19630, 'International Journal of Wireless and Mobile ', 17411092, 0.154, 'Q4', 18, 89, 2109, 122, 262, '3', '2006-2014, 2020', 'Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)'), (19631, 'Journal of Business Valuation and Economic Lo', 19329156, 0.154, 'Q4', 8, 4, 146, 14, 21, '5', '2009-2020', 'Accounting (Q4); Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Strategy and Management (Q4)'), (19632, 'Journal of Chinese Cinemas', 1750807, 0.154, 'Q1', 7, 18, 562, 15, 47, '3', '2012-2020', 'Visual Arts and Performing Arts (Q1); Communication (Q3)'), (19633, 'Journal of Comprehensive Pediatrics', 22518177, 0.154, 'Q4', 8, 40, 948, 46, 106, '15', '2013-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (19634, 'Journal of Elementary Education', 23504803, 0.154, 'Q4', 2, 30, 1280, 9, 28, '60', '2019', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (19635, 'Journal of Natural Remedies', 23203358, 0.154, 'Q4', 19, 29, 948, 28, 61, '4', '2002-2020', 'Pharmacology (Q4)'), (19636, 'Journal of Physician Assistant Education', 19419449, 0.154, 'Q2', 12, 47, 0, 44, 144, '2', '2009-2020', 'Medical Assisting and Transcription (Q2); Education (Q4); Medicine (miscellaneous) (Q4)'), (19637, 'Journal of Radiology Case Reports', 19430922, 0.154, 'Q4', 18, 37, 780, 84, 121, '2', '2009-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (19638, 'Journal of Sciences, Islamic Republic of Iran', 10161104, 0.154, 'Q3', 10, 30, 1034, 49, 85, '15', '2011-2020', 'Multidisciplinary (Q3)'), (19639, 'Journal of the Society of Architectural Histo', 379808, 0.154, 'Q1', 15, 1, 47, 19, 71, '2', '1970-1995, 2002-2012, 2014-2019', 'Visual Arts and Performing Arts (Q1); History (Q2); Architecture (Q3)'), (19640, 'Journal of Women s History', 10427961, 0.154, 'Q2', 22, 30, 1671, 19, 86, '2', '1996, 1999-2020', 'History (Q2); Gender Studies (Q3)'), (19641, 'Mathematical Biology and Bioinformatics', 19946538, 0.154, 'Q4', 8, 26, 1049, 49, 96, '10', '2012-2020', 'Applied Mathematics (Q4); Biomedical Engineering (Q4)'), (19642, 'Modern Intellectual History', 14792451, 0.154, 'Q2', 22, 70, 5192, 30, 121, '3', '2004-2020', 'Cultural Studies (Q2); History (Q2); Philosophy (Q2); Sociology and Political Science (Q3)'), (19643, 'Nature Environment and Pollution Technology', 23953454, 0.154, 'Q4', 11, 224, 6043, 237, 609, '4', '2007, 2009-2020', 'Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (19644, 'New Zealand Sociology', 112921, 0.154, 'Q3', 9, 0, 0, 24, 46, '41', '2010-2019', 'Social Sciences (miscellaneous) (Q3)'), (19645, 'Nova Mehanizacija Sumarstva', 18458815, 0.154, 'Q4', 7, 10, 274, 7, 29, '58', '2005-2010, 2012-2014, 2016-2019', 'Forestry (Q4); Mechanical Engineering (Q4)'), (19646, 'Obesity and Metabolism', 20718713, 0.154, 'Q4', 5, 44, 1775, 73, 128, '10', '2016-2020', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4); Nutrition and Dietetics (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19647, 'Open Ecology Journal', 18742130, 0.154, 'Q4', 16, 2, 87, 8, 10, '52', '2009-2020', 'Environmental Science (miscellaneous) (Q4)'), (19648, 'Pacific Historical Review', 15338584, 0.154, 'Q2', 21, 6, 275, 12, 66, '2', '1967, 1970-2020', 'History (Q2)'), (19649, 'Pakistan Development Review', 309729, 0.154, 'Q4', 26, 20, 690, 18, 41, '34', '1964, 1966, 1969, 1973-2012, 2014-2019', 'Development (Q4); Geography, Planning and Development (Q4)'), (19650, 'Pferdeheilkunde', 1777726, 0.154, 'Q4', 23, 35, 1513, 38, 141, '5', '1996-2020', 'Equine (Q4)'), (19651, 'Progress in Biochemistry and Biophysics', 10003282, 0.154, 'Q4', 19, 43, 3050, 94, 322, '1', '1996-2020', 'Biochemistry (Q4); Biophysics (Q4)'), (19652, 'Psicologia em Estudo', 14137372, 0.154, 'Q4', 16, 42, 1159, 20, 137, '14', '2006-2020', 'Psychology (miscellaneous) (Q4)'), (19653, 'Revista de Investigacion en Logopedia', 21745218, 0.154, 'Q2', 5, 12, 543, 10, 29, '12', '2011-2020', 'Language and Linguistics (Q2); Speech and Hearing (Q4)'), (19654, 'Revista Portuguesa de Estudos Regionais', 1645586, 0.154, 'Q3', 5, 37, 1502, 15, 53, '26', '2012-2020', 'Sociology and Political Science (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4)'), (19655, 'Tijdschrift voor Psychiatrie', 3037339, 0.154, 'Q4', 17, 185, 3134, 94, 301, '16', '1973-2020', 'Psychiatry and Mental Health (Q4)'), (19656, 'Translational Research in Anatomy', 2214854, 0.154, 'Q4', 4, 30, 1419, 24, 34, '5', '2015-2020', 'Anatomy (Q4)'), (19657, 'Tripodos', 11383305, 0.154, 'Q3', 2, 50, 2017, 15, 40, '12', '2018-2019', 'Communication (Q3)'), (19658, 'Universum', 716498, 0.154, 'Q3', 11, 34, 883, 14, 72, '45', '2008-2019', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (19659, 'Vitae', 21452660, 0.154, 'Q3', 13, 10, 462, 21, 37, '47', '2009-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Applied Microbiology and Biotechnology (Q4); Bioengineering (Q4); Biotechnology (Q4); Food Science (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (19660, 'Zeitschrift fur Padagogik', 443247, 0.154, 'Q4', 22, 0, 0, 47, 128, '5', '1996-2019', 'Education (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (19661, 'Acta Psychologica Sinica', 439755, 0.153, 'Q4', 2, 65, 3848, 31, 116, '1', '2019-2020', 'Psychology (miscellaneous) (Q4)'), (19662, 'AJS Review', 3640094, 0.153, 'Q1', 16, 17, 418, 13, 39, '3', '1976-1982, 1984-1999, 2001-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Religious Studies (Q2)'), (19663, 'American Archivist', 3609081, 0.153, 'Q3', 28, 0, 0, 25, 62, '2', '1938-2019', 'Arts and Humanities (miscellaneous) (Q3); Library and Information Sciences (Q3)'), (19664, 'Analele Universitatii din Craiova - Seria Ist', 12245704, 0.153, 'Q2', 4, 10, 347, 8, 66, '43', '2009-2020', 'History (Q2)'), (19665, 'Animal Nutrition and Feed Technology', 9722963, 0.153, 'Q4', 13, 48, 1602, 35, 132, '4', '2008-2020', 'Food Animals (Q4)'), (19666, 'Anthropology and Humanism', 15481409, 0.153, 'Q1', 17, 35, 668, 11, 71, '3', '1993-2020', 'Literature and Literary Theory (Q1); Philosophy (Q2); Anthropology (Q3)'), (19667, 'Antitrust Bulletin', 19307969, 0.153, 'Q3', 19, 33, 0, 25, 90, '2', '1996-2020', 'Law (Q3); Economics and Econometrics (Q4)'), (19668, 'ASEAN Journal of Chemical Engineering', 16554418, 0.153, 'Q4', 5, 20, 452, 30, 54, '21', '2012-2020', 'Chemical Engineering (miscellaneous) (Q4)'), (19669, 'Avocetta', 4044266, 0.153, 'Q4', 7, 10, 309, 10, 51, '7', '1996, 2008-2018', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (19670, 'Brazilian Dental Science', 21786011, 0.153, 'Q4', 6, 105, 3388, 216, 201, '14', '2017-2020', 'Dentistry (miscellaneous) (Q4)'), (19671, 'Brazilian Journalism Research', 18084079, 0.153, 'Q3', 2, 27, 1120, 20, 66, '14', '2018-2020', 'Communication (Q3)'), (19672, 'Ceska a Slovenska Neurologie a Neurochirurgie', 18024041, 0.153, 'Q4', 15, 147, 3577, 106, 283, '31', '1973-2020', 'Neurology (clinical) (Q4); Surgery (Q4)'), (19673, 'Dermatologie in Beruf und Umwelt', 1438776, 0.153, 'Q4', 16, 13, 176, 16, 52, '5', '2000-2020', 'Dermatology (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19674, 'Discourse and Interaction', 18029930, 0.153, 'Q2', 4, 13, 519, 14, 30, '31', '2013-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19675, 'Egyptian Journal of Histology', 11100559, 0.153, 'Q4', 6, 65, 3271, 65, 163, '2', '2012-2020', 'Histology (Q4)'), (19676, 'European History Quarterly', 14617110, 0.153, 'Q2', 18, 26, 0, 22, 57, '3', '1971-2020', 'Cultural Studies (Q2); History (Q2)'), (19677, 'Gender and History', 9535233, 0.153, 'Q2', 30, 36, 16, 36, 110, '3', '1989-2020', 'History (Q2); Arts and Humanities (miscellaneous) (Q3); Gender Studies (Q3); Geography, Planning and Development (Q4)'), (19678, 'Giornale italiano di nefrologia : organo uffi', 3935590, 0.153, 'Q4', 13, 82, 0, 67, 249, '7', '1988-1999, 2002-2020', 'Medicine (miscellaneous) (Q4); Nephrology (Q4)'), (19679, 'Indonesian Journal of Pharmacy', 23389486, 0.153, 'Q3', 6, 27, 819, 61, 95, '21', '2016-2020', 'Pharmaceutical Science (Q3); Pharmacy (Q3); Pharmacology (medical) (Q4)'), (19680, 'International Journal of Computational Vision', 1752914, 0.153, 'Q4', 11, 35, 1046, 79, 113, '3', '2012-2014, 2017, 2020', 'Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4)'), (19681, 'International Journal of Computer Aided Engin', 17572665, 0.153, 'Q4', 12, 61, 1460, 60, 135, '19', '2010-2014, 2020', 'Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Software (Q4)'), (19682, 'International Journal of Information and Comp', 17441765, 0.153, 'Q4', 14, 48, 1544, 61, 75, '3', '2007-2014, 2020', 'Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Safety, Risk, Reliability and Quality (Q4); Software (Q4)'), (19683, 'International Journal of Powder Metallurgy (P', 8887462, 0.153, 'Q3', 27, 11, 48, 19, 50, '2', '1969-1973, 1986-1994, 1996-2019', 'Industrial and Manufacturing Engineering (Q3); Metals and Alloys (Q4)'), (19684, 'International Journal of Technology and Human', 15483916, 0.153, 'Q4', 19, 24, 1137, 47, 68, '2', '2005-2020', 'Human-Computer Interaction (Q4); Information Systems (Q4)'), (19685, 'Italian Journal of Vascular and Endovascular ', 18244777, 0.153, 'Q4', 6, 19, 797, 16, 92, '7', '2004-2019', 'Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)'), (19686, 'Journal of Chinese Writing Systems', 25138510, 0.153, 'Q2', 2, 35, 603, 10, 28, '3', '2019-2020', 'History (Q2); Linguistics and Language (Q2)'), (19687, 'Journal of Community Nursing', 2634465, 0.153, 'Q4', 11, 71, 1085, 22, 125, '3', '1998-2002, 2006-2008, 2017-2019', 'Community and Home Care (Q4)'), (19688, 'Journal of Conflict and Security Law', 14677954, 0.153, 'Q3', 23, 22, 768, 18, 41, '3', '2005-2020', 'Law (Q3); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4)'), (19689, 'Journal of Drug Policy Analysis', 19412851, 0.153, 'Q4', 4, 4, 202, 8, 19, '5', '2012-2018, 2020', 'Health Policy (Q4); Health (social science) (Q4); Public Administration (Q4)'), (19690, 'Journal of Mazandaran University of Medical S', 17359260, 0.153, 'Q4', 19, 203, 5815, 296, 801, '15', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (19691, 'Journal of Slavic Military Studies', 13518046, 0.153, 'Q2', 10, 36, 0, 25, 84, '3', '1993-1996, 1998, 2003, 2005, 2009-2020', 'History (Q2); Political Science and International Relations (Q3)'), (19692, 'Journal of the ASEAN Federation of Endocrine ', 8571074, 0.153, 'Q4', 3, 39, 890, 23, 80, '63', '2014-2020', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)'), (19693, 'Journal of the Chinese Society of Mechanical ', 2579731, 0.153, 'Q4', 12, 52, 1091, 50, 213, '22', '1984-2018', 'Mechanical Engineering (Q4)'), (19694, 'Journal of the Musical Arts in Africa', 2070626, 0.153, 'Q2', 5, 10, 347, 11, 27, '3', '2004-2005, 2007-2019', 'Music (Q2)'), (19695, 'Journal of Theoretical and Applied Informatio', 18173195, 0.153, 'Q4', 29, 416, 15247, 1148, 1811, '34', '2005, 2008-2020', 'Computer Science (miscellaneous) (Q4); Theoretical Computer Science (Q4)'), (19696, 'Korean Journal of Materials Research', 12250562, 0.153, 'Q4', 10, 97, 2012, 90, 348, '13', '2007-2020', 'Materials Science (miscellaneous) (Q4)'), (19697, 'Krankenhauspharmazie', 1737597, 0.153, 'Q4', 11, 113, 862, 20, 231, '5', '1990-2020', 'Pharmacology (medical) (Q4)'), (19698, 'Kung Cheng Je Wu Li Hsueh Pao/Journal of Engi', 253231, 0.153, 'Q4', 23, 447, 7654, 389, 1291, '1', '1981-1991, 1998-2020', 'Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4)'), (19699, 'Malaysian Applied Biology', 1268643, 0.153, 'Q4', 8, 101, 3050, 165, 342, '23', '1980, 1986-1987, 2012-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (19700, 'Mediterranean Quarterly', 15271935, 0.153, 'Q3', 15, 0, 0, 21, 46, '2', '1995-2018', 'Political Science and International Relations (Q3); Geography, Planning and Development (Q4)'), (19701, 'Mezinarodni Vztahy', 3231844, 0.153, 'Q3', 3, 21, 1089, 7, 49, '31', '2013-2020', 'Political Science and International Relations (Q3)'), (19702, 'Prague medical report', 12146994, 0.153, 'Q4', 20, 25, 0, 27, 47, '31', '2004-2020', 'Medicine (miscellaneous) (Q4)'), (19703, 'Punk and Post-Punk', 20443706, 0.153, 'Q2', 2, 24, 841, 16, 37, '3', '2018-2020', 'Cultural Studies (Q2); History (Q2); Music (Q2); Visual Arts and Performing Arts (Q2)'), (19704, 'Revista de Internet, Derecho y Politica', 16998154, 0.153, 'Q3', 2, 24, 588, 9, 22, '12', '2019-2020', 'Law (Q3); Sociology and Political Science (Q3); Computer Science (miscellaneous) (Q4)'), (19705, 'Revista Medica de Homeopatia', 18888526, 0.153, 'Q3', 4, 0, 0, 12, 16, '12', '2008-2017', 'Complementary and Alternative Medicine (Q3)'), (19706, 'Revue de Musicologie', 19585632, 0.153, 'Q2', 6, 11, 844, 3, 62, '8', '2002-2020', 'Music (Q2)'), (19707, 'Revue des Composites et des Materiaux Avances', 11697954, 0.153, 'Q4', 5, 33, 832, 49, 108, '8', '2012-2020', 'Materials Science (miscellaneous) (Q4)'), (19708, 'Scrinium', 18177530, 0.153, 'Q1', 4, 26, 1029, 12, 72, '16', '2011, 2013-2019', 'Classics (Q1); History (Q2); Philosophy (Q2); Religious Studies (Q2)'), (19709, 'Shengwu Gongcheng Xuebao/Chinese Journal of B', 18722075, 0.153, 'Q4', 19, 265, 10446, 216, 582, '1', '2000-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4)'), (19710, 'Sri Lanka Journal of Child Health', 2386110, 0.153, 'Q4', 6, 90, 1305, 54, 238, '76', '2011-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (19711, 'Stanovnistvo', 38982, 0.153, 'Q3', 7, 5, 181, 8, 28, '55', '1978, 2007-2020', 'Social Sciences (miscellaneous) (Q3)'), (19712, 'Surgical and Cosmetic Dermatology', 19845510, 0.153, 'Q4', 11, 90, 1230, 38, 191, '14', '2009-2020', 'Dermatology (Q4); Surgery (Q4)'), (19713, 'Technology Innovation Management Review', 19270321, 0.153, 'Q4', 2, 71, 2892, 9, 7, '9', '2019-2020', 'Computer Science Applications (Q4); Management of Technology and Innovation (Q4)'), (19714, 'Tekstil ve Muhendis', 13007599, 0.153, 'Q3', 6, 30, 961, 26, 113, '18', '1991-1992, 2012-2020', 'Industrial and Manufacturing Engineering (Q3); Materials Science (miscellaneous) (Q4)'), (19715, 'Trames', 14060922, 0.153, 'Q3', 14, 32, 1336, 41, 78, '71', '2008-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (19716, 'Tumu Jianzhu yu Huanjing Gongcheng/Journal of', 16744764, 0.153, 'Q3', 12, 0, 0, 99, 242, '1', '2009-2018', 'Architecture (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4)'), (19717, 'Voprosy Onomastiki', 19942400, 0.153, 'Q2', 4, 50, 940, 39, 113, '10', '2016-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q2); Communication (Q3)'), (19718, 'Zeitschrift fur Fremdsprachenforschung', 9397299, 0.153, 'Q2', 3, 15, 607, 10, 49, '5', '2013-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19719, 'Zhonghua yu fang yi xue za zhi [Chinese journ', 2539624, 0.153, 'Q4', 26, 194, 0, 3, 3, '1', '1979-2016, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (19720, 'Actes de la Recherche en Sciences Sociales', 3355322, 0.152, 'Q3', 17, 0, 0, 19, 44, '8', '1984-1985, 2006-2019', 'Social Sciences (miscellaneous) (Q3)'), (19721, 'Aisthesis (Italy)', 20358466, 0.152, 'Q2', 2, 32, 1086, 18, 89, '7', '2017-2020', 'Philosophy (Q2); Visual Arts and Performing Arts (Q2)'), (19722, 'Archivio di Studi Urbani e Regionali', 40177, 0.152, 'Q3', 3, 19, 859, 22, 84, '7', '2017-2019', 'Sociology and Political Science (Q3); Urban Studies (Q3)'), (19723, 'Armenian Journal of Mathematics', 18291163, 0.152, 'Q4', 1, 10, 196, 3, 10, '93', '2019-2020', 'Mathematics (miscellaneous) (Q4)'), (19724, 'Asian Dyer', 9729488, 0.152, 'Q4', 5, 39, 784, 8, 65, '4', '2006-2020', 'Chemistry (miscellaneous) (Q4)'), (19725, 'Asia-Pacific Review', 13439006, 0.152, 'Q2', 17, 8, 12, 20, 48, '2', '1994-2002, 2004-2020', 'History (Q2); Political Science and International Relations (Q3); Economics and Econometrics (Q4)'), (19726, 'Bangladesh Journal of Botany', 2535416, 0.152, 'Q4', 17, 83, 1835, 124, 356, '59', '1996-2001, 2003-2019', 'Plant Science (Q4)'), (19727, 'Black Camera', 15363155, 0.152, 'Q1', 2, 50, 883, 9, 86, '10', '2018-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Visual Arts and Performing Arts (Q2); Communication (Q3)'), (19728, 'Botanica Complutensis', 2144565, 0.152, 'Q4', 10, 8, 344, 7, 29, '12', '2001-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (19729, 'British Journal of Medical Practitioners', 17578515, 0.152, 'Q4', 12, 16, 275, 19, 43, '3', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (19730, 'Cataloging and Classification Quarterly', 1639374, 0.152, 'Q3', 24, 61, 15, 39, 102, '2', '1981-2020', 'Library and Information Sciences (Q3)'), (19731, 'Childhood Education', 94056, 0.152, 'Q4', 22, 58, 35, 79, 172, '3', '1996-2020', 'Developmental and Educational Psychology (Q4); Education (Q4); Management of Technology and Innovation (Q4)'), (19732, 'Clinical Diabetology', 24508187, 0.152, 'Q4', 4, 90, 1890, 40, 90, '17', '2015-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (19733, 'Complex Systems and Complexity Science', 16723813, 0.152, 'Q4', 9, 40, 1240, 43, 134, '1', '2013-2020', 'Control and Systems Engineering (Q4)'), (19734, 'Contemporary Buddhism', 14639947, 0.152, 'Q2', 9, 5, 178, 18, 61, '3', '2010-2020', 'Philosophy (Q2); Religious Studies (Q2)'), (19735, 'Critica Hispanica', 2787261, 0.152, 'Q1', 2, 0, 0, 2, 17, '2', '2008-2017', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q2)'), (19736, 'Film History: An International Journal', 8922160, 0.152, 'Q2', 12, 30, 1955, 16, 75, '2', '1987, 1999, 2002-2019', 'History (Q2); Visual Arts and Performing Arts (Q2)'), (19737, 'Forest Research', 10011498, 0.152, 'Q4', 14, 133, 4329, 143, 414, '1', '1988-2020', 'Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (19738, 'Frontiers of Nursing', 25448994, 0.152, 'Q4', 2, 37, 1266, 34, 85, '17', '2018-2020', 'Education (Q4); Nursing (miscellaneous) (Q4)'), (19739, 'Granja', 13908596, 0.152, 'Q4', 2, 21, 932, 17, 40, '64', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science ('), (19740, 'Historia - Zeitschrift fur Alte Geschichte', 182311, 0.152, 'Q1', 15, 21, 1880, 16, 61, '5', '1976, 1983-1984, 1987, 1997, 2002-2020', 'Classics (Q1); History (Q2)'), (19741, 'Hydroecologie Appliquee', 1958556, 0.152, 'Q4', 9, 0, 0, 1, 7, '8', '2010, 2014, 2016-2018', 'Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Water Science and Technology (Q4)'), (19742, 'Indian Journal of Natural Products and Resour', 9760512, 0.152, 'Q4', 31, 39, 1374, 68, 106, '4', '2006-2020', 'Agronomy and Crop Science (Q4); Food Science (Q4); Plant Science (Q4)'), (19743, 'International Electronic Journal of Environme', 21460329, 0.152, 'Q4', 2, 14, 672, 14, 20, '18', '2018-2020', 'Education (Q4); Environmental Science (miscellaneous) (Q4)'), (19744, 'International Journal of Accounting, Auditing', 17408008, 0.152, 'Q4', 14, 12, 688, 26, 49, '3', '2004-2014', 'Accounting (Q4); Finance (Q4); Organizational Behavior and Human Resource Management (Q4)'), (19745, 'International Journal of Cloud Computing', 20439997, 0.152, 'Q4', 4, 27, 588, 28, 59, '3', '2017-2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Science (miscellaneous) (Q4); Software (Q4)'), (19746, 'International Journal of Computing and Digita', 2210142, 0.152, 'Q4', 6, 99, 3029, 85, 105, '98', '2018-2020', 'Artificial Intelligence (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Networks and Communications (Q4); Human-Computer Interaction (Q4); Information Systems (Q4); Management of Tech'), (19747, 'International Journal of Interdisciplinary Or', 23247649, 0.152, 'Q4', 3, 5, 251, 24, 14, '2', '2012-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19748, 'International Journal of Pervasive Computing ', 1742738, 0.152, 'Q4', 15, 62, 2050, 51, 47, '3', '2005, 2007-2020', 'Computer Science (miscellaneous) (Q4); Theoretical Computer Science (Q4)'), (19749, 'International Journal of Plasma Environmental', 18818692, 0.152, 'Q4', 11, 17, 436, 28, 66, '6', '2011-2019', 'Environmental Science (miscellaneous) (Q4)'), (19750, 'International Journal of Quality Engineering ', 17572185, 0.152, 'Q4', 7, 5, 132, 7, 29, '19', '2011, 2013-2014', 'Safety, Risk, Reliability and Quality (Q4)'), (19751, 'International Journal of Services, Economics ', 17530822, 0.152, 'Q4', 10, 18, 1431, 32, 49, '19', '2020', 'Economics and Econometrics (Q4); Strategy and Management (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (19752, 'International Journal of Services Operations ', 1741539, 0.152, 'Q4', 13, 10, 355, 29, 40, '3', '2006-2013', 'Computer Science Applications (Q4); Information Systems (Q4); Management Information Systems (Q4); Management Science and Operations Research (Q4)'), (19753, 'International Journal of Thin Film Science an', 20909527, 0.152, 'Q4', 3, 29, 732, 21, 34, '2', '2018-2020', 'Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)'), (19754, 'Iraqi Journal of Science', 672904, 0.152, 'Q4', 4, 389, 8746, 139, 321, '48', '1979-1986, 2018-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Biotechnology (Q4); Chemistry (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Geology (Q4)'), (19755, 'Journal for the Study of Judaism', 15700631, 0.152, 'Q1', 18, 21, 1488, 13, 66, '16', '1970-1977, 1980-1988, 1990-2020', 'Literature and Literary Theory (Q1); History (Q2); Religious Studies (Q2)'), (19756, 'Journal of Beijing Institute of Clothing Tech', 10010564, 0.152, 'Q4', 4, 57, 1202, 24, 156, '1', '2005-2020', 'Materials Science (miscellaneous) (Q4)'), (19757, 'Journal of Combinatorial Mathematics and Comb', 8353026, 0.152, 'Q4', 17, 53, 608, 86, 232, '9', '2007-2020', 'Mathematics (miscellaneous) (Q4)'), (19758, 'Journal of Computational and Applied Research', 22516549, 0.152, 'Q3', 7, 38, 1271, 31, 52, '15', '2015-2020', 'Industrial and Manufacturing Engineering (Q3); Computational Mechanics (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (19759, 'Journal of Folklore Research', 15430413, 0.152, 'Q2', 15, 12, 832, 10, 32, '2', '2002-2020', 'Cultural Studies (Q2); Music (Q2)'), (19760, 'Journal of Health and Human Services Administ', 10793739, 0.152, 'Q4', 21, 0, 0, 14, 38, '2', '1994-2019', 'Health Policy (Q4); Leadership and Management (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19761, 'Journal of Private International Law', 17578418, 0.152, 'Q3', 12, 23, 0, 18, 67, '3', '2005-2020', 'Law (Q3); Political Science and International Relations (Q3)'), (19762, 'Korean Studies', 145840, 0.152, 'Q1', 5, 6, 304, 12, 24, '2', '1991-1998, 2017-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellane'), (19763, 'Landscape Architecture and Art', 22558640, 0.152, 'Q2', 3, 5, 104, 11, 47, '77', '2016-2020', 'Visual Arts and Performing Arts (Q2); Agricultural and Biological Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)'), (19764, 'Linguistica Uralica', 8684731, 0.152, 'Q2', 7, 17, 119, 10, 61, '71', '2008-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q3)'), (19765, 'Medico-Legal Journal', 258172, 0.152, 'Q4', 10, 70, 0, 38, 133, '3', '1947-2020', 'Medicine (miscellaneous) (Q4)'), (19766, 'Microbiology and Biotechnology Letters', 1598642, 0.152, 'Q4', 5, 45, 1756, 48, 137, '13', '2015-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Microbiology (Q4)'), (19767, 'Mineralogia', 18998526, 0.152, 'Q4', 9, 6, 152, 8, 11, '17', '2006, 2008-2012, 2014-2020', 'Geochemistry and Petrology (Q4); Geology (Q4)'), (19768, 'Neurological Sciences and Neurophysiology', 2636865, 0.152, 'Q4', 8, 39, 1113, 35, 104, '18', '2018-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (19769, 'Neuropsychopharmacologia Hungarica', 14198711, 0.152, 'Q3', 16, 23, 760, 17, 51, '50', '2004-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Neurology (clinical) (Q4); Neuropsychology and Physiological Psychology (Q4); Neuroscience (miscellaneous) (Q4)'), (19770, 'New Zealand Journal of Medical Laboratory Sci', 11710195, 0.152, 'Q4', 7, 46, 857, 13, 45, '41', '1999-2020', 'Clinical Biochemistry (Q4)'), (19771, 'OnLine Journal of Biological Sciences', 16084217, 0.152, 'Q4', 14, 30, 1459, 97, 134, '2', '2007-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (19772, 'Pediatrie pro Praxi', 12130494, 0.152, 'Q4', 4, 74, 876, 12, 212, '31', '2011-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (19773, 'Polymer (Korea)', 379153, 0.152, 'Q4', 18, 15, 370, 108, 422, '13', '1996-2020', 'Chemical Engineering (miscellaneous) (Q4); Materials Chemistry (Q4); Polymers and Plastics (Q4)'), (19774, 'Psicooncologia', 19888287, 0.152, 'Q4', 10, 24, 843, 22, 73, '12', '2008-2020', 'Clinical Psychology (Q4); Oncology (Q4)'), (19775, 'Psicoterapia e Scienze Umane', 3942864, 0.152, 'Q4', 11, 21, 759, 16, 119, '7', '2005-2015, 2017-2019', 'Clinical Psychology (Q4)'), (19776, 'Rastitel nost Rossii', 20730659, 0.152, 'Q4', 4, 1, 17, 25, 55, '10', '2017-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (19777, 'Revista Cubana de Investigaciones Biomedicas', 15613011, 0.152, 'Q4', 11, 104, 1989, 51, 288, '85', '1988-1992, 1996-2020', 'Medicine (miscellaneous) (Q4)'), (19778, 'Revista Derecho del Estado', 23462051, 0.152, 'Q3', 3, 34, 1576, 16, 86, '47', '2015-2020', 'Law (Q3)'), (19779, 'Rivista Italiana delle Sostanze Grasse', 356808, 0.152, 'Q4', 14, 4, 129, 33, 64, '7', '2006-2019', 'Organic Chemistry (Q4)'), (19780, 'Stanford Journal of International Law', 7315082, 0.152, 'Q3', 21, 0, 0, 5, 7, '2', '1989, 1996-2017', 'Law (Q3); Political Science and International Relations (Q3)'), (19781, 'Taiwan Journal of Linguistics', 17294649, 0.152, 'Q2', 6, 7, 257, 4, 21, '22', '2009-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q3)'), (19782, 'Terra Latinoamericana', 23958030, 0.152, 'Q4', 6, 81, 3079, 44, 116, '30', '2016-2020', 'Biochemistry (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Pollution (Q4); Soil Science (Q4)'), (19783, 'Thai Journal of Mathematics', 16860209, 0.152, 'Q4', 13, 146, 3071, 83, 264, '40', '2011-2020', 'Mathematics (miscellaneous) (Q4)'), (19784, 'Yao xue xue bao = Acta pharmaceutica Sinica', 5134870, 0.152, 'Q3', 32, 312, 13447, 349, 749, '1', '1960, 1962-1966, 1979-2019', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Molecular Medicine (Q4)'), (19785, 'Yuki Gosei Kagaku Kyokaishi/Journal of Synthe', 18836526, 0.152, 'Q4', 31, 112, 4536, 86, 355, '6', '1944, 1950-2020', 'Organic Chemistry (Q4)'), (19786, 'Acta Facultatis Medicae Naissensis', 3516083, 0.151, 'Q4', 8, 40, 1268, 33, 92, '55', '2009-2019', 'Medicine (miscellaneous) (Q4)'), (19787, 'Anthropology of Work Review', 883024, 0.151, 'Q3', 15, 13, 517, 14, 31, '2', '1980-2020', 'Anthropology (Q3)'), (19788, 'Arab Law Quarterly', 15730255, 0.151, 'Q3', 13, 35, 1896, 19, 56, '16', '1980, 1985, 1987-2004, 2006-2020', 'Law (Q3)'), (19789, 'Bio-Algorithms and Med-Systems', 1896530, 0.151, 'Q4', 8, 29, 942, 39, 68, '5', '2012-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Health Informatics (Q4); Medicine (miscellaneous) (Q4)'), (19790, 'Canadian Journal of Dental Hygiene', 1712171, 0.151, 'Q4', 4, 18, 537, 14, 39, '9', '2015-2020', 'Dentistry (miscellaneous) (Q4)'), (19791, 'Canadian Journal of Information and Library S', 1195096, 0.151, 'Q3', 18, 5, 305, 11, 32, '9', '1993-2019', 'Library and Information Sciences (Q3); Information Systems (Q4)'), (19792, 'Communications in Statistics Case Studies Dat', 23737484, 0.151, 'Q4', 5, 35, 911, 18, 52, '3', '2015-2020', 'Analysis (Q4); Applied Mathematics (Q4); Statistics and Probability (Q4)'), (19793, 'Cultural and Social History', 14780038, 0.151, 'Q2', 17, 40, 262, 34, 104, '3', '2008-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (19794, 'Current Materials Science', 26661462, 0.151, 'Q4', 14, 13, 545, 20, 40, '16', '2019-2020', 'Materials Science (miscellaneous) (Q4)'), (19795, 'Current Psychiatry', 15378276, 0.151, 'Q4', 10, 114, 1195, 78, 249, '2', '2011-2020', 'Psychiatry and Mental Health (Q4)'), (19796, 'Defence S and T Technical Bulletin', 19856571, 0.151, 'Q4', 10, 30, 962, 23, 86, '23', '2008-2020', 'Engineering (miscellaneous) (Q4)'), (19797, 'Deutsche Medizinische Wochenschrift', 120472, 0.151, 'Q4', 40, 404, 4447, 319, 759, '5', '1875-1944, 1946-2020', 'Medicine (miscellaneous) (Q4)'), (19798, 'Electrolyte and Blood Pressure', 17385997, 0.151, 'Q4', 19, 9, 225, 16, 23, '13', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4); Physiology (Q4)'), (19799, 'Enfermeria Global', 16956141, 0.151, 'Q4', 7, 80, 2021, 80, 230, '12', '2012-2020', 'Nursing (miscellaneous) (Q4)'), (19800, 'European Pharmaceutical Journal', 24536725, 0.151, 'Q3', 7, 11, 303, 18, 35, '5', '2016-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3)'), (19801, 'Federal Register', 976326, 0.151, 'Q3', 49, 4, 35, 162, 688, '2', '1973-2019', 'Law (Q3); Public Administration (Q4)'), (19802, 'Forum Geografic', 15831523, 0.151, 'Q4', 2, 19, 717, 13, 52, '43', '2017-2019', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4); Global and Planetary Change (Q4)'), (19803, 'Gestion y Politica Publica', 14051079, 0.151, 'Q3', 9, 14, 797, 14, 55, '30', '1995-2020', 'Political Science and International Relations (Q3); Public Administration (Q4)'), (19804, 'Indian Journal of Horticulture', 18758711, 0.151, 'Q4', 13, 106, 2039, 74, 359, '4', '2009-2020', 'Horticulture (Q4)'), (19805, 'Indian Journal of Social Work', 195634, 0.151, 'Q3', 8, 26, 606, 14, 88, '4', '1945-1948, 1977, 1982, 1991, 1996-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3); Social Work (Q4)'), (19806, 'International Journal of Data Mining, Modelli', 17591163, 0.151, 'Q4', 14, 19, 848, 34, 52, '19', '2008-2014', 'Computer Science Applications (Q4); Management Information Systems (Q4); Modeling and Simulation (Q4)'), (19807, 'International Journal of E-Health and Medical', 19473168, 0.151, 'Q4', 12, 24, 861, 57, 62, '2', '2010-2020', 'Computer Science Applications (Q4); Health Informatics (Q4)'), (19808, 'International Journal of Nanotechnology', 14757435, 0.151, 'Q4', 35, 57, 1388, 156, 259, '3', '2004-2014', 'Bioengineering (Q4); Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Materials Chemistry (Q4); Nanoscience and Nanotechnology (Q4)'), (19809, 'International Journal of Sustainable Developm', 9601406, 0.151, 'Q4', 27, 7, 491, 11, 35, '3', '1999-2014', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (19810, 'International Journal of Transpersonal Studie', 13210122, 0.151, 'Q2', 8, 0, 0, 19, 61, '2', '2011-2019', 'Philosophy (Q2); Religious Studies (Q2); Applied Psychology (Q4)'), (19811, 'IPPR Progressive Review', 25732331, 0.151, 'Q3', 5, 47, 0, 28, 78, '2', '2017-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19812, 'JMV-Journal de Medecine Vasculaire', 25424513, 0.151, 'Q4', 24, 69, 1576, 49, 94, '8', '2017-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19813, 'Journal of Babol University of Medical Scienc', 15614107, 0.151, 'Q4', 14, 61, 1722, 98, 302, '15', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (19814, 'Journal of Communicable Diseases', 195138, 0.151, 'Q4', 26, 46, 945, 25, 99, '4', '1973-1977, 1979-2020', 'Infectious Diseases (Q4)'), (19815, 'Journal of Hygienic Engineering and Design', 18578489, 0.151, 'Q4', 5, 40, 1023, 80, 206, '100', '2016-2020', 'Food Science (Q4); Safety, Risk, Reliability and Quality (Q4)'), (19816, 'Journal of Information Technology Teaching Ca', 20438869, 0.151, 'Q3', 5, 24, 309, 29, 41, '19', '2014-2020', 'Library and Information Sciences (Q3); Education (Q4)'), (19817, 'Journal of Laboratory Medicine', 25679449, 0.151, 'Q4', 3, 48, 1645, 25, 70, '5', '2018-2020', 'Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Discrete Mathematics and Combinatorics (Q4)'), (19818, 'Journal of Music, Technology and Education', 17527074, 0.151, 'Q2', 11, 6, 175, 17, 45, '3', '2012-2019', 'Music (Q2); Computer Science Applications (Q4); Education (Q4)'), (19819, 'Journal of perioperative practice', 17504589, 0.151, 'Q3', 17, 108, 1769, 58, 214, '3', '2006-2020', 'Medical and Surgical Nursing (Q3); Anesthesiology and Pain Medicine (Q4); Medicine (miscellaneous) (Q4); Surgery (Q4)'), (19820, 'Journal of Qur anic Studies', 17551730, 0.151, 'Q2', 6, 22, 1070, 16, 52, '3', '2012-2019', 'Religious Studies (Q2)'), (19821, 'Journal of Telecommunications and Information', 15094553, 0.151, 'Q4', 12, 46, 1447, 104, 141, '17', '2012-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)'), (19822, 'Journal of the History of Collections', 14778564, 0.151, 'Q2', 12, 40, 3229, 17, 83, '3', '1989-1994, 1996-2019', 'Visual Arts and Performing Arts (Q2); Conservation (Q3); Museology (Q3)'), (19823, 'Journal of the National Science Foundation of', 13914588, 0.151, 'Q3', 18, 42, 1186, 94, 142, '76', '1999-2020', 'Multidisciplinary (Q3)'), (19824, 'Journal of Web Engineering', 15409589, 0.151, 'Q4', 13, 45, 1399, 48, 72, '2', '2008-2019', 'Computer Networks and Communications (Q4); Information Systems (Q4); Software (Q4)'), (19825, 'Korean Journal of Defense Analysis', 19414641, 0.151, 'Q3', 11, 30, 1116, 21, 86, '13', '1996-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3); Safety Research (Q4)'), (19826, 'Law and Financial Markets Review', 17521459, 0.151, 'Q3', 7, 25, 0, 23, 59, '3', '2007, 2014-2020', 'Law (Q3); Finance (Q4)'), (19827, 'Lengua y Habla', 2244811, 0.151, 'Q2', 3, 0, 0, 17, 67, '94', '2013-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q3)'), (19828, 'Linchan Huaxue Yu Gongye/Chemistry and Indust', 2532417, 0.151, 'Q4', 10, 100, 2602, 120, 328, '1', '1997-2006, 2013-2020', 'Fluid Flow and Transfer Processes (Q4); Forestry (Q4)'), (19829, 'Lua Nova', 1026445, 0.151, 'Q3', 13, 30, 1215, 22, 91, '14', '2006-2020', 'Sociology and Political Science (Q3)'), (19830, 'Mainzer Geowissenschaftliche Mitteilungen', 3404404, 0.151, 'Q4', 12, 7, 369, 7, 20, '5', '1992-2002, 2004-2019', 'Paleontology (Q4); Stratigraphy (Q4); Water Science and Technology (Q4)'), (19831, 'MHSalud', 1659097, 0.151, 'Q4', 2, 14, 614, 9, 10, '95', '2019-2020', 'Biophysics (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4)'), (19832, 'Open Cultural Studies', 24513474, 0.151, 'Q3', 3, 63, 2155, 18, 122, '5', '2017-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3)'), (19833, 'Pakistan Journal of Phytopathology', 23050284, 0.151, 'Q4', 3, 11, 306, 26, 95, '34', '2017-2020', 'Agronomy and Crop Science (Q4); Plant Science (Q4)'), (19834, 'Proceedings of the Pakistan Academy of Scienc', 2518427, 0.151, 'Q4', 6, 19, 845, 47, 75, '34', '2016-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (19835, 'Przeglad Strategiczny', 20846991, 0.151, 'Q3', 2, 29, 975, 12, 91, '17', '2016-2019', 'Political Science and International Relations (Q3)'), (19836, 'Queen Mary Journal of Intellectual Property', 20459815, 0.151, 'Q3', 7, 27, 0, 18, 68, '3', '2011-2020', 'Law (Q3)'), (19837, 'Revista Espanola de Linguistica Aplicada', 22546774, 0.151, 'Q2', 7, 40, 1804, 17, 46, '12', '2008-2016, 2018-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q3); E-learning (Q4)'), (19838, 'SAE International Journal of Aerospace', 19463855, 0.151, 'Q4', 17, 6, 123, 27, 27, '2', '2008-2020', 'Aerospace Engineering (Q4)'), (19839, 'Seminars in Spine Surgery', 15584496, 0.151, 'Q4', 15, 35, 1654, 21, 118, '3', '1990-2020', 'Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (19840, 'Ship Building of China', 10004882, 0.151, 'Q4', 7, 122, 1865, 88, 445, '1', '2013-2020', 'Mechanical Engineering (Q4)'), (19841, 'Signo y Pensamiento', 1204823, 0.151, 'Q3', 5, 0, 0, 23, 47, '47', '2014-2019', 'Communication (Q3); Linguistics and Language (Q3)'), (19842, 'Topics in Clinical Nutrition', 8835691, 0.151, 'Q4', 13, 37, 1223, 32, 88, '2', '1986-1995, 2006-2020', 'Nutrition and Dietetics (Q4)'), (19843, 'Tumu yu Huanjing Gongcheng Xuebao/Journal of ', 20966717, 0.151, 'Q3', 3, 139, 4100, 44, 112, '1', '2019-2020', 'Architecture (Q3); Building and Construction (Q4); Civil and Structural Engineering (Q4)'), (19844, 'Voprosy Istorii', 428779, 0.151, 'Q2', 4, 456, 2278, 23, 548, '10', '1965, 1972, 1975, 1978-1982, 1985, 1988, 1999-2002, 2017-2020', 'History (Q2); Medicine (miscellaneous) (Q4)'), (19845, 'Voprosy Virusologii', 5074088, 0.151, 'Q4', 15, 34, 996, 40, 116, '10', '1956-2020', 'Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Virology (Q4)'), (19846, 'Acta Comportamentalia', 1888145, 0.15, 'Q2', 3, 20, 816, 18, 96, '30', '2017-2020', 'Language and Linguistics (Q2); Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Education (Q4)'), (19847, 'Advances in peritoneal dialysis. Conference o', 11978554, 0.15, 'Q4', 32, 0, 0, 13, 31, '9', '1989-2018', 'Medicine (miscellaneous) (Q4)'), (19848, 'Africa Review', 9744061, 0.15, 'Q2', 6, 19, 1072, 19, 38, '3', '2009-2011, 2013, 2016-2020', 'History (Q2); Political Science and International Relations (Q3); Development (Q4)'), (19849, 'ArcheoSciences', 19601360, 0.15, 'Q3', 7, 0, 0, 10, 30, '8', '2011-2018', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (19850, 'Archives of Veterinary Science', 1517784, 0.15, 'Q4', 9, 73, 1373, 28, 128, '14', '2007-2020', 'Veterinary (miscellaneous) (Q4)'), (19851, 'Biblica', 60887, 0.15, 'Q2', 10, 17, 918, 8, 83, '7', '2002-2020', 'Religious Studies (Q2)'), (19852, 'Classical Antiquity', 10678344, 0.15, 'Q1', 30, 0, 0, 8, 30, '2', '1982-2019', 'Classics (Q1)'), (19853, 'Communication Law and Policy', 15326926, 0.15, 'Q3', 11, 53, 0, 14, 40, '2', '2005-2020', 'Communication (Q3); Law (Q3)'), (19854, 'Desenvolvimento e Meio Ambiente', 21769109, 0.15, 'Q4', 3, 80, 3764, 48, 170, '14', '2018-2020', 'Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (19855, 'Development', 10116370, 0.15, 'Q4', 36, 43, 941, 25, 78, '3', '1984-1985, 1988-2020', 'Development (Q4); Geography, Planning and Development (Q4)'), (19856, 'Development and Learning in Organizations', 14777282, 0.15, 'Q3', 15, 102, 226, 87, 217, '3', '2003-2020', 'Library and Information Sciences (Q3); Organizational Behavior and Human Resource Management (Q4)'), (19857, 'Electronic Letters on Computer Vision and Ima', 15775097, 0.15, 'Q4', 11, 17, 456, 31, 31, '12', '2011-2020', 'Computer Vision and Pattern Recognition (Q4); Software (Q4)'), (19858, 'Elektrotechnik und Informationstechnik', 932383, 0.15, 'Q4', 19, 77, 1366, 116, 204, '28', '1988-1990, 2005-2020', 'Electrical and Electronic Engineering (Q4)'), (19859, 'Ethnologia Europaea', 16043030, 0.15, 'Q2', 13, 34, 1691, 13, 30, '25', '1987, 2002-2018, 2020', 'Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (19860, 'European Journal of Adapted Physical Activity', 18033857, 0.15, 'Q4', 5, 7, 260, 15, 29, '31', '2015-2020', 'Education (Q4); Health (social science) (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Social Psychology (Q4)'), (19861, 'European Journal of Gynaecological Oncology', 3922936, 0.15, 'Q4', 45, 199, 4422, 120, 543, '9', '1980-2020', 'Obstetrics and Gynecology (Q4); Oncology (Q4)'), (19862, 'Fabad Journal of Pharmaceutical Sciences', 13004182, 0.15, 'Q3', 16, 27, 1325, 31, 71, '18', '1999-2001, 2003-2020', 'Pharmaceutical Science (Q3)'), (19863, 'German History', 2663554, 0.15, 'Q2', 18, 18, 1898, 14, 60, '3', '1984-1994, 1996-2020', 'History (Q2)'), (19864, 'Graeco-Latina Brunensia', 18037402, 0.15, 'Q1', 4, 14, 628, 12, 91, '31', '2012-2020', 'Classics (Q1); History (Q2); Language and Linguistics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Linguistics and Language (Q3)'), (19865, 'Hitotsubashi Journal of Economics', 18280, 0.15, 'Q4', 11, 8, 423, 16, 30, '6', '1996-2019', 'Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4)'), (19866, 'Indian Journal of Agricultural Economics', 195014, 0.15, 'Q4', 18, 0, 0, 13, 43, '4', '1978-2015, 2017-2018', 'Development (Q4); Geography, Planning and Development (Q4)'), (19867, 'Indian Journal of Chemistry - Section B Organ', 3764699, 0.15, 'Q3', 47, 1, 18, 44, 80, '4', '1970, 1973-1978, 1981, 1989-1991, 1996-2018, 2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Organic Chemistry (Q4)'), (19868, 'International Journal of Advances in Soft Com', 20748523, 0.15, 'Q4', 18, 15, 311, 76, 97, '62', '2009-2020', 'Computer Science Applications (Q4)'), (19869, 'International Journal of Business Science and', 17530296, 0.15, 'Q4', 15, 5, 443, 12, 12, '3', '2009-2019', 'Business and International Management (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)'), (19870, 'International Journal of Grid and High Perfor', 19380259, 0.15, 'Q4', 12, 18, 545, 34, 65, '2', '2009-2020', 'Computer Networks and Communications (Q4)'), (19871, 'International Journal of Power and Energy Sys', 10783466, 0.15, 'Q4', 17, 8, 162, 34, 60, '9', '1996-2020', 'Applied Mathematics (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)'), (19872, 'International Journal of Practice-Based Learn', 20516223, 0.15, 'Q4', 3, 15, 533, 9, 15, '3', '2019-2020', 'Education (Q4); Fundamentals and Skills (Q4); Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4); Research and Theory (Q4)'), (19873, 'International Journal of Sustainable Building', 20937628, 0.15, 'Q4', 15, 18, 553, 26, 70, '3', '2010-2020', 'Building and Construction (Q4)'), (19874, 'Issues and Studies', 10132511, 0.15, 'Q3', 18, 21, 1045, 13, 48, '22', '1972-1975, 1978, 1980, 1985, 1995-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (19875, 'Jisuanji Fuzhu Sheji Yu Tuxingxue Xuebao/Jour', 10039775, 0.15, 'Q4', 26, 213, 5836, 391, 770, '1', '2001-2020', 'Computer Graphics and Computer-Aided Design (Q4); Software (Q4)'), (19876, 'Journal of Formalized Reasoning', 19725787, 0.15, 'Q4', 8, 1, 23, 10, 9, '7', '2013-2019', 'Computer Science (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)'), (19877, 'Journal of Integrated Design and Process Scie', 10920617, 0.15, 'Q4', 18, 12, 515, 31, 44, '16', '1999-2020', 'Engineering (miscellaneous) (Q4)'), (19878, 'Journal of Musicology', 15338347, 0.15, 'Q2', 16, 7, 492, 12, 44, '2', '1982-1999, 2001-2020', 'Music (Q2)'), (19879, 'Journal of Sichuan University (Medical Scienc', 1672173, 0.15, 'Q4', 16, 148, 2960, 152, 481, '1', '2003-2020', 'Medicine (miscellaneous) (Q4); Molecular Biology (Q4)'), (19880, 'Journal of the Chemical Society of Pakistan', 2535106, 0.15, 'Q4', 24, 100, 3422, 185, 383, '34', '1996-2020', 'Chemistry (miscellaneous) (Q4)'), (19881, 'Linguistics in the Netherlands', 9297332, 0.15, 'Q2', 14, 12, 272, 7, 31, '16', '1996-2017, 2019', 'Language and Linguistics (Q2); Linguistics and Language (Q3); Multidisciplinary (Q3); Social Sciences (miscellaneous) (Q3); Health Professions (miscellaneous) (Q4); Psychology (miscellaneous) (Q4)'), (19882, 'Mentalhigiene es Pszichoszomatika', 17863759, 0.15, 'Q4', 11, 14, 913, 11, 53, '50', '2007-2020', 'Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)'), (19883, 'Nephro-Urology Monthly', 22517014, 0.15, 'Q4', 18, 32, 732, 49, 118, '16', '2011-2020', 'Urology (Q4)'), (19884, 'Nurse Practitioner', 3611817, 0.15, 'Q4', 21, 118, 616, 85, 284, '2', '1975-2020', 'Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)'), (19885, 'Occupational Ergonomics', 13599364, 0.15, 'Q4', 17, 0, 0, 5, 10, '16', '1998, 2000-2002, 2004-2008, 2011, 2018', 'Advanced and Specialized Nursing (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4); Rehabilitation (Q4)'), (19886, 'Open Biomedical Engineering Journal', 18741207, 0.15, 'Q4', 22, 7, 288, 65, 33, '52', '2009-2020', 'Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)'), (19887, 'Open Cybernetics and Systemics Journal', 1874110, 0.15, 'Q4', 8, 0, 0, 15, 17, '16', '2011-2018', 'Control and Systems Engineering (Q4); Mathematics (miscellaneous) (Q4)'), (19888, 'Pallas', 310387, 0.15, 'Q1', 4, 32, 1708, 11, 121, '8', '2011, 2013-2019', 'Classics (Q1)'), (19889, 'Perfiles Latinoamericanos', 1887653, 0.15, 'Q3', 9, 15, 919, 44, 92, '30', '2008-2020', 'Sociology and Political Science (Q3)'), (19890, 'Philologia Estonica Tallinnensis', 25046624, 0.15, 'Q1', 2, 0, 0, 5, 24, '71', '2016-2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q3); Education (Q4)'), (19891, 'Revista Alergia Mexico', 25151, 0.15, 'Q4', 15, 51, 1618, 87, 167, '30', '1961, 1964-2020', 'Immunology and Allergy (Q4)'), (19892, 'Revista Andaluza de Medicina del Deporte', 18887546, 0.15, 'Q4', 13, 48, 1140, 41, 133, '12', '2008-2019', 'Orthopedics and Sports Medicine (Q4); Physiology (medical) (Q4); Sports Science (Q4)'), (19893, 'Revista Cubana de Pediatria', 347531, 0.15, 'Q4', 10, 98, 2302, 38, 154, '85', '1946-1963, 1972-1977, 1988-1991, 1996-2002, 2005-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (19894, 'Revue de Qumran', 351725, 0.15, 'Q2', 12, 0, 0, 6, 31, '8', '2002-2007, 2009-2010, 2012-2018', 'Religious Studies (Q2)'), (19895, 'Rutgers Business Review', 24742376, 0.15, 'Q4', 3, 32, 885, 14, 60, '2', '2016-2020', 'Business and International Management (Q4); Strategy and Management (Q4)'), (19896, 'Rynek Energii', 14255960, 0.15, 'Q4', 17, 7, 169, 12, 82, '17', '2008-2020', 'Energy (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)'), (19897, 'Scopus: Journal of East African Ornithology', 23131799, 0.15, 'Q4', 4, 21, 290, 7, 30, '72', '2009-2011, 2013-2020', 'Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (19898, 'Sibirskiy Psikhologicheskiy Zhurnal', 17267080, 0.15, 'Q4', 2, 31, 941, 14, 32, '10', '2019', 'Psychology (miscellaneous) (Q4)'), (19899, 'Skinmed', 15409740, 0.15, 'Q4', 26, 82, 411, 85, 217, '2', '2003-2008, 2010-2020', 'Dermatology (Q4); Immunology and Allergy (Q4); Medicine (miscellaneous) (Q4)'), (19900, 'Societes Contemporaines', 11501944, 0.15, 'Q3', 17, 35, 852, 11, 53, '8', '2001-2019', 'Sociology and Political Science (Q3)'), (19901, 'Sociologia e Ricerca Sociale', 11211148, 0.15, 'Q3', 2, 22, 1107, 12, 70, '7', '2016-2020', 'Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (19902, 'South African Journal of Childhood Education', 22237674, 0.15, 'Q4', 2, 46, 2264, 26, 62, '27', '2019-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (19903, 'Statistica e Applicazioni', 18246672, 0.15, 'Q4', 11, 1, 14, 5, 18, '7', '2003-2018', 'Statistical and Nonlinear Physics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (19904, 'Tuning Journal for Higher Education', 23863137, 0.15, 'Q4', 2, 13, 358, 9, 23, '12', '2018-2019', 'Education (Q4); Management of Technology and Innovation (Q4)'), (19905, 'Tydskrif vir Letterkunde', 41476, 0.15, 'Q1', 5, 23, 548, 9, 77, '27', '2008-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2)'), (19906, 'Acta Phlebologica', 1593232, 0.149, 'Q4', 9, 14, 199, 13, 49, '7', '2013-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19907, 'Anaesthesia and Intensive Care Medicine', 14720299, 0.149, 'Q4', 15, 117, 1041, 155, 391, '3', '2003-2020', 'Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)'), (19908, 'Anthropological Notebooks', 1408032, 0.149, 'Q3', 12, 0, 0, 29, 62, '60', '2010-2019', 'Anthropology (Q3)'), (19909, 'Arab Journal of Plant Protection', 24125407, 0.149, 'Q4', 2, 37, 1046, 18, 99, '70', '2017-2020', 'Agronomy and Crop Science (Q4); Ecology (Q4); Horticulture (Q4); Insect Science (Q4); Plant Science (Q4)'), (19910, 'Archivos de Cardiologia de Mexico', 14059940, 0.149, 'Q4', 17, 134, 2205, 68, 245, '30', '2001-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (19911, 'Australian Historical Studies', 19405049, 0.149, 'Q2', 18, 32, 0, 27, 82, '3', '1988-2004, 2006-2020', 'History (Q2)'), (19912, 'Bulletin of Geography, Physical Geography Ser', 23008490, 0.149, 'Q4', 2, 9, 423, 8, 16, '17', '2019-2020', 'Geography, Planning and Development (Q4); Geophysics (Q4)'), (19913, 'Canadian Journal of Learning and Technology', 14996685, 0.149, 'Q4', 2, 14, 538, 12, 29, '9', '2018-2020', 'Computer Science Applications (Q4); Education (Q4); Management of Technology and Innovation (Q4)'), (19914, 'Capitale Culturale', 20392362, 0.149, 'Q2', 3, 93, 3197, 19, 119, '7', '2018-2020', 'History (Q2); Archeology (arts and humanities) (Q3); Arts and Humanities (miscellaneous) (Q3); Conservation (Q3); Museology (Q3); Tourism, Leisure and Hospitality Management (Q4)'), (19915, 'Chimica Oggi', 392839, 0.149, 'Q4', 29, 43, 421, 74, 257, '7', '1990-1991, 1996-2020', 'Chemistry (miscellaneous) (Q4)'), (19916, 'Chinese Pharmaceutical Journal', 10012494, 0.149, 'Q3', 21, 325, 7585, 284, 1047, '1', '1993-2020', 'Pharmaceutical Science (Q3); Pharmacology (Q4)'), (19917, 'Ciencia y Enfermeria', 7172079, 0.149, 'Q4', 14, 33, 1026, 29, 70, '45', '2002, 2006-2020', 'Nursing (miscellaneous) (Q4)'), (19918, 'Computing and Informatics', 13359150, 0.149, 'Q4', 28, 26, 807, 102, 181, '53', '2000-2020', 'Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Software (Q4)'), (19919, 'CTBUH Journal', 19461194, 0.149, 'Q3', 7, 0, 0, 6, 9, '2', '2011-2017, 2019', 'Architecture (Q3); Urban Studies (Q3); Building and Construction (Q4)'), (19920, 'Current Trends in Biotechnology and Pharmacy', 22307303, 0.149, 'Q3', 13, 46, 1463, 41, 102, '4', '2009-2020', 'Pharmaceutical Science (Q3); Biotechnology (Q4); Drug Discovery (Q4)'), (19921, 'Ecology, Environment and Conservation', 971765, 0.149, 'Q4', 15, 165, 3440, 251, 676, '4', '1997-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)'), (19922, 'Ethnologie Francaise', 462616, 0.149, 'Q2', 11, 40, 1325, 33, 162, '8', '1971, 1976, 1981, 2001-2020', 'Cultural Studies (Q2); Anthropology (Q3)'), (19923, 'Historia Contemporanea', 11302402, 0.149, 'Q2', 6, 30, 1122, 21, 74, '12', '2002, 2011-2020', 'History (Q2)'), (19924, 'Indian Journal of Community Health', 22489509, 0.149, 'Q4', 9, 142, 2389, 62, 231, '4', '2001, 2012-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (19925, 'Ingeniare', 7183291, 0.149, 'Q4', 12, 63, 1705, 77, 189, '45', '2008-2020', 'Engineering (miscellaneous) (Q4)'), (19926, 'Integrative Medicine', 1546993, 0.149, 'Q4', 13, 23, 636, 49, 123, '2', '2005-2010, 2013-2019', 'Complementary and Alternative Medicine (Q4)'), (19927, 'Inteligencia Artificial', 11373601, 0.149, 'Q4', 12, 20, 630, 31, 46, '12', '2004-2010, 2012-2020', 'Artificial Intelligence (Q4); Software (Q4)'), (19928, 'Inter-Asia Cultural Studies', 14649373, 0.149, 'Q2', 26, 51, 1262, 44, 127, '3', '2005-2020', 'Cultural Studies (Q2)'), (19929, 'International Journal of Biology and Biomedic', 19984510, 0.149, 'Q4', 6, 31, 1002, 33, 75, '2', '2014-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)'), (19930, 'International Journal of Computer Information', 21507988, 0.149, 'Q4', 6, 36, 1408, 70, 80, '2', '2015-2020', 'Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Information Systems (Q4); Management Information Systems (Q4); Signal Processing (Q4); Strategy and Management (Q4)'), (19931, 'International Journal of Industrial Engineeri', 20084889, 0.149, 'Q4', 2, 53, 1474, 19, 32, '15', '2019-2020', 'Industrial and Manufacturing Engineering (Q4); Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4); Strategy and Management (Q4)'), (19932, 'International Journal of Internet Protocol Te', 17438209, 0.149, 'Q4', 15, 29, 531, 46, 77, '3', '2006-2014, 2020', 'Computer Networks and Communications (Q4)'), (19933, 'International Journal of Public Law and Polic', 20447671, 0.149, 'Q3', 4, 0, 0, 4, 14, '19', '2011-2014', 'Law (Q3); Sociology and Political Science (Q3)'), (19934, 'International Journal of Systematic Theology', 14631652, 0.149, 'Q2', 13, 26, 0, 13, 57, '3', '1999-2020', 'Religious Studies (Q2)'), (19935, 'IPSJ Transactions on System LSI Design Method', 18826687, 0.149, 'Q4', 12, 10, 170, 14, 19, '6', '2008-2020', 'Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)'), (19936, 'Journal of Agricultural Sciences - Sri Lanka', 13919318, 0.149, 'Q4', 3, 41, 1175, 21, 41, '76', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (19937, 'Journal of Applied Business Research', 8927626, 0.149, 'Q4', 22, 17, 746, 83, 153, '2', '2005-2018', 'Business and International Management (Q4)'), (19938, 'Journal of Brand Strategy', 2045855, 0.149, 'Q3', 3, 41, 1007, 22, 50, '3', '2018-2020', 'Communication (Q3); Management of Technology and Innovation (Q4); Marketing (Q4); Social Psychology (Q4); Strategy and Management (Q4)'), (19939, 'Journal of Church and State', 21969, 0.149, 'Q2', 15, 23, 970, 11, 63, '2', '1959-1978, 1980-1992, 1994, 2002-2019', 'History (Q2); Religious Studies (Q2); Sociology and Political Science (Q3)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (19940, 'Journal of Morphological Sciences', 21770298, 0.149, 'Q4', 12, 0, 0, 35, 153, '14', '2010-2019', 'Anatomy (Q4); Cell Biology (Q4); Histology (Q4)'), (19941, 'Journal of Natural Disasters', 10044574, 0.149, 'Q4', 21, 0, 0, 107, 260, '1', '2003-2005, 2007-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (19942, 'Journal of Peer Learning', 22002359, 0.149, 'Q4', 1, 0, 0, 4, 4, '11', '2019', 'Education (Q4)'), (19943, 'Journal of Pure and Applied Microbiology', 9737510, 0.149, 'Q4', 16, 292, 10455, 356, 792, '4', '2007-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Microbiology (Q4)'), (19944, 'Journal of the Gilded Age and Progressive Era', 15377814, 0.149, 'Q2', 10, 59, 3345, 21, 76, '3', '2002-2020', 'History (Q2)'), (19945, 'Kao Teng Hsueh Hsiao Hua Heush Hsueh Pao/ Che', 2510790, 0.149, 'Q4', 24, 322, 13634, 567, 1015, '1', '1996-2020', 'Chemistry (miscellaneous) (Q4)'), (19946, 'Mathematics and Statistics', 23322071, 0.149, 'Q4', 3, 101, 2031, 26, 45, '2', '2019-2020', 'Economics and Econometrics (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (19947, 'Measurement Techniques', 5431972, 0.149, 'Q4', 20, 147, 2152, 196, 577, '2', '1958-2020', 'Applied Mathematics (Q4); Instrumentation (Q4)'), (19948, 'Monumenta Serica', 2549948, 0.149, 'Q1', 8, 18, 1351, 7, 44, '2', '1948-1949, 1956-1964, 1968-1969, 1972, 1974, 1976, 1979, 1981, 1984, 1986, 1988, 1990, 1992-2004, 20', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Philosophy (Q2); Religious Studies (Q2)'), (19949, 'Movement and Sports Sciences - Science et Mot', 21185735, 0.149, 'Q3', 11, 24, 0, 32, 83, '8', '2010-2020', 'Multidisciplinary (Q3); Social Sciences (miscellaneous) (Q3); Neuropsychology and Physiological Psychology (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitati'), (19950, 'Muttersprache', 27514, 0.149, 'Q2', 6, 23, 646, 6, 64, '5', '2002-2019', 'Language and Linguistics (Q2); Linguistics and Language (Q3)'), (19951, 'New Global Studies', 19400004, 0.149, 'Q3', 2, 26, 762, 7, 19, '5', '2019-2020', 'Social Sciences (miscellaneous) (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19952, 'Papers in Physics', 18524249, 0.149, 'Q4', 10, 6, 188, 14, 23, '46', '2009-2020', 'Materials Science (miscellaneous) (Q4); Physical and Theoretical Chemistry (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (19953, 'Procesamiento de Lenguaje Natural', 19897553, 0.149, 'Q2', 14, 39, 630, 49, 104, '12', '2011-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q3); Computer Science Applications (Q4)'), (19954, 'Psychoterapia', 2394170, 0.149, 'Q4', 7, 13, 238, 9, 71, '17', '2001-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (19955, 'Revista de Administracao Mackenzie', 15186776, 0.149, 'Q3', 10, 33, 1650, 55, 117, '14', '2018-2020', 'Sociology and Political Science (Q3); Business, Management and Accounting (miscellaneous) (Q4)'), (19956, 'Rivista Italiana della Medicina di Laboratori', 1825859, 0.149, 'Q4', 9, 20, 980, 18, 64, '7', '2005-2020', 'Biochemistry (medical) (Q4); Medical Laboratory Technology (Q4)'), (19957, 'Scando-Slavica', 806765, 0.149, 'Q1', 8, 12, 316, 10, 25, '3', '1954, 1956-1995, 1997-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Language and Linguistics (Q2); Archeology (arts and humanities) (Q3)'), (19958, 'Scire', 11353716, 0.149, 'Q3', 5, 13, 380, 11, 38, '12', '2011-2020', 'Communication (Q3); Library and Information Sciences (Q3)'), (19959, 'Shiyou Huagong Gaodeng Xuexiao Xuebao/Journal', 1006396, 0.149, 'Q4', 9, 93, 1893, 46, 293, '1', '2001-2020', 'Chemical Engineering (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)'), (19960, 'Sport in History', 17460271, 0.149, 'Q2', 17, 35, 217, 30, 63, '3', '2003-2020', 'History (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (19961, 'Studia Ceranea', 24498378, 0.149, 'Q2', 1, 31, 1647, 5, 34, '17', '2019', 'Cultural Studies (Q2); History (Q2); Religious Studies (Q2)'), (19962, 'Studia Islamika', 23556145, 0.149, 'Q2', 9, 18, 836, 18, 56, '21', '1994-1997, 1999-2005, 2010-2020', 'Religious Studies (Q2)'), (19963, 'Technical Services Quarterly', 7317131, 0.149, 'Q3', 17, 66, 546, 31, 168, '2', '1984-2020', 'Library and Information Sciences (Q3); Computer Science Applications (Q4)'), (19964, 'Technische Mechanik', 2323869, 0.149, 'Q4', 11, 19, 558, 49, 87, '5', '1981-1982, 1985, 2011-2020', 'Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (19965, 'Turkish Journal of Thoracic and Cardiovascula', 13015680, 0.149, 'Q4', 10, 79, 1432, 66, 295, '18', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)'), (19966, 'UPB Scientific Bulletin, Series D: Mechanical', 14542358, 0.149, 'Q4', 16, 101, 1795, 91, 270, '43', '1999-2020', 'Mechanical Engineering (Q4)'), (19967, 'Urbanism. Architecture. Constructions', 20696469, 0.149, 'Q3', 4, 10, 564, 24, 31, '43', '2018-2020', 'Architecture (Q3); Urban Studies (Q3); Building and Construction (Q4); Geography, Planning and Development (Q4)'), (19968, 'Vierteljahresschrift fur Sozial und Wirtschaf', 3410846, 0.149, 'Q2', 6, 7, 633, 6, 34, '5', '2002-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19969, 'Zywnosc. Nauka. Technologia. Jakosc/Food. Sci', 14256959, 0.149, 'Q4', 13, 38, 1276, 73, 150, '17', '2009-2020', 'Food Science (Q4); Industrial and Manufacturing Engineering (Q4)'), (19970, 'Academic Journal of Interdisciplinary Studies', 22813993, 0.148, 'Q3', 5, 131, 4381, 73, 148, '7', '2018-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Envi'), (19971, 'Acrocephalus', 3512851, 0.148, 'Q4', 4, 4, 159, 9, 34, '2', '1996, 2016-2020', 'Animal Science and Zoology (Q4)'), (19972, 'Acta Academiae Medicinae Sinicae', 1000503, 0.148, 'Q4', 16, 136, 1415, 135, 427, '1', '1979-2020', 'Medicine (miscellaneous) (Q4)'), (19973, 'Advances in Ophthalmology and Optometry', 24521760, 0.148, 'Q4', 3, 22, 1207, 16, 74, '2', '2016-2020', 'Ophthalmology (Q4); Optometry (Q4)'), (19974, 'Agrochimica', 21857, 0.148, 'Q4', 18, 2, 65, 28, 101, '7', '1973, 1981, 1983-1984, 1986-1989, 1993-2020', 'Agronomy and Crop Science (Q4); Food Science (Q4); Soil Science (Q4)'), (19975, 'ANAE - Approche Neuropsychologique des Appren', 999792, 0.148, 'Q4', 11, 62, 2196, 33, 182, '8', '1996-2019', 'Developmental and Educational Psychology (Q4); Neuropsychology and Physiological Psychology (Q4)'), (19976, 'Arete', 1016913, 0.148, 'Q2', 2, 16, 458, 7, 51, '68', '2013-2020', 'Philosophy (Q2)'), (19977, 'Bajo Palabra', 1887505, 0.148, 'Q2', 2, 38, 1393, 12, 164, '12', '2017-2019', 'Philosophy (Q2)'), (19978, 'Bulletin of the Iraq Natural History Museum', 10178678, 0.148, 'Q4', 3, 16, 487, 22, 53, '48', '2017-2020', 'Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Geology (Q4); Insect Science (Q4); Paleontology (Q4); Plant Science (Q4)'), (19979, 'Dalian Ligong Daxue Xuebao/Journal of Dalian ', 10008608, 0.148, 'Q4', 17, 82, 1691, 81, 276, '1', '1994-2020', 'Applied Mathematics (Q4); Engineering (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (19980, 'Ecological Genetics', 18110932, 0.148, 'Q4', 3, 36, 1649, 47, 95, '10', '2017-2020', 'Biochemistry (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Genetics (clinical) (Q4)'), (19981, 'Economic Annals', 133264, 0.148, 'Q4', 12, 22, 823, 20, 63, '55', '2007-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (19982, 'Electrica', 26199831, 0.148, 'Q4', 2, 24, 551, 12, 21, '18', '2019-2020', 'Electrical and Electronic Engineering (Q4)'), (19983, 'Ethik in der Medizin', 9357335, 0.148, 'Q2', 12, 37, 823, 20, 85, '5', '2001, 2005-2020', 'Philosophy (Q2); Health Policy (Q4); Health (social science) (Q4); Issues, Ethics and Legal Aspects (Q4)'), (19984, 'Ex Aequo', 21840385, 0.148, 'Q3', 1, 22, 738, 7, 42, '26', '2018-2019', 'Gender Studies (Q3)'), (19985, 'Gazeta de Antropologia', 2147564, 0.148, 'Q3', 5, 11, 306, 15, 42, '12', '2012-2018', 'Anthropology (Q3)'), (19986, 'Ibersid', 2174081, 0.148, 'Q3', 3, 8, 252, 10, 47, '12', '2012-2019', 'Communication (Q3); Library and Information Sciences (Q3); Computer Networks and Communications (Q4); Information Systems (Q4)'), (19987, 'International History Review', 7075332, 0.148, 'Q2', 21, 109, 786, 62, 160, '3', '1979-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (19988, 'International Journal of Automation and Smart', 22239766, 0.148, 'Q4', 10, 10, 289, 38, 64, '22', '2011-2020', 'Artificial Intelligence (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Human-Computer Interaction (Q4); Signal Processing (Q4)'), (19989, 'International Journal of Design Education', 2325128, 0.148, 'Q2', 3, 17, 574, 9, 53, '2', '2013-2020', 'Visual Arts and Performing Arts (Q2); Education (Q4)'), (19990, 'International Journal of Vehicle Performance', 17453194, 0.148, 'Q4', 6, 19, 985, 41, 60, '3', '2013-2020', 'Automotive Engineering (Q4); Computer Science Applications (Q4); Fuel Technology (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Modeling and Simulation (Q4); Safety, Risk, Reliability'), (19991, 'Journal of Economic Theory and Econometrics', 12292893, 0.148, 'Q4', 4, 16, 414, 6, 43, '13', '2008-2020', 'Economics and Econometrics (Q4)'), (19992, 'Journal of General Education, The', 213667, 0.148, 'Q4', 9, 7, 171, 10, 53, '2', '1975-1976, 1980, 2010-2019', 'Education (Q4)'), (19993, 'Journal of Theological Studies', 14774607, 0.148, 'Q2', 16, 13, 564, 14, 62, '3', '1899-1913, 1915-1995, 2002-2020', 'Religious Studies (Q2)'), (19994, 'Journal of Victorian Culture', 13555502, 0.148, 'Q1', 16, 26, 2057, 15, 92, '3', '1996-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2)'), (19995, 'Linacre quarterly, The', 20508549, 0.148, 'Q2', 9, 61, 1452, 33, 88, '3', '1945, 1947, 1950-1953, 1973-2006, 2008-2020', 'Philosophy (Q2); Health Policy (Q4)'), (19996, 'Natural History Bulletin of the Siam Society', 809462, 0.148, 'Q4', 6, 0, 0, 11, 21, '40', '2008, 2011-2018', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (19997, 'New Orleans Review', 286400, 0.148, 'Q1', 2, 0, 0, 3, 19, '2', '2002-2014, 2016-2017', 'Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q2)'), (19998, 'New Testament Studies', 14698145, 0.148, 'Q2', 20, 25, 892, 29, 111, '3', '1954-2020', 'History (Q2); Religious Studies (Q2)'), (19999, 'Pflege', 10125302, 0.148, 'Q4', 12, 63, 1138, 40, 149, '19', '1991-2020', 'Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)'), (20000, 'Politics and Religion Journal', 18206581, 0.148, 'Q2', 7, 22, 1009, 15, 67, '55', '2007-2020', 'Religious Studies (Q2); Sociology and Political Science (Q3)'), (20001, 'Revista de gastroenterologia del Peru : organ', 1609722, 0.148, 'Q4', 15, 48, 0, 35, 182, '68', '1989-1996, 2001-2020', 'Medicine (miscellaneous) (Q4)'), (20002, 'Romanian Agricultural Research', 20675720, 0.148, 'Q4', 11, 10, 236, 36, 80, '43', '2008-2020', 'Agronomy and Crop Science (Q4)'), (20003, 'Scandinavian Journal of the Old Testament', 9018328, 0.148, 'Q1', 11, 18, 0, 11, 52, '3', '1987-2020', 'Literature and Literary Theory (Q1); Religious Studies (Q2)'), (20004, 'Scandinavian Studies', 365637, 0.148, 'Q1', 10, 22, 996, 24, 74, '2', '1974, 1999, 2002-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q2); Linguistics and Language (Q3)'), (20005, 'Sistemi Intelligenti', 11209550, 0.148, 'Q2', 7, 15, 625, 15, 70, '7', '1997-2020', 'Language and Linguistics (Q2); Linguistics and Language (Q3); Artificial Intelligence (Q4); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4)'), (20006, 'South Asian Journal of Business and Managemen', 23210303, 0.148, 'Q4', 4, 25, 479, 23, 70, '3', '2012, 2015-2020', 'Business and International Management (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (20007, 'Studia Aurea', 24626813, 0.148, 'Q1', 1, 19, 1575, 6, 18, '12', '2019', 'Literature and Literary Theory (Q1); History (Q2)'), (20008, 'TB - Mitteilungen Forschen und Prufen', 30834, 0.148, 'Q4', 10, 0, 0, 11, 30, '5', '1974, 1976-1990, 1996-2018', 'Engineering (miscellaneous) (Q4); Instrumentation (Q4)'), (20009, 'Transactions on Electrical Engineering, Elect', 16859545, 0.148, 'Q4', 7, 20, 432, 46, 48, '40', '2011-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)'), (20010, 'Trashumante', 23229675, 0.148, 'Q2', 4, 20, 526, 6, 45, '47', '2013-2020', 'History (Q2); Social Sciences (miscellaneous) (Q3)'), (20011, 'US Cardiology Review', 17583896, 0.148, 'Q4', 3, 8, 309, 13, 59, '3', '2012, 2016-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (20012, 'Vnitrni Lekarstvi', 42773, 0.148, 'Q4', 17, 178, 2886, 125, 361, '31', '1955, 1961-2020', 'Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4)'), (20013, 'Acta Scientiarum Polonorum, Administratio Loc', 24500771, 0.147, 'Q3', 1, 16, 498, 5, 31, '17', '2019-2020', 'Urban Studies (Q3); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4); Transportation (Q4)'), (20014, 'Biopesticides International', 973483, 0.147, 'Q4', 6, 17, 763, 19, 44, '4', '2011-2020', 'Agronomy and Crop Science (Q4); Management, Monitoring, Policy and Law (Q4); Plant Science (Q4)'), (20015, 'Chinese Journal of Neurology', 10067876, 0.147, 'Q4', 10, 169, 4898, 210, 609, '1', '1959, 1997-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (20016, 'Clinical Pulmonary Medicine', 15365956, 0.147, 'Q4', 16, 47, 1359, 30, 146, '2', '1995-2020', 'Critical Care and Intensive Care Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)'), (20017, 'Curriculum Matters', 22532129, 0.147, 'Q4', 3, 0, 0, 10, 23, '41', '2015-2017', 'Education (Q4)'), (20018, 'Didactica Slovenica - Pedagoska Obzorja', 3531392, 0.147, 'Q4', 5, 12, 418, 19, 93, '60', '2008-2019', 'Education (Q4)'), (20019, 'Drug and Therapeutics Bulletin', 126543, 0.147, 'Q4', 16, 85, 1005, 69, 194, '3', '1965-2020', 'Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4)'), (20020, 'Ekoloji', 13001361, 0.147, 'Q4', 20, 0, 0, 403, 841, '18', '2006-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4); Pollution (Q4)'), (20021, 'Endoxa', 11335351, 0.147, 'Q2', 2, 21, 546, 8, 92, '12', '2015-2020', 'Philosophy (Q2)'), (20022, 'Forum for World Literature Studies', 21546711, 0.147, 'Q1', 3, 45, 969, 10, 137, '1', '2009-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2)'), (20023, 'Future of Food: Journal on Food, Agriculture ', 2197411, 0.147, 'Q4', 6, 15, 620, 24, 78, '5', '2013-2020', 'Agronomy and Crop Science (Q4); Ecology (Q4); Food Science (Q4)'), (20024, 'gis.Science - Die Zeitschrift fur Geoinformat', 18699391, 0.147, 'Q4', 3, 26, 501, 11, 42, '5', '2012-2020', 'Geography, Planning and Development (Q4); Information Systems (Q4)'), (20025, 'Hemijska Industrija', 350249, 0.147, 'Q4', 19, 33, 1305, 64, 124, '55', '1989, 2007-2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (20026, 'History of Science', 17538564, 0.147, 'Q2', 28, 39, 0, 25, 59, '2', '1962-1971, 1973-2020', 'History (Q2); History and Philosophy of Science (Q3)'), (20027, 'InterCeram: International Ceramic Review', 205214, 0.147, 'Q4', 16, 40, 0, 42, 91, '5', '1979, 1983-1986, 1993-2020', 'Ceramics and Composites (Q4); Inorganic Chemistry (Q4); Materials Chemistry (Q4)'), (20028, 'International Journal of Innovative Computing', 17516498, 0.147, 'Q4', 15, 25, 499, 29, 67, '3', '2007-2014', 'Hardware and Architecture (Q4); Software (Q4); Theoretical Computer Science (Q4)'), (20029, 'International Journal of Performability Engin', 9731318, 0.147, 'Q4', 23, 198, 4351, 450, 818, '4', '2005-2020', 'Safety, Risk, Reliability and Quality (Q4)'), (20030, 'International Journal on Technical and Physic', 20773528, 0.147, 'Q4', 2, 64, 945, 15, 38, '43', '2019-2020', 'Computer Science (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (20031, 'Italian Journal of Sociology of Education', 20354983, 0.147, 'Q3', 4, 34, 1734, 51, 108, '7', '2017-2020', 'Social Sciences (miscellaneous) (Q3); Education (Q4)'), (20032, 'Journal de Therapie Comportementale et Cognit', 11551704, 0.147, 'Q4', 8, 0, 0, 18, 56, '8', '2006-2019', 'Clinical Psychology (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20033, 'Journal of Arabic Literature', 852376, 0.147, 'Q1', 10, 13, 803, 4, 37, '16', '1970-1971, 1973-1974, 1976, 1978, 1980-1981, 1983-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2)'), (20034, 'Journal of Insect Biotechnology and Sericolog', 13468073, 0.147, 'Q4', 19, 9, 220, 12, 40, '6', '2001-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial and Man'), (20035, 'Journal of the Bombay Natural History Society', 66982, 0.147, 'Q4', 5, 30, 526, 13, 54, '4', '1981, 1984, 1990-1993, 2011-2019', 'Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)'), (20036, 'Kinesitherapie', 17790123, 0.147, 'Q4', 8, 114, 1516, 14, 240, '8', '2006-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (20037, 'Laeknabladid', 16704959, 0.147, 'Q4', 12, 173, 1219, 44, 233, '87', '1945-1946, 1948, 1955-1964, 1973-1974, 1983, 2005-2020', 'Medicine (miscellaneous) (Q4)'), (20038, 'Language and Sociocultural Theory', 20519699, 0.147, 'Q2', 8, 0, 0, 12, 24, '3', '2014-2019', 'Cultural Studies (Q2); Linguistics and Language (Q3)'), (20039, 'Materiali per una Storia della Cultura Giurid', 11209607, 0.147, 'Q3', 3, 15, 464, 14, 95, '7', '2015-2019', 'Law (Q3); Sociology and Political Science (Q3)'), (20040, 'Medico-Biological and Socio-Psychological Iss', 25417487, 0.147, 'Q4', 2, 40, 802, 14, 43, '10', '2019-2020', 'Clinical Psychology (Q4); Emergency Medical Services (Q4); Emergency Medicine (Q4); Psychiatry and Mental Health (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20041, 'Membrane Technology', 9582118, 0.147, 'Q4', 21, 4, 74, 20, 36, '16', '1990-2020', 'Chemistry (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Environmental Science (miscellaneous) (Q4); Food Science (Q4); Industrial and '), (20042, 'Natur und Landschaft', 280615, 0.147, 'Q4', 9, 28, 974, 19, 125, '5', '1979, 1981-1982, 2010-2020', 'Nature and Landscape Conservation (Q4)'), (20043, 'Nederlands Tijdschrift voor Geneeskunde', 282162, 0.147, 'Q4', 35, 687, 4459, 230, 1225, '16', '1946, 1948-2020', 'Medicine (miscellaneous) (Q4)'), (20044, 'New Journal of Botany', 20423497, 0.147, 'Q4', 4, 0, 0, 11, 17, '3', '2015-2017', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (20045, 'Nursing Practice Today', 23831154, 0.147, 'Q4', 3, 46, 1227, 17, 26, '15', '2019-2020', 'Nursing (miscellaneous) (Q4)'), (20046, 'Open Computer Science', 22991093, 0.147, 'Q4', 13, 39, 1803, 47, 49, '5', '2011-2020', 'Computer Science (miscellaneous) (Q4)'), (20047, 'Optica Pura y Aplicada', 303917, 0.147, 'Q4', 11, 19, 304, 26, 100, '12', '2007-2020', 'Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)'), (20048, 'Philosophia Reformata', 318035, 0.147, 'Q2', 5, 16, 374, 7, 32, '16', '2011-2019', 'Philosophy (Q2); Religious Studies (Q2)'), (20049, 'Postepy Psychiatrii i Neurologii', 12302813, 0.147, 'Q4', 7, 20, 717, 22, 75, '17', '2007-2020', 'Clinical Psychology (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (20050, 'Psychiatria', 17329841, 0.147, 'Q4', 7, 29, 748, 11, 108, '17', '2008-2020', 'Psychiatry and Mental Health (Q4)'), (20051, 'Quarterly Review of Film and Video', 15435326, 0.147, 'Q2', 8, 104, 3267, 19, 121, '3', '1989-1995, 2000-2003, 2006-2007, 2010-2020', 'Visual Arts and Performing Arts (Q2); Communication (Q3)'), (20052, 'Recent Patents on Mechanical Engineering', 1874477, 0.147, 'Q4', 11, 31, 2486, 55, 104, '52', '2009-2020', 'Mechanical Engineering (Q4)'), (20053, 'Rechtsgeschichte', 16194993, 0.147, 'Q2', 6, 39, 1448, 12, 134, '5', '2011-2019', 'History (Q2); Law (Q3)'), (20054, 'Review of English Studies, The', 14716968, 0.147, 'Q1', 16, 38, 2233, 12, 111, '3', '1925-1948, 1950-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20055, 'Revista Argentina de Ciencias del Comportamie', 18524206, 0.147, 'Q3', 3, 11, 603, 11, 30, '46', '2018-2020', 'Linguistics and Language (Q3); Behavioral Neuroscience (Q4); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4)'), (20056, 'Revista Cubana de Medicina General Integral', 8642125, 0.147, 'Q4', 13, 57, 1036, 30, 164, '85', '1996-2002, 2004-2020', 'Medicine (miscellaneous) (Q4)'), (20057, 'Rutgers University Law Review', 23743859, 0.147, 'Q3', 4, 0, 0, 7, 22, '2', '2015-2017', 'Law (Q3)'), (20058, 'Sociologias', 15174522, 0.147, 'Q3', 16, 44, 1663, 28, 109, '14', '2000-2020', 'Social Sciences (miscellaneous) (Q3)'), (20059, 'Soins Gerontologie', 12686034, 0.147, 'Q4', 6, 69, 615, 14, 170, '8', '1996-2020', 'Gerontology (Q4); Medicine (miscellaneous) (Q4)'), (20060, 'South African Journal for Research in Sport, ', 3799069, 0.147, 'Q4', 15, 10, 276, 57, 124, '27', '2008-2020', 'Education (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)'), (20061, 'Transactions of the Charles S Peirce Society', 91774, 0.147, 'Q2', 15, 20, 519, 26, 80, '2', '2002-2020', 'Philosophy (Q2)'), (20062, 'Turkish Journal of Biochemistry', 2504685, 0.147, 'Q4', 15, 107, 3260, 118, 267, '18', '2009-2020', 'Biochemistry (Q4); Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Molecular Biology (Q4)'), (20063, 'Ural-Altaic Studies', 20791003, 0.147, 'Q3', 5, 21, 725, 18, 82, '10', '2015-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20064, 'World s Veterinary Journal', 23224568, 0.147, 'Q4', 3, 65, 2628, 23, 43, '18', '2017-2020', 'Veterinary (miscellaneous) (Q4)'), (20065, 'Aging Medicine and Healthcare', 26638851, 0.146, 'Q4', 16, 25, 696, 40, 66, '22', '2019-2020', 'Geriatrics and Gerontology (Q4)'), (20066, 'Asclepio', 19883102, 0.146, 'Q3', 11, 27, 1492, 16, 67, '12', '1969-1974, 1976-1978, 1980-1997, 1999-2020', 'History and Philosophy of Science (Q3)'), (20067, 'Asian Journal of Comparative Law', 19320205, 0.146, 'Q3', 8, 8, 336, 18, 57, '3', '2009-2020', 'Law (Q3)'), (20068, 'Asian Women', 1225925, 0.146, 'Q3', 7, 22, 1047, 13, 50, '13', '2008-2020', 'Gender Studies (Q3); Sociology and Political Science (Q3)'), (20069, 'Composites Theory and Practice', 20846096, 0.146, 'Q4', 2, 13, 278, 9, 26, '17', '2019-2020', 'Ceramics and Composites (Q4); Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (20070, 'Computer Science Journal of Moldova', 15614042, 0.146, 'Q4', 2, 6, 104, 13, 17, '123', '2019', 'Artificial Intelligence (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Control and Opti'), (20071, 'Diritto Pubblico Comparato ed Europeo', 17204313, 0.146, 'Q3', 3, 18, 1481, 13, 133, '7', '2017-2019', 'Law (Q3)'), (20072, 'Duke Environmental Law and Policy Forum', 23289686, 0.146, 'Q3', 19, 7, 0, 8, 23, '2', '1996-2000, 2002-2020', 'Law (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (20073, 'Energetika', 2357208, 0.146, 'Q4', 8, 7, 88, 38, 54, '69', '1969, 1982, 1985, 1987, 2006-2011, 2013-2020', 'Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (20074, 'Equilibrium Research', 3855716, 0.146, 'Q4', 11, 47, 723, 18, 133, '6', '1971-1974, 1978-2020', 'Neurology (clinical) (Q4); Otorhinolaryngology (Q4)'), (20075, 'European Neurological Review', 17583837, 0.146, 'Q4', 11, 6, 262, 21, 62, '3', '2009-2019', 'Neurology (Q4); Neurology (clinical) (Q4)'), (20076, 'German Journal of Agricultural Economics', 21121, 0.146, 'Q4', 11, 1, 53, 21, 73, '5', '2011-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Economics and Econometrics (Q4)'), (20077, 'Historia Constitucional', 15764729, 0.146, 'Q2', 5, 23, 1132, 12, 86, '12', '2011-2019', 'History (Q2); Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (20078, 'Hydrologie und Wasserbewirtschaftung', 14391783, 0.146, 'Q4', 13, 1, 39, 7, 23, '5', '1999-2018', 'Water Science and Technology (Q4)'), (20079, 'Hyle', 14335158, 0.146, 'Q2', 17, 4, 113, 4, 11, '5', '1997-2002, 2004-2019', 'Philosophy (Q2); Chemistry (miscellaneous) (Q4)'), (20080, 'IAFOR Journal of Education', 21870594, 0.146, 'Q4', 3, 34, 1452, 19, 28, '6', '2018-2020', 'Education (Q4); Public Administration (Q4)'), (20081, 'International Journal of Critical Computer-Ba', 17578779, 0.146, 'Q4', 10, 3, 167, 21, 46, '19', '2010-2014', 'Computer Science (miscellaneous) (Q4)'), (20082, 'International Journal of Economics and Financ', 13098055, 0.146, 'Q4', 3, 36, 1251, 18, 27, '18', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (20083, 'International Journal of Environmental Scienc', 20100264, 0.146, 'Q4', 3, 93, 2080, 31, 80, '37', '2019-2020', 'Environmental Science (miscellaneous) (Q4)'), (20084, 'International Journal of Reliability and Safe', 1479389, 0.146, 'Q4', 19, 10, 321, 34, 54, '3', '2006-2014', 'Safety, Risk, Reliability and Quality (Q4)'), (20085, 'Investigacoes em Ensino de Ciencias', 15188795, 0.146, 'Q4', 1, 48, 2481, 6, 42, '14', '2019', 'Education (Q4)'), (20086, 'Italian Sociological Review', 22398589, 0.146, 'Q3', 6, 33, 1182, 14, 78, '7', '2011-2020', 'Social Sciences (miscellaneous) (Q3)'), (20087, 'Jingangshi yu Moliao Moju Gongcheng/Diamond a', 1006852, 0.146, 'Q4', 11, 101, 1726, 74, 311, '1', '2001-2020', 'Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (20088, 'Journal of African Languages and Linguistics', 16133811, 0.146, 'Q3', 12, 9, 360, 6, 23, '5', '1979-1989, 1991-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20089, 'Journal of Algebra and Applied Mathematics', 23197234, 0.146, 'Q4', 4, 10, 131, 5, 25, '4', '2012-2020', 'Algebra and Number Theory (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)'), (20090, 'Journal of Australian Political Economy', 1565826, 0.146, 'Q3', 13, 0, 0, 19, 39, '11', '2008-2019', 'Sociology and Political Science (Q3); Economics and Econometrics (Q4)'), (20091, 'Journal of Brachial Plexus and Peripheral Ner', 17497221, 0.146, 'Q4', 21, 6, 188, 10, 13, '3', '2006-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (20092, 'Journal of Dance and Somatic Practices', 17571871, 0.146, 'Q2', 5, 22, 556, 10, 53, '3', '2014-2020', 'Visual Arts and Performing Arts (Q2)'), (20093, 'Journal of Information and Organizational Sci', 18463312, 0.146, 'Q3', 13, 17, 583, 41, 41, '58', '2006-2020', 'Library and Information Sciences (Q3); Computer Science Applications (Q4); Information Systems (Q4)'), (20094, 'Journal of Interdisciplinary Economics', 2601079, 0.146, 'Q4', 9, 17, 631, 34, 33, '3', '2004-2020', 'Economics and Econometrics (Q4)'), (20095, 'Journal of Islamic Studies', 9552340, 0.146, 'Q1', 10, 10, 276, 11, 15, '3', '1990-1996, 2009-2016, 2018-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Religious Studies (Q2)'), (20096, 'Journal of Law and Religion', 21633088, 0.146, 'Q2', 15, 25, 1251, 17, 63, '3', '1983-1996, 1998-2010, 2012-2020', 'Religious Studies (Q2); Law (Q3)'), (20097, 'Journal of Low Power Electronics', 15462005, 0.146, 'Q4', 16, 0, 0, 88, 152, '2', '2008-2019', 'Electrical and Electronic Engineering (Q4)'), (20098, 'Journal of Ultrasonography', 2451070, 0.146, 'Q4', 3, 55, 1206, 37, 47, '17', '2019-2020', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (20099, 'Journal of War and Culture Studies', 17526272, 0.146, 'Q2', 6, 33, 1504, 23, 68, '3', '2013-2020', 'History (Q2); Anthropology (Q3); Political Science and International Relations (Q3)'), (20100, 'Judicature', 225800, 0.146, 'Q3', 20, 19, 241, 11, 81, '2', '1990, 1996-2019', 'Law (Q3)'), (20101, 'Juridicas', 17942918, 0.146, 'Q3', 2, 28, 1009, 5, 50, '47', '2012-2020', 'Law (Q3)'), (20102, 'Kesmas', 24600601, 0.146, 'Q4', 3, 50, 1406, 36, 95, '21', '2016-2020', 'Epidemiology (Q4); Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20103, 'Klinicheskaya Dermatologiya i Venerologiya', 19972849, 0.146, 'Q4', 2, 114, 2636, 14, 101, '10', '2019-2020', 'Dermatology (Q4); Infectious Diseases (Q4)'), (20104, 'Logique et Analyse', 245836, 0.146, 'Q2', 15, 0, 0, 19, 57, '24', '2002-2019', 'Philosophy (Q2)'), (20105, 'McKinsey Quarterly', 475394, 0.146, 'Q3', 34, 0, 0, 62, 117, '2', '2005-2019', 'Political Science and International Relations (Q3); Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (20106, 'Medicina Veterinaria (Brazil)', 18094678, 0.146, 'Q4', 4, 50, 1286, 15, 161, '14', '2008-2020', 'Veterinary (miscellaneous) (Q4)'), (20107, 'Medico e Bambino', 15913090, 0.146, 'Q4', 6, 109, 1153, 28, 247, '7', '2000-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (20108, 'Melanges de la Casa de Velazquez', 21731306, 0.146, 'Q1', 5, 47, 1065, 21, 101, '12', '1972, 2008-2011, 2013-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3)'), (20109, 'Middle East Journal of Digestive Diseases', 20085249, 0.146, 'Q4', 2, 40, 1187, 14, 29, '15', '2017, 2019-2020', 'Gastroenterology (Q4); Hepatology (Q4)'), (20110, 'Minerva Pneumologica', 264954, 0.146, 'Q4', 6, 20, 474, 31, 63, '7', '1972-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (20111, 'Motricidade', 21822972, 0.146, 'Q4', 12, 63, 2199, 57, 155, '26', '2011-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (20112, 'Multiphase Science and Technology', 2761459, 0.146, 'Q4', 22, 19, 500, 20, 41, '2', '1997-2020', 'Condensed Matter Physics (Q4); Engineering (miscellaneous) (Q4); Modeling and Simulation (Q4)'), (20113, 'Nordic Journal of Human Rights', 1891814, 0.146, 'Q3', 8, 10, 0, 29, 61, '3', '2010-2019', 'Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (20114, 'Organic Farming', 22976485, 0.146, 'Q4', 1, 3, 84, 3, 6, '19', '2019-2020', 'Agronomy and Crop Science (Q4); Food Science (Q4); Soil Science (Q4)'), (20115, 'Revista Baiana de Enfermagem', 21788650, 0.146, 'Q4', 2, 0, 0, 24, 82, '14', '2018-2019', 'Nursing (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20116, 'Revista em Agronegocio e Meio Ambiente', 21769168, 0.146, 'Q4', 7, 79, 2489, 35, 200, '14', '2008-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (20117, 'Revista Lusofona de Educacao', 1646401, 0.146, 'Q4', 9, 40, 786, 43, 145, '26', '2008-2020', 'Education (Q4)'), (20118, 'Revue d Assyriologie et d Archeologie Orienta', 3736032, 0.146, 'Q2', 7, 26, 1099, 6, 20, '8', '1960-1961, 1966, 1975, 1984, 2001-2013, 2015-2018, 2020', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20119, 'Revue d Intelligence Artificielle', 992499, 0.146, 'Q4', 14, 89, 2520, 126, 125, '8', '1995-2020', 'Artificial Intelligence (Q4); Software (Q4)'), (20120, 'Revue Medicale de Liege', 370629, 0.146, 'Q4', 21, 183, 1166, 96, 357, '24', '1947-2020', 'Medicine (miscellaneous) (Q4)'), (20121, 'Scientific Journal of Kurdistan University of', 1560652, 0.146, 'Q4', 9, 72, 2202, 62, 215, '15', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (20122, 'Shenzhen Daxue Xuebao (Ligong Ban)/Journal of', 10002618, 0.146, 'Q4', 10, 126, 2222, 65, 268, '1', '2006-2020', 'Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (20123, 'Studii de Preistorie', 20652534, 0.146, 'Q2', 3, 0, 0, 4, 23, '43', '2013-2015, 2017-2019', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20124, 'TAL Traitement Automatique des Langues', 12489433, 0.146, 'Q3', 8, 0, 0, 23, 35, '8', '2011-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Computer Science Applications (Q4)'), (20125, 'Technology Review', 1099274, 0.146, 'Q4', 18, 0, 0, 58, 170, '2', '1973-2019', 'Engineering (miscellaneous) (Q4)'), (20126, 'Teknik Dergi/Technical Journal of Turkish Cha', 13003453, 0.146, 'Q4', 7, 8, 292, 32, 77, '18', '1990-1994, 1997-1998, 2002-2020', 'Building and Construction (Q4); Civil and Structural Engineering (Q4)'), (20127, 'Tribologie und Schmierungstechnik', 7243472, 0.146, 'Q4', 9, 44, 501, 18, 117, '5', '1983-2019', 'Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)'), (20128, 'Veterinarija ir Zootechnika', 13922130, 0.146, 'Q4', 10, 10, 306, 8, 25, '69', '2008-2018', 'Veterinary (miscellaneous) (Q4)'), (20129, 'Vierteljahrshefte fur Zeitgeschichte', 425702, 0.146, 'Q2', 14, 32, 1387, 12, 78, '5', '1967, 1972, 1976-1977, 1981, 1984, 1986, 1998-1999, 2001-2020', 'History (Q2)'), (20130, 'Voprosy Detskoi Dietologii', 24149519, 0.146, 'Q4', 4, 57, 1925, 39, 149, '10', '2016-2020', 'Food Science (Q4); Nutrition and Dietetics (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (20131, 'Walailak Journal of Science and Technology', 2228835, 0.146, 'Q3', 15, 126, 4103, 131, 250, '40', '2012-2020', 'Multidisciplinary (Q3)'), (20132, 'Waldokologie Online', 1867710, 0.146, 'Q4', 10, 4, 228, 3, 10, '5', '2008-2011, 2013-2014, 2016, 2018', 'Ecological Modeling (Q4); Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (20133, 'Acta Veterinaria Brasilica', 19815484, 0.145, 'Q4', 8, 50, 1195, 20, 93, '14', '2011-2020', 'Veterinary (miscellaneous) (Q4)'), (20134, 'African Journal of Drug and Alcohol Studies', 15314065, 0.145, 'Q4', 9, 5, 177, 14, 36, '51', '2009-2019', 'Psychiatry and Mental Health (Q4)'), (20135, 'Anali Zavoda za Povijesne Znanosti Hrvatske A', 18487815, 0.145, 'Q1', 3, 10, 223, 6, 82, '58', '2015-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20136, 'Archives of the Balkan Medical Union', 15849244, 0.145, 'Q4', 8, 99, 2472, 80, 297, '43', '2003-2020', 'Medicine (miscellaneous) (Q4)'), (20137, 'Asian Journal of Chemistry', 9707077, 0.145, 'Q4', 34, 508, 16705, 744, 1579, '4', '1996-2020', 'Chemistry (miscellaneous) (Q4)'), (20138, 'Bulletin of the Physical Fitness Research Ins', 3899071, 0.145, 'Q4', 3, 3, 85, 6, 15, '6', '1972, 1974-1982, 1984-2000, 2002-2019', 'Orthopedics and Sports Medicine (Q4); Physiology (medical) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20139, 'Canadian journal of rural medicine : the offi', 12037796, 0.145, 'Q4', 20, 41, 0, 22, 57, '9', '2004-2020', 'Medicine (miscellaneous) (Q4)'), (20140, 'Caribbean Quarterly', 86495, 0.145, 'Q2', 9, 28, 0, 21, 63, '3', '1996-2020', 'Cultural Studies (Q2); History (Q2); Anthropology (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (20141, 'Chinese Journal of Engineering Design', 1006754, 0.145, 'Q4', 6, 93, 1774, 78, 274, '2', '2015-2020', 'Civil and Structural Engineering (Q4); Computational Mechanics (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)'), (20142, 'Clinical Lactation', 21580782, 0.145, 'Q4', 3, 24, 419, 17, 60, '2', '2017-2020', 'Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (20143, 'Cogitare Enfermagem', 14148536, 0.145, 'Q4', 3, 106, 2503, 45, 199, '14', '2017-2020', 'Nursing (miscellaneous) (Q4)'), (20144, 'Colombian Journal of Anesthesiology', 1203347, 0.145, 'Q4', 9, 49, 1040, 66, 179, '3', '2018-2020', 'Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)'), (20145, 'Computer Science', 23007036, 0.145, 'Q4', 5, 23, 892, 64, 72, '17', '2017-2020', 'Artificial Intelligence (Q4); Computational Theory and Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Computer Networks and Communications (Q4); Computer Science (miscellaneous) ('), (20146, 'Comunicacao e Sociedade', 21833575, 0.145, 'Q2', 2, 38, 1173, 10, 77, '26', '2017-2020', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Communication (Q3)'), (20147, 'Criminal Justice Ethics', 19375948, 0.145, 'Q3', 13, 7, 249, 9, 36, '3', '1982-2020', 'Law (Q3)'), (20148, 'Deutsche Lebensmittel-Rundschau', 120413, 0.145, 'Q3', 24, 347, 467, 18, 208, '5', '1948-1949, 1961, 1973-1989, 1996-2019', 'Law (Q3); Food Science (Q4); Industrial and Manufacturing Engineering (Q4)'), (20149, 'EAI Endorsed Transactions on Energy Web', 2032944, 0.145, 'Q4', 6, 63, 1765, 83, 118, '24', '2013-2020', 'Control and Systems Engineering (Q4); Energy Engineering and Power Technology (Q4); Information Systems (Q4); Marketing (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (20150, 'Epidemiologie, Mikrobiologie, Imunologie', 12107913, 0.145, 'Q4', 13, 26, 832, 39, 84, '31', '1994-2020', 'Epidemiology (Q4); Immunology and Allergy (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Microbiology (medical) (Q4)'), (20151, 'Eurasip Journal on Embedded Systems', 16873955, 0.145, 'Q4', 26, 0, 0, 46, 51, '2', '2006-2019', 'Computer Science (miscellaneous) (Q4); Control and Systems Engineering (Q4)'), (20152, 'Hong Kong Journal of Emergency Medicine', 10249079, 0.145, 'Q4', 12, 119, 2265, 51, 184, '35', '2004-2020', 'Emergency Medicine (Q4)'), (20153, 'Iluminace', 862397, 0.145, 'Q2', 3, 24, 11, 15, 56, '31', '2013-2020', 'Visual Arts and Performing Arts (Q2)'), (20154, 'Infectious Diseases in Clinical Practice', 10569103, 0.145, 'Q4', 21, 112, 1891, 68, 278, '2', '1992-2002, 2004-2020', 'Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (20155, 'International Journal of Microstructure and M', 17418410, 0.145, 'Q4', 14, 15, 333, 50, 98, '3', '2005-2014', 'Materials Science (miscellaneous) (Q4)'), (20156, 'Journal of Analysis and Applications', 9725954, 0.145, 'Q4', 6, 10, 118, 11, 25, '4', '2009-2010, 2012-2014, 2016-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (20157, 'Journal of Digital and Social Media Marketing', 20500084, 0.145, 'Q3', 2, 37, 840, 18, 55, '3', '2018-2020', 'Communication (Q3); Marketing (Q4)'), (20158, 'Journal of Electronic Commerce in Organizatio', 15392937, 0.145, 'Q4', 22, 16, 1247, 44, 70, '2', '2005-2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Marketing (Q4); Strategy and Management (Q4)'), (20159, 'Journal of ICT Research and Applications', 23375787, 0.145, 'Q4', 11, 12, 348, 55, 54, '21', '2013-2020', 'Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Information Systems and Management (Q4)'), (20160, 'Journal of Integrated OMICS', 21820287, 0.145, 'Q4', 12, 15, 304, 12, 30, '26', '2011-2020', 'Biochemistry (Q4); Genetics (Q4); Molecular Biology (Q4)'), (20161, 'Journal of Italian Cinema and Media Studies', 20477376, 0.145, 'Q2', 4, 36, 1205, 9, 66, '3', '2013-2020', 'Cultural Studies (Q2); Visual Arts and Performing Arts (Q2); Communication (Q3)'), (20162, 'Journal of Nursing', 47262, 0.145, 'Q4', 13, 79, 1272, 77, 241, '22', '1966, 1968-1981, 1989-1990, 1996-1997, 2004-2020', 'Nursing (miscellaneous) (Q4)'), (20163, 'Journal of Siberian Federal University: Chemi', 23136049, 0.145, 'Q4', 2, 54, 1216, 22, 53, '10', '2019', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (20164, 'Journal of the University of Malaya Medical C', 18237339, 0.145, 'Q4', 7, 57, 1432, 13, 41, '23', '1996-2000, 2002-2003, 2006-2020', 'Medicine (miscellaneous) (Q4)'), (20165, 'Journal of Uncertain Systems', 17528917, 0.145, 'Q4', 18, 0, 0, 44, 87, '3', '2011-2019', 'Artificial Intelligence (Q4); Computer Vision and Pattern Recognition (Q4); Control and Optimization (Q4)'), (20166, 'Latin American Business Review', 10978526, 0.145, 'Q4', 15, 23, 1496, 20, 46, '3', '1998, 2000-2020', 'Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4)'), (20167, 'Materials China', 16743962, 0.145, 'Q4', 11, 110, 5147, 165, 382, '1', '2013-2020', 'Materials Science (miscellaneous) (Q4); Nuclear Energy and Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)'), (20168, 'Nordic Journal of Aesthetics', 20009607, 0.145, 'Q2', 4, 15, 688, 6, 32, '25', '2008-2019', 'Philosophy (Q2); Visual Arts and Performing Arts (Q2)'), (20169, 'Open Dermatology Journal', 18743722, 0.145, 'Q4', 9, 9, 192, 14, 36, '16', '2010-2020', 'Dermatology (Q4)'), (20170, 'Revista de Derecho Administrativo Economico', 7174888, 0.145, 'Q3', 1, 11, 421, 2, 19, '45', '2019', 'Law (Q3); Public Administration (Q4)'), (20171, 'Sri Lankan Journal of Anaesthesiology', 22791965, 0.145, 'Q4', 4, 38, 476, 14, 99, '76', '2010-2020', 'Anesthesiology and Pain Medicine (Q4)'), (20172, 'Active and Passive Electronic Components', 8827516, 0.144, 'Q4', 22, 5, 142, 35, 39, '2', '1985-2004, 2007-2020', 'Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (20173, 'Adolescencia e Saude', 16799941, 0.144, 'Q4', 6, 45, 837, 27, 148, '14', '2015-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (20174, 'Amerasia Journal', 447471, 0.144, 'Q2', 13, 25, 0, 13, 66, '2', '1971, 1980, 1984, 1999-2000, 2002-2020', 'Cultural Studies (Q2); History (Q2)'), (20175, 'Analele Stiintifice ale Universitatii Al I Cu', 12218421, 0.144, 'Q4', 12, 3, 66, 26, 92, '43', '2009-2020', 'Mathematics (miscellaneous) (Q4)'), (20176, 'Ankara Universitesi Eczacilik Fakultesi Dergi', 10153918, 0.144, 'Q3', 10, 37, 1465, 14, 46, '18', '1997-2001, 2003-2010, 2014, 2016-2020', 'Pharmaceutical Science (Q3); Pharmacology (Q4)'), (20177, 'Applied Chemistry for Engineering', 12250112, 0.144, 'Q4', 11, 100, 2995, 118, 336, '13', '2007-2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (20178, 'Artibus Asiae', 43648, 0.144, 'Q2', 8, 7, 156, 3, 18, '19', '2002-2019', 'Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20179, 'Asian Medicine', 15734218, 0.144, 'Q3', 12, 17, 554, 7, 35, '16', '2005-2020', 'Arts and Humanities (miscellaneous) (Q3); Complementary and Alternative Medicine (Q4); Medicine (miscellaneous) (Q4)'), (20180, 'Bandaoti Guangdian/Semiconductor Optoelectron', 10015868, 0.144, 'Q4', 11, 170, 2647, 111, 555, '1', '1998, 2001-2020', 'Electrical and Electronic Engineering (Q4)'), (20181, 'Basrah Journal of Agricultural Sciences', 18145868, 0.144, 'Q4', 2, 37, 1285, 13, 92, '48', '2019-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Biochemistry (Q4); Horticulture (Q4); Pollution (Q4)'), (20182, 'Beijing Daxue Xuebao (Ziran Kexue Ban)/Acta S', 4798023, 0.144, 'Q3', 24, 126, 3784, 197, 413, '1', '2001-2020', 'Multidisciplinary (Q3)'), (20183, 'Biblical Interpretation', 9272569, 0.144, 'Q2', 15, 49, 2608, 9, 81, '16', '1993-2020', 'Religious Studies (Q2)'), (20184, 'British Journal of Cardiology', 9696113, 0.144, 'Q4', 17, 0, 0, 11, 48, '3', '1995-2018', 'Cardiology and Cardiovascular Medicine (Q4)'), (20185, 'Bulletin of the School of Oriental and Africa', 41977, 0.144, 'Q2', 18, 19, 735, 15, 59, '3', '1917-1918, 1920-1940, 1942-1946, 1948-2020', 'Cultural Studies (Q2); History (Q2)'), (20186, 'Cahiers du Monde Russe', 12526576, 0.144, 'Q2', 12, 15, 754, 21, 58, '8', '1999, 2001-2019', 'History (Q2); Political Science and International Relations (Q3); Sociology and Political Science (Q3)'), (20187, 'Current Allergy and Clinical Immunology', 16093607, 0.144, 'Q4', 10, 37, 725, 43, 113, '27', '2008-2020', 'Immunology and Allergy (Q4)'), (20188, 'Design Principles and Practices', 18331874, 0.144, 'Q2', 6, 2, 55, 1, 15, '2', '2010-2012, 2014-2019', 'Visual Arts and Performing Arts (Q2)'), (20189, 'Ecologia Balkanica', 13140213, 0.144, 'Q4', 2, 42, 1323, 19, 92, '61', '2015, 2017-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)'), (20190, 'Emergency Nurse', 13545752, 0.144, 'Q4', 17, 59, 591, 46, 205, '3', '1992, 1998-2020', 'Emergency Nursing (Q4)'), (20191, 'Empedocles', 17571960, 0.144, 'Q2', 2, 6, 92, 8, 12, '3', '2019', 'Philosophy (Q2); Communication (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20192, 'Estudios Gerenciales', 1235923, 0.144, 'Q4', 12, 30, 1683, 41, 116, '47', '2009-2020', 'Business and International Management (Q4); Economics and Econometrics (Q4); Finance (Q4); Management of Technology and Innovation (Q4); Marketing (Q4); Strategy and Management (Q4)'), (20193, 'Fenmo Yejin Cailiao Kexue yu Gongcheng/Materi', 16730224, 0.144, 'Q4', 10, 67, 1422, 72, 285, '1', '2009-2020', 'Metals and Alloys (Q4)'), (20194, 'Geomatics and Environmental Engineering', 23007095, 0.144, 'Q4', 3, 26, 717, 15, 28, '17', '2019-2020', 'Computer Science (miscellaneous) (Q4); Computers in Earth Sciences (Q4); Earth-Surface Processes (Q4); Environmental Engineering (Q4); Geography, Planning and Development (Q4)'), (20195, 'Giornale Italiano di Medicina del Lavoro ed E', 15927830, 0.144, 'Q4', 22, 50, 796, 40, 138, '7', '1997-2020', 'Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20196, 'Guangdianzi Jiguang/Journal of Optoelectronic', 10050086, 0.144, 'Q4', 23, 185, 4038, 188, 589, '1', '1992-2020', 'Electrical and Electronic Engineering (Q4)'), (20197, 'Harvard Journal of Legislation', 17808, 0.144, 'Q3', 17, 11, 0, 16, 31, '2', '1975, 1978-1979, 1983, 1987-1992, 1996-2020', 'Law (Q3)'), (20198, 'Implantologie', 9439692, 0.144, 'Q4', 6, 27, 624, 8, 100, '5', '2003-2020', 'Oral Surgery (Q4)'), (20199, 'Interamerican Journal of Psychology', 349690, 0.144, 'Q4', 19, 38, 1700, 31, 99, '2', '2000-2020', 'Psychology (miscellaneous) (Q4)'), (20200, 'International Journal of Criminal Justice Sci', 9735089, 0.144, 'Q3', 3, 0, 0, 37, 80, '4', '2017-2019', 'Law (Q3)'), (20201, 'International Journal of Early Childhood Spec', 13085581, 0.144, 'Q4', 9, 74, 2633, 14, 36, '18', '2009-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (20202, 'Iranica Antiqua', 210870, 0.144, 'Q2', 15, 0, 0, 3, 23, '24', '1996-2018', 'History (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20203, 'Journal of Applied Science and Engineering', 15606686, 0.144, 'Q3', 27, 80, 1980, 101, 203, '22', '1998-2020', 'Multidisciplinary (Q3); Engineering (miscellaneous) (Q4)'), (20204, 'Journal of Graphic Engineering and Design', 2217379, 0.144, 'Q4', 2, 10, 191, 17, 20, '55', '2018-2020', 'Computational Mechanics (Q4); Computer Graphics and Computer-Aided Design (Q4)'), (20205, 'Journal of Legal Medicine', 1947648, 0.144, 'Q3', 19, 14, 0, 25, 82, '3', '1974-1975, 1979-2015, 2017-2020', 'Law (Q3); Medicine (miscellaneous) (Q4)'), (20206, 'Journal of the Southwest', 8948410, 0.144, 'Q1', 9, 23, 902, 16, 81, '2', '2001-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Anthropology (Q3)'), (20207, 'Ler Historia', 8706182, 0.144, 'Q2', 4, 10, 395, 15, 64, '26', '2011-2019', 'History (Q2)'), (20208, 'Liverpool Law Review', 15728625, 0.144, 'Q3', 11, 25, 1223, 11, 43, '16', '1979-1996, 1999-2002, 2005-2020', 'Law (Q3)'), (20209, 'Malaysian Construction Research Journal', 19853807, 0.144, 'Q4', 10, 68, 1864, 59, 225, '23', '2011-2020', 'Building and Construction (Q4)'), (20210, 'Malaysian Journal of Medicine and Health Scie', 16758544, 0.144, 'Q4', 8, 458, 13039, 106, 325, '23', '2007-2020', 'Medicine (miscellaneous) (Q4)'), (20211, 'Medecine et Droit', 12467391, 0.144, 'Q3', 7, 26, 407, 7, 61, '8', '1995-2020', 'Law (Q3); Medicine (miscellaneous) (Q4)'), (20212, 'Melbourne University Law Review', 258938, 0.144, 'Q3', 14, 0, 0, 42, 77, '11', '1983, 1989, 1991-1993, 1996, 1999, 2001, 2006, 2008-2019', 'Law (Q3)'), (20213, 'Modern Theology', 14680025, 0.144, 'Q2', 19, 64, 103, 25, 113, '3', '1984-2020', 'Religious Studies (Q2)'), (20214, 'Muelleria', 22042032, 0.144, 'Q4', 11, 0, 0, 1, 9, '11', '1982-1983, 1985, 1991-2018', 'Plant Science (Q4)'), (20215, 'Notarzt', 14388693, 0.144, 'Q4', 10, 70, 839, 25, 100, '5', '1985-1993, 1999-2020', 'Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4)'), (20216, 'Novyj Istoriceskij Vestnik', 20729286, 0.144, 'Q2', 3, 32, 333, 14, 105, '10', '2012-2020', 'History (Q2)'), (20217, 'Nursing New Zealand (Wellington, N.Z. : 1995)', 11732032, 0.144, 'Q4', 7, 193, 616, 20, 147, '41', '1995-2020', 'Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)'), (20218, 'Oxymag', 9901310, 0.144, 'Q3', 2, 44, 350, 4, 104, '8', '2006-2020', 'Emergency Nursing (Q3); Emergency Medicine (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (20219, 'Pharmaceutical Sciences Asia', 25868195, 0.144, 'Q3', 3, 39, 1091, 34, 80, '40', '2017-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q3); Pharmacology (medical) (Q4)'), (20220, 'Problemos', 13921126, 0.144, 'Q2', 5, 45, 1111, 12, 83, '69', '2002-2020', 'Philosophy (Q2)'), (20221, 'Psihologia Resurselor Umane', 23928077, 0.144, 'Q4', 3, 11, 517, 10, 24, '43', '2017-2019', 'Clinical Psychology (Q4); Organizational Behavior and Human Resource Management (Q4)'), (20222, 'Quaderni ACP', 20391374, 0.144, 'Q4', 5, 82, 681, 14, 93, '7', '2005-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (20223, 'Religion and American Culture', 10521151, 0.144, 'Q2', 13, 12, 1072, 10, 34, '2', '1991-1995, 2001-2020', 'Cultural Studies (Q2); Religious Studies (Q2)'), (20224, 'Resonancias', 7195702, 0.144, 'Q2', 2, 13, 316, 8, 47, '45', '2016-2019', 'Music (Q2)'), (20225, 'Revista Portuguesa de Estomatologia, Medicina', 16462890, 0.144, 'Q4', 8, 29, 696, 20, 97, '12', '2007-2020', 'Dentistry (miscellaneous) (Q4); Surgery (Q4)'), (20226, 'Socijalna Psihijatrija', 3037908, 0.144, 'Q4', 6, 10, 574, 16, 64, '58', '2000-2020', 'Psychiatry and Mental Health (Q4)'), (20227, 'Tehran University Medical Journal', 17357322, 0.144, 'Q4', 11, 134, 3003, 109, 359, '15', '2008-2020', 'Medicine (miscellaneous) (Q4)'), (20228, 'Temple Law Review', 8998086, 0.144, 'Q3', 15, 9, 1811, 14, 56, '2', '1992-1994, 1996-2019', 'Law (Q3)'), (20229, 'Transactions of the South African Institute o', 382221, 0.144, 'Q4', 9, 7, 267, 30, 38, '27', '1969-1989, 1995, 2003-2008, 2010-2018', 'Electrical and Electronic Engineering (Q4)'), (20230, 'Turk Noroloji Dergisi', 1301062, 0.144, 'Q4', 4, 65, 1793, 44, 105, '18', '2010-2020', 'Neurology (clinical) (Q4)'), (20231, 'Zeitschrift der Savigny-Stiftung fur Rechtsge', 3234096, 0.144, 'Q2', 7, 20, 356, 9, 77, '5', '1880-1922, 1924-1944, 1947-1948, 1950-2019', 'History (Q2); Law (Q3)'), (20232, 'Acta Cybernetica', 324721, 0.143, 'Q4', 18, 22, 628, 24, 64, '50', '1990-2020', 'Computational Theory and Mathematics (Q4); Computer Science (miscellaneous) (Q4); Computer Vision and Pattern Recognition (Q4); Electrical and Electronic Engineering (Q4); Information Systems and Mana'), (20233, 'Analele Universitatii din Oradea, Fascicula B', 12245119, 0.143, 'Q4', 2, 32, 1292, 10, 25, '43', '2016-2020', 'Agronomy and Crop Science (Q4); Biotechnology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Genetics (Q4); Molecular Biology (Q4); Physiology (Q4); Plant Science (Q4)'), (20234, 'Applied Econometrics and International Develo', 15784487, 0.143, 'Q3', 11, 21, 805, 19, 49, '12', '2009-2020', 'Political Science and International Relations (Q3); Development (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (20235, 'Biography', 15291456, 0.143, 'Q2', 19, 36, 750, 27, 124, '2', '1978, 1980-1982, 1984, 1986-1988, 1999-2019', 'History (Q2)'), (20236, 'Cambridge International Law Journal', 23989173, 0.143, 'Q3', 9, 15, 0, 15, 35, '3', '2019-2020', 'Law (Q3)'), (20237, 'Comedy Studies', 2040610, 0.143, 'Q1', 3, 30, 778, 16, 55, '3', '2014-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Visual Arts and Performing Arts (Q2)'), (20238, 'Concentric: Studies in Linguistics', 18107478, 0.143, 'Q3', 2, 4, 170, 6, 28, '22', '2014-2018, 2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20239, 'Connexions', 17762804, 0.143, 'Q4', 10, 18, 326, 7, 62, '8', '2001-2019', 'Clinical Psychology (Q4); Social Psychology (Q4)'), (20240, 'Dianbo Kexue Xuebao/Chinese Journal of Radio ', 10050388, 0.143, 'Q4', 21, 109, 3334, 94, 308, '1', '1998, 2001-2020', 'Electrical and Electronic Engineering (Q4)'), (20241, 'Eire-Ireland; a journal of Irish studies', 132683, 0.143, 'Q2', 13, 25, 1116, 14, 62, '2', '1976-1977, 1979-1980, 1982, 1987, 2000-2019', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Sociology and Political Science (Q3)'), (20242, 'Environmental Law Review', 17405564, 0.143, 'Q3', 3, 23, 0, 11, 37, '3', '2018-2020', 'Law (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (20243, 'Eurographics Symposium on Geometry Processing', 17278384, 0.143, 'Q4', 23, 0, 0, 14, 18, '19', '2008-2017', 'Geometry and Topology (Q4); Modeling and Simulation (Q4)'), (20244, 'Filozofia Nauki', 12306894, 0.143, 'Q2', 4, 22, 683, 7, 83, '17', '2011-2020', 'Philosophy (Q2); History and Philosophy of Science (Q3)'), (20245, 'Fornvannen', 14049430, 0.143, 'Q2', 5, 0, 0, 5, 16, '20', '1978, 2011-2018', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20246, 'Frontiers of Law in China', 16733541, 0.143, 'Q3', 6, 6, 285, 15, 60, '1', '2006-2019', 'Law (Q3)'), (20247, 'FTR - Turkiye Fiziksel Tip ve Rehabilitasyon ', 13020234, 0.143, 'Q4', 10, 0, 0, 25, 79, '18', '2003-2018', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (20248, 'Gaofenzi Cailiao Kexue Yu Gongcheng/Polymeric', 10007555, 0.143, 'Q4', 14, 290, 4886, 288, 1086, '1', '1993-1995, 1998, 2001-2020', 'Polymers and Plastics (Q4); Process Chemistry and Technology (Q4)'), (20249, 'Human Resource Management International Diges', 9670734, 0.143, 'Q4', 12, 102, 64, 85, 275, '3', '2002-2020', 'Organizational Behavior and Human Resource Management (Q4)'), (20250, 'Informacion, Cultura y Sociedad', 15148327, 0.143, 'Q4', 4, 22, 629, 20, 56, '46', '2012-2020', 'Library and Information Sciences (Q4)'), (20251, 'International Journal of Operations and Quant', 10821910, 0.143, 'Q4', 12, 4, 94, 19, 43, '2', '2000-2020', 'Business and International Management (Q4); Information Systems and Management (Q4); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4); Strategy and Managem'), (20252, 'Iranian Journal of Physics Research', 16826957, 0.143, 'Q4', 5, 78, 2202, 34, 264, '15', '2010-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (20253, 'Jordan Journal of Mathematics and Statistics', 20757905, 0.143, 'Q4', 3, 27, 485, 18, 48, '62', '2018-2020', 'Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4); Statistics and Probability (Q4)'), (20254, 'Journal of Chemical Crystallography', 15728854, 0.143, 'Q4', 34, 85, 2823, 39, 94, '2', '1994-2020', 'Chemistry (miscellaneous) (Q4); Condensed Matter Physics (Q4)'), (20255, 'Journal of Molecular Catalysis', 10013555, 0.143, 'Q4', 16, 45, 1986, 75, 178, '1', '2013-2020', 'Catalysis (Q4)'), (20256, 'Journal of the Chinese Cereals and Oils Assoc', 10030174, 0.143, 'Q4', 8, 357, 9618, 247, 837, '1', '2013-2020', 'Food Science (Q4)'), (20257, 'Landschap', 1696300, 0.143, 'Q4', 5, 37, 358, 5, 39, '16', '2005-2014, 2018-2019', 'Ecology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)'), (20258, 'Mitologias Hoy', 20141130, 0.143, 'Q1', 1, 20, 693, 4, 33, '12', '2019', 'Literature and Literary Theory (Q1)'), (20259, 'Panamerican Mathematical Journal', 10649735, 0.143, 'Q4', 12, 14, 261, 19, 78, '2', '2008-2020', 'Mathematics (miscellaneous) (Q4)'), (20260, 'Poetics Today', 3335372, 0.143, 'Q1', 27, 23, 1014, 35, 90, '2', '2002-2019', 'Literature and Literary Theory (Q1)'), (20261, 'Primary dental journal', 20501684, 0.143, 'Q4', 11, 62, 0, 47, 140, '3', '2012-2020', 'Medicine (miscellaneous) (Q4)'), (20262, 'Pro-Fil', 12129097, 0.143, 'Q2', 1, 10, 162, 4, 31, '31', '2017-2019', 'Philosophy (Q2)'), (20263, 'Psicologia USP', 1036564, 0.143, 'Q4', 11, 39, 1423, 34, 128, '14', '2006-2020', 'Psychology (miscellaneous) (Q4)'), (20264, 'Quinto Sol', 3292665, 0.143, 'Q2', 4, 23, 888, 12, 54, '46', '2012-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q3)'), (20265, 'Schmalenbachs Zeitschrift fur Betriebswirtsch', 23666153, 0.143, 'Q4', 3, 21, 1498, 14, 38, '5', '1976, 2016-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Management of Technology and Innovation (Q4)'), (20266, 'Seminars in Colon and Rectal Surgery', 10431489, 0.143, 'Q4', 12, 41, 1529, 29, 114, '3', '1996-2020', 'Gastroenterology (Q4); Surgery (Q4)'), (20267, 'Vascular Disease Management', 15538036, 0.143, 'Q4', 7, 0, 0, 15, 68, '2', '2006-2019', 'Cardiology and Cardiovascular Medicine (Q4)'), (20268, 'Waste Forum', 18040195, 0.143, 'Q4', 2, 28, 643, 26, 155, '31', '2017-2019', 'Environmental Chemistry (Q4); Environmental Engineering (Q4); Waste Management and Disposal (Q4)'), (20269, 'Actualidad Juridica Iberoamericana', 23864567, 0.142, 'Q3', 2, 119, 1118, 6, 66, '12', '2019-2020', 'Law (Q3)'), (20270, 'Agraarteadus', 10240845, 0.142, 'Q4', 2, 30, 1137, 17, 32, '71', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Nature and Landscape Conservation (Q4)'), (20271, 'AP Arqueologia Publica', 21716315, 0.142, 'Q3', 2, 0, 0, 6, 30, '12', '2017-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20272, 'Asian Journal of Management Cases', 9728201, 0.142, 'Q4', 7, 33, 218, 4, 51, '4', '2004-2020', 'Business, Management and Accounting (miscellaneous) (Q4)'), (20273, 'Asia Pacific Journal of Sport and Social Scie', 21640602, 0.142, 'Q2', 8, 0, 0, 12, 18, '3', '2012-2013, 2015-2017', 'Cultural Studies (Q2); Anthropology (Q3); Social Psychology (Q4); Sociology and Political Science (Q4)'), (20274, 'Biologie in Unserer Zeit', 45205, 0.142, 'Q4', 10, 55, 564, 15, 118, '5', '1971-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (20275, 'Buildings &amp; Landscapes', 19360886, 0.142, 'Q2', 5, 12, 286, 5, 24, '2', '2010-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q3)'), (20276, 'Chongqing Daxue Xuebao/Journal of Chongqing U', 1000582, 0.142, 'Q4', 16, 146, 3048, 122, 407, '1', '2009-2020', 'Civil and Structural Engineering (Q4); Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4); Materials Science (miscellaneous) (Q4)'), (20277, 'Dynamics of Continuous, Discrete and Impulsiv', 14928760, 0.142, 'Q4', 28, 10, 140, 29, 68, '9', '1997-2020', 'Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)'), (20278, 'Eesti ja Soome-Ugri Keeleteaduse Ajakiri', 17368987, 0.142, 'Q3', 5, 22, 537, 14, 58, '71', '2014-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20279, 'Environmental Practice', 14660474, 0.142, 'Q4', 24, 0, 0, 17, 55, '3', '1999-2019', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (20280, 'Estudos Economicos', 19805357, 0.142, 'Q4', 11, 28, 951, 23, 73, '14', '1981, 1987, 1992, 2008-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (20281, 'European Yearbook of Minority Issues', 15707865, 0.142, 'Q2', 8, 11, 444, 8, 30, '16', '2001, 2004-2005, 2008, 2010-2020', 'Cultural Studies (Q2); Anthropology (Q3); Law (Q3); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)'), (20282, 'Gastrointestinal Nursing', 14795248, 0.142, 'Q3', 14, 106, 1787, 40, 162, '3', '2006-2015, 2017-2020', 'Medical and Surgical Nursing (Q3); Advanced and Specialized Nursing (Q4)'), (20283, 'International Agricultural Engineering Journa', 8582114, 0.142, 'Q4', 14, 168, 4769, 125, 491, '40', '1992, 1994-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Mechanical Engineering (Q4)'), (20284, 'International Journal of eBusiness and eGover', 21460744, 0.142, 'Q4', 2, 11, 438, 13, 29, '18', '2018-2020', 'Business and International Management (Q4); Computer Science Applications (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)'), (20285, 'International Journal of Electronic Business', 14706067, 0.142, 'Q4', 8, 6, 392, 39, 34, '19', '2009, 2014-2019', 'Business, Management and Accounting (miscellaneous) (Q4); Computer Science Applications (Q4)'), (20286, 'International Journal of Sensors, Wireless Co', 22103287, 0.142, 'Q4', 6, 98, 2831, 49, 87, '16', '2016-2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Electrical and Electronic Engineering (Q4)'), (20287, 'Iranian Journal of Psychiatry and Clinical Ps', 22287515, 0.142, 'Q4', 2, 33, 1253, 12, 37, '15', '2019-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20288, 'ISLE Interdisciplinary Studies in Literature ', 10760962, 0.142, 'Q1', 8, 46, 1741, 28, 137, '2', '1993-1994, 2011-2020', 'Literature and Literary Theory (Q1); Environmental Science (miscellaneous) (Q4)'), (20289, 'Journal for Studies in Economics and Economet', 3796205, 0.142, 'Q4', 7, 12, 504, 5, 41, '27', '2008-2020', 'Economics and Econometrics (Q4)'), (20290, 'Journal of Applied Statistical Science', 10675817, 0.142, 'Q4', 8, 0, 0, 3, 14, '2', '2008-2013, 2016-2017', 'Statistics and Probability (Q4)'), (20291, 'Journal of Cryptologic Research', 20957025, 0.142, 'Q4', 9, 33, 1118, 68, 175, '1', '2019', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Software (Q4)'), (20292, 'Journal of Evidence-Based Social Work (United', 26408074, 0.142, 'Q3', 2, 54, 2410, 9, 7, '2', '2020', 'Sociology and Political Science (Q3); Health (social science) (Q4); Social Psychology (Q4)'), (20293, 'Journal of Modern Periodical Studies', 19476574, 0.142, 'Q2', 4, 15, 625, 7, 32, '2', '2010-2020', 'Visual Arts and Performing Arts (Q2); Communication (Q3)'), (20294, 'Journal of Special Education and Rehabilitati', 14096099, 0.142, 'Q4', 5, 0, 0, 16, 33, '100', '2010-2018', 'Developmental and Educational Psychology (Q4); Education (Q4); Psychiatry and Mental Health (Q4)'), (20295, 'Journal of the Indian Chemical Society', 194522, 0.142, 'Q4', 32, 176, 4772, 120, 335, '4', '1973-1985, 1987-1991, 1996-2020', 'Drug Discovery (Q4); Electrochemistry (Q4); Inorganic Chemistry (Q4); Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)'), (20296, 'Journal of the Indian Mathematical Society', 195839, 0.142, 'Q4', 7, 20, 289, 38, 83, '4', '2013-2020', 'Mathematics (miscellaneous) (Q4)'), (20297, 'Journal of the Royal Asiatic Society', 14740591, 0.142, 'Q2', 16, 51, 1811, 21, 83, '3', '1991-2020', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3)'), (20298, 'Kardiologicka Revue', 18018653, 0.142, 'Q4', 4, 29, 482, 11, 141, '31', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (20299, 'Magyar Pszichologiai Szemle', 250279, 0.142, 'Q4', 7, 24, 1006, 10, 88, '50', '2007-2019', 'Psychology (miscellaneous) (Q4)'), (20300, 'MolBank', 14228599, 0.142, 'Q4', 6, 76, 1530, 81, 142, '19', '2007-2020', 'Biochemistry (Q4); Organic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)'), (20301, 'Museum International', 13500775, 0.142, 'Q3', 15, 40, 1180, 27, 83, '3', '1948-1954, 1956-1969, 1971-2012, 2014-2020', 'Conservation (Q3); Museology (Q3)'), (20302, 'Phytotherapie', 17652847, 0.142, 'Q4', 16, 49, 1548, 58, 186, '8', '2005-2019', 'Complementary and Alternative Medicine (Q4); Pharmacology (Q4)'), (20303, 'PSICOLOGIA', 8742049, 0.142, 'Q4', 2, 23, 1195, 13, 25, '26', '2016-2020', 'Psychology (miscellaneous) (Q4)'), (20304, 'Religio', 12103640, 0.142, 'Q2', 5, 10, 673, 6, 31, '31', '2011-2020', 'Religious Studies (Q2)'), (20305, 'Revista Brasileira de Oftalmologia', 19828551, 0.142, 'Q4', 11, 91, 1623, 46, 208, '14', '1947-1971, 1973-2020', 'Ophthalmology (Q4); Surgery (Q4)'), (20306, 'Revista Cubana de Farmacia', 347515, 0.142, 'Q3', 8, 34, 823, 5, 85, '85', '1980-1991, 1996-2000, 2002, 2004-2020', 'Pharmaceutical Science (Q3); Pharmacy (Q3); Pharmacology (Q4)'), (20307, 'Revista de Derecho Comunitario Europeo', 19895569, 0.142, 'Q3', 5, 21, 454, 15, 70, '12', '2008-2020', 'Law (Q3); Political Science and International Relations (Q3); Sociology and Political Science (Q4)'), (20308, 'Revista de Llengua i Dret', 2125056, 0.142, 'Q3', 5, 23, 416, 25, 151, '12', '2011-2019', 'Language and Linguistics (Q3); Law (Q3); Linguistics and Language (Q3)'), (20309, 'RISTI - Revista Iberica de Sistemas e Tecnolo', 16469895, 0.142, 'Q4', 14, 685, 15961, 266, 567, '26', '2011-2020', 'Computer Science (miscellaneous) (Q4)'), (20310, 'Social Sciences in China', 19405952, 0.142, 'Q3', 11, 42, 1132, 31, 128, '3', '1980-1981, 1983-1989, 1991-1997, 2008-2020', 'Social Sciences (miscellaneous) (Q3)'), (20311, 'Soins; la revue de reference infirmiere', 380814, 0.142, 'Q4', 6, 163, 931, 28, 393, '8', '1965-1973, 1976-2020', 'Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)'), (20312, 'Stilt', 7261888, 0.142, 'Q4', 6, 0, 0, 4, 19, '11', '2012-2018', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (20313, 'Studia Linguistica Universitatis Iagellonicae', 18971059, 0.142, 'Q3', 4, 23, 1044, 14, 69, '17', '2013-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20314, 'Studia Metrica et Poetica', 2346691, 0.142, 'Q1', 2, 15, 406, 12, 26, '71', '2018-2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20315, 'Turk Psikoloji Dergisi', 13004433, 0.142, 'Q4', 16, 0, 0, 11, 37, '18', '1996-1997, 2002-2019', 'Psychology (miscellaneous) (Q4)'), (20316, 'Zeitschrift fur Epileptologie', 16100646, 0.142, 'Q4', 7, 53, 1511, 56, 129, '5', '1980, 2005-2020', 'Neurology (clinical) (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (20317, 'Zhurnal Vysshei Nervnoi Deyatelnosti Imeni I.', 444677, 0.142, 'Q4', 15, 67, 2698, 78, 164, '10', '1951-2019', 'Medicine (miscellaneous) (Q4); Neuroscience (miscellaneous) (Q4)'), (20318, 'Acta Mathematica Academiae Paedagogicae Nyire', 8660182, 0.141, 'Q4', 15, 0, 0, 4, 15, '50', '1998, 2000-2017', 'Education (Q4); Mathematics (miscellaneous) (Q4)'), (20319, 'Afinidad', 19704, 0.141, 'Q4', 16, 2, 35, 27, 53, '12', '1996-2019', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (20320, 'African Journal of Business and Economic Rese', 17504554, 0.141, 'Q4', 3, 45, 2030, 37, 61, '3', '2018-2019', 'Business and International Management (Q4); Economics and Econometrics (Q4)'), (20321, 'Akusherstvo i Ginekologiya (Russian Federatio', 24125679, 0.141, 'Q4', 6, 351, 8978, 311, 812, '10', '1945-1996, 2016-2020', 'Obstetrics and Gynecology (Q4)'), (20322, 'Ancient Civilizations from Scythia to Siberia', 929077, 0.141, 'Q1', 10, 22, 942, 14, 31, '16', '1994-2020', 'Classics (Q1); History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20323, 'ArchiDOCT', 23090103, 0.141, 'Q2', 2, 11, 284, 7, 30, '24', '2017-2019', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Conservation (Q3); Urban Studies (Q3); Nature and Landscape Conservation (Q4)'), (20324, 'Australian Journal of Electrical and Electron', 1448837, 0.141, 'Q4', 15, 34, 840, 44, 66, '3', '2004-2020', 'Electrical and Electronic Engineering (Q4)'), (20325, 'Beijing da xue xue bao. Yi xue ban = Journal ', 1671167, 0.141, 'Q4', 17, 209, 0, 117, 396, '1', '2003-2020', 'Medicine (miscellaneous) (Q4)'), (20326, 'Bibliothecae.it', 22807934, 0.141, 'Q2', 1, 14, 493, 3, 41, '7', '2018-2019', 'History (Q2); Information Systems (Q4); Library and Information Sciences (Q4)'), (20327, 'British Wildlife', 9580956, 0.141, 'Q4', 17, 76, 465, 8, 158, '3', '1989-2020', 'Animal Science and Zoology (Q4); Nature and Landscape Conservation (Q4); Plant Science (Q4)'), (20328, 'Bulletin of National Institute of Health Scie', 13434292, 0.141, 'Q4', 9, 5, 88, 5, 25, '6', '1997-2010, 2012-2019', 'Medicine (miscellaneous) (Q4)'), (20329, 'Cahiers du Genre', 19683928, 0.141, 'Q4', 6, 11, 306, 14, 55, '8', '2011-2020', 'Demography (Q4); Gender Studies (Q4); Sociology and Political Science (Q4)'), (20330, 'Chinese Journal of Pathology', 5295807, 0.141, 'Q4', 14, 0, 0, 106, 406, '1', '1985-2019', 'Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)'), (20331, 'Classical World', 98418, 0.141, 'Q1', 13, 19, 1043, 8, 83, '2', '1972, 1977, 2002-2020', 'Classics (Q1)'), (20332, 'Columbia Journal of Law and Social Problems', 101923, 0.141, 'Q3', 11, 11, 1279, 14, 43, '2', '1973, 1975-1976, 1978, 1980, 1985-1986, 1989-1990, 1992-2020', 'Law (Q3); Social Sciences (miscellaneous) (Q3); Sociology and Political Science (Q4)'), (20333, 'Criminal Law Forum', 10468374, 0.141, 'Q3', 20, 16, 49, 21, 56, '16', '1989-1997, 1999-2002, 2004-2020', 'Law (Q3)'), (20334, 'Estudos Historicos', 1032186, 0.141, 'Q1', 2, 33, 1067, 10, 55, '14', '2018-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q4)'), (20335, 'European Energy and Environmental Law Review', 18793886, 0.141, 'Q3', 13, 20, 68, 22, 42, '16', '2008-2020', 'Law (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (20336, 'European Romantic Review', 17404657, 0.141, 'Q1', 12, 48, 1480, 14, 126, '3', '1990-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2)'), (20337, 'Genij Ortopedii', 10284427, 0.141, 'Q4', 3, 87, 2267, 49, 219, '10', '2017-2020', 'Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (20338, 'Govaresh', 15607186, 0.141, 'Q4', 8, 18, 788, 30, 101, '15', '2011-2020', 'Gastroenterology (Q4); Hepatology (Q4)'), (20339, 'Grey Room', 15263819, 0.141, 'Q2', 16, 4, 0, 15, 28, '2', '2002-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Communication (Q4); Sociology and Political Science (Q4)'), (20340, 'Guocheng Gongcheng Xuebao/The Chinese Journal', 1009606, 0.141, 'Q4', 17, 156, 4155, 158, 553, '1', '2001-2020', 'Chemical Engineering (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)'), (20341, 'Hua xi kou qiang yi xue za zhi = Huaxi kouqia', 10001182, 0.141, 'Q4', 11, 126, 0, 84, 373, '1', '1997-2020', 'Medicine (miscellaneous) (Q4)'), (20342, 'IIUM Engineering Journal', 1511788, 0.141, 'Q4', 6, 44, 983, 75, 119, '23', '2016-2020', 'Applied Mathematics (Q4); Chemical Engineering (miscellaneous) (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (20343, 'International Journal of Electrical and Compu', 18477003, 0.141, 'Q4', 4, 11, 325, 24, 29, '58', '2016-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4)'), (20344, 'International Journal of Security and Network', 17478413, 0.141, 'Q4', 25, 25, 666, 30, 65, '3', '2006-2014', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)'), (20345, 'International Journal of Technoentrepreneursh', 17465370, 0.141, 'Q4', 7, 5, 150, 4, 9, '3', '2007, 2009, 2011, 2020', 'Business and International Management (Q4); Economics and Econometrics (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (20346, 'Journal of Applied Linguistics and Profession', 20403666, 0.141, 'Q3', 17, 1, 26, 4, 13, '3', '2010-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (20347, 'Journal of Brain Science', 13415301, 0.141, 'Q4', 4, 0, 0, 2, 6, '6', '1997-1999, 2006-2009, 2011-2014, 2016-2018', 'Neuroscience (miscellaneous) (Q4)'), (20348, 'Journal of Exercise Physiology Online', 10979751, 0.141, 'Q4', 25, 2, 47, 29, 117, '2', '1999-2020', 'Physiology (medical) (Q4)'), (20349, 'Journal of Hellenic Studies', 754269, 0.141, 'Q1', 29, 11, 974, 14, 42, '3', '1880-1891, 1893-2019', 'Classics (Q1); Literature and Literary Theory (Q1); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Language and Linguistics (Q3); Linguistics and Languag'), (20350, 'Journal of Interlibrary Loan, Document Delive', 1072303, 0.141, 'Q4', 12, 2, 24, 6, 31, '2', '1994, 1996-1997, 2000, 2002-2003, 2005-2019', 'Library and Information Sciences (Q4)'), (20351, 'Journal of Pharmacy and Nutrition Sciences', 19275951, 0.141, 'Q4', 10, 43, 2190, 36, 64, '9', '2011-2019', 'Health (social science) (Q4); Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (20352, 'Journal of Religion', 224189, 0.141, 'Q2', 17, 16, 0, 21, 43, '2', '1982, 1996-2020', 'Religious Studies (Q2)'), (20353, 'Journal of Stomatology', 2299551, 0.141, 'Q4', 7, 55, 1360, 45, 168, '17', '1951-1955, 1961-1962, 1965-1990, 2011-2020', 'Dentistry (miscellaneous) (Q4)'), (20354, 'Journal of Survey in Fisheries Sciences', 23687487, 0.141, 'Q4', 2, 11, 390, 15, 35, '9', '2018-2020', 'Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Veterinary (miscellaneous) (Q4)'), (20355, 'Kervan', 1825263, 0.141, 'Q1', 2, 30, 1177, 5, 69, '7', '2017-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20356, 'KGK Kautschuk Gummi Kunststoffe', 9483276, 0.141, 'Q4', 30, 44, 1233, 49, 161, '5', '1978-1980, 1982, 1988, 1996-2020', 'Industrial and Manufacturing Engineering (Q4); Materials Chemistry (Q4); Mechanical Engineering (Q4); Polymers and Plastics (Q4)'), (20357, 'Langue Francaise', 238368, 0.141, 'Q3', 13, 34, 953, 13, 94, '8', '2002-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20358, 'LEARN Journal: Language Education and Acquisi', 26300672, 0.141, 'Q3', 2, 45, 1931, 6, 16, '40', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (20359, 'Mathematics Magazine', 25570, 0.141, 'Q4', 13, 59, 296, 32, 172, '2', '2010-2020', 'Mathematics (miscellaneous) (Q4)'), (20360, 'Moderna Sprak', 268577, 0.141, 'Q3', 6, 9, 291, 9, 44, '20', '2002-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20361, 'New Armenian Medical Journal', 18290825, 0.141, 'Q4', 5, 56, 1943, 34, 165, '93', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (20362, 'Ochrona Srodowiska', 12306169, 0.141, 'Q4', 13, 0, 0, 24, 62, '17', '2008-2019', 'Environmental Science (miscellaneous) (Q4)'), (20363, 'Oral and Maxillofacial Surgery Cases', 22145419, 0.141, 'Q4', 3, 71, 1193, 33, 102, '16', '2015-2020', 'Oral Surgery (Q4); Otorhinolaryngology (Q4); Surgery (Q4)'), (20364, 'Orientation Scolaire et Professionnelle', 2496739, 0.141, 'Q4', 6, 27, 1195, 6, 67, '8', '2011-2019', 'Developmental and Educational Psychology (Q4); Education (Q4); Social Psychology (Q4)'), (20365, 'Parliaments, Estates and Representation', 1947248, 0.141, 'Q4', 6, 20, 0, 19, 70, '3', '1981-2020', 'Sociology and Political Science (Q4)'), (20366, 'Pediatria Integral', 11354542, 0.141, 'Q4', 7, 84, 1474, 23, 154, '12', '1997-2001, 2003-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (20367, 'Perspectives in Education', 2582236, 0.141, 'Q4', 20, 42, 1673, 30, 46, '27', '2004-2019', 'Education (Q4)'), (20368, 'Politicka Ekonomie', 23368225, 0.141, 'Q4', 15, 25, 1095, 29, 108, '31', '1980, 1982, 1986-1987, 1993, 1996-2020', 'Economics and Econometrics (Q4); Sociology and Political Science (Q4)'), (20369, 'Portuguese Journal of Public Health', 25043145, 0.141, 'Q4', 9, 14, 432, 21, 35, '12', '2017-2020', 'Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20370, 'Problemi Endokrinnoi Patologii', 25181432, 0.141, 'Q4', 2, 36, 596, 13, 96, '44', '2018-2019', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Pathology and Forensic Medicine (Q4)'), (20371, 'Proteomics - Practical Proteomics', 18627595, 0.141, 'Q4', 7, 0, 0, 1, 2, '5', '2007, 2016, 2018', 'Biochemistry (Q4); Molecular Biology (Q4)'), (20372, 'Psychiatric Times', 8932905, 0.141, 'Q4', 13, 82, 726, 59, 314, '2', '2006-2009, 2014, 2016-2019', 'Psychiatric Mental Health (Q4); Psychiatry and Mental Health (Q4)'), (20373, 'Revista Chilena de Radiologia', 717201, 0.141, 'Q4', 6, 30, 552, 10, 68, '45', '2002, 2006-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (20374, 'Revista Facultad de Medicina', 23573848, 0.141, 'Q4', 8, 80, 2968, 107, 299, '47', '1945-1949, 1951-1966, 1972-1974, 2007-2020', 'Medicine (miscellaneous) (Q4)'), (20375, 'Russian Journal of Cardiology', 15604071, 0.141, 'Q4', 14, 183, 4227, 296, 583, '10', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (20376, 'Science and Technology Asia', 25869027, 0.141, 'Q3', 3, 58, 1547, 22, 65, '40', '2018-2020', 'Multidisciplinary (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)'), (20377, 'Signa Vitae', 13345605, 0.141, 'Q4', 7, 64, 1525, 43, 118, '58', '2008-2020', 'Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4)'), (20378, 'Sklifosovsky Journal Emergency Medical Care', 22239022, 0.141, 'Q4', 3, 70, 1827, 27, 130, '10', '2017-2020', 'Emergency Medicine (Q4)'), (20379, 'Suomen Antropologi', 3553930, 0.141, 'Q3', 7, 12, 260, 25, 75, '38', '2011-2019', 'Anthropology (Q3)'), (20380, 'Telecommunications and Radio Engineering (Eng', 402508, 0.141, 'Q4', 19, 151, 2773, 188, 434, '2', '1971-1985, 1987-1993, 1995-2020', 'Electrical and Electronic Engineering (Q4)'), (20381, 'Theory and Practice of Legislation', 20508859, 0.141, 'Q3', 9, 25, 0, 18, 37, '3', '2013-2020', 'Law (Q3)'), (20382, 'Uchenye Zapiski Kazanskogo Universiteta. Seri', 2542064, 0.141, 'Q4', 6, 30, 1006, 52, 143, '10', '2013-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneou'), (20383, 'War in History', 9683445, 0.141, 'Q2', 17, 54, 0, 19, 76, '3', '1994-2020', 'Cultural Studies (Q2); History (Q2)'), (20384, 'Yakugaku Zasshi', 13475231, 0.141, 'Q3', 41, 194, 4177, 190, 530, '6', '1961-2020', 'Pharmaceutical Science (Q3); Pharmacology (Q4)'), (20385, 'Acute Medicine', 17474884, 0.14, 'Q4', 12, 44, 486, 38, 101, '3', '2005-2020', 'Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4); Internal Medicine (Q4); Medicine (miscellaneous) (Q4)'), (20386, 'African and Asian Studies', 15692108, 0.14, 'Q2', 19, 23, 946, 12, 41, '16', '1966, 1971, 1975-1979, 1981-1982, 1984-1988, 1990-1991, 1993-1994, 1996-2020', 'History (Q2); Development (Q4); Sociology and Political Science (Q4)'), (20387, 'Analele Universitatii din Craiova - Seria Sti', 12245712, 0.14, 'Q3', 4, 37, 733, 12, 117, '43', '2011-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20388, 'Anales de la Asociacion Fisica Argentina', 18501168, 0.14, 'Q4', 2, 17, 347, 5, 45, '46', '2018-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (20389, 'Argumenta Oeconomica', 12335835, 0.14, 'Q4', 7, 27, 1461, 21, 60, '17', '2009-2018, 2020', 'Economics and Econometrics (Q4); Strategy and Management (Q4)'), (20390, 'Belgian Journal of Linguistics', 7745141, 0.14, 'Q3', 15, 0, 0, 7, 28, '16', '1986-1994, 1996-2000, 2002-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20391, 'Biochimica Clinica', 3930564, 0.14, 'Q4', 10, 18, 656, 27, 152, '7', '1987, 2010-2020', 'Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Medical Laboratory Technology (Q4)'), (20392, 'Bulletin of Russian State Medical University', 25421204, 0.14, 'Q4', 3, 85, 2205, 67, 245, '10', '2017-2020', 'Medicine (miscellaneous) (Q4)'), (20393, 'Cesko-Slovenska Pediatrie', 692328, 0.14, 'Q4', 8, 75, 1555, 22, 182, '31', '1955-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (20394, 'Childhood and Philosophy', 25255061, 0.14, 'Q2', 2, 19, 581, 6, 71, '14', '2018-2020', 'Philosophy (Q2); Developmental and Educational Psychology (Q4); Education (Q4)'), (20395, 'Chinese Journal of Medical Genetics', 10039406, 0.14, 'Q4', 16, 253, 0, 106, 654, '1', '1998-2020', 'Genetics (clinical) (Q4); Medicine (miscellaneous) (Q4)'), (20396, 'Chinese Traditional and Herbal Drugs', 2532670, 0.14, 'Q4', 15, 746, 24089, 711, 2481, '1', '2006-2020', 'Complementary and Alternative Medicine (Q4); Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (medical) (Q4)'), (20397, 'Ciencia del Suelo', 3263169, 0.14, 'Q4', 18, 32, 1278, 28, 99, '46', '1994-2020', 'Soil Science (Q4)'), (20398, 'College Literature', 933139, 0.14, 'Q1', 14, 40, 1248, 19, 113, '2', '2002-2020', 'Literature and Literary Theory (Q1); Education (Q4)'), (20399, 'Current Applied Science and Technology', 25869396, 0.14, 'Q4', 3, 46, 1363, 23, 70, '40', '2017-2021', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Biotechnology (Q4); Environmental Engineering (Q4)'), (20400, 'Current Trends in Immunology', 9724567, 0.14, 'Q4', 7, 2, 165, 15, 46, '4', '2006-2009, 2011-2019', 'Immunology (Q4); Immunology and Allergy (Q4)'), (20401, 'Cyprus Review', 10152881, 0.14, 'Q4', 14, 13, 539, 23, 70, '74', '1996-2019', 'Economics and Econometrics (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (20402, 'Digital Studies/ Le Champ Numerique', 19183666, 0.14, 'Q3', 2, 17, 603, 13, 21, '3', '2019-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Computer Science Applications (Q4)'), (20403, 'Dirasat: Human and Social Sciences', 10263721, 0.14, 'Q3', 4, 233, 5400, 22, 214, '62', '2007-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q3); Health (social science) (Q4); Sociology and Political Science (Q4)'), (20404, 'Finance and Development', 1451707, 0.14, 'Q4', 32, 61, 108, 66, 30, '2', '1973, 1975-1976, 1978-2020', 'Development (Q4); Finance (Q4); Geography, Planning and Development (Q4)'), (20405, 'Food Engineering Progress', 22881247, 0.14, 'Q4', 2, 44, 1343, 9, 42, '13', '2019-2020', 'Food Science (Q4)'), (20406, 'Fuentes el Reventon Energetico', 21458502, 0.14, 'Q4', 1, 7, 224, 4, 18, '47', '2019', 'Energy (miscellaneous) (Q4); Physical and Theoretical Chemistry (Q4)'), (20407, 'Future Anterior', 19346026, 0.14, 'Q2', 5, 0, 0, 7, 40, '2', '2009-2019', 'History (Q2); Visual Arts and Performing Arts (Q2); Architecture (Q3); Conservation (Q3)'), (20408, 'Historical Studies in the Natural Sciences', 1939182, 0.14, 'Q3', 20, 0, 0, 32, 54, '2', '2008-2019', 'History and Philosophy of Science (Q3)'), (20409, 'Humanities and Social Sciences Letters', 23125659, 0.14, 'Q3', 3, 38, 1708, 26, 21, '2', '2019-2020', 'Social Sciences (miscellaneous) (Q3); Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (20410, 'Indian Journal of Computer Science and Engine', 9765166, 0.14, 'Q4', 2, 104, 2356, 3, 16, '4', '2019-2020', 'Computational Mechanics (Q4); Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (20411, 'Information Design Journal', 1425471, 0.14, 'Q4', 20, 0, 0, 29, 65, '16', '1979-1984, 1986-1987, 1989-1991, 1993-1996, 1998, 2000-2011, 2013-2014, 2016-2019', 'Library and Information Sciences (Q4)'), (20412, 'International Journal of Disability Managemen', 18344887, 0.14, 'Q4', 10, 6, 313, 9, 5, '3', '2006-2020', 'Health (social science) (Q4); Organizational Behavior and Human Resource Management (Q4)'), (20413, 'International Journal of Open Source Software', 19423934, 0.14, 'Q4', 8, 11, 576, 33, 40, '2', '2009-2012, 2014-2019', 'Software (Q4)'), (20414, 'Iranian Journal of Pharmaceutical Sciences', 17352444, 0.14, 'Q4', 12, 38, 1045, 28, 81, '15', '2010-2014, 2016-2020', 'Bioengineering (Q4); Pharmaceutical Science (Q4)'), (20415, 'JASSA', 3135934, 0.14, 'Q4', 4, 0, 0, 1, 1, '11', '2010-2014, 2017', 'Finance (Q4)'), (20416, 'Journal of African Cinemas', 17549221, 0.14, 'Q2', 2, 5, 218, 7, 47, '3', '2017-2019', 'Cultural Studies (Q2); Visual Arts and Performing Arts (Q2); Communication (Q4)'), (20417, 'Journal of Feminist Studies in Religion', 87554178, 0.14, 'Q2', 11, 30, 783, 28, 98, '2', '2002-2008, 2011-2019', 'Religious Studies (Q2); Gender Studies (Q4)'), (20418, 'Journal of Pediatric Surgery Case Reports', 22135766, 0.14, 'Q4', 8, 337, 4669, 142, 661, '2', '2013-2020', 'Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)'), (20419, 'Journal of Surgical Case Reports', 20428812, 0.14, 'Q4', 3, 0, 0, 39, 88, '3', '2019', 'Surgery (Q4)'), (20420, 'Mass Spectrometry', 21865116, 0.14, 'Q4', 1, 18, 482, 2, 8, '6', '2019-2020', 'Atomic and Molecular Physics, and Optics (Q4); Instrumentation (Q4); Spectroscopy (Q4)'), (20421, 'Medieval History Journal', 9730753, 0.14, 'Q2', 12, 12, 729, 8, 40, '2', '1998-2020', 'History (Q2)'), (20422, 'Mind and Matter', 16118812, 0.14, 'Q2', 17, 11, 355, 24, 28, '3', '2003-2020', 'Philosophy (Q2); Neuroscience (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (20423, 'Online Journal of Health and Allied Sciences', 9725997, 0.14, 'Q4', 15, 23, 492, 29, 142, '4', '2002-2020', 'Medicine (miscellaneous) (Q4)'), (20424, 'Opuholi Golovy i Sei', 22221468, 0.14, 'Q4', 1, 45, 1155, 5, 52, '10', '2019-2020', 'Cancer Research (Q4); Oncology (Q4); Otorhinolaryngology (Q4); Pharmacology (medical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)'), (20425, 'Parliamentary History', 2642824, 0.14, 'Q2', 11, 26, 0, 10, 66, '2', '1982-2020', 'History (Q2); Sociology and Political Science (Q4)'), (20426, 'Peace Review', 14699982, 0.14, 'Q3', 14, 43, 525, 55, 182, '3', '1989-1996, 2005-2019', 'Arts and Humanities (miscellaneous) (Q3); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4); Sociology and Political Science (Q4)'), (20427, 'Pennsylvania Geographer', 5535980, 0.14, 'Q4', 5, 6, 289, 4, 22, '2', '1979-2017', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (20428, 'Postepy Rehabilitacji', 8606161, 0.14, 'Q4', 6, 25, 627, 16, 72, '17', '2006-2020', 'Rehabilitation (Q4)'), (20429, 'Pouvoirs: Revue d Etudes Constitutionnelles e', 21010390, 0.14, 'Q3', 7, 42, 689, 19, 119, '8', '2001-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q4)'), (20430, 'Psychiatria i Psychologia Kliniczna', 16446313, 0.14, 'Q4', 7, 19, 786, 49, 128, '17', '2006-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20431, 'Quaternary and Environmental Geosciences', 21766142, 0.14, 'Q4', 3, 1, 41, 14, 22, '14', '2017-2020', 'Earth-Surface Processes (Q4); Geology (Q4); Global and Planetary Change (Q4)'), (20432, 'Revija Za Socijalnu Politiku', 13302965, 0.14, 'Q3', 12, 22, 721, 18, 54, '58', '2005-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q4)'), (20433, 'Revija za Sociologiju', 350154, 0.14, 'Q4', 7, 19, 750, 11, 42, '58', '1981-1982, 1987, 1989, 1995, 2009-2020', 'Sociology and Political Science (Q4)'), (20434, 'Revista de Investigaciones Agropecuarias', 3258718, 0.14, 'Q4', 5, 13, 447, 27, 121, '46', '2014-2019', 'Agronomy and Crop Science (Q4); Horticulture (Q4); Plant Science (Q4); Soil Science (Q4)'), (20435, 'Sangyo eiseigaku zasshi = Journal of occupati', 13410725, 0.14, 'Q4', 13, 18, 0, 16, 43, '6', '1995-2020', 'Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4); Toxicology (Q4)'), (20436, 'Sigurnost', 3506886, 0.14, 'Q4', 4, 50, 636, 10, 92, '58', '1992, 2009-2020', 'Public Health, Environmental and Occupational Health (Q4); Safety Research (Q4)'), (20437, 'Sociologica', 19718853, 0.14, 'Q4', 9, 16, 689, 35, 96, '7', '2013-2020', 'Sociology and Political Science (Q4)'), (20438, 'South Asian Journal of Macroeconomics and Pub', 22779787, 0.14, 'Q4', 5, 10, 467, 11, 27, '3', '2012-2020', 'Economics and Econometrics (Q4); Finance (Q4)'), (20439, 'Studies in South Asian Film and Media', 1756493, 0.14, 'Q2', 3, 17, 497, 4, 23, '3', '2012-2019', 'Visual Arts and Performing Arts (Q2); Communication (Q4)'), (20440, 'Taiwan Journal of TESOL', 18149448, 0.14, 'Q3', 3, 11, 617, 15, 23, '22', '2017-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (20441, 'Trends in Carbohydrate Research', 9750304, 0.14, 'Q4', 7, 24, 1001, 22, 70, '4', '2009-2020', 'Organic Chemistry (Q4)'), (20442, 'UPB Scientific Bulletin, Series C: Electrical', 22863540, 0.14, 'Q4', 14, 96, 1808, 73, 229, '43', '2008-2020', 'Electrical and Electronic Engineering (Q4)'), (20443, 'Vigiliae Christianae', 426032, 0.14, 'Q2', 20, 25, 1259, 14, 72, '16', '1948, 1950, 1952, 1957, 1960, 1963, 1965, 1967, 1969-1973, 1976-2020', 'Cultural Studies (Q2); History (Q2); Religious Studies (Q2); Archeology (arts and humanities) (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20444, 'Wasser und Abfall', 14369095, 0.14, 'Q4', 4, 74, 196, 7, 202, '5', '2003-2020', 'Pollution (Q4); Water Science and Technology (Q4)'), (20445, 'Zeitschrift fur Anglistik und Amerikanistik', 442305, 0.14, 'Q1', 10, 29, 814, 28, 76, '5', '2002-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20446, 'Zhejiang da xue xue bao. Yi xue ban = Journal', 10089292, 0.14, 'Q4', 13, 102, 0, 67, 300, '1', '2003-2020', 'Medicine (miscellaneous) (Q4)'), (20447, 'Acadiensis', 17127432, 0.139, 'Q2', 7, 17, 896, 5, 60, '9', '1981, 1984, 1989-1990, 2000, 2009-2019', 'History (Q2)'), (20448, 'Acta Angiologica', 1234950, 0.139, 'Q4', 5, 19, 467, 20, 55, '17', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (20449, 'Al-Qantara', 19882955, 0.139, 'Q1', 14, 16, 940, 8, 43, '12', '1984, 1997-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2)'), (20450, 'Anales Cervantinos', 5699878, 0.139, 'Q1', 4, 16, 669, 7, 47, '12', '2009-2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20451, 'Cirugia y Cirujanos', 97411, 0.139, 'Q4', 16, 186, 3085, 141, 357, '30', '1945-1962, 1964-1974, 1976-1984, 2003-2020', 'Surgery (Q4)'), (20452, 'Collectanea Theologica', 1376985, 0.139, 'Q2', 2, 22, 1144, 4, 70, '17', '2012-2020', 'Religious Studies (Q2)'), (20453, 'Coloproctology', 16156730, 0.139, 'Q4', 11, 72, 1659, 37, 192, '5', '1998-2020', 'Gastroenterology (Q4); Surgery (Q4)'), (20454, 'Columbia Journal of Transnational Law', 101931, 0.139, 'Q3', 31, 10, 1015, 14, 40, '2', '1996-2019', 'Law (Q3); Political Science and International Relations (Q3)'), (20455, 'Cuadernos de historia (Santiago, Chile)', 7161832, 0.139, 'Q2', 2, 24, 853, 8, 46, '45', '1999, 2001-2002, 2017-2019', 'History (Q2)'), (20456, 'Dams and Reservoirs', 17568404, 0.139, 'Q4', 3, 27, 241, 14, 66, '3', '2010-2020', 'Civil and Structural Engineering (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (20457, 'Dance Research Journal', 1497677, 0.139, 'Q2', 18, 20, 910, 20, 50, '3', '1975-1985, 1987-2020', 'Visual Arts and Performing Arts (Q2)'), (20458, 'Diacritics', 3007162, 0.139, 'Q1', 16, 7, 271, 7, 60, '2', '2002-2010, 2012-2019', 'Literature and Literary Theory (Q1)'), (20459, 'Dianzi Keji Daxue Xuebao/Journal of the Unive', 10010548, 0.139, 'Q4', 17, 134, 3146, 172, 436, '1', '1998, 2001-2020', 'Electrical and Electronic Engineering (Q4)'), (20460, 'Elenchos', 20377177, 0.139, 'Q2', 6, 48, 1080, 7, 37, '7', '2005-2016, 2018-2020', 'Classics (Q2); Philosophy (Q2)'), (20461, 'European Journal of Legal Studies', 19732937, 0.139, 'Q3', 3, 13, 0, 11, 31, '7', '2017-2019', 'Law (Q3)'), (20462, 'Farmaceutski Glasnik', 148202, 0.139, 'Q4', 6, 63, 970, 5, 208, '58', '1950-1951, 1962, 1990-2020', 'Pharmaceutical Science (Q4); Pharmacology (Q4)'), (20463, 'Filosofia Politica', 3947297, 0.139, 'Q2', 3, 19, 612, 7, 84, '7', '2012-2020', 'History (Q2); Philosophy (Q2); Sociology and Political Science (Q4)'), (20464, 'Ge-Conservacion', 19898568, 0.139, 'Q2', 4, 62, 1600, 23, 111, '12', '2009-2020', 'Visual Arts and Performing Arts (Q2); Conservation (Q3); Museology (Q3)'), (20465, 'Gregorianum', 174114, 0.139, 'Q2', 7, 31, 2091, 6, 101, '7', '2002-2020', 'Religious Studies (Q2)'), (20466, 'Hearing Journal', 23336218, 0.139, 'Q4', 19, 150, 694, 59, 294, '2', '2001-2020', 'Speech and Hearing (Q4)'), (20467, 'Informatologia', 13300067, 0.139, 'Q3', 7, 6, 235, 15, 45, '58', '1999-2020', 'Law (Q3)'), (20468, 'International Journal of Decision Support Sys', 19416296, 0.139, 'Q4', 11, 16, 519, 31, 52, '2', '2009-2020', 'Computer Science (miscellaneous) (Q4); Modeling and Simulation (Q4)'), (20469, 'International Journal of Intelligent Enterpri', 17453232, 0.139, 'Q4', 7, 34, 999, 45, 67, '3', '2007, 2009, 2012-2013, 2017', 'Business and International Management (Q4); Management of Technology and Innovation (Q4); Strategy and Management (Q4)'), (20470, 'International Journal of Latin American Relig', 25099965, 0.139, 'Q2', 2, 27, 1298, 11, 64, '2', '2017-2020', 'History (Q2); Religious Studies (Q2); Anthropology (Q3); Social Psychology (Q4)'), (20471, 'International Medical Journal Malaysia', 18234631, 0.139, 'Q4', 9, 50, 1274, 63, 197, '23', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (20472, 'IRBM News', 19597568, 0.139, 'Q4', 5, 21, 243, 6, 44, '8', '2007-2020', 'Biomedical Engineering (Q4); Biophysics (Q4)'), (20473, 'Irish University Review', 211427, 0.139, 'Q1', 8, 37, 741, 10, 78, '3', '2002-2020', 'Literature and Literary Theory (Q1)'), (20474, 'Iron and Steel Technology', 15470423, 0.139, 'Q4', 19, 14, 61, 17, 344, '2', '2004-2020', 'Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (20475, 'Israel Studies Review', 21590370, 0.139, 'Q2', 5, 24, 967, 24, 57, '2', '2015-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q4)'), (20476, 'JCRS Online Case Reports', 22141677, 0.139, 'Q4', 3, 1, 18, 20, 69, '2', '2013-2019', 'Ophthalmology (Q4); Surgery (Q4)'), (20477, 'Jordan Medical Journal', 4469283, 0.139, 'Q4', 7, 20, 479, 18, 59, '62', '1972-1978, 1980-1982, 1984-1986, 1988-1991, 2006-2020', 'Medicine (miscellaneous) (Q4)'), (20478, 'Journal of Classics Teaching', 20586310, 0.139, 'Q1', 1, 28, 494, 4, 26, '3', '2019', 'Classics (Q1); Education (Q4)'), (20479, 'Journal of Early Modern History', 15700658, 0.139, 'Q2', 19, 22, 1046, 18, 68, '16', '1997-2020', 'History (Q2)'), (20480, 'Journal of Near Eastern Studies', 222968, 0.139, 'Q2', 16, 20, 636, 14, 45, '2', '1968, 1974, 1980, 1982-1988, 1992-1994, 1996-2020', 'Cultural Studies (Q2); Archeology (Q3); Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)'), (20481, 'Journal of sport history', 941700, 0.139, 'Q2', 9, 16, 886, 20, 73, '2', '1977-1979, 1981-1984, 1987, 1989, 1999-2002, 2010, 2012-2020', 'Cultural Studies (Q2); History (Q2); Sports Science (Q4)'), (20482, 'Journal of the Institute of Telecommunication', 17559278, 0.139, 'Q4', 12, 36, 124, 5, 72, '3', '2007-2019', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)'), (20483, 'Korean Journal of Pharmacognosy', 2533073, 0.139, 'Q4', 16, 45, 1314, 39, 144, '13', '1990-2011, 2013-2020', 'Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4)'), (20484, 'L.O.G.O.S. Interdisziplinair', 944405, 0.139, 'Q4', 7, 38, 543, 4, 57, '5', '2004-2019', 'Biological Psychiatry (Q4); Psychiatry and Mental Health (Q4)'), (20485, 'Nervno-Myshechnye Bolezni', 24130443, 0.139, 'Q4', 3, 18, 577, 21, 84, '10', '2017-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (20486, 'Nordic Theatre Studies', 9046380, 0.139, 'Q2', 2, 21, 512, 3, 62, '25', '2011-2012, 2014-2020', 'Visual Arts and Performing Arts (Q2)'), (20487, 'Norsk Antropologisk Tidsskrift', 15042898, 0.139, 'Q3', 5, 18, 569, 4, 38, '33', '2011-2019', 'Anthropology (Q3)'), (20488, 'Osteologie', 25675818, 0.139, 'Q4', 10, 40, 1184, 31, 99, '5', '1999-2020', 'Medicine (miscellaneous) (Q4)'), (20489, 'Praxis', 16618157, 0.139, 'Q4', 16, 238, 2456, 57, 513, '19', '1973, 1975, 1977, 1992-2020', 'Medicine (miscellaneous) (Q4)'), (20490, 'Primerjalna Knjizevnost', 3511189, 0.139, 'Q1', 7, 37, 1099, 7, 104, '60', '1996-2020', 'Literature and Literary Theory (Q1)'), (20491, 'Recent Advances in Computer Science and Commu', 26662558, 0.139, 'Q4', 12, 147, 4383, 67, 104, '16', '2020', 'Computer Science (miscellaneous) (Q4)'), (20492, 'Recherches de Theologie et Philosophie Mediev', 13707493, 0.139, 'Q2', 10, 5, 532, 10, 39, '24', '1996-2019', 'History (Q2); Philosophy (Q2); Religious Studies (Q2)'), (20493, 'Reforma y Democracia', 13152378, 0.139, 'Q4', 6, 0, 0, 13, 39, '94', '2008-2018', 'Public Administration (Q4); Sociology and Political Science (Q4)'), (20494, 'Renal Society of Australasia Journal', 18323804, 0.139, 'Q4', 8, 0, 0, 11, 29, '11', '2011-2018', 'Nephrology (Q4); Urology (Q4)'), (20495, 'Respectus Philologicus', 13928295, 0.139, 'Q1', 1, 36, 799, 3, 30, '69', '2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4)'), (20496, 'Revista Brasileira de Geofisica', 102261, 0.139, 'Q4', 19, 10, 325, 29, 110, '14', '1993-2020', 'Geophysics (Q4)'), (20497, 'Revista Chilena de Literatura', 487651, 0.139, 'Q1', 8, 45, 1442, 12, 93, '45', '2007-2020', 'Literature and Literary Theory (Q1)'), (20498, 'Revista Ciencias de la Salud', 16927273, 0.139, 'Q4', 7, 44, 1578, 44, 112, '47', '2007-2020', 'Health Policy (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4)'), (20499, 'Revista Colombiana de Obstetricia y Ginecolog', 347434, 0.139, 'Q4', 8, 30, 877, 20, 71, '47', '1960, 1962-1971, 1973-1996, 2007-2020', 'Obstetrics and Gynecology (Q4)'), (20500, 'Revista Colombiana de Quimica', 1202804, 0.139, 'Q4', 7, 18, 697, 32, 61, '47', '2008-2020', 'Chemistry (miscellaneous) (Q4)'), (20501, 'Revista Enfermagem', 1043552, 0.139, 'Q4', 12, 65, 1693, 49, 266, '14', '2010-2020', 'Nursing (miscellaneous) (Q4)'), (20502, 'Revista Espanola de Nutricion Humana y Dietet', 21731292, 0.139, 'Q4', 10, 27, 917, 57, 246, '12', '2011-2020', 'Food Science (Q4); Nutrition and Dietetics (Q4)'), (20503, 'Rossiyskiy Vestnik Perinatologii i Pediatrii', 25002228, 0.139, 'Q4', 4, 144, 3509, 99, 389, '10', '2017-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (20504, 'Russkii Zhunal Detskoi Nevrologii', 20738803, 0.139, 'Q4', 2, 20, 504, 4, 70, '10', '2017-2020', 'Neurology (clinical) (Q4); Pediatrics, Perinatology and Child Health (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (20505, 'Shinrigaku Kenkyu', 215236, 0.139, 'Q4', 17, 30, 819, 34, 167, '6', '1926-1938, 1941-1943, 1948-2020', 'Psychology (miscellaneous) (Q4)'), (20506, 'Sociology of Development', 2374538, 0.139, 'Q4', 2, 0, 0, 11, 21, '2', '2019', 'Development (Q4)'), (20507, 'Stanislavski Studies', 20544170, 0.139, 'Q2', 3, 26, 599, 6, 56, '3', '2012-2020', 'Visual Arts and Performing Arts (Q2)'), (20508, 'Studies in Eighteenth Century Culture', 3602370, 0.139, 'Q2', 9, 36, 868, 4, 62, '2', '1976, 1978-1979, 1981, 1984-1985, 1987, 1999, 2001-2019', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3)'), (20509, 'Studijne Zvesti Archeologickeho Ustavu Sloven', 5602793, 0.139, 'Q3', 2, 8, 521, 13, 84, '53', '2017-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20510, 'Swiss Bulletin for Applied Geology', 16641884, 0.139, 'Q4', 10, 12, 260, 4, 70, '19', '2009-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geochemistry and Petrology (Q4); Geology (Q4)'), (20511, 'Temas Americanistas', 2124408, 0.139, 'Q2', 3, 16, 1003, 11, 66, '12', '2012-2019', 'History (Q2); Sociology and Political Science (Q4)'), (20512, 'Tempo (Brazil)', 14137704, 0.139, 'Q2', 6, 37, 1322, 22, 111, '14', '1999, 2001, 2007-2020', 'History (Q2)'), (20513, 'Thailand Statistician', 23510676, 0.139, 'Q4', 3, 40, 873, 23, 56, '40', '2017-2020', 'Computational Mathematics (Q4); Statistics and Probability (Q4)'), (20514, 'Theatre and Performance Design', 23322578, 0.139, 'Q2', 4, 33, 376, 5, 46, '3', '2015-2019', 'Visual Arts and Performing Arts (Q2); Architecture (Q3)'), (20515, 'Ural Mathematical Journal', 24143952, 0.139, 'Q4', 2, 26, 493, 10, 19, '10', '2019-2020', 'Mathematics (miscellaneous) (Q4)'), (20516, 'Vivarium', 15685349, 0.139, 'Q2', 12, 14, 400, 12, 39, '16', '1963-1965, 1967-1970, 1972-1982, 1984, 1986-2004, 2007-2020', 'History (Q2); Philosophy (Q2)'), (20517, 'Weimarer Beitrage', 432199, 0.139, 'Q1', 3, 30, 792, 3, 79, '28', '2002-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2)'), (20518, 'Zeitschrift fur Bibliothekswesen und Bibliogr', 18642950, 0.139, 'Q4', 5, 32, 782, 6, 109, '5', '1969, 1988-2019', 'Library and Information Sciences (Q4)'), (20519, 'ABAC Journal', 8580855, 0.138, 'Q1', 3, 31, 1242, 19, 54, '40', '2018-2020', 'Literature and Literary Theory (Q1); Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Education (Q4); Social Sciences (miscellaneous)'), (20520, 'Acta Archaeologica Academiae Scientiarum Hung', 15882551, 0.138, 'Q3', 7, 20, 1412, 8, 43, '50', '2007-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20521, 'Advances in the History of Rhetoric', 15362426, 0.138, 'Q1', 6, 0, 0, 8, 57, '3', '1997-1999, 2002-2007, 2011-2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4)'), (20522, 'Alpha', 7182201, 0.138, 'Q3', 8, 38, 907, 11, 91, '45', '2008-2020', 'Arts and Humanities (miscellaneous) (Q3)'), (20523, 'Andrologia i Genital naa Hirurgia', 20709781, 0.138, 'Q4', 1, 27, 640, 4, 41, '10', '2019-2020', 'Reproductive Medicine (Q4); Surgery (Q4); Urology (Q4)'), (20524, 'Annals of HPB Surgery', 19955464, 0.138, 'Q4', 1, 46, 1210, 5, 52, '10', '2019-2020', 'Gastroenterology (Q4); Hepatology (Q4); Surgery (Q4)'), (20525, 'Asian Journal of Peacebuilding', 22882707, 0.138, 'Q3', 2, 20, 977, 12, 27, '13', '2018-2020', 'Arts and Humanities (miscellaneous) (Q3); Political Science and International Relations (Q3); Safety Research (Q4)'), (20526, 'Bulletin de la Societe de Linguistique de Par', 379069, 0.138, 'Q3', 10, 0, 0, 3, 21, '24', '1996-2013, 2015-2018', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20527, 'Canadian Journal of Urban Research', 11883774, 0.138, 'Q3', 19, 8, 464, 9, 16, '9', '1992-2017, 2019', 'Urban Studies (Q3); Geography, Planning and Development (Q4)'), (20528, 'Ceska a Slovenska Psychiatrie', 12120383, 0.138, 'Q4', 8, 52, 920, 24, 91, '31', '1995-2020', 'Psychiatry and Mental Health (Q4)'), (20529, 'Chinese Historical Review', 20487827, 0.138, 'Q2', 4, 7, 100, 3, 28, '3', '2014-2020', 'Cultural Studies (Q2); History (Q2)'), (20530, 'Collegium Antropologicum', 3506134, 0.138, 'Q3', 42, 35, 988, 25, 110, '58', '1978-1985, 1987, 1993, 1996-2020', 'Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Medicine (miscellaneous) (Q4)'), (20531, 'Current Bladder Dysfunction Reports', 19317220, 0.138, 'Q4', 12, 54, 2703, 38, 148, '2', '2006-2020', 'Biochemistry (Q4); Molecular Biology (Q4)'), (20532, 'Current Topics in Microbiology and Immunology', 70217, 0.138, 'Q4', 120, 49, 5623, 1090, 1, '5', '1967-2020', 'Immunology (Q4); Immunology and Allergy (Q4); Microbiology (Q4); Microbiology (medical) (Q4)'), (20533, 'Field Mycology', 14681641, 0.138, 'Q4', 6, 20, 147, 6, 106, '16', '2006-2020', 'Ecology (Q4); Plant Science (Q4)'), (20534, 'Harvard Theological Review', 14754517, 0.138, 'Q2', 23, 24, 1148, 18, 81, '3', '1908-2020', 'Religious Studies (Q2)'), (20535, 'Helictite', 179973, 0.138, 'Q4', 4, 0, 0, 1, 2, '11', '1979, 1981-1982, 2007, 2011-2012, 2016-2017', 'Earth-Surface Processes (Q4); Geology (Q4)'), (20536, 'Hirurgia Pozvonochnika', 18108997, 0.138, 'Q4', 3, 39, 1425, 36, 89, '10', '2018-2020', 'Anesthesiology and Pain Medicine (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (20537, 'Humanity', 21514372, 0.138, 'Q3', 2, 27, 708, 5, 12, '2', '2019-2020', 'Law (Q3); Sociology and Political Science (Q4)'), (20538, 'International Journal of Public Policy', 17400600, 0.138, 'Q3', 14, 6, 344, 27, 53, '3', '2005-2014', 'Political Science and International Relations (Q3); Public Administration (Q4); Sociology and Political Science (Q4)'), (20539, 'International Journal of Services and Standar', 17408857, 0.138, 'Q4', 19, 0, 0, 19, 26, '3', '2004, 2006-2019', 'Management of Technology and Innovation (Q4)'), (20540, 'Itinerarios', 15077241, 0.138, 'Q1', 2, 0, 0, 5, 62, '17', '2018-2019', 'Literature and Literary Theory (Q1); History (Q2); Anthropology (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)'), (20541, 'Journal of Advanced Veterinary Research', 20906269, 0.138, 'Q4', 2, 41, 1699, 20, 48, '32', '2018-2020', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (20542, 'Journal of Applied Measurement', 15297713, 0.138, 'Q4', 32, 0, 0, 11, 28, '2', '2000-2017', 'Applied Mathematics (Q4); Engineering (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (20543, 'Journal of Cellular Neuroscience and Oxidativ', 21497222, 0.138, 'Q4', 2, 3, 118, 10, 20, '18', '2015-2019', 'Biochemistry (Q4); Biophysics (Q4); Cell Biology (Q4); Cellular and Molecular Neuroscience (Q4); Molecular Biology (Q4)'), (20544, 'Journal of Chinese Pharmaceutical Sciences', 10031057, 0.138, 'Q4', 12, 92, 2546, 73, 273, '1', '2011-2020', 'Pharmaceutical Science (Q4)'), (20545, 'Journal of Comparative Asian Development', 15339114, 0.138, 'Q3', 10, 0, 0, 12, 26, '3', '2010-2019', 'Political Science and International Relations (Q3); Economics and Econometrics (Q4); Sociology and Political Science (Q4)'), (20546, 'Journal of Diagnostic Medical Sonography', 15525430, 0.138, 'Q4', 16, 76, 1542, 48, 188, '2', '1985-2020', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (20547, 'Journal of Doctoral Nursing Practice', 23809418, 0.138, 'Q4', 3, 31, 646, 14, 75, '2', '2016-2020', 'Health Policy (Q4); Nursing (miscellaneous) (Q4)'), (20548, 'Journal of Muslim Mental Health', 15564908, 0.138, 'Q2', 19, 10, 504, 19, 25, '2', '2007-2019', 'Religious Studies (Q2); Clinical Psychology (Q4); Health (social science) (Q4); Psychiatry and Mental Health (Q4)'), (20549, 'Journal of the Earth and Space Physics', 25383906, 0.138, 'Q4', 6, 64, 1960, 36, 161, '15', '2009-2020', 'Atmospheric Science (Q4); Earth-Surface Processes (Q4); Geophysics (Q4)'), (20550, 'Lekar a Technika', 3015491, 0.138, 'Q4', 5, 14, 305, 21, 55, '31', '1977-1991, 1996-2004, 2007, 2010, 2013-2019', 'Biophysics (Q4)'), (20551, 'Methods and Objects of Chemical Analysis', 19910290, 0.138, 'Q4', 3, 11, 452, 20, 59, '44', '2017-2020', 'Analytical Chemistry (Q4)'), (20552, 'Multimedia manual of cardiothoracic surgery :', 18139175, 0.138, 'Q4', 10, 79, 0, 15, 131, '3', '2013-2020', 'Medicine (miscellaneous) (Q4)'), (20553, 'Neurology Asia', 18236138, 0.138, 'Q4', 16, 94, 2047, 49, 163, '23', '2008-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (20554, 'Onkologe', 14330415, 0.138, 'Q4', 14, 169, 3889, 107, 442, '5', '1996-2020', 'Hematology (Q4); Oncology (Q4)'), (20555, 'Orthodontic Waves', 13440241, 0.138, 'Q4', 11, 23, 565, 19, 77, '3', '2006-2020', 'Orthodontics (Q4)'), (20556, 'Perspectives on Global Development and Techno', 15691497, 0.138, 'Q3', 16, 35, 1294, 34, 97, '16', '2002-2020', 'Political Science and International Relations (Q3); Development (Q4); Education (Q4); Geography, Planning and Development (Q4); Health (social science) (Q4); Social Sciences (miscellaneous) (Q4)'), (20557, 'Problemas del Desarrollo', 3017036, 0.138, 'Q4', 7, 21, 753, 25, 83, '30', '1979-1980, 1992-1993, 2009-2019', 'Development (Q4); Economics and Econometrics (Q4)'), (20558, 'Proceedings of the National Academy of Scienc', 25242350, 0.138, 'Q4', 1, 34, 864, 5, 47, '75', '2019-2020', 'Medicine (miscellaneous) (Q4)'), (20559, 'Publicum', 24477982, 0.138, 'Q3', 1, 0, 0, 2, 19, '14', '2019', 'Law (Q3)'), (20560, 'Revista Ecuatoriana de Neurologia', 10198113, 0.138, 'Q4', 5, 51, 1356, 24, 96, '64', '1992-2012, 2014-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (20561, 'Rorschachiana', 2151206, 0.138, 'Q4', 7, 13, 417, 7, 29, '2', '2004, 2008-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20562, 'Secuencia (Mexico City, Mexico)', 1860348, 0.138, 'Q2', 2, 33, 1312, 10, 84, '30', '1987, 1989, 2001-2002, 2016-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q4)'), (20563, 'Social and Economic Studies', 377651, 0.138, 'Q4', 6, 0, 0, 10, 37, '128', '1974, 1977-1986, 2008-2018', 'Economics and Econometrics (Q4); Social Sciences (miscellaneous) (Q4)'), (20564, 'Soins Aides - Soignantes', 17709857, 0.138, 'Q4', 3, 67, 271, 4, 184, '8', '2005-2020', 'Nursing (miscellaneous) (Q4)'), (20565, 'South African Journal on Human Rights', 2587203, 0.138, 'Q3', 12, 13, 0, 24, 67, '3', '1986, 1992-1993, 2008-2020', 'Law (Q3); Sociology and Political Science (Q4)'), (20566, 'Suchttherapie', 1439989, 0.138, 'Q4', 11, 44, 810, 19, 66, '5', '2000-2020', 'Applied Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20567, 'Synergies Europe', 2260653, 0.138, 'Q3', 3, 12, 189, 4, 28, '8', '2013-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (20568, 'Teoria', 11221259, 0.138, 'Q2', 3, 18, 64, 10, 63, '7', '2011-2012, 2014-2015, 2017-2020', 'Philosophy (Q2)'), (20569, 'Transformation', 17598931, 0.138, 'Q2', 7, 22, 811, 8, 63, '3', '1984-2020', 'Religious Studies (Q2)'), (20570, 'University of New South Wales law journal, Th', 3130096, 0.138, 'Q2', 4, 55, 436, 42, 89, '11', '1983, 1991, 1994, 2001-2003, 2018-2020', 'Philosophy (Q2); Law (Q3); Sociology and Political Science (Q4)'), (20571, 'Wuhan University Journal of Natural Sciences', 10071202, 0.138, 'Q4', 19, 0, 0, 129, 225, '1', '1996, 1998-2019', 'Multidisciplinary (Q4)'), (20572, 'Zhongguo shi yan xue ye xue za zhi / Zhongguo', 10092137, 0.138, 'Q4', 13, 349, 0, 191, 982, '1', '2002-2020', 'Medicine (miscellaneous) (Q4)'), (20573, 'Advances in Military Technology', 18022308, 0.137, 'Q4', 11, 34, 510, 31, 68, '31', '2006-2020', 'Aerospace Engineering (Q4); Automotive Engineering (Q4); Civil and Structural Engineering (Q4); Control and Systems Engineering (Q4); Mechanical Engineering (Q4)'), (20574, 'Aquichan', 16575997, 0.137, 'Q4', 8, 31, 1040, 34, 96, '47', '2011-2015, 2017-2020', 'Nursing (miscellaneous) (Q4)'), (20575, 'Arabic Sciences and Philosophy', 9574239, 0.137, 'Q2', 18, 6, 300, 10, 27, '3', '1991-2020', 'History (Q2); Philosophy (Q2); History and Philosophy of Science (Q3); Multidisciplinary (Q4)'), (20576, 'Asia-Pacific Journal of Molecular Biology and', 1287451, 0.137, 'Q4', 19, 39, 2025, 18, 65, '23', '2002-2020', 'Biotechnology (Q4); Molecular Biology (Q4)'), (20577, 'Berichte uber Landwirtschaft', 59080, 0.137, 'Q4', 12, 0, 0, 21, 62, '5', '1973, 1976-1982, 1984-1987, 1993, 1996-2019', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Economics and Econometrics (Q4)'), (20578, 'Breastfeeding Review', 7292759, 0.137, 'Q4', 25, 10, 438, 13, 27, '11', '1997-2020', 'Maternity and Midwifery (Q4); Medicine (miscellaneous) (Q4); Obstetrics and Gynecology (Q4)'), (20579, 'Bulletin Mensuel de la Societe Linneenne de L', 3661326, 0.137, 'Q4', 4, 0, 0, 3, 16, '8', '2008-2018', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4); Paleontology (Q4); Plant Science (Q4)'), (20580, 'Bulletin of Japan Association for Fire Scienc', 5460794, 0.137, 'Q4', 4, 0, 0, 5, 21, '6', '1954, 1956-1963, 1965-1972, 1976-1978, 1980, 1982-1991, 1993, 1995, 1998, 2000-2013, 2015-2018', 'Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Safety, Risk, Reliability and Quality (Q4)'), (20581, 'Chemicke Listy', 12137103, 0.137, 'Q4', 28, 119, 4350, 92, 306, '31', '1996-2020', 'Chemistry (miscellaneous) (Q4)'), (20582, 'Clinical Trials and Regulatory Science in Car', 24055875, 0.137, 'Q4', 6, 0, 0, 2, 3, '16', '2015-2017', 'Cardiology and Cardiovascular Medicine (Q4)'), (20583, 'Current Topics in Toxicology', 9728228, 0.137, 'Q4', 6, 23, 819, 9, 29, '4', '2007-2009, 2011-2020', 'Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)'), (20584, 'Danube', 18048285, 0.137, 'Q3', 8, 20, 850, 14, 41, '5', '2010-2020', 'Law (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (20585, 'Estudios Filologicos', 711713, 0.137, 'Q1', 8, 13, 482, 14, 91, '45', '2007-2019', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20586, 'Estudos em Comunicacao', 16464974, 0.137, 'Q4', 3, 11, 494, 23, 117, '26', '2017-2019', 'Communication (Q4)'), (20587, 'Georgian medical news', 15120112, 0.137, 'Q4', 15, 362, 0, 254, 944, '81', '2005-2020', 'Medicine (miscellaneous) (Q4)'), (20588, 'Glass Technology: European Journal of Glass S', 17533546, 0.137, 'Q4', 19, 1, 46, 12, 37, '3', '2006-2020', 'Ceramics and Composites (Q4); Materials Chemistry (Q4)'), (20589, 'Global Journal of Comparative Law', 2211906, 0.137, 'Q3', 3, 10, 647, 8, 28, '16', '2012-2019', 'Law (Q3)'), (20590, 'Hrvatski Dijalektoloski Zbornik', 24594849, 0.137, 'Q3', 2, 7, 267, 5, 26, '58', '2017-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20591, 'International Journal of Asia-Pacific Studies', 18236243, 0.137, 'Q2', 6, 12, 627, 18, 42, '23', '2011-2020', 'Cultural Studies (Q2); Sociology and Political Science (Q4)'), (20592, 'International Journal of Geoinformatics', 16866576, 0.137, 'Q4', 10, 37, 1166, 31, 106, '40', '2008-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Instrumentation (Q4)'), (20593, 'International Journal of Information and Educ', 20103689, 0.137, 'Q4', 3, 155, 3930, 69, 166, '37', '2019-2020', 'Computer Science Applications (Q4); Education (Q4)'), (20594, 'International Journal of Vehicle Autonomous S', 17415306, 0.137, 'Q4', 24, 9, 228, 29, 26, '3', '2002-2014, 2019', 'Automotive Engineering (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)'), (20595, 'Istorija 20 Veka', 25603647, 0.137, 'Q2', 2, 25, 680, 7, 23, '55', '2019-2020', 'Cultural Studies (Q2); History (Q2)'), (20596, 'Journal of Algebra Combinatorics Discrete Str', 2148838, 0.137, 'Q4', 1, 16, 308, 8, 13, '18', '2019-2020', 'Algebra and Number Theory (Q4); Discrete Mathematics and Combinatorics (Q4)'), (20597, 'Journal of Applied Horticulture', 9721045, 0.137, 'Q4', 10, 1, 30, 36, 97, '4', '2008-2019', 'Biotechnology (Q4); Horticulture (Q4); Plant Science (Q4)'), (20598, 'Journal of Automation, Mobile Robotics and In', 20802145, 0.137, 'Q4', 8, 47, 1317, 70, 106, '17', '2015-2020', 'Artificial Intelligence (Q4); Control and Systems Engineering (Q4); Signal Processing (Q4)'), (20599, 'Journal of Education', 220574, 0.137, 'Q3', 3, 56, 2469, 14, 29, '2', '2005, 2018-2020', 'Arts and Humanities (miscellaneous) (Q3); Education (Q4)'), (20600, 'Journal of Food Science and Technology (China', 20956002, 0.137, 'Q4', 3, 92, 2661, 51, 176, '1', '2018-2020', 'Food Science (Q4)'), (20601, 'Journal of Phytology', 20756240, 0.137, 'Q4', 2, 12, 415, 4, 10, '52', '2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (20602, 'Language and Dialogue', 22104127, 0.137, 'Q1', 9, 14, 518, 14, 60, '16', '2011-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20603, 'Lecturas de Economia', 23230622, 0.137, 'Q4', 6, 19, 626, 15, 46, '47', '2005-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4); Finance (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4); Statistics, Probabi'), (20604, 'Lengua y Migracion', 18895425, 0.137, 'Q3', 3, 12, 611, 6, 32, '12', '2015-2020', 'Linguistics and Language (Q3); Demography (Q4)'), (20605, 'Malaysian Journal of Chemistry', 15112292, 0.137, 'Q4', 3, 54, 1849, 23, 44, '23', '2018-2020', 'Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)'), (20606, 'Memoir of the Fukui Prefectural Dinosaur Muse', 13475622, 0.137, 'Q4', 9, 0, 0, 5, 13, '6', '2005-2011, 2013-2019', 'Paleontology (Q4)'), (20607, 'MFS - Modern Fiction Studies', 1080658, 0.137, 'Q1', 20, 30, 1188, 20, 86, '2', '2002-2020', 'Literature and Literary Theory (Q1)'), (20608, 'Monatsschrift fur Kriminologie und Strafrecht', 269301, 0.137, 'Q3', 8, 23, 1247, 10, 66, '5', '2010-2020', 'Law (Q3)'), (20609, 'Motivation Science', 23338113, 0.137, 'Q4', 2, 40, 1933, 1, 1, '2', '2019-2020', 'Applied Psychology (Q4); Developmental and Educational Psychology (Q4); Environmental Engineering (Q4); Health, Toxicology and Mutagenesis (Q4)'), (20610, 'Nauchno-Prakticheskaya Revmatologiya', 19954484, 0.137, 'Q4', 9, 75, 3420, 225, 323, '10', '2017-2020', 'Immunology (Q4); Immunology and Allergy (Q4); Rheumatology (Q4)'), (20611, 'Neuroscience and Behavioral Physiology', 1573899, 0.137, 'Q4', 33, 171, 6970, 130, 499, '2', '1967-1970, 1972-1973, 1976-1978, 1980-2020', 'Neuroscience (miscellaneous) (Q4)'), (20612, 'Nineteenth-Century French Studies', 15360172, 0.137, 'Q1', 6, 18, 714, 7, 59, '2', '1999, 2001-2019', 'Literature and Literary Theory (Q1)'), (20613, 'Nutrition Clinique et Metabolisme', 17683092, 0.137, 'Q4', 15, 36, 1288, 28, 80, '8', '1987-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4); Nutrition and Dietetics (Q4)'), (20614, 'Quaderni Costituzionali', 3926664, 0.137, 'Q3', 4, 0, 0, 19, 84, '7', '2015-2019', 'Law (Q3)'), (20615, 'Review of Politics', 346705, 0.137, 'Q3', 19, 30, 1121, 23, 95, '3', '1939-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q4)'), (20616, 'Revista Chilena de Neuro-Psiquiatria', 7179227, 0.137, 'Q4', 15, 41, 1251, 25, 88, '45', '1948, 1974, 1979, 1981-1988, 1997-1998, 2000-2020', 'Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4); Surgery (Q4)'), (20617, 'Russian Journal of Infection and Immunity', 22207619, 0.137, 'Q4', 5, 79, 2863, 71, 192, '10', '2017-2020', 'Immunology (Q4); Immunology and Allergy (Q4); Infectious Diseases (Q4)'), (20618, 'Russian Open Medical Journal', 23043415, 0.137, 'Q4', 8, 35, 971, 58, 111, '10', '2012-2020', 'Medicine (miscellaneous) (Q4)'), (20619, 'Science in Context', 2698897, 0.137, 'Q3', 27, 9, 550, 20, 61, '3', '1987-1989, 1991-2019', 'History and Philosophy of Science (Q3); Social Sciences (miscellaneous) (Q4)'), (20620, 'Scientia Agropecuaria', 20779917, 0.137, 'Q4', 2, 69, 2830, 19, 60, '68', '2019-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Soil Science (Q4)'), (20621, 'Squalen Bulletin of Marine and Fisheries Post', 20895690, 0.137, 'Q4', 1, 17, 621, 5, 15, '21', '2019-2020', 'Aquatic Science (Q4); Biotechnology (Q4); Ecology (Q4); Food Science (Q4); Pollution (Q4)'), (20622, 'Tijdschrift voor Communicatiewetenschap', 13846930, 0.137, 'Q4', 7, 5, 140, 7, 42, '16', '2008-2019', 'Communication (Q4)'), (20623, 'Vestnik Transplantologii i Iskusstvennykh Org', 19951191, 0.137, 'Q4', 5, 90, 2171, 58, 199, '10', '2015-2020', 'Immunology and Allergy (Q4); Transplantation (Q4)'), (20624, 'Aktuelle Urologie', 17868, 0.136, 'Q4', 13, 143, 1678, 65, 268, '5', '1972-2020', 'Urology (Q4)'), (20625, 'Archeologia e Calcolatori', 23851953, 0.136, 'Q3', 5, 4, 62, 25, 136, '7', '2016-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3); Computer Science Applications (Q4)'), (20626, 'Bangladesh Medical Research Council Bulletin', 3779238, 0.136, 'Q4', 19, 27, 576, 13, 82, '59', '1975-2019', 'Medicine (miscellaneous) (Q4)'), (20627, 'Chinese Education and Society', 19447116, 0.136, 'Q4', 15, 18, 346, 44, 87, '2', '1993-1997, 1999-2020', 'Education (Q4); Sociology and Political Science (Q4)'), (20628, 'Clinical Practice', 20449038, 0.136, 'Q4', 8, 0, 0, 7, 21, '3', '2012-2017', 'Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4)'), (20629, 'Clinical Risk', 13562622, 0.136, 'Q3', 13, 0, 0, 2, 8, '3', '1995-2017', 'Law (Q3); Medicine (miscellaneous) (Q4)'), (20630, 'Communications in Science and Technology', 25029266, 0.136, 'Q4', 5, 16, 467, 13, 36, '21', '2016-2020', 'Chemical Engineering (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (20631, 'Computers in Education Journal', 10693769, 0.136, 'Q4', 13, 6, 140, 16, 50, '2', '1994-2020', 'Computer Science (miscellaneous) (Q4); Education (Q4)'), (20632, 'Construction History', 2677768, 0.136, 'Q2', 5, 14, 543, 8, 35, '3', '1985-1986, 2002-2004, 2007-2019', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Building and Construction (Q4)'), (20633, 'Curriculum and Teaching', 726416, 0.136, 'Q4', 5, 12, 520, 9, 29, '11', '2014-2020', 'Education (Q4)'), (20634, 'Dentistry 3000', 21678677, 0.136, 'Q4', 1, 3, 57, 3, 9, '2', '2018-2019', 'Dentistry (miscellaneous) (Q4)'), (20635, 'Electrical Engineering in Japan (English tran', 4247760, 0.136, 'Q4', 28, 44, 735, 100, 287, '2', '1968-2020', 'Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)'), (20636, 'Evidence-Based Communication Assessment and I', 17489539, 0.136, 'Q3', 13, 32, 547, 20, 59, '3', '2007-2020', 'Linguistics and Language (Q3); Cognitive Neuroscience (Q4); Rehabilitation (Q4); Speech and Hearing (Q4)'), (20637, 'Halduskultuur', 17366089, 0.136, 'Q4', 12, 5, 237, 9, 20, '71', '2009-2019', 'Public Administration (Q4)'), (20638, 'Hawwa', 15692078, 0.136, 'Q2', 11, 17, 896, 7, 37, '16', '2003-2012, 2014-2020', 'Cultural Studies (Q2); Gender Studies (Q4); Sociology and Political Science (Q4)'), (20639, 'Hematologia', 20813287, 0.136, 'Q4', 5, 13, 543, 9, 83, '17', '2010-2020', 'Hematology (Q4); Oncology (Q4)'), (20640, 'Historia 396', 7190719, 0.136, 'Q2', 4, 23, 1199, 11, 67, '45', '2011-2020', 'History (Q2)'), (20641, 'History and Memory', 15271994, 0.136, 'Q2', 24, 13, 880, 11, 30, '2', '1999-2019', 'History (Q2)'), (20642, 'Indian Journal of Environmental Protection', 2537141, 0.136, 'Q4', 18, 36, 800, 86, 365, '4', '1981-1990, 2000-2020', 'Environmental Science (miscellaneous) (Q4)'), (20643, 'Information and Control', 10020411, 0.136, 'Q4', 9, 0, 0, 76, 151, '1', '2013-2018', 'Artificial Intelligence (Q4); Computer Science Applications (Q4); Control and Optimization (Q4); Control and Systems Engineering (Q4); Human-Computer Interaction (Q4); Information Systems (Q4)'), (20644, 'International Journal of Computational Materi', 17533465, 0.136, 'Q4', 11, 19, 569, 14, 39, '3', '2007, 2009-2014', 'Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Modeling and Simulation (Q4)'), (20645, 'International Journal of English Language and', 23060646, 0.136, 'Q1', 3, 26, 941, 15, 26, '2', '2019-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20646, 'International Journal of Surface Engineering ', 21667233, 0.136, 'Q4', 2, 7, 166, 9, 16, '2', '2018-2020', 'Biomaterials (Q4); Surfaces, Coatings and Films (Q4)'), (20647, 'Istanbul University - Journal of Electrical a', 13030914, 0.136, 'Q4', 11, 0, 0, 65, 96, '18', '2005-2018', 'Electrical and Electronic Engineering (Q4)'), (20648, 'Jezikoslovlje', 13317202, 0.136, 'Q3', 6, 17, 648, 9, 63, '58', '2008-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20649, 'Journal for the Academic Study of Religion', 2047704, 0.136, 'Q2', 5, 11, 379, 20, 39, '3', '2013-2020', 'Religious Studies (Q2)'), (20650, 'Journal of High Speed Networks', 9266801, 0.136, 'Q4', 21, 23, 769, 61, 71, '16', '1992-2008, 2010-2020', 'Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems (Q4)'), (20651, 'Journal of Scottish Philosophy', 17552001, 0.136, 'Q2', 1, 22, 651, 5, 26, '3', '2018-2020', 'Cultural Studies (Q2); History (Q2); Philosophy (Q2)'), (20652, 'Jurisprudence', 20403313, 0.136, 'Q3', 5, 37, 17, 25, 72, '3', '2015-2020', 'Law (Q3)'), (20653, 'Jurnal Ekonomi Malaysia', 1261962, 0.136, 'Q4', 8, 28, 1428, 49, 138, '23', '1981, 1983, 2006-2019', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (20654, 'Kardiologe', 18649718, 0.136, 'Q4', 17, 67, 1336, 50, 185, '5', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (20655, 'Korean Journal of Veterinary Research', 24661392, 0.136, 'Q4', 7, 24, 505, 26, 127, '13', '2011-2020', 'Veterinary (miscellaneous) (Q4)'), (20656, 'Laboratorium', 20781938, 0.136, 'Q4', 2, 28, 1060, 11, 33, '10', '2018-2020', 'Social Sciences (miscellaneous) (Q4)'), (20657, 'Lurralde', 2115891, 0.136, 'Q4', 4, 2, 84, 9, 36, '12', '1989-1995, 2006-2020', 'Social Sciences (miscellaneous) (Q4)'), (20658, 'Northwestern Geology', 10096248, 0.136, 'Q4', 20, 0, 0, 40, 242, '1', '2005-2019', 'Geology (Q4)'), (20659, 'Online Journal of Analytic Combinatorics', 19313365, 0.136, 'Q4', 5, 2, 29, 8, 19, '41', '2014-2020', 'Discrete Mathematics and Combinatorics (Q4)'), (20660, 'Oral History Review', 15338592, 0.136, 'Q2', 14, 15, 494, 8, 46, '3', '1973-1993, 1995-2002, 2006, 2008-2019', 'History (Q2)'), (20661, 'Pakistan Journal of Scientific and Industrial', 22216413, 0.136, 'Q4', 4, 29, 1012, 34, 54, '34', '2011-2018', 'Materials Science (miscellaneous) (Q4); Mathematical Physics (Q4); Physical and Theoretical Chemistry (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (20662, 'Patologiya Krovoobrashcheniya i Kardiokhirurg', 16813472, 0.136, 'Q4', 3, 45, 1401, 22, 83, '10', '2018-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (20663, 'Pediatria Polska', 313939, 0.136, 'Q4', 11, 46, 1123, 32, 278, '17', '1949-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (20664, 'Physics Research International', 1687689, 0.136, 'Q4', 13, 0, 0, 3, 1, '2', '2010-2017', 'Physics and Astronomy (miscellaneous) (Q4)'), (20665, 'Poincare Journal of Analysis and Applications', 23496789, 0.136, 'Q4', 2, 22, 515, 10, 30, '4', '2018-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (20666, 'Politica y Sociedad', 11308001, 0.136, 'Q4', 9, 37, 1728, 27, 105, '12', '2011-2020', 'Sociology and Political Science (Q4)'), (20667, 'Portuguese Journal of Social Science', 1476413, 0.136, 'Q4', 11, 7, 270, 12, 60, '3', '2002-2019', 'Social Sciences (miscellaneous) (Q4)'), (20668, 'Recent Advances in Electrical and Electronic ', 23520965, 0.136, 'Q4', 6, 123, 4402, 89, 161, '16', '2007, 2014-2020', 'Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (20669, 'Rendiconti del Seminario Matematico', 3731243, 0.136, 'Q4', 20, 16, 318, 15, 46, '7', '1999-2018', 'Mathematics (miscellaneous) (Q4)'), (20670, 'Renewable Energy and Power Quality Journal', 2172038, 0.136, 'Q4', 22, 133, 2406, 81, 272, '12', '2003-2019', 'Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (20671, 'Revista Luna Azul', 19092474, 0.136, 'Q4', 3, 2, 56, 27, 89, '47', '2017-2019', 'Education (Q4); Environmental Science (miscellaneous) (Q4)'), (20672, 'Revue de Geographie Alpine', 351121, 0.136, 'Q4', 15, 28, 892, 17, 59, '8', '1977, 1979, 1982-1988, 1994-2020', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (20673, 'Russian Review', 360341, 0.136, 'Q1', 24, 27, 0, 16, 74, '3', '1973, 1978, 1981, 1983, 1985, 1987, 1996-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)'), (20674, 'Urbano', 7173997, 0.136, 'Q3', 3, 21, 691, 8, 42, '45', '2016-2020', 'Urban Studies (Q3)'), (20675, 'Vestnik Khirurgii Imeni I.I.Grekova', 424625, 0.136, 'Q4', 7, 70, 1301, 24, 211, '10', '1946, 1949-2015, 2018-2020', 'Medicine (miscellaneous) (Q4); Surgery (Q4)'), (20676, 'ASEAN Engineering Journal', 25869159, 0.135, 'Q4', 3, 20, 394, 27, 30, '40', '2017-2020', 'Chemical Engineering (miscellaneous) (Q4); Computer Science Applications (Q4); Energy Engineering and Power Technology (Q4); Engineering (miscellaneous) (Q4); Environmental Engineering (Q4); Geotechni'), (20677, 'Asiatic', 19853106, 0.135, 'Q1', 4, 19, 459, 11, 62, '23', '2012-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20678, 'ASp', 12468185, 0.135, 'Q3', 1, 17, 323, 5, 22, '8', '2018-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20679, 'Biomedical Research and Therapy', 21984093, 0.135, 'Q4', 1, 0, 0, 1, 1, '49', '2018', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (20680, 'Bookbird: Journal of International Children s', 19186983, 0.135, 'Q1', 2, 43, 485, 18, 64, '19', '2018-2020', 'Literature and Literary Theory (Q1)'), (20681, 'Bulletin of Siberian Medicine', 16820363, 0.135, 'Q4', 3, 72, 2027, 61, 215, '10', '2018-2020', 'Molecular Medicine (Q4)'), (20682, 'Cornell International Law Journal', 108812, 0.135, 'Q3', 27, 18, 1359, 15, 33, '2', '1992, 1996-2019', 'Law (Q3); Political Science and International Relations (Q3)'), (20683, 'Cuadernos Hispanoamericanos', 11250, 0.135, 'Q2', 4, 0, 0, 14, 208, '12', '1971, 1977, 1980, 1983, 1985, 1987, 1989, 2002-2019', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3)'), (20684, 'Current Research in Social Psychology', 10887423, 0.135, 'Q4', 21, 0, 0, 3, 13, '2', '1996-2018', 'Social Psychology (Q4)'), (20685, 'Current Topics in Pharmacology', 9724559, 0.135, 'Q4', 6, 14, 591, 8, 35, '4', '2006-2019', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (20686, 'Defence Life Science Journal', 24560537, 0.135, 'Q4', 3, 43, 1473, 15, 36, '4', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (20687, 'Dialog so Vremenem', 20737564, 0.135, 'Q2', 2, 76, 1703, 19, 179, '10', '2016-2019', 'History (Q2); Philosophy (Q3)'), (20688, 'Educational Administration: Theory and Practi', 13004832, 0.135, 'Q4', 1, 10, 515, 3, 20, '18', '2019-2020', 'Education (Q4)'), (20689, 'eJournal of eDemocracy and Open Government', 20759517, 0.135, 'Q4', 1, 13, 625, 4, 13, '28', '2019-2020', 'Computer Science Applications (Q4); Sociology and Political Science (Q4)'), (20690, 'English Text Construction', 18748775, 0.135, 'Q1', 14, 9, 438, 11, 36, '16', '2008-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20691, 'Espacio, Tiempo y Educacion', 23407263, 0.135, 'Q2', 2, 31, 1063, 12, 56, '12', '2018-2020', 'History (Q2); Philosophy (Q3); Education (Q4); Sociology and Political Science (Q4)'), (20692, 'Film Quarterly', 151386, 0.135, 'Q2', 20, 1, 19, 38, 127, '2', '1969-2019', 'Visual Arts and Performing Arts (Q2)'), (20693, 'Folia Linguistica Historica', 168647, 0.135, 'Q3', 11, 8, 525, 5, 30, '5', '1980-1986, 1989-2004, 2006-2018', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20694, 'Formosan Journal of Surgery', 1682606, 0.135, 'Q4', 8, 41, 695, 30, 138, '4', '1999-2003, 2011-2020', 'Surgery (Q4)'), (20695, 'Gastroenterologie a Hepatologie', 18047874, 0.135, 'Q4', 9, 77, 1644, 33, 188, '31', '2011-2020', 'Gastroenterology (Q4); Hepatology (Q4)'), (20696, 'Historische Sprachforschung', 9353518, 0.135, 'Q3', 9, 0, 0, 3, 14, '5', '2002-2007, 2010-2011, 2014-2017', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20697, 'Historische Zeitschrift', 182613, 0.135, 'Q2', 15, 19, 853, 9, 52, '5', '1859-1917, 1919-1943, 1950-2020', 'History (Q2)'), (20698, 'India Review', 14736489, 0.135, 'Q3', 10, 21, 48, 23, 67, '3', '2010-2020', 'Political Science and International Relations (Q3); Sociology and Political Science (Q4)'), (20699, 'International Journal of Critical Pedagogy', 21571074, 0.135, 'Q4', 2, 8, 303, 4, 19, '2', '2018-2020', 'Education (Q4)'), (20700, 'International Journal of Healthcare Technolog', 13682156, 0.135, 'Q4', 17, 0, 0, 12, 32, '3', '1999-2014', 'Health Informatics (Q4); Leadership and Management (Q4)'), (20701, 'International Journal of Social Sustainabilit', 2325114, 0.135, 'Q4', 4, 5, 245, 11, 31, '2', '2013-2020', 'Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)'), (20702, 'International Journal of Virtual and Personal', 19478526, 0.135, 'Q4', 10, 10, 365, 19, 22, '2', '2010-2020', 'Computer Science Applications (Q4); Education (Q4); E-learning (Q4)'), (20703, 'Japanese Journal of Crop Science', 13490990, 0.135, 'Q4', 22, 33, 120, 15, 91, '6', '1930-1944, 1947-2020', 'Agronomy and Crop Science (Q4); Food Science (Q4); Genetics (Q4)'), (20704, 'Japan Journal of Food Engineering', 13457942, 0.135, 'Q4', 12, 16, 443, 19, 55, '6', '2000-2020', 'Food Science (Q4); Industrial and Manufacturing Engineering (Q4)'), (20705, 'Journal of Chinese Soil and Water Conservatio', 2556073, 0.135, 'Q4', 6, 15, 369, 12, 61, '22', '2012-2020', 'Earth-Surface Processes (Q4); Geotechnical Engineering and Engineering Geology (Q4); Soil Science (Q4); Water Science and Technology (Q4)'), (20706, 'Journal of Veterinary Parasitology', 9711031, 0.135, 'Q4', 11, 11, 247, 6, 63, '4', '2007-2020', 'Veterinary (miscellaneous) (Q4)'), (20707, 'Klinische Neurophysiologie', 14340275, 0.135, 'Q4', 8, 46, 679, 13, 80, '5', '1998-2020', 'Neurology (clinical) (Q4); Physiology (medical) (Q4)'), (20708, 'Limnological Review', 23007575, 0.135, 'Q4', 2, 32, 1038, 9, 21, '17', '2018-2020', 'Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Water Science and Technology (Q4)'), (20709, 'Managed Care', 10623388, 0.135, 'Q4', 24, 0, 0, 65, 505, '2', '1994-2019', 'Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20710, 'Micrologus', 11232560, 0.135, 'Q2', 3, 16, 49, 5, 40, '7', '2015-2018', 'History (Q2); History and Philosophy of Science (Q3)'), (20711, 'Oriens', 18778372, 0.135, 'Q2', 9, 13, 714, 9, 29, '16', '2009-2020', 'Cultural Studies (Q2); Religious Studies (Q2); Philosophy (Q3)'), (20712, 'Pakistan Journal of Life and Social Sciences', 22217630, 0.135, 'Q4', 9, 1, 39, 46, 53, '34', '2012-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Medicine (miscellaneous) (Q4);'), (20713, 'Pensamiento', 314749, 0.135, 'Q3', 6, 38, 1911, 28, 190, '12', '2002-2020', 'Philosophy (Q3)'), (20714, 'Propagation of Ornamental Plants', 13119109, 0.135, 'Q4', 17, 17, 599, 14, 44, '61', '2005-2019', 'Forestry (Q4); Plant Science (Q4)'), (20715, 'Psychotherapies', 251737, 0.135, 'Q4', 8, 24, 644, 17, 63, '19', '1990-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20716, 'Recent Patents on Engineering', 18722121, 0.135, 'Q4', 18, 68, 2269, 55, 107, '52', '2008-2020', 'Engineering (miscellaneous) (Q4)'), (20717, 'Revista de Literatura', 19884192, 0.135, 'Q1', 5, 23, 992, 7, 58, '12', '1996-2020', 'Literature and Literary Theory (Q1)'), (20718, 'Revista de Pedagogia', 7989792, 0.135, 'Q4', 7, 0, 0, 15, 50, '94', '2007-2018', 'Education (Q4)'), (20719, 'Revista Habanera de Ciencias Medicas', 1729519, 0.135, 'Q4', 6, 120, 2995, 54, 263, '85', '2002-2020', 'Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20720, 'Revue Internationale et Strategique', 12871672, 0.135, 'Q3', 6, 59, 608, 11, 155, '8', '2001-2020', 'Political Science and International Relations (Q3)'), (20721, 'Revue Roumaine de Chimie', 353930, 0.135, 'Q4', 21, 90, 2833, 87, 302, '43', '1996-2020', 'Chemistry (miscellaneous) (Q4)'), (20722, 'SAE International Journal of Transportation S', 23275626, 0.135, 'Q4', 9, 1, 26, 24, 44, '2', '2013-2019', 'Human Factors and Ergonomics (Q4); Mechanical Engineering (Q4); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4)'), (20723, 'School Science and Mathematics', 366803, 0.135, 'Q3', 2, 53, 1805, 14, 17, '2', '1973, 1978, 2019-2020', 'History and Philosophy of Science (Q3); Education (Q4); Engineering (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (20724, 'Slavia', 376736, 0.135, 'Q1', 3, 35, 727, 12, 70, '31', '2002, 2009-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20725, 'Slavia Meridionalis', 23922400, 0.135, 'Q1', 1, 24, 942, 10, 72, '17', '2017-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); History (Q2); Anthropology (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20726, 'Socialni Studia', 18136104, 0.135, 'Q4', 6, 17, 843, 14, 37, '31', '2009-2020', 'Social Sciences (miscellaneous) (Q4)'), (20727, 'Srpski Arhiv Za Celokupno Lekarstvo', 3708179, 0.135, 'Q4', 17, 133, 3200, 63, 336, '55', '1950-2020', 'Medicine (miscellaneous) (Q4)'), (20728, 'suburban', 21972567, 0.135, 'Q3', 7, 43, 1439, 15, 106, '5', '2014-2015, 2018-2020', 'Urban Studies (Q3); Geography, Planning and Development (Q4)'), (20729, 'Taiwan Journal of Anthropology', 17271878, 0.135, 'Q3', 2, 11, 353, 4, 19, '22', '2013-2020', 'Anthropology (Q3)'), (20730, 'Trauma und Berufskrankheit', 14366274, 0.135, 'Q4', 8, 0, 0, 45, 221, '5', '2002, 2005-2019', 'Emergency Medicine (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20731, 'Ubiquitous Learning', 18359795, 0.135, 'Q4', 10, 6, 221, 11, 39, '2', '2009-2020', 'Computer Science (miscellaneous) (Q4); Education (Q4); E-learning (Q4)'), (20732, 'Update in Anaesthesia', 13534882, 0.135, 'Q4', 9, 12, 226, 6, 34, '3', '1996-2012, 2014-2020', 'Anesthesiology and Pain Medicine (Q4)'), (20733, 'Visual Ethnography', 24999288, 0.135, 'Q2', 5, 13, 442, 11, 58, '7', '2012-2019', 'Cultural Studies (Q2); Anthropology (Q3); Communication (Q4)'), (20734, 'Western Historical Quarterly', 433810, 0.135, 'Q2', 13, 15, 1092, 3, 46, '3', '1972, 1976-1977, 1990, 2001-2020', 'History (Q2)'), (20735, 'Wulfenia', 1561882, 0.135, 'Q4', 10, 2, 76, 26, 42, '28', '2007-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (20736, 'Acta Haematologica Polonica', 23007117, 0.134, 'Q4', 10, 45, 1291, 35, 106, '17', '1971-2020', 'Hematology (Q4); Oncology (Q4)'), (20737, 'Acta Periodica Technologica', 14507188, 0.134, 'Q4', 15, 17, 493, 32, 85, '55', '2007-2008, 2010-2019', 'Engineering (miscellaneous) (Q4)'), (20738, 'African Journal Biomedical Research', 11195096, 0.134, 'Q4', 17, 93, 2652, 36, 136, '51', '2008, 2010-2019', 'Medicine (miscellaneous) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (20739, 'Agora', 15161498, 0.134, 'Q4', 4, 39, 1091, 11, 117, '14', '2008-2020', 'Psychiatry and Mental Health (Q4); Psychology (miscellaneous) (Q4)'), (20740, 'Alternative and Complementary Therapies', 15579085, 0.134, 'Q4', 15, 52, 1041, 35, 109, '2', '1999-2020', 'Complementary and Alternative Medicine (Q4)'), (20741, 'Annales de Demographie Historique', 662062, 0.134, 'Q4', 13, 14, 1328, 8, 38, '8', '1968, 1970, 1972-1973, 1976-1996, 1999, 2001-2014, 2016-2020', 'Demography (Q4)'), (20742, 'Asia-Pacific Journal of Innovation in Hospita', 22891471, 0.134, 'Q4', 3, 1, 147, 16, 46, '23', '2017-2019', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (20743, 'Biblios', 15624730, 0.134, 'Q4', 3, 0, 0, 19, 68, '2', '2013-2019', 'Library and Information Sciences (Q4)'), (20744, 'Clinical Psychology Forum', 17475732, 0.134, 'Q4', 16, 139, 1600, 26, 271, '3', '2006, 2012-2020', 'Clinical Psychology (Q4)'), (20745, 'Comunicazione Politica', 19725094, 0.134, 'Q4', 3, 30, 794, 10, 93, '7', '2016-2019', 'Communication (Q4); Sociology and Political Science (Q4)'), (20746, 'Critical Care and Shock', 14107767, 0.134, 'Q4', 9, 38, 884, 18, 61, '21', '2002-2020', 'Critical Care and Intensive Care Medicine (Q4)'), (20747, 'Current Issues in Pharmacy and Medical Scienc', 2084980, 0.134, 'Q4', 9, 40, 1251, 42, 120, '17', '2012-2020', 'Biochemistry (Q4); Medicine (miscellaneous) (Q4); Molecular Biology (Q4); Pharmacology (Q4)'), (20748, 'Differences', 10407391, 0.134, 'Q2', 29, 11, 612, 16, 61, '2', '1994, 1998, 2001-2019', 'Cultural Studies (Q2); Gender Studies (Q4)'), (20749, 'Discurso y Sociedad', 18874606, 0.134, 'Q3', 2, 18, 668, 12, 62, '12', '2018-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20750, 'Educational Research for Social Change', 22214070, 0.134, 'Q4', 4, 15, 738, 32, 34, '27', '2018-2019', 'Education (Q4); Sociology and Political Science (Q4)'), (20751, 'Ekonomski Pregled', 4247558, 0.134, 'Q4', 9, 28, 1172, 34, 97, '58', '1971, 1981-1983, 2000-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (20752, 'Epilepsy and Seizure', 18825567, 0.134, 'Q4', 3, 5, 102, 4, 23, '6', '2009-2014, 2016-2019', 'Neurology (clinical) (Q4)'), (20753, 'European Journal of Government and Economics', 22547088, 0.134, 'Q4', 6, 16, 742, 18, 30, '12', '2012-2020', 'Economics and Econometrics (Q4); Public Administration (Q4)'), (20754, 'Flebologiya', 19976976, 0.134, 'Q4', 2, 44, 976, 20, 84, '10', '2017-2020', 'Cardiology and Cardiovascular Medicine (Q4); Hematology (Q4)'), (20755, 'Fundamental and Applied Mathematics', 15605159, 0.134, 'Q4', 7, 15, 144, 23, 81, '10', '2009-2010, 2013-2016, 2018-2019', 'Algebra and Number Theory (Q4); Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)'), (20756, 'Graellsia', 3675041, 0.134, 'Q4', 9, 17, 948, 11, 27, '12', '2011-2020', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (20757, 'Greek, Roman and Byzantine Studies', 173916, 0.134, 'Q2', 16, 34, 135, 24, 111, '2', '1970-1972, 1976, 1979-1983, 1989, 2002-2020', 'Classics (Q2); Cultural Studies (Q2); History (Q2)'), (20758, 'Human IT', 14021501, 0.134, 'Q4', 10, 0, 0, 2, 14, '20', '1997-2002, 2004-2010, 2012, 2014-2019', 'E-learning (Q4); Human-Computer Interaction (Q4); Information Systems (Q4)'), (20759, 'Indian Journal of Agricultural Biochemistry', 9706399, 0.134, 'Q4', 7, 32, 1038, 14, 98, '4', '2003-2020', 'Agronomy and Crop Science (Q4); Biochemistry (Q4); Plant Science (Q4)'), (20760, 'International Journal of African Historical S', 3617882, 0.134, 'Q2', 19, 16, 0, 13, 45, '2', '1976, 1979-1981, 1985-1989, 1999-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q4)'), (20761, 'International Journal of Information and Mana', 10171819, 0.134, 'Q4', 22, 20, 754, 24, 66, '22', '1996-2020', 'Control and Systems Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Information Systems and Management (Q4); Management Information Systems (Q4); Strategy and Management (Q4)'), (20762, 'International Journal of Media and Cultural P', 17408296, 0.134, 'Q2', 9, 21, 901, 25, 50, '3', '2009, 2013-2020', 'Cultural Studies (Q2); Communication (Q4)'), (20763, 'Italian Journal of Medicine', 18779352, 0.134, 'Q4', 10, 46, 1095, 44, 135, '7', '2007-2020', 'Medicine (miscellaneous) (Q4)'), (20764, 'Journal of Chemical Health Risks', 22516719, 0.134, 'Q4', 3, 32, 1207, 16, 32, '15', '2019-2020', 'Chemical Health and Safety (Q4); Environmental Chemistry (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4)'), (20765, 'Journal of Chinese Military History', 22127453, 0.134, 'Q2', 4, 6, 330, 5, 19, '16', '2012-2019', 'Cultural Studies (Q2); History (Q2)'), (20766, 'Journal of Global South Studies', 24761397, 0.134, 'Q2', 1, 7, 438, 2, 37, '2', '2016-2019', 'History (Q2); Development (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (20767, 'Journal of the American Oriental Society', 30279, 0.134, 'Q2', 15, 0, 0, 29, 93, '2', '1971, 1973, 1979, 1982, 1986, 1988, 1998, 2002-2008, 2010-2019', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3)'), (20768, 'Journal of the Professional Association for C', 1938663, 0.134, 'Q4', 17, 5, 108, 16, 24, '2', '2003-2020', 'Horticulture (Q4); Plant Science (Q4)'), (20769, 'Junctures', 11765119, 0.134, 'Q1', 2, 15, 225, 5, 25, '41', '2009-2012, 2015-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Visual Arts and Performing Arts (Q2)'), (20770, 'Linguistica (Slovenia)', 243922, 0.134, 'Q3', 1, 3, 93, 5, 44, '60', '2018-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20771, 'Malayan Nature Journal', 251291, 0.134, 'Q4', 7, 15, 344, 18, 58, '23', '1977, 1982-1984, 2008-2015, 2017-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)'), (20772, 'MCB Molecular and Cellular Biomechanics', 15565300, 0.134, 'Q4', 29, 19, 474, 29, 78, '2', '2005-2020', 'Biophysics (Q4); Cell Biology (Q4); Medicine (miscellaneous) (Q4); Molecular Biology (Q4); Molecular Medicine (Q4)'), (20773, 'Microwave Review', 14505835, 0.134, 'Q3', 6, 13, 241, 10, 36, '55', '2012-2020', 'Law (Q3); Electrical and Electronic Engineering (Q4)'), (20774, 'Molecular and Cellular Pharmacology', 19381247, 0.134, 'Q4', 24, 0, 0, 1, 3, '2', '2009-2017', 'Molecular Biology (Q4); Pharmaceutical Science (Q4)'), (20775, 'NASN school nurse (Print)', 19426038, 0.134, 'Q4', 11, 62, 0, 53, 183, '2', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (20776, 'Nineteenth-Century Contexts', 14772663, 0.134, 'Q1', 12, 33, 1199, 13, 81, '3', '1987-1997, 1999-2020', 'Literature and Literary Theory (Q1); Cultural Studies (Q2)'), (20777, 'Norsk Epidemiologi', 8032491, 0.134, 'Q4', 19, 0, 0, 7, 15, '33', '2005-2017, 2019', 'Epidemiology (Q4)'), (20778, 'Obstetrics and Gynaecology Forum', 10291962, 0.134, 'Q4', 4, 16, 332, 2, 69, '27', '2008-2020', 'Obstetrics and Gynecology (Q4)'), (20779, 'Philosophical Forum, The', 31806, 0.134, 'Q3', 15, 28, 200, 9, 46, '2', '1973, 1988, 1996-2020', 'Philosophy (Q3)'), (20780, 'Prolegomena', 13334395, 0.134, 'Q3', 4, 15, 475, 3, 26, '58', '2008-2020', 'Philosophy (Q3)'), (20781, 'Psychological Perspectives', 332925, 0.134, 'Q4', 4, 37, 329, 17, 127, '3', '1970-2020', 'Psychology (miscellaneous) (Q4)'), (20782, 'Research Policy: X', 25901451, 0.134, 'Q4', 2, 1, 82, 3, 2, '16', '2019-2020', 'Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)'), (20783, 'Revista Gerencia y Politicas de Salud', 16577027, 0.134, 'Q4', 8, 16, 713, 26, 75, '47', '2011-2019', 'Health Policy (Q4)'), (20784, 'Revue Francaise de Psychanalyse', 352942, 0.134, 'Q4', 14, 102, 1165, 24, 434, '8', '1951-1979, 2001-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20785, 'Scottish Journal of Theology', 369306, 0.134, 'Q2', 13, 22, 727, 12, 68, '3', '1948-2020', 'Religious Studies (Q2)'), (20786, 'South Dakota medicine : the journal of the So', 383317, 0.134, 'Q4', 16, 105, 0, 69, 321, '2', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (20787, 'Studies in American Indian Literatures', 7303238, 0.134, 'Q1', 10, 9, 412, 13, 52, '2', '2002-2019', 'Literature and Literary Theory (Q1)'), (20788, 'Topics in Linguistics', 13377590, 0.134, 'Q3', 4, 8, 338, 9, 35, '5', '2014-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20789, 'Turkderm Turkish Archives of Dermatology and ', 27176398, 0.134, 'Q4', 10, 0, 0, 17, 83, '18', '2018-2019', 'Dermatology (Q4); Infectious Diseases (Q4)'), (20790, 'Universitatis Iagellonicae Acta Mathematica', 8600120, 0.134, 'Q4', 2, 0, 0, 2, 11, '17', '2017-2018', 'Algebra and Number Theory (Q4); Analysis (Q4); Geometry and Topology (Q4)'), (20791, 'Wasserwirtschaft', 21928762, 0.134, 'Q4', 10, 103, 274, 41, 434, '5', '1970, 1973-1990, 1992, 2004-2020', 'Water Science and Technology (Q4)'), (20792, 'Zbornik Pravnog Fakulteta u Zagrebu', 3502058, 0.134, 'Q3', 4, 25, 1153, 10, 92, '58', '1984, 2007-2020', 'Law (Q3)'), (20793, 'Zhonghua shao shang za zhi = Zhonghua shaosha', 10092587, 0.134, 'Q4', 11, 15, 0, 102, 468, '1', '2000-2020', 'Critical Care and Intensive Care Medicine (Q4); Dermatology (Q4); Medicine (miscellaneous) (Q4)'), (20794, 'Zhurnal Obshchei Biologii', 444596, 0.134, 'Q4', 15, 0, 0, 7, 8, '10', '1945, 1947, 1949-1955, 1960-2016, 2018-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Medicine (miscellaneous) (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (20795, 'ACORN', 14487535, 0.133, 'Q3', 7, 0, 0, 8, 33, '11', '2006-2008, 2015-2018', 'Medical and Surgical Nursing (Q3); Advanced and Specialized Nursing (Q4)'), (20796, 'Acta Anaesthesiologica Belgica', 15164, 0.133, 'Q4', 25, 0, 0, 8, 44, '24', '1950-1951, 1959-1961, 1963-2018', 'Anesthesiology and Pain Medicine (Q4); Medicine (miscellaneous) (Q4)'), (20797, 'Actualizaciones en Osteologia', 16698975, 0.133, 'Q4', 6, 15, 443, 9, 45, '46', '2009-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Medicine (miscellaneous) (Q4); Orthopedics and Sports Medicine (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (20798, 'AIBR Revista de Antropologia Iberoamericana', 15789705, 0.133, 'Q2', 8, 24, 933, 18, 54, '12', '2009-2020', 'Cultural Studies (Q2); Anthropology (Q3)'), (20799, 'Annals of Science', 1464505, 0.133, 'Q3', 18, 26, 0, 9, 54, '3', '1936-1939, 1941-1942, 1945, 1947-2020', 'History and Philosophy of Science (Q3)'), (20800, 'Archiv fur Papyrusforschung und Verwandte Geb', 18671551, 0.133, 'Q2', 8, 21, 338, 7, 58, '5', '1901, 1903, 1906, 1913, 1920, 1924, 1927, 1930, 1932, 1935, 1937, 1939, 1941, 1953, 1958, 1960, 1966', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20801, 'Australian Journal of Herbal and Naturopathic', 22091203, 0.133, 'Q2', 11, 25, 420, 10, 23, '11', '2018-2020', 'Pharmacology (nursing) (Q2); Complementary and Alternative Medicine (Q4)'), (20802, 'BiD', 15755886, 0.133, 'Q4', 7, 32, 942, 16, 79, '12', '2012-2019', 'Library and Information Sciences (Q4)'), (20803, 'Boletin de la Real Academia Espanola', 2104822, 0.133, 'Q3', 4, 10, 599, 6, 53, '12', '2003-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20804, 'Cailiao Kexue yu Gongyi/Material Science and ', 10050299, 0.133, 'Q4', 13, 79, 2133, 67, 252, '1', '1998, 2000-2020', 'Materials Science (miscellaneous) (Q4)'), (20805, 'Carreteras', 2126389, 0.133, 'Q4', 4, 37, 297, 16, 135, '12', '2003-2019', 'Civil and Structural Engineering (Q4)'), (20806, 'Chinese Journal of Environmental Engineering', 16739108, 0.133, 'Q4', 11, 321, 9341, 500, 1712, '1', '2013-2020', 'Environmental Chemistry (Q4); Environmental Engineering (Q4); Pollution (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)'), (20807, 'Crossings', 20404352, 0.133, 'Q2', 8, 17, 531, 15, 46, '3', '2014-2020', 'Cultural Studies (Q2); Anthropology (Q3); Demography (Q4)'), (20808, 'Drama Therapy Review', 20547668, 0.133, 'Q2', 3, 30, 257, 8, 14, '3', '2019-2020', 'Visual Arts and Performing Arts (Q2); Complementary and Manual Therapy (Q3)'), (20809, 'EARSeL eProceedings', 17293782, 0.133, 'Q4', 2, 0, 0, 3, 7, '8', '2017-2018', 'Forestry (Q4); Instrumentation (Q4); Management, Monitoring, Policy and Law (Q4)'), (20810, 'Estudios de Literatura Colombiana', 1234412, 0.133, 'Q1', 1, 43, 629, 3, 68, '47', '2017-2020', 'Literature and Literary Theory (Q1); History (Q2); Arts and Humanities (miscellaneous) (Q3); Language and Linguistics (Q3); Electrical and Electronic Engineering (Q4)'), (20811, 'Geneesmiddelenbulletin', 3044629, 0.133, 'Q4', 6, 19, 519, 6, 64, '16', '1973-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (20812, 'Geoacta (Argentina)', 3267237, 0.133, 'Q4', 3, 0, 0, 6, 17, '46', '2011, 2015-2017', 'Atmospheric Science (Q4); Computers in Earth Sciences (Q4); Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4); Oceanography (Q4)'), (20813, 'Hedongli Gongcheng/Nuclear Power Engineering', 2580926, 0.133, 'Q4', 16, 320, 2922, 120, 865, '1', '1993-2020', 'Nuclear Energy and Engineering (Q4)'), (20814, 'Humanities Diliman', 16551532, 0.133, 'Q1', 3, 10, 216, 8, 33, '63', '2012-2019', 'Literature and Literary Theory (Q1); Cultural Studies (Q2); Visual Arts and Performing Arts (Q2)'), (20815, 'Indian Journal of Chemistry - Section A Inorg', 9750975, 0.133, 'Q4', 40, 1, 44, 52, 110, '4', '1996-2018', 'Inorganic Chemistry (Q4); Physical and Theoretical Chemistry (Q4)'), (20816, 'International Journal of Business Data Commun', 15480631, 0.133, 'Q4', 12, 10, 467, 21, 39, '2', '2005-2020', 'Computer Networks and Communications (Q4); Management Information Systems (Q4)'), (20817, 'International Journal of Drug Delivery Techno', 9754415, 0.133, 'Q4', 9, 104, 2634, 78, 184, '4', '2011-2012, 2014-2020', 'Pharmaceutical Science (Q4)'), (20818, 'International Journal of Information and Comm', 14666642, 0.133, 'Q4', 11, 52, 1088, 69, 189, '3', '2007-2014, 2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems (Q4); Software (Q4)'), (20819, 'International Journal of Intelligent Informat', 17515866, 0.133, 'Q4', 12, 27, 1074, 25, 49, '3', '2007-2014, 2017', 'Information Systems (Q4)'), (20820, 'International Journal of Japanese Sociology', 9187545, 0.133, 'Q4', 15, 7, 245, 12, 28, '2', '1992-2020', 'Sociology and Political Science (Q4)'), (20821, 'International Journal of Vehicle Safety', 14793105, 0.133, 'Q4', 15, 11, 287, 32, 42, '3', '2005-2014', 'Automotive Engineering (Q4)'), (20822, 'Iran', 5786967, 0.133, 'Q2', 7, 35, 2337, 10, 45, '3', '2011-2020', 'Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3)'), (20823, 'Journal des Anti-Infectieux', 22106545, 0.133, 'Q4', 4, 0, 0, 3, 16, '8', '2011-2017', 'Infectious Diseases (Q4); Pharmacology (medical) (Q4)'), (20824, 'Journal fur Reproduktionsmedizin und Endokrin', 18102107, 0.133, 'Q4', 13, 14, 447, 7, 31, '28', '2002, 2004-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (20825, 'Journal of Camelid Science', 19998732, 0.133, 'Q4', 1, 9, 298, 3, 8, '52', '2017-2018', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (20826, 'Journal of China Universities of Posts and Te', 10058885, 0.133, 'Q4', 24, 50, 1146, 84, 191, '1', '2006-2020', 'Computer Networks and Communications (Q4); Information Systems (Q4); Signal Processing (Q4)'), (20827, 'Journal of Design History', 9524649, 0.133, 'Q2', 22, 10, 607, 15, 60, '3', '1988-1994, 1996-2019', 'Visual Arts and Performing Arts (Q2)'), (20828, 'Journal of Food Distribution Research', 26433354, 0.133, 'Q4', 1, 27, 631, 5, 16, '2', '2019-2020', 'Agronomy and Crop Science (Q4); Economics and Econometrics (Q4); Food Science (Q4); Management Science and Operations Research (Q4); Marketing (Q4)'), (20829, 'Journal of Gynecologic Surgery', 10424067, 0.133, 'Q4', 15, 86, 1505, 52, 214, '2', '1989-2020', 'Obstetrics and Gynecology (Q4); Surgery (Q4)'), (20830, 'Journal of Institutional Research South East ', 16756061, 0.133, 'Q4', 4, 8, 376, 12, 51, '11', '2002-2020', 'Education (Q4)'), (20831, 'Journal of Nanjing Agricultural University', 10002030, 0.133, 'Q4', 3, 69, 2090, 35, 130, '1', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (20832, 'Journal of registry management', 19456123, 0.133, 'Q4', 14, 0, 0, 10, 54, '2', '2009-2019', 'Medicine (miscellaneous) (Q4)'), (20833, 'Journal of Traditional Chinese Medical Scienc', 20957548, 0.133, 'Q4', 3, 53, 1902, 20, 44, '1', '2019-2020', 'Complementary and Alternative Medicine (Q4)'), (20834, 'Kekkaku', 229776, 0.133, 'Q4', 15, 0, 0, 6, 40, '6', '1924-1928, 1931, 1935, 1937-1941, 1948-2017', 'Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Pulmonary and Respiratory Medicine (Q4)'), (20835, 'Korean Journal of Mycology', 23835249, 0.133, 'Q4', 3, 8, 171, 14, 102, '13', '2018-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (20836, 'Latin American Journal of Pharmacy', 23623853, 0.133, 'Q4', 25, 349, 8634, 260, 1064, '46', '2007-2020', 'Drug Discovery (Q4); Pharmaceutical Science (Q4)'), (20837, 'Medical Immunology (Russia)', 2313741, 0.133, 'Q4', 6, 107, 3702, 103, 280, '10', '2015-2020', 'Immunology (Q4); Immunology and Allergy (Q4)'), (20838, 'Metu Journal of the Faculty of Architecture', 2585316, 0.133, 'Q3', 11, 20, 776, 18, 59, '18', '2008-2020', 'Architecture (Q3)'), (20839, 'Neuropsychiatria i Neuropsychologia', 18966764, 0.133, 'Q4', 6, 8, 438, 11, 54, '17', '2009-2019', 'Behavioral Neuroscience (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20840, 'Nursing standard (Royal College of Nursing (G', 20479018, 0.133, 'Q4', 43, 39, 0, 107, 624, '3', '1987-2020', 'Medicine (miscellaneous) (Q4)'), (20841, 'Oftalmologiya', 18165095, 0.133, 'Q4', 5, 86, 2376, 78, 244, '10', '2017-2020', 'Ophthalmology (Q4)'), (20842, 'Polish Annals of Medicine', 12308013, 0.133, 'Q4', 9, 20, 497, 34, 136, '17', '2007-2020', 'Medicine (miscellaneous) (Q4)'), (20843, 'Proceedings of the Royal Society of Queenslan', 80469, 0.133, 'Q4', 11, 84, 2421, 5, 12, '11', '1978, 1982-1983, 1996, 1998-2000, 2002, 2004-2005, 2007-2011, 2013-2018, 2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (20844, 'Quaderni di Geofisica', 15902595, 0.133, 'Q4', 6, 0, 0, 6, 19, '7', '2007-2019', 'Computers in Earth Sciences (Q4); Geology (Q4); Geophysics (Q4)'), (20845, 'Revista de Osteoporosis y Metabolismo Mineral', 21732345, 0.133, 'Q4', 3, 19, 493, 14, 45, '12', '2014-2020', 'Endocrinology, Diabetes and Metabolism (Q4)'), (20846, 'Revue d Anthropologie des Connaissances', 17605393, 0.133, 'Q3', 13, 3, 149, 27, 93, '8', '2007-2019', 'Anthropology (Q3); History and Philosophy of Science (Q3); Education (Q4); Sociology and Political Science (Q4)'), (20847, 'REVUE ROUMAINE DE MATHEMATIQUES PURES ET APPL', 353965, 0.133, 'Q4', 4, 10, 121, 30, 52, '43', '1974, 2018-2020', 'Applied Mathematics (Q4); Mathematics (miscellaneous) (Q4)'), (20848, 'Rivista Di Psicoanalisi', 19744722, 0.133, 'Q4', 4, 42, 645, 9, 111, '7', '1960, 2010-2019', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20849, 'Serbian Journal of Electrical Engineering', 14514869, 0.133, 'Q4', 5, 18, 375, 36, 82, '55', '2016-2020', 'Computer Networks and Communications (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4); Hardware and Architecture (Q4'), (20850, 'Serie Correlacion Geologica', 15144186, 0.133, 'Q4', 2, 4, 169, 8, 29, '46', '2016-2018', 'Geochemistry and Petrology (Q4); Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)'), (20851, 'Slovo', 5836255, 0.133, 'Q1', 2, 0, 0, 2, 32, '58', '2011-2019', 'Literature and Literary Theory (Q1); Religious Studies (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20852, 'South African Journal of African Languages', 2572117, 0.133, 'Q1', 11, 42, 1242, 29, 100, '3', '1996-2020', 'Literature and Literary Theory (Q1); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20853, 'SPE Economics and Management', 21501173, 0.133, 'Q4', 14, 0, 0, 8, 13, '2', '2009-2017', 'Business, Management and Accounting (miscellaneous) (Q4); Energy (miscellaneous) (Q4)'), (20854, 'Studies in Theatre and Performance', 20400616, 0.133, 'Q2', 8, 39, 994, 8, 60, '3', '2000-2020', 'Visual Arts and Performing Arts (Q2)'), (20855, 'Thermology International', 1560604, 0.133, 'Q4', 14, 9, 791, 29, 27, '28', '2002-2020', 'Complementary and Alternative Medicine (Q4)'), (20856, 'Turk Plastik, Rekonstruktif ve Estetik Cerrah', 13006878, 0.133, 'Q4', 3, 0, 0, 24, 62, '18', '2011-2019', 'Surgery (Q4)'), (20857, 'University of Bologna Law Review', 25316133, 0.133, 'Q3', 3, 0, 0, 5, 31, '7', '2016-2019', 'Law (Q3)'), (20858, 'Vacunas', 15788857, 0.133, 'Q4', 7, 22, 622, 10, 44, '12', '2005-2020', 'Immunology (Q4); Infectious Diseases (Q4)'), (20859, 'Wiadomosci Lekarskie', 435147, 0.133, 'Q4', 14, 529, 0, 232, 1021, '17', '1960-1990, 1992-2020', 'Engineering (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (20860, 'Zhongguo xiu fu chong jian wai ke za zhi = Zh', 10021892, 0.133, 'Q4', 13, 260, 0, 177, 792, '1', '1997-2020', 'Medicine (miscellaneous) (Q4)'), (20861, 'Anthropology and Archeology of Eurasia', 10611959, 0.132, 'Q2', 7, 0, 0, 6, 40, '2', '1992-2019', 'History (Q2); Anthropology (Q3); Archeology (Q3)'), (20862, 'Arab World Geographer', 14806800, 0.132, 'Q4', 10, 8, 103, 25, 56, '2', '2005-2014, 2016-2020', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (20863, 'Bioscene', 15392422, 0.132, 'Q4', 7, 10, 254, 8, 25, '2', '2004-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Education (Q4)'), (20864, 'Black Theology', 17431670, 0.132, 'Q2', 4, 18, 584, 9, 44, '3', '2013-2020', 'Religious Studies (Q2)'), (20865, 'Chinese Astronomy and Astrophysics', 2751062, 0.132, 'Q4', 12, 34, 1010, 33, 109, '3', '1981-2020', 'Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)'), (20866, 'Chinese Journal of Biologicals', 10045503, 0.132, 'Q4', 6, 198, 3930, 56, 816, '1', '2007-2019', 'Applied Microbiology and Biotechnology (Q4); Biochemistry (Q4); Biotechnology (Q4); Immunology (Q4)'), (20867, 'Cogency', 7188285, 0.132, 'Q3', 1, 5, 324, 10, 22, '45', '2017-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4)'), (20868, 'Comparative Strategy', 1495933, 0.132, 'Q4', 17, 39, 0, 33, 96, '3', '1978-2020', 'Political Science and International Relations (Q4)'), (20869, 'Computers and Graphics: X', 25901486, 0.132, 'Q4', 2, 1, 32, 9, 8, '3', '2019-2020', 'Computer Graphics and Computer-Aided Design (Q4); Engineering (miscellaneous) (Q4); Human-Computer Interaction (Q4)'), (20870, 'Credit and Capital Markets', 21991227, 0.132, 'Q3', 4, 22, 747, 15, 74, '5', '2016-2020', 'Law (Q3); Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (20871, 'Cultural Critique', 15345203, 0.132, 'Q2', 21, 23, 1007, 9, 97, '2', '2002-2019', 'Cultural Studies (Q2); Literature and Literary Theory (Q2); Anthropology (Q3); Philosophy (Q3); Sociology and Political Science (Q4)'), (20872, 'ECTI Transactions on Computer and Information', 22869131, 0.132, 'Q4', 2, 20, 676, 13, 39, '40', '2018-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Information Systems (Q4); Information Systems and Management (Q4)'), (20873, 'eJournal of Tax Research', 14482398, 0.132, 'Q4', 8, 6, 99, 26, 60, '11', '2011-2020', 'Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (20874, 'English Linguistics', 9183701, 0.132, 'Q3', 7, 0, 0, 1, 6, '6', '1984-2015', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20875, 'Environmental and Planning Law Journal', 813300, 0.132, 'Q3', 18, 36, 0, 27, 112, '11', '1984-2020', 'Law (Q3); Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (20876, 'ESSACHESS - Journal for Communication Studies', 1775352, 0.132, 'Q4', 5, 17, 688, 31, 60, '8', '2014-2020', 'Communication (Q4)'), (20877, 'Evidence Based Midwifery', 14794489, 0.132, 'Q4', 14, 0, 0, 4, 4, '3', '2007-2012, 2014-2017', 'Fundamentals and Skills (Q4); Maternity and Midwifery (Q4)'), (20878, 'Hispania Sacra', 18215, 0.132, 'Q2', 6, 47, 2205, 16, 114, '12', '1987, 1999, 2001, 2009-2020', 'History (Q2); Religious Studies (Q2)'), (20879, 'Human Pathology: Case Reports', 22143300, 0.132, 'Q4', 5, 112, 1892, 58, 255, '2', '2014-2020', 'Pathology and Forensic Medicine (Q4)'), (20880, 'International Conference on Geoinformatics', 2161024, 0.132, 'Q4', 8, 0, 0, 76, 209, '2', '2013, 2016-2018', 'Computer Networks and Communications (Q4); Computer Vision and Pattern Recognition (Q4); Electrical and Electronic Engineering (Q4); Geography, Planning and Development (Q4); Information Systems (Q4);'), (20881, 'International Journal of Development and Conf', 20102690, 0.132, 'Q4', 2, 7, 267, 8, 23, '4', '2017-2019', 'Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4)'), (20882, 'International Journal of Human Movement and S', 23814403, 0.132, 'Q4', 2, 83, 2520, 9, 12, '2', '2019-2020', 'Health (social science) (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Physiology (Q4)'), (20883, 'International Surgery', 208868, 0.132, 'Q4', 39, 33, 683, 34, 188, '2', '1966-2020', 'Surgery (Q4)'), (20884, 'Investigaciones Turisticas', 21745609, 0.132, 'Q4', 3, 25, 1373, 16, 37, '12', '2018-2020', 'Social Sciences (miscellaneous) (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (20885, 'Journal of Electronic Science and Technology', 1674862, 0.132, 'Q4', 5, 37, 961, 74, 124, '1', '2015-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Signal Processing (Q4)'), (20886, 'Journal of Forensic Science and Medicine', 23495014, 0.132, 'Q3', 6, 22, 349, 33, 107, '4', '2015, 2017-2020', 'Law (Q3); Pathology and Forensic Medicine (Q4)'), (20887, 'Journal of Isfahan Medical School', 10277595, 0.132, 'Q4', 10, 50, 1287, 82, 729, '15', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (20888, 'Journal of Literary Studies', 17535387, 0.132, 'Q2', 10, 34, 823, 16, 92, '3', '1985-2020', 'Literature and Literary Theory (Q2)'), (20889, 'Journal of Pacific History', 223344, 0.132, 'Q2', 18, 30, 0, 19, 69, '3', '1966-2020', 'Cultural Studies (Q2); History (Q2); Sociology and Political Science (Q4)'), (20890, 'Journal of Popular Television', 2046987, 0.132, 'Q4', 2, 25, 865, 2, 19, '3', '2019-2020', 'Communication (Q4)'), (20891, 'Journal of reproductive medicine, The', 247758, 0.132, 'Q4', 67, 65, 1211, 40, 305, '2', '1970-2020', 'Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (20892, 'Journal of World Philosophies', 24741795, 0.132, 'Q3', 3, 0, 0, 13, 42, '2', '2016-2019', 'Philosophy (Q3)'), (20893, 'Jurnal Tribologi', 22897232, 0.132, 'Q4', 2, 44, 1241, 14, 40, '23', '2019-2020', 'Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)'), (20894, 'La Mer', 5031540, 0.132, 'Q4', 11, 0, 0, 5, 16, '6', '1992-2019', 'Ocean Engineering (Q4); Oceanography (Q4)'), (20895, 'Malaysian Journal of Soil Science', 13947990, 0.132, 'Q4', 10, 15, 489, 20, 35, '23', '2009-2019', 'Agronomy and Crop Science (Q4); Soil Science (Q4)'), (20896, 'Minerva Ortopedica e Traumatologica', 3943410, 0.132, 'Q4', 6, 30, 791, 25, 92, '7', '1965-1972, 1987-2020', 'Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (20897, 'Modern Food Science and Technology', 16739078, 0.132, 'Q4', 9, 423, 11590, 300, 1449, '1', '2013-2020', 'Food Science (Q4)'), (20898, 'Neurological Surgery', 3012603, 0.132, 'Q4', 21, 72, 0, 29, 152, '6', '1973-2018, 2020', 'Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4); Surgery (Q4)'), (20899, 'New Voices in Translation Studies', 18195644, 0.132, 'Q2', 7, 0, 0, 8, 17, '42', '2011-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20900, 'Nutrition: X', 26659026, 0.132, 'Q4', 1, 4, 124, 2, 5, '2', '2019-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Nutrition and Dietetics (Q4)'), (20901, 'Passato e Presente', 19725493, 0.132, 'Q2', 5, 23, 859, 5, 64, '7', '2011-2019', 'History (Q2); Sociology and Political Science (Q4)'), (20902, 'Perspectives on Federalism', 20365438, 0.132, 'Q3', 3, 0, 0, 13, 66, '5', '2016-2018', 'Law (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (20903, 'Plant Cell Biotechnology and Molecular Biolog', 9722025, 0.132, 'Q4', 9, 549, 17668, 56, 139, '4', '2002-2012, 2014-2020', 'Biotechnology (Q4); Horticulture (Q4)'), (20904, 'Practitioner', 326518, 0.132, 'Q4', 13, 81, 518, 24, 81, '3', '1945-2020', 'Family Practice (Q4); Medicine (miscellaneous) (Q4)'), (20905, 'Public Health Forum', 18764851, 0.132, 'Q4', 7, 86, 1171, 32, 279, '5', '1993-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (20906, 'Research Journal of Biotechnology', 22784535, 0.132, 'Q4', 17, 231, 8529, 190, 498, '4', '2008-2020', 'Applied Microbiology and Biotechnology (Q4); Bioengineering (Q4); Biotechnology (Q4)'), (20907, 'Research Journal of Chemistry and Environment', 9720626, 0.132, 'Q4', 18, 284, 8109, 141, 537, '4', '2007-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry (Q4); Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q'), (20908, 'Research Results in Pharmacology', 2658381, 0.132, 'Q4', 7, 42, 1565, 88, 76, '10', '2018-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (20909, 'Revista Fuentes', 21727775, 0.132, 'Q4', 2, 20, 889, 11, 29, '12', '2018-2019', 'Developmental and Educational Psychology (Q4); Education (Q4); Sociology and Political Science (Q4)'), (20910, 'Revue des Mondes Musulmans et de la Mediterra', 21052271, 0.132, 'Q2', 4, 45, 828, 5, 73, '8', '2002, 2011, 2013-2020', 'Cultural Studies (Q2); History (Q2); Religious Studies (Q2); Sociology and Political Science (Q4)'), (20911, 'Revue d Histoire du XIXe Siecle', 17775329, 0.132, 'Q2', 7, 25, 1802, 6, 78, '8', '1999, 2001-2020', 'History (Q2)'), (20912, 'Revue Veterinaire Clinique', 22145680, 0.132, 'Q3', 12, 17, 371, 7, 45, '8', '2014-2020', 'Small Animals (Q3)'), (20913, 'Studia Universitatis Babes-Bolyai Sociologia', 20660464, 0.132, 'Q4', 5, 5, 268, 10, 61, '43', '2013-2019', 'Sociology and Political Science (Q4)'), (20914, 'Studies in Business and Economics', 23445416, 0.132, 'Q4', 3, 57, 1812, 50, 103, '17', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Psychology (Q4)'), (20915, 'Transcultural Studies', 21916411, 0.132, 'Q3', 3, 13, 696, 7, 45, '2', '2015-2019', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (20916, 'Wacana', 14112272, 0.132, 'Q2', 3, 15, 505, 11, 72, '21', '2015-2020', 'Cultural Studies (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Library and Information Sciences (Q4)'), (20917, 'Acta Medica Mediterranea', 3936384, 0.131, 'Q4', 21, 602, 13378, 288, 1045, '7', '2003-2020', 'Medicine (miscellaneous) (Q4)'), (20918, 'Activitas Nervosa Superior', 18029698, 0.131, 'Q4', 11, 19, 867, 25, 58, '19', '2008-2020', 'Behavioral Neuroscience (Q4); Biological Psychiatry (Q4); Cognitive Neuroscience (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (20919, 'Anales de Arqueologia Cordobesa', 11309741, 0.131, 'Q3', 3, 0, 0, 4, 42, '12', '2012, 2014-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20920, 'Analise Social', 32573, 0.131, 'Q4', 15, 15, 740, 33, 93, '26', '1977-1978, 1981-1984, 1990, 1993-1994, 1996-2020', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (20921, 'Anglia', 3405222, 0.131, 'Q2', 10, 26, 1331, 32, 69, '5', '1878-1886, 1888-1889, 1891-1899, 1901-1942, 1944, 1950-1951, 1953-1999, 2001-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20922, 'Annales Francaises d Oto-Rhino-Laryngologie e', 18797261, 0.131, 'Q4', 18, 169, 2654, 7, 265, '8', '2010-2020', 'Otorhinolaryngology (Q4); Surgery (Q4)'), (20923, 'Australian Journal of Cancer Nursing', 14412551, 0.131, 'Q4', 1, 4, 86, 2, 7, '11', '2019', 'Oncology (nursing) (Q4)'), (20924, 'Biopolymers and Cell', 19936842, 0.131, 'Q4', 15, 39, 1421, 59, 189, '44', '1996-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (20925, 'Boletin de Literatura Oral', 21730695, 0.131, 'Q2', 1, 26, 1174, 5, 89, '12', '2016-2020', 'History (Q2); Literature and Literary Theory (Q2); Anthropology (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20926, 'Brazilian Journal of Analytical Chemistry', 21793433, 0.131, 'Q4', 6, 28, 525, 43, 67, '14', '2010-2014, 2016-2020', 'Analytical Chemistry (Q4)'), (20927, 'Electronics and Communications in Japan', 19429541, 0.131, 'Q4', 13, 54, 904, 94, 270, '2', '1975, 2008-2020', 'Applied Mathematics (Q4); Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4); Physics and Astronomy (miscellaneous) (Q4); Signal Processing (Q4)'), (20928, 'European Chemical Bulletin', 20635346, 0.131, 'Q4', 5, 57, 2858, 46, 135, '50', '2018-2020', 'Chemistry (miscellaneous) (Q4)'), (20929, 'European Journal of Psychotherapy and Counsel', 14695901, 0.131, 'Q4', 13, 17, 458, 19, 62, '3', '2010-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (20930, 'Exploratory Animal and Medical Research', 2277470, 0.131, 'Q4', 2, 16, 396, 16, 65, '4', '2018-2019', 'Ecology (Q4); Health, Toxicology and Mutagenesis (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4); Veterinary (miscellaneous) (Q4)'), (20931, 'Fieldwork in Religion', 17430615, 0.131, 'Q2', 2, 6, 165, 8, 28, '3', '2014-2020', 'Religious Studies (Q2)'), (20932, 'FWU Journal of Social Sciences', 19951272, 0.131, 'Q2', 1, 36, 1349, 16, 64, '34', '2018-2020', 'History (Q2); Education (Q4); Psychology (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (20933, 'High Technology Letters', 10066748, 0.131, 'Q4', 11, 56, 1180, 40, 176, '1', '1991, 1995-2020', 'Biotechnology (Q4); Control and Systems Engineering (Q4); Energy (miscellaneous) (Q4); Information Systems (Q4); Materials Science (miscellaneous) (Q4)'), (20934, 'International Journal of Pharmaceutical Compo', 10924221, 0.131, 'Q2', 10, 74, 0, 60, 176, '2', '2006-2020', 'Pharmacology (nursing) (Q2); Pharmacy (Q3); Medicine (miscellaneous) (Q4); Pharmaceutical Science (Q4); Pharmacology (medical) (Q4)'), (20935, 'International Journal of Ultra Wideband Commu', 17587298, 0.131, 'Q4', 9, 6, 183, 5, 12, '19', '2009-2012, 2014', 'Communication (Q4); Electrical and Electronic Engineering (Q4)'), (20936, 'International Journal of Vehicle Systems Mode', 17456436, 0.131, 'Q4', 14, 13, 332, 20, 33, '3', '2005-2014, 2017, 2020', 'Automotive Engineering (Q4); Modeling and Simulation (Q4)'), (20937, 'Jeunesse: Young People, Texts, Cultures', 1920261, 0.131, 'Q2', 2, 18, 705, 5, 34, '9', '2018-2019', 'Cultural Studies (Q2); Literature and Literary Theory (Q2)'), (20938, 'Journal and Proceedings - Royal Society of Ne', 359173, 0.131, 'Q4', 7, 45, 416, 16, 69, '11', '1982-1997, 2009-2019', 'Multidisciplinary (Q4)'), (20939, 'Journal of Arabian Studies', 21534780, 0.131, 'Q2', 10, 10, 676, 34, 56, '3', '2011-2019', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (20940, 'Journal of Comparative Social Work', 8099936, 0.131, 'Q4', 2, 7, 248, 5, 21, '33', '2017-2019', 'Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (20941, 'Journal of Glass Studies', 754250, 0.131, 'Q2', 12, 22, 764, 7, 43, '2', '1969, 2002-2003, 2005, 2007, 2009-2019', 'Visual Arts and Performing Arts (Q2)'), (20942, 'Journal of Intellectual Property', 15599493, 0.131, 'Q3', 5, 21, 2736, 5, 77, '2', '2008-2010, 2012-2019', 'Law (Q3); Philosophy (Q3)'), (20943, 'Journal of Medieval History', 3044181, 0.131, 'Q2', 20, 27, 0, 17, 94, '3', '1975-2020', 'History (Q2)'), (20944, 'Journal of Popular Music Studies', 15331598, 0.131, 'Q2', 11, 0, 0, 25, 87, '3', '1988-1997, 1999, 2001-2019', 'Music (Q2)'), (20945, 'Journal of Veterinary Research', 20082525, 0.131, 'Q4', 8, 30, 892, 26, 171, '15', '2008-2020', 'Veterinary (miscellaneous) (Q4)'), (20946, 'Klio', 21927669, 0.131, 'Q2', 14, 20, 1512, 9, 63, '5', '1901-1912, 1915, 1918, 1920-1921, 1923, 1925-1927, 1929-1943, 1959-1999, 2001-2020', 'Classics (Q2); History (Q2)'), (20947, 'Malaysian Journal of Science', 13943065, 0.131, 'Q4', 12, 25, 746, 22, 62, '23', '2006-2020', 'Multidisciplinary (Q4)'), (20948, 'Mathematica Applicanda', 17302668, 0.131, 'Q4', 3, 5, 87, 15, 47, '17', '2018-2019', 'Decision Sciences (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)'), (20949, 'Medicus', 1330013, 0.131, 'Q4', 8, 23, 496, 10, 110, '58', '2002-2019', 'Medicine (miscellaneous) (Q4)'), (20950, 'Memoria y Civilizacion', 11390107, 0.131, 'Q2', 2, 29, 1304, 9, 73, '12', '2015-2019', 'History (Q2)'), (20951, 'Muqarnas', 9210326, 0.131, 'Q2', 18, 12, 1409, 4, 35, '16', '1985, 1987-1991, 1996-2019', 'Cultural Studies (Q2); History (Q2); Visual Arts and Performing Arts (Q2)'), (20952, 'Nanosistemi, Nanomateriali, Nanotehnologii', 18165230, 0.131, 'Q4', 4, 48, 1164, 33, 160, '44', '2015-2020', 'Ceramics and Composites (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Science (miscellaneous) (Q4); Surfaces, Coatings and Films (Q4)'), (20953, 'Numismatic Chronicle', 782696, 0.131, 'Q3', 9, 0, 0, 6, 53, '3', '2002-2018', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20954, 'Nuytsia', 854417, 0.131, 'Q4', 9, 50, 315, 11, 45, '11', '2009-2020', 'Plant Science (Q4)'), (20955, 'Oregon Historical Quarterly', 304727, 0.131, 'Q2', 8, 25, 1111, 8, 70, '2', '1968, 1970, 1974, 1979, 1983, 2000, 2002-2019', 'History (Q2)'), (20956, 'Pluralist', 19446489, 0.131, 'Q3', 7, 15, 260, 8, 61, '2', '2010-2020', 'Philosophy (Q3)'), (20957, 'Recent Innovations in Chemical Engineering', 24055204, 0.131, 'Q4', 5, 35, 1658, 21, 57, '16', '2014-2020', 'Chemical Engineering (miscellaneous) (Q4)'), (20958, 'Revista Chilena de Obstetricia y Ginecologia', 7177526, 0.131, 'Q4', 11, 84, 2084, 30, 186, '45', '1961-1962, 1964-1995, 2006-2020', 'Obstetrics and Gynecology (Q4)'), (20959, 'Revista de Estudos Constitucionais, Hermeneut', 21752168, 0.131, 'Q3', 2, 18, 787, 15, 89, '14', '2016-2020', 'Law (Q3)'), (20960, 'Revista Veterinaria', 16696840, 0.131, 'Q4', 7, 23, 433, 14, 90, '46', '2007-2019', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (20961, 'Revue Francaise de Photogrammetrie et de Tele', 17689791, 0.131, 'Q4', 7, 0, 0, 7, 47, '8', '2004-2015, 2017-2019', 'Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4)'), (20962, 'Serbian Journal of Experimental and Clinical ', 2335075, 0.131, 'Q4', 8, 47, 1596, 39, 146, '55', '2008-2020', 'Medicine (miscellaneous) (Q4)'), (20963, 'Slovak Raptor Journal', 13387227, 0.131, 'Q4', 8, 0, 0, 7, 16, '17', '2007-2018', 'Animal Science and Zoology (Q4); Nature and Landscape Conservation (Q4)'), (20964, 'Social Sciences and Missions', 18748945, 0.131, 'Q2', 4, 15, 538, 5, 41, '16', '2012-2019', 'Cultural Studies (Q2); Religious Studies (Q2); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (20965, 'Spektrum der Augenheilkunde', 16137523, 0.131, 'Q4', 9, 25, 612, 13, 77, '28', '1987-2020', 'Ophthalmology (Q4)'), (20966, 'Swiss Archives of Neurology, Psychiatry and P', 22976981, 0.131, 'Q4', 13, 26, 435, 16, 90, '19', '2016-2020', 'Clinical Psychology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (20967, 'Water and Energy International', 9744711, 0.131, 'Q4', 2, 96, 1235, 10, 54, '4', '2010, 2014, 2018-2020', 'Renewable Energy, Sustainability and the Environment (Q4); Water Science and Technology (Q4)'), (20968, 'Zeitschrift fur Theologie und Kirche', 443549, 0.131, 'Q2', 6, 14, 1408, 5, 56, '5', '2002-2019', 'Religious Studies (Q2)'), (20969, 'Acta Physica Slovaca', 3230465, 0.13, 'Q4', 32, 0, 0, 2, 6, '53', '1996-2018', 'Physics and Astronomy (miscellaneous) (Q4)'), (20970, 'Aevum - Rassegna di Scienze Storiche Linguist', 19593, 0.13, 'Q2', 6, 10, 626, 7, 82, '7', '1979, 2001-2019', 'History (Q2); Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3); Philosophy (Q3)'), (20971, 'Aktuelle Ernahrungsmedizin Klinik und Praxis', 14389916, 0.13, 'Q4', 19, 102, 1048, 19, 91, '5', '1960-1963, 1978-2020', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)'), (20972, 'Arquivos Brasileiros de Psicologia', 18095267, 0.13, 'Q4', 8, 58, 2091, 30, 140, '14', '1982, 2009-2020', 'Psychology (miscellaneous) (Q4)'), (20973, 'Beijing Youdian Xueyuan Xuebao/Journal of Bei', 10005145, 0.13, 'Q4', 15, 121, 1768, 118, 397, '1', '1998-2020', 'Computer Networks and Communications (Q4); Electrical and Electronic Engineering (Q4)'), (20974, 'Bulletin de la Societe Royale des Sciences de', 379565, 0.13, 'Q4', 11, 10, 365, 4, 15, '24', '1988, 1996-2020', 'Multidisciplinary (Q4)'), (20975, 'Ceska Literatura', 90468, 0.13, 'Q2', 5, 0, 0, 7, 74, '31', '2002-2019', 'Literature and Literary Theory (Q2)'), (20976, 'Chinese as a Second Language Research', 21932263, 0.13, 'Q3', 2, 11, 511, 5, 39, '5', '2017-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (20977, 'Collectanea Christiana Orientalia', 16972104, 0.13, 'Q2', 1, 17, 178, 1, 27, '12', '2014-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20978, 'Cuadernos de Prehistoria y Arqueologia de la ', 2111608, 0.13, 'Q2', 1, 11, 600, 3, 24, '12', '2018-2019', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (20979, 'French Historical Studies', 161071, 0.13, 'Q2', 19, 24, 1761, 17, 70, '2', '1978, 1983, 1989, 1999, 2001-2020', 'History (Q2)'), (20980, 'Historia Unisinos', 22361782, 0.13, 'Q2', 4, 43, 1657, 20, 129, '14', '2010-2020', 'History (Q2)'), (20981, 'Holocaust and Genocide Studies', 14767937, 0.13, 'Q2', 19, 12, 1244, 8, 43, '3', '1986-2020', 'History (Q2); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (20982, 'Icon', 13618113, 0.13, 'Q3', 3, 16, 618, 5, 16, '3', '2001, 2013-2016, 2019', 'History and Philosophy of Science (Q3); Management of Technology and Innovation (Q4)'), (20983, 'International Journal of Advanced Media and C', 14624613, 0.13, 'Q2', 12, 0, 0, 5, 19, '3', '2005-2010, 2013-2014, 2016', 'Cultural Studies (Q2); Communication (Q4)'), (20984, 'International Journal of Business Continuity ', 17582164, 0.13, 'Q4', 3, 21, 851, 18, 38, '19', '2020', 'Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4); Strategy and Management (Q4)'), (20985, 'International Journal of Islamic Architecture', 20455895, 0.13, 'Q2', 6, 16, 176, 21, 43, '3', '2012-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q3); Geography, Planning and Development (Q4)'), (20986, 'International Journal of Reasoning-based Inte', 17550556, 0.13, 'Q4', 10, 28, 676, 39, 103, '19', '2011-2013', 'Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (20987, 'International Journal of Services, Technology', 14606720, 0.13, 'Q4', 23, 32, 1262, 30, 95, '3', '2000, 2002-2014', 'Computer Science Applications (Q4); E-learning (Q4); Engineering (miscellaneous) (Q4); Marketing (Q4); Strategy and Management (Q4)'), (20988, 'International Journal of Technology Intellige', 17402832, 0.13, 'Q4', 15, 3, 416, 8, 20, '3', '2004-2013', 'Information Systems and Management (Q4); Management Information Systems (Q4); Management of Technology and Innovation (Q4)'), (20989, 'International Research in Children s Literatu', 17556198, 0.13, 'Q2', 7, 15, 469, 10, 32, '3', '2011-2020', 'Literature and Literary Theory (Q2)'), (20990, 'Journal fur Asthetische Chirurgie', 18674313, 0.13, 'Q4', 5, 36, 653, 9, 82, '5', '2008-2020', 'Surgery (Q4)'), (20991, 'Journal fur Kulturpflanzen', 18670938, 0.13, 'Q4', 9, 68, 2031, 22, 88, '5', '2010-2020', 'Agronomy and Crop Science (Q4); Plant Science (Q4); Soil Science (Q4)'), (20992, 'Journal of Australian Studies', 314769, 0.13, 'Q2', 17, 37, 0, 56, 99, '3', '1977-2020', 'Cultural Studies (Q2); History (Q2); Literature and Literary Theory (Q2); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (20993, 'Journal of Band Research', 219207, 0.13, 'Q2', 7, 7, 377, 2, 24, '2', '2002-2014, 2017-2019', 'Music (Q2)'), (20994, 'Journal of Economic Geology', 20087306, 0.13, 'Q4', 2, 1, 32, 7, 46, '15', '2018-2019', 'Economic Geology (Q4); Geochemistry and Petrology (Q4)'), (20995, 'Journal of Film and Video', 7424671, 0.13, 'Q2', 11, 17, 504, 14, 44, '2', '2002-2019', 'Visual Arts and Performing Arts (Q2)'), (20996, 'Journal of Iberian and Latin American Studies', 14701847, 0.13, 'Q2', 2, 22, 1229, 6, 46, '3', '2018-2020', 'Cultural Studies (Q2); History (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (20997, 'Journal of Information Technology Management', 20085893, 0.13, 'Q4', 3, 30, 782, 28, 93, '15', '2017-2020', 'Information Systems (Q4); Information Systems and Management (Q4); Management of Technology and Innovation (Q4)'), (20998, 'Journal of Medicine and Biomedical Research', 15966941, 0.13, 'Q4', 4, 0, 0, 2, 7, '51', '2012-2017', 'Medicine (miscellaneous) (Q4)'), (20999, 'Journal of Nepal Paediatric Society', 19907974, 0.13, 'Q4', 8, 47, 830, 17, 134, '88', '2008-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (21000, 'Journal of Religion in Africa', 224200, 0.13, 'Q2', 30, 3, 152, 5, 22, '16', '1967-1976, 1978-1983, 1985-2019', 'History (Q2); Religious Studies (Q2)'), (21001, 'Journal of Science and Technology of the Arts', 16469798, 0.13, 'Q2', 3, 0, 0, 22, 44, '26', '2016-2019', 'Music (Q2); Visual Arts and Performing Arts (Q2); Arts and Humanities (miscellaneous) (Q3); Conservation (Q3); Computer Science Applications (Q4)'), (21002, 'Journal of Surface Science and Technology', 9769420, 0.13, 'Q4', 17, 8, 373, 12, 46, '4', '1996-2012, 2014-2020', 'Electrochemistry (Q4); Materials Chemistry (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)'), (21003, 'Journal of the Australian and New Zealand Stu', 13202480, 0.13, 'Q4', 7, 10, 144, 7, 36, '11', '2009-2013, 2016-2020', 'Education (Q4)'), (21004, 'Journal of the Liaquat University of Medical ', 17290341, 0.13, 'Q4', 12, 58, 1276, 35, 149, '34', '2006-2020', 'Medicine (miscellaneous) (Q4)'), (21005, 'Journal of University of Science and Technolo', 2532778, 0.13, 'Q4', 10, 33, 1339, 50, 333, '1', '2010-2019', 'Mechanical Engineering (Q4)'), (21006, 'Kondensirovannye Sredy Mezhfaznye Granitsy', 26870711, 0.13, 'Q4', 2, 54, 1392, 18, 59, '10', '2019-2020', 'Education (Q4)'), (21007, 'Kritika Kultura', 1656152, 0.13, 'Q2', 5, 13, 336, 39, 114, '63', '2009-2020', 'Cultural Studies (Q2); Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21008, 'KronoScope: Journal for the Study of Time', 1567715, 0.13, 'Q3', 8, 17, 460, 6, 27, '16', '2001-2019', 'History and Philosophy of Science (Q3); Philosophy (Q3); Astronomy and Astrophysics (Q4); Social Sciences (miscellaneous) (Q4)'), (21009, 'Law, Culture and the Humanities', 17439752, 0.13, 'Q2', 15, 57, 0, 40, 108, '3', '2005-2020', 'Cultural Studies (Q2); Arts and Humanities (miscellaneous) (Q3); Law (Q3)'), (21010, 'LIT Literature Interpretation Theory', 10436928, 0.13, 'Q2', 10, 20, 641, 10, 54, '3', '1989-2020', 'Literature and Literary Theory (Q2)'), (21011, 'Medieval Encounters', 13807854, 0.13, 'Q2', 15, 9, 632, 11, 56, '16', '1995-2020', 'Cultural Studies (Q2); History (Q2); Religious Studies (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21012, 'Middle East Journal of Anesthesiology', 5440440, 0.13, 'Q4', 23, 32, 687, 9, 82, '70', '1974-1975, 1978-2020', 'Anesthesiology and Pain Medicine (Q4); Medicine (miscellaneous) (Q4)'), (21013, 'Opera Medica et Physiologica', 25002295, 0.13, 'Q4', 3, 17, 478, 20, 98, '10', '2015, 2017-2019', 'Pathology and Forensic Medicine (Q4); Physiology (Q4); Physiology (medical) (Q4)'), (21014, 'Politologija', 13921681, 0.13, 'Q4', 4, 11, 400, 5, 61, '69', '2012-2020', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21015, 'Revista Brasileira de Medicina Veterinaria', 1002430, 0.13, 'Q4', 7, 39, 1077, 13, 82, '14', '2010-2020', 'Veterinary (miscellaneous) (Q4)'), (21016, 'Revista CES Psicologia', 20113080, 0.13, 'Q4', 2, 22, 985, 14, 51, '47', '2018-2020', 'Psychology (miscellaneous) (Q4)'), (21017, 'Revista de Enfermagem Referencia', 21822883, 0.13, 'Q4', 2, 64, 1159, 17, 57, '26', '2019-2020', 'Nursing (miscellaneous) (Q4)'), (21018, 'Revista Portuguesa de Imunoalergologia', 8719721, 0.13, 'Q4', 5, 22, 472, 12, 55, '26', '2009-2020', 'Immunology (Q4); Immunology and Allergy (Q4)'), (21019, 'Scientific American', 368733, 0.13, 'Q4', 91, 21, 6, 111, 439, '2', '1947-1950, 1958-2018, 2020', 'Multidisciplinary (Q4)'), (21020, 'Shu Ju Cai Ji Yu Chu Li/Journal of Data Acqui', 10049037, 0.13, 'Q4', 16, 117, 2677, 114, 364, '1', '2001-2020', 'Signal Processing (Q4); Software (Q4)'), (21021, 'Spatium', 1450569, 0.13, 'Q2', 7, 16, 657, 15, 41, '55', '2011-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q3)'), (21022, 'Technical Report Series - World Health Organi', 5092507, 0.13, 'Q4', 30, 0, 0, 1, 2, '19', '1950-1961, 1963-2017', 'Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (21023, 'Tsitologiya', 413771, 0.13, 'Q4', 19, 36, 1684, 34, 140, '10', '1960-2019', 'Histology (Q4); Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)'), (21024, 'URISA Journal', 10458077, 0.13, 'Q4', 19, 0, 0, 3, 6, '2', '1992-1996, 2004-2013, 2015-2017', 'Engineering (miscellaneous) (Q4)'), (21025, 'USDA Forest Service - Resource Bulletin PNW-R', 7481284, 0.13, 'Q4', 6, 0, 0, 1, 2, '2', '1997-1999, 2002-2012, 2014-2016, 2018-2019', 'Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (21026, 'WSQ', 19341520, 0.13, 'Q4', 3, 0, 0, 26, 91, '2', '2018-2019', 'Gender Studies (Q4)'), (21027, 'Zhongguo gu shang = China journal of orthopae', 10030034, 0.13, 'Q4', 10, 237, 0, 159, 716, '1', '2008-2020', 'Medicine (miscellaneous) (Q4)'), (21028, 'Zolotoordynskoe Obozrenie', 23136197, 0.13, 'Q2', 2, 41, 1456, 16, 155, '10', '2017-2020', 'History (Q2)'), (21029, 'Acta Pediatrica Espanola', 16640, 0.129, 'Q4', 10, 7, 142, 15, 80, '12', '1947-1965, 1973-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (21030, 'Actualites Pharmaceutiques', 5153700, 0.129, 'Q4', 5, 186, 1504, 27, 433, '16', '1961, 1963, 1996-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (21031, 'AgriScientia', 1668298, 0.129, 'Q4', 9, 13, 450, 13, 43, '46', '2006-2020', 'Agronomy and Crop Science (Q4); Soil Science (Q4)'), (21032, 'Allgemeine Forst- und Jagdzeitung', 25852, 0.129, 'Q4', 22, 0, 0, 3, 16, '5', '1977-1978, 1981, 1983-1989, 1996-2015, 2017', 'Ecology (Q4); Forestry (Q4)'), (21033, 'American Imago', 10857931, 0.129, 'Q2', 12, 28, 933, 18, 75, '2', '1946-1953, 1964-1980, 1996-2020', 'Literature and Literary Theory (Q2); Music (Q2); Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Experimental and Cognitive Psychology (Q4)'), (21034, 'Anthropology of the Middle East', 17460719, 0.129, 'Q3', 5, 13, 412, 8, 55, '2', '2011-2019', 'Anthropology (Q3)'), (21035, 'Applied and Computational Mechanics', 23361182, 0.129, 'Q4', 4, 10, 370, 27, 37, '31', '2016-2020', 'Biophysics (Q4); Civil and Structural Engineering (Q4); Computational Mathematics (Q4); Computational Mechanics (Q4); Fluid Flow and Transfer Processes (Q4)'), (21036, 'Biomedical and Biopharmaceutical Research', 21822379, 0.129, 'Q3', 1, 20, 490, 6, 20, '26', '2019-2020', 'Pharmacy (Q3); Food Science (Q4); Pharmacology (medical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (21037, 'Brain and Nerve', 18816096, 0.129, 'Q4', 13, 6, 0, 78, 392, '6', '2007-2020', 'Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4)'), (21038, 'Cambridge Journal of Postcolonial Literary In', 20522622, 0.129, 'Q2', 7, 20, 601, 22, 103, '3', '2014-2020', 'History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (21039, 'Chinese Journal of Cancer Prevention and Trea', 16735269, 0.129, 'Q4', 6, 268, 6563, 302, 934, '1', '2007-2020', 'Oncology (Q4)'), (21040, 'Chinese Journal of Sensors and Actuators', 10041699, 0.129, 'Q4', 17, 273, 4929, 258, 952, '1', '2004-2020', 'Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4)'), (21041, 'Ciencia da Informacao', 1001965, 0.129, 'Q4', 11, 27, 842, 20, 145, '14', '2006-2013, 2015-2019', 'Library and Information Sciences (Q4)'), (21042, 'Deutsche Zeitschrift fur Philosophie', 21921482, 0.129, 'Q3', 11, 46, 1289, 13, 147, '5', '1953-2020', 'Philosophy (Q3)'), (21043, 'Eirene', 461628, 0.129, 'Q2', 4, 0, 0, 6, 33, '31', '2002-2019', 'Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21044, 'Endeavour', 1609327, 0.129, 'Q3', 26, 12, 472, 20, 53, '3', '1947-1949, 1958-2020', 'History and Philosophy of Science (Q3)'), (21045, 'Environnement, Risques et Sante', 16350421, 0.129, 'Q4', 13, 98, 895, 12, 274, '8', '2002-2020', 'Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4)'), (21046, 'Ernahrungs Umschau', 3402371, 0.129, 'Q4', 14, 13, 155, 29, 154, '5', '1973-1978, 1981-1982, 2003-2019', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)'), (21047, 'Historia da Educacao', 14143518, 0.129, 'Q4', 4, 49, 1705, 18, 174, '14', '2013-2020', 'Education (Q4)'), (21048, 'Historicka Demografie', 3230937, 0.129, 'Q2', 3, 7, 8, 1, 30, '31', '1991, 2011-2020', 'History (Q2); Demography (Q4)'), (21049, 'Ingenieria y Universidad', 1232126, 0.129, 'Q4', 9, 10, 306, 16, 35, '47', '2008-2020', 'Engineering (miscellaneous) (Q4)'), (21050, 'International Journal for the Study of Skepti', 22105697, 0.129, 'Q3', 6, 18, 475, 5, 48, '16', '2011-2020', 'Philosophy (Q3)'), (21051, 'International Journal of High Dilution Resear', 19826206, 0.129, 'Q4', 9, 13, 371, 9, 45, '14', '2011-2020', 'Complementary and Alternative Medicine (Q4)'), (21052, 'International Journal of High Performance Sys', 17516536, 0.129, 'Q4', 11, 20, 755, 18, 43, '3', '2008-2014', 'Hardware and Architecture (Q4)'), (21053, 'International Journal of Information Systems ', 1479313, 0.129, 'Q4', 11, 6, 207, 26, 48, '3', '2007-2013, 2018', 'Business, Management and Accounting (miscellaneous) (Q4); Decision Sciences (miscellaneous) (Q4)'), (21054, 'International Journal of Literacies', 23270136, 0.129, 'Q4', 2, 5, 224, 5, 18, '2', '2012-2019', 'Education (Q4)'), (21055, 'International Journal of Multicriteria Decisi', 20401078, 0.129, 'Q4', 10, 0, 0, 13, 23, '19', '2010-2014', 'Management Science and Operations Research (Q4); Strategy and Management (Q4)'), (21056, 'Iranian Journal of Endocrinology and Metaboli', 16834844, 0.129, 'Q4', 12, 34, 1403, 31, 112, '15', '2008-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (21057, 'Journal for Eighteenth-Century Studies', 17540208, 0.129, 'Q2', 11, 32, 1233, 14, 88, '3', '1972-1973, 1975-1995, 2009-2020', 'History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)'), (21058, 'Journal of Modern Jewish Studies', 14725886, 0.129, 'Q2', 5, 40, 1780, 17, 82, '3', '2002, 2010-2020', 'History (Q2); Cultural Studies (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21059, 'Journal of Pakistan Association of Dermatolog', 15609014, 0.129, 'Q4', 13, 83, 1556, 32, 241, '34', '1999-2019', 'Dermatology (Q4)'), (21060, 'Journal of Private Equity', 10965572, 0.129, 'Q4', 12, 0, 0, 18, 114, '2', '2007-2019', 'Economics and Econometrics (Q4); Finance (Q4)'), (21061, 'Journal of the Textile Association', 3684636, 0.129, 'Q4', 10, 1, 18, 13, 53, '4', '1999-2020', 'Business and International Management (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)'), (21062, 'Journal of Zhejiang University, Science Editi', 10089497, 0.129, 'Q4', 6, 96, 2250, 75, 301, '1', '2012-2020', 'Multidisciplinary (Q4)'), (21063, 'Korean Journal of Applied Microbiology and Bi', 2572389, 0.129, 'Q4', 14, 0, 0, 13, 37, '13', '1996-2002, 2019', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Microbiology (Q4)'), (21064, 'Lexis (Peru)', 2549239, 0.129, 'Q2', 5, 11, 550, 5, 46, '68', '2012-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21065, 'Lithics', 2627817, 0.129, 'Q3', 4, 0, 0, 4, 13, '3', '2011-2018', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21066, 'Mathematical Gazette', 255572, 0.129, 'Q4', 1, 91, 411, 3, 53, '3', '2019-2020', 'Mathematics (miscellaneous) (Q4)'), (21067, 'Mens en Maatschappij', 259454, 0.129, 'Q4', 2, 25, 700, 6, 77, '16', '2016-2019', 'Social Sciences (miscellaneous) (Q4)'), (21068, 'Metode', 21749221, 0.129, 'Q3', 4, 26, 347, 23, 74, '12', '2015-2020', 'History and Philosophy of Science (Q3); Multidisciplinary (Q4)'), (21069, 'Modern Drama', 267694, 0.129, 'Q2', 11, 16, 670, 13, 68, '9', '2002-2020', 'Literature and Literary Theory (Q2)'), (21070, 'Nursing children and young people', 20462344, 0.129, 'Q4', 23, 12, 0, 41, 205, '3', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (21071, 'Pediatria de Atencion Primaria', 11397632, 0.129, 'Q4', 9, 71, 1269, 34, 169, '12', '2009-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (21072, 'Pediatric emergency medicine practice', 15499650, 0.129, 'Q4', 8, 30, 0, 18, 53, '2', '2013-2020', 'Medicine (miscellaneous) (Q4)'), (21073, 'PISTES', 14819384, 0.129, 'Q4', 2, 9, 448, 3, 21, '9', '2018-2019', 'Health (social science) (Q4); Human Factors and Ergonomics (Q4)'), (21074, 'Polimery w medycynie', 3700747, 0.129, 'Q4', 11, 7, 0, 2, 4, '17', '1974-2016, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (21075, 'Regional Science Inquiry', 17917735, 0.129, 'Q4', 7, 4, 149, 46, 113, '39', '2012-2020', 'Development (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)'), (21076, 'Revista de Cercetare si Interventie Sociala', 15833410, 0.129, 'Q4', 15, 99, 3345, 72, 228, '43', '2008-2020', 'Health (social science) (Q4); Social Psychology (Q4); Sociology and Political Science (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (21077, 'Revista Espanola de Patologia', 1988561, 0.129, 'Q4', 7, 70, 1686, 38, 139, '12', '2008-2020', 'Pathology and Forensic Medicine (Q4); Pulmonary and Respiratory Medicine (Q4)'), (21078, 'Revista Mexicana de Ingenieria Biomedica', 1889532, 0.129, 'Q4', 6, 12, 575, 23, 102, '30', '2011-2020', 'Biomedical Engineering (Q4)'), (21079, 'Revista Mexicana de Oftalmologia', 1874519, 0.129, 'Q4', 6, 34, 787, 15, 145, '30', '1987, 1997-2020', 'Ophthalmology (Q4)'), (21080, 'Revista mexicana de urologia', 350001, 0.129, 'Q4', 4, 101, 2011, 11, 182, '30', '1963-1965, 2014-2020', 'Urology (Q4)'), (21081, 'Revue Francaise de Linguistique Appliquee', 13861204, 0.129, 'Q3', 8, 0, 0, 12, 42, '8', '2001-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21082, 'Revue Medicale Suisse', 16609379, 0.129, 'Q4', 16, 783, 9305, 263, 1372, '19', '2005-2020', 'Medicine (miscellaneous) (Q4)'), (21083, 'Russian Linguistics', 15728714, 0.129, 'Q3', 9, 15, 491, 10, 48, '16', '1974-1976, 1978-2003, 2005-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Developmental and Educational Psychology (Q4)'), (21084, 'Southern African Journal of Critical Care', 15628264, 0.129, 'Q4', 7, 13, 278, 12, 28, '27', '2001-2020', 'Critical Care and Intensive Care Medicine (Q4)'), (21085, 'Sprak och Stil', 11011165, 0.129, 'Q3', 5, 9, 411, 3, 16, '20', '2011-2018', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21086, 'Studies in American Fiction', 918083, 0.129, 'Q2', 8, 5, 309, 7, 39, '2', '2002-2008, 2011-2019', 'Literature and Literary Theory (Q2)'), (21087, 'Studies in Late Antiquity', 24702048, 0.129, 'Q2', 2, 0, 0, 6, 24, '2', '2017-2019', 'Classics (Q2); History (Q2)'), (21088, 'Systemes d Information et Management', 12604984, 0.129, 'Q4', 2, 12, 1010, 10, 26, '8', '2018-2019', 'Management Information Systems (Q4); Management of Technology and Innovation (Q4)'), (21089, 'Texas Journal of Science', 404403, 0.129, 'Q4', 15, 12, 383, 4, 29, '2', '1975, 1980, 1983, 1985, 1993-2010, 2012-2013, 2019', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (21090, 'Third Text', 9528822, 0.129, 'Q2', 17, 38, 0, 36, 132, '3', '1987-2020', 'Cultural Studies (Q2); Visual Arts and Performing Arts (Q2)'), (21091, 'Toronto Journal of Theology', 8269831, 0.129, 'Q2', 4, 34, 1029, 14, 62, '9', '1990, 2011-2020', 'Religious Studies (Q2)'), (21092, 'Toxicology International', 9716580, 0.129, 'Q4', 26, 18, 566, 15, 61, '4', '2005-2018, 2020', 'Health, Toxicology and Mutagenesis (Q4); Toxicology (Q4)'), (21093, 'Westminster Papers in Communication and Cultu', 17446716, 0.129, 'Q3', 1, 19, 711, 5, 7, '3', '2019-2020', 'Cultural Studies (Q3); Communication (Q4)'), (21094, 'Women s Studies', 497878, 0.129, 'Q3', 15, 55, 1863, 30, 147, '3', '1972-1984, 1986-2020', 'Arts and Humanities (miscellaneous) (Q3); Gender Studies (Q4); Social Sciences (miscellaneous) (Q4)'), (21095, 'Acta Medica Philippina', 20949278, 0.128, 'Q4', 4, 96, 2197, 30, 206, '63', '1947-1956, 1958-1960, 1962-1967, 1973-1981, 2011-2020', 'Medicine (miscellaneous) (Q4)'), (21096, 'Activitas Nervosa Superior Rediviva', 1337933, 0.128, 'Q4', 9, 0, 0, 13, 38, '53', '2009-2019', 'Neuroscience (miscellaneous) (Q4)'), (21097, 'Agricultural History Review', 21490, 0.128, 'Q3', 19, 5, 492, 9, 43, '3', '1978-2020', 'History and Philosophy of Science (Q3); Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Economics and Econometrics (Q4)'), (21098, 'American Journal of Legal History', 29319, 0.128, 'Q2', 11, 6, 384, 10, 52, '2', '1976, 1985, 1987, 1995-1999, 2004-2008, 2011-2019', 'History (Q2); Law (Q3)'), (21099, 'Archipel', 448613, 0.128, 'Q2', 7, 24, 795, 10, 62, '8', '2009-2020', 'History (Q2); Literature and Literary Theory (Q2); Religious Studies (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); Cultural Studies (Q3)'), (21100, 'Architectural Design', 38504, 0.128, 'Q2', 22, 107, 0, 106, 286, '2', '2002-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3)'), (21101, 'Archivaria', 3186954, 0.128, 'Q4', 26, 13, 0, 11, 30, '9', '1980, 1989-1990, 1996-2020', 'Library and Information Sciences (Q4)'), (21102, 'Asian and African Studies', 13351257, 0.128, 'Q3', 4, 13, 457, 7, 36, '53', '1987, 2008-2020', 'Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Sociology and Political Science (Q4)'), (21103, 'Atalanta', 23401176, 0.128, 'Q2', 1, 5, 242, 3, 50, '12', '2016-2020', 'History (Q2); Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21104, 'Betriebswirtschaftliche Forschung und Praxis', 3405370, 0.128, 'Q4', 11, 29, 1666, 11, 93, '5', '1974-1975, 1977, 1989, 1996-2020', 'Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4)'), (21105, 'Biotecnologia Aplicada', 10272852, 0.128, 'Q4', 15, 0, 0, 8, 26, '85', '1990-1992, 1998-2019', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4)'), (21106, 'Cadmo', 19725019, 0.128, 'Q4', 5, 17, 330, 12, 54, '7', '2005-2019', 'Education (Q4)'), (21107, 'Canadian Review of Comparative Literature', 319051, 0.128, 'Q2', 4, 23, 601, 17, 121, '9', '2002-2020', 'Literature and Literary Theory (Q2)'), (21108, 'Carrefours de l Education', 12623490, 0.128, 'Q4', 7, 32, 767, 8, 64, '8', '2001-2007, 2009-2019', 'Education (Q4)'), (21109, 'Castilla Estudios de Literatura', 19897383, 0.128, 'Q2', 2, 16, 654, 5, 46, '12', '2013-2020', 'Literature and Literary Theory (Q2)'), (21110, 'Ceska Radiologie', 12107883, 0.128, 'Q4', 7, 39, 673, 10, 108, '31', '2001-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (21111, 'Chimica Techno Acta', 24111414, 0.128, 'Q4', 1, 34, 459, 3, 10, '10', '2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4)'), (21112, 'Comics Grid', 20480792, 0.128, 'Q2', 1, 13, 404, 3, 20, '3', '2018-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)'), (21113, 'Corrosion Science and Protection Technology', 10026495, 0.128, 'Q4', 15, 0, 0, 76, 313, '1', '1992, 1995-2002, 2005-2011, 2013-2019', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (21114, 'Current Cancer Therapy Reviews', 15733947, 0.128, 'Q4', 14, 34, 2240, 17, 44, '52', '2006-2020', 'Cancer Research (Q4); Molecular Medicine (Q4); Oncology (Q4)'), (21115, 'Current Signal Transduction Therapy', 15743624, 0.128, 'Q4', 17, 30, 1212, 63, 44, '52', '2007-2020', 'Endocrinology (Q4); Pharmacology (medical) (Q4)'), (21116, 'Debats', 2120585, 0.128, 'Q3', 1, 21, 722, 8, 69, '12', '2018-2020', 'Cultural Studies (Q3); Sociology and Political Science (Q4)'), (21117, 'Ekonomiaz', 23404051, 0.128, 'Q3', 3, 13, 515, 11, 51, '12', '2016-2020', 'Cultural Studies (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (21118, 'Electronics', 14505843, 0.128, 'Q4', 10, 10, 328, 14, 28, '90', '2012-2020', 'Electrical and Electronic Engineering (Q4)'), (21119, 'Elektrotehniski Vestnik/Electrotechnical Revi', 135852, 0.128, 'Q4', 10, 19, 382, 56, 124, '60', '1969-1971, 1973-2020', 'Electrical and Electronic Engineering (Q4)'), (21120, 'Ephemerides Theologicae Lovanienses', 17831423, 0.128, 'Q2', 8, 6, 693, 9, 79, '24', '1996-2020', 'History (Q2); Religious Studies (Q2)'), (21121, 'Etudes et Travaux', 24499579, 0.128, 'Q3', 5, 0, 0, 4, 46, '17', '2011-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21122, 'Geological Research in Moravia and Silesia', 23364378, 0.128, 'Q4', 1, 13, 304, 5, 29, '31', '2017, 2019', 'Geology (Q4)'), (21123, 'HiSTOReLo', 2145132, 0.128, 'Q2', 2, 24, 1002, 8, 61, '47', '2013-2020', 'History (Q2); Cultural Studies (Q3); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (21124, 'Historiographia Linguistica', 3025160, 0.128, 'Q2', 12, 4, 300, 6, 38, '16', '1974-2019', 'History (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21125, 'Historisk tidskrift for Finland', 467596, 0.128, 'Q2', 3, 21, 1114, 9, 88, '38', '1976-1977, 1981, 2001, 2011-2019', 'History (Q2)'), (21126, 'Informacijos Mokslai', 13921487, 0.128, 'Q3', 1, 28, 1009, 6, 59, '69', '2018-2020', 'Media Technology (Q3); Communication (Q4); Management of Technology and Innovation (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21127, 'Insecta Matsumurana', 201804, 0.128, 'Q4', 5, 0, 0, 2, 10, '6', '2012-2019', 'Insect Science (Q4)'), (21128, 'International Journal of Applied Research in ', 15422666, 0.128, 'Q4', 13, 0, 0, 21, 58, '2', '2008-2010, 2012-2019', 'Veterinary (miscellaneous) (Q4)'), (21129, 'International Journal of Customer Relationshi', 19479247, 0.128, 'Q4', 2, 11, 762, 15, 33, '2', '2018-2020', 'Business and International Management (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management Information Systems (Q4); Marketing (Q4)'), (21130, 'International Journal of Cyber Warfare and Te', 19473435, 0.128, 'Q4', 3, 17, 821, 13, 29, '2', '2018-2019', 'Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems and Management (Q4); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4); Software (Q4)'), (21131, 'Iranian Journal of Nuclear Medicine', 16812824, 0.128, 'Q4', 10, 19, 375, 22, 68, '15', '2006-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (21132, 'Irish Studies in International Affairs', 3321460, 0.128, 'Q4', 8, 0, 0, 13, 74, '42', '2009-2019', 'Development (Q4); Economics and Econometrics (Q4); Political Science and International Relations (Q4)'), (21133, 'Islamic Law and Society', 15685195, 0.128, 'Q3', 24, 13, 1686, 10, 41, '16', '1994-2019', 'Law (Q3); Sociology and Political Science (Q4)'), (21134, 'Italus Hortus', 11273496, 0.128, 'Q4', 2, 22, 872, 7, 26, '7', '2018-2020', 'Food Science (Q4); Horticulture (Q4); Plant Science (Q4)'), (21135, 'Journal of Beijing Institute of Technology (E', 10040579, 0.128, 'Q4', 14, 65, 1316, 53, 274, '1', '1994-2020', 'Engineering (miscellaneous) (Q4)'), (21136, 'Journal of European Studies', 472441, 0.128, 'Q3', 12, 25, 644, 8, 63, '3', '1971-2020', 'Arts and Humanities (miscellaneous) (Q3)'), (21137, 'Journal of Tropical Pathology', 19808178, 0.128, 'Q4', 1, 29, 945, 2, 18, '14', '2019-2020', 'Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)'), (21138, 'Listy Filologicke', 244457, 0.128, 'Q2', 4, 8, 254, 8, 47, '31', '2003-2019', 'History (Q2); Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21139, 'Medeniyet medical journal', 21492042, 0.128, 'Q4', 4, 53, 1209, 17, 155, '18', '2015-2020', 'Medicine (miscellaneous) (Q4)'), (21140, 'Medicinal Plants - International Journal of P', 9754261, 0.128, 'Q4', 10, 74, 2671, 37, 162, '16', '2010-2020', 'Drug Discovery (Q4); Organic Chemistry (Q4); Plant Science (Q4)'), (21141, 'NanoWorld Journal', 23791101, 0.128, 'Q4', 1, 7, 477, 2, 7, '2', '2019-2020', 'Biomaterials (Q4); Biomedical Engineering (Q4); Biophysics (Q4); Cancer Research (Q4); Health, Toxicology and Mutagenesis (Q4); Molecular Biology (Q4); Polymers and Plastics (Q4)'), (21142, 'Panta Rei', 23868864, 0.128, 'Q2', 1, 17, 1605, 4, 8, '12', '2019', 'History (Q2); Anthropology (Q3); Archeology (arts and humanities) (Q3)'), (21143, 'Revista Colombiana de Reumatologia', 1218123, 0.128, 'Q4', 8, 116, 4189, 51, 121, '47', '2009-2020', 'Rheumatology (Q4)'), (21144, 'Revista Cubana de Medicina Tropical', 3750760, 0.128, 'Q4', 18, 37, 1042, 28, 94, '85', '1976-2020', 'Infectious Diseases (Q4); Parasitology (Q4)'), (21145, 'Revista Portuguesa de Educacao', 21830452, 0.128, 'Q4', 2, 32, 1054, 7, 53, '26', '2018-2019', 'Education (Q4)'), (21146, 'Roczniki Filozoficzne', 357685, 0.128, 'Q3', 3, 33, 757, 8, 114, '17', '1967, 2015-2020', 'Philosophy (Q3)'), (21147, 'Salute e Societa', 19724845, 0.128, 'Q4', 5, 24, 764, 10, 113, '7', '2013-2020', 'Health Policy (Q4); Health (social science) (Q4)'), (21148, 'Sport History Review', 10871659, 0.128, 'Q2', 7, 15, 1190, 7, 35, '2', '1999, 2002, 2009-2019', 'History (Q2); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)'), (21149, 'Studii de Lingvistica', 22845437, 0.128, 'Q3', 2, 0, 0, 5, 48, '43', '2016-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21150, 'Sylloge Epigraphica Barcinonensis', 20148151, 0.128, 'Q2', 1, 21, 8, 5, 50, '12', '2017-2019', 'Classics (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21151, 'Taiwan Journal of Public Health', 10232141, 0.128, 'Q4', 17, 50, 1699, 20, 166, '22', '2001-2019', 'Public Health, Environmental and Occupational Health (Q4)'), (21152, 'Telfor Journal', 23349905, 0.128, 'Q3', 5, 21, 420, 28, 63, '55', '2016-2019', 'Media Technology (Q3); Computer Networks and Communications (Q4); Radiation (Q4); Signal Processing (Q4); Software (Q4)'), (21153, 'Transactions of the Japan Society for Computa', 13449443, 0.128, 'Q4', 5, 18, 371, 11, 56, '6', '2011-2020', 'Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (21154, 'Twentieth-Century China', 15215385, 0.128, 'Q2', 5, 23, 133, 10, 46, '3', '2002, 2012-2020', 'History (Q2); Cultural Studies (Q3); Political Science and International Relations (Q4)'), (21155, 'Urologia Colombiana', 20270119, 0.128, 'Q4', 4, 49, 979, 15, 134, '5', '2014-2020', 'Urology (Q4)'), (21156, 'Vasomed', 9421181, 0.128, 'Q4', 8, 0, 0, 9, 62, '5', '1997-2018', 'Cardiology and Cardiovascular Medicine (Q4)'), (21157, 'Vernacular Architecture', 3055477, 0.128, 'Q2', 11, 9, 193, 8, 18, '3', '1971-2020', 'History (Q2); Visual Arts and Performing Arts (Q2); Architecture (Q3); Conservation (Q3)'), (21158, 'Vinculos de Historia', 22546901, 0.128, 'Q2', 4, 0, 0, 10, 63, '12', '2012-2019', 'History (Q2)'), (21159, 'World Heart Journal', 15564002, 0.128, 'Q4', 17, 19, 711, 20, 79, '2', '2008-2019', 'Cardiology and Cardiovascular Medicine (Q4)'), (21160, 'X-ray Structure Analysis Online', 18833578, 0.128, 'Q4', 8, 14, 170, 12, 72, '6', '2009-2020', 'Analytical Chemistry (Q4); Materials Chemistry (Q4)'), (21161, 'Yearbook of Phraseology', 18686338, 0.128, 'Q3', 3, 9, 283, 13, 20, '5', '2014-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4)'), (21162, 'Acta Ethnographica Hungarica', 15882586, 0.127, 'Q2', 6, 11, 475, 9, 69, '50', '1996-2019', 'Music (Q2); Cultural Studies (Q3); Demography (Q4)'), (21163, 'Air and Space Law', 9273379, 0.127, 'Q3', 2, 35, 952, 11, 42, '16', '2018-2020', 'Law (Q3)'), (21164, 'Ambix', 17458234, 0.127, 'Q3', 11, 23, 0, 17, 65, '3', '1937-1938, 1946, 1948-1949, 1951, 1953, 1956-1996, 1998, 2000-2020', 'History and Philosophy of Science (Q3); Chemistry (miscellaneous) (Q4)'), (21165, 'Anesteziologie a Intenzivni Medicina', 12142158, 0.127, 'Q4', 7, 49, 996, 12, 133, '31', '2003-2020', 'Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)'), (21166, 'Anthropology and Aging', 23742267, 0.127, 'Q3', 2, 34, 996, 5, 12, '2', '2019-2020', 'Anthropology (Q3); Demography (Q4); Geriatrics and Gerontology (Q4); Life-span and Life-course Studies (Q4)'), (21167, 'Archives of Natural History', 17556260, 0.127, 'Q2', 8, 28, 1196, 17, 101, '3', '1981-1983, 1985-1989, 1991-1992, 1994, 1996, 1998-2004, 2006, 2008-2020', 'History (Q2); Anthropology (Q3); Agricultural and Biological Sciences (miscellaneous) (Q4)'), (21168, 'Baltic Journal of Modern Computing', 22558950, 0.127, 'Q4', 3, 30, 881, 25, 39, '77', '2019-2020', 'Computer Science (miscellaneous) (Q4)'), (21169, 'Basal Ganglia', 22105336, 0.127, 'Q4', 19, 0, 0, 9, 25, '5', '2011-2018', 'Neurology (Q4); Neurology (clinical) (Q4)'), (21170, 'Biblische Notizen', 1782967, 0.127, 'Q2', 2, 28, 1057, 9, 60, '5', '2013-2014, 2018-2019', 'History (Q2); Religious Studies (Q2)'), (21171, 'Biotekhnologiya', 25002341, 0.127, 'Q4', 3, 74, 1912, 46, 146, '10', '2017-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Ecology (Q4)'), (21172, 'Centaurus', 16000498, 0.127, 'Q3', 9, 53, 3143, 13, 63, '3', '1950-1961, 1963-1982, 1984-1994, 1998, 2001-2002, 2006-2007, 2009-2020', 'History and Philosophy of Science (Q3)'), (21173, 'Chelyabinsk Physical and Mathematical Journal', 25000101, 0.127, 'Q4', 2, 55, 856, 7, 41, '10', '2019-2020', 'Mathematics (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (21174, 'Cognitive Studies', 23922397, 0.127, 'Q3', 2, 13, 347, 12, 31, '17', '2018-2019', 'Linguistics and Language (Q3); Communication (Q4); Computer Networks and Communications (Q4)'), (21175, 'Contemporary Education Dialogue', 9731849, 0.127, 'Q4', 5, 6, 252, 14, 31, '4', '2003, 2015-2020', 'Education (Q4)'), (21176, 'Corvinus Journal of Sociology and Social Poli', 2062087, 0.127, 'Q4', 4, 25, 631, 23, 73, '50', '2016-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (21177, 'Cultura, Lenguaje y Representacion', 16977750, 0.127, 'Q2', 4, 17, 666, 17, 61, '12', '2011-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Linguistics and Language (Q3); Communication (Q4)'), (21178, 'Cumhuriyet Ilahiyat Dergisi', 25289861, 0.127, 'Q2', 2, 43, 2129, 13, 170, '18', '2016-2020', 'Religious Studies (Q2); Philosophy (Q3); Social Sciences (miscellaneous) (Q4)'), (21179, 'Discussiones Mathematicae - General Algebra a', 20840373, 0.127, 'Q4', 2, 25, 425, 7, 22, '17', '2019-2020', 'Algebra and Number Theory (Q4); Applied Mathematics (Q4)'), (21180, 'Drugs and Therapy Perspectives', 11791977, 0.127, 'Q4', 8, 92, 2580, 46, 253, '3', '1993-2020', 'Pharmacology (medical) (Q4)'), (21181, 'Education et Societes', 1373847, 0.127, 'Q4', 13, 12, 409, 18, 49, '24', '2001-2018, 2020', 'Education (Q4); Sociology and Political Science (Q4)'), (21182, 'Eriu', 3320758, 0.127, 'Q2', 4, 0, 0, 3, 23, '42', '2011-2018', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21183, 'Estudios de Linguistica del Espanola', 11398736, 0.127, 'Q3', 4, 0, 0, 3, 25, '12', '2012, 2014-2018', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21184, 'Etica e Politica', 18255167, 0.127, 'Q3', 6, 37, 1189, 14, 234, '7', '2013-2019', 'Philosophy (Q3); Sociology and Political Science (Q4)'), (21185, 'Giornale Italiano di Farmacia Clinica', 11203749, 0.127, 'Q4', 7, 11, 159, 7, 50, '7', '1989-2012, 2014-2020', 'Pharmacology (medical) (Q4)'), (21186, 'Herodote', 338487, 0.127, 'Q4', 8, 0, 0, 16, 111, '8', '1979, 1984, 1986, 1988, 2006-2019', 'Geography, Planning and Development (Q4)'), (21187, 'Heythrop Journal - Quarterly Review of Philos', 181196, 0.127, 'Q2', 10, 91, 1268, 18, 162, '2', '1960-2020', 'Religious Studies (Q2); Philosophy (Q3); Neurology (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Waste Management and Disposal (Q4); Water Science an'), (21188, 'Historia y Memoria', 20275137, 0.127, 'Q2', 2, 35, 1383, 9, 70, '47', '2015-2020', 'History (Q2)'), (21189, 'International Journal of COMADEM', 13637681, 0.127, 'Q4', 11, 33, 559, 21, 86, '3', '2003-2020', 'Bioengineering (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Safety, Risk, Reliability and Quality (Q4); Signal Processing (Q4); Strategy and Managem'), (21190, 'International Journal of Materials and Struct', 17450055, 0.127, 'Q4', 11, 6, 146, 19, 53, '3', '2007-2013, 2020', 'Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (21191, 'International Journal of Microwave and Optica', 15530396, 0.127, 'Q4', 11, 73, 1547, 81, 169, '2', '2011-2020', 'Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (21192, 'Iranian Journal of Blood and Cancer', 20084609, 0.127, 'Q4', 6, 32, 740, 19, 77, '15', '2014-2020', 'Hematology (Q4); Oncology (Q4)'), (21193, 'Irish Historical Studies', 211214, 0.127, 'Q2', 11, 17, 1242, 9, 49, '42', '1983, 1986-1987, 2001-2019', 'History (Q2)'), (21194, 'Japanese Journal of Southeast Asian Studies', 24241377, 0.127, 'Q4', 17, 10, 354, 3, 30, '6', '1978-2010, 2012-2020', 'Development (Q4); Geography, Planning and Development (Q4); Political Science and International Relations (Q4)'), (21195, 'Japanese Pharmacology and Therapeutics', 3863603, 0.127, 'Q4', 15, 43, 841, 61, 447, '6', '1981-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (21196, 'JMS - Journal of Medical Society', 9724958, 0.127, 'Q4', 5, 25, 402, 72, 119, '4', '2003-2012, 2014-2019', 'Medicine (miscellaneous) (Q4)'), (21197, 'Journal Globalization, Competitiveness and Go', 19887116, 0.127, 'Q4', 6, 18, 743, 17, 47, '12', '2013-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (21198, 'Journal of African Media Studies', 17517974, 0.127, 'Q4', 8, 20, 958, 15, 70, '3', '2011-2020', 'Communication (Q4)'), (21199, 'Journal of Cutaneous Immunology and Allergy', 25744593, 0.127, 'Q4', 1, 44, 312, 7, 10, '3', '2018-2020', 'Dermatology (Q4); Immunology and Allergy (Q4)'), (21200, 'Journal of Korean Studies', 7311613, 0.127, 'Q4', 7, 18, 927, 13, 49, '2', '2011-2020', 'Social Sciences (miscellaneous) (Q4)'), (21201, 'Journal of Oral Research', 7192479, 0.127, 'Q4', 4, 106, 2581, 53, 153, '45', '2016-2020', 'Dentistry (miscellaneous) (Q4)'), (21202, 'Journal of the Dermatology Nurses Associatio', 1945760, 0.127, 'Q4', 6, 55, 746, 31, 131, '2', '2012-2020', 'Advanced and Specialized Nursing (Q4)'), (21203, 'Journal of Tianjin Polytechnic University', 1671024, 0.127, 'Q4', 8, 73, 1687, 52, 221, '1', '2005-2019', 'Polymers and Plastics (Q4)'), (21204, 'Klinik Psikiyatri Dergisi', 21467153, 0.127, 'Q4', 3, 46, 1608, 26, 95, '18', '2017-2020', 'Psychiatry and Mental Health (Q4)'), (21205, 'Law Teacher', 3069400, 0.127, 'Q3', 11, 57, 28, 58, 96, '3', '1967-2020', 'Law (Q3); Education (Q4)'), (21206, 'Metodoloski Zvezki', 18540031, 0.127, 'Q4', 7, 0, 0, 10, 35, '60', '2011-2019', 'Social Sciences (miscellaneous) (Q4); Statistics and Probability (Q4)'), (21207, 'Mundo da Saude', 19803990, 0.127, 'Q4', 9, 40, 1239, 28, 180, '14', '2011-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (21208, 'Organisational and Social Dynamics', 14742780, 0.127, 'Q4', 2, 17, 411, 9, 51, '3', '2017-2019', 'Social Psychology (Q4)'), (21209, 'Philippine Political Science Journal', 1154451, 0.127, 'Q4', 10, 8, 407, 13, 29, '3', '1974-1982, 1989-1990, 1992, 1994, 1998-2020', 'Political Science and International Relations (Q4)'), (21210, 'Philosophy Today', 318256, 0.127, 'Q3', 10, 66, 1151, 33, 174, '2', '2002-2020', 'Philosophy (Q3)'), (21211, 'Polytrauma', 18191495, 0.127, 'Q4', 2, 37, 866, 13, 141, '10', '2016-2019', 'Engineering (miscellaneous) (Q4)'), (21212, 'Proceedings of the Pakistan Academy of Scienc', 25184245, 0.127, 'Q4', 4, 15, 394, 21, 46, '34', '2016-2020', 'Computer Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (21213, 'Prose Studies', 1440357, 0.127, 'Q2', 10, 20, 580, 6, 15, '3', '1980-2003, 2005-2018, 2020', 'Literature and Literary Theory (Q2)'), (21214, 'Research in Phenomenology', 15691640, 0.127, 'Q3', 14, 23, 711, 9, 63, '16', '1971-1978, 1980, 1982, 1984-1988, 1990-1991, 1996-2005, 2007-2020', 'Philosophy (Q3)'), (21215, 'Revista de Psicologia Clinica con Ninos y Ado', 23408340, 0.127, 'Q4', 2, 15, 582, 8, 16, '12', '2019-2020', 'Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Experimental and Cognitive Psychology (Q4); Pediatrics, Perinatology and Child Health (Q4); Psychiatry and Mental Health (Q4)'), (21216, 'Revista Internacional de Educacion para la Ju', 22543139, 0.127, 'Q4', 3, 37, 1698, 7, 12, '12', '2019-2020', 'Education (Q4); Sociology and Political Science (Q4)'), (21217, 'Rivista di Estetica', 356212, 0.127, 'Q3', 4, 34, 1100, 23, 95, '7', '1966, 2013-2019', 'Philosophy (Q3)'), (21218, 'Rivista Geographica Italiana', 356697, 0.127, 'Q4', 4, 9, 404, 13, 45, '7', '1980, 1982-1983, 1986, 1989, 1992, 1995, 2013-2019', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (21219, 'Romance Quarterly', 8831157, 0.127, 'Q2', 6, 15, 631, 9, 58, '3', '1986-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (21220, 'Russian History', 94288, 0.127, 'Q2', 10, 22, 578, 3, 59, '16', '1975-1976, 1982, 1985, 1987, 1989, 1991-1992, 1994-2020', 'History (Q2)'), (21221, 'Seksuologia Polska', 17319544, 0.127, 'Q4', 6, 5, 186, 5, 32, '17', '2005-2019', 'Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Urology (Q4)'), (21222, 'Studies in Travel Writing', 13645145, 0.127, 'Q2', 8, 13, 508, 11, 61, '3', '1997-2020', 'Literature and Literary Theory (Q2)'), (21223, 'Symbolae Osloenses', 397679, 0.127, 'Q2', 10, 5, 89, 4, 26, '3', '1922, 1924-1930, 1932-1942, 1944-1945, 1947-1950, 1952-1953, 1955-1961, 1963-1966, 1968-1973, 1975-2', 'Classics (Q2)'), (21224, 'Tapuya: Latin American Science, Technology an', 25729861, 0.127, 'Q4', 3, 34, 1369, 24, 39, '2', '2018-2020', 'Multidisciplinary (Q4); Social Sciences (miscellaneous) (Q4)'), (21225, 'Theatre Journal', 1922882, 0.127, 'Q2', 22, 46, 1092, 24, 65, '2', '2002-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)'), (21226, 'Transactional Analysis Journal', 23295244, 0.127, 'Q4', 3, 28, 789, 19, 46, '3', '2018-2020', 'Clinical Psychology (Q4); Decision Sciences (miscellaneous) (Q4); Developmental and Educational Psychology (Q4); Education (Q4); Psychiatry and Mental Health (Q4)'), (21227, 'Tropical Journal of Natural Product Research', 26160692, 0.127, 'Q4', 4, 189, 7188, 65, 197, '51', '2017-2020', 'Analytical Chemistry (Q4); Biochemistry (Q4); Complementary and Alternative Medicine (Q4); Drug Discovery (Q4); Molecular Medicine (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4)'), (21228, 'Water and Energy International', 972057, 0.127, 'Q4', 8, 0, 0, 29, 131, '4', '1995-2019', 'Renewable Energy, Sustainability and the Environment (Q4); Water Science and Technology (Q4)'), (21229, 'Advances in gerontology = Uspekhi gerontologi', 15619125, 0.126, 'Q4', 14, 124, 0, 78, 404, '10', '2001-2020', 'Medicine (miscellaneous) (Q4)'), (21230, 'Advances in Neuroimmune Biology', 1878948, 0.126, 'Q4', 9, 6, 607, 4, 18, '16', '2011-2018, 2020', 'Endocrine and Autonomic Systems (Q4); Endocrinology (Q4); Immunology (Q4)'), (21231, 'Andamios', 18700063, 0.126, 'Q3', 8, 56, 1453, 28, 131, '30', '2008-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (21232, 'APA Planning Advisory Service Reports', 1608266, 0.126, 'Q4', 6, 1, 41, 1, 2, '2', '1987-2017', 'Geography, Planning and Development (Q4)'), (21233, 'Arabica', 15700585, 0.126, 'Q2', 17, 18, 1847, 36, 56, '16', '1954-1981, 1983-1993, 1996-2020', 'Literature and Literary Theory (Q2); Religious Studies (Q2); Cultural Studies (Q3); Language and Linguistics (Q3)'), (21234, 'Arterial Hypertension (Russian Federation)', 1607419, 0.126, 'Q4', 5, 48, 1614, 53, 196, '10', '2017-2020', 'Cardiology and Cardiovascular Medicine (Q4); Internal Medicine (Q4)'), (21235, 'Australasian Review of African Studies', 22035184, 0.126, 'Q3', 3, 1, 29, 19, 38, '11', '2017-2019', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (21236, 'Baltic Journal of Law and Politics', 20290454, 0.126, 'Q3', 6, 15, 785, 23, 49, '69', '2012-2019', 'Law (Q3); Sociology and Political Science (Q4)'), (21237, 'Biochemist', 954982, 0.126, 'Q4', 7, 80, 424, 39, 214, '3', '2006-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (21238, 'Bulletin of TICMI', 15120082, 0.126, 'Q4', 3, 6, 71, 14, 37, '81', '2016-2019', 'Computer Science Applications (Q4); Mathematics (miscellaneous) (Q4)'), (21239, 'Bunseki Kagaku', 5251931, 0.126, 'Q4', 19, 65, 992, 67, 257, '6', '1952, 1954-1957, 1959-2020', 'Analytical Chemistry (Q4)'), (21240, 'Burlington Magazine', 20449925, 0.126, 'Q2', 9, 43, 1504, 8, 212, '3', '1980, 2002-2019', 'Visual Arts and Performing Arts (Q2)'), (21241, 'Cahiers Critiques de Therapie Familiale et de', 17821398, 0.126, 'Q4', 7, 25, 390, 8, 83, '24', '2001-2020', 'Clinical Psychology (Q4); Social Psychology (Q4)'), (21242, 'Caribbean Journal of Science', 86452, 0.126, 'Q4', 32, 0, 0, 3, 1, '105', '1980, 1982-2010, 2016, 2019', 'Multidisciplinary (Q4)'), (21243, 'Catalan Historical Review', 20134088, 0.126, 'Q2', 4, 12, 704, 3, 29, '12', '2008-2019', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21244, 'Cellular Therapy and Transplantation', 1867416, 0.126, 'Q4', 5, 31, 763, 26, 86, '5', '2009-2011, 2015-2020', 'Molecular Medicine (Q4); Transplantation (Q4)'), (21245, 'Choreographic Practices', 20405669, 0.126, 'Q2', 4, 10, 264, 5, 64, '3', '2014, 2016-2020', 'Visual Arts and Performing Arts (Q2)'), (21246, 'Church History and Religious Culture', 1871241, 0.126, 'Q2', 8, 24, 434, 6, 52, '16', '1912, 1915, 1927, 1929, 1932, 1935-1936, 1939-1940, 1952, 1955, 1963, 1965, 1968, 1970-1972, 1974, 1', 'History (Q2); Religious Studies (Q2)'), (21247, 'Clinical Pharmacist', 17589061, 0.126, 'Q4', 13, 0, 0, 48, 316, '3', '2009-2012, 2014-2019', 'Pharmacology (medical) (Q4); Pharmacy (Q4)'), (21248, 'Collegiate Aviation Review', 15235955, 0.126, 'Q4', 5, 17, 551, 12, 34, '2', '2009-2020', 'Education (Q4)'), (21249, 'Computer Assisted Methods in Engineering and ', 22993649, 0.126, 'Q4', 8, 15, 528, 8, 32, '17', '2012-2019', 'Computational Mechanics (Q4); Computer Science Applications (Q4); Mechanical Engineering (Q4)'), (21250, 'Contemporary Chinese Political Economy and St', 24109681, 0.126, 'Q4', 6, 10, 389, 20, 105, '22', '2015-2020', 'Economics and Econometrics (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21251, 'Cultura', 3931560, 0.126, 'Q2', 1, 6, 86, 1, 19, '7', '2019-2020', 'History (Q2); Literature and Literary Theory (Q2); Arts and Humanities (miscellaneous) (Q3); Philosophy (Q3)'), (21252, 'Dix-Neuf', 14787318, 0.126, 'Q2', 4, 19, 747, 6, 62, '3', '2012-2020', 'Literature and Literary Theory (Q2); Music (Q2); Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21253, 'Douleurs', 16245687, 0.126, 'Q4', 9, 35, 676, 14, 97, '8', '2001-2020', 'Anesthesiology and Pain Medicine (Q4); Neurology (clinical) (Q4)'), (21254, 'Folklor/Edebiyat', 13007491, 0.126, 'Q2', 1, 55, 1446, 4, 122, '74', '2018-2020', 'History (Q2); Anthropology (Q3); Cultural Studies (Q3)'), (21255, 'Gematologiya i Transfuziologiya', 2345730, 0.126, 'Q4', 5, 34, 1445, 26, 113, '10', '1983-2018', 'Hematology (Q4)'), (21256, 'Ginecologia y Obstetricia de Mexico', 3009041, 0.126, 'Q4', 16, 130, 2875, 40, 271, '30', '1946-2020', 'Medicine (miscellaneous) (Q4); Obstetrics and Gynecology (Q4)'), (21257, 'Guncel Pediatri', 13086308, 0.126, 'Q4', 4, 39, 1020, 7, 101, '18', '2009-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (21258, 'Industrie Alimentari', 19901, 0.126, 'Q4', 13, 4, 154, 10, 56, '7', '1996-2019', 'Food Science (Q4); Industrial and Manufacturing Engineering (Q4)'), (21259, 'International Journal for Housing Science and', 1466518, 0.126, 'Q3', 9, 0, 0, 4, 11, '2', '1977-1990, 1993-2017', 'Architecture (Q3); Building and Construction (Q4); Marketing (Q4); Mechanical Engineering (Q4)'), (21260, 'International Journal of Civic, Political, an', 23270047, 0.126, 'Q4', 3, 3, 217, 4, 20, '2', '2013-2020', 'Sociology and Political Science (Q4)'), (21261, 'Irish Studies Review', 9670882, 0.126, 'Q2', 10, 25, 1008, 20, 85, '3', '1992-2002, 2010-2020', 'History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)'), (21262, 'James Baldwin Review', 20569203, 0.126, 'Q2', 1, 13, 345, 3, 14, '3', '2019', 'Literature and Literary Theory (Q2)'), (21263, 'Jewish Quarterly Review, The', 216682, 0.126, 'Q2', 8, 34, 2148, 11, 75, '2', '1953-1995, 1998-1999, 2011-2020', 'History (Q2); Religious Studies (Q2); Cultural Studies (Q3)'), (21264, 'Jordan Journal of Physics', 19947607, 0.126, 'Q4', 8, 27, 808, 24, 67, '62', '2018-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (21265, 'Journal of Buffalo Science', 1927520, 0.126, 'Q4', 2, 17, 1025, 4, 11, '9', '2019-2020', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (21266, 'Journal of Chinese Institute of Food Science ', 10097848, 0.126, 'Q4', 7, 464, 13571, 254, 1310, '1', '2013-2020', 'Food Science (Q4)'), (21267, 'Journal of Clinical Outcomes Management', 10796533, 0.126, 'Q4', 19, 44, 712, 22, 105, '2', '2004-2020', 'Health Policy (Q4); Medicine (miscellaneous) (Q4)'), (21268, 'Journal of Education and e-Learning Research', 25180169, 0.126, 'Q4', 2, 57, 2153, 10, 21, '2', '2019-2020', 'Computer Science Applications (Q4); Developmental and Educational Psychology (Q4); Education (Q4)'), (21269, 'Journal of Global Buddhism', 15276457, 0.126, 'Q2', 1, 14, 638, 3, 13, '2', '2018-2019', 'History (Q2); Religious Studies (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)'), (21270, 'Journal of Indian Association for Child and A', 9731342, 0.126, 'Q4', 8, 44, 1271, 20, 63, '4', '2006-2008, 2010-2020', 'Pediatrics, Perinatology and Child Health (Q4); Psychiatry and Mental Health (Q4)'), (21271, 'Journal of Japanese and Korean Cinema', 17564913, 0.126, 'Q2', 4, 12, 211, 8, 36, '3', '2009-2013, 2015-2020', 'Visual Arts and Performing Arts (Q2); Communication (Q4)'), (21272, 'Journal of Pediatric Neurology', 13042580, 0.126, 'Q4', 17, 106, 2493, 39, 132, '2', '2003-2020', 'Neurology (clinical) (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (21273, 'Journal of Roman Studies', 754358, 0.126, 'Q2', 41, 9, 807, 16, 29, '3', '1911-1922, 1924-2020', 'Classics (Q2); History (Q2); Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21274, 'Journal of Slavic Linguistics', 10682090, 0.126, 'Q3', 2, 6, 265, 7, 27, '2', '2017-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21275, 'Journal of the Anatomical Society of India', 32778, 0.126, 'Q4', 12, 41, 1000, 18, 99, '4', '1960, 1975, 1987, 2009-2020', 'Anatomy (Q4); Pathology and Forensic Medicine (Q4)'), (21276, 'Journal of the Korean Society of Radiology', 17382637, 0.126, 'Q4', 3, 167, 3367, 27, 129, '13', '2019-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (21277, 'Kobunshi Ronbunshu', 3862186, 0.126, 'Q4', 17, 0, 0, 32, 183, '6', '1970, 1974-2019', 'Chemical Engineering (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)'), (21278, 'Kurdish Studies', 20514891, 0.126, 'Q2', 8, 1, 17, 14, 25, '12', '2013-2019', 'History (Q2); Cultural Studies (Q3)'), (21279, 'Literator', 2582279, 0.126, 'Q2', 4, 14, 457, 16, 56, '27', '2014-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21280, 'Medical Journal of Chinese People s Liberatio', 5777402, 0.126, 'Q4', 7, 202, 6652, 198, 534, '1', '2012-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (21281, 'Pharmacologyonline', 18278620, 0.126, 'Q4', 25, 83, 2275, 62, 270, '7', '2007-2020', 'Drug Discovery (Q4); Pharmacology (Q4)'), (21282, 'Pulmonologiya', 25419617, 0.126, 'Q4', 6, 69, 2261, 55, 228, '10', '2015-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (21283, 'Punjab University Journal of Zoology', 23138556, 0.126, 'Q4', 6, 27, 1136, 37, 109, '34', '2010-2020', 'Animal Science and Zoology (Q4)'), (21284, 'Recta', 1575605, 0.126, 'Q4', 4, 10, 284, 7, 28, '12', '2011-2018', 'Applied Mathematics (Q4); Economics and Econometrics (Q4)'), (21285, 'Region: Regional Studies of Russia, Eastern E', 21650659, 0.126, 'Q2', 5, 7, 137, 11, 33, '2', '2012-2020', 'History (Q2); Economics and Econometrics (Q4); Sociology and Political Science (Q4)'), (21286, 'Reviews in Anthropology', 938157, 0.126, 'Q3', 9, 6, 263, 9, 20, '3', '1974-1987, 1990-1995, 1997, 1999-2001, 2003-2020', 'Anthropology (Q3); Cultural Studies (Q3)'), (21287, 'Revista Cientifica de la Facultad de Ciencias', 7982259, 0.126, 'Q4', 12, 0, 0, 17, 80, '94', '1997, 1999-2018', 'Veterinary (miscellaneous) (Q4)'), (21288, 'Revista de Historia Regional', 14140055, 0.126, 'Q2', 3, 10, 263, 3, 56, '14', '2011-2019', 'History (Q2)'), (21289, 'Revista Espanola de Cirugia Oral y Maxilofaci', 11300558, 0.126, 'Q4', 6, 24, 414, 18, 93, '12', '2006-2011, 2014-2018', 'Oral Surgery (Q4); Otorhinolaryngology (Q4); Surgery (Q4)'), (21290, 'Revista Interamericana de Bibliotecologia', 25389866, 0.126, 'Q4', 8, 9, 358, 22, 88, '47', '2000-2019', 'Library and Information Sciences (Q4)'), (21291, 'Salud Uninorte', 20117531, 0.126, 'Q4', 11, 37, 1295, 38, 154, '47', '2002-2003, 2005-2019', 'Medicine (miscellaneous) (Q4)'), (21292, 'Shengxue Xuebao/Acta Acustica', 3710025, 0.126, 'Q4', 19, 84, 1437, 83, 316, '1', '1993-2020', 'Acoustics and Ultrasonics (Q4)'), (21293, 'Spanish Review of Financial Economics', 21731268, 0.126, 'Q4', 8, 0, 0, 4, 8, '12', '2011-2017', 'Economics and Econometrics (Q4); Finance (Q4)'), (21294, 'Studia Universitatis Vasile Goldis Arad, Seri', 18427863, 0.126, 'Q4', 7, 17, 667, 20, 69, '43', '2009-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (21295, 'Studi Emigrazione', 392936, 0.126, 'Q3', 11, 36, 1336, 10, 91, '7', '1977-2020', 'Arts and Humanities (miscellaneous) (Q3); Demography (Q4); Geography, Planning and Development (Q4)'), (21296, 'Studies in Eastern European Cinema', 2040350, 0.126, 'Q2', 5, 38, 962, 7, 48, '3', '2010-2020', 'Visual Arts and Performing Arts (Q2); Communication (Q4)'), (21297, 'Topicos (Mexico)', 1886649, 0.126, 'Q3', 3, 45, 1595, 10, 78, '30', '2013-2020', 'Philosophy (Q3)'), (21298, 'Translation and Literature', 9681361, 0.126, 'Q2', 8, 0, 0, 3, 42, '3', '2002-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21299, 'Turk Dermatoloji Dergisi', 13085255, 0.126, 'Q4', 5, 23, 462, 19, 94, '18', '2009-2019', 'Dermatology (Q4)'), (21300, 'Urban Anthropology and Studies of Cultural Sy', 8946019, 0.126, 'Q3', 17, 0, 0, 1, 9, '2', '1976-2013, 2015-2017', 'Anthropology (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)'), (21301, 'Vestnik Tomskogo Gosudarstvennogo Universitet', 23112085, 0.126, 'Q4', 2, 56, 949, 10, 50, '10', '2019', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems (Q4)'), (21302, 'Vladikavkaz Mathematical Journal', 18140807, 0.126, 'Q4', 2, 9, 131, 8, 28, '10', '2019-2020', 'Mathematics (miscellaneous) (Q4)'), (21303, 'Western American Literature', 433462, 0.126, 'Q2', 6, 14, 430, 8, 66, '2', '2002-2020', 'Literature and Literary Theory (Q2)'), (21304, 'Wiener Tierarztliche Monatsschrift', 2539411, 0.126, 'Q4', 18, 0, 0, 18, 67, '28', '1947-1949, 1961-1962, 1965-1978, 1996-2019', 'Veterinary (miscellaneous) (Q4)'), (21305, 'Zeitschrift Kunststofftechnik/Journal of Plas', 18642217, 0.126, 'Q4', 9, 9, 318, 7, 40, '5', '2005-2020', 'Polymers and Plastics (Q4)'), (21306, '3D Printing in Medicine', 23656271, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2019', 'Biomedical Engineering (Q4); Computer Science Applications (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (21307, 'ACM Communications in Computer Algebra', 19322232, 0.125, 'Q4', 11, 15, 237, 29, 79, '2', '2011-2019', 'Computational Mathematics (Q4); Computational Theory and Mathematics (Q4)'), (21308, 'Acta Scientiarum - Health Sciences', 16799291, 0.125, 'Q4', 11, 30, 866, 13, 90, '14', '2003-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (21309, 'Advanced Therapeutics', 23663987, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2019', 'Biochemistry (medical) (Q4); Genetics (clinical) (Q4); Medicine (miscellaneous) (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)'), (21310, 'Aktuelle Neurologie', 3024350, 0.125, 'Q4', 16, 0, 0, 22, 109, '5', '1974-2018', 'Neurology (clinical) (Q4)'), (21311, 'Annales Universitatis Apulensis. Series Histo', 14539306, 0.125, 'Q2', 2, 0, 0, 5, 51, '43', '2013-2019', 'History (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21312, 'Anos 90', 104236, 0.125, 'Q2', 1, 18, 727, 0, 1, '14', '2019', 'History (Q2)'), (21313, 'Applied Cardiopulmonary Pathophysiology', 9205268, 0.125, 'Q4', 13, 0, 0, 0, 1, '5', '1989-1992, 1994-2000, 2007-2017', 'Cardiology and Cardiovascular Medicine (Q4); Physiology (medical) (Q4); Pulmonary and Respiratory Medicine (Q4)'), (21314, 'Arthroskopie', 9337946, 0.125, 'Q4', 9, 70, 1821, 18, 139, '5', '2003, 2005-2020', 'Orthopedics and Sports Medicine (Q4)'), (21315, 'ASHRAE Standard', 10412336, 0.125, 'Q4', 7, 0, 0, 0, 1, '2', '1996-1998, 2001-2014, 2019', 'Building and Construction (Q4); Mechanical Engineering (Q4)'), (21316, 'Asian International Studies Review', 12268240, 0.125, 'Q2', 2, 5, 280, 4, 28, '24', '2018-2019', 'History (Q2); Cultural Studies (Q3); Business and International Management (Q4); Industrial Relations (Q4); Sociology and Political Science (Q4)'), (21317, 'Association of Canadian Map Libraries and Arc', 8409331, 0.125, 'Q4', 3, 6, 12, 2, 18, '9', '1988, 1991-1995, 1997, 1999-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Earth-Surface Processes (Q4)'), (21318, 'Australasian Journal of Organisational Psycho', 20542232, 0.125, 'Q4', 4, 0, 0, 4, 1, '3', '2014-2017', 'Applied Psychology (Q4); Organizational Behavior and Human Resource Management (Q4); Social Psychology (Q4)'), (21319, 'Baltistica', 1326503, 0.125, 'Q3', 1, 21, 743, 2, 11, '69', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21320, 'Brain and Neuroscience Advances', 23982128, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2019', 'Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4)'), (21321, 'Brazilian Journal of Oral Sciences', 16773225, 0.125, 'Q4', 11, 59, 1808, 28, 144, '14', '2007-2020', 'Dentistry (miscellaneous) (Q4)'), (21322, 'Brazilian Neurosurgery', 23595922, 0.125, 'Q4', 0, 0, 0, 0, 1, '14', '2019', 'Neurology (clinical) (Q4); Surgery (Q4)'), (21323, 'Britain and the World', 20438575, 0.125, 'Q2', 5, 10, 0, 6, 28, '3', '2012-2020', 'History (Q2)'), (21324, 'Bulletin of Science, Technology and Society', 2704676, 0.125, 'Q3', 26, 2, 131, 5, 12, '2', '1982-1985, 1987-2005, 2014, 2017-2019', 'Arts and Humanities (miscellaneous) (Q3); Education (Q4); History and Philosophy of Science (Q4); Management of Technology and Innovation (Q4); Social Sciences (miscellaneous) (Q4)'), (21325, 'Bulletin of the American Society of Papyrolog', 19386958, 0.125, 'Q2', 8, 0, 0, 0, 1, '2', '2002-2011, 2014', 'History (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21326, 'Case Reports in Immunology', 20906617, 0.125, 'Q4', 3, 0, 0, 0, 1, '2', '2016-2017', 'Immunology (Q4); Immunology and Allergy (Q4)'), (21327, 'Cedille', 16994949, 0.125, 'Q2', 3, 53, 1641, 6, 116, '12', '2009-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21328, 'Central European Journal of Communication', 18995101, 0.125, 'Q4', 2, 30, 957, 12, 42, '17', '2016-2020', 'Communication (Q4)'), (21329, 'Cephalalgia Reports', 25158163, 0.125, 'Q4', 1, 37, 1086, 0, 1, '3', '2019-2020', 'Neurology (clinical) (Q4)'), (21330, 'Chemistry, Didactics, Ecology, Metrology', 16409019, 0.125, 'Q4', 1, 20, 517, 0, 1, '17', '2019-2020', 'Ecology (Q4); Education (Q4); Environmental Chemistry (Q4); Environmental Engineering (Q4)'), (21331, 'Clinical and Translational Medicine', 20011326, 0.125, 'Q4', 1, 0, 0, 0, 1, '3', '2016, 2019', 'Medicine (miscellaneous) (Q4); Molecular Medicine (Q4)'), (21332, 'Clinical Sarcoma Research', 20453329, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2019', 'Oncology (Q4)'), (21333, 'Clio: Histoire, Femmes et Societes', 12527017, 0.125, 'Q2', 6, 46, 1655, 4, 57, '8', '1999-2001, 2009-2018, 2020', 'History (Q2); Gender Studies (Q4)'), (21334, 'Cogent Medicine', 2331205, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2019', 'Applied Psychology (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (21335, 'Comma', 20493355, 0.125, 'Q3', 1, 30, 494, 0, 1, '3', '2020', 'Conservation (Q3); Library and Information Sciences (Q4)'), (21336, 'Conservation Science Western Australia', 14473682, 0.125, 'Q4', 21, 0, 0, 0, 1, '11', '2002, 2004, 2006-2017', 'Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)'), (21337, 'Contemporary Educational Research Quarterly', 18144810, 0.125, 'Q4', 3, 12, 526, 9, 44, '22', '2012-2020', 'Education (Q4)'), (21338, 'COPD Research and Practice', 20549040, 0.125, 'Q4', 6, 0, 0, 0, 1, '3', '2015-2017', 'Public Health, Environmental and Occupational Health (Q4); Pulmonary and Respiratory Medicine (Q4)'), (21339, 'Cotinga', 1353985, 0.125, 'Q4', 7, 0, 0, 0, 1, '2', '2009-2014, 2017', 'Animal Science and Zoology (Q4)'), (21340, 'Current Research in Earth Sciences', 21579970, 0.125, 'Q4', 10, 0, 0, 0, 1, '2', '1997-2002, 2004-2010, 2012-2013, 2015-2017', 'Geochemistry and Petrology (Q4); Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)'), (21341, 'Cutter business technology journal', 24753718, 0.125, 'Q4', 2, 0, 0, 49, 165, '2', '2016-2019', 'Business and International Management (Q4); Computer Science Applications (Q4); Management of Technology and Innovation (Q4); Software (Q4); Strategy and Management (Q4)'), (21342, 'Czasopismo Geographiczne', 459453, 0.125, 'Q4', 8, 0, 0, 3, 17, '17', '1978-2013, 2015-2017', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (21343, 'Diabetologe', 18609716, 0.125, 'Q4', 7, 102, 1477, 65, 241, '5', '2006-2020', 'Endocrinology, Diabetes and Metabolism (Q4)'), (21344, 'Digestive Disease Interventions', 2472873, 0.125, 'Q4', 0, 0, 0, 0, 1, '2', '2018-2019', 'Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)'), (21345, 'Diplomacy and Statecraft', 1557301, 0.125, 'Q2', 13, 34, 0, 18, 104, '3', '1990-1996, 1998, 2001-2003, 2010-2020', 'History (Q2); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21346, 'East European Journal of Psycholinguistics', 23123265, 0.125, 'Q3', 1, 29, 728, 6, 19, '44', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Experimental and Cognitive Psychology (Q4)'), (21347, 'Energy Harvesting and Systems', 23298774, 0.125, 'Q4', 1, 5, 188, 0, 1, '5', '2019-2020', 'Electrical and Electronic Engineering (Q4); Electrochemistry (Q4); Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (21348, 'Erudition and the Republic of Letters', 24055050, 0.125, 'Q2', 3, 9, 709, 7, 39, '16', '2016-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Communication (Q4); Education (Q4)'), (21349, 'European Journal of Case Reports in Internal ', 22842594, 0.125, 'Q4', 1, 0, 0, 0, 1, '7', '2015-2017', 'Internal Medicine (Q4)'), (21350, 'Fangzhi Gaoxiao Jichukexue Xuebao', 10068341, 0.125, 'Q4', 5, 20, 442, 7, 103, '1', '1999-2017, 2019', 'Polymers and Plastics (Q4)'), (21351, 'Fizyoterapi Rehabilitasyon', 13008757, 0.125, 'Q4', 9, 0, 0, 5, 18, '18', '2002-2018', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (21352, 'Geoscience Data Journal', 20496060, 0.125, 'Q4', 11, 24, 1100, 76, 1, '2', '2015-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (21353, 'Geothermal Energy Science', 2195478, 0.125, 'Q4', 6, 0, 0, 0, 1, '5', '2013-2017', 'Economic Geology (Q4); Geochemistry and Petrology (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (21354, 'Geschichte und Gesellschaft', 340613, 0.125, 'Q2', 17, 26, 1206, 15, 72, '5', '1982, 1985, 1988, 1999-2012, 2014-2020', 'History (Q2); Linguistics and Language (Q3)'), (21355, 'Global Media Journal, Canadian Edition', 1918591, 0.125, 'Q4', 5, 0, 0, 0, 1, '9', '2013-2017', 'Communication (Q4)'), (21356, 'Gongneng Cailiao/Journal of Functional Materi', 10019731, 0.125, 'Q4', 17, 375, 9995, 298, 1380, '1', '1993-2020', 'Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4)'), (21357, 'He-Huaxue yu Fangshe Huaxue/Journal of Nuclea', 2539950, 0.125, 'Q4', 8, 69, 2012, 40, 189, '1', '1998, 2000-2020', 'Chemistry (miscellaneous) (Q4); Nuclear and High Energy Physics (Q4)'), (21358, 'HIV Nursing', 14747359, 0.125, 'Q4', 5, 17, 359, 13, 28, '3', '2006-2008, 2015-2016, 2018-2020', 'Advanced and Specialized Nursing (Q4)'), (21359, 'Huagong Jinzhan/Chemical Industry and Enginee', 10006613, 0.125, 'Q4', 5, 0, 0, 0, 1, '1', '2016-2017', 'Chemical Engineering (miscellaneous) (Q4); Process Chemistry and Technology (Q4)'), (21360, 'Infant', 17451205, 0.125, 'Q4', 1, 0, 0, 0, 1, '3', '2016-2017', 'Pediatrics (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (21361, 'International Insolvency Review', 10991107, 0.125, 'Q3', 7, 34, 0, 12, 46, '3', '1990-1991, 1993-2020', 'Law (Q3); Finance (Q4)'), (21362, 'International Journal of Electronic Healthcar', 17418461, 0.125, 'Q4', 22, 5, 263, 16, 32, '3', '2004-2015, 2019', 'Health Informatics (Q4); Health Policy (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (21363, 'International Journal of Environment and Heal', 17434963, 0.125, 'Q4', 16, 5, 236, 12, 39, '3', '2007-2014', 'Business, Management and Accounting (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (21364, 'International Journal of Information Technolo', 14614111, 0.125, 'Q4', 15, 22, 813, 30, 75, '3', '2002-2014', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Hardware and Architecture (Q4); Software (Q4)'), (21365, 'International Journal of Management and Busin', 22287019, 0.125, 'Q4', 7, 0, 0, 40, 107, '15', '2015-2019', 'Business and International Management (Q4); Marketing (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)'), (21366, 'International Journal of Marketing Semiotics', 21952280, 0.125, 'Q3', 3, 5, 192, 3, 5, '5', '2013-2018', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4); Marketing (Q4)'), (21367, 'International Journal of Microwave Science an', 16875826, 0.125, 'Q4', 11, 0, 0, 0, 1, '32', '2011-2017', 'Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Radiation (Q4)'), (21368, 'International Journal of Peptide and Protein ', 3678377, 0.125, 'Q4', 25, 0, 0, 0, 1, '3', '1972-1996, 2017', 'Biochemistry (Q4)'), (21369, 'International Nano Letters', 22285326, 0.125, 'Q4', 1, 0, 0, 0, 1, '2', '2014, 2019', 'Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4); Pharmaceutical Science (Q4)'), (21370, 'Iranian Journal of War and Public Health', 20082630, 0.125, 'Q4', 1, 10, 383, 4, 32, '15', '2019-2020', 'Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (21371, 'Issues in Science and Technology', 7485492, 0.125, 'Q4', 29, 0, 0, 2, 1, '2', '1985-1999, 2001-2016, 2018-2019', 'Multidisciplinary (Q4)'), (21372, 'Italian Journal of Gender-Specific Medicine', 24217212, 0.125, 'Q4', 3, 24, 839, 14, 62, '7', '2017-2020', 'Gender Studies (Q4)'), (21373, 'Itinerario', 20412827, 0.125, 'Q2', 14, 23, 1183, 19, 72, '3', '1977-2020', 'History (Q2); Political Science and International Relations (Q4)'), (21374, 'Izvestiya Rossiiskaya Akademii Nauk, Seriya G', 3732444, 0.125, 'Q4', 9, 0, 0, 0, 1, '10', '1978-1992, 1995-2011, 2016-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (21375, 'Japanese Journal of Legal Medicine', 471887, 0.125, 'Q4', 14, 0, 0, 0, 1, '6', '1961-2015, 2018', 'Health Policy (Q4); Law (Q4); Medicine (miscellaneous) (Q4)'), (21376, 'JMM Case Reports', 20533721, 0.125, 'Q4', 5, 0, 0, 0, 1, '3', '2016-2017', 'Microbiology (Q4); Microbiology (medical) (Q4)'), (21377, 'JOR Spine', 25721143, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2019', 'Orthopedics and Sports Medicine (Q4)'), (21378, 'Journal of Chinese Linguistics', 913723, 0.125, 'Q3', 13, 0, 0, 17, 55, '2', '1996-2019', 'Arts and Humanities (miscellaneous) (Q3); Linguistics and Language (Q3)'), (21379, 'Journal of Clinical and Translational Science', 20598661, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2019', 'Medicine (miscellaneous) (Q4)'), (21380, 'Journal of Clinical Interventional Radiology ', 24564869, 0.125, 'Q4', 0, 0, 0, 0, 1, '5', '2019', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (21381, 'Journal of Corrosion Science and Engineering', 14668858, 0.125, 'Q4', 10, 16, 479, 6, 45, '3', '1997-2004, 2006, 2008-2020', 'Materials Chemistry (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)'), (21382, 'Journal of Hepato-Biliary-Pancreatic Surgery', 9441166, 0.125, 'Q4', 76, 0, 0, 0, 1, '5', '1993-2010, 2013-2014, 2017-2020', 'Hepatology (Q4); Surgery (Q4)'), (21383, 'Journal of Inborn Errors of Metabolism and Sc', 23264098, 0.125, 'Q4', 5, 0, 0, 0, 1, '2', '2015-2017', 'Endocrinology, Diabetes and Metabolism (Q4); Genetics (clinical) (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (21384, 'Journal of Information Systems and Telecommun', 23221437, 0.125, 'Q4', 6, 18, 596, 25, 86, '15', '2013-2020', 'Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Computer Science Applications (Q4); Computer Vision and Pattern Recognition (Q4); Information Systems (Q4)'), (21385, 'Journal of Integrated Circuits and Systems', 18071953, 0.125, 'Q4', 11, 45, 916, 13, 43, '14', '2007-2020', 'Electrical and Electronic Engineering (Q4)'), (21386, 'Journal of Mines, Metals and Fuels', 222755, 0.125, 'Q4', 11, 35, 528, 26, 343, '4', '1968-1990, 1993-2020', 'Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (21387, 'Journal of Pediatric Surgical Nursing', 23320249, 0.125, 'Q4', 0, 0, 0, 0, 1, '2', '2019', 'Medical and Surgical Nursing (Q4); Pediatrics (Q4); Surgery (Q4)'), (21388, 'Journal of Pharmaceutical Health Care and Sci', 20550294, 0.125, 'Q3', 7, 27, 638, 0, 1, '3', '2015-2017, 2020', 'Pharmacology (nursing) (Q3); Pharmacology (medical) (Q4)'), (21389, 'Journal of Political and Military Sociology', 472697, 0.125, 'Q4', 19, 0, 0, 0, 1, '2', '1996-2017', 'Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (21390, 'Journal of Postgraduate Medical Institute', 10135472, 0.125, 'Q4', 11, 27, 639, 52, 193, '34', '2005-2020', 'Medicine (miscellaneous) (Q4)'), (21391, 'Journal of the Siam Society', 304226, 0.125, 'Q3', 0, 0, 0, 0, 1, '40', '2019', 'Anthropology (Q3); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)'), (21392, 'Journal of Wrist Surgery', 21633924, 0.125, 'Q4', 1, 0, 0, 0, 1, '5', '2019', 'Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (21393, 'Jung Journal: Culture and Psyche', 19342039, 0.125, 'Q2', 6, 51, 588, 11, 90, '3', '2007-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Applied Psychology (Q4)'), (21394, 'Jurnal Ilmu Sosial dan Ilmu Politik', 14104946, 0.125, 'Q4', 1, 12, 489, 0, 1, '21', '2019-2020', 'Sociology and Political Science (Q4)'), (21395, 'Korean Journal of Dermatology', 4944739, 0.125, 'Q4', 13, 80, 935, 24, 473, '13', '1972-2020', 'Dermatology (Q4)'), (21396, 'Lawyer Quarterly', 18058396, 0.125, 'Q3', 3, 43, 242, 14, 86, '31', '2017-2020', 'Law (Q3)'), (21397, 'Lecture Notes of TICMI', 15120511, 0.125, 'Q4', 1, 0, 0, 0, 1, '81', '2016-2017, 2019', 'Applied Mathematics (Q4); Information Systems (Q4); Mathematics (miscellaneous) (Q4)'), (21398, 'Libri et Liberi', 18483488, 0.125, 'Q2', 1, 9, 317, 5, 36, '58', '2015-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (21399, 'Magyar Allatorvosok Lapja', 25004, 0.125, 'Q4', 10, 73, 2610, 21, 163, '50', '1950, 1996-2020', 'Veterinary (miscellaneous) (Q4)'), (21400, 'Marvels and Tales', 15214281, 0.125, 'Q2', 4, 24, 455, 6, 48, '2', '2014-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Anthropology (Q4)'), (21401, 'Medecine des Maladies Metaboliques', 19572557, 0.125, 'Q4', 10, 118, 2550, 75, 449, '8', '2007-2020', 'Cardiology and Cardiovascular Medicine (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4); Nutrition and Dietetics (Q4)'), (21402, 'Medical Photonics', 22138846, 0.125, 'Q4', 25, 0, 0, 0, 1, '5', '2015, 2018', 'Dermatology (Q4); Surgery (Q4)'), (21403, 'Molekul', 19079761, 0.125, 'Q4', 2, 30, 743, 10, 22, '21', '2019-2020', 'Biochemistry (Q4); Biomaterials (Q4); Chemistry (miscellaneous) (Q4); Environmental Chemistry (Q4)'), (21404, 'Multiple Sclerosis International', 20902654, 0.125, 'Q4', 6, 0, 0, 0, 1, '2', '2014-2017', 'Neurology (clinical) (Q4)'), (21405, 'NAFO Scientific Council Studies', 2506432, 0.125, 'Q4', 13, 0, 0, 0, 1, '9', '1993-2003, 2005, 2007-2010, 2013-2015, 2017', 'Aquatic Science (Q4); Ecology (Q4); Oceanography (Q4)'), (21406, 'Narrative inquiry in bioethics', 21571732, 0.125, 'Q4', 8, 77, 0, 42, 227, '2', '2011-2019', 'Medicine (miscellaneous) (Q4)'), (21407, 'Neuroimmunology and Neuroinflammation', 23478659, 0.125, 'Q4', 4, 0, 0, 0, 1, '2', '2015-2016, 2018', 'Immunology (Q4); Neurology (Q4); Neurology (clinical) (Q4)'), (21408, 'Neurologia Argentina', 18530028, 0.125, 'Q4', 5, 48, 1236, 21, 113, '12', '2010-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (21409, 'Neurology and Clinical Neuroscience', 20494173, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2019', 'Neurology (Q4); Neurology (clinical) (Q4)'), (21410, 'Oncology and Therapy', 23661070, 0.125, 'Q4', 0, 0, 0, 0, 1, '19', '2019', 'Oncology (Q4)'), (21411, 'Oncology in Clinical Practice', 24501654, 0.125, 'Q4', 2, 26, 1158, 15, 45, '17', '2019-2020', 'Oncology (Q4)'), (21412, 'Onkourologiya', 19961812, 0.125, 'Q4', 4, 79, 2076, 55, 210, '10', '2016-2020', 'Nephrology (Q4); Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4); Urology (Q4)'), (21413, 'Open Access Surgery', 11787082, 0.125, 'Q4', 1, 0, 0, 0, 1, '41', '2016-2017', 'Anesthesiology and Pain Medicine (Q4); Orthopedics and Sports Medicine (Q4); Surgery (Q4); Transplantation (Q4)'), (21414, 'Open Anesthesiology Journal', 18743218, 0.125, 'Q4', 5, 13, 296, 12, 43, '16', '2010-2020', 'Anesthesiology and Pain Medicine (Q4)'), (21415, 'Open Journal of Hematology', 2075907, 0.125, 'Q4', 0, 0, 0, 0, 1, '34', '2017', 'Hematology (Q4)'), (21416, 'Orbis Scholae', 18024637, 0.125, 'Q4', 6, 11, 470, 9, 59, '31', '2007, 2013-2019', 'Education (Q4)'), (21417, 'Palaeontologia Africana', 788554, 0.125, 'Q4', 26, 0, 0, 0, 1, '27', '1980, 1986-1987, 1993-1995, 1997-2004, 2007-2013, 2015-2016', 'Paleontology (Q4)'), (21418, 'Pharmaceutical Technology in Hospital Pharmac', 2365242, 0.125, 'Q4', 0, 0, 0, 0, 1, '5', '2019', 'Pharmacology (Q4); Pharmacology (medical) (Q4); Pharmacy (Q4)'), (21419, 'Physics of Fluids', 319171, 0.125, 'Q4', 0, 0, 0, 0, 1, '2', '1963, 1965, 1967-1988, 1992', 'Engineering (miscellaneous) (Q4)'), (21420, 'Pneumologia', 20672993, 0.125, 'Q4', 9, 23, 572, 11, 91, '43', '1972-1976, 1999-2020', 'Medicine (miscellaneous) (Q4); Pulmonary and Respiratory Medicine (Q4)'), (21421, 'PORTAL: Journal of Multidisciplinary Internat', 14492490, 0.125, 'Q3', 2, 21, 306, 9, 47, '11', '2017-2019', 'Anthropology (Q3); Cultural Studies (Q3); Demography (Q4)'), (21422, 'Primary Health Care', 2645033, 0.125, 'Q4', 0, 0, 0, 0, 1, '3', '2018', 'Community and Home Care (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (21423, 'Projections', 7621000, 0.125, 'Q2', 6, 0, 0, 0, 1, '2', '2004, 2006-2008, 2010-2011, 2014, 2016-2017', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)'), (21424, 'Radiology Research and Practice', 20901941, 0.125, 'Q4', 5, 0, 0, 0, 1, '32', '2014-2016, 2019', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (21425, 'Rawal Medical Journal', 3035212, 0.125, 'Q4', 9, 245, 4627, 73, 526, '34', '2008-2020', 'Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)'), (21426, 'Religion and Human Rights', 18710328, 0.125, 'Q2', 9, 11, 295, 9, 30, '16', '2006-2019', 'Religious Studies (Q2); Political Science and International Relations (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (21427, 'Results and Problems in Cell Differentiation', 801844, 0.125, 'Q4', 46, 24, 3140, 344, 1, '5', '1972, 1977-1978, 1980, 1986-1987, 1989, 1991-1992, 1994, 1998-2002, 2006-2012, 2014-2019', 'Cell Biology (Q4); Developmental Biology (Q4)'), (21428, 'Revista Colombiana de Cardiologia', 1205633, 0.125, 'Q4', 10, 127, 2927, 70, 360, '47', '2008-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (21429, 'Revista de la Facultad de Ingenieria', 7984065, 0.125, 'Q4', 7, 0, 0, 0, 1, '94', '1994-2015, 2017', 'Earth and Planetary Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (21430, 'Revista Lasallista de Investigacion', 17944449, 0.125, 'Q4', 8, 29, 994, 20, 93, '47', '2011, 2013-2019', 'Multidisciplinary (Q4)'), (21431, 'Revista Musical Chilena', 7176252, 0.125, 'Q2', 4, 29, 632, 5, 48, '45', '2007-2020', 'Music (Q2); Cultural Studies (Q3)'), (21432, 'Revue de Geriatrie', 3977927, 0.125, 'Q4', 13, 0, 0, 0, 1, '8', '1977-2015, 2017', 'Geriatrics and Gerontology (Q4)'), (21433, 'Rhizomata', 21965110, 0.125, 'Q3', 1, 17, 676, 1, 1, '5', '2019-2020', 'Philosophy (Q3); History and Philosophy of Science (Q4)'), (21434, 'Ricerche di Psicologia', 3916081, 0.125, 'Q4', 10, 33, 2121, 16, 89, '7', '2000, 2002-2020', 'Psychology (miscellaneous) (Q4)'), (21435, 'Rivista di Filosofia del Diritto', 2280482, 0.125, 'Q3', 3, 13, 622, 12, 79, '7', '2016-2020', 'Law (Q3); Philosophy (Q3)'), (21436, 'SAGE Open Medicine', 20503121, 0.125, 'Q4', 0, 1, 16, 0, 1, '3', '2019', 'Medicine (miscellaneous) (Q4)'), (21437, 'SAMPE Journal', 911062, 0.125, 'Q4', 26, 0, 0, 6, 24, '2', '1969-1971, 1974-2017', 'Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (21438, 'Saudi Journal of Medicine and Medical Science', 23214856, 0.125, 'Q4', 2, 0, 0, 0, 1, '4', '2014-2015, 2019', 'Medicine (miscellaneous) (Q4)'), (21439, 'Scriblerian and the Kit-Cats', 369640, 0.125, 'Q2', 0, 0, 0, 0, 1, '2', '2009, 2011-2012, 2018', 'Literature and Literary Theory (Q2)'), (21440, 'Siriraj Medical Journal', 2629995, 0.125, 'Q4', 2, 76, 1857, 22, 159, '40', '2018-2020', 'Medicine (miscellaneous) (Q4)'), (21441, 'Slovo (Leeds)', 9546839, 0.125, 'Q3', 4, 7, 29, 3, 20, '3', '2012-2019', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (21442, 'South African Historical Journal', 17261686, 0.125, 'Q2', 16, 28, 0, 22, 88, '3', '1969-2020', 'History (Q2)'), (21443, 'Space Research Today', 17529298, 0.125, 'Q4', 2, 0, 0, 0, 1, '16', '2007-2008, 2012-2013, 2017, 2019', 'Aerospace Engineering (Q4); Space and Planetary Science (Q4)'), (21444, 'SpringerPlus', 21931801, 0.125, 'Q4', 52, 0, 0, 0, 1, '5', '2012-2017', 'Multidisciplinary (Q4)'), (21445, 'State legislatures', 1476041, 0.125, 'Q4', 5, 0, 0, 0, 1, '2', '1999-2017', 'Medicine (miscellaneous) (Q4)'), (21446, 'Studies in Slavic and General Linguistics', 1690124, 0.125, 'Q3', 4, 0, 0, 0, 1, '16', '2011, 2014, 2018', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21447, 'Studies in the Novel', 393827, 0.125, 'Q2', 14, 22, 753, 21, 89, '2', '2003-2020', 'Literature and Literary Theory (Q2)'), (21448, 'Studi Secenteschi', 816248, 0.125, 'Q2', 4, 11, 0, 0, 1, '7', '2002-2013, 2018-2019', 'History (Q2); Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (21449, 'Taiwan Water Conservancy', 4921505, 0.125, 'Q4', 7, 24, 736, 18, 99, '22', '2011-2020', 'Environmental Engineering (Q4); Water Science and Technology (Q4)'), (21450, 'Turkish Journal of Physiotherapy and Rehabili', 26514451, 0.125, 'Q4', 1, 36, 1047, 6, 42, '18', '2018-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (21451, 'Tydskrift vir Geesteswetenskappe', 414751, 0.125, 'Q3', 6, 63, 1948, 11, 167, '27', '2009-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (21452, 'Yi chuan = Hereditas / Zhongguo yi chuan xue ', 2539772, 0.125, 'Q4', 16, 84, 0, 0, 1, '1', '2004-2016, 2020', 'Medicine (miscellaneous) (Q4)'), (21453, 'Zeitschrift fur Historische Forschung', 18655599, 0.125, 'Q2', 9, 6, 594, 7, 27, '5', '1989, 1999, 2001, 2003-2019', 'History (Q2)'), (21454, 'Zhong yao cai = Zhongyaocai = Journal of Chin', 10014454, 0.125, 'Q4', 21, 0, 0, 0, 1, '1', '1997-2017', 'Medicine (miscellaneous) (Q4)'), (21455, 'Academica Turistica', 23354194, 0.124, 'Q4', 3, 17, 850, 14, 32, '60', '2018-2020', 'Management of Technology and Innovation (Q4); Social Sciences (miscellaneous) (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (21456, 'Acta Paedagogica Vilnensia', 13925016, 0.124, 'Q4', 1, 29, 986, 4, 20, '69', '2019-2020', 'Education (Q4)'), (21457, 'Acta Scientiarum Language and Culture', 19834683, 0.124, 'Q2', 3, 41, 1020, 6, 102, '14', '2008-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21458, 'Advances in Optical Technologies', 16876407, 0.124, 'Q4', 25, 0, 0, 4, 4, '32', '2008, 2010-2017', 'Atomic and Molecular Physics, and Optics (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (21459, 'Agronomy Mesoamerican', 22153608, 0.124, 'Q4', 2, 60, 2332, 11, 60, '95', '2019-2020', 'Agronomy and Crop Science (Q4); Food Science (Q4); Soil Science (Q4)'), (21460, 'Alternative Law Journal', 1037969, 0.124, 'Q4', 10, 71, 0, 40, 141, '2', '2009-2020', 'Law (Q4); Sociology and Political Science (Q4)'), (21461, 'Anuario Filosofico', 665215, 0.124, 'Q3', 4, 11, 390, 6, 60, '12', '2000-2020', 'Philosophy (Q3)'), (21462, 'Atenea', 7161840, 0.124, 'Q3', 6, 37, 925, 11, 62, '45', '1979, 1984, 2000-2001, 2007-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (21463, 'Beijing Huagong Daxue Xuebao (Ziran Kexueban)', 16714628, 0.124, 'Q4', 11, 102, 1945, 63, 344, '1', '2003-2020', 'Chemical Engineering (miscellaneous) (Q4)'), (21464, 'Ben Jonson Journal', 10793453, 0.124, 'Q2', 4, 17, 498, 5, 29, '3', '2009-2020', 'Literature and Literary Theory (Q2)'), (21465, 'BioScope: South Asian Screen Studies', 9749276, 0.124, 'Q2', 8, 9, 193, 6, 35, '2', '2010-2019', 'Visual Arts and Performing Arts (Q2); Communication (Q4)'), (21466, 'Boletim Centro de Pesquisa de Processamento d', 19839774, 0.124, 'Q4', 8, 5, 214, 9, 41, '14', '2009-2018', 'Animal Science and Zoology (Q4)'), (21467, 'Cahiers d Etudes Africaines', 80055, 0.124, 'Q3', 17, 37, 1455, 13, 107, '8', '1975, 1977, 1980, 1983-2019', 'History (Q3); Development (Q4); Geography, Planning and Development (Q4)'), (21468, 'Cattle Practice', 9691251, 0.124, 'Q4', 11, 0, 0, 2, 14, '3', '2005-2017', 'Animal Science and Zoology (Q4)'), (21469, 'Community Eye Health Journal', 9536833, 0.124, 'Q4', 22, 41, 239, 54, 110, '3', '1988, 1996-2020', 'Ophthalmology (Q4)'), (21470, 'Diacovensia', 13302655, 0.124, 'Q2', 1, 28, 1313, 7, 85, '58', '2017-2020', 'Religious Studies (Q2)'), (21471, 'Elelmiszervizsgalati Kozlemenyek', 4229576, 0.124, 'Q4', 3, 27, 867, 3, 69, '50', '2008-2020', 'Food Science (Q4)'), (21472, 'Espacio, Tiempo y Forma, Serie III: Historia ', 2149745, 0.124, 'Q2', 1, 21, 1304, 6, 24, '12', '2018-2020', 'Classics (Q2); History (Q3)'), (21473, 'Estudos Ibero-Americanos', 1980864, 0.124, 'Q3', 5, 51, 1816, 13, 145, '14', '1994, 2002-2020', 'History (Q3)'), (21474, 'Etudes Germaniques', 142115, 0.124, 'Q2', 3, 39, 509, 6, 102, '8', '1971, 2002-2020', 'Literature and Literary Theory (Q2)'), (21475, 'First World War Studies', 19475039, 0.124, 'Q3', 8, 4, 175, 10, 40, '3', '2010-2019', 'History (Q3)'), (21476, 'Foucault Studies', 18325203, 0.124, 'Q3', 23, 10, 224, 20, 53, '25', '2004-2005, 2007-2019', 'Philosophy (Q3)'), (21477, 'Genre', 166928, 0.124, 'Q2', 9, 7, 291, 7, 41, '2', '2002-2019', 'Literature and Literary Theory (Q2)'), (21478, 'Global Jurist', 19342640, 0.124, 'Q4', 7, 47, 2405, 16, 62, '5', '2007-2020', 'Law (Q4); Political Science and International Relations (Q4)'), (21479, 'History of Political Thought', 143781, 0.124, 'Q3', 22, 19, 0, 19, 86, '3', '1984, 1987, 1996-2020', 'History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)'), (21480, 'International Journal of Interdisciplinary En', 23291621, 0.124, 'Q4', 3, 2, 35, 4, 12, '2', '2013-2019', 'Environmental Science (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (21481, 'International Journal of Learning in Higher E', 23277955, 0.124, 'Q4', 4, 6, 205, 7, 28, '2', '2013-2019', 'Education (Q4)'), (21482, 'International Journal of Space Science and En', 20488459, 0.124, 'Q4', 1, 10, 325, 5, 14, '3', '2019', 'Aerospace Engineering (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4); Space and Planetary Science (Q4)'), (21483, 'International Journal of Visual Design', 2325159, 0.124, 'Q2', 3, 7, 193, 4, 28, '2', '2013-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3)'), (21484, 'International Journal of Web Engineering and ', 17419212, 0.124, 'Q4', 17, 15, 532, 18, 48, '3', '2003-2013, 2020', 'Computer Networks and Communications (Q4); Hardware and Architecture (Q4); Information Systems (Q4)'), (21485, 'International Journal on Disability and Human', 21910367, 0.124, 'Q4', 24, 28, 554, 21, 139, '5', '1999-2003, 2005-2019', 'Advanced and Specialized Nursing (Q4); Geriatrics and Gerontology (Q4); Psychiatry and Mental Health (Q4); Rehabilitation (Q4); Sensory Systems (Q4); Speech and Hearing (Q4)'), (21486, 'Journal of Christian nursing : a quarterly pu', 7432550, 0.124, 'Q4', 10, 105, 0, 49, 305, '2', '1984-2020', 'Medicine (miscellaneous) (Q4)'), (21487, 'Journal of Computational and Theoretical Nano', 15461955, 0.124, 'Q4', 52, 135, 2747, 930, 2156, '2', '2004-2020', 'Chemistry (miscellaneous) (Q4); Computational Mathematics (Q4); Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Materials Science (miscellaneous) (Q4); Nanoscience and Nanot'), (21488, 'Journal of Regional Security', 2217995, 0.124, 'Q4', 4, 9, 667, 6, 24, '55', '2012-2020', 'Political Science and International Relations (Q4); Safety Research (Q4)'), (21489, 'Journal of Religion and Violence', 21596808, 0.124, 'Q2', 1, 8, 667, 6, 12, '2', '2019', 'Religious Studies (Q2); Law (Q4); Sociology and Political Science (Q4)'), (21490, 'Journal of the British Archeological Associat', 17476704, 0.124, 'Q2', 6, 12, 0, 1, 22, '3', '1980-1995, 2002-2020', 'Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21491, 'Journal of the History of Ideas', 225037, 0.124, 'Q3', 32, 30, 0, 23, 85, '2', '1970-2020', 'Philosophy (Q3)'), (21492, 'JOURNAL of THE JAPANESE FORESTRY SOCIETY, The', 21485, 0.124, 'Q4', 15, 29, 646, 20, 114, '6', '1934-1944, 1948-2020', 'Forestry (Q4)'), (21493, 'Journal of the Medical Association of Thailan', 1252208, 0.124, 'Q4', 46, 364, 7669, 159, 1205, '40', '1970-2020', 'Medicine (miscellaneous) (Q4)'), (21494, 'Journal of Tourism History', 17551838, 0.124, 'Q3', 9, 16, 0, 12, 39, '3', '2009-2020', 'Cultural Studies (Q3); History (Q3); Geography, Planning and Development (Q4); Tourism, Leisure and Hospitality Management (Q4); Transportation (Q4)'), (21495, 'Lingua Posnaniensis', 794740, 0.124, 'Q3', 4, 2, 81, 8, 52, '5', '2009-2018, 2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21496, 'Logos: Revista de Linguistica, Filosofia y Li', 7167520, 0.124, 'Q2', 1, 28, 898, 3, 26, '45', '2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3); Philosophy (Q3)'), (21497, 'Medical News of North Caucasus', 20738137, 0.124, 'Q4', 7, 144, 2485, 78, 440, '10', '2014-2020', 'Medicine (miscellaneous) (Q4)'), (21498, 'Mediterranean Studies', 1074164, 0.124, 'Q3', 6, 16, 378, 4, 26, '3', '2001, 2007-2010, 2012-2020', 'Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Sociology and Political Science (Q4)'), (21499, 'Mexican Journal of Biotechnology', 24486590, 0.124, 'Q4', 3, 19, 1094, 22, 79, '30', '2016-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Molecular Biology (Q4)'), (21500, 'Millennial Asia', 23217081, 0.124, 'Q3', 4, 22, 1135, 13, 44, '2', '2014-2020', 'Cultural Studies (Q3); Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21501, 'Minnesota Review', 265667, 0.124, 'Q2', 8, 22, 256, 7, 57, '2', '2002-2007, 2009-2019', 'Literature and Literary Theory (Q2)'), (21502, 'Museon', 7716494, 0.124, 'Q2', 10, 8, 302, 5, 48, '24', '1972, 1976-1977, 1996-2019', 'Literature and Literary Theory (Q2); Religious Studies (Q2); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21503, 'Notes', 1534150, 0.124, 'Q2', 10, 12, 455, 8, 36, '2', '2002-2020', 'Music (Q2); Library and Information Sciences (Q4)'), (21504, 'Obstetrics, Gynecology and Reproduction', 23137347, 0.124, 'Q4', 4, 65, 1784, 9, 24, '10', '2019-2020', 'Embryology (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (21505, 'Ohio Journal of Sciences', 300950, 0.124, 'Q4', 17, 8, 283, 4, 21, '2', '1945-1949, 1973-1974, 1979-1983, 1985, 1987, 1989, 1991-2010, 2013-2020', 'Multidisciplinary (Q4)'), (21506, 'Open Pain Journal', 18763863, 0.124, 'Q4', 11, 7, 324, 5, 18, '16', '2010-2020', 'Anesthesiology and Pain Medicine (Q4); Neuroscience (miscellaneous) (Q4)'), (21507, 'Ornitologia Colombiana', 17940915, 0.124, 'Q4', 8, 50, 0, 12, 23, '47', '2009-2013, 2015-2017, 2019', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (21508, 'Paedagogica Historica', 1477674, 0.124, 'Q3', 18, 84, 0, 41, 153, '3', '1961-1985, 1990-1999, 2001-2004, 2006-2020', 'History (Q3); Education (Q4)'), (21509, 'Problemy Endokrinologii', 3759660, 0.124, 'Q4', 5, 68, 545, 51, 166, '10', '1967-1995, 2016-2019', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)'), (21510, 'Proceedings of the International Geometry Cen', 24098906, 0.124, 'Q4', 2, 18, 316, 11, 23, '44', '2019-2020', 'Analysis (Q4); Applied Mathematics (Q4); Geometry and Topology (Q4)'), (21511, 'Przeklady Literatur Slowianskich', 18999417, 0.124, 'Q2', 1, 29, 650, 3, 24, '17', '2018-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21512, 'Psychotherapy and Politics International', 14769263, 0.124, 'Q4', 6, 35, 940, 16, 60, '5', '2013-2020', 'Multidisciplinary (Q4)'), (21513, 'Quality Progress', 33524, 0.124, 'Q4', 33, 56, 255, 27, 238, '2', '1974, 1978-2020', 'Industrial and Manufacturing Engineering (Q4); Management Science and Operations Research (Q4); Safety, Risk, Reliability and Quality (Q4); Strategy and Management (Q4)'), (21514, 'Revista Cubana de Estomatologia', 347507, 0.124, 'Q4', 7, 74, 1544, 24, 137, '85', '1973-1978, 1982-1989, 1996-2002, 2005-2020', 'Dentistry (miscellaneous) (Q4)'), (21515, 'Revista de Demografia Historica', 1696702, 0.124, 'Q3', 5, 14, 749, 4, 23, '12', '2018-2019', 'History (Q3); Demography (Q4)'), (21516, 'Revista de la Academia Colombiana de Ciencias', 23824980, 0.124, 'Q4', 2, 81, 3345, 23, 83, '47', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneou'), (21517, 'Revue d Economie du Developpement', 17821517, 0.124, 'Q4', 8, 18, 801, 10, 39, '24', '1993-2019', 'Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (21518, 'Revue du Nord', 352624, 0.124, 'Q3', 6, 31, 2013, 8, 114, '8', '1969-1970, 1972, 1974, 1977-1979, 1981-1985, 1988, 1999, 2001-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)'), (21519, 'Rozhledy v Chirurgii', 18054579, 0.124, 'Q4', 12, 6, 0, 45, 245, '31', '1950-1952, 1954-2020', 'Medicine (miscellaneous) (Q4)'), (21520, 'Santander Art and Culture Law Review', 2450050, 0.124, 'Q2', 4, 28, 964, 6, 76, '17', '2015-2019', 'Visual Arts and Performing Arts (Q2); Conservation (Q3); Cultural Studies (Q3); Law (Q4)'), (21521, 'Science, Engineering and Health Studies', 26300087, 0.124, 'Q4', 2, 20, 613, 12, 32, '40', '2018-2020', 'Multidisciplinary (Q4)'), (21522, 'Teologia y Vida', 7176295, 0.124, 'Q2', 5, 17, 692, 13, 68, '45', '2007-2020', 'Religious Studies (Q2)'), (21523, 'Zeitschrift fur Gefassmedizin', 18129501, 0.124, 'Q4', 5, 16, 366, 3, 25, '28', '2005-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (21524, 'Acta Antiqua Academiae Scientiarum Hungaricae', 445975, 0.123, 'Q2', 4, 48, 1192, 5, 85, '50', '1965, 2007-2018', 'Classics (Q2); Archeology (Q3); Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21525, 'Adiktologie', 12133841, 0.123, 'Q4', 6, 9, 279, 17, 64, '31', '2009-2019', 'Psychiatry and Mental Health (Q4)'), (21526, 'African Review of Physics', 22236589, 0.123, 'Q4', 10, 19, 646, 11, 58, '73', '2011-2019', 'Physics and Astronomy (miscellaneous) (Q4)'), (21527, 'Aide Soignante', 11663413, 0.123, 'Q4', 2, 113, 425, 4, 257, '8', '2002-2020', 'Nursing (miscellaneous) (Q4)'), (21528, 'American Political Thought', 21611599, 0.123, 'Q4', 4, 23, 1218, 8, 67, '2', '2015-2020', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21529, 'Analiza i Egzystencja', 17349923, 0.123, 'Q3', 2, 14, 487, 4, 66, '17', '2016-2020', 'Philosophy (Q3)'), (21530, 'Antiquite Tardive', 12507334, 0.123, 'Q3', 12, 23, 1174, 6, 52, '24', '2003-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)'), (21531, 'Anuario Calderoniano', 18888046, 0.123, 'Q2', 3, 19, 709, 5, 48, '12', '2013-2015, 2017-2019', 'Literature and Literary Theory (Q2)'), (21532, 'Aramaic Studies', 17455227, 0.123, 'Q2', 8, 12, 694, 4, 38, '16', '2003-2019', 'Religious Studies (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21533, 'Archives of Hydroengineering and Environmenta', 12313726, 0.123, 'Q4', 13, 5, 104, 12, 35, '17', '1994-2010, 2012-2019', 'Civil and Structural Engineering (Q4); Water Science and Technology (Q4)'), (21534, 'Arte Cristiana', 43400, 0.123, 'Q2', 4, 57, 1957, 3, 148, '7', '2002-2019', 'Religious Studies (Q2); Visual Arts and Performing Arts (Q2)'), (21535, 'Artnodes', 16955951, 0.123, 'Q2', 4, 26, 595, 15, 82, '12', '2009-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Computer Graphics and Computer-Aided Design (Q4); Computer Science Applications (Q4)'), (21536, 'Asian Philosophy', 9552367, 0.123, 'Q2', 14, 24, 630, 10, 72, '3', '1991-2020', 'Religious Studies (Q2); Philosophy (Q3)'), (21537, 'Ataturk Universitesi Veteriner Bilimleri Derg', 21479615, 0.123, 'Q4', 3, 13, 413, 22, 138, '18', '2016-2020', 'Veterinary (miscellaneous) (Q4)'), (21538, 'Australian Journal of Politics and History', 49522, 0.123, 'Q3', 23, 54, 0, 31, 107, '3', '1955-2020', 'History (Q3); Political Science and International Relations (Q4)'), (21539, 'Balkanistic Forum', 13103970, 0.123, 'Q2', 1, 39, 628, 5, 129, '61', '2015-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Anthropology (Q4)'), (21540, 'Biblical Theology Bulletin', 19457596, 0.123, 'Q2', 13, 22, 812, 5, 54, '2', '1973-2020', 'Religious Studies (Q2)'), (21541, 'Boundary 2', 1903659, 0.123, 'Q2', 23, 42, 1285, 40, 119, '2', '2002-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)'), (21542, 'Casopis pro Pravni Vedu a Praxi', 18052789, 0.123, 'Q4', 1, 33, 1410, 4, 37, '31', '2019-2020', 'Law (Q4)'), (21543, 'Chikei', 3891755, 0.123, 'Q4', 13, 12, 354, 3, 51, '6', '1980-1992, 1994-2020', 'Earth-Surface Processes (Q4)'), (21544, 'Classical Receptions Journal', 17595142, 0.123, 'Q2', 6, 24, 1204, 10, 67, '3', '2011-2020', 'Classics (Q2); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)'), (21545, 'Cocuk Cerrahisi Dergisi', 13055194, 0.123, 'Q4', 4, 14, 297, 2, 83, '18', '2005-2019', 'Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)'), (21546, 'Codrul Cosminului', 1224032, 0.123, 'Q2', 2, 22, 415, 6, 65, '43', '2013-2020', 'Religious Studies (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)'), (21547, 'Critica del Testo', 11271140, 0.123, 'Q3', 2, 6, 0, 1, 71, '7', '2012-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21548, 'CR: The New Centennial Review', 1532687, 0.123, 'Q2', 18, 19, 459, 12, 87, '2', '2002-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Sociology and Political Science (Q4)'), (21549, 'Der Gynakologe', 175994, 0.123, 'Q4', 12, 160, 3517, 47, 366, '5', '1973-2020', 'Obstetrics and Gynecology (Q4)'), (21550, 'Drug Discovery World', 14694344, 0.123, 'Q4', 12, 0, 0, 4, 51, '3', '2004-2018', 'Drug Discovery (Q4)'), (21551, 'Eastern Journal of Medicine', 13010883, 0.123, 'Q4', 10, 99, 2344, 46, 221, '18', '2002-2020', 'Medicine (miscellaneous) (Q4)'), (21552, 'English Academy Review', 10131752, 0.123, 'Q2', 8, 12, 245, 7, 44, '3', '1983-1985, 1987-2020', 'Literature and Literary Theory (Q2); History (Q3); Language and Linguistics (Q3)'), (21553, 'Esprit Createur', 140767, 0.123, 'Q2', 7, 47, 922, 21, 126, '2', '2002-2020', 'Literature and Literary Theory (Q2)'), (21554, 'Estudios de Economia Aplicada', 16975731, 0.123, 'Q4', 6, 221, 7908, 14, 44, '12', '2012, 2016, 2019-2020', 'Economics and Econometrics (Q4)'), (21555, 'Etnografia polska', 711861, 0.123, 'Q3', 3, 19, 465, 10, 36, '17', '1983, 2001, 2011-2018', 'Cultural Studies (Q3); Anthropology (Q4)'), (21556, 'Etnografica', 21822891, 0.123, 'Q3', 12, 35, 1429, 21, 92, '26', '2006-2020', 'Cultural Studies (Q3); Anthropology (Q4)'), (21557, 'Experiment', 2211730, 0.123, 'Q2', 3, 7, 30, 3, 51, '16', '1996-1998, 2000, 2002-2004, 2006, 2008-2009, 2011-2014, 2016-2019', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)'), (21558, 'Fizjoterapia Polska', 16420136, 0.123, 'Q4', 9, 49, 1349, 5, 149, '17', '2002-2003, 2005-2012, 2014-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (21559, 'Folia Pharmacologica Japonica', 155691, 0.123, 'Q4', 18, 98, 1537, 40, 260, '6', '1944, 1947-1948, 1951-1956, 1958-2020', 'Pharmacology (Q4)'), (21560, 'Fontes Artis Musicae', 156191, 0.123, 'Q3', 5, 14, 588, 4, 46, '2', '2002-2020', 'Music (Q3); Library and Information Sciences (Q4)'), (21561, 'Forstarchiv', 3004112, 0.123, 'Q4', 10, 0, 0, 1, 14, '5', '1974, 1976, 1979-1981, 1984-1989, 2011-2017', 'Ecology (Q4); Forestry (Q4); Nature and Landscape Conservation (Q4)'), (21562, 'Gesnerus', 169161, 0.123, 'Q4', 8, 0, 0, 5, 13, '19', '1946-2018', 'Health (social science) (Q4); History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)'), (21563, 'Histoire Epistemologie Langage', 7508069, 0.123, 'Q3', 3, 20, 706, 8, 53, '8', '2011-2013, 2015-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Philosophy (Q3); Psychology (miscellaneous) (Q4)'), (21564, 'Historical Journal of Film, Radio and Televis', 1439685, 0.123, 'Q2', 16, 49, 0, 16, 113, '3', '1981-2020', 'Visual Arts and Performing Arts (Q2); History (Q3); Communication (Q4)'), (21565, 'International Journal of Business and Emergin', 17536227, 0.123, 'Q4', 2, 24, 1465, 7, 19, '3', '2020', 'Business and International Management (Q4); Economics and Econometrics (Q4); Marketing (Q4); Strategy and Management (Q4)'), (21566, 'International Journal of Hospitality and Tour', 9746250, 0.123, 'Q4', 2, 19, 937, 7, 33, '4', '2018-2020', 'Tourism, Leisure and Hospitality Management (Q4)'), (21567, 'International Journal of Men s Health', 19330278, 0.123, 'Q4', 24, 0, 0, 2, 6, '2', '2006-2017', 'Public Health, Environmental and Occupational Health (Q4)'), (21568, 'International Journal of Nanoparticles', 17532515, 0.123, 'Q4', 14, 21, 598, 29, 59, '3', '2009-2014', 'Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Nanoscience and Nanotechnology (Q4)'), (21569, 'Journal of Agriculture of the University of P', 41994, 0.123, 'Q4', 10, 6, 520, 6, 46, '105', '1976, 1996-2018', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4)'), (21570, 'Journal of American Culture, The', 1542734, 0.123, 'Q2', 3, 23, 675, 14, 62, '3', '2016-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3)'), (21571, 'Journal of Ecumenical Studies', 220558, 0.123, 'Q2', 5, 33, 1064, 6, 106, '2', '1979, 2011-2020', 'Religious Studies (Q2)'), (21572, 'Journal of Endourology Case Reports', 23799889, 0.123, 'Q4', 1, 151, 658, 2, 31, '2', '2018-2020', 'Urology (Q4)'), (21573, 'Journal of Engineering Research', 17266009, 0.123, 'Q4', 9, 13, 448, 21, 47, '79', '2009-2020', 'Engineering (miscellaneous) (Q4)'), (21574, 'Journal of Jewish Languages', 22134638, 0.123, 'Q3', 3, 6, 361, 11, 22, '16', '2017-2019', 'Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21575, 'Journal of Migration History', 23519924, 0.123, 'Q3', 3, 19, 1338, 9, 47, '16', '2015-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4); Demography (Q4); Sociology and Political Science (Q4)'), (21576, 'Journal of the Middle East and Africa', 21520844, 0.123, 'Q3', 7, 21, 0, 18, 61, '3', '2010-2013, 2015-2020', 'Cultural Studies (Q3); History (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21577, 'Latin American Applied Research', 3270793, 0.123, 'Q4', 23, 48, 1245, 29, 122, '46', '1996-2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Mechanical Engineering (Q4)'), (21578, 'Law and Humanities', 17521483, 0.123, 'Q3', 4, 14, 0, 10, 39, '3', '2007, 2014-2020', 'Arts and Humanities (miscellaneous) (Q3); Law (Q4)'), (21579, 'Leviathan', 17501849, 0.123, 'Q2', 5, 32, 521, 8, 79, '2', '2009-2020', 'Literature and Literary Theory (Q2)'), (21580, 'Lexis (Spain)', 22108823, 0.123, 'Q2', 2, 29, 1361, 5, 82, '12', '2012-2016', 'Classics (Q2); Literature and Literary Theory (Q2)'), (21581, 'Medicine Today', 22030794, 0.123, 'Q4', 7, 92, 1988, 22, 331, '11', '2001-2020', 'Medicine (miscellaneous) (Q4)'), (21582, 'Medioevo Romanzo', 3900711, 0.123, 'Q2', 3, 15, 549, 5, 49, '7', '1988, 2012-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21583, 'Middle East Current Psychiatry', 20905408, 0.123, 'Q4', 7, 71, 2713, 17, 69, '2', '2011-2020', 'Psychiatry and Mental Health (Q4)'), (21584, 'Mitteilungen des Deutschen Archaologischen In', 3421287, 0.123, 'Q3', 7, 0, 0, 5, 41, '5', '2003-2005, 2007, 2012-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21585, 'Neotestamentica', 25184628, 0.123, 'Q2', 8, 6, 312, 5, 59, '27', '2001-2019', 'Religious Studies (Q2)'), (21586, 'NOWELE', 22129715, 0.123, 'Q3', 9, 14, 736, 8, 33, '25', '1983-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21587, 'Nueva Revista de Filologia Hispanica', 1850121, 0.123, 'Q3', 4, 20, 886, 6, 54, '30', '2011-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21588, 'Nuncius / Istituto e museo di storia della sc', 3947394, 0.123, 'Q4', 8, 17, 1137, 12, 67, '16', '1986-1988, 1990-2020', 'History and Philosophy of Science (Q4)'), (21589, 'Option/Bio', 9925945, 0.123, 'Q4', 2, 256, 384, 2, 757, '8', '2003-2020', 'Medicine (miscellaneous) (Q4)'), (21590, 'Osterreichische Zeitschrift fur Geschichtswis', 1016765, 0.123, 'Q3', 4, 32, 1756, 5, 83, '28', '2001, 2011-2019', 'History (Q3)'), (21591, 'Palliative Medicine in Practice', 25450425, 0.123, 'Q4', 2, 30, 733, 12, 54, '17', '2018-2020', 'Medicine (miscellaneous) (Q4)'), (21592, 'Phainomena', 13183362, 0.123, 'Q3', 3, 22, 585, 4, 81, '60', '2009-2013, 2015-2020', 'Philosophy (Q3)'), (21593, 'Philologia Classica', 2022532, 0.123, 'Q2', 1, 12, 513, 8, 65, '10', '2018-2019', 'Classics (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21594, 'Physical Oceanography', 1573160, 0.123, 'Q4', 2, 1, 28, 10, 27, '10', '2019-2020', 'Geophysics (Q4); Oceanography (Q4)'), (21595, 'Prometheus (Italy)', 22811044, 0.123, 'Q2', 3, 24, 645, 4, 71, '7', '2011-2019', 'Classics (Q2); Literature and Literary Theory (Q2)'), (21596, 'Radical Teacher', 19410832, 0.123, 'Q4', 1, 40, 445, 5, 67, '2', '2019-2020', 'Education (Q4)'), (21597, 'Radovi Zavoda za Hrvatsku Povijest', 353295, 0.123, 'Q3', 2, 0, 0, 2, 48, '58', '2013-2019', 'History (Q3)'), (21598, 'Religiski-Filozofiski Raksti', 14071908, 0.123, 'Q2', 2, 0, 0, 2, 84, '77', '2013-2019', 'Religious Studies (Q2); Philosophy (Q3)'), (21599, 'Revista Mexicana de Trastornos Alimentarios', 20071523, 0.123, 'Q4', 6, 2, 81, 8, 21, '16', '2011, 2014-2017, 2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (21600, 'Revista Tradumatica', 15787559, 0.123, 'Q2', 1, 4, 124, 1, 12, '12', '2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21601, 'Romani Studies', 15280748, 0.123, 'Q3', 8, 4, 282, 11, 25, '3', '2012-2020', 'Cultural Studies (Q3); Anthropology (Q4)'), (21602, 'Sciences de l Education pour l Ere Nouvelle', 7559593, 0.123, 'Q4', 4, 20, 650, 6, 38, '8', '2011, 2013-2019', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (21603, 'Significance', 17409713, 0.123, 'Q4', 21, 100, 357, 120, 113, '3', '2004-2020', 'Statistics and Probability (Q4)'), (21604, 'Southern Cultures', 10688218, 0.123, 'Q3', 11, 39, 584, 6, 107, '2', '2002-2020', 'Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3)'), (21605, 'Stomatologiya', 391735, 0.123, 'Q4', 9, 65, 0, 70, 314, '10', '1945-1947, 1949-1955, 1961, 1965-2020', 'Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (21606, 'Studia Canonica', 22953027, 0.123, 'Q2', 3, 0, 0, 3, 54, '9', '2009-2011, 2013-2019', 'Religious Studies (Q2)'), (21607, 'Studia z Filologii Polskiej i Slowianskiej', 817090, 0.123, 'Q3', 2, 30, 877, 4, 65, '17', '2011-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21608, 'Studies in Philology', 393738, 0.123, 'Q2', 12, 24, 307, 9, 85, '2', '1972, 1979-1980, 2002-2014, 2017-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21609, 'Taiwan Economic Review', 10183833, 0.123, 'Q4', 2, 8, 191, 7, 50, '22', '2017-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (21610, 'Techniques - Sciences - Methodes', 2997258, 0.123, 'Q4', 10, 82, 599, 8, 166, '8', '1987-1989, 1991-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Fluid Flow and Transfer Processes (Q4); Ocean Engineering (Q4); Water Science and Technology (Q4)'), (21611, 'Turk Onkoloji Dergisi', 13007467, 0.123, 'Q4', 7, 72, 1942, 23, 118, '18', '2007-2020', 'Oncology (Q4)'), (21612, 'Utopian studies', 1045991, 0.123, 'Q3', 5, 33, 800, 16, 66, '2', '1990, 1999, 2001, 2011, 2014-2020', 'Philosophy (Q3)'), (21613, 'Vakcinologie', 18023150, 0.123, 'Q4', 3, 17, 347, 2, 56, '31', '2010-2020', 'Immunology (Q4); Infectious Diseases (Q4); Parasitology (Q4)'), (21614, 'Vestnik Pravoslavnogo Sviato-Tikhonovskogo Gu', 24094692, 0.123, 'Q2', 1, 20, 442, 3, 101, '10', '2018-2020', 'Religious Studies (Q2); History (Q3); Philosophy (Q3)'), (21615, 'Victorian Studies', 15272052, 0.123, 'Q2', 22, 30, 789, 7, 59, '2', '1969-1972, 1976-1978, 1980-1982, 1984-1986, 1988, 1990-1992, 1995, 1999, 2001-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)'), (21616, 'VLSI Design', 15635171, 0.123, 'Q4', 24, 0, 0, 6, 12, '2', '1993-2002, 2007-2018', 'Computer Graphics and Computer-Aided Design (Q4); Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4)'), (21617, 'VOEB-Mitteilungen', 10222588, 0.123, 'Q4', 4, 56, 546, 20, 113, '28', '2009-2020', 'Library and Information Sciences (Q4)'), (21618, 'Vojnosanitetski Pregled', 24060720, 0.123, 'Q4', 19, 191, 5175, 102, 518, '55', '1949-2020', 'Medicine (miscellaneous) (Q4); Pharmacology (medical) (Q4)'), (21619, 'Volkskunde', 428523, 0.123, 'Q3', 3, 10, 254, 2, 56, '16', '1971, 1977, 2009-2019', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4)'), (21620, 'Waikato Journal of Education', 23820373, 0.123, 'Q4', 3, 14, 545, 15, 29, '41', '2018-2019', 'Education (Q4)'), (21621, 'Yingyong Kexue Xuebao/Journal of Applied Scie', 2558297, 0.123, 'Q4', 9, 74, 2247, 69, 232, '1', '1988, 2010-2020', 'Computer Science (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Mathematics (miscellaneous) (Q4)'), (21622, 'Zeitschrift fur Philosophische Forschung', 443301, 0.123, 'Q3', 6, 36, 619, 3, 88, '5', '1977, 2002-2019', 'Philosophy (Q3)'), (21623, 'Zeitschrift fur Phytotherapie : offizielles O', 722348, 0.123, 'Q4', 13, 63, 760, 5, 122, '5', '1982, 1985-2020', 'Complementary and Alternative Medicine (Q4); Pharmacology (Q4)'), (21624, 'Academic Journal of Manufacturing Engineering', 15837904, 0.122, 'Q4', 8, 60, 929, 42, 262, '43', '2010-2011, 2013-2020', 'Industrial and Manufacturing Engineering (Q4)'), (21625, 'Academic Questions', 19364709, 0.122, 'Q4', 10, 74, 0, 22, 117, '2', '1987-2020', 'Education (Q4)'), (21626, 'ACRN Journal of Finance and Risk Perspectives', 23057394, 0.122, 'Q4', 2, 22, 1149, 8, 35, '3', '2017-2020', 'Accounting (Q4); Business and International Management (Q4); Finance (Q4); Statistics, Probability and Uncertainty (Q4)'), (21627, 'African American Review', 10624783, 0.122, 'Q2', 15, 13, 401, 18, 128, '2', '2002-2009, 2012-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)'), (21628, 'Bulletin de la Societe Zoologique de France', 37962, 0.122, 'Q4', 13, 0, 0, 5, 20, '8', '1977, 1981-1982, 1996-2012, 2014-2018', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (21629, 'Business &amp; professional ethics journal', 21537828, 0.122, 'Q3', 2, 9, 598, 6, 25, '2', '1979, 1985, 1990-1993, 1996, 1998-1999, 2001, 2018-2020', 'Philosophy (Q3); Business and International Management (Q4); Economics and Econometrics (Q4)'), (21630, 'Calidoscopio', 21776202, 0.122, 'Q3', 4, 42, 1273, 16, 131, '14', '2010-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21631, 'Ceskoslovenska Patologie', 18054498, 0.122, 'Q4', 12, 23, 0, 15, 67, '31', '1971-2020', 'Anatomy (Q4); Medicine (miscellaneous) (Q4)'), (21632, 'Chinese Journal of Evidence-Based Medicine', 16722531, 0.122, 'Q4', 12, 192, 4583, 91, 626, '1', '2005-2020', 'Medicine (miscellaneous) (Q4)'), (21633, 'Cirugia Cardiovascular', 11340096, 0.122, 'Q4', 8, 56, 1016, 25, 203, '16', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)'), (21634, 'Cocuk Enfeksiyon Dergisi', 13071068, 0.122, 'Q4', 9, 58, 905, 12, 107, '18', '2009-2020', 'Infectious Diseases (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (21635, 'Communication and Medicine', 16121783, 0.122, 'Q4', 21, 0, 0, 19, 72, '3', '2004-2015, 2017-2018', 'Public Health, Environmental and Occupational Health (Q4)'), (21636, 'Croatica Christiana Periodica', 3507823, 0.122, 'Q2', 3, 0, 0, 3, 49, '58', '2011-2019', 'Religious Studies (Q2); History (Q3)'), (21637, 'Data in Brief', 23523409, 0.122, 'Q4', 30, 1742, 14584, 3980, 8, '16', '2014-2020', 'Education (Q4); Multidisciplinary (Q4)'), (21638, 'Early Medieval China', 15299104, 0.122, 'Q2', 4, 6, 0, 1, 17, '3', '1994-1995, 2005, 2007-2020', 'Literature and Literary Theory (Q2); Religious Studies (Q2); Cultural Studies (Q3); History (Q3); Philosophy (Q3); Anthropology (Q4)'), (21639, 'Early Modern French Studies', 20563035, 0.122, 'Q2', 3, 17, 15, 2, 40, '3', '2015-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3)'), (21640, 'Emergence: Complexity and Organization', 15213250, 0.122, 'Q4', 24, 0, 0, 7, 19, '2', '2004, 2006-2018', 'Business and International Management (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)'), (21641, 'Environmental Ethics', 1634275, 0.122, 'Q3', 29, 6, 187, 15, 70, '2', '1979-1981, 1984, 1988, 1990, 1996-2019', 'Philosophy (Q3); Environmental Science (miscellaneous) (Q4)'), (21642, 'Epidemiologie et Sante Animale', 7542186, 0.122, 'Q4', 3, 0, 0, 8, 50, '8', '2012-2018', 'Veterinary (miscellaneous) (Q4)'), (21643, 'Estudios Biblicos', 141437, 0.122, 'Q2', 2, 10, 623, 3, 40, '12', '2010-2019', 'Religious Studies (Q2)'), (21644, 'European Business Law Review', 1875841, 0.122, 'Q4', 4, 37, 3837, 24, 123, '3', '2017-2020', 'Law (Q4)'), (21645, 'European Legacy', 14701316, 0.122, 'Q3', 7, 71, 1899, 30, 131, '3', '2001-2002, 2009-2020', 'Cultural Studies (Q3); History (Q3); Philosophy (Q3)'), (21646, 'French Cultural Studies', 9571558, 0.122, 'Q3', 11, 28, 896, 15, 83, '3', '1990-2020', 'Cultural Studies (Q3); History (Q3)'), (21647, 'French Politics, Culture &amp; Society', 15376370, 0.122, 'Q3', 4, 21, 546, 11, 66, '2', '2015-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4); Sociology and Political Science (Q4)'), (21648, 'Hong Kong Journal of Dermatology and Venereol', 18147453, 0.122, 'Q4', 4, 27, 233, 5, 52, '35', '2005-2020', 'Dermatology (Q4)'), (21649, 'Horror Studies', 20403283, 0.122, 'Q2', 4, 16, 710, 3, 46, '3', '2014-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Music (Q3)'), (21650, 'Human Evolution', 3939375, 0.122, 'Q4', 15, 0, 0, 2, 19, '7', '1986-2017', 'Anthropology (Q4)'), (21651, 'Ibsen Studies', 17418720, 0.122, 'Q2', 6, 11, 294, 4, 16, '2', '2000-2020', 'Literature and Literary Theory (Q2); History (Q3)'), (21652, 'Immunologiya', 2064952, 0.122, 'Q4', 6, 35, 1503, 14, 74, '10', '1987-2001, 2009-2010, 2013-2018', 'Immunology (Q4)'), (21653, 'Indian Journal of Heterocyclic Chemistry', 9711627, 0.122, 'Q4', 30, 81, 2284, 23, 90, '4', '1996-2020', 'Biochemistry (Q4); Organic Chemistry (Q4)'), (21654, 'Informacije MIDEM', 3529045, 0.122, 'Q4', 18, 14, 467, 33, 72, '60', '1996-2019', 'Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (21655, 'Information-Wissenschaft und Praxis', 14344653, 0.122, 'Q4', 10, 40, 312, 11, 123, '5', '1997-2020', 'Information Systems (Q4); Library and Information Sciences (Q4)'), (21656, 'International Journal of Business Process Int', 17418771, 0.122, 'Q4', 19, 6, 296, 20, 46, '3', '2005-2014', 'Business and International Management (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (21657, 'International Journal of Medical Engineering ', 17550653, 0.122, 'Q4', 12, 44, 1186, 23, 69, '3', '2009-2014, 2020', 'Biomaterials (Q4); Biomedical Engineering (Q4); Health Informatics (Q4); Medicine (miscellaneous) (Q4)'), (21658, 'Iraqi Journal of Pharmaceutical Sciences', 16833597, 0.122, 'Q4', 1, 48, 1784, 12, 42, '48', '2019-2020', 'Analytical Chemistry (Q4); Pharmacology (medical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (21659, 'JNT-Journal of Narrative Theory', 15490815, 0.122, 'Q2', 11, 19, 617, 7, 48, '2', '2002-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (21660, 'Journal of Canadian Studies', 19110251, 0.122, 'Q3', 16, 28, 1570, 25, 85, '9', '1968, 1979, 1981-1984, 1986, 2002-2019', 'Cultural Studies (Q3); History (Q3)'), (21661, 'Journal of Educational Media, Memory, and Soc', 20416946, 0.122, 'Q4', 9, 12, 949, 10, 36, '2', '2009-2020', 'Education (Q4)'), (21662, 'Journal of Hindu Studies', 17564263, 0.122, 'Q2', 7, 10, 438, 12, 39, '4', '2009-2019', 'Religious Studies (Q2)'), (21663, 'Journal of Information Ethics', 10619321, 0.122, 'Q3', 12, 0, 0, 5, 25, '2', '1992, 1994, 1996-2019', 'Philosophy (Q3); Library and Information Sciences (Q4)'), (21664, 'Journal of Landscape Ecology', 15894673, 0.122, 'Q4', 8, 0, 0, 11, 58, '50', '2007-2020', 'Nature and Landscape Conservation (Q4)'), (21665, 'Journal of Organisational Transformation &amp', 14779633, 0.122, 'Q4', 7, 0, 0, 10, 11, '3', '2013-2017', 'Business, Management and Accounting (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (21666, 'Kleintierpraxis', 232076, 0.122, 'Q4', 13, 41, 1543, 15, 125, '5', '1996, 1998-2020', 'Small Animals (Q4)'), (21667, 'L Annee Sociologique', 662399, 0.122, 'Q4', 11, 20, 1029, 10, 46, '8', '1981, 1984, 1987, 2001-2020', 'Social Sciences (miscellaneous) (Q4)'), (21668, 'Library and Information Science', 3734447, 0.122, 'Q4', 5, 1, 15, 2, 23, '6', '1980-2019', 'Library and Information Sciences (Q4)'), (21669, 'Lithuanian Annual Strategic Review', 16488024, 0.122, 'Q4', 2, 10, 492, 5, 24, '5', '2016-2019', 'Political Science and International Relations (Q4)'), (21670, 'Malaysian Journal of Microscopy', 18237010, 0.122, 'Q4', 3, 34, 739, 10, 35, '23', '2009-2020', 'Histology (Q4); Instrumentation (Q4); Pathology and Forensic Medicine (Q4)'), (21671, 'Naihuo Cailiao/Refractories', 10011935, 0.122, 'Q4', 9, 54, 203, 20, 244, '1', '1998, 2001-2010, 2013-2015, 2017-2020', 'Ceramics and Composites (Q4); Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4)'), (21672, 'Neophilologus', 15728668, 0.122, 'Q2', 9, 41, 1376, 22, 117, '16', '1916-1946, 1948-2002, 2005-2020', 'Literature and Literary Theory (Q2); Linguistics and Language (Q3)'), (21673, 'Organizatsionnaya Psikhologiya', 23125942, 0.122, 'Q4', 2, 32, 1451, 7, 31, '10', '2019', 'Applied Psychology (Q4); Organizational Behavior and Human Resource Management (Q4); Social Psychology (Q4)'), (21674, 'Pakistan Paediatric Journal', 3044904, 0.122, 'Q4', 6, 63, 1299, 12, 126, '34', '2007-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (21675, 'Preternature', 21612196, 0.122, 'Q3', 2, 11, 529, 6, 29, '2', '2017-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4)'), (21676, 'Proceedings of the ICE - Engineering History ', 17579430, 0.122, 'Q4', 5, 0, 0, 9, 59, '3', '2013-2019', 'Engineering (miscellaneous) (Q4)'), (21677, 'Reproducao e Climaterio', 14132087, 0.122, 'Q4', 5, 0, 0, 9, 26, '14', '2002, 2012-2017', 'Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (21678, 'Review of Economics and Finance', 19237529, 0.122, 'Q4', 2, 0, 0, 11, 44, '9', '2018-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (21679, 'Revista Colombiana de Sociologia', 120159, 0.122, 'Q3', 2, 17, 515, 12, 44, '47', '2018-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (21680, 'Revista de Direito Sanitario', 15164179, 0.122, 'Q4', 2, 25, 676, 9, 71, '14', '2016-2020', 'Health (social science) (Q4); Law (Q4); Medicine (miscellaneous) (Q4)'), (21681, 'Revista de Filosofia (Chile)', 7184360, 0.122, 'Q3', 1, 17, 475, 9, 65, '45', '2016-2019', 'Philosophy (Q3)'), (21682, 'Revista de Senologia y Patologia Mamaria', 15781399, 0.122, 'Q4', 3, 65, 1249, 18, 69, '12', '2012-2020', 'Obstetrics and Gynecology (Q4); Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)'), (21683, 'Revue Francaise d Allergologie', 18770320, 0.122, 'Q4', 18, 151, 2914, 74, 295, '8', '2009-2020', 'Immunology and Allergy (Q4)'), (21684, 'Romanticism', 1354991, 0.122, 'Q2', 9, 23, 591, 8, 66, '3', '2002-2020', 'Literature and Literary Theory (Q2)'), (21685, 'Schedae Informaticae', 17323916, 0.122, 'Q4', 4, 0, 0, 3, 13, '17', '2013-2018', 'Computer Science (miscellaneous) (Q4)'), (21686, 'Vestnik Rossiiskoi Akademii Meditsinskikh Nau', 8696047, 0.122, 'Q4', 15, 0, 0, 50, 144, '10', '1992-2019', 'Medicine (miscellaneous) (Q4)'), (21687, 'Writing and Pedagogy', 17565847, 0.122, 'Q3', 1, 0, 0, 6, 31, '3', '2018-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (21688, 'Zeitschrift fur Religionswissenschaft', 9438610, 0.122, 'Q2', 7, 13, 710, 8, 32, '5', '1993-2010, 2012-2020', 'Religious Studies (Q2)'), (21689, 'Zhonghua Shiyan Yanke Zazhi/Chinese Journal o', 20950160, 0.122, 'Q4', 6, 207, 5532, 135, 574, '1', '2011-2020', 'Ophthalmology (Q4)'), (21690, 'Acta Gastroenterologica Latinoamericana', 3009033, 0.121, 'Q4', 17, 86, 1398, 31, 134, '46', '1970-1974, 1977-2020', 'Gastroenterology (Q4)'), (21691, 'Acta Politologica', 18038220, 0.121, 'Q4', 4, 7, 450, 12, 42, '31', '2016-2020', 'Sociology and Political Science (Q4)'), (21692, 'Actualite Chimique', 1519093, 0.121, 'Q4', 12, 55, 564, 8, 292, '8', '1985, 1996-2020', 'Chemistry (miscellaneous) (Q4)'), (21693, 'Altorientalische Forschungen', 21966761, 0.121, 'Q3', 12, 4, 355, 13, 58, '5', '1975-1976, 1978-2007, 2009-2019', 'Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21694, 'Anales del Seminario de Historia de la Filoso', 19882564, 0.121, 'Q3', 4, 31, 1274, 11, 102, '12', '2010-2020', 'Philosophy (Q3); History and Philosophy of Science (Q4)'), (21695, 'Atlas of Genetics and Cytogenetics in Oncolog', 17683262, 0.121, 'Q4', 2, 67, 1954, 19, 199, '8', '2018-2020', 'Cancer Research (Q4); Genetics (Q4); Hematology (Q4); Oncology (Q4)'), (21696, 'Bahrain Medical Bulletin', 10128298, 0.121, 'Q4', 11, 89, 1408, 21, 196, '98', '1990, 1995-2020', 'Medicine (miscellaneous) (Q4)'), (21697, 'CERN Yellow Reports: School Proceedings', 25198041, 0.121, 'Q4', 4, 0, 0, 35, 132, '19', '2017-2019', 'Nuclear and High Energy Physics (Q4)'), (21698, 'Communications in Mathematical Analysis', 19389787, 0.121, 'Q4', 10, 4, 86, 2, 19, '2', '2011-2020', 'Analysis (Q4); Applied Mathematics (Q4); Computational Mathematics (Q4); Numerical Analysis (Q4)'), (21699, 'Critique', 17488605, 0.121, 'Q2', 9, 34, 0, 16, 80, '3', '1973-1980, 1982, 1984, 1986, 1988-1989, 1991, 1993-1999, 2001-2003, 2005-2020', 'Literature and Literary Theory (Q2)'), (21700, 'Erasmus Journal for Philosophy and Economics', 18769098, 0.121, 'Q3', 9, 14, 253, 7, 28, '16', '2008-2013, 2015-2020', 'Philosophy (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (21701, 'European Food and Feed Law Review', 21908214, 0.121, 'Q4', 7, 62, 31, 39, 117, '5', '2013-2020', 'Food Science (Q4); Law (Q4)'), (21702, 'GMSARN International Journal', 19059094, 0.121, 'Q4', 4, 30, 852, 17, 72, '40', '2017-2020', 'Energy Engineering and Power Technology (Q4); Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (21703, 'Gulhane Medical Journal', 13020471, 0.121, 'Q4', 12, 61, 1465, 11, 84, '18', '1998-2020', 'Medicine (miscellaneous) (Q4)'), (21704, 'History Compass', 14780542, 0.121, 'Q3', 1, 40, 3178, 4, 25, '2', '2019-2020', 'History (Q3)'), (21705, 'Indian Drugs', 19462, 0.121, 'Q4', 31, 97, 2401, 42, 346, '4', '1989-2020', 'Drug Discovery (Q4); Pharmaceutical Science (Q4); Pharmacology (Q4)'), (21706, 'International Journal of African Renaissance ', 17537274, 0.121, 'Q2', 4, 14, 507, 20, 51, '3', '2015-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3)'), (21707, 'International Journal of Internet Manufacturi', 17516056, 0.121, 'Q4', 9, 27, 594, 17, 60, '3', '2007-2011, 2013-2014, 2020', 'Computer Networks and Communications (Q4); Industrial and Manufacturing Engineering (Q4); Information Systems and Management (Q4)'), (21708, 'ISVS E-journal', 23202661, 0.121, 'Q2', 2, 11, 223, 8, 21, '4', '2015-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Conservation (Q3); History (Q3)'), (21709, 'Italianist', 1748619, 0.121, 'Q3', 7, 20, 0, 6, 76, '3', '1981-2001, 2003-2020', 'History (Q3); Anthropology (Q4)'), (21710, 'Japanese Journal of Cancer and Chemotherapy', 3850684, 0.121, 'Q4', 23, 634, 3188, 205, 1970, '6', '1979-2020', 'Cancer Research (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4)'), (21711, 'Japanese Journal of Educational Psychology', 215015, 0.121, 'Q4', 17, 22, 746, 12, 85, '6', '1961-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (21712, 'Journal de Pharmacie Clinique', 2911981, 0.121, 'Q4', 16, 17, 354, 7, 59, '8', '1982-2020', 'Pharmacology (medical) (Q4)'), (21713, 'Journal for Geometry and Graphics', 14338157, 0.121, 'Q4', 18, 10, 167, 15, 49, '5', '1997-2019', 'Applied Mathematics (Q4); Applied Psychology (Q4); Geometry and Topology (Q4)'), (21714, 'Journal of Advertising Education', 10980482, 0.121, 'Q4', 1, 15, 235, 6, 22, '2', '2018-2020', 'Communication (Q4); Education (Q4); Marketing (Q4)'), (21715, 'Journal of Africana Religions', 21655405, 0.121, 'Q2', 2, 11, 761, 16, 60, '2', '2017-2020', 'Religious Studies (Q2); Cultural Studies (Q3); Anthropology (Q4)'), (21716, 'Journal of Buddhist Ethics', 10769005, 0.121, 'Q2', 7, 2, 84, 14, 36, '2', '1998-1999, 2002, 2011-2020', 'Religious Studies (Q2); Philosophy (Q3)'), (21717, 'Journal of China Pharmaceutical University', 10005048, 0.121, 'Q4', 14, 65, 1727, 41, 292, '1', '1989-1991, 2002-2019', 'Pharmaceutical Science (Q4); Pharmacology (Q4)'), (21718, 'Journal of Israeli History', 17440548, 0.121, 'Q3', 12, 13, 720, 4, 24, '3', '1994-1995, 2002-2004, 2008, 2010-2020', 'Cultural Studies (Q3); History (Q3); Political Science and International Relations (Q4)'), (21719, 'Journal of Kerman University of Medical Scien', 20082843, 0.121, 'Q4', 9, 60, 1881, 32, 177, '15', '2008, 2010-2011, 2013-2020', 'Medicine (miscellaneous) (Q4)'), (21720, 'Journal of Medicine (Bangladesh)', 20755384, 0.121, 'Q4', 5, 30, 472, 18, 75, '59', '2012-2020', 'Medicine (miscellaneous) (Q4)'), (21721, 'Journal of Pain Management', 19395914, 0.121, 'Q4', 10, 20, 1078, 22, 121, '2', '2009-2019', 'Anesthesiology and Pain Medicine (Q4)'), (21722, 'Journal of Visual Art Practice', 14702029, 0.121, 'Q2', 8, 24, 771, 12, 64, '3', '2001-2020', 'Visual Arts and Performing Arts (Q2)'), (21723, 'Klinika Oczna', 232157, 0.121, 'Q4', 15, 26, 559, 9, 105, '17', '1953-2020', 'Medicine (miscellaneous) (Q4); Ophthalmology (Q4)'), (21724, 'Legal Reference Services Quarterly', 270319, 0.121, 'Q4', 7, 10, 0, 3, 31, '2', '1981-2020', 'Law (Q4); Library and Information Sciences (Q4)'), (21725, 'Life Writing', 14484528, 0.121, 'Q2', 10, 51, 1610, 27, 108, '3', '2004-2020', 'Literature and Literary Theory (Q2)'), (21726, 'Linguamatica', 16470818, 0.121, 'Q3', 7, 9, 337, 13, 29, '26', '2015-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21727, 'Medical Journal of Bakirkoy', 13059319, 0.121, 'Q4', 4, 31, 694, 29, 177, '18', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (21728, 'Mediterranean Journal of Infection, Microbes ', 2147673, 0.121, 'Q4', 1, 3, 91, 3, 14, '18', '2019-2020', 'Immunology and Microbiology (miscellaneous) (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (21729, 'Meteorologica', 1850468, 0.121, 'Q4', 3, 0, 0, 4, 22, '46', '2016-2019', 'Atmospheric Science (Q4)'), (21730, 'Musik und Asthetik', 14329425, 0.121, 'Q3', 4, 0, 0, 1, 33, '5', '2002-2018', 'Cultural Studies (Q3); Music (Q3)'), (21731, 'Nordic Journal of Educational History', 20019076, 0.121, 'Q3', 1, 10, 695, 2, 10, '20', '2019-2020', 'History (Q3); Education (Q4)'), (21732, 'Norteamerica', 18703550, 0.121, 'Q3', 3, 20, 719, 10, 53, '30', '2016-2020', 'Cultural Studies (Q3); Demography (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21733, 'Nursing Critical Care', 1558447, 0.121, 'Q4', 4, 17, 322, 15, 97, '2', '2007, 2012-2020', 'Critical Care Nursing (Q4)'), (21734, 'Official Publication - EuroSDR', 2570505, 0.121, 'Q4', 6, 0, 0, 1, 13, '5', '1987-1988, 1991-1992, 1994-1997, 2009-2011, 2013-2014, 2016-2017, 2019', 'Computers in Earth Sciences (Q4); Geophysics (Q4)'), (21735, 'Orientalia Christiana Periodica', 305375, 0.121, 'Q2', 5, 0, 0, 6, 40, '7', '2002-2019', 'Religious Studies (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)'), (21736, 'Reviews in American History', 487511, 0.121, 'Q3', 6, 1, 49, 2, 28, '2', '1975-1983, 1985-1987, 1989-1990, 1992-1994, 1996-2008, 2010-2017, 2019-2020', 'History (Q3); Medicine (miscellaneous) (Q4)'), (21737, 'Revista de Economia Aplicada', 1133455, 0.121, 'Q4', 13, 0, 0, 12, 27, '12', '2006-2018', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (21738, 'Revista Finanzas y Politica Economica', 22486046, 0.121, 'Q4', 3, 30, 1338, 9, 44, '47', '2015-2020', 'Economics and Econometrics (Q4); Finance (Q4)'), (21739, 'Rivista Internazionale di Scienze Sociali', 18277918, 0.121, 'Q4', 8, 1, 44, 11, 49, '7', '1973, 2009-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (21740, 'Screen', 369543, 0.121, 'Q2', 26, 32, 1303, 16, 103, '3', '1969-2019', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Communication (Q4)'), (21741, 'Seoul Journal of Korean Studies', 12250201, 0.121, 'Q3', 2, 23, 604, 5, 30, '13', '2013-2020', 'Archeology (Q3); Arts and Humanities (miscellaneous) (Q3); Cultural Studies (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)'), (21742, 'Slavonic and East European Review', 376795, 0.121, 'Q2', 13, 0, 0, 24, 64, '3', '1971, 1979-1981, 1999, 2002-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)'), (21743, 'Slovak Journal of Political Sciences', 13359096, 0.121, 'Q4', 1, 12, 619, 3, 9, '53', '2019-2020', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21744, 'Studies in Christian ethics', 9539468, 0.121, 'Q2', 4, 43, 0, 12, 87, '3', '1989, 1991, 1995-1996, 1998-1999, 2003, 2015-2020', 'Religious Studies (Q2); Philosophy (Q3)'), (21745, 'Studies in Logic, Grammar and Rhetoric', 860150, 0.121, 'Q3', 12, 62, 2128, 12, 56, '17', '2011-2020', 'Philosophy (Q3)'), (21746, 'Suranaree Journal of Science and Technology', 25870009, 0.121, 'Q4', 3, 72, 1626, 28, 80, '40', '2018-2019', 'Engineering (miscellaneous) (Q4)'), (21747, 'Theatre Research International', 14740672, 0.121, 'Q2', 13, 31, 711, 8, 56, '3', '1970, 1975-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)'), (21748, 'Translational Research in Biomedicine', 1662405, 0.121, 'Q4', 2, 0, 0, 12, 23, '19', '2013, 2015-2016, 2018-2019', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (21749, 'Tydskrif vir die Suid-Afrikaanse Reg', 19962207, 0.121, 'Q4', 4, 34, 359, 8, 148, '27', '2009-2020', 'Law (Q4)'), (21750, 'UHOD - Uluslararasi Hematoloji-Onkoloji Dergi', 1306133, 0.121, 'Q4', 10, 30, 833, 15, 88, '18', '2005-2020', 'Hematology (Q4); Oncology (Q4)'), (21751, 'Virologie', 12678694, 0.121, 'Q4', 12, 57, 2059, 22, 106, '8', '1997-2020', 'Infectious Diseases (Q4); Virology (Q4)'), (21752, 'Wuhan Ligong Daxue Xuebao (Jiaotong Kexue Yu ', 20953844, 0.121, 'Q4', 13, 212, 2621, 122, 646, '1', '2001-2020', 'Electrical and Electronic Engineering (Q4); Engineering (miscellaneous) (Q4); Mechanical Engineering (Q4)'), (21753, 'Zeitschrift fur Assyriologie und Vorderasiast', 845299, 0.121, 'Q3', 13, 20, 708, 13, 48, '5', '1886-1900, 1902-1903, 1905-1912, 1914-1918, 1921-1931, 1933-1934, 1936, 1938-1941, 1944, 1950, 1952,', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21754, 'Zhongbei Daxue Xuebao (Ziran Kexue Ban)/Journ', 16733193, 0.121, 'Q4', 8, 93, 1502, 35, 351, '1', '2006-2020', 'Management of Technology and Innovation (Q4)'), (21755, 'Acta Anatomica Sinica', 5291356, 0.12, 'Q4', 7, 26, 520, 6, 146, '1', '2006-2017, 2019', 'Anatomy (Q4); Embryology (Q4); Histology (Q4); Structural Biology (Q4)'), (21756, 'Acta Medica Bulgarica', 3241750, 0.12, 'Q4', 5, 50, 1254, 18, 74, '5', '1975-1976, 1978-1987, 2001-2020', 'Medicine (miscellaneous) (Q4)'), (21757, 'Acupuncture and Electro-Therapeutics Research', 3601293, 0.12, 'Q4', 25, 11, 276, 16, 37, '2', '1976-2020', 'Anesthesiology and Pain Medicine (Q4); Complementary and Alternative Medicine (Q4); Neuroscience (miscellaneous) (Q4)'), (21758, 'Analytical and Quantitative Cytopathology and', 2578742, 0.12, 'Q4', 34, 13, 355, 16, 105, '2', '2013-2020', 'Cell Biology (Q4); Histology (Q4); Pathology and Forensic Medicine (Q4)'), (21759, 'Annali della Scuola Normale Superiore di Pisa', 392095, 0.12, 'Q2', 2, 0, 0, 2, 37, '7', '2014-2016, 2018', 'Literature and Literary Theory (Q2); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21760, 'Archaologie der Schweiz', 2559005, 0.12, 'Q3', 3, 52, 48, 2, 102, '19', '2011-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21761, 'Art Journal', 43249, 0.12, 'Q2', 15, 47, 0, 16, 95, '3', '1960-1985, 1987-2020', 'Visual Arts and Performing Arts (Q2)'), (21762, 'Asian Journal of Applied Linguistics', 23086262, 0.12, 'Q3', 2, 10, 336, 10, 38, '1', '2018-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21763, 'ASM Science Journal', 18236782, 0.12, 'Q4', 6, 165, 3494, 92, 267, '23', '2011-2015, 2017-2020', 'Multidisciplinary (Q4)'), (21764, 'Australian nursing &amp; midwifery journal', 22071512, 0.12, 'Q4', 4, 0, 0, 12, 72, '11', '2013-2017', 'Medicine (miscellaneous) (Q4)'), (21765, 'Balkan Journal of Philosophy', 23675438, 0.12, 'Q3', 2, 14, 419, 6, 47, '61', '2017-2020', 'Philosophy (Q3)'), (21766, 'Bell Labs Technical Journal', 15387305, 0.12, 'Q4', 42, 1, 57, 2, 3, '2', '1985-2015, 2017, 2019', 'Electrical and Electronic Engineering (Q4)'), (21767, 'Bilig', 13010549, 0.12, 'Q3', 7, 38, 1538, 26, 136, '18', '2008-2020', 'Arts and Humanities (miscellaneous) (Q3); Social Sciences (miscellaneous) (Q4)'), (21768, 'Bronte Studies', 17458226, 0.12, 'Q2', 5, 31, 0, 9, 78, '3', '2002-2020', 'Literature and Literary Theory (Q2)'), (21769, 'Dental Cadmos', 118524, 0.12, 'Q4', 8, 100, 1662, 31, 198, '7', '1965-1991, 2007-2020', 'Oral Surgery (Q4); Orthodontics (Q4)'), (21770, 'Denver Law Review', 24696471, 0.12, 'Q4', 18, 21, 2461, 12, 70, '2', '2015-2020', 'Law (Q4)'), (21771, 'Early China', 3625028, 0.12, 'Q2', 2, 10, 565, 8, 26, '3', '2017-2019', 'Literature and Literary Theory (Q2); Religious Studies (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3); Philosophy (Q3)'), (21772, 'Enthymema', 20372426, 0.12, 'Q2', 1, 52, 1304, 3, 102, '7', '2018-2019', 'Literature and Literary Theory (Q2)'), (21773, 'Euroheat and Power (English Edition)', 16130200, 0.12, 'Q4', 5, 42, 127, 10, 82, '5', '2004-2020', 'Energy Engineering and Power Technology (Q4)'), (21774, 'European Journal of Oncology', 11286598, 0.12, 'Q4', 9, 1, 4, 11, 43, '7', '2002-2018, 2020', 'Oncology (Q4)'), (21775, 'FOG - Freiberg Online Geoscience', 14347512, 0.12, 'Q4', 7, 1, 184, 6, 9, '5', '2006, 2008-2020', 'Ecology (Q4); Environmental Chemistry (Q4); Geology (Q4); Water Science and Technology (Q4)'), (21776, 'Germanic Review, The', 168890, 0.12, 'Q2', 10, 21, 188, 18, 66, '2', '1974-1980, 1982-1988, 1990-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (21777, 'Green Letters', 14688417, 0.12, 'Q2', 6, 22, 722, 13, 70, '3', '2015-2020', 'Literature and Literary Theory (Q2)'), (21778, 'Hermeneus', 11397489, 0.12, 'Q3', 4, 0, 0, 7, 54, '12', '2011-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21779, 'Hispanic Review', 15530639, 0.12, 'Q2', 9, 20, 912, 7, 58, '2', '1999, 2005-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21780, 'History', 1468229, 0.12, 'Q3', 15, 29, 0, 11, 89, '2', '1916-1995, 1997-1999, 2001, 2005-2020', 'History (Q3)'), (21781, 'International Commentary on Evidence', 15544567, 0.12, 'Q4', 7, 0, 0, 2, 6, '5', '2006-2007, 2009-2016, 2018-2019', 'Law (Q4)'), (21782, 'International Journal of Community Diversity', 23272147, 0.12, 'Q3', 2, 5, 178, 1, 14, '2', '2013-2020', 'Cultural Studies (Q3); Anthropology (Q4); Sociology and Political Science (Q4)'), (21783, 'Iranian Journal of Radiology', 20082711, 0.12, 'Q4', 14, 74, 1490, 53, 275, '16', '2008-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (21784, 'Japanese Railway Engineering', 4488938, 0.12, 'Q4', 4, 25, 50, 5, 73, '6', '1971, 1973-1990, 1992-2020', 'Mechanical Engineering (Q4)'), (21785, 'Journal of Creative Music Systems', 23997656, 0.12, 'Q3', 4, 1, 97, 17, 10, '33', '2017-2019', 'Music (Q3)'), (21786, 'Journal of Ethnology and Folkloristics', 17366518, 0.12, 'Q3', 2, 9, 239, 13, 54, '17', '2017-2020', 'Cultural Studies (Q3); Anthropology (Q4)'), (21787, 'Journal of Harbin Institute of Technology (Ne', 10059113, 0.12, 'Q4', 13, 57, 2358, 50, 185, '1', '1986, 2000-2020', 'Engineering (miscellaneous) (Q4)'), (21788, 'Journal of Korean Ophthalmological Society', 20929374, 0.12, 'Q4', 2, 194, 4049, 52, 385, '13', '2018-2020', 'Ophthalmology (Q4)'), (21789, 'Journal of Long-Term Effects of Medical Impla', 10506934, 0.12, 'Q4', 36, 42, 1349, 81, 119, '2', '1991-2019', 'Biomedical Engineering (Q4); Dentistry (miscellaneous) (Q4)'), (21790, 'Journal of Mathematical and Computational Sci', 19275307, 0.12, 'Q4', 2, 204, 3756, 11, 50, '3', '2019-2020', 'Computational Theory and Mathematics (Q4); Mathematics (miscellaneous) (Q4)'), (21791, 'Journal of Medical Sciences (Peshawar)', 19973446, 0.12, 'Q4', 5, 82, 1762, 29, 208, '34', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (21792, 'Journal of Musculoskeletal Research', 17936497, 0.12, 'Q4', 15, 25, 692, 10, 47, '37', '1997-2006, 2008-2020', 'Orthopedics and Sports Medicine (Q4)'), (21793, 'Journal of Parapsychology', 223387, 0.12, 'Q4', 18, 13, 377, 11, 30, '2', '1946-1949, 1973-1977, 1996-2020', 'Psychology (miscellaneous) (Q4)'), (21794, 'Journal of Pediatrics: X', 25900420, 0.12, 'Q4', 1, 17, 398, 1, 6, '2', '2019-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (21795, 'Journal of Planning and Environment Law', 3074870, 0.12, 'Q4', 8, 23, 690, 7, 86, '3', '1970, 1979-1989, 1996-2020', 'Geography, Planning and Development (Q4); Law (Q4); Management, Monitoring, Policy and Law (Q4)'), (21796, 'Journal of Practice Teaching and Learning', 17595150, 0.12, 'Q4', 6, 0, 0, 2, 16, '3', '2009-2011, 2013-2014, 2017, 2019', 'Education (Q4); Health (social science) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (21797, 'Journal of Psychiatric Nursing', 13093568, 0.12, 'Q4', 2, 43, 1553, 10, 35, '18', '2019-2020', 'Advanced and Specialized Nursing (Q4); Psychiatric Mental Health (Q4); Psychiatry and Mental Health (Q4)'), (21798, 'Journal of Social Sciences', 9718923, 0.12, 'Q4', 5, 0, 0, 34, 131, '4', '2008, 2015-2019', 'Social Sciences (miscellaneous) (Q4)'), (21799, 'Journal of the Japan Epilepsy Society', 9120890, 0.12, 'Q4', 3, 26, 421, 2, 30, '6', '1983-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (21800, 'Journal of the Japan Society for Precision En', 9120289, 0.12, 'Q4', 19, 163, 1537, 59, 502, '6', '1974, 1977, 1979-2020', 'Mechanical Engineering (Q4)'), (21801, 'Journal of Tropical Agriculture', 971636, 0.12, 'Q4', 14, 35, 819, 13, 76, '4', '2007-2011, 2013-2019', 'Agronomy and Crop Science (Q4)'), (21802, 'Klinichescheskaya Laboratornaya Diagnostika', 8692084, 0.12, 'Q4', 10, 31, 0, 98, 397, '10', '1993-2020', 'Biochemistry (medical) (Q4); Medical Laboratory Technology (Q4); Medicine (miscellaneous) (Q4)'), (21803, 'Korea Journal', 233900, 0.12, 'Q2', 9, 7, 402, 14, 72, '13', '1976-1977, 1999, 2001, 2008-2019', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3)'), (21804, 'Korean Language in America', 2374670, 0.12, 'Q3', 2, 4, 78, 11, 25, '2', '2017-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (21805, 'Labour History Review', 9615652, 0.12, 'Q3', 7, 6, 936, 3, 29, '3', '2009-2011, 2014-2020', 'History (Q3); Organizational Behavior and Human Resource Management (Q4); Social Sciences (miscellaneous) (Q4)'), (21806, 'Lion and the Unicorn', 1472593, 0.12, 'Q2', 12, 14, 491, 6, 56, '2', '2002-2019', 'Literature and Literary Theory (Q2)'), (21807, 'Magyar Geofizika', 250120, 0.12, 'Q4', 7, 7, 86, 7, 39, '50', '1993-2019', 'Geology (Q4); Geophysics (Q4)'), (21808, 'Medijske Studije', 18479758, 0.12, 'Q4', 5, 13, 560, 15, 41, '58', '2014-2019', 'Communication (Q4); Computer Science Applications (Q4)'), (21809, 'Naturschutz und Landschaftsplanung', 9406808, 0.12, 'Q4', 13, 119, 179, 15, 114, '5', '1995-2020', 'Ecology (Q4); Environmental Science (miscellaneous) (Q4)'), (21810, 'New Theatre Quarterly', 266464, 0.12, 'Q2', 13, 32, 929, 13, 82, '3', '1985-2020', 'Visual Arts and Performing Arts (Q2)'), (21811, 'NTM International Journal of History and Ethi', 366978, 0.12, 'Q3', 10, 41, 1445, 13, 47, '19', '1969-1991, 1993-2020', 'History (Q3)'), (21812, 'Oido Pensante', 22507116, 0.12, 'Q3', 2, 9, 308, 10, 43, '46', '2017-2019', 'Music (Q3)'), (21813, 'Open Fuels and Energy Science Journal', 1876973, 0.12, 'Q4', 11, 0, 0, 5, 13, '16', '2009-2018', 'Energy (miscellaneous) (Q4)'), (21814, 'Open Ornithology Journal', 18744532, 0.12, 'Q4', 7, 3, 136, 4, 13, '52', '2010-2020', 'Animal Science and Zoology (Q4)'), (21815, 'Papeles de Poblacion', 14057425, 0.12, 'Q4', 11, 17, 666, 23, 105, '30', '2008-2019', 'Demography (Q4)'), (21816, 'Perfect Beat', 18360343, 0.12, 'Q3', 9, 5, 202, 1, 16, '3', '1992-2000, 2007-2008, 2012-2018', 'Music (Q3)'), (21817, 'Per Musi', 15177599, 0.12, 'Q3', 3, 1, 15, 2, 69, '14', '2012-2019', 'Music (Q3)'), (21818, 'Practising Midwife', 14613123, 0.12, 'Q4', 11, 80, 941, 13, 183, '3', '1998-2019', 'Maternity and Midwifery (Q4); Medicine (miscellaneous) (Q4)'), (21819, 'Psychiatrie', 12117579, 0.12, 'Q4', 9, 53, 2078, 9, 53, '31', '1999-2018', 'Psychiatry and Mental Health (Q4)'), (21820, 'Quadernos de Psicologia', 2113481, 0.12, 'Q4', 2, 39, 1444, 5, 41, '12', '2018-2020', 'Psychology (miscellaneous) (Q4)'), (21821, 'Quaestio', 22959033, 0.12, 'Q3', 2, 0, 0, 3, 76, '24', '2017-2019', 'Philosophy (Q3)'), (21822, 'Research in Social Psychology', 9161503, 0.12, 'Q4', 6, 6, 179, 6, 37, '6', '2007-2019', 'Social Psychology (Q4)'), (21823, 'Retraite et Societe', 11674687, 0.12, 'Q4', 9, 0, 0, 2, 30, '8', '2001-2009, 2011-2018', 'Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4); Sociology and Political Science (Q4)'), (21824, 'Revista Colombiana de Gastroenterologia', 1209957, 0.12, 'Q4', 10, 92, 2469, 34, 152, '47', '2008-2020', 'Gastroenterology (Q4)'), (21825, 'Revista Critica de Ciencias Sociais', 2541106, 0.12, 'Q4', 5, 16, 563, 25, 79, '26', '1981, 2001, 2015-2020', 'Psychology (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (21826, 'Revue Francaise de Pedagogie', 5567807, 0.12, 'Q3', 17, 30, 765, 7, 63, '8', '2002-2020', 'Arts and Humanities (miscellaneous) (Q3); Education (Q4)'), (21827, 'Revue Romane', 353906, 0.12, 'Q2', 7, 13, 593, 9, 46, '16', '1996-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21828, 'Rivista di Storia della Filosofia', 19725558, 0.12, 'Q3', 7, 44, 2014, 3, 90, '7', '1984-1985, 2002-2019', 'Philosophy (Q3)'), (21829, 'Scandia', 365483, 0.12, 'Q3', 4, 13, 437, 4, 29, '20', '1976, 1980-1982, 2001, 2008-2019', 'History (Q3)'), (21830, 'SCMS Journal of Indian Management', 9733167, 0.12, 'Q4', 2, 25, 1109, 12, 79, '4', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q4)'), (21831, 'Theology', 20442696, 0.12, 'Q2', 7, 46, 0, 19, 100, '2', '1920-1922, 1924-1933, 1939-1946, 1968-1989, 1992-1993, 1995-2020', 'Religious Studies (Q2)'), (21832, 'Theology Today', 20442556, 0.12, 'Q2', 9, 37, 0, 11, 85, '2', '1944-1953, 1955, 1963-1966, 1969-1981, 1983-1996, 1999-2020', 'Religious Studies (Q2)'), (21833, 'Voprosy Sovremennoi Pediatrii - Current Pedia', 16825535, 0.12, 'Q4', 5, 59, 2348, 30, 137, '10', '2014-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (21834, 'Women s Writing', 17475848, 0.12, 'Q2', 13, 40, 85, 9, 85, '3', '1994-2005, 2010-2020', 'Literature and Literary Theory (Q2); Gender Studies (Q4)'), (21835, 'Yosetsu Gakkai Shi/Journal of the Japan Weldi', 214787, 0.12, 'Q4', 9, 85, 732, 12, 221, '6', '1943, 1946-2020', 'Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)'), (21836, 'Zbornik Slovenskeho Narodneho Muzea Archeolog', 13366637, 0.12, 'Q3', 2, 0, 0, 5, 21, '53', '2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)'), (21837, 'Zeitschrift fur Psychiatrie, Psychologie und ', 16642929, 0.12, 'Q4', 22, 21, 977, 18, 82, '19', '2006-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (21838, 'Acta Baltica Historiae et Philosophiae Scient', 22282009, 0.119, 'Q3', 4, 19, 496, 11, 51, '19', '2013-2020', 'History (Q3); Philosophy (Q3)'), (21839, 'Acta Hepatologica Japonica', 4514203, 0.119, 'Q4', 11, 62, 896, 20, 185, '6', '1961, 1963, 1966-1972, 1974-2020', 'Hepatology (Q4)'), (21840, 'Acta Urologica Japonica', 181994, 0.119, 'Q4', 14, 70, 708, 39, 241, '6', '1962-2020', 'Medicine (miscellaneous) (Q4); Urology (Q4)'), (21841, 'Afterall', 21564914, 0.119, 'Q2', 3, 24, 237, 17, 79, '2', '2015-2020', 'Visual Arts and Performing Arts (Q2)'), (21842, 'Analytical Science and Technology', 12250163, 0.119, 'Q4', 1, 26, 596, 3, 29, '13', '2019-2020', 'Agronomy and Crop Science (Q4); Analytical Chemistry (Q4); Environmental Chemistry (Q4); Food Science (Q4); Materials Chemistry (Q4); Pharmacology (Q4)'), (21843, 'Arbeiderhistorie', 8017778, 0.119, 'Q3', 2, 11, 339, 7, 32, '33', '2001, 2011, 2013-2020', 'History (Q3); Sociology and Political Science (Q4)'), (21844, 'Assistive Technology Outcomes and Benefits', 19387261, 0.119, 'Q4', 2, 9, 364, 6, 8, '2', '2018-2020', 'Biomedical Engineering (Q4); Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (21845, 'Avances en Odontoestomatologia', 2131285, 0.119, 'Q4', 6, 19, 582, 11, 60, '12', '1985-1991, 2003-2020', 'Dentistry (miscellaneous) (Q4); Otorhinolaryngology (Q4)'), (21846, 'Canadian yearbook of international law. Annua', 19250169, 0.119, 'Q4', 8, 15, 220, 9, 42, '3', '1989, 1996-2002, 2004-2019', 'Law (Q4); Political Science and International Relations (Q4)'), (21847, 'Catholic University Law Review', 88390, 0.119, 'Q2', 9, 11, 1254, 9, 71, '2', '1973-1974, 1979, 1982, 1988, 1998-1999, 2002-2003, 2005-2020', 'Religious Studies (Q2); Education (Q4); Law (Q4)'), (21848, 'Centro Journal', 21632960, 0.119, 'Q4', 12, 10, 569, 17, 81, '2', '2005-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (21849, 'CESifo DICE Report', 16120663, 0.119, 'Q4', 11, 9, 240, 30, 45, '5', '2006-2019', 'Economics and Econometrics (Q4)'), (21850, 'Chinese Journal of Microbiology and Immunolog', 2545101, 0.119, 'Q4', 8, 154, 4409, 74, 463, '1', '1972, 1974-1989, 1993-2020', 'Immunology (Q4); Microbiology (Q4); Virology (Q4)'), (21851, 'Chiropractic Journal of Australia', 22008012, 0.119, 'Q4', 5, 0, 0, 8, 40, '11', '2010-2013, 2016-2018', 'Complementary and Alternative Medicine (Q4)'), (21852, 'Connecticut Medicine', 106178, 0.119, 'Q4', 23, 27, 300, 14, 237, '2', '1946, 1949-2019', 'Medicine (miscellaneous) (Q4)'), (21853, 'Current Topics in Electrochemistry', 9724443, 0.119, 'Q4', 3, 0, 0, 8, 33, '4', '2017-2019', 'Catalysis (Q4); Electrochemistry (Q4); Energy (miscellaneous) (Q4)'), (21854, 'Current Topics in Peptide and Protein Researc', 9724524, 0.119, 'Q4', 7, 13, 333, 8, 35, '4', '2007, 2009-2019', 'Biochemistry (Q4); Molecular Biology (Q4)'), (21855, 'Deleuze and Guattari Studies', 23989777, 0.119, 'Q2', 2, 30, 872, 9, 60, '3', '2018-2020', 'Literature and Literary Theory (Q2); Philosophy (Q3)'), (21856, 'Espace-Populations-Societes', 7557809, 0.119, 'Q4', 12, 18, 739, 9, 98, '8', '1983-2019', 'Demography (Q4); Geography, Planning and Development (Q4)'), (21857, 'Exemplaria', 10412573, 0.119, 'Q2', 10, 14, 699, 12, 48, '3', '1989-1995, 2002-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21858, 'Fossils', 229202, 0.119, 'Q4', 9, 3, 166, 3, 29, '6', '1993-2020', 'Paleontology (Q4)'), (21859, 'Indian Journal of Research in Homoeopathy', 23207094, 0.119, 'Q4', 2, 35, 948, 3, 13, '4', '2019-2020', 'Complementary and Alternative Medicine (Q4)'), (21860, 'International Journal for Research on Service', 23749466, 0.119, 'Q4', 1, 0, 0, 8, 29, '2', '2018-2019', 'Education (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21861, 'International Journal of e-Collaboration', 15483681, 0.119, 'Q4', 23, 16, 486, 22, 40, '2', '2005-2020', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4)'), (21862, 'International Journal of Learning', 14479494, 0.119, 'Q4', 12, 2, 63, 6, 28, '2', '2009-2019', 'Education (Q4)'), (21863, 'Japanese Journal of Neurosurgery', 917950, 0.119, 'Q4', 7, 74, 1548, 14, 233, '6', '1994-2020', 'Neurology (clinical) (Q4); Surgery (Q4)'), (21864, 'Japanese Journal of Religious Studies', 3041042, 0.119, 'Q2', 12, 13, 566, 8, 35, '6', '2002-2019', 'Religious Studies (Q2)'), (21865, 'Jerusalem Review of Legal Studies', 22197117, 0.119, 'Q4', 6, 24, 954, 4, 59, '2', '2010-2019', 'Law (Q4)'), (21866, 'Journal for Social Action in Counseling and P', 21598142, 0.119, 'Q4', 1, 4, 145, 5, 21, '2', '2017-2020', 'Clinical Psychology (Q4); Education (Q4); Social Psychology (Q4); Sociology and Political Science (Q4)'), (21867, 'Journal of Argumentation in Context', 22114742, 0.119, 'Q3', 5, 16, 756, 20, 41, '16', '2015, 2017-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4)'), (21868, 'Journal of Jewish Ethics', 23341777, 0.119, 'Q2', 2, 6, 265, 2, 28, '2', '2015-2019', 'Religious Studies (Q2); Philosophy (Q3)'), (21869, 'Journal of Quality', 10220690, 0.119, 'Q4', 9, 24, 706, 12, 73, '22', '2009-2020', 'Management Science and Operations Research (Q4); Safety, Risk, Reliability and Quality (Q4)'), (21870, 'Journal of Rural Development', 9703357, 0.119, 'Q4', 7, 8, 226, 13, 60, '4', '1982-1994, 2000-2020', 'Development (Q4)'), (21871, 'Journal of Social, Political, and Economic St', 278839, 0.119, 'Q4', 10, 13, 568, 10, 40, '2', '1978, 1980, 1982, 1984-1986, 1993-1996, 2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21872, 'Journal of Structural Engineering (Madras)', 9700137, 0.119, 'Q4', 12, 1, 29, 22, 139, '4', '1988-1990, 1996-2019', 'Building and Construction (Q4); Civil and Structural Engineering (Q4); Mechanical Engineering (Q4)'), (21873, 'Journal of Veterinary Clinics', 1598298, 0.119, 'Q4', 6, 72, 1447, 13, 239, '13', '2007-2020', 'Veterinary (miscellaneous) (Q4)'), (21874, 'Khirurgiya', 231207, 0.119, 'Q4', 9, 155, 0, 133, 631, '10', '1945-2020', 'Medicine (miscellaneous) (Q4); Surgery (Q4)'), (21875, 'Lakartidningen', 237205, 0.119, 'Q4', 22, 244, 300, 59, 791, '20', '1965-2020', 'Medicine (miscellaneous) (Q4)'), (21876, 'Landbauforschung Volkenrode', 4586859, 0.119, 'Q4', 21, 0, 0, 7, 26, '5', '1977-1978, 1980-1982, 1987, 1989, 1996-2019', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4)'), (21877, 'Languages Cultures Mediation', 22841881, 0.119, 'Q3', 4, 16, 550, 3, 44, '7', '2014-2019', 'Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4); Sociology and Political Science (Q4)'), (21878, 'Leonardo Music Journal', 9611215, 0.119, 'Q3', 12, 25, 513, 8, 65, '2', '2002-2012, 2014-2019', 'Music (Q3); Computer Science Applications (Q4); Engineering (miscellaneous) (Q4)'), (21879, 'Local Population Studies', 1432974, 0.119, 'Q3', 10, 0, 0, 4, 33, '3', '1969, 1972, 1974, 1976-2019', 'Arts and Humanities (miscellaneous) (Q3); Demography (Q4); Geography, Planning and Development (Q4)'), (21880, 'London Journal', 17496322, 0.119, 'Q4', 12, 21, 0, 10, 42, '3', '1922, 1975-1987, 1989-2020', 'Geography, Planning and Development (Q4); Urban Studies (Q4)'), (21881, 'Magyar Onkologia', 250244, 0.119, 'Q4', 11, 38, 1645, 27, 116, '50', '1961-1964, 1973-1985, 1987-1991, 1996-1997, 1999-2020', 'Medicine (miscellaneous) (Q4); Oncology (Q4)'), (21882, 'Malaysian Journal of Consumer and Family Econ', 15112802, 0.119, 'Q4', 3, 63, 2928, 28, 121, '23', '2007-2013, 2015-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (21883, 'Museums and Social Issues', 15596893, 0.119, 'Q3', 5, 0, 0, 4, 22, '3', '2015-2018', 'Cultural Studies (Q3); Museology (Q3)'), (21884, 'NAN NU', 15685268, 0.119, 'Q2', 8, 9, 1174, 3, 24, '16', '1999, 2001-2002, 2007-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Arts and Humanities (miscellaneous) (Q4); Gender Studies (Q4)'), (21885, 'Nervenheilkunde', 7221541, 0.119, 'Q4', 17, 106, 5274, 48, 304, '5', '1982-2020', 'Family Practice (Q4); Neurology (clinical) (Q4)'), (21886, 'Nigerian Journal of Parasitology', 11174145, 0.119, 'Q4', 4, 0, 0, 13, 122, '51', '2010-2011, 2017-2019', 'Infectious Diseases (Q4); Parasitology (Q4)'), (21887, 'Nomadas', 25394762, 0.119, 'Q3', 1, 17, 472, 10, 60, '47', '2018-2019', 'Cultural Studies (Q3); Philosophy (Q3); Anthropology (Q4); Education (Q4); Psychology (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (21888, 'Olba', 13017667, 0.119, 'Q3', 4, 0, 0, 3, 53, '18', '2009-2014, 2016-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (21889, 'Revista Cubana de Fisica', 2539268, 0.119, 'Q4', 6, 1, 16, 28, 87, '85', '2011-2019', 'Physics and Astronomy (miscellaneous) (Q4)'), (21890, 'Revista Cubana de Plantas Medicinales', 10284796, 0.119, 'Q4', 12, 7, 218, 14, 111, '85', '1996-1997, 1999-2002, 2005-2019', 'Drug Discovery (Q4); Pharmacology (Q4); Plant Science (Q4)'), (21891, 'Scandinavian Journal of Laboratory Animal Sci', 9013393, 0.119, 'Q4', 19, 4, 103, 3, 19, '25', '1996-2012, 2014-2020', 'Animal Science and Zoology (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Veterinary (miscellaneous) (Q4)'), (21892, 'Shanghai kou qiang yi xue = Shanghai journal ', 10067248, 0.119, 'Q4', 9, 110, 0, 59, 424, '1', '2003-2020', 'Medicine (miscellaneous) (Q4)'), (21893, 'Spectroscopy Europe', 9660941, 0.119, 'Q4', 22, 8, 20, 13, 58, '2', '1996-2019', 'Analytical Chemistry (Q4); Atomic and Molecular Physics, and Optics (Q4); Spectroscopy (Q4)'), (21894, 'Studia Anglica Posnaniensia', 816272, 0.119, 'Q2', 5, 24, 1178, 7, 54, '5', '2009-2018', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21895, 'Uniform Law Review', 11243694, 0.119, 'Q4', 10, 10, 392, 14, 113, '2', '1996-2004, 2006-2019', 'Law (Q4)'), (21896, 'Uspekhi Fiziologicheskikh Nauk', 3011798, 0.119, 'Q4', 13, 1, 106, 6, 13, '10', '1971-2018', 'Medicine (miscellaneous) (Q4); Physiology (Q4)'), (21897, 'Vingtieme Siecle: Revue d Histoire', 2941759, 0.119, 'Q3', 14, 0, 0, 5, 106, '8', '1985, 1989, 1991, 1996, 1999, 2001-2018', 'History (Q3)'), (21898, 'Z Zagadnien Nauk Sadowych', 12307483, 0.119, 'Q4', 12, 0, 0, 2, 20, '17', '1999-2018', 'Pathology and Forensic Medicine (Q4)'), (21899, 'Academic Journal of Second Military Medical U', 258879, 0.118, 'Q4', 9, 129, 2177, 84, 715, '1', '2006-2011, 2013-2020', 'Medicine (miscellaneous) (Q4)'), (21900, 'Advances in OptoElectronics', 1687563, 0.118, 'Q4', 21, 0, 0, 6, 15, '2', '2007-2019', 'Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (21901, 'Allergologie', 3445062, 0.118, 'Q4', 18, 68, 1472, 22, 165, '5', '1978-2020', 'Immunology and Allergy (Q4)'), (21902, 'AMA, Agricultural Mechanization in Asia, Afri', 845841, 0.118, 'Q4', 12, 56, 742, 32, 142, '6', '1982-1991, 1993-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (21903, 'Annals of Clinical and Experimental Neurology', 24092533, 0.118, 'Q4', 2, 35, 1137, 16, 39, '10', '2019-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (21904, 'Antropologia Portuguesa', 8700990, 0.118, 'Q4', 3, 7, 340, 2, 25, '26', '2011-2012, 2014, 2016-2019', 'Anthropology (Q4)'), (21905, 'Archivo Espanol de Arte', 40428, 0.118, 'Q2', 5, 29, 904, 10, 82, '12', '1996-2020', 'Visual Arts and Performing Arts (Q2)'), (21906, 'Brill s Journal of Afroasiatic Languages and ', 18766633, 0.118, 'Q3', 8, 16, 783, 9, 35, '16', '2009-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21907, 'Chem-Bio Informatics Journal', 13476297, 0.118, 'Q4', 10, 6, 118, 6, 28, '6', '2001-2002, 2004-2020', 'Biochemistry (Q4)'), (21908, 'China Nonprofit Review', 18765149, 0.118, 'Q4', 5, 6, 227, 4, 47, '16', '2009-2019', 'Economics and Econometrics (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (21909, 'CLA Journal', 78549, 0.118, 'Q2', 5, 0, 0, 2, 24, '2', '2002-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (21910, 'CSEE Journal of Power and Energy Systems', 20960042, 0.118, 'Q4', 4, 43, 1634, 27, 148, '2', '2020', 'Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4); Energy (miscellaneous) (Q4)'), (21911, 'Cultural History', 20452918, 0.118, 'Q3', 1, 13, 1082, 6, 23, '3', '2018-2020', 'Cultural Studies (Q3); History (Q3); Political Science and International Relations (Q4)'), (21912, 'Economia y Politica', 7194714, 0.118, 'Q3', 1, 0, 0, 2, 9, '45', '2019', 'Cultural Studies (Q3); Economics and Econometrics (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21913, 'Edad de Oro', 2120429, 0.118, 'Q2', 5, 18, 599, 6, 45, '12', '2002-2019', 'Literature and Literary Theory (Q2)'), (21914, 'Ethical Perspectives', 13700049, 0.118, 'Q3', 11, 0, 0, 14, 78, '24', '1997, 1999, 2001-2005, 2011-2019', 'Philosophy (Q3)'), (21915, 'Folklore (Estonia)', 14060949, 0.118, 'Q3', 8, 34, 1146, 18, 86, '71', '2009-2020', 'Cultural Studies (Q3); Anthropology (Q4)'), (21916, 'Gazi Medical Journal', 1300056, 0.118, 'Q4', 7, 201, 4454, 39, 305, '18', '1992-2020', 'Medicine (miscellaneous) (Q4)'), (21917, 'Geoadria / glasilo Hrvatskog geografskog drus', 13312294, 0.118, 'Q4', 3, 0, 0, 2, 13, '58', '1996, 1998, 2016-2019', 'Atmospheric Science (Q4); Demography (Q4); Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (21918, 'Hejubian Yu Dengliziti Wuli/Nuclear Fusion an', 2546086, 0.118, 'Q4', 9, 44, 597, 18, 214, '1', '1993-1994, 1998, 2001-2019', 'Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4)'), (21919, 'Ideas y Valores', 1200062, 0.118, 'Q3', 3, 34, 685, 14, 165, '47', '2010-2020', 'Philosophy (Q3)'), (21920, 'Ideology and Politics Journal', 22276068, 0.118, 'Q4', 2, 29, 1536, 7, 52, '44', '2016-2020', 'Sociology and Political Science (Q4)'), (21921, 'International Human Rights Law Review', 22131027, 0.118, 'Q4', 5, 12, 676, 7, 33, '16', '2012-2020', 'Law (Q4); Sociology and Political Science (Q4)'), (21922, 'International journal for the Study of the Ch', 1474225, 0.118, 'Q2', 11, 15, 308, 3, 62, '3', '2001-2020', 'Religious Studies (Q2)'), (21923, 'International Journal of Business and Managem', 18376614, 0.118, 'Q4', 10, 17, 675, 17, 77, '11', '2008-2012, 2016-2019', 'Business and International Management (Q4); Economics and Econometrics (Q4)'), (21924, 'International Journal of Construction Supply ', 11790776, 0.118, 'Q4', 3, 4, 301, 7, 20, '41', '2015-2020', 'Building and Construction (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)'), (21925, 'International Journal of Design Management an', 23251638, 0.118, 'Q2', 3, 10, 482, 5, 20, '2', '2013-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q4)'), (21926, 'International Journal of Philosophy and Theol', 21692335, 0.118, 'Q2', 6, 30, 960, 22, 99, '3', '2013-2020', 'Religious Studies (Q2); Philosophy (Q3)'), (21927, 'International Review of Mission', 208582, 0.118, 'Q2', 11, 27, 0, 9, 100, '2', '1912-1929, 1931-1935, 1937-1939, 1941-1942, 1944-2020', 'Religious Studies (Q2)'), (21928, 'Journal of Airport Management', 17501946, 0.118, 'Q4', 2, 44, 623, 11, 56, '3', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Transportation (Q4)'), (21929, 'Journal of Donghua University (English Editio', 16725220, 0.118, 'Q4', 11, 61, 1477, 36, 320, '1', '1986-2020', 'Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)'), (21930, 'Journal of Electronic Resources in Medical Li', 15424065, 0.118, 'Q4', 12, 11, 111, 16, 55, '2', '2003-2020', 'Health (social science) (Q4); Library and Information Sciences (Q4)'), (21931, 'Journal of Geomatics', 20956045, 0.118, 'Q4', 8, 25, 55, 76, 556, '1', '2005-2011, 2013-2019', 'Computer Science (miscellaneous) (Q4); Earth-Surface Processes (Q4)'), (21932, 'Journal of Legal History', 17440564, 0.118, 'Q3', 14, 13, 0, 7, 38, '3', '1980-2020', 'History (Q3); Law (Q4)'), (21933, 'Journal of Measurement and Evaluation in Educ', 13096575, 0.118, 'Q4', 2, 0, 0, 7, 29, '18', '2019', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (21934, 'Kardiotechnik', 9412670, 0.118, 'Q4', 6, 0, 0, 4, 31, '5', '1999-2019', 'Biophysics (Q4); Cardiology and Cardiovascular Medicine (Q4)'), (21935, 'Legal History Review', 407585, 0.118, 'Q3', 9, 25, 1894, 5, 48, '16', '1920-1927, 1929-1944, 1957-1958, 1963-1982, 1984-2020', 'History (Q3); Law (Q4)'), (21936, 'Medecine Nucleaire', 9281258, 0.118, 'Q4', 9, 42, 1288, 25, 155, '8', '1993-2020', 'Biophysics (Q4); Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (21937, 'Novum Testamentum', 481009, 0.118, 'Q2', 11, 22, 1085, 12, 60, '16', '1958, 1960, 1962-1967, 1969-2003, 2005-2020', 'Classics (Q2); Literature and Literary Theory (Q2); Religious Studies (Q2); History (Q3); Language and Linguistics (Q3)'), (21938, 'Oncogematologiya', 24134023, 0.118, 'Q4', 3, 24, 864, 20, 105, '10', '2017-2020', 'Hematology (Q4); Oncology (Q4)'), (21939, 'Opera Quarterly', 14762870, 0.118, 'Q3', 10, 0, 0, 1, 47, '2', '1983-2019', 'Music (Q3)'), (21940, 'Otolaryngology Case Reports', 24685488, 0.118, 'Q4', 1, 113, 1233, 14, 91, '16', '2018-2020', 'Otorhinolaryngology (Q4)'), (21941, 'Pharmaceutical Technology', 15432521, 0.118, 'Q4', 37, 141, 708, 60, 209, '2', '1979-1985, 1987, 1996-2020', 'Biophysics (Q4); Pharmaceutical Science (Q4)'), (21942, 'Psychopharmakotherapie', 9446877, 0.118, 'Q4', 12, 67, 1017, 11, 107, '5', '1996-2019', 'Pharmacology (medical) (Q4); Psychiatry and Mental Health (Q4)'), (21943, 'Quaderni di Diritto e Politica Ecclesiastica', 11220392, 0.118, 'Q2', 2, 14, 510, 7, 143, '7', '2015-2019', 'Religious Studies (Q2); Law (Q4)'), (21944, 'Religious Studies and Theology', 17475414, 0.118, 'Q2', 3, 9, 268, 7, 55, '3', '2012-2020', 'Religious Studies (Q2)'), (21945, 'Revista de la Sociedad Espanola del Dolor', 22546189, 0.118, 'Q4', 15, 49, 1048, 29, 131, '12', '1999-2020', 'Anesthesiology and Pain Medicine (Q4)'), (21946, 'Revista d Estudis Autonomics i Federals', 18862632, 0.118, 'Q4', 5, 6, 200, 6, 29, '12', '2012-2019', 'Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (21947, 'Revista Direito GV', 23176172, 0.118, 'Q4', 1, 32, 1146, 6, 33, '14', '2019-2020', 'Law (Q4)'), (21948, 'Revue Medicale de Bruxelles', 353639, 0.118, 'Q4', 13, 41, 744, 27, 223, '24', '1980-2020', 'Medicine (miscellaneous) (Q4)'), (21949, 'Rivista Italiana di Medicina Legale e del Dir', 24992860, 0.118, 'Q4', 4, 8, 315, 17, 89, '7', '2014-2019', 'Law (Q4); Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)'), (21950, 'Science and Innovation', 24099066, 0.118, 'Q4', 4, 47, 984, 23, 139, '44', '2014-2015, 2018-2020', 'Computer Science Applications (Q4); Engineering (miscellaneous) (Q4); Information Systems and Management (Q4); Law (Q4); Management of Technology and Innovation (Q4)'), (21951, 'Showa Igakkai zasshi = The Journal of the Sho', 374342, 0.118, 'Q4', 4, 0, 0, 1, 16, '6', '1939-1944, 1949, 1951-2017', 'Medicine (miscellaneous) (Q4)'), (21952, 'South Asian History and Culture', 19472501, 0.118, 'Q3', 10, 26, 1255, 19, 85, '3', '2010-2020', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (21953, 'Spiritus', 15353117, 0.118, 'Q2', 4, 15, 508, 2, 42, '2', '2009-2020', 'Religious Studies (Q2); History (Q3); Philosophy (Q3)'), (21954, 'Studies in Romanticism', 393762, 0.118, 'Q2', 14, 0, 0, 10, 68, '2', '1964, 1977, 2002-2019', 'Literature and Literary Theory (Q2)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (21955, 'Telos', 906514, 0.118, 'Q3', 8, 25, 872, 16, 143, '2', '2010-2019', 'Cultural Studies (Q3); Philosophy (Q3); Sociology and Political Science (Q4)'), (21956, 'Visual Resources', 1973762, 0.118, 'Q2', 8, 9, 0, 11, 57, '3', '1980-1981, 1983, 1986-2020', 'Visual Arts and Performing Arts (Q2); Museology (Q3)'), (21957, 'Vniversitas', 419060, 0.118, 'Q4', 4, 24, 1275, 6, 59, '47', '2012-2019', 'Law (Q4)'), (21958, 'West Indian Medical Journal', 433144, 0.118, 'Q4', 31, 0, 0, 31, 217, '128', '1954-2019', 'Medicine (miscellaneous) (Q4)'), (21959, 'Zeitschrift fur Herz-, Thorax- und Gefasschir', 9309225, 0.118, 'Q4', 7, 57, 1158, 11, 165, '5', '1997-2020', 'Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)'), (21960, 'Zhongguo Biaomian Gongcheng/China Surface Eng', 10079289, 0.118, 'Q4', 4, 73, 2734, 26, 107, '1', '2016, 2019', 'Surfaces, Coatings and Films (Q4)'), (21961, 'Acta Academica', 5872405, 0.117, 'Q4', 9, 21, 821, 10, 42, '9', '2009-2019', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (21962, 'Anthropology of Consciousness', 10534202, 0.117, 'Q4', 14, 9, 603, 7, 37, '2', '1990-2020', 'Anthropology (Q4)'), (21963, 'Antiguo Oriente', 16679202, 0.117, 'Q2', 4, 0, 0, 2, 15, '46', '2012-2018', 'Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)'), (21964, 'Anuario Mexicano de Derecho Internacional', 18704654, 0.117, 'Q4', 4, 25, 703, 11, 59, '30', '2014-2020', 'Law (Q4)'), (21965, 'Arab Media and Society', 16877721, 0.117, 'Q2', 2, 10, 414, 4, 23, '32', '2018-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Communication (Q4)'), (21966, 'Archives of psychiatry research', 26711079, 0.117, 'Q4', 8, 17, 462, 12, 37, '58', '2019-2020', 'Clinical Psychology (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (21967, 'Archivos de Medicina del Deporte', 2128799, 0.117, 'Q4', 11, 45, 1716, 27, 122, '12', '1997-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)'), (21968, 'Augustinian Studies', 945323, 0.117, 'Q2', 12, 8, 349, 8, 29, '2', '1996-2020', 'Religious Studies (Q2); History (Q3); Philosophy (Q3)'), (21969, 'Austrian Journal of Clinical Endocrinology an', 19987773, 0.117, 'Q4', 3, 37, 721, 15, 61, '28', '2010-2020', 'Endocrinology, Diabetes and Metabolism (Q4)'), (21970, 'Autism and Developmental Language Impairments', 23969415, 0.117, 'Q4', 2, 19, 1188, 3, 8, '3', '2018-2020', 'Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Psychiatry and Mental Health (Q4)'), (21971, 'Biochemical and Cellular Archives', 9725075, 0.117, 'Q4', 9, 1055, 29979, 203, 855, '4', '2011-2012, 2014-2020', 'Biochemistry (Q4); Cell Biology (Q4)'), (21972, 'Biologicheskie Membrany', 2334755, 0.117, 'Q4', 11, 44, 1979, 26, 136, '10', '1996-2020', 'Cell Biology (Q4); Molecular Biology (Q4)'), (21973, 'Boletin Mexicano de Derecho Comparado', 418633, 0.117, 'Q4', 5, 30, 814, 8, 136, '30', '1991, 2009-2020', 'Law (Q4)'), (21974, 'Brukenthal. Acta Musei', 18422691, 0.117, 'Q2', 5, 0, 0, 3, 87, '43', '2012-2019', 'Visual Arts and Performing Arts (Q2); Conservation (Q3); History (Q3); Museology (Q3); Ecology, Evolution, Behavior and Systematics (Q4); Paleontology (Q4)'), (21975, 'Business Lawyer', 76899, 0.117, 'Q4', 19, 0, 0, 17, 155, '2', '1979, 1995-2012, 2014-2019', 'Law (Q4); Organizational Behavior and Human Resource Management (Q4)'), (21976, 'Canadian bulletin of medical history = Bullet', 8232105, 0.117, 'Q4', 13, 19, 0, 10, 78, '9', '1984-2020', 'Medicine (miscellaneous) (Q4)'), (21977, 'Casopis za Suvremenu Povijest', 5909597, 0.117, 'Q3', 3, 31, 1265, 7, 64, '58', '2001, 2013-2020', 'History (Q3)'), (21978, 'CEPAL Review', 16840348, 0.117, 'Q4', 13, 21, 940, 28, 98, '2', '1977, 1981-1988, 1992-1993, 2007-2020', 'Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (21979, 'Change Over Time', 2153053, 0.117, 'Q3', 6, 1, 31, 3, 31, '2', '2011-2018', 'Conservation (Q3); History (Q3); Nature and Landscape Conservation (Q4); Urban Studies (Q4)'), (21980, 'Changing Societies and Personalities', 25876104, 0.117, 'Q3', 2, 26, 1116, 7, 58, '10', '2018-2020', 'Cultural Studies (Q3); Social Psychology (Q4); Sociology and Political Science (Q4)'), (21981, 'Clinical calcium', 9175857, 0.117, 'Q4', 15, 0, 0, 5, 15, '6', '2004-2017', 'Medicine (miscellaneous) (Q4)'), (21982, 'Current Writing', 1013929, 0.117, 'Q2', 9, 21, 442, 4, 46, '3', '1989-2020', 'Literature and Literary Theory (Q2)'), (21983, 'DELTA Documentacao de Estudos em Linguistica ', 1024450, 0.117, 'Q3', 9, 46, 1464, 23, 135, '14', '2006-2020', 'Linguistics and Language (Q3)'), (21984, 'Diabetologie Metabolismus Endokrinologie Vyzi', 12126853, 0.117, 'Q4', 5, 11, 320, 11, 67, '31', '2001-2020', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (21985, 'Druzboslovne Razprave', 3523608, 0.117, 'Q3', 2, 3, 116, 8, 44, '60', '2017-2019', 'Cultural Studies (Q3); Communication (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (21986, 'Electronic Journal of Theoretical Physics', 17295254, 0.117, 'Q4', 14, 0, 0, 5, 14, '44', '2007-2016, 2018', 'Physics and Astronomy (miscellaneous) (Q4)'), (21987, 'Estudios de Historia Moderna Contemporanea de', 1852620, 0.117, 'Q3', 5, 10, 328, 4, 45, '30', '2009-2019', 'History (Q3)'), (21988, 'Estudios Fronterizos', 23959134, 0.117, 'Q3', 1, 18, 842, 3, 21, '30', '2019-2020', 'History (Q3); Anthropology (Q4); Demography (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Sociology and Political'), (21989, 'Etikk i Praksis', 18904009, 0.117, 'Q3', 8, 10, 421, 8, 42, '33', '2011-2019', 'Philosophy (Q3)'), (21990, 'European Journal of Palliative Care (disconti', 13522779, 0.117, 'Q4', 15, 0, 0, 14, 71, '3', '2006-2009, 2017-2018', 'Medical and Surgical Nursing (Q4); Oncology (nursing) (Q4)'), (21991, 'Expressions Maghrebines', 15400085, 0.117, 'Q2', 4, 21, 494, 12, 69, '2', '2002-2020', 'Literature and Literary Theory (Q2)'), (21992, 'Filosoficky Casopis', 151831, 0.117, 'Q3', 6, 66, 68, 8, 183, '31', '2002-2020', 'Religious Studies (Q3)'), (21993, 'FMC Formacion Medica Continuada en Atencion P', 11342072, 0.117, 'Q4', 6, 127, 2238, 22, 467, '12', '2005-2020', 'Community and Home Care (Q4); Gastroenterology (Q4)'), (21994, 'Fuel Cells Bulletin', 14642859, 0.117, 'Q4', 21, 2, 68, 2, 17, '16', '1998-2019', 'Energy Engineering and Power Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4); Strategy and Management (Q4)'), (21995, 'Giornale Critico della Filosofia Italiana', 170089, 0.117, 'Q3', 4, 21, 771, 6, 101, '7', '1966, 1973, 1975, 1977, 2002-2019', 'Philosophy (Q3)'), (21996, 'Hermes', 180777, 0.117, 'Q2', 10, 21, 966, 5, 124, '5', '1967-1969, 1971-1972, 1974, 1976-1977, 1979-1980, 1986-1987, 1996-2020', 'Classics (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (21997, 'Indian Journal of Gynecologic Oncology', 23638400, 0.117, 'Q4', 3, 126, 2294, 25, 240, '4', '2017-2020', 'Obstetrics and Gynecology (Q4); Oncology (Q4)'), (21998, 'International Journal of Business Intelligenc', 19473605, 0.117, 'Q4', 3, 5, 212, 13, 18, '2', '2018-2020', 'Information Systems and Management (Q4); Management Information Systems (Q4); Statistics, Probability and Uncertainty (Q4)'), (21999, 'International Journal of Interdisciplinary Cu', 23272554, 0.117, 'Q3', 2, 7, 164, 1, 26, '2', '2012-2020', 'Cultural Studies (Q3)'), (22000, 'International Journal of Vehicle Information ', 17418208, 0.117, 'Q4', 8, 26, 795, 12, 39, '3', '2005, 2008-2009, 2011, 2013', 'Automotive Engineering (Q4); Computer Science Applications (Q4); Control and Systems Engineering (Q4)'), (22001, 'Journal of Clinical and Translational Endocri', 22146245, 0.117, 'Q4', 3, 16, 315, 6, 41, '16', '2015-2020', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4)'), (22002, 'Journal of Health, Safety and Environment', 22051104, 0.117, 'Q4', 17, 6, 66, 6, 51, '11', '1986-2020', 'Public Health, Environmental and Occupational Health (Q4)'), (22003, 'Journal of Islamic Manuscripts', 18784631, 0.117, 'Q2', 5, 11, 565, 8, 38, '16', '2010-2019', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)'), (22004, 'Journal of Language and Sexuality', 22113770, 0.117, 'Q3', 1, 10, 493, 3, 9, '16', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Anthropology (Q4); Gender Studies (Q4)'), (22005, 'Journal of Mediterranean Studies', 10163476, 0.117, 'Q3', 11, 0, 0, 4, 40, '101', '2002-2008, 2010-2012, 2014-2018', 'Cultural Studies (Q3); Anthropology (Q4); Arts and Humanities (miscellaneous) (Q4)'), (22006, 'Journal of Mind and Behavior', 2710137, 0.117, 'Q4', 17, 12, 1135, 12, 39, '2', '1996-2020', 'Arts and Humanities (miscellaneous) (Q4); Experimental and Cognitive Psychology (Q4)'), (22007, 'Journal of Religious History', 224227, 0.117, 'Q2', 13, 25, 0, 14, 76, '2', '1960-2020', 'Religious Studies (Q2); History (Q3)'), (22008, 'Journal of South India Medicolegal Associatio', 9746196, 0.117, 'Q4', 5, 23, 420, 10, 69, '4', '2009-2020', 'Pathology and Forensic Medicine (Q4)'), (22009, 'Journal of Spanish Cultural Studies', 14636204, 0.117, 'Q3', 12, 28, 1382, 19, 71, '3', '2010-2020', 'Cultural Studies (Q3); History (Q3)'), (22010, 'Journal of the Statistical and Social Inquiry', 814776, 0.117, 'Q4', 7, 0, 0, 8, 33, '42', '2009-2011, 2014-2015, 2017-2019', 'Economics and Econometrics (Q4); Sociology and Political Science (Q4); Statistics, Probability and Uncertainty (Q4)'), (22011, 'Journal of WSCG', 12136964, 0.117, 'Q4', 12, 44, 1141, 25, 82, '31', '2009-2020', 'Computational Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Software (Q4)'), (22012, 'Kant-Studien', 228877, 0.117, 'Q3', 14, 16, 283, 12, 63, '5', '1897, 1899-1902, 1904, 1906-1907, 1909, 1912-1915, 1918-1919, 1921-1922, 1924-1931, 1933-1936, 1943,', 'Philosophy (Q3)'), (22013, 'Konstruktion', 7205953, 0.117, 'Q4', 8, 90, 247, 19, 360, '5', '1969, 1972-1978, 1980-1992, 1994-2002, 2004-2020', 'Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Theoretical Computer Science (Q4)'), (22014, 'Lin chuang er bi yan hou tou jing wai ke za z', 10011781, 0.117, 'Q4', 10, 255, 0, 31, 313, '1', '1997-2020', 'Medicine (miscellaneous) (Q4)'), (22015, 'Logos (Netherlands)', 18784712, 0.117, 'Q2', 8, 28, 406, 8, 38, '16', '1994, 1996-2020', 'Literature and Literary Theory (Q2); Media Technology (Q3); Communication (Q4); Computer Science Applications (Q4); Education (Q4); Library and Information Sciences (Q4)'), (22016, 'Loquens', 23862637, 0.117, 'Q3', 1, 3, 73, 5, 21, '12', '2018-2020', 'Linguistics and Language (Q3); Communication (Q4); Speech and Hearing (Q4)'), (22017, 'Manuscript Studies', 23801190, 0.117, 'Q2', 3, 9, 399, 9, 56, '2', '2016-2020', 'Literature and Literary Theory (Q2); Conservation (Q3); Library and Information Sciences (Q4)'), (22018, 'Medicina Interna de Mexico', 1864866, 0.117, 'Q4', 7, 138, 2685, 37, 302, '30', '1997-1999, 2001-2020', 'Internal Medicine (Q4)'), (22019, 'Miscelanea', 11376368, 0.117, 'Q2', 4, 22, 645, 2, 31, '12', '2011, 2014-2018', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22020, 'Modern Africa', 25707558, 0.117, 'Q3', 1, 9, 545, 5, 22, '31', '2018-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4); Development (Q4); Sociology and Political Science (Q4)'), (22021, 'New German Critique', 15581462, 0.117, 'Q3', 14, 28, 1230, 8, 77, '2', '1988, 2007-2020', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4)'), (22022, 'Orient', 305227, 0.117, 'Q4', 6, 21, 568, 7, 84, '5', '1982, 1990-2006, 2008-2020', 'Development (Q4); Geography, Planning and Development (Q4)'), (22023, 'Pakistan Journal of Scientific and Industrial', 22232567, 0.117, 'Q4', 5, 0, 0, 12, 69, '34', '2011-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (22024, 'Produccion y Limpia', 23230703, 0.117, 'Q4', 1, 16, 500, 7, 33, '47', '2018-2019', 'Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4)'), (22025, 'Progres en Urologie - FMC', 1761676, 0.117, 'Q4', 4, 27, 418, 6, 54, '8', '2008-2020', 'Urology (Q4)'), (22026, 'Przeglad Pediatryczny', 137723, 0.117, 'Q4', 6, 0, 0, 1, 6, '17', '2000-2013, 2018', 'Pediatrics, Perinatology and Child Health (Q4)'), (22027, 'Psychiatria Hungarica', 2377896, 0.117, 'Q4', 12, 49, 0, 14, 103, '50', '1999-2000, 2005-2020', 'Medicine (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (22028, 'Religions of South Asia', 17512689, 0.117, 'Q2', 3, 0, 0, 8, 37, '3', '2013-2018', 'Religious Studies (Q2)'), (22029, 'Renaissance Studies', 2691213, 0.117, 'Q2', 16, 47, 1, 26, 101, '3', '1987-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3); Religious Studies (Q3)'), (22030, 'Review of Metaphysics', 15494853, 0.117, 'Q3', 17, 15, 1375, 7, 56, '2', '1975, 1992, 1996-2019', 'Philosophy (Q3)'), (22031, 'Revista Chilena de Anestesia', 7164076, 0.117, 'Q4', 4, 95, 1927, 8, 91, '45', '2008-2020', 'Anesthesiology and Pain Medicine (Q4)'), (22032, 'Revista de Filologia Romanica', 212999, 0.117, 'Q2', 5, 15, 607, 11, 98, '12', '1996-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22033, 'Revista de la Facultad de Agronomia', 3787818, 0.117, 'Q4', 8, 62, 1038, 16, 70, '94', '2008-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Food Science (Q4); Plant Science (Q4)'), (22034, 'Revista Espanola de Antropologia Americana', 5566533, 0.117, 'Q4', 8, 17, 638, 7, 56, '12', '1970-1971, 2009-2019', 'Anthropology (Q4)'), (22035, 'Revista Latinoamericana de Quimica', 3705943, 0.117, 'Q4', 5, 0, 0, 1, 6, '30', '2012-2013, 2018', 'Chemistry (miscellaneous) (Q4)'), (22036, 'Romantisme', 488593, 0.117, 'Q2', 5, 39, 1746, 4, 114, '8', '1981, 1999, 2001-2019', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3)'), (22037, 'Russian Education and Society', 15580423, 0.117, 'Q4', 8, 0, 0, 20, 80, '2', '1965, 1975, 1986-1987, 1990, 1992-2019', 'Education (Q4); Sociology and Political Science (Q4)'), (22038, 'Thai Journal of Obstetrics and Gynaecology', 8576084, 0.117, 'Q4', 1, 34, 603, 4, 28, '40', '2019-2020', 'Obstetrics and Gynecology (Q4)'), (22039, 'Toraibarojisuto/Journal of Japanese Society o', 9151168, 0.117, 'Q4', 10, 1, 15, 19, 276, '6', '1996-2019', 'Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Surfaces and Interfaces (Q4); Surfaces, Coatings and Films (Q4)'), (22040, 'Transactions of the Japanese Society for Arti', 13460714, 0.117, 'Q4', 16, 41, 910, 25, 123, '6', '2001-2020', 'Artificial Intelligence (Q4); Software (Q4)'), (22041, 'Transplantation Reports', 24519596, 0.117, 'Q4', 2, 33, 655, 2, 26, '2', '2016-2020', 'Surgery (Q4); Transplantation (Q4)'), (22042, 'Trends in Biomaterials and Artificial Organs', 9711198, 0.117, 'Q4', 35, 33, 888, 6, 60, '4', '2001, 2005-2020', 'Biotechnology (Q4); Medicine (miscellaneous) (Q4)'), (22043, 'Zeitschrift fur Evangelische Ethik', 442674, 0.117, 'Q2', 3, 33, 454, 5, 57, '5', '2002-2020', 'Religious Studies (Q2)'), (22044, 'AAA, Arbeiten aus Anglistik und Amerikanistik', 1715410, 0.116, 'Q2', 6, 5, 199, 1, 27, '5', '2002-2018', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22045, 'Acta Botanica Venezuelica', 845906, 0.116, 'Q4', 7, 0, 0, 3, 15, '94', '2008-2011, 2013-2018', 'Plant Science (Q4)'), (22046, 'Acta Microscopica', 7984545, 0.116, 'Q4', 5, 419, 7355, 59, 232, '94', '2009-2020', 'Instrumentation (Q4); Materials Science (miscellaneous) (Q4); Microbiology (medical) (Q4)'), (22047, 'Algebraic Structures and their Applications', 24233447, 0.116, 'Q4', 1, 20, 349, 3, 24, '15', '2019-2020', 'Algebra and Number Theory (Q4); Applied Mathematics (Q4)'), (22048, 'Allgemeine Vermessungs-Nachrichten', 25968, 0.116, 'Q4', 7, 33, 383, 5, 86, '5', '1979-1980, 1988-1994, 2014-2020', 'Civil and Structural Engineering (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (22049, 'Angiologiia i sosudistaia khirurgiia = Angiol', 10276661, 0.116, 'Q4', 7, 92, 0, 77, 285, '10', '2003-2020', 'Medicine (miscellaneous) (Q4)'), (22050, 'Archaeologiai Ertesito', 38032, 0.116, 'Q3', 5, 11, 706, 2, 32, '50', '2007-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)'), (22051, 'Architectural Histories', 20505833, 0.116, 'Q2', 2, 32, 1363, 5, 41, '3', '2018-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); History (Q3)'), (22052, 'Archives of Neuroscience', 23225769, 0.116, 'Q4', 3, 0, 0, 1, 2, '16', '2014, 2016-2017', 'Neurology (clinical) (Q4); Neuroscience (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (22053, 'Archivos Latinoamericanos de Nutricion', 40622, 0.116, 'Q4', 34, 0, 0, 57, 105, '94', '1971-2019', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)'), (22054, 'Artifact', 17493471, 0.116, 'Q2', 2, 1, 11, 2, 5, '3', '2019', 'Visual Arts and Performing Arts (Q2); Computer Graphics and Computer-Aided Design (Q4)'), (22055, 'Asian Journal for Public Opinion Research', 22886168, 0.116, 'Q4', 1, 22, 643, 5, 31, '13', '2018-2020', 'Communication (Q4); Sociology and Political Science (Q4)'), (22056, 'Avances en Quimica', 18565301, 0.116, 'Q4', 4, 11, 580, 6, 32, '94', '2012-2020', 'Chemistry (miscellaneous) (Q4)'), (22057, 'British Journal of American Legal Studies', 20494092, 0.116, 'Q4', 4, 17, 1132, 7, 33, '17', '2016-2020', 'Law (Q4)'), (22058, 'Children s Literature Association Quarterly', 8850429, 0.116, 'Q2', 1, 20, 663, 5, 21, '2', '2019-2020', 'Literature and Literary Theory (Q2)'), (22059, 'Chinese Journal of Pharmacology and Toxicolog', 10003002, 0.116, 'Q4', 11, 68, 2190, 44, 316, '1', '1986-2019', 'Pharmacology (Q4); Toxicology (Q4)'), (22060, 'Chinese Journal of Ship Research', 16733185, 0.116, 'Q4', 2, 0, 0, 6, 48, '1', '2019', 'Mechanical Engineering (Q4); Ocean Engineering (Q4)'), (22061, 'Corrosion and Protection', 1005748, 0.116, 'Q4', 11, 69, 488, 66, 313, '1', '2002-2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (22062, 'Cuadernos del Cendes', 10122508, 0.116, 'Q4', 6, 6, 291, 13, 58, '94', '1989-1991, 2008-2017, 2019', 'Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22063, 'Cultural Studies Review', 18378692, 0.116, 'Q3', 2, 0, 0, 14, 121, '11', '2017-2019', 'Cultural Studies (Q3)'), (22064, 'DISEGNARECON', 18285961, 0.116, 'Q2', 5, 0, 0, 28, 117, '7', '2015-2019', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q4)'), (22065, 'Economia Aplicada', 14138050, 0.116, 'Q4', 10, 20, 786, 8, 85, '14', '2007-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (22066, 'Emerita, Revista de linguistica y filologia c', 19888384, 0.116, 'Q2', 4, 16, 660, 4, 46, '12', '1971, 1975, 1996, 1998, 2002-2020', 'Classics (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22067, 'Estudios de Asia y Africa', 1850164, 0.116, 'Q3', 2, 26, 1027, 4, 66, '30', '1984, 2014-2020', 'Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Anthropology (Q4); Sociology and Political Science (Q4)'), (22068, 'Etudes Mongoles et Siberiennes, Centrasiatiqu', 7665075, 0.116, 'Q3', 3, 14, 646, 12, 32, '8', '2011, 2013-2019', 'Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Anthropology (Q4)'), (22069, 'European Oncology and Haematology', 20455275, 0.116, 'Q4', 6, 7, 384, 10, 41, '3', '2012-2019', 'Hematology (Q4); Oncology (Q4)'), (22070, 'Filozofija i Drustvo', 3535738, 0.116, 'Q3', 1, 42, 1027, 3, 61, '55', '2018-2020', 'Philosophy (Q3); Sociology and Political Science (Q4)'), (22071, 'Hornero', 733407, 0.116, 'Q4', 10, 2, 88, 11, 38, '46', '1996, 2008-2018', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (22072, 'Huaxue Gongcheng/Chemical Engineering', 10059954, 0.116, 'Q4', 12, 150, 2343, 77, 538, '1', '1996-2020', 'Chemical Engineering (miscellaneous) (Q4)'), (22073, 'Imagologiya i Komparativistika', 24099554, 0.116, 'Q2', 1, 12, 229, 10, 38, '11', '2018-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Communication (Q4)'), (22074, 'Index de Enfermeria', 11321296, 0.116, 'Q4', 9, 0, 0, 24, 103, '12', '2006-2019', 'Health (social science) (Q4); History and Philosophy of Science (Q4); Public Health, Environmental and Occupational Health (Q4)'), (22075, 'International Journal of Difference Equations', 9741828, 0.116, 'Q4', 2, 17, 275, 7, 13, '4', '2019-2020', 'Analysis (Q4); Applied Mathematics (Q4); Computational Mechanics (Q4); Modeling and Simulation (Q4)'), (22076, 'International Journal of Iberian Studies', 1364971, 0.116, 'Q3', 5, 16, 564, 8, 29, '3', '2012-2019', 'History (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22077, 'International journal of maritime history', 8438714, 0.116, 'Q3', 6, 63, 0, 25, 127, '2', '2001-2002, 2011-2020', 'History (Q3); Transportation (Q4)'), (22078, 'International Review of Pragmatics', 18773109, 0.116, 'Q3', 9, 11, 561, 10, 29, '16', '2014-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4); Psychology (miscellaneous) (Q4)'), (22079, 'International Sugar Journal', 208841, 0.116, 'Q4', 20, 29, 354, 19, 132, '3', '1969-1985, 1989, 1996-2018', 'Food Science (Q4)'), (22080, 'Investigacion Clinica', 5355133, 0.116, 'Q4', 21, 96, 2023, 23, 87, '94', '1961, 1972-1986, 1988-2020', 'Medicine (miscellaneous) (Q4)'), (22081, 'Japanese Journal of Allergology', 214884, 0.116, 'Q4', 14, 72, 975, 23, 211, '6', '1961-2020', 'Immunology and Allergy (Q4)'), (22082, 'Journal of Al-Tamaddun', 18237517, 0.116, 'Q3', 1, 27, 1111, 6, 23, '23', '2019-2020', 'Cultural Studies (Q3); History (Q3); Religious Studies (Q3); Anthropology (Q4)'), (22083, 'Journal of Child Science', 24745871, 0.116, 'Q4', 8, 39, 1110, 16, 65, '5', '2017-2020', 'Pediatrics, Perinatology and Child Health (Q4); Surgery (Q4)'), (22084, 'Journal of Computational Technologies', 2313691, 0.116, 'Q4', 2, 15, 224, 10, 30, '10', '2019', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Computational Theory and Mathematics (Q4); Computer Networks and Communications (Q4); Numerical Analysis (Q4); Software (Q4)'), (22085, 'Journal of Medical and Dental Sciences', 13428810, 0.116, 'Q4', 28, 5, 106, 8, 31, '6', '1996-2019', 'Dentistry (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (22086, 'Journal of Popular Film and Television', 19306458, 0.116, 'Q2', 16, 25, 536, 8, 55, '2', '1978-2020', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)'), (22087, 'Journal of Semitic Studies', 14778556, 0.116, 'Q2', 13, 25, 646, 10, 69, '3', '1956-1975, 1977-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Religious Studies (Q3)'), (22088, 'Journal of the Southeast Asian Linguistics So', 18366821, 0.116, 'Q3', 3, 9, 329, 5, 45, '11', '2014-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22089, 'Journal of the Study of Radicalism', 19301197, 0.116, 'Q3', 7, 14, 111, 9, 24, '2', '2010-2020', 'History (Q3); Sociology and Political Science (Q4)'), (22090, 'Klinicheskaya Onkogematologiya/Clinical Oncoh', 19976933, 0.116, 'Q4', 2, 39, 1236, 8, 29, '10', '2019-2020', 'Hematology (Q4); Oncology (Q4)'), (22091, 'Kuwait Medical Journal', 16078047, 0.116, 'Q4', 9, 73, 1624, 19, 188, '80', '2007-2020', 'Medicine (miscellaneous) (Q4)'), (22092, 'Language and History', 17597536, 0.116, 'Q3', 5, 12, 634, 5, 35, '3', '2011-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22093, 'Legal Ethics', 1460728, 0.116, 'Q3', 12, 6, 0, 6, 28, '3', '1998-2020', 'Philosophy (Q3); Law (Q4)'), (22094, 'Linguistics of the Tibeto-Burman Area', 22145907, 0.116, 'Q3', 8, 13, 455, 5, 25, '16', '2011-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22095, 'Liturgy', 458063, 0.116, 'Q3', 4, 31, 0, 6, 44, '3', '1980-2020', 'Religious Studies (Q3)'), (22096, 'Logistics Journal', 18607977, 0.116, 'Q4', 5, 1, 17, 23, 121, '5', '2006, 2009-2020', 'Control and Systems Engineering (Q4); Management Information Systems (Q4); Management Science and Operations Research (Q4)'), (22097, 'Media and Jornalismo', 16455681, 0.116, 'Q4', 2, 23, 578, 13, 71, '26', '2018-2019', 'Communication (Q4)'), (22098, 'Medicina Fluminensis', 18476864, 0.116, 'Q4', 10, 65, 2284, 11, 161, '58', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (22099, 'Mikrobiolohichnyi zhurnal (Kiev, Ukraine : 19', 10280987, 0.116, 'Q4', 9, 53, 1761, 15, 57, '44', '1993-2016, 2019-2020', 'Biotechnology (Q4); Immunology (Q4); Microbiology (Q4); Microbiology (medical) (Q4); Molecular Biology (Q4); Virology (Q4)'), (22100, 'Nanjing Youdian Daxue Xuebao (Ziran Kexue Ban', 16735439, 0.116, 'Q4', 10, 101, 2519, 65, 267, '1', '2006-2020', 'Electrical and Electronic Engineering (Q4)'), (22101, 'Peace and Conflict Studies', 10827307, 0.116, 'Q4', 6, 5, 345, 4, 32, '2', '2008-2019', 'Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4)'), (22102, 'Philologus', 317985, 0.116, 'Q2', 9, 25, 1046, 11, 71, '5', '1846, 1848-1849, 1851-1852, 1854-1860, 1863-1867, 1869-1870, 1872, 1874-1877, 1879-1880, 1882, 1887-', 'Classics (Q2); Literature and Literary Theory (Q2); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22103, 'Platform', 18365132, 0.116, 'Q3', 8, 0, 0, 2, 10, '11', '2009-2013, 2015-2017', 'Cultural Studies (Q3); Communication (Q4)'), (22104, 'Przeglad Geofizyczny', 332135, 0.116, 'Q4', 10, 0, 0, 3, 35, '17', '1986, 1993-2018', 'Atmospheric Science (Q4)'), (22105, 'Queensland Review', 20497792, 0.116, 'Q2', 4, 12, 509, 5, 61, '3', '2011-2013, 2015-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)'), (22106, 'Reading and Writing (South Africa)', 20798245, 0.116, 'Q3', 1, 14, 626, 2, 13, '27', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (22107, 'Revista Criminalidad', 17943108, 0.116, 'Q4', 3, 7, 289, 15, 81, '47', '2016-2020', 'Arts and Humanities (miscellaneous) (Q4); Law (Q4); Social Psychology (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (22108, 'Revista del Ministerio de Empleo y Seguridad ', 22543295, 0.116, 'Q4', 1, 0, 0, 1, 11, '12', '2017', 'Demography (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4); Sociology and Political Science (Q4)'), (22109, 'Revista Mexicana de Analisis de la Conducta', 20070802, 0.116, 'Q4', 10, 18, 344, 5, 59, '30', '1975, 2010-2019', 'Applied Psychology (Q4); Experimental and Cognitive Psychology (Q4)'), (22110, 'Ricerche di Storia dell Arte', 3927202, 0.116, 'Q2', 2, 33, 516, 8, 69, '7', '2009-2019', 'Visual Arts and Performing Arts (Q2)'), (22111, 'Russian Journal of Human Reproduction', 10257217, 0.116, 'Q4', 3, 89, 2785, 21, 81, '10', '2019-2020', 'Embryology (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (22112, 'Russian Politics and Law', 15580962, 0.116, 'Q4', 10, 0, 0, 1, 25, '2', '1992-2017', 'Law (Q4); Sociology and Political Science (Q4)'), (22113, 'South Asian Studies', 1026678, 0.116, 'Q3', 10, 11, 33, 8, 42, '3', '1985-2020', 'Archeology (arts and humanities) (Q3); Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3)'), (22114, 'Studia Antiqua et Archaeologica', 12242284, 0.116, 'Q2', 4, 10, 379, 12, 68, '43', '2011-2019', 'Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (22115, 'Synthesis Philosophica', 3527875, 0.116, 'Q3', 7, 0, 0, 13, 86, '58', '1997, 2002-2019', 'Philosophy (Q3)'), (22116, 'Tezhong Zhuzao Ji Youse Hejin/Special Casting', 10012249, 0.116, 'Q4', 9, 159, 2501, 122, 1097, '1', '1994-1995, 1997, 2001-2020', 'Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Physical and Theoretical Chemistry (Q4)'), (22117, 'Theatre Survey', 14754533, 0.116, 'Q2', 10, 18, 919, 6, 49, '3', '1960-2020', 'Visual Arts and Performing Arts (Q2)'), (22118, 'Theology and Sexuality', 13558358, 0.116, 'Q3', 12, 11, 331, 5, 39, '3', '1996-2020', 'Religious Studies (Q3); Gender Studies (Q4)'), (22119, 'Therapeutische Umschau. Revue therapeutique', 405930, 0.116, 'Q4', 17, 87, 1663, 29, 239, '19', '1947-2020', 'Medicine (miscellaneous) (Q4)'), (22120, 'Tierarztliche Umschau', 493864, 0.116, 'Q4', 13, 18, 40, 11, 164, '5', '1948, 1961, 1974-1977, 1996-2020', 'Veterinary (miscellaneous) (Q4)'), (22121, 'Travaux de Linguistique', 826049, 0.116, 'Q3', 5, 5, 227, 4, 37, '24', '2001-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22122, 'Tulsa Studies in Womens Literature', 19361645, 0.116, 'Q2', 9, 15, 345, 6, 57, '2', '2002-2013, 2015-2019', 'Literature and Literary Theory (Q2); Gender Studies (Q4)'), (22123, 'University of Toronto Medical Journal', 420239, 0.116, 'Q4', 5, 28, 552, 17, 76, '9', '1945-1950, 1960-1961, 1972-1978, 2011-2020', 'Medicine (miscellaneous) (Q4)'), (22124, 'US Endocrinology', 17583918, 0.116, 'Q4', 8, 19, 863, 10, 29, '3', '2008-2020', 'Endocrinology, Diabetes and Metabolism (Q4)'), (22125, 'Victorian Naturalist', 425184, 0.116, 'Q4', 10, 0, 0, 6, 56, '11', '1980, 1984, 2008-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (22126, 'Word Structure', 17501245, 0.116, 'Q3', 3, 15, 917, 6, 13, '3', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22127, 'World Literature Studies', 13379275, 0.116, 'Q2', 4, 36, 1010, 9, 112, '53', '2009-2020', 'Literature and Literary Theory (Q2)'), (22128, 'Yingxiang Kexue yu Guanghuaxue/Imaging Scienc', 16740475, 0.116, 'Q3', 9, 184, 3422, 26, 212, '1', '2008-2020', 'Media Technology (Q3); Chemistry (miscellaneous) (Q4)'), (22129, 'Zeitschrift fur Antikes Christentum', 9499571, 0.116, 'Q2', 12, 12, 470, 8, 55, '5', '1997-2019', 'Classics (Q2); History (Q3); Religious Studies (Q3)'), (22130, 'Acta Fytotechnica et Zootechnica', 13369245, 0.115, 'Q4', 3, 83, 2526, 6, 21, '53', '2019-2020', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Food Science (Q4)'), (22131, 'Annales - Universitatis Mariae Curie-Sklodows', 1371983, 0.115, 'Q4', 7, 4, 169, 10, 52, '17', '1975, 1977, 1979-1980, 1982, 1986, 1991, 1994-2000, 2002-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Water Science and Technology (Q4)'), (22132, 'Annual review of nursing research', 7396686, 0.115, 'Q4', 30, 11, 0, 7, 32, '5', '1983-2011, 2013-2016, 2018-2019', 'Medicine (miscellaneous) (Q4)'), (22133, 'Archives de Sciences Sociales des Religions', 3355985, 0.115, 'Q3', 14, 32, 1008, 18, 129, '8', '1988, 1999, 2001-2020', 'Religious Studies (Q3); Social Sciences (miscellaneous) (Q4)'), (22134, 'Asian Biotechnology and Development Review', 9727566, 0.115, 'Q4', 8, 2, 126, 3, 17, '4', '2003-2019', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4)'), (22135, 'Asian Ethnology', 18826865, 0.115, 'Q2', 12, 17, 662, 7, 44, '6', '2008-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Religious Studies (Q3); Anthropology (Q4)'), (22136, 'Balkan Social Science Review', 18578772, 0.115, 'Q4', 3, 35, 1136, 5, 52, '100', '2013-2020', 'Law (Q4); Political Science and International Relations (Q4); Public Administration (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (22137, 'Biblica et Patristica Thoruniensia', 24507059, 0.115, 'Q3', 1, 17, 673, 2, 48, '17', '2018-2020', 'Religious Studies (Q3)'), (22138, 'BSGLg', 7707576, 0.115, 'Q4', 5, 6, 319, 7, 47, '24', '1979, 1981-1986, 1988-1994, 2012-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (22139, 'Bulletin of Educational Psychology', 10115714, 0.115, 'Q4', 2, 0, 0, 10, 44, '22', '2015-2018', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (22140, 'Bulletin of Hispanic Studies', 14753839, 0.115, 'Q2', 7, 42, 1898, 19, 186, '3', '2002-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22141, 'Cardiology Letters', 13383655, 0.115, 'Q4', 7, 48, 1233, 12, 71, '53', '2011-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (22142, 'CLCWeb - Comparative Literature and Culture', 14814374, 0.115, 'Q2', 10, 43, 1214, 19, 176, '2', '2009-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (22143, 'Comparative Legal History', 20496788, 0.115, 'Q3', 3, 7, 0, 2, 28, '3', '2013, 2015-2020', 'History (Q3); Law (Q4)'), (22144, 'Comparative Literature Studies', 15284212, 0.115, 'Q2', 13, 8, 528, 11, 89, '2', '2000, 2002-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (22145, 'Cultura. International Journal of Philosophy ', 15841057, 0.115, 'Q3', 6, 17, 392, 6, 52, '2', '2009-2019', 'Cultural Studies (Q3); Philosophy (Q3)'), (22146, 'Derecho PUCP', 23052546, 0.115, 'Q4', 1, 15, 741, 5, 31, '68', '2019', 'Law (Q4)'), (22147, 'Drugs of the Future', 3778282, 0.115, 'Q4', 43, 75, 2235, 32, 250, '12', '1978-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (22148, 'Federal Law Review', 14446928, 0.115, 'Q4', 2, 33, 0, 15, 38, '11', '2018-2020', 'Law (Q4)'), (22149, 'Filosofskii Zhurnal', 20720726, 0.115, 'Q3', 1, 39, 896, 5, 53, '10', '2019', 'Philosophy (Q3); History and Philosophy of Science (Q4)'), (22150, 'Florida Geographer', 7390041, 0.115, 'Q4', 4, 0, 0, 2, 5, '2', '1983-1992, 1996-2018', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (22151, 'Gedrag en Organisatie', 9215077, 0.115, 'Q4', 12, 0, 0, 6, 39, '16', '2008-2020', 'Organizational Behavior and Human Resource Management (Q4); Social Psychology (Q4); Strategy and Management (Q4)'), (22152, 'GeoScape', 18021115, 0.115, 'Q4', 3, 8, 363, 15, 37, '17', '2019-2020', 'Ecology (Q4); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4); Urban Studies (Q4)'), (22153, 'Gerontologie et Societe', 1510193, 0.115, 'Q4', 10, 23, 0, 8, 75, '8', '2001-2013, 2018-2020', 'Geriatrics and Gerontology (Q4); Gerontology (Q4); Health (social science) (Q4)'), (22154, 'Hawai i journal of health &amp; social welfar', 26415224, 0.115, 'Q4', 27, 118, 0, 13, 53, '2', '2019-2020', 'Medicine (miscellaneous) (Q4)'), (22155, 'Hong Kong Journal of Paediatrics', 10139923, 0.115, 'Q4', 10, 43, 757, 20, 100, '35', '2005-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (22156, 'Hyperboreus', 21562253, 0.115, 'Q2', 3, 0, 0, 7, 49, '10', '2010, 2012-2018', 'Classics (Q2); History (Q3)'), (22157, 'IASPM Journal', 20793871, 0.115, 'Q3', 7, 16, 553, 4, 24, '20', '2010, 2012-2018, 2020', 'Music (Q3)'), (22158, 'Indian Journal of Forensic Medicine and Toxic', 9739122, 0.115, 'Q4', 20, 2582, 50294, 242, 1016, '4', '2008-2020', 'Health, Toxicology and Mutagenesis (Q4); Law (Q4); Pathology and Forensic Medicine (Q4); Toxicology (Q4)'), (22159, 'Information Psychiatrique', 19524056, 0.115, 'Q4', 9, 89, 0, 23, 281, '8', '1965, 1973-1980, 1982-1988, 2005-2020', 'Psychiatry and Mental Health (Q4)'), (22160, 'International Journal of Mobile Network Desig', 17442869, 0.115, 'Q4', 11, 6, 148, 20, 66, '3', '2006-2007, 2009-2013, 2019', 'Artificial Intelligence (Q4); Computer Networks and Communications (Q4); Management Information Systems (Q4); Software (Q4)'), (22161, 'International Journal of Systematic Innovatio', 20778767, 0.115, 'Q4', 5, 12, 339, 7, 33, '22', '2010-2020', 'Artificial Intelligence (Q4); Information Systems and Management (Q4); Management of Technology and Innovation (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management'), (22162, 'inTRAlinea', 1827000, 0.115, 'Q3', 3, 0, 0, 4, 103, '7', '2011-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22163, 'Iranian Journal of Nutrition Sciences and Foo', 17357756, 0.115, 'Q4', 2, 52, 1685, 4, 35, '15', '2019-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Food Science (Q4); Nutrition and Dietetics (Q4)'), (22164, 'Jiefangjun Ligong Daxue Xuebao/Journal of PLA', 10093443, 0.115, 'Q4', 12, 0, 0, 6, 47, '1', '2007-2017', 'Atmospheric Science (Q4); Civil and Structural Engineering (Q4); Information Systems (Q4)'), (22165, 'Journal of Accounting Review', 10181687, 0.115, 'Q4', 1, 8, 480, 2, 16, '22', '2018-2019', 'Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4)'), (22166, 'Journal of business continuity &amp; emergenc', 17499216, 0.115, 'Q4', 11, 35, 0, 36, 111, '3', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (22167, 'Journal of Dynamics and Control', 16726553, 0.115, 'Q4', 3, 0, 0, 33, 192, '1', '2017-2019', 'Computational Mechanics (Q4); Control and Optimization (Q4)'), (22168, 'Journal of English Studies', 16954300, 0.115, 'Q2', 4, 12, 462, 12, 41, '12', '2012-2014, 2017-2018', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22169, 'Journal of Globalization Studies', 20758103, 0.115, 'Q4', 1, 9, 376, 4, 18, '10', '2019-2020', 'Geography, Planning and Development (Q4); Global and Planetary Change (Q4); Political Science and International Relations (Q4)'), (22170, 'Journal of Human Ecology', 9709274, 0.115, 'Q4', 1, 45, 1781, 8, 61, '4', '1990-1991, 1996, 2018-2020', 'Ecology (Q4); Food Science (Q4); Health (social science) (Q4); Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4)'), (22171, 'Journal of Oral Medicine and Oral Surgery', 26081326, 0.115, 'Q4', 3, 45, 891, 14, 54, '8', '2018-2020', 'Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Periodontics (Q4)'), (22172, 'Journal of Pipeline Engineering,The', 17532116, 0.115, 'Q4', 7, 0, 0, 5, 22, '2', '2010-2015, 2017', 'Energy (miscellaneous) (Q4); Mechanical Engineering (Q4)'), (22173, 'Journal of Research Administration', 25737104, 0.115, 'Q4', 1, 6, 188, 1, 6, '2', '2019-2020', 'Education (Q4); Strategy and Management (Q4)'), (22174, 'Journal of the Zhejiang University - Agricult', 10089209, 0.115, 'Q4', 11, 50, 1690, 16, 88, '1', '2001-2006, 2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Food Science (Q4); Veterinary '), (22175, 'Kadmos', 227498, 0.115, 'Q2', 10, 3, 128, 7, 32, '5', '1962-1979, 1981, 1983-1985, 1989-2002, 2004-2005, 2007-2015, 2017, 2019', 'Classics (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3)'), (22176, 'Lidil', 19606052, 0.115, 'Q3', 4, 21, 653, 6, 74, '8', '2006, 2011-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22177, 'Magic, Ritual, and Witchcraft', 19405111, 0.115, 'Q3', 4, 10, 699, 11, 51, '2', '2014-2019', 'Cultural Studies (Q3); History (Q3); Religious Studies (Q3)'), (22178, 'Mariner s Mirror', 253359, 0.115, 'Q3', 12, 35, 651, 12, 59, '3', '1911-1914, 1919-2020', 'History (Q3); Oceanography (Q4)'), (22179, 'Mindanao Journal of Science and Technology', 24493686, 0.115, 'Q4', 1, 34, 972, 3, 17, '63', '2019', 'Multidisciplinary (Q4)'), (22180, 'Mosaic', 271276, 0.115, 'Q2', 12, 23, 512, 9, 122, '9', '1971, 1978, 1988, 2002-2019', 'Literature and Literary Theory (Q2)'), (22181, 'Musica Hodie', 16763939, 0.115, 'Q3', 4, 9, 236, 10, 65, '14', '2010-2016, 2018-2020', 'Music (Q3)'), (22182, 'Neurologie und Rehabilitation', 9472177, 0.115, 'Q4', 12, 63, 1261, 11, 87, '5', '1997-2018', 'Neurology (clinical) (Q4); Rehabilitation (Q4)'), (22183, 'Nowotwory', 29540, 0.115, 'Q4', 8, 53, 1163, 25, 143, '17', '1960-2020', 'Cancer Research (Q4); Oncology (Q4)'), (22184, 'Pharmeuropa bio &amp; scientific notes', 20752164, 0.115, 'Q4', 11, 8, 0, 6, 15, '8', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (22185, 'Plan Journal', 25317644, 0.115, 'Q3', 3, 18, 312, 12, 76, '7', '2016-2020', 'Architecture (Q3); Urban Studies (Q4)'), (22186, 'Protetyka stomatologiczna', 331783, 0.115, 'Q4', 2, 41, 1137, 9, 86, '17', '1967-1990, 2017-2020', 'Dentistry (miscellaneous) (Q4); Oral Surgery (Q4)'), (22187, 'Public Reason', 20657285, 0.115, 'Q3', 5, 0, 0, 2, 21, '43', '2012-2019', 'Philosophy (Q3); Sociology and Political Science (Q4)'), (22188, 'Rehabilitacion', 487120, 0.115, 'Q4', 10, 59, 1221, 29, 109, '12', '1973-1979, 1987-1991, 2005-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (22189, 'Rengong Jingti Xuebao/Journal of Synthetic Cr', 1000985, 0.115, 'Q4', 15, 330, 9768, 173, 1249, '1', '2003-2020', 'Ceramics and Composites (Q4); Condensed Matter Physics (Q4); Materials Chemistry (Q4)'), (22190, 'Revista de Filosofia (Spain)', 348244, 0.115, 'Q3', 3, 10, 322, 4, 49, '12', '2011-2019', 'Philosophy (Q3)'), (22191, 'Revista Espanola de Cardiologia Suplementos', 15792250, 0.115, 'Q4', 13, 25, 1301, 3, 29, '12', '2004-2017, 2019-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (22192, 'Revue Biblique', 350907, 0.115, 'Q3', 8, 7, 304, 5, 66, '8', '2002-2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3); Religious Studies (Q3)'), (22193, 'Siberian Journal of Oncology', 23123168, 0.115, 'Q4', 4, 108, 2837, 53, 272, '10', '2017-2020', 'Cancer Research (Q4); Oncology (Q4)'), (22194, 'Southeastern Geology', 383678, 0.115, 'Q4', 13, 0, 0, 1, 18, '2', '1979, 1981-1986, 1992-2019', 'Geology (Q4)'), (22195, 'Storytelling, Self, Society', 15505340, 0.115, 'Q2', 4, 8, 199, 17, 66, '2', '2010-2014, 2017-2019', 'Literature and Literary Theory (Q2); Archeology (Q3); Cultural Studies (Q3); Anthropology (Q4)'), (22196, 'Strategic Direction', 2580543, 0.115, 'Q4', 12, 167, 230, 58, 434, '3', '2002-2020', 'Strategy and Management (Q4)'), (22197, 'Studi Storici', 393037, 0.115, 'Q3', 7, 45, 1684, 13, 117, '7', '1966, 1974, 1976-1977, 1979-1980, 1982, 1985, 1999-2019', 'History (Q3)'), (22198, 'Sur', 19833342, 0.115, 'Q4', 5, 17, 228, 16, 86, '14', '2012-2019', 'Law (Q4); Sociology and Political Science (Q4)'), (22199, 'Tijdschrift voor Urologie', 22113037, 0.115, 'Q4', 8, 44, 618, 8, 82, '2', '2011-2020', 'Urology (Q4)'), (22200, 'Transactions of the Cambridge Bibliographical', 686611, 0.115, 'Q2', 4, 0, 0, 2, 12, '3', '1971, 1979-1980, 1982, 1988, 2002-2011, 2013-2017, 2019', 'Literature and Literary Theory (Q2); Library and Information Sciences (Q4)'), (22201, 'Travaux du Museum National d Histoire Naturel', 22470735, 0.115, 'Q4', 2, 1, 21, 6, 22, '17', '2017-2019', 'Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Insect Science (Q4); Plant Science (Q4)'), (22202, 'Turkish Journal of Immunology', 1301109, 0.115, 'Q4', 4, 23, 817, 14, 51, '18', '1998-1999, 2003-2005, 2008, 2010-2020', 'Immunology (Q4); Immunology and Allergy (Q4)'), (22203, 'Visual Culture in Britain', 14714787, 0.115, 'Q2', 5, 18, 738, 6, 58, '3', '2009-2020', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Communication (Q4)'), (22204, 'Vytapeni, Vetrani, Instalace', 12101389, 0.115, 'Q4', 3, 52, 375, 5, 140, '31', '2014-2020', 'Building and Construction (Q4); Environmental Engineering (Q4); Health, Toxicology and Mutagenesis (Q4)'), (22205, 'Wacana Seni', 16753410, 0.115, 'Q2', 2, 7, 174, 6, 31, '23', '2011-2019', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Music (Q3)'), (22206, 'War &amp; society', 7292473, 0.115, 'Q3', 7, 27, 0, 11, 50, '3', '1983-2003, 2008, 2010-2020', 'History (Q3)'), (22207, 'World of Mining - Surface and Underground', 16132408, 0.115, 'Q4', 8, 39, 393, 12, 108, '5', '2004-2019', 'Geotechnical Engineering and Engineering Geology (Q4); Strategy and Management (Q4)'), (22208, 'Acta Linguistica Asiatica', 22323317, 0.114, 'Q3', 2, 12, 184, 6, 28, '60', '2018-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22209, 'Alternativas', 19899971, 0.114, 'Q4', 1, 12, 426, 1, 6, '12', '2019', 'Health (social science) (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (22210, 'American Music', 7344392, 0.114, 'Q3', 10, 12, 757, 9, 65, '2', '2002-2020', 'Music (Q3)'), (22211, 'Annals of African Surgery', 19999674, 0.114, 'Q4', 4, 36, 625, 2, 18, '72', '2008-2016, 2019-2020', 'Surgery (Q4)'), (22212, 'Applied Radiology', 1609963, 0.114, 'Q4', 14, 78, 818, 46, 104, '2', '1973-1991, 1996-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (22213, 'Arab Gulf Journal of Scientific Research', 10154442, 0.114, 'Q4', 13, 0, 0, 1, 11, '48', '1983-2017', 'Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Water Science and Technology (Q4)'), (22214, 'Arbeitsmedizin Sozialmedizin Umweltmedizin', 9446052, 0.114, 'Q4', 14, 0, 0, 25, 352, '5', '1994-2019', 'Public Health, Environmental and Occupational Health (Q4)'), (22215, 'Archeologia Medievale', 3900592, 0.114, 'Q3', 10, 0, 0, 15, 66, '7', '2002-2017', 'Archeology (Q3); Archeology (arts and humanities) (Q3)'), (22216, 'Architecture and Culture', 20507836, 0.114, 'Q2', 3, 52, 1504, 17, 102, '3', '2014-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Cultural Studies (Q3); Urban Studies (Q4)'), (22217, 'Archives of Hellenic Medicine', 11053992, 0.114, 'Q4', 9, 181, 4294, 37, 270, '39', '1997-2011, 2013-2020', 'Medicine (miscellaneous) (Q4)'), (22218, 'Archiv fur Lebensmittelhygiene', 3925, 0.114, 'Q4', 17, 0, 0, 11, 39, '5', '1959-1961, 1973-1989, 1996-2019', 'Food Science (Q4); Health, Toxicology and Mutagenesis (Q4); Management, Monitoring, Policy and Law (Q4); Microbiology (Q4)'), (22219, 'Asian Journal of WTO and International Health', 18195164, 0.114, 'Q4', 8, 0, 0, 4, 28, '22', '2009-2012, 2016-2018', 'Economics and Econometrics (Q4); Health (social science) (Q4); Law (Q4); Political Science and International Relations (Q4); Public Health, Environmental and Occupational Health (Q4)'), (22220, 'Astronomical and Astrophysical Transactions', 14763540, 0.114, 'Q4', 2, 0, 0, 10, 48, '3', '2017-2019', 'Astronomy and Astrophysics (Q4); Instrumentation (Q4)'), (22221, 'Australian Review of Applied Linguistics', 1550640, 0.114, 'Q3', 15, 15, 639, 4, 21, '11', '2008-2016, 2018-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22222, 'Bibliotecas, Anales de Investigacion', 16838947, 0.114, 'Q4', 2, 14, 290, 7, 24, '85', '2019', 'Library and Information Sciences (Q4)'), (22223, 'Boletin de Malariologia y Salud Ambiental', 16904648, 0.114, 'Q4', 8, 342, 6275, 78, 305, '94', '2010-2020', 'Infectious Diseases (Q4); Parasitology (Q4); Public Health, Environmental and Occupational Health (Q4)'), (22224, 'Brunei International Medical Journal', 15605876, 0.114, 'Q4', 5, 24, 398, 6, 63, '114', '2011-2019', 'Medicine (miscellaneous) (Q4)'), (22225, 'Bulletin of the International Institute of Se', 74655, 0.114, 'Q4', 6, 0, 0, 2, 5, '6', '1993-2019', 'Geophysics (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (22226, 'Bulletin of the Plankton Society of Japan', 24340839, 0.114, 'Q4', 12, 2, 61, 4, 31, '6', '1988, 1992, 1996, 1998-2014, 2017-2020', 'Aquatic Science (Q4); Oceanography (Q4)'), (22227, 'Cambridge Quarterly', 8199, 0.114, 'Q2', 9, 13, 451, 2, 43, '3', '1965-2020', 'Literature and Literary Theory (Q2)'), (22228, 'Caritas et Veritas', 18050948, 0.114, 'Q3', 2, 4, 0, 7, 53, '31', '2015-2019', 'Philosophy (Q3); Religious Studies (Q3); Education (Q4); Sociology and Political Science (Q4)'), (22229, 'Casopis Lekaru Ceskych', 87335, 0.114, 'Q4', 15, 74, 1262, 30, 192, '31', '1948-2020', 'Medicine (miscellaneous) (Q4)'), (22230, 'Chinese Journal of Clinical Oncology', 16727118, 0.114, 'Q4', 9, 163, 4120, 83, 560, '1', '1986-1999, 2005-2020', 'Cancer Research (Q4); Oncology (Q4)'), (22231, 'Cirugia pediatrica : organo oficial de la Soc', 2141221, 0.114, 'Q4', 13, 43, 0, 21, 118, '8', '1988-2014, 2016-2020', 'Medicine (miscellaneous) (Q4)'), (22232, 'CONCAWE Reports', 1660810, 0.114, 'Q4', 4, 0, 0, 5, 41, '24', '1999-2019', 'Energy (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Process Chemistry and Technology (Q4); Safety, Risk, Reliability and Quality (Q4)'), (22233, 'Control and Cybernetics', 3248569, 0.114, 'Q4', 40, 11, 345, 20, 62, '17', '1996-2019', 'Applied Mathematics (Q4); Control and Systems Engineering (Q4); Modeling and Simulation (Q4)'), (22234, 'Dermatologia Revista Mexicana', 1854038, 0.114, 'Q4', 9, 93, 1680, 30, 208, '30', '1972-1986, 1988-1991, 1993, 1996-1999, 2001-2020', 'Dermatology (Q4)'), (22235, 'Dialog', 122033, 0.114, 'Q3', 5, 81, 83, 19, 114, '2', '1980, 1994, 1996, 2010-2020', 'Religious Studies (Q3)'), (22236, 'Early Modern Low Countries', 25431587, 0.114, 'Q3', 2, 5, 359, 13, 33, '16', '2017-2019', 'Cultural Studies (Q3); History (Q3)'), (22237, 'Education et Didactique', 21114838, 0.114, 'Q4', 2, 34, 1442, 7, 27, '8', '2018-2020', 'Developmental and Educational Psychology (Q4); Education (Q4); Social Sciences (miscellaneous) (Q4)'), (22238, 'E-Journal of Portuguese History', 16456432, 0.114, 'Q3', 4, 0, 0, 5, 46, '2', '2011-2019', 'History (Q3)'), (22239, 'Ethics and Medicine', 21688230, 0.114, 'Q3', 9, 12, 350, 6, 42, '2', '1986-1996, 2000-2006, 2009-2020', 'Philosophy (Q3); Religious Studies (Q3); Health Policy (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (22240, 'European Journal of Scandinavian Studies', 21919402, 0.114, 'Q2', 2, 18, 624, 3, 55, '5', '2010-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22241, 'Filosofia Unisinos', 15195023, 0.114, 'Q3', 4, 26, 612, 16, 98, '14', '2010-2019', 'Philosophy (Q3)'), (22242, 'Forum for Modern Language Studies', 158518, 0.114, 'Q2', 11, 22, 987, 8, 89, '3', '1965-2020', 'Literature and Literary Theory (Q2); Linguistics and Language (Q3)'), (22243, 'Gazzetta Medica Italiana Archivio per le Scie', 3933660, 0.114, 'Q4', 10, 102, 2531, 46, 386, '7', '1965, 1984-2020', 'Medicine (miscellaneous) (Q4)'), (22244, 'Genetic Engineering and Biotechnology News', 1935472, 0.114, 'Q4', 9, 215, 127, 47, 589, '2', '2007-2020', 'Bioengineering (Q4); Biomedical Engineering (Q4); Biotechnology (Q4); Management of Technology and Innovation (Q4)'), (22245, 'Grotiana', 1673831, 0.114, 'Q3', 8, 19, 844, 5, 24, '16', '1980-1982, 1984-1987, 1989-1991, 1993, 1997-1998, 2007-2010, 2012-2019', 'History (Q3); Law (Q4)'), (22246, 'Hikma', 15799794, 0.114, 'Q2', 2, 12, 539, 6, 39, '12', '2015-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22247, 'Historical Review', 17917603, 0.114, 'Q3', 4, 0, 0, 4, 21, '39', '2009-2019', 'History (Q3)'), (22248, 'Historicky Casopis', 182575, 0.114, 'Q3', 4, 28, 1982, 6, 74, '53', '1974, 1983, 1986, 1988, 2002-2019', 'History (Q3)'), (22249, 'Horizons', 3609669, 0.114, 'Q3', 7, 19, 589, 5, 45, '3', '1970, 1974-2020', 'Religious Studies (Q3); Education (Q4)'), (22250, 'Indian Journal of Thoracic and Cardiovascular', 9709134, 0.114, 'Q4', 9, 189, 3537, 43, 296, '4', '1982-1985, 1987, 1989, 1991-1996, 2000-2020', 'Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)'), (22251, 'International Bulletin of Mission Research', 23969407, 0.114, 'Q3', 2, 48, 37, 13, 87, '2', '2017-2020', 'Religious Studies (Q3)'), (22252, 'International Journal of Pharmaceutical Quali', 9759506, 0.114, 'Q4', 7, 84, 2087, 48, 198, '4', '2011, 2013-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (22253, 'International Journal of Speech, Language and', 17488885, 0.114, 'Q3', 27, 2, 56, 5, 27, '3', '1999-2020', 'Linguistics and Language (Q3); Law (Q4)'), (22254, 'International Journal of Technologies in Lear', 23272686, 0.114, 'Q4', 3, 7, 219, 2, 16, '2', '2013-2020', 'Computer Science Applications (Q4); Education (Q4); E-learning (Q4)'), (22255, 'Journal of American Ethnic History', 2785927, 0.114, 'Q3', 15, 16, 1128, 4, 52, '2', '1989, 2000-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4)'), (22256, 'Journal of Contextual Economics-Schmollers Ja', 25687603, 0.114, 'Q4', 1, 17, 44, 2, 7, '5', '2018', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4); Social Sciences (miscellaneous) (Q4)'), (22257, 'Journal of East Asia and International Law', 19769229, 0.114, 'Q4', 5, 23, 379, 14, 64, '13', '2011-2019', 'Law (Q4)'), (22258, 'Journal of Environmental Studies', 10258620, 0.114, 'Q4', 9, 0, 0, 3, 13, '15', '2002-2018', 'Ecology (Q4); Pollution (Q4); Waste Management and Disposal (Q4); Water Science and Technology (Q4)'), (22259, 'Journal of Gang Research', 10793062, 0.114, 'Q4', 9, 3, 123, 4, 31, '2', '2004-2020', 'Arts and Humanities (miscellaneous) (Q4); Gender Studies (Q4); Law (Q4); Social Sciences (miscellaneous) (Q4)'), (22260, 'Journal of Indian Academy of Forensic Medicin', 9710973, 0.114, 'Q4', 16, 23, 401, 35, 259, '4', '2011-2020', 'Pathology and Forensic Medicine (Q4)'), (22261, 'Journal of International and Global Studies', 21580669, 0.114, 'Q3', 4, 0, 0, 6, 17, '2', '2015-2017, 2019', 'Cultural Studies (Q3); Geography, Planning and Development (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22262, 'Journal of Social Development in Africa', 10121080, 0.114, 'Q4', 12, 0, 0, 5, 28, '97', '1986-2013, 2015-2018', 'Development (Q4); Geography, Planning and Development (Q4)'), (22263, 'Langages', 458726, 0.114, 'Q3', 15, 30, 844, 24, 97, '8', '1976, 2002-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22264, 'Medizinische Monatsschrift fur Pharmazeuten', 3429601, 0.114, 'Q4', 11, 101, 977, 27, 238, '5', '1978-2020', 'Pharmacology (medical) (Q4)'), (22265, 'Musicologica Brunensia', 2336436, 0.114, 'Q3', 2, 17, 380, 8, 110, '31', '2017-2019', 'Music (Q3)'), (22266, 'Nashim', 7938934, 0.114, 'Q3', 3, 11, 412, 6, 46, '2', '2013-2019', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4); Gender Studies (Q4)'), (22267, 'Obradoiro de Historia Moderna', 11330481, 0.114, 'Q3', 3, 11, 470, 3, 28, '12', '1999, 2001, 2012-2014, 2016-2019', 'History (Q3)'), (22268, 'Paediatria Croatica', 13301403, 0.114, 'Q4', 8, 7, 205, 6, 80, '58', '1993-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (22269, 'Pakistan Journal of Medical and Health Scienc', 19967195, 0.114, 'Q4', 7, 938, 21745, 123, 1600, '34', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (22270, 'PalArch s Journal of Archaeology of Egypt/ Eg', 1567214, 0.114, 'Q3', 2, 0, 0, 4, 5, '16', '2012-2013, 2015, 2017, 2019', 'Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)'), (22271, 'Phytomorphology: An International Journal of ', 319449, 0.114, 'Q4', 16, 0, 0, 2, 13, '4', '1996-2013, 2015-2016, 2018', 'Plant Science (Q4)'), (22272, 'Portal', 18479464, 0.114, 'Q2', 2, 11, 388, 3, 23, '58', '2015-2016, 2018-2019', 'Visual Arts and Performing Arts (Q2); Conservation (Q3)'), (22273, 'Potato Journal', 9708235, 0.114, 'Q4', 12, 0, 0, 5, 38, '4', '2009-2019', 'Agronomy and Crop Science (Q4)'), (22274, 'Praktische Tierarzt', 32681, 0.114, 'Q4', 17, 128, 1865, 17, 325, '5', '1976, 1980, 1996-2020', 'Veterinary (miscellaneous) (Q4)'), (22275, 'Psiquiatria Biologica', 1047787, 0.114, 'Q4', 7, 25, 673, 10, 66, '12', '1996-2020', 'Psychiatry and Mental Health (Q4)'), (22276, 'REC: CardioClinics', 26051532, 0.114, 'Q4', 4, 91, 1496, 30, 162, '12', '2019-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (22277, 'Revista Argentina de Radiologia', 487619, 0.114, 'Q4', 4, 38, 486, 16, 88, '5', '2013-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (22278, 'Revue des Etudes Slaves', 2117718, 0.114, 'Q2', 3, 31, 1082, 3, 97, '8', '1983, 1985, 1999-2000, 2011, 2013-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22279, 'Revue d Etudes Comparatives Est-Ouest', 3380599, 0.114, 'Q4', 9, 14, 969, 9, 50, '8', '1978, 1985, 1996-2020', 'Finance (Q4); Political Science and International Relations (Q4)'), (22280, 'Revue du Rhumatisme Monographies', 22120920, 0.114, 'Q4', 5, 55, 1434, 16, 153, '8', '2010-2020', 'Rheumatology (Q4)'), (22281, 'Revue Roumaine de Linguistique', 353957, 0.114, 'Q3', 6, 12, 370, 17, 68, '43', '2010-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22282, 'Ricerca e Pratica', 20382480, 0.114, 'Q4', 4, 0, 0, 7, 47, '7', '1990-2018', 'Medicine (miscellaneous) (Q4)'), (22283, 'Russian Literature', 3043479, 0.114, 'Q2', 6, 35, 1489, 14, 115, '16', '1971-1974, 1976-2020', 'Literature and Literary Theory (Q2)'), (22284, 'Sankhya: The Indian Journal of Statistics', 9727671, 0.114, 'Q4', 19, 15, 343, 9, 69, '4', '2005-2019', 'Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (22285, 'Specialusis Ugdymas', 13925369, 0.114, 'Q4', 5, 6, 172, 4, 28, '69', '2012-2019', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (22286, 'Sprache Stimme Gehor', 3420477, 0.114, 'Q4', 11, 73, 644, 7, 89, '5', '1980-2020', 'Applied Psychology (Q4); Psychiatry and Mental Health (Q4); Speech and Hearing (Q4)'), (22287, 'Statute Law Review', 1443593, 0.114, 'Q4', 11, 21, 713, 13, 57, '3', '1980-2020', 'Law (Q4)'), (22288, 'Studia Historica, Historia Moderna', 2132079, 0.114, 'Q3', 5, 16, 654, 9, 76, '12', '2001, 2011-2020', 'History (Q3)'), (22289, 'Studies in History', 2576430, 0.114, 'Q3', 11, 11, 0, 5, 30, '4', '1985-2020', 'History (Q3)'), (22290, 'Surgery, Gastroenterology and Oncology', 26011700, 0.114, 'Q4', 3, 38, 1074, 9, 100, '43', '2017-2020', 'Gastroenterology (Q4); Oncology (Q4); Surgery (Q4)'), (22291, 'Therapeutic Research', 2898020, 0.114, 'Q4', 6, 36, 249, 10, 248, '6', '1984-2020', 'Medicine (miscellaneous) (Q4)'), (22292, 'Travail et Emploi', 2244365, 0.114, 'Q4', 8, 0, 0, 7, 53, '8', '2008-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)'), (22293, 'Tumor', 10007431, 0.114, 'Q4', 8, 41, 1076, 37, 388, '1', '2007-2020', 'Cancer Research (Q4); Epidemiology (Q4); Oncology (Q4)'), (22294, 'Tyndale Bulletin', 827118, 0.114, 'Q3', 5, 0, 0, 4, 50, '2', '2008-2012, 2014-2019', 'Religious Studies (Q3)'), (22295, 'Wool Textile Journal', 10031456, 0.114, 'Q4', 5, 80, 271, 19, 240, '1', '2006-2018', 'Materials Science (miscellaneous) (Q4)'), (22296, 'World Chinese Journal of Digestology', 10093079, 0.114, 'Q4', 16, 164, 5010, 86, 920, '1', '2000-2020', 'Gastroenterology (Q4)'), (22297, 'World Customs Journal', 18346715, 0.114, 'Q4', 12, 11, 361, 15, 55, '11', '2007-2020', 'Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Safety Research (Q4)'), (22298, 'Zbornik Instituta za Pedagoska Istrazivanja', 5796431, 0.114, 'Q4', 7, 11, 583, 13, 44, '55', '2007-2020', 'Education (Q4)'), (22299, 'Zeitschrift fur Deutsches Altertum und Deutsc', 442518, 0.114, 'Q2', 5, 18, 684, 2, 45, '5', '1979-1980, 2002-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22300, 'Zeitschrift fur Dialektologie und Linguistik', 441449, 0.114, 'Q3', 7, 21, 998, 2, 21, '5', '2003-2017, 2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Sociology and Political Science (Q4)'), (22301, 'Acta Koreana', 15207412, 0.113, 'Q3', 6, 13, 427, 6, 67, '13', '2009-2019', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4)'), (22302, 'Acta Universitatis Sapientiae, Philologica', 23918179, 0.113, 'Q3', 1, 53, 1378, 3, 80, '17', '2017-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22303, 'Al- Arabiyya', 23754036, 0.113, 'Q2', 1, 0, 0, 2, 6, '2', '2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (22304, 'American Periodicals', 10547479, 0.113, 'Q2', 5, 15, 409, 8, 38, '2', '2010-2020', 'Literature and Literary Theory (Q2)'), (22305, 'Analisi Linguistica e Letteraria', 11221917, 0.113, 'Q2', 3, 11, 632, 4, 62, '7', '2014-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22306, 'Anestezi Dergisi', 13000578, 0.113, 'Q4', 5, 34, 745, 10, 156, '18', '2002-2020', 'Anesthesiology and Pain Medicine (Q4)'), (22307, 'Archiv fur Rechts- und Sozialphilosophie', 12343, 0.113, 'Q3', 4, 27, 1776, 6, 87, '5', '2011-2020', 'Philosophy (Q3); Law (Q4)'), (22308, 'Arkansas Historical Quarterly', 41823, 0.113, 'Q3', 8, 0, 0, 2, 32, '2', '1976, 1978, 1980, 1983, 1988, 2002-2018', 'History (Q3)'), (22309, 'Australian Educational Computing', 8169020, 0.113, 'Q4', 14, 5, 310, 5, 19, '11', '2002-2020', 'Computer Science Applications (Q4); Education (Q4); E-learning (Q4)'), (22310, 'Azerbaijan Pharmaceutical and Pharmacotherapy', 19941951, 0.113, 'Q4', 3, 8, 73, 8, 40, '92', '2009-2019', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (22311, 'Bulletin de l Academie Nationale de Medecine', 14079, 0.113, 'Q4', 23, 146, 3966, 41, 391, '8', '1947-1949, 1951-2020', 'Medicine (miscellaneous) (Q4)'), (22312, 'Cancer and Chemotherapy Reviews', 1885740, 0.113, 'Q4', 3, 0, 0, 4, 22, '12', '2007-2019', 'Oncology (Q4); Pharmacology (medical) (Q4)'), (22313, 'Chinese Journal of Forensic Medicine', 10015728, 0.113, 'Q4', 5, 0, 0, 3, 36, '1', '1989-1990, 2005-2014, 2016-2017', 'Pathology and Forensic Medicine (Q4)'), (22314, 'Clinical Medicine Insights: Geriatrics', 11795530, 0.113, 'Q4', 2, 0, 0, 2, 2, '41', '2011, 2013, 2015-2017', 'Geriatrics and Gerontology (Q4)'), (22315, 'Cognition, Brain, Behavior', 12248398, 0.113, 'Q4', 9, 0, 0, 1, 8, '43', '2012-2015, 2017', 'Experimental and Cognitive Psychology (Q4)'), (22316, 'Cross-Currents', 21589674, 0.113, 'Q3', 3, 12, 587, 11, 68, '2', '2016-2020', 'Cultural Studies (Q3); History (Q3)'), (22317, 'Dance Chronicle', 15324257, 0.113, 'Q2', 7, 14, 0, 8, 42, '3', '1977-2020', 'Visual Arts and Performing Arts (Q2)'), (22318, 'Dentistry Today', 87502186, 0.113, 'Q4', 24, 57, 377, 8, 307, '2', '1989-1992, 1994-2020', 'Dentistry (miscellaneous) (Q4)'), (22319, 'Dialogue', 2428962, 0.113, 'Q3', 8, 50, 1051, 11, 80, '13', '2001-2020', 'Philosophy (Q3); Development (Q4); Health (social science) (Q4); Social Psychology (Q4)'), (22320, 'Eighteenth Century', 19350201, 0.113, 'Q3', 9, 14, 539, 9, 100, '2', '1981, 1983, 1986, 2000-2019', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4)'), (22321, 'English Australia Journal', 22026169, 0.113, 'Q3', 1, 0, 0, 3, 21, '11', '2018', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Education (Q4)'), (22322, 'English Literature in Transition, 1880-1920', 138339, 0.113, 'Q2', 9, 27, 1293, 6, 59, '2', '2002-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (22323, 'Fluminensia', 3534642, 0.113, 'Q2', 4, 24, 583, 9, 81, '58', '2011-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22324, 'Gaceta Medica de Caracas', 3674762, 0.113, 'Q4', 5, 53, 1929, 5, 56, '94', '1954-1957, 1959-1965, 1971-1976, 1978-1988, 2008-2014, 2017-2020', 'Medicine (miscellaneous) (Q4)'), (22325, 'Glottotheory', 21966907, 0.113, 'Q3', 3, 16, 751, 1, 24, '5', '2015-2020', 'History (Q3); Linguistics and Language (Q3)'), (22326, 'Haseki Tip Bulteni', 21472688, 0.113, 'Q4', 4, 79, 1916, 30, 214, '18', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (22327, 'Histoire et Societes Rurales', 1254728, 0.113, 'Q3', 7, 10, 492, 3, 26, '8', '1995, 1999, 2001-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4); Geography, Planning and Development (Q4)'), (22328, 'Histoire Sociale', 19186576, 0.113, 'Q3', 12, 22, 10, 2, 44, '9', '1976-1977, 1979, 1981, 1983-1987, 1996-2020', 'History (Q3); Sociology and Political Science (Q4)'), (22329, 'Huadong Ligong Daxue Xuebao /Journal of East ', 10063080, 0.113, 'Q4', 11, 103, 2316, 71, 392, '1', '1993-1995, 2001-2020', 'Chemical Engineering (miscellaneous) (Q4); Engineering (miscellaneous) (Q4); Materials Chemistry (Q4)'), (22330, 'Indonesian Journal of International and Compa', 2338770, 0.113, 'Q3', 1, 19, 0, 1, 34, '21', '2018-2020', 'Cultural Studies (Q3); Law (Q4); Sociology and Political Science (Q4)'), (22331, 'International Journal of Low Radiation', 17419190, 0.113, 'Q4', 14, 9, 241, 3, 17, '3', '2004, 2006-2011, 2013-2015', 'Health, Toxicology and Mutagenesis (Q4); Public Health, Environmental and Occupational Health (Q4)'), (22332, 'International Polymer Science and Technology', 307174, 0.113, 'Q4', 6, 0, 0, 28, 177, '3', '1974-1989, 2011-2018', 'Polymers and Plastics (Q4)'), (22333, 'Italian Law Journal', 24212156, 0.113, 'Q3', 1, 14, 1140, 2, 48, '7', '2018', 'Cultural Studies (Q3); Law (Q4)'), (22334, 'Japanese Journal of Gastroenterology', 4466586, 0.113, 'Q4', 14, 124, 3374, 43, 381, '6', '1964-2020', 'Gastroenterology (Q4); Medicine (miscellaneous) (Q4)'), (22335, 'Japanese Journal of Leprosy', 13423681, 0.113, 'Q4', 6, 1, 13, 1, 17, '6', '1978-2020', 'Dermatology (Q4); Infectious Diseases (Q4); Medicine (miscellaneous) (Q4)'), (22336, 'Jewish Film and New Media', 21690324, 0.113, 'Q2', 4, 5, 248, 3, 28, '2', '2013-2017, 2019', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Anthropology (Q4); Communication (Q4)'), (22337, 'Jordan Journal of Modern Languages and Litera', 19946953, 0.113, 'Q2', 2, 34, 1063, 3, 36, '62', '2018-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22338, 'Journal of Advances in Medical and Biomedical', 26766264, 0.113, 'Q4', 12, 49, 1446, 20, 189, '15', '2019-2020', 'Medicine (miscellaneous) (Q4)'), (22339, 'Journal of Chinese Humanities', 23521333, 0.113, 'Q2', 2, 6, 204, 2, 29, '16', '2014-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Philosophy (Q3)'), (22340, 'Journal of Contemporary Drama in English', 21950156, 0.113, 'Q2', 4, 18, 479, 7, 58, '5', '2013-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)'), (22341, 'Journal of Early Christian Studies', 10676341, 0.113, 'Q3', 22, 21, 1709, 10, 61, '2', '2002-2020', 'History (Q3); Religious Studies (Q3)'), (22342, 'Journal of Egyptian Archaeology', 3075133, 0.113, 'Q3', 9, 20, 0, 8, 58, '3', '1964, 1966-1967, 1969, 1971-1972, 1975, 1980, 2002-2010, 2012-2019', 'Archeology (arts and humanities) (Q3); History (Q3); Archeology (Q4)'), (22343, 'Journal of Empirical Generalisations in Marke', 13264443, 0.113, 'Q4', 11, 2, 40, 1, 3, '11', '1996-2003, 2005-2007, 2009-2010, 2013-2014, 2016-2019', 'Marketing (Q4)'), (22344, 'Journal of European Integration History', 9479511, 0.113, 'Q3', 5, 18, 991, 5, 43, '5', '2013-2019', 'History (Q3); Political Science and International Relations (Q4)'), (22345, 'Journal of Japan Industrial Management Associ', 13422618, 0.113, 'Q4', 8, 13, 217, 7, 70, '6', '2004-2020', 'Applied Mathematics (Q4); Industrial and Manufacturing Engineering (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)'), (22346, 'Journal of Numerical Analysis, Industrial and', 17908159, 0.113, 'Q4', 23, 1, 32, 6, 15, '39', '2006-2013, 2015-2019', 'Applied Mathematics (Q4); Computational Mathematics (Q4); Numerical Analysis (Q4)'), (22347, 'Journal of Religious and Theological Informat', 15286924, 0.113, 'Q3', 6, 11, 403, 5, 27, '2', '1993-1994, 1996, 2000-2004, 2006-2020', 'Religious Studies (Q3)'), (22348, 'Journal of the Royal Musical Association', 14716933, 0.113, 'Q3', 16, 13, 620, 6, 39, '3', '1987-2019', 'Music (Q3)'), (22349, 'Keikinzoku Yosetsu/Journal of Light Metal Wel', 3685306, 0.113, 'Q4', 8, 33, 357, 2, 10, '6', '1975, 1978-1994, 1996-2002, 2005-2020', 'Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (22350, 'Klinikarzt', 14393859, 0.113, 'Q4', 6, 105, 1834, 16, 220, '5', '1996-2020', 'Medicine (miscellaneous) (Q4)'), (22351, 'McGill Journal of Law and Health', 19204833, 0.113, 'Q4', 4, 4, 3, 3, 17, '9', '2013-2020', 'Health Policy (Q4); Law (Q4)'), (22352, 'Melanges de l Ecole Francaise de Rome:Antiqui', 2235102, 0.113, 'Q2', 8, 33, 2027, 16, 89, '7', '2002-2007, 2009-2012, 2014-2018', 'Classics (Q2); Visual Arts and Performing Arts (Q2); Archeology (Q3); Archeology (arts and humanities) (Q3); History (Q3)'), (22353, 'Meta', 20673655, 0.113, 'Q3', 3, 10, 333, 4, 57, '43', '2009-2018', 'Philosophy (Q3)'), (22354, 'Metas de Enfermeria', 11387262, 0.113, 'Q4', 1, 9, 241, 4, 53, '12', '2019-2020', 'Nursing (miscellaneous) (Q4)'), (22355, 'Nachrichten aus der Chemie', 14399598, 0.113, 'Q4', 17, 299, 1971, 35, 335, '5', '1982-1984, 1986, 1996-2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (22356, 'Neue Zeitschrift fur Systematische Theologie ', 16129520, 0.113, 'Q3', 7, 23, 553, 6, 88, '5', '1959-2020', 'Philosophy (Q3); Religious Studies (Q3)'), (22357, 'Nihon Enerugi Gakkaishi/Journal of the Japan ', 9168753, 0.113, 'Q4', 18, 29, 732, 4, 15, '6', '1990-2010, 2013, 2015-2016', 'Energy Engineering and Power Technology (Q4); Energy (miscellaneous) (Q4); Fuel Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (22358, 'Nordisk Judaistik', 23434929, 0.113, 'Q3', 2, 18, 367, 14, 9, '38', '2019-2020', 'Cultural Studies (Q3); History (Q3); Religious Studies (Q3); Anthropology (Q4)'), (22359, 'North Korean Review', 15512789, 0.113, 'Q3', 7, 7, 124, 5, 24, '2', '2010-2017, 2019', 'Cultural Studies (Q3); History (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22360, 'Novosti Khirurgii', 23050047, 0.113, 'Q4', 4, 74, 1554, 38, 248, '75', '2013-2020', 'Surgery (Q4)'), (22361, 'Pharmacoeconomics - Spanish Research Articles', 1695405, 0.113, 'Q4', 6, 0, 0, 4, 16, '19', '2007-2018', 'Health Policy (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (22362, 'Politix', 2952319, 0.113, 'Q4', 15, 22, 670, 13, 73, '8', '2008-2020', 'Sociology and Political Science (Q4)'), (22363, 'Pragmatism Today', 13382799, 0.113, 'Q3', 2, 0, 0, 7, 46, '53', '2017-2018', 'Philosophy (Q3)'), (22364, 'Prooftexts - Journal of Jewish Literature His', 2729601, 0.113, 'Q2', 9, 6, 410, 3, 42, '2', '2002-2015, 2017-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Religious Studies (Q3)'), (22365, 'Quinnipiac Law Review', 10738606, 0.113, 'Q4', 1, 0, 0, 2, 27, '2', '2016-2018', 'Law (Q4)'), (22366, 'Religion Compass', 17498171, 0.113, 'Q3', 1, 30, 1800, 2, 11, '2', '2019-2020', 'Religious Studies (Q3)'), (22367, 'Retina Today', 18250572, 0.113, 'Q4', 7, 109, 560, 10, 34, '2', '2008-2020', 'Ophthalmology (Q4)'), (22368, 'Review of Croatian History', 18454380, 0.113, 'Q3', 1, 11, 237, 5, 32, '58', '2015-2019', 'History (Q3)'), (22369, 'Revista de Bioetica y Derecho', 18865887, 0.113, 'Q4', 1, 57, 1474, 3, 37, '12', '2019-2020', 'Law (Q4); Sociology and Political Science (Q4)'), (22370, 'Revista de Humanidades', 7170491, 0.113, 'Q4', 4, 29, 899, 9, 72, '45', '2011-2020', 'Arts and Humanities (miscellaneous) (Q4)'), (22371, 'Revista Espanola de Nutricion Comunitaria', 11353074, 0.113, 'Q4', 10, 26, 916, 8, 84, '12', '2001-2010, 2012-2019', 'Medicine (miscellaneous) (Q4); Nutrition and Dietetics (Q4)'), (22372, 'Revista Republicana', 19094450, 0.113, 'Q4', 7, 20, 681, 6, 56, '47', '2016-2020', 'Law (Q4); Sociology and Political Science (Q4)'), (22373, 'Revue d Histoire des Textes', 3736075, 0.113, 'Q2', 6, 13, 596, 3, 39, '24', '1973-1974, 1976, 1982, 1988-1989, 2006-2019', 'Literature and Literary Theory (Q2)'), (22374, 'Revue Francaise d Etudes Americaines', 3977870, 0.113, 'Q3', 5, 32, 1016, 4, 93, '8', '1990, 1996-2020', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (22375, 'Shakespeare', 17450918, 0.113, 'Q2', 9, 48, 1233, 10, 136, '3', '2005-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2)'), (22376, 'Sociologia y Tecnociencia', 19898487, 0.113, 'Q4', 1, 0, 0, 7, 26, '12', '2018-2019', 'Development (Q4); Health (social science) (Q4); Management of Technology and Innovation (Q4); Sociology and Political Science (Q4)'), (22377, 'Vestnik Sankt-Peterburgskogo Universiteta, Is', 25422243, 0.113, 'Q2', 2, 34, 1032, 9, 100, '10', '2016-2020', 'Visual Arts and Performing Arts (Q2); Conservation (Q3); History (Q3); Music (Q3)'), (22378, 'Zeitschrift fur Ethnologie', 442666, 0.113, 'Q3', 9, 0, 0, 8, 13, '5', '1981, 2005-2015, 2017', 'Cultural Studies (Q3); Social Sciences (miscellaneous) (Q4)'), (22379, 'Zeitschrift fur Romanische Philologie', 498661, 0.113, 'Q2', 8, 43, 1952, 21, 136, '5', '1877-1913, 1917, 1919-1944, 1949-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22380, 'ACG Case Reports Journal', 23263253, 0.112, 'Q4', 4, 0, 0, 0, 2, '2', '2014-2017, 2019', 'Medicine (miscellaneous) (Q4)'), (22381, 'Acta Classica', 651141, 0.112, 'Q3', 4, 14, 709, 4, 40, '27', '1973, 1975, 2010-2019', 'Classics (Q3)'), (22382, 'Aesthetic Medicine', 24217115, 0.112, 'Q4', 1, 24, 577, 1, 17, '7', '2019-2020', 'Dermatology (Q4); Medicine (miscellaneous) (Q4); Surgery (Q4)'), (22383, 'Akademik Acil Tip Olgu Sunumlari Dergisi', 1309534, 0.112, 'Q4', 0, 0, 0, 0, 2, '18', '2014, 2016-2017', 'Emergency Medicine (Q4)'), (22384, 'American University law review, The', 31453, 0.112, 'Q4', 6, 0, 0, 0, 2, '2', '1977-1978, 1982, 1991-1997, 1999-2002, 2004-2008, 2011-2017', 'Law (Q4)'), (22385, 'Amme Idaresi Dergisi', 13001795, 0.112, 'Q4', 5, 11, 603, 4, 72, '18', '2008-2020', 'Public Administration (Q4); Sociology and Political Science (Q4)'), (22386, 'Annals of Biology', 9700153, 0.112, 'Q4', 7, 97, 1740, 46, 202, '4', '1973-1975, 1981, 1987-1997, 2003-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (22387, 'ANQ - Quarterly Journal of Short Articles Not', 895769, 0.112, 'Q2', 7, 153, 2310, 32, 81, '2', '1988-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3)'), (22388, 'Antibiotiki i Khimioterapiya', 2352990, 0.112, 'Q4', 11, 38, 1299, 28, 167, '10', '1988-2019', 'Infectious Diseases (Q4); Medicine (miscellaneous) (Q4); Microbiology (Q4); Microbiology (medical) (Q4)'), (22389, 'Antibodies', 20734468, 0.112, 'Q4', 6, 0, 0, 0, 2, '19', '2014-2017', 'Drug Discovery (Q4); Immunology (Q4); Immunology and Allergy (Q4)'), (22390, 'Appita Journal', 10386807, 0.112, 'Q3', 32, 0, 0, 14, 49, '11', '1996-2014, 2016-2018', 'Media Technology (Q3)'), (22391, 'Architectural Theory Review', 17550475, 0.112, 'Q2', 10, 21, 0, 9, 35, '3', '2008-2016, 2018-2020', 'Visual Arts and Performing Arts (Q2)'), (22392, 'Archiv fur Musikwissenschaft', 39292, 0.112, 'Q3', 5, 15, 678, 2, 41, '5', '2002-2020', 'Music (Q3)'), (22393, 'Arterial Hypertension', 24496170, 0.112, 'Q4', 9, 25, 856, 8, 68, '17', '2015-2020', 'Cardiology and Cardiovascular Medicine (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (22394, 'Aut Aut', 50601, 0.112, 'Q3', 3, 58, 1129, 5, 135, '7', '2009-2020', 'Cultural Studies (Q3); Philosophy (Q3)'), (22395, 'Bakhtiniana', 21764573, 0.112, 'Q2', 3, 47, 1277, 8, 117, '14', '2015-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3); Philosophy (Q3)'), (22396, 'BTRA Scan', 9728341, 0.112, 'Q4', 3, 0, 0, 0, 2, '4', '1987-1999, 2001-2017', 'Business, Management and Accounting (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)'), (22397, 'China s Refractories', 10044493, 0.112, 'Q4', 4, 12, 95, 3, 78, '1', '2012-2019', 'Ceramics and Composites (Q4)'), (22398, 'Chinese Journal of Infection and Chemotherapy', 10097708, 0.112, 'Q4', 10, 0, 0, 61, 356, '1', '2006-2019', 'Infectious Diseases (Q4); Microbiology (medical) (Q4); Pharmacology (medical) (Q4)'), (22399, 'Chinese Language and Discourse', 18777031, 0.112, 'Q2', 6, 14, 689, 3, 24, '16', '2010-2020', 'Visual Arts and Performing Arts (Q2); Linguistics and Language (Q3)'), (22400, 'Clinical Lipidology and Metabolic Disorders', 26415321, 0.112, 'Q4', 28, 0, 0, 0, 2, '3', '2019', 'Cardiology and Cardiovascular Medicine (Q4); Endocrinology, Diabetes and Metabolism (Q4)'), (22401, 'Clinical privilege white paper', 0, 0.112, 'Q4', 2, 0, 0, 0, 2, '2', '1997-2017', 'Medicine (miscellaneous) (Q4)'), (22402, 'Clinical Skin Cancer', 24058645, 0.112, 'Q4', 3, 0, 0, 3, 13, '2', '2016-2017', 'Dermatology (Q4); Oncology (Q4)'), (22403, 'Comunicacoes Geologicas', 873948, 0.112, 'Q4', 14, 78, 1746, 5, 21, '26', '2007-2018, 2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (22404, 'Configurations', 10806520, 0.112, 'Q2', 22, 17, 0, 15, 55, '2', '1993-1994, 1996-2001, 2004-2020', 'Literature and Literary Theory (Q2); Philosophy (Q3); Health (social science) (Q4)'), (22405, 'Contemporary Arab Affairs', 17550912, 0.112, 'Q3', 10, 1, 40, 18, 87, '2', '2010-2019', 'Cultural Studies (Q3); Political Science and International Relations (Q4)'), (22406, 'Corrosion and Materials', 13261932, 0.112, 'Q4', 5, 9, 132, 8, 63, '11', '2011-2020', 'Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (22407, 'Cuadernos de Musica, Artes Visuales y Artes E', 17946670, 0.112, 'Q2', 2, 24, 592, 9, 71, '47', '2012-2020', 'Visual Arts and Performing Arts (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3); Music (Q3)'), (22408, 'Dialectologia', 20132247, 0.112, 'Q3', 8, 22, 614, 6, 72, '12', '2008-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22409, 'Dialogos', 14159945, 0.112, 'Q3', 4, 49, 1785, 4, 103, '14', '2012-2019', 'History (Q3)'), (22410, 'Dilbilim Arastirmalari Dergisi', 13008552, 0.112, 'Q3', 1, 12, 583, 1, 12, '18', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22411, 'Dokkyo Journal of Medical Sciences', 3855023, 0.112, 'Q4', 6, 21, 287, 2, 59, '6', '1978-2020', 'Medicine (miscellaneous) (Q4)'), (22412, 'Eksperimental naya i Klinicheskaya Farmakolog', 8692092, 0.112, 'Q4', 15, 46, 646, 57, 277, '10', '1992-2019', 'Medicine (miscellaneous) (Q4); Pharmacology (Q4); Toxicology (Q4)'), (22413, 'Enfermedades Infecciosas y Microbiologia', 14050994, 0.112, 'Q4', 7, 19, 375, 7, 59, '30', '1997-2014, 2017-2019', 'Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (22414, 'Epilepsy and Paroxysmal Conditions', 20778333, 0.112, 'Q4', 1, 32, 806, 0, 2, '10', '2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (22415, 'Estudos Internacionais', 2317773, 0.112, 'Q4', 2, 22, 1228, 13, 63, '14', '2017-2020', 'Political Science and International Relations (Q4)'), (22416, 'Ethnologia', 11060972, 0.112, 'Q3', 1, 0, 0, 0, 2, '39', '2010, 2012-2013, 2015-2017', 'Cultural Studies (Q3); Anthropology (Q4)'), (22417, 'Feminist Theology', 17455189, 0.112, 'Q3', 9, 21, 403, 4, 66, '3', '1992-2020', 'Religious Studies (Q3); Gender Studies (Q4)'), (22418, 'Film-Philosophy', 14664615, 0.112, 'Q2', 1, 16, 516, 2, 16, '3', '2019-2020', 'Visual Arts and Performing Arts (Q2); Philosophy (Q3); Communication (Q4)'), (22419, 'Filologia Mediolatina', 11240008, 0.112, 'Q3', 2, 15, 62, 2, 34, '7', '2015-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22420, 'Geologie und Palaeontologie in Westfalen', 176148, 0.112, 'Q4', 11, 0, 0, 0, 2, '5', '1987, 1992, 1994-2001, 2003-2012, 2014-2017', 'Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)'), (22421, 'George Eliot-George Henry Lewes Studies', 23721901, 0.112, 'Q2', 1, 7, 250, 4, 18, '2', '2017-2020', 'Literature and Literary Theory (Q2)'), (22422, 'Good Society', 10890017, 0.112, 'Q3', 7, 0, 0, 6, 38, '2', '2010-2018', 'Philosophy (Q3); Sociology and Political Science (Q4)'), (22423, 'Hiroshima Journal of Medical Sciences', 182052, 0.112, 'Q4', 16, 0, 0, 15, 69, '6', '1964-2018', 'Medicine (miscellaneous) (Q4)'), (22424, 'Historia Social', 2142570, 0.112, 'Q3', 7, 26, 1487, 7, 78, '12', '2011-2019', 'History (Q3); Sociology and Political Science (Q4)'), (22425, 'Historical Geography', 10916458, 0.112, 'Q3', 17, 0, 0, 6, 32, '2', '1995, 1997-2003, 2005-2012', 'History (Q3); Arts and Humanities (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (22426, 'Hong Kong Law Journal', 3780600, 0.112, 'Q4', 7, 0, 0, 0, 2, '3', '1985, 2010-2014, 2016-2017', 'Law (Q4)'), (22427, 'Hortus Artium Mediaevalium', 13307274, 0.112, 'Q2', 7, 35, 402, 10, 161, '24', '2002-2019', 'Visual Arts and Performing Arts (Q2); History (Q3)'), (22428, 'Indian Journal of Radio and Space Physics', 3678393, 0.112, 'Q4', 22, 8, 146, 3, 19, '4', '1996-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (22429, 'Indonesian Aquaculture Journal', 2150883, 0.112, 'Q4', 1, 12, 267, 2, 7, '21', '2019-2020', 'Aquatic Science (Q4); Genetics (Q4); Water Science and Technology (Q4)'), (22430, 'International Journal of Clinical Dentistry', 19395833, 0.112, 'Q4', 5, 42, 1196, 8, 100, '2', '2008-2020', 'Dentistry (miscellaneous) (Q4)'), (22431, 'International Journal of Current Research and', 9755241, 0.112, 'Q4', 4, 555, 13321, 12, 59, '4', '2014, 2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (22432, 'International Journal of Nano and Biomaterial', 17528941, 0.112, 'Q4', 11, 12, 304, 10, 47, '3', '2009-2012, 2014', 'Atomic and Molecular Physics, and Optics (Q4); Biomaterials (Q4); Biomedical Engineering (Q4); Nanoscience and Nanotechnology (Q4); Physical and Theoretical Chemistry (Q4)'), (22433, 'Issue brief (Commonwealth Fund)', 15586847, 0.112, 'Q4', 24, 0, 0, 0, 2, '2', '1998-2017', 'Medicine (miscellaneous) (Q4)'), (22434, 'Janus.net', 16477251, 0.112, 'Q4', 2, 20, 855, 8, 52, '26', '2014-2020', 'Law (Q4); Political Science and International Relations (Q4)'), (22435, 'Japanese Journal of Chemotherapy', 13407007, 0.112, 'Q4', 12, 37, 757, 7, 95, '6', '1995-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (22436, 'Journal of Acute Care Physical Therapy', 21590524, 0.112, 'Q4', 0, 0, 0, 0, 2, '2', '2019', 'Critical Care and Intensive Care Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (22437, 'Journal of Ancient Civilizations', 10049371, 0.112, 'Q3', 1, 12, 822, 1, 24, '1', '2018-2020', 'Archeology (arts and humanities) (Q3); History (Q3); Archeology (Q4)'), (22438, 'Journal of Contemporary Chinese Art', 2051705, 0.112, 'Q2', 1, 18, 559, 3, 18, '3', '2019', 'Visual Arts and Performing Arts (Q2)'), (22439, 'Journal of Ecclesiastical History', 220469, 0.112, 'Q3', 19, 28, 1201, 14, 76, '3', '1950-2020', 'History (Q3); Religious Studies (Q3)'), (22440, 'Journal of European Economic History', 3915115, 0.112, 'Q3', 4, 9, 777, 6, 48, '7', '1974-1975, 1979, 1981-1984, 1999-2001, 2012-2020', 'History (Q3); Economics and Econometrics (Q4)'), (22441, 'Journal of Health Sciences', 19868049, 0.112, 'Q4', 3, 31, 865, 10, 54, '90', '2018-2020', 'Medicine (miscellaneous) (Q4); Nursing (miscellaneous) (Q4)'), (22442, 'Journal of Medical Licensure and Discipline', 1547481, 0.112, 'Q4', 8, 0, 0, 0, 2, '2', '2008-2017', 'Education (Q4); Health Policy (Q4); LPN and LVN (Q4)'), (22443, 'Journal of Modern Craft', 17496780, 0.112, 'Q2', 5, 27, 0, 8, 45, '3', '2011-2020', 'Visual Arts and Performing Arts (Q2)'), (22444, 'Journal of Somali Studies', 20565682, 0.112, 'Q3', 1, 13, 410, 1, 12, '3', '2018-2019', 'Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Sociology and Political Science (Q4)'), (22445, 'Journal of Thermodynamics', 16879252, 0.112, 'Q4', 11, 0, 0, 0, 2, '32', '2012-2017', 'Biophysics (Q4); Physical and Theoretical Chemistry (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (22446, 'Kardiovaskulare Medizin', 14235528, 0.112, 'Q4', 2, 0, 0, 0, 2, '19', '2014-2017', 'Cardiology and Cardiovascular Medicine (Q4)'), (22447, 'Language and Psychoanalysis', 2049324, 0.112, 'Q3', 1, 5, 284, 1, 14, '3', '2018-2020', 'Linguistics and Language (Q3); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (22448, 'Marmara Medical Journal', 13099469, 0.112, 'Q4', 11, 27, 608, 18, 71, '18', '1996-2020', 'Medicine (miscellaneous) (Q4)'), (22449, 'Master Drawings', 255025, 0.112, 'Q2', 5, 22, 743, 4, 57, '2', '2002-2019', 'Visual Arts and Performing Arts (Q2)'), (22450, 'Mediterranea: Ricerche Storiche', 1828230, 0.112, 'Q3', 4, 21, 1520, 6, 66, '7', '2009-2019', 'History (Q3)'), (22451, 'Medizinhistorisches Journal', 258431, 0.112, 'Q4', 12, 14, 894, 6, 29, '5', '1969-2020', 'History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)'), (22452, 'Mercian Geologist', 25990, 0.112, 'Q4', 9, 14, 188, 3, 29, '3', '1979-1989, 1991-2001, 2003, 2005-2006, 2010-2019', 'Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4)'), (22453, 'Monumenta Nipponica', 270741, 0.112, 'Q3', 10, 3, 179, 3, 15, '6', '1979, 2001-2019', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4)'), (22454, 'NEC Technical Journal', 18805884, 0.112, 'Q4', 11, 0, 0, 18, 81, '6', '2006-2019', 'Electrical and Electronic Engineering (Q4); Hardware and Architecture (Q4); Information Systems (Q4); Materials Science (miscellaneous) (Q4)'), (22455, 'Notes and Queries', 293970, 0.112, 'Q2', 8, 110, 1605, 24, 312, '3', '1849-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3); Library and Information Sciences (Q4)'), (22456, 'Open Hypertension Journal', 18765262, 0.112, 'Q4', 4, 2, 34, 3, 12, '52', '2011, 2013-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (22457, 'Patologicheskaya Fiziologiya i Eksperimentaln', 312991, 0.112, 'Q4', 9, 0, 0, 4, 16, '10', '1957-2017', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (22458, 'Pediatriya - Zhurnal im G.N. Speranskogo', 31403, 0.112, 'Q4', 5, 238, 5461, 89, 618, '10', '1945-1956, 1958-1993, 2016-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (22459, 'Postmodern Culture', 10531920, 0.112, 'Q2', 9, 10, 335, 7, 59, '2', '2002-2019', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Cultural Studies (Q3)'), (22460, 'Przeglad Archeologiczny', 797138, 0.112, 'Q3', 2, 10, 833, 5, 14, '17', '2019', 'Archeology (arts and humanities) (Q3); Archeology (Q4)'), (22461, 'Psychology and Education', 333077, 0.112, 'Q4', 10, 3, 130, 11, 80, '2', '1973-1975, 1979, 1994, 1996-2020', 'Developmental and Educational Psychology (Q4); Education (Q4); Psychology (miscellaneous) (Q4)'), (22462, 'Psychoterapie', 18023983, 0.112, 'Q4', 1, 13, 296, 1, 16, '31', '2019-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (22463, 'Recherche en soins infirmiers', 2972964, 0.112, 'Q4', 9, 26, 0, 15, 101, '8', '1996-2020', 'Medicine (miscellaneous) (Q4)'), (22464, 'Reformation', 13574175, 0.112, 'Q3', 2, 10, 0, 2, 25, '3', '2013-2020', 'Religious Studies (Q3)'), (22465, 'Revista Chilena de Cirugia', 3793893, 0.112, 'Q4', 10, 0, 0, 43, 186, '45', '2008-2018', 'Surgery (Q4)'), (22466, 'Revista de Antropologia Social', 19882831, 0.112, 'Q4', 10, 29, 1083, 6, 57, '12', '2001, 2009-2020', 'Anthropology (Q4)'), (22467, 'Revista de la Federacion Argentina de Cardiol', 16665694, 0.112, 'Q4', 5, 34, 577, 8, 96, '46', '2012-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (22468, 'Revue de Chirurgie Orthopedique et Traumatolo', 18770517, 0.112, 'Q4', 44, 274, 4618, 34, 714, '8', '2009-2020', 'Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (22469, 'RomanoArabica', 15826953, 0.112, 'Q3', 2, 0, 0, 0, 2, '43', '2014, 2016, 2019', 'Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22470, 'Rural Landscapes', 20020104, 0.112, 'Q3', 1, 3, 343, 0, 2, '20', '2019-2020', 'History (Q3); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4)'), (22471, 'Sartre Studies International', 13571559, 0.112, 'Q2', 1, 13, 384, 4, 32, '3', '2017-2020', 'Literature and Literary Theory (Q2); Philosophy (Q3)'), (22472, 'Spirale', 12784699, 0.112, 'Q4', 5, 124, 668, 5, 196, '8', '2001-2020', 'Developmental and Educational Psychology (Q4); Education (Q4); Health (social science) (Q4)'), (22473, 'Steinbeck Review', 1546007, 0.112, 'Q2', 2, 15, 261, 4, 44, '2', '2017-2019', 'Literature and Literary Theory (Q2)'), (22474, 'Studies in Chinese Linguistics', 10171274, 0.112, 'Q3', 5, 10, 520, 2, 15, '1', '2014-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22475, 'Studies in Spanish and Latin American Cinemas', 20504845, 0.112, 'Q2', 5, 16, 569, 6, 52, '3', '2013-2019', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); Communication (Q4); Multidisciplinary (Q4)'), (22476, 'Sudosteuropa', 722480, 0.112, 'Q3', 2, 28, 686, 8, 48, '5', '1985, 1989-1990, 2018-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q'), (22477, 'SVMMA', 20147023, 0.112, 'Q2', 2, 0, 0, 2, 24, '12', '2013-2019', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); Archeology (arts and humanities) (Q3); History (Q3); Philosophy (Q3)'), (22478, 'Tethys', 16971523, 0.112, 'Q4', 6, 2, 66, 2, 4, '12', '2012-2020', 'Atmospheric Science (Q4)'), (22479, 'Theoria et Historia Scientiarum', 8674159, 0.112, 'Q3', 1, 2, 299, 3, 18, '17', '2018-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Cognitive Neuroscience (Q4); Communication (Q4)'), (22480, 'Tidsskriftet FoU i Praksis', 18906990, 0.112, 'Q4', 3, 0, 0, 2, 24, '33', '2011-2014, 2016-2018', 'Education (Q4)'), (22481, 'Transactions of the American Philosophical So', 659746, 0.112, 'Q3', 7, 0, 0, 0, 2, '2', '1884-1889, 1891, 1899-1900, 1904, 1907, 1912-1914, 2002-2017', 'Philosophy (Q3)'), (22482, 'Transfuze a Hematologie Dnes', 12135763, 0.112, 'Q4', 5, 41, 1153, 17, 126, '31', '2002-2020', 'Hematology (Q4)'), (22483, 'Uluslararasi Iliskiler', 13047310, 0.112, 'Q4', 5, 23, 0, 11, 93, '18', '2005-2020', 'Political Science and International Relations (Q4)'), (22484, 'USDA Forest Service - Research Papers RMRS', 5025001, 0.112, 'Q4', 11, 0, 0, 0, 2, '2', '1996-2014, 2016, 2018', 'Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (22485, 'Viator - Medieval and Renaissance Studies', 835897, 0.112, 'Q3', 12, 0, 0, 5, 96, '24', '1970, 1972, 1974-1976, 1978, 1981-1982, 1987, 2002-2018', 'Cultural Studies (Q3); History (Q3)'), (22486, 'Zeitschrift fur Evaluation', 16195515, 0.112, 'Q4', 6, 25, 482, 6, 33, '5', '2006-2013, 2015-2020', 'Applied Psychology (Q4); Communication (Q4); Education (Q4); Social Sciences (miscellaneous) (Q4); Statistics and Probability (Q4); Strategy and Management (Q4)'), (22487, 'Zhonghua er bi yan hou tou jing wai ke za zhi', 16730860, 0.112, 'Q4', 12, 204, 0, 0, 2, '1', '2005-2016, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (22488, 'Zhonghua lao dong wei sheng zhi ye bing za zh', 10019391, 0.112, 'Q4', 13, 242, 0, 0, 2, '1', '2002-2016, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (22489, 'Acta Baltico-Slavica', 651044, 0.111, 'Q3', 3, 12, 532, 2, 43, '17', '2011-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22490, 'Acta Historiae Artis Slovenica', 14080419, 0.111, 'Q2', 4, 11, 812, 9, 47, '60', '2013-2019', 'Visual Arts and Performing Arts (Q2); Cultural Studies (Q3); History (Q3)'), (22491, 'Agora - Estudos Classicos em Debate', 8745498, 0.111, 'Q2', 3, 16, 394, 3, 55, '26', '2011-2020', 'Literature and Literary Theory (Q2); Classics (Q3)'), (22492, 'Aleph', 15651525, 0.111, 'Q3', 6, 6, 229, 10, 26, '2', '2009-2019', 'History (Q3); Religious Studies (Q3); History and Philosophy of Science (Q4)'), (22493, 'Alergia Astma Immunologia', 14273101, 0.111, 'Q4', 10, 28, 1170, 10, 67, '17', '2000-2020', 'Immunology and Allergy (Q4); Pulmonary and Respiratory Medicine (Q4)'), (22494, 'Al-Shajarah', 13946870, 0.111, 'Q3', 3, 13, 0, 14, 119, '23', '2011, 2013-2020', 'Cultural Studies (Q3); History (Q3); Philosophy (Q3); Religious Studies (Q3)'), (22495, 'Analisis Filosofico', 3261301, 0.111, 'Q3', 1, 13, 376, 2, 28, '46', '2017-2020', 'Philosophy (Q3)'), (22496, 'Angiologia', 33170, 0.111, 'Q4', 11, 26, 442, 6, 143, '12', '1949-1993, 1996-2018, 2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (22497, 'Annals of Long-Term Care', 15247929, 0.111, 'Q4', 17, 0, 0, 6, 62, '2', '1998-2018', 'Geriatrics and Gerontology (Q4); Gerontology (Q4)'), (22498, 'Annals of the Fondazione Luigi Einaudi', 25324969, 0.111, 'Q3', 2, 0, 0, 15, 80, '7', '2017-2019', 'History (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (22499, 'Archaeologia Bulgarica', 13109537, 0.111, 'Q3', 5, 12, 528, 4, 28, '61', '2011-2020', 'Archeology (arts and humanities) (Q3); Archeology (Q4)'), (22500, 'Archives', 39535, 0.111, 'Q3', 2, 4, 134, 1, 23, '3', '2011-2019', 'History (Q3); Library and Information Sciences (Q4)'), (22501, 'Arqueologia Mexicana', 1888218, 0.111, 'Q3', 4, 61, 303, 3, 134, '30', '2012-2015, 2018-2019', 'Archeology (arts and humanities) (Q3); Archeology (Q4)'), (22502, 'Asian Journal of Ophthalmology', 15602133, 0.111, 'Q4', 5, 44, 638, 2, 49, '1', '2003-2008, 2011, 2013-2020', 'Ophthalmology (Q4)'), (22503, 'Australian and New Zealand Journal of Surgery', 48682, 0.111, 'Q4', 51, 11, 0, 8, 20, '3', '1932-2003, 2006, 2012-2013, 2017-2020', 'Medicine (miscellaneous) (Q4); Surgery (Q4)'), (22504, 'Babesch', 17831369, 0.111, 'Q3', 5, 12, 939, 3, 26, '24', '2011-2018', 'Archeology (arts and humanities) (Q3); Classics (Q3); Archeology (Q4)'), (22505, 'Boletim do Arquivo da Universidade de Coimbra', 21827974, 0.111, 'Q3', 2, 9, 286, 7, 23, '26', '2016-2020', 'Conservation (Q3); Library and Information Sciences (Q4)'), (22506, 'Byzantinische Zeitschrift', 77704, 0.111, 'Q2', 10, 24, 699, 5, 53, '5', '1892-1913, 1919, 1924-1928, 1930-1942, 1950-1972, 1974-1990, 1992, 1994-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3)'), (22507, 'Cahiers d Economie Politique', 19696779, 0.111, 'Q3', 1, 0, 0, 1, 37, '8', '2016-2018', 'History (Q3); Economics and Econometrics (Q4)'), (22508, 'Cambridge Opera Journal', 9545867, 0.111, 'Q2', 12, 6, 357, 2, 34, '3', '1989-2019', 'Visual Arts and Performing Arts (Q2); Music (Q3)'), (22509, 'Caribbean Geography', 2529939, 0.111, 'Q4', 7, 0, 0, 2, 8, '128', '1983-1986, 1988, 1991-1999, 2003, 2005, 2008, 2011-2014, 2016-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (22510, 'Central European Journal of Paediatrics', 24903671, 0.111, 'Q4', 2, 21, 541, 5, 67, '90', '2017-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (22511, 'CERN IdeaSquare Journal of Experimental Innov', 24139505, 0.111, 'Q4', 2, 9, 116, 7, 16, '19', '2018-2019', 'Information Systems and Management (Q4); Management of Technology and Innovation (Q4)'), (22512, 'Chemist', 93025, 0.111, 'Q4', 5, 0, 0, 6, 27, '2', '1996-1999, 2001-2007, 2012-2018', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (22513, 'Chinese Journal of New Drugs', 10033734, 0.111, 'Q4', 11, 453, 10120, 137, 1516, '1', '2008-2020', 'Pharmacology (medical) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (22514, 'Competition Law Journal', 25165771, 0.111, 'Q4', 1, 20, 0, 2, 34, '3', '2020', 'Law (Q4)'), (22515, 'Contagion: Journal of Violence, Mimesis, and ', 10757201, 0.111, 'Q2', 4, 11, 786, 4, 33, '2', '2010-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Philosophy (Q3); Religious Studies (Q3); Sociology and Political Science (Q4)'), (22516, 'Contemporary Women s Writing', 17541476, 0.111, 'Q2', 6, 6, 176, 8, 51, '3', '2009-2019', 'Literature and Literary Theory (Q2); Gender Studies (Q4)'), (22517, 'Critical Historical Studies', 23264462, 0.111, 'Q3', 7, 16, 123, 15, 21, '2', '2015-2020', 'History (Q3)'), (22518, 'Critical Quarterly', 111562, 0.111, 'Q2', 17, 52, 159, 7, 88, '2', '1959-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (22519, 'CrossTalk', 21601593, 0.111, 'Q4', 19, 0, 0, 8, 36, '2', '2004-2017', 'Human-Computer Interaction (Q4); Software (Q4)'), (22520, 'Cuadernos Europeos de Deusto', 11308354, 0.111, 'Q3', 2, 17, 807, 14, 76, '12', '2017-2020', 'Cultural Studies (Q3); History (Q3); Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4); Political Science and International Relations (Q4)'), (22521, 'Cuestiones Constitucionales', 14059193, 0.111, 'Q4', 3, 18, 881, 6, 90, '30', '2013-2020', 'Law (Q4); Sociology and Political Science (Q4)'), (22522, 'Cultura Neolatina', 3915654, 0.111, 'Q2', 5, 9, 608, 5, 21, '7', '2002-2018', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22523, 'Current Gynecologic Oncology', 20811632, 0.111, 'Q4', 4, 11, 250, 9, 81, '17', '2011-2019', 'Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Oncology (Q4)'), (22524, 'Departures in Critical Qualitative Research', 23339489, 0.111, 'Q3', 2, 15, 304, 7, 51, '2', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4)'), (22525, 'Discursos Fotograficos', 18085652, 0.111, 'Q2', 3, 19, 356, 7, 72, '14', '2012-2019', 'Visual Arts and Performing Arts (Q2); Communication (Q4)'), (22526, 'Dutch Crossing', 3096564, 0.111, 'Q3', 4, 32, 787, 3, 52, '3', '2011-2020', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (22527, 'Earth Evolution Sciences', 1740199, 0.111, 'Q4', 4, 0, 0, 1, 3, '6', '1981, 2007-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (22528, 'Edgar Allan Poe Review', 21500428, 0.111, 'Q2', 2, 32, 415, 5, 41, '2', '2017-2020', 'Literature and Literary Theory (Q2)'), (22529, 'Eighteenth-Century Music', 14785714, 0.111, 'Q3', 9, 35, 644, 4, 71, '3', '2004-2020', 'Music (Q3)'), (22530, 'Epites-Epiteszettudomany', 139661, 0.111, 'Q2', 4, 16, 561, 3, 47, '50', '2007-2020', 'Visual Arts and Performing Arts (Q2); Conservation (Q3); Architecture (Q4)'), (22531, 'Erasmus of Rotterdam Society Yearbook', 18749275, 0.111, 'Q3', 6, 11, 323, 4, 26, '16', '1981-1984, 1986-1987, 1989, 1991, 1996-2008, 2010, 2012, 2014-2020', 'History (Q3); Philosophy (Q3)'), (22532, 'Essays in Criticism', 140856, 0.111, 'Q2', 9, 20, 682, 4, 54, '3', '1951-2019', 'Literature and Literary Theory (Q2)'), (22533, 'European Journal of American Culture', 14660407, 0.111, 'Q3', 3, 18, 824, 2, 39, '3', '2013-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4)'), (22534, 'European Journal of Theology', 9602720, 0.111, 'Q3', 2, 7, 333, 1, 41, '3', '2011-2018', 'Religious Studies (Q3)'), (22535, 'Explicator', 1939926, 0.111, 'Q2', 5, 42, 349, 8, 153, '2', '1975-1980, 1982-1983, 1985, 1987-2020', 'Literature and Literary Theory (Q2); Education (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (22536, 'Forum Stadt', 1709364, 0.111, 'Q3', 2, 23, 734, 2, 68, '5', '2011, 2013-2020', 'History (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)'), (22537, 'Fourrages', 4292766, 0.111, 'Q4', 12, 0, 0, 14, 107, '8', '2008-2019', 'Agronomy and Crop Science (Q4); Food Science (Q4)'), (22538, 'Fronteras de la Historia', 25394711, 0.111, 'Q3', 2, 17, 654, 5, 27, '47', '2018-2020', 'History (Q3)'), (22539, 'F. Scott Fitzgerald Review', 15433951, 0.111, 'Q2', 1, 0, 0, 2, 35, '2', '2017-2019', 'Literature and Literary Theory (Q2)'), (22540, 'General Anthropology', 15371727, 0.111, 'Q4', 5, 6, 38, 5, 14, '3', '1994-1995, 2003-2020', 'Anthropology (Q4)'), (22541, 'General Medicine', 13111817, 0.111, 'Q4', 3, 72, 1463, 4, 176, '61', '2001-2019', 'Medicine (miscellaneous) (Q4)'), (22542, 'GESTA-International Center of Medieval Art', 16920, 0.111, 'Q2', 12, 7, 407, 4, 31, '2', '2002-2006, 2008-2020', 'Visual Arts and Performing Arts (Q2)'), (22543, 'Gymnasium', 3425231, 0.111, 'Q3', 4, 16, 869, 2, 58, '5', '1970, 1976, 2009-2019', 'Classics (Q3); Education (Q4)'), (22544, 'Historia', 1019074, 0.111, 'Q3', 6, 53, 2376, 6, 98, '14', '2007-2020', 'Cultural Studies (Q3); History (Q3)'), (22545, 'Historisk Tidsskrift', 18263, 0.111, 'Q4', 7, 19, 525, 9, 59, '33', '1977, 1979-1980, 1982, 1987, 1999, 2001-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (22546, 'Homme et la Societe', 184306, 0.111, 'Q4', 6, 0, 0, 15, 95, '8', '2001-2019', 'Social Sciences (miscellaneous) (Q4)'), (22547, 'Idealistic Studies', 468541, 0.111, 'Q3', 6, 15, 536, 5, 31, '2', '1996-2000, 2002-2019', 'Philosophy (Q3)'), (22548, 'International Journal of Chinese Linguistics', 22138706, 0.111, 'Q3', 1, 11, 507, 1, 11, '16', '2019-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22549, 'International Journal of Communication and Li', 23278617, 0.111, 'Q3', 3, 7, 274, 2, 24, '2', '2013-2020', 'Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4)'), (22550, 'International Journal of Cuban Studies', 17563461, 0.111, 'Q3', 1, 16, 550, 2, 26, '3', '2018-2019', 'Cultural Studies (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22551, 'International Journal of Interdisciplinary So', 23247584, 0.111, 'Q3', 3, 15, 823, 3, 32, '2', '2013-2020', 'Cultural Studies (Q3); Sociology and Political Science (Q4)'), (22552, 'International Lawyer', 21696578, 0.111, 'Q4', 3, 8, 733, 4, 188, '2', '1977-1978, 2017-2019', 'Law (Q4)'), (22553, 'Intus-Legere Historia', 7185456, 0.111, 'Q3', 1, 0, 0, 4, 52, '45', '2017-2019', 'History (Q3)'), (22554, 'Journal for Maritime Research', 14691957, 0.111, 'Q3', 8, 11, 552, 3, 22, '3', '1999-2013, 2015-2020', 'History (Q3); Transportation (Q4)'), (22555, 'Journal for the Study of Religion, Nature and', 17494915, 0.111, 'Q3', 8, 18, 1177, 15, 59, '3', '2013-2019', 'Cultural Studies (Q3); Religious Studies (Q3); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (22556, 'Journal fur Urologie und Urogynakologie', 10236090, 0.111, 'Q4', 6, 30, 514, 1, 56, '28', '1999-2020', 'Obstetrics and Gynecology (Q4); Urology (Q4)'), (22557, 'Journal of Ayn Rand Studies, The', 15261018, 0.111, 'Q2', 9, 26, 598, 4, 30, '2', '2002-2009, 2011-2020', 'Literature and Literary Theory (Q2); Philosophy (Q3)'), (22558, 'Journal of Dharma', 2537222, 0.111, 'Q3', 3, 35, 670, 4, 66, '4', '2002-2020', 'Religious Studies (Q3)'), (22559, 'Journal of Islamic Thought and Civilization', 20750943, 0.111, 'Q3', 1, 35, 1233, 1, 35, '34', '2018-2020', 'Cultural Studies (Q3); History (Q3); Religious Studies (Q3); Sociology and Political Science (Q4)'), (22560, 'Journal of Tourism and Development', 16459261, 0.111, 'Q4', 1, 27, 1123, 4, 23, '26', '2019-2020', 'Geography, Planning and Development (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (22561, 'Kamchatka', 23401869, 0.111, 'Q2', 1, 44, 1848, 2, 54, '12', '2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Communication (Q4)'), (22562, 'Kritike', 19087330, 0.111, 'Q3', 1, 18, 348, 3, 46, '63', '2018-2020', 'Philosophy (Q3)'), (22563, 'Law Library Journal', 239283, 0.111, 'Q4', 16, 4, 410, 9, 57, '2', '1978, 1987-2019', 'Law (Q4); Library and Information Sciences (Q4)'), (22564, 'Library', 17448581, 0.111, 'Q4', 12, 14, 441, 4, 49, '3', '1889-1899, 1901-2019', 'Arts and Humanities (miscellaneous) (Q4); Library and Information Sciences (Q4)'), (22565, 'Librosdelacorte.es', 19896425, 0.111, 'Q2', 1, 8, 414, 1, 24, '12', '2019', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q2); History (Q3)'), (22566, 'Linguistica Pragensia', 8628432, 0.111, 'Q3', 4, 10, 352, 5, 25, '31', '2007-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22567, 'Logos (Spain)', 19883242, 0.111, 'Q3', 5, 18, 634, 4, 32, '12', '1996-1998, 2000-2018', 'Philosophy (Q3)'), (22568, 'Memoria e Ricerca', 11270195, 0.111, 'Q3', 3, 29, 1692, 6, 64, '7', '2015-2018', 'History (Q3); Sociology and Political Science (Q4)'), (22569, 'Milli Egitim', 13025600, 0.111, 'Q4', 7, 23, 1098, 4, 76, '18', '2006-2020', 'Education (Q4)'), (22570, 'MLN - Modern Language Notes', 10806598, 0.111, 'Q2', 14, 45, 1571, 13, 222, '2', '2002-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22571, 'Motricite Cerebrale', 2455919, 0.111, 'Q4', 6, 13, 130, 1, 39, '8', '1980-1990, 2004-2020', 'Neurology (clinical) (Q4); Rehabilitation (Q4)'), (22572, 'Observatory', 297704, 0.111, 'Q4', 14, 19, 586, 12, 50, '3', '1996-2013, 2015, 2017-2020', 'Astronomy and Astrophysics (Q4); Space and Planetary Science (Q4)'), (22573, 'Paliva', 18042058, 0.111, 'Q4', 1, 22, 726, 1, 19, '31', '2019-2020', 'Energy Engineering and Power Technology (Q4); Environmental Engineering (Q4); Fuel Technology (Q4); Geotechnical Engineering and Engineering Geology (Q4); Renewable Energy, Sustainability and the Envi'), (22574, 'Panacea', 15371964, 0.111, 'Q3', 6, 0, 0, 10, 56, '12', '2012-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22575, 'Perseitas', 23461780, 0.111, 'Q4', 1, 19, 466, 2, 35, '47', '2018-2020', 'Arts and Humanities (miscellaneous) (Q4)'), (22576, 'Perspectiva Teologica', 21768757, 0.111, 'Q3', 2, 37, 1172, 7, 58, '14', '2018-2020', 'Philosophy (Q3); Religious Studies (Q3); Education (Q4); Sociology and Political Science (Q4)'), (22577, 'Plaridel', 16562534, 0.111, 'Q4', 1, 16, 625, 1, 30, '63', '2018-2019', 'Communication (Q4)'), (22578, 'Poetique', 322024, 0.111, 'Q2', 3, 15, 516, 4, 44, '8', '2002-2005, 2009-2012, 2015-2019', 'Literature and Literary Theory (Q2)'), (22579, 'Quaker Studies', 23971770, 0.111, 'Q4', 1, 6, 201, 1, 14, '3', '2019-2020', 'Ecology, Evolution, Behavior and Systematics (Q4)'), (22580, 'Radovi Instituta za Povijest Umjetnosti', 18454534, 0.111, 'Q2', 2, 12, 361, 2, 49, '58', '2015-2019', 'Visual Arts and Performing Arts (Q2); History (Q3)'), (22581, 'Recherches en Didactiques des Sciences et des', 21106460, 0.111, 'Q4', 4, 8, 394, 2, 28, '8', '2011, 2013-2016, 2018', 'Education (Q4)'), (22582, 'Religionsvidenskabeligt Tidsskrift', 1081993, 0.111, 'Q3', 3, 12, 612, 1, 38, '25', '2011-2019', 'Religious Studies (Q3)'), (22583, 'Revista de Gestao Ambiental e Sustentabilidad', 23169834, 0.111, 'Q4', 1, 8, 352, 3, 27, '14', '2019-2020', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Urban Studies (Q4)'), (22584, 'Revista de Historia da Sociedade e da Cultura', 16452259, 0.111, 'Q3', 3, 19, 447, 2, 60, '26', '2014-2019', 'History (Q3)'), (22585, 'Revista Latinoamericana de Derecho Social', 24487899, 0.111, 'Q4', 3, 11, 220, 5, 54, '30', '2016-2019', 'Law (Q4)'), (22586, 'Revista Odonto Ciencia', 19806523, 0.111, 'Q4', 7, 0, 0, 14, 63, '14', '2011-2017, 2019', 'Dentistry (miscellaneous) (Q4)'), (22587, 'Revue Archeologique de Picardie', 7525656, 0.111, 'Q4', 4, 13, 622, 2, 32, '8', '2011-2013, 2017-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (22588, 'Rinsan Shikenj Oha/Journal of the Hokkaido Fo', 913140, 0.111, 'Q4', 4, 0, 0, 1, 19, '6', '1999-2013, 2015-2018', 'Forestry (Q4); Materials Science (miscellaneous) (Q4)'), (22589, 'Rita Revista Indexada de Textos Academicos', 23409711, 0.111, 'Q2', 2, 27, 471, 3, 89, '12', '2014-2020', 'Visual Arts and Performing Arts (Q2); Architecture (Q3); Urban Studies (Q4)'), (22590, 'Ri-Vista', 17246768, 0.111, 'Q3', 1, 22, 558, 2, 25, '7', '2019', 'Architecture (Q3); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Renewable Energy, Sustainability and the Environment (Q4); Urban Studies (Q4)'), (22591, 'Rivista di Filosofia', 356239, 0.111, 'Q3', 2, 1, 106, 1, 47, '7', '1971, 1976, 1980, 1982, 2016-2020', 'Philosophy (Q3)'), (22592, 'Rivista Storica dell Antichita', 300340, 0.111, 'Q3', 3, 14, 807, 1, 23, '7', '2011-2018', 'Archeology (arts and humanities) (Q3); Classics (Q3); History (Q3)'), (22593, 'Romance Philology', 358002, 0.111, 'Q2', 4, 7, 236, 4, 49, '24', '2002-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22594, 'Romanian Journal of Neurology/ Revista Romana', 20696094, 0.111, 'Q4', 4, 49, 1216, 3, 63, '43', '2009-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (22595, 'Scrutiny2', 18125441, 0.111, 'Q2', 9, 22, 684, 2, 44, '3', '1996-2020', 'Literature and Literary Theory (Q2)'), (22596, 'Sociological Bulletin, The', 380229, 0.111, 'Q3', 2, 23, 840, 6, 40, '4', '1963, 1974, 1986, 1994-1996, 2014, 2018-2020', 'Cultural Studies (Q3); History (Q3); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (22597, 'Sprachwissenschaft', 3448169, 0.111, 'Q3', 7, 12, 520, 2, 44, '5', '2002-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22598, 'Studia Islamica', 5855292, 0.111, 'Q2', 8, 9, 702, 2, 22, '8', '1970-1971, 1981, 1989, 2001-2007, 2013-2019', 'Literature and Literary Theory (Q2); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3); Religious Studies (Q3); Law (Q4)'), (22599, 'Studia Theologica - Nordic Journal of Theolog', 15027791, 0.111, 'Q3', 8, 11, 408, 6, 28, '3', '1947-2020', 'Religious Studies (Q3)'), (22600, 'Studies in Russian and Soviet Cinema', 17503132, 0.111, 'Q2', 6, 14, 385, 4, 44, '3', '2006-2020', 'Visual Arts and Performing Arts (Q2); Communication (Q4)'), (22601, 'Sungkyun Journal of East Asian Studies', 15982661, 0.111, 'Q2', 4, 10, 559, 6, 33, '13', '2010-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Religious Studies (Q3); Anthropology (Q4); Sociology and Political Science (Q4)'), (22602, 'Sun Yat-sen Journal of Humanities', 10243631, 0.111, 'Q4', 1, 13, 314, 2, 19, '22', '2018-2020', 'Arts and Humanities (miscellaneous) (Q4)'), (22603, 'Suvremena Psihologija', 13319264, 0.111, 'Q4', 6, 0, 0, 4, 35, '58', '2008-2019', 'Psychology (miscellaneous) (Q4)'), (22604, 'Symposium - Quarterly Journal in Modern Liter', 397709, 0.111, 'Q2', 5, 19, 559, 6, 48, '2', '1946-1954, 1956-2020', 'Literature and Literary Theory (Q2)'), (22605, 'Tamkang Journal of International Affairs', 10274979, 0.111, 'Q4', 3, 21, 590, 2, 47, '22', '2005-2020', 'Business and International Management (Q4); Education (Q4); Political Science and International Relations (Q4); Strategy and Management (Q4)'), (22606, 'Temps des Medias', 17642507, 0.111, 'Q3', 6, 31, 860, 3, 78, '8', '2003-2020', 'History (Q3); Communication (Q4)'), (22607, 'Textile History', 17432952, 0.111, 'Q3', 12, 13, 41, 9, 44, '3', '1968-2020', 'History (Q3); Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4)'), (22608, 'Thomist', 406325, 0.111, 'Q3', 11, 9, 835, 4, 47, '2', '1973, 1975-1978, 1985, 1987, 1990-1992, 2002-2019', 'Philosophy (Q3); Religious Studies (Q3)'), (22609, 'Transylvanian Review', 15849422, 0.111, 'Q3', 6, 51, 1388, 24, 92, '43', '2008-2020', 'Cultural Studies (Q3); History (Q3)'), (22610, 'Turkish Historical Review', 18775462, 0.111, 'Q3', 5, 9, 388, 9, 24, '16', '2010-2020', 'History (Q3)'), (22611, 'Turkish Journal of Endocrinology and Metaboli', 13089846, 0.111, 'Q4', 5, 53, 1377, 20, 107, '18', '2009-2014, 2019-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (22612, 'Ugeskrift for Laeger', 16036824, 0.111, 'Q4', 28, 270, 0, 101, 1423, '25', '1945, 1947-2020', 'Medicine (miscellaneous) (Q4)'), (22613, 'Verba', 210377, 0.111, 'Q3', 1, 15, 542, 5, 29, '12', '2017-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22614, 'Voprosy kurortologii, fizioterapii, i lechebn', 428787, 0.111, 'Q4', 6, 64, 0, 41, 177, '10', '1955, 1961-1963, 1965-2020', 'Medicine (miscellaneous) (Q4)'), (22615, 'Walt Whitman Quarterly Review', 7370679, 0.111, 'Q2', 5, 8, 430, 4, 28, '2', '2009-2020', 'Literature and Literary Theory (Q2)'), (22616, 'Wiener Studien', 84005, 0.111, 'Q3', 7, 11, 781, 2, 32, '28', '2002-2019', 'Classics (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22617, 'Xiandai Huagong/Modern Chemical Industry', 2534320, 0.111, 'Q4', 13, 662, 13348, 192, 1827, '1', '1982, 1984-1989, 2000-2020', 'Chemical Engineering (miscellaneous) (Q4)'), (22618, 'Yerbilimleri/ Earth Sciences', 13012894, 0.111, 'Q4', 14, 2, 148, 8, 44, '18', '1980-1982, 1984, 1996-1999, 2001-2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Geology (Q4); Paleontology (Q4); Stratigraphy (Q4)'), (22619, 'Zdravstveni Vestnik', 3500063, 0.111, 'Q4', 9, 60, 1996, 17, 155, '60', '1950-1955, 1964-1965, 1973-1993, 2009-2020', 'Medicine (miscellaneous) (Q4)'), (22620, 'Academia (Greece)', 22411402, 0.11, 'Q4', 2, 32, 1155, 1, 62, '39', '2017-2020', 'Education (Q4)'), (22621, 'Adolescent Medicine: State of the Art Reviews', 19344287, 0.11, 'Q4', 32, 0, 0, 2, 40, '2', '2007-2019', 'Medicine (miscellaneous) (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (22622, 'African Economic History', 1452258, 0.11, 'Q3', 10, 5, 397, 10, 30, '2', '1976, 1981, 1999-2019', 'History (Q3); Economics and Econometrics (Q4)'), (22623, 'Aktuelle Dermatologie', 3402541, 0.11, 'Q4', 12, 140, 1224, 17, 188, '5', '1975-2020', 'Dermatology (Q4)'), (22624, 'Alif', 11108673, 0.11, 'Q2', 1, 8, 419, 1, 8, '32', '2019-2020', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q3); Communication (Q4)'), (22625, 'Anales de Literatura Chilena', 7176058, 0.11, 'Q2', 4, 16, 321, 4, 98, '45', '2010-2019', 'Literature and Literary Theory (Q2)'), (22626, 'Annali di Storia dell Esegesi', 11204001, 0.11, 'Q3', 3, 24, 1486, 4, 70, '7', '2008-2019', 'History (Q3); Religious Studies (Q3)'), (22627, 'Annals of Cancer Research and Therapy', 13446835, 0.11, 'Q4', 6, 31, 684, 7, 70, '2', '1992-1998, 2000, 2002-2020', 'Cancer Research (Q4); Oncology (Q4); Pharmacology (medical) (Q4)'), (22628, 'Antike und Abendland', 35696, 0.11, 'Q2', 8, 25, 1027, 3, 17, '5', '1944, 1946, 1948, 1954, 1956-1961, 1966-1971, 1973-1987, 1989-2018, 2020', 'Literature and Literary Theory (Q2); Classics (Q3); History (Q3); Philosophy (Q3)'), (22629, 'Antropologicheskij Forum', 18158889, 0.11, 'Q3', 2, 28, 626, 8, 58, '10', '2018-2020', 'Cultural Studies (Q3); Anthropology (Q4)'), (22630, 'Arhiv za Farmaciju', 41963, 0.11, 'Q4', 3, 25, 1068, 2, 71, '55', '1954-1955, 2009-2020', 'Pharmaceutical Science (Q4); Pharmacology (Q4)'), (22631, 'Asian Review of World Histories', 22879811, 0.11, 'Q3', 4, 21, 713, 7, 36, '16', '2013-2020', 'Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)'), (22632, 'Belleten', 414255, 0.11, 'Q3', 3, 24, 1164, 3, 91, '18', '1971, 1979-1980, 1999, 2002, 2011-2019', 'Cultural Studies (Q3); History (Q3)'), (22633, 'Bohemistyka', 16429893, 0.11, 'Q3', 1, 37, 644, 2, 92, '17', '2017-2020', 'Language and Linguistics (Q3); Electrical and Electronic Engineering (Q4); Linguistics and Language (Q4)'), (22634, 'Brumal', 20147910, 0.11, 'Q2', 1, 6, 282, 4, 94, '12', '2017-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Visual Arts and Performing Arts (Q3); Communication (Q4)'), (22635, 'Bulletin Hispanique', 74640, 0.11, 'Q2', 5, 3, 16, 5, 31, '8', '1972, 1999, 2001-2017, 2019', 'Literature and Literary Theory (Q2); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q4)'), (22636, 'Cahiers de Psychologie Clinique', 1370074, 0.11, 'Q4', 7, 35, 815, 2, 87, '24', '2001-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (22637, 'China Journal of Accounting Studies', 21697213, 0.11, 'Q4', 7, 11, 541, 10, 70, '3', '2013-2019', 'Accounting (Q4); Business, Management and Accounting (miscellaneous) (Q4)'), (22638, 'Chinese Journal of Contemporary Neurology and', 16726731, 0.11, 'Q4', 8, 187, 4823, 57, 529, '1', '2006-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (22639, 'Clinical and Experimental Surgery', 23081198, 0.11, 'Q4', 3, 36, 1013, 12, 123, '10', '2013-2020', 'Surgery (Q4)'), (22640, 'Cogito', 20686706, 0.11, 'Q4', 1, 27, 835, 5, 99, '43', '2018-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (22641, 'College Mathematics Journal', 7468342, 0.11, 'Q4', 7, 44, 186, 28, 150, '2', '1997, 2009-2020', 'Education (Q4); Mathematics (miscellaneous) (Q4)'), (22642, 'Communication Booknotes Quarterly', 15326896, 0.11, 'Q4', 1, 5, 0, 1, 12, '3', '2014-2020', 'Communication (Q4)'), (22643, 'Computer Science Research Notes', 24644625, 0.11, 'Q4', 4, 0, 0, 23, 107, '31', '2017-2018', 'Psychiatry and Mental Health (Q4)'), (22644, 'Confluenze', 20360967, 0.11, 'Q3', 2, 28, 1011, 7, 117, '7', '2013-2019', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4); Sociology and Political Science (Q4)'), (22645, 'Cuadernos de bioe&amp;#x0301;tica : revista o', 11321989, 0.11, 'Q4', 6, 28, 0, 12, 64, '12', '2008-2020', 'Medicine (miscellaneous) (Q4)'), (22646, 'Ela', 71190, 0.11, 'Q3', 5, 16, 355, 1, 80, '8', '2001-2019', 'Language and Linguistics (Q3); Linguistics and Language (Q4)'), (22647, 'Estudios Romanicos', 1989614, 0.11, 'Q2', 1, 27, 781, 5, 69, '12', '2011-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22648, 'European Drama and Performance Studies', 22669035, 0.11, 'Q2', 1, 22, 909, 5, 76, '8', '2018-2019', 'Visual Arts and Performing Arts (Q2)'), (22649, 'European Journal of Clinical Pharmacy', 2385409, 0.11, 'Q4', 6, 35, 523, 13, 129, '12', '2016-2020', 'Pharmacology (medical) (Q4); Pharmacy (Q4)'), (22650, 'Feminist Media Histories', 23737492, 0.11, 'Q3', 1, 8, 401, 4, 21, '2', '2019-2020', 'History (Q3); Gender Studies (Q4)'), (22651, 'German Quarterly, The', 168831, 0.11, 'Q2', 10, 24, 1130, 6, 68, '2', '2002-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Visual Arts and Performing Arts (Q3)'), (22652, 'Hebrew Studies', 1464094, 0.11, 'Q2', 4, 16, 979, 4, 62, '2', '2011-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Religious Studies (Q3)'), (22653, 'Histoire Urbaine', 16280482, 0.11, 'Q3', 7, 29, 983, 8, 85, '8', '2000-2020', 'History (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)'), (22654, 'History and Sociology of South Asia', 22308075, 0.11, 'Q3', 4, 0, 0, 3, 26, '3', '2011-2019', 'Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)'), (22655, 'Index on Censorship', 3064220, 0.11, 'Q3', 9, 113, 0, 22, 90, '2', '1972-1993, 1995-2020', 'History (Q3); Philosophy (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22656, 'Irish Economic and Social History', 3324893, 0.11, 'Q3', 7, 11, 0, 6, 20, '2', '1975-1976, 1979, 1999-2014, 2016-2020', 'History (Q3); Sociology and Political Science (Q4)'), (22657, 'Italian Journal of Anatomy and Embryology', 11226714, 0.11, 'Q4', 27, 2, 4, 18, 116, '7', '1992-2019', 'Anatomy (Q4); Embryology (Q4)'), (22658, 'Journal of Architectural Education', 10464883, 0.11, 'Q3', 20, 50, 20, 12, 97, '3', '1970-1971, 1973-2020', 'Visual Arts and Performing Arts (Q3); Architecture (Q4); Education (Q4)'), (22659, 'Journal of Food Science and Biotechnology', 16731689, 0.11, 'Q4', 2, 0, 0, 26, 280, '1', '2017-2018', 'Biotechnology (Q4); Food Science (Q4)'), (22660, 'Journal of Legal Education', 222208, 0.11, 'Q4', 17, 0, 0, 18, 109, '2', '1988, 1996-2019', 'Education (Q4); Law (Q4)'), (22661, 'Journal of Neonatology', 9732179, 0.11, 'Q4', 4, 27, 929, 3, 36, '16', '2005-2009, 2014-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (22662, 'Journal of the Japan Diabetes Society', 21437, 0.11, 'Q4', 14, 82, 1287, 7, 225, '6', '1959, 1961, 1963-2020', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (22663, 'Journal of the National Institute of Informat', 13493205, 0.11, 'Q3', 10, 0, 0, 4, 29, '6', '2003-2017', 'Media Technology (Q3); Electrical and Electronic Engineering (Q4)'), (22664, 'Kriterion (Austria)', 10198288, 0.11, 'Q3', 3, 10, 352, 5, 39, '28', '2011-2019', 'Philosophy (Q3)'), (22665, 'Latin American Theatre Review', 238813, 0.11, 'Q3', 4, 14, 389, 3, 84, '2', '2002-2019', 'Visual Arts and Performing Arts (Q3)'), (22666, 'Manchester Journal of International Economic ', 17423945, 0.11, 'Q4', 4, 15, 286, 5, 57, '3', '2013-2019', 'Economics and Econometrics (Q4); Law (Q4)'), (22667, 'Matronas Profesion', 15780740, 0.11, 'Q4', 5, 0, 0, 7, 60, '12', '2006-2019', 'Maternity and Midwifery (Q4); Obstetrics and Gynecology (Q4)'), (22668, 'Medical Forum Monthly', 1029385, 0.11, 'Q4', 4, 375, 7464, 30, 939, '19', '2000-2020', 'Medicine (miscellaneous) (Q4)'), (22669, 'Medicine and Law', 7231393, 0.11, 'Q4', 20, 28, 82, 18, 98, '36', '1982-2020', 'Health Policy (Q4); Law (Q4)'), (22670, 'Medijska Istrazivanja', 13306928, 0.11, 'Q4', 6, 12, 541, 3, 29, '58', '2011-2020', 'Communication (Q4); Sociology and Political Science (Q4)'), (22671, 'Music and Letters', 14774631, 0.11, 'Q3', 14, 16, 1303, 5, 54, '3', '1920-1987, 1989-2019', 'Music (Q3)'), (22672, 'Neuro-Ophthalmology Japan', 2897024, 0.11, 'Q4', 4, 24, 368, 2, 132, '6', '1984-2020', 'Neurology (clinical) (Q4); Ophthalmology (Q4)'), (22673, 'Nineteenth-Century Music Review', 14794098, 0.11, 'Q3', 6, 30, 1395, 7, 63, '3', '1978, 2004-2020', 'Music (Q3)'), (22674, 'Online Brazilian Journal of Nursing', 16764285, 0.11, 'Q4', 8, 0, 0, 6, 60, '14', '2004-2018', 'Nursing (miscellaneous) (Q4)'), (22675, 'Open Insight', 23958936, 0.11, 'Q3', 1, 26, 616, 6, 72, '30', '2017-2020', 'Philosophy (Q3)'), (22676, 'Organizational Cultures', 23278013, 0.11, 'Q4', 3, 4, 128, 4, 22, '2', '2013-2020', 'Organizational Behavior and Human Resource Management (Q4); Strategy and Management (Q4)'), (22677, 'Outre-Mers', 16310438, 0.11, 'Q3', 3, 14, 704, 4, 80, '8', '2013-2019', 'History (Q3)'), (22678, 'Padiatrische Praxis', 309346, 0.11, 'Q4', 6, 118, 2990, 8, 439, '5', '1973-1980, 2002-2018', 'Pediatrics, Perinatology and Child Health (Q4)'), (22679, 'Pennsylvania History', 314528, 0.11, 'Q3', 4, 41, 1428, 3, 65, '2', '1971, 1977, 1981, 1984-1987, 2000, 2010-2020', 'History (Q3)'), (22680, 'Physician Assistant Clinics', 24057991, 0.11, 'Q4', 3, 73, 1855, 21, 153, '2', '2016-2020', 'Medicine (miscellaneous) (Q4)'), (22681, 'Postmedieval', 20405979, 0.11, 'Q2', 6, 52, 1137, 10, 92, '3', '2012-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Philosophy (Q3)'), (22682, 'Psychologia', 332852, 0.11, 'Q4', 25, 6, 245, 4, 32, '6', '1996-2018', 'Psychology (miscellaneous) (Q4)'), (22683, 'Psychologist', 9528229, 0.11, 'Q4', 35, 58, 33, 34, 264, '3', '1990, 1996-2020', 'Psychology (miscellaneous) (Q4)'), (22684, 'Punjab Geographer', 9733485, 0.11, 'Q4', 1, 0, 0, 1, 14, '4', '2018-2019', 'Geography, Planning and Development (Q4); Sociology and Political Science (Q4)'), (22685, 'Ramon Llull Journal of Applied Ethics', 2229578, 0.11, 'Q3', 4, 0, 0, 4, 27, '12', '2015-2019', 'Philosophy (Q3); Sociology and Political Science (Q4)'), (22686, 'Relations', 22833196, 0.11, 'Q3', 2, 0, 0, 10, 35, '7', '2017-2018', 'Philosophy (Q3); Ecology (Q4); Environmental Science (miscellaneous) (Q4); Management, Monitoring, Policy and Law (Q4)'), (22687, 'Retina-Vitreus', 13001256, 0.11, 'Q4', 6, 70, 1635, 2, 76, '18', '2009-2017, 2019-2020', 'Ophthalmology (Q4)'), (22688, 'Review of High Pressure Science and Technolog', 917639, 0.11, 'Q4', 17, 27, 627, 3, 77, '6', '1970, 1992-2020', 'Chemistry (miscellaneous) (Q4); Condensed Matter Physics (Q4); Materials Science (miscellaneous) (Q4)'), (22689, 'Reviews in Vascular Medicine', 22120211, 0.11, 'Q4', 6, 0, 0, 2, 3, '5', '2013-2017', 'Cardiology and Cardiovascular Medicine (Q4)'), (22690, 'Revista Bionatura', 13909355, 0.11, 'Q4', 3, 78, 2157, 14, 126, '64', '2016-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Epidemiology (Q4); Infectious Diseases (Q4)'), (22691, 'Revista de Informatica Teorica e Aplicada', 21752745, 0.11, 'Q4', 1, 33, 1003, 6, 19, '14', '2019-2020', 'Computer Science (miscellaneous) (Q4)'), (22692, 'Revista de Nefrologia, Dialisis y Trasplante', 23468548, 0.11, 'Q4', 3, 50, 1169, 13, 81, '46', '2005-2020', 'Nephrology (Q4); Transplantation (Q4)'), (22693, 'Revista de Obstetricia y Ginecologia de Venez', 487732, 0.11, 'Q4', 8, 20, 540, 4, 87, '94', '1945-1948, 1950-1957, 1959-1970, 1972-1995, 2008-2019', 'Obstetrics and Gynecology (Q4)'), (22694, 'Revista Letral', 19893302, 0.11, 'Q2', 2, 28, 784, 9, 54, '12', '2013-2020', 'Literature and Literary Theory (Q2)'), (22695, 'Revue Europeenne d Economie et Management de', 25550284, 0.11, 'Q4', 2, 0, 0, 3, 27, '8', '2016-2019', 'Management Information Systems (Q4); Management of Technology and Innovation (Q4); Management Science and Operations Research (Q4); Strategy and Management (Q4)'), (22696, 'Revue Forestiere Francaise', 352829, 0.11, 'Q4', 13, 0, 0, 6, 101, '8', '1974, 1976-1977, 1979, 1984, 1988-1989, 1998-2000, 2002-2019', 'Forestry (Q4)'), (22697, 'Rivista di Filologia Classica', 356220, 0.11, 'Q3', 5, 21, 1162, 2, 71, '7', '2002, 2005-2007, 2009-2019', 'Classics (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22698, 'Slovo a Smysl', 23366680, 0.11, 'Q2', 1, 35, 1006, 1, 72, '31', '2018-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3)'), (22699, 'Societa e storia', 3916987, 0.11, 'Q3', 2, 35, 1671, 6, 110, '7', '1978, 1983-1984, 1999, 2001-2002, 2017-2020', 'History (Q3)'), (22700, 'Solnecno-Zemnaa Fizika', 25000535, 0.11, 'Q4', 2, 40, 1405, 8, 60, '10', '2019-2020', 'Atmospheric Science (Q4); Geophysics (Q4); Space and Planetary Science (Q4)'), (22701, 'Stred', 18039243, 0.11, 'Q3', 1, 5, 209, 3, 20, '31', '2014-2019', 'History (Q3); Political Science and International Relations (Q4)'), (22702, 'Studia Politica', 15824551, 0.11, 'Q4', 3, 17, 0, 12, 74, '43', '2013-2020', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22703, 'Studia Romanica Posnaniensia', 1372475, 0.11, 'Q2', 3, 38, 1008, 6, 104, '17', '2009-2019', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q4)'), (22704, 'Studies in Microeconomics', 23218398, 0.11, 'Q4', 5, 8, 264, 9, 36, '3', '2013-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (22705, 'Studi Slavistici', 18247601, 0.11, 'Q2', 3, 12, 470, 5, 73, '7', '2013-2019', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Language and Linguistics (Q3); Linguistics and Language (Q3)'), (22706, 'Sustainable Mediterranean Construction', 24208213, 0.11, 'Q3', 1, 22, 391, 2, 158, '7', '2019-2020', 'Conservation (Q3); Architecture (Q4); Building and Construction (Q4); Geography, Planning and Development (Q4); Nature and Landscape Conservation (Q4); Urban Studies (Q4)'), (22707, 'Swiss Sports and Exercise Medicine', 22978712, 0.11, 'Q4', 13, 2, 58, 7, 63, '19', '2018-2019', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (22708, 'Temps Modernes', 403075, 0.11, 'Q2', 4, 0, 0, 5, 111, '8', '1957, 1981, 1990, 2009-2018', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Sociology and Political Science (Q4)'), (22709, 'Trans', 11372311, 0.11, 'Q3', 4, 30, 893, 5, 53, '12', '2012-2018', 'Language and Linguistics (Q3); Linguistics and Language (Q4)'), (22710, 'Turk Kulturu ve Haci Bektas Veli - Arastirma ', 13068253, 0.11, 'Q3', 6, 34, 1284, 16, 118, '18', '2009-2020', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4)'), (22711, 'Vascular Access', 19136692, 0.11, 'Q4', 1, 5, 37, 2, 20, '9', '2018', 'Advanced and Specialized Nursing (Q4)'), (22712, 'Zeitschrift fur Geschichtswissenschaft', 442828, 0.11, 'Q3', 7, 39, 1203, 4, 112, '5', '1971, 1999, 2001-2020', 'History (Q3)'), (22713, 'Zhuzao/Foundry', 10014977, 0.11, 'Q4', 13, 165, 1862, 49, 692, '1', '1987-1989, 1998, 2001-2020', 'Instrumentation (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4)'), (22714, 'Acta Informatica Pragensia', 18054951, 0.109, 'Q4', 1, 14, 500, 4, 6, '31', '2019-2020', 'Computer Science Applications (Q4); Information Systems (Q4); Library and Information Sciences (Q4); Management Information Systems (Q4)'), (22715, 'Afrique Contemporaine', 20478, 0.109, 'Q3', 11, 17, 345, 13, 91, '24', '1982, 1985, 1987-1988, 1990, 1992-1993, 2003-2018, 2020', 'Cultural Studies (Q3); Development (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22716, 'American Review of Canadian Studies', 2722011, 0.109, 'Q4', 15, 37, 1502, 13, 72, '3', '1971-2020', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (22717, 'Architectural Research Quarterly', 13591355, 0.109, 'Q3', 14, 27, 1112, 5, 94, '3', '1995-1997, 1999-2020', 'Visual Arts and Performing Arts (Q3); Architecture (Q4)'), (22718, 'Arethusa', 40975, 0.109, 'Q2', 20, 3, 140, 7, 39, '2', '1974-1975, 2002-2019', 'Literature and Literary Theory (Q2); Classics (Q3); Cultural Studies (Q3)'), (22719, 'ARTMargins', 21622574, 0.109, 'Q3', 3, 22, 110, 3, 54, '2', '2012-2020', 'Cultural Studies (Q3); History (Q3); Visual Arts and Performing Arts (Q3)'), (22720, 'Bank i Kredyt', 1375520, 0.109, 'Q4', 2, 24, 1184, 10, 66, '17', '2017-2020', 'Finance (Q4)'), (22721, 'Berichte zur Wissenschaftsgeschichte', 15222365, 0.109, 'Q3', 8, 29, 1622, 21, 81, '5', '1978-2020', 'History (Q3); History and Philosophy of Science (Q4)'), (22722, 'Buddhist Studies Review', 17479681, 0.109, 'Q3', 4, 1, 0, 6, 37, '3', '2007, 2013-2019', 'Religious Studies (Q3)'), (22723, 'Bulletin of Spanish Visual Studies', 24741604, 0.109, 'Q3', 1, 14, 0, 4, 44, '3', '2017-2020', 'Cultural Studies (Q3); Visual Arts and Performing Arts (Q3)'), (22724, 'Byzantine and Modern Greek Studies', 3070131, 0.109, 'Q2', 12, 18, 638, 7, 46, '3', '1975-1982, 1984, 1986-1995, 2002-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Language and Linguistics (Q3); Linguistics and Language (Q4)'), (22725, 'Co-herencia', 17945887, 0.109, 'Q2', 5, 21, 774, 8, 86, '47', '2009-2020', 'Literature and Literary Theory (Q2); History (Q3); Music (Q3); Philosophy (Q3); Visual Arts and Performing Arts (Q3); Sociology and Political Science (Q4)'), (22726, 'Comparative and Continental Philosophy', 17570646, 0.109, 'Q3', 3, 26, 373, 5, 55, '3', '2013-2020', 'Philosophy (Q3)'), (22727, 'Cuadernos de Administracion', 19007205, 0.109, 'Q4', 9, 3, 151, 9, 41, '47', '2008-2019', 'Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Strategy and Management (Q4)'), (22728, 'Current Biotechnology', 22115501, 0.109, 'Q4', 4, 0, 0, 1, 3, '16', '2015-2017', 'Applied Microbiology and Biotechnology (Q4); Bioengineering (Q4); Biotechnology (Q4)'), (22729, 'English Studies in Canada', 3170802, 0.109, 'Q2', 10, 0, 0, 4, 37, '9', '2002-2018', 'Literature and Literary Theory (Q2)'), (22730, 'Film Criticism', 1635069, 0.109, 'Q3', 10, 0, 0, 10, 65, '2', '2002-2018, 2020', 'Visual Arts and Performing Arts (Q3)'), (22731, 'Geographie Economie Societe', 1295926, 0.109, 'Q4', 13, 4, 212, 9, 46, '8', '2004-2019', 'Economics and Econometrics (Q4); Geography, Planning and Development (Q4)'), (22732, 'Geophysical Research', 18183735, 0.109, 'Q4', 2, 12, 192, 7, 23, '10', '2019', 'Computers in Earth Sciences (Q4); Geochemistry and Petrology (Q4); Geophysics (Q4)'), (22733, 'Geotechnical News', 823650, 0.109, 'Q4', 13, 0, 0, 1, 45, '9', '1995-2019', 'Geotechnical Engineering and Engineering Geology (Q4)'), (22734, 'Hedianzixue Yu Tance Jishu/Nuclear Electronic', 2580934, 0.109, 'Q4', 9, 0, 0, 40, 451, '1', '2001-2019', 'Electrical and Electronic Engineering (Q4); Instrumentation (Q4); Nuclear and High Energy Physics (Q4); Radiation (Q4)'), (22735, 'History of Economic Thought and Policy', 22409971, 0.109, 'Q3', 1, 0, 0, 1, 23, '7', '2018-2019', 'History (Q3); Economics and Econometrics (Q4); Public Administration (Q4)'), (22736, 'Imago Mundi', 14797801, 0.109, 'Q4', 15, 17, 132, 8, 38, '3', '1935, 1937, 1939, 1947-1956, 1959-1960, 1962-1972, 1975-1997, 2001, 2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (22737, 'Indian Journal of Nematology', 9744444, 0.109, 'Q4', 2, 0, 0, 13, 98, '4', '2016-2019', 'Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (22738, 'Infant Observation', 17458943, 0.109, 'Q4', 4, 14, 126, 6, 42, '3', '2012-2020', 'Applied Psychology (Q4); Clinical Psychology (Q4); Developmental and Educational Psychology (Q4); Social Psychology (Q4)'), (22739, 'International Journal of Applied Systemic Stu', 17510597, 0.109, 'Q4', 7, 12, 337, 12, 38, '3', '2007-2013', 'Computer Science Applications (Q4); Control and Systems Engineering (Q4); Information Systems and Management (Q4)'), (22740, 'International Journal of Assessment and Evalu', 23277920, 0.109, 'Q4', 3, 6, 303, 5, 20, '2', '2013-2020', 'Education (Q4)'), (22741, 'International Journal of Bioinformatics Resea', 17445485, 0.109, 'Q4', 16, 21, 747, 18, 65, '3', '2005-2015', 'Biomedical Engineering (Q4); Clinical Biochemistry (Q4); Health Informatics (Q4); Health Information Management (Q4); Medicine (miscellaneous) (Q4)'), (22742, 'International Journal of Electronic Finance', 17460077, 0.109, 'Q4', 18, 7, 345, 4, 14, '19', '2006-2007, 2010-2013', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); E-learning (Q4); Finance (Q4); Management of Technology and Innovation (Q4)'), (22743, 'International Journal of Geospatial and Envir', 23322047, 0.109, 'Q4', 1, 12, 640, 1, 4, '2', '2019-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Information Systems (Q4)'), (22744, 'International Journal of Learner Diversity an', 23270128, 0.109, 'Q3', 3, 4, 145, 5, 21, '2', '2013-2020', 'Cultural Studies (Q3); Education (Q4)'), (22745, 'International Journal of Military History and', 24683299, 0.109, 'Q3', 1, 8, 461, 4, 24, '16', '2016-2019', 'History (Q3)'), (22746, 'International Journal of Pedagogy and Curricu', 23277963, 0.109, 'Q4', 4, 2, 114, 3, 37, '2', '2013-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (22747, 'International Journal of Pediatric Otorhinola', 18714048, 0.109, 'Q4', 9, 0, 0, 2, 26, '42', '2006-2018', 'Otorhinolaryngology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (22748, 'International Journal of Sustainable Manufact', 17427223, 0.109, 'Q4', 16, 19, 607, 1, 5, '19', '2008-2014', 'Decision Sciences (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Management of Technology and Innovation (Q4); Social Sciences (miscellaneous) (Q4)'), (22749, 'International orthodontics / Colle&amp;#x0300', 1879680, 0.109, 'Q4', 4, 0, 0, 1, 8, '8', '2009-2020', 'Medicine (miscellaneous) (Q4)'), (22750, 'Iranian Journal of Information Processing Man', 22518231, 0.109, 'Q4', 4, 40, 1154, 25, 184, '15', '2012-2019', 'Computer Science (miscellaneous) (Q4)'), (22751, 'Japan Journal of Logopedics and Phoniatrics', 18843646, 0.109, 'Q4', 6, 24, 317, 4, 89, '6', '1967, 1970-2020', 'LPN and LVN (Q4); Speech and Hearing (Q4)'), (22752, 'JK Science', 9721177, 0.109, 'Q4', 16, 49, 838, 17, 135, '4', '2001-2020', 'Internal Medicine (Q4)'), (22753, 'Journal of English and Germanic Philology', 3636941, 0.109, 'Q2', 11, 18, 742, 9, 52, '2', '2002-2020', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Linguistics and Language (Q4)'), (22754, 'Journal of Leukemia and Lymphoma', 10099921, 0.109, 'Q4', 4, 98, 1825, 27, 397, '1', '2008-2020', 'Cancer Research (Q4); Hematology (Q4); Oncology (Q4)'), (22755, 'Journal of Narrative and Language Studies', 21484066, 0.109, 'Q2', 1, 12, 365, 2, 35, '18', '2018', 'Literature and Literary Theory (Q2); Language and Linguistics (Q3); Communication (Q4); Linguistics and Language (Q4)'), (22756, 'Journal of Otolaryngology of Japan', 306622, 0.109, 'Q4', 14, 57, 482, 13, 163, '6', '1948-2020', 'Otorhinolaryngology (Q4)'), (22757, 'Journal of Stem Cells', 15568539, 0.109, 'Q4', 18, 0, 0, 6, 38, '2', '2006-2019', 'Cell Biology (Q4); Genetics (Q4); Molecular Medicine (Q4); Transplantation (Q4)'), (22758, 'Kyobu geka. The Japanese journal of thoracic ', 215252, 0.109, 'Q4', 11, 12, 0, 51, 614, '6', '1961-2020', 'Medicine (miscellaneous) (Q4)'), (22759, 'Logos (United States)', 1533791, 0.109, 'Q2', 7, 28, 856, 11, 84, '2', '2002-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); Philosophy (Q3); Religious Studies (Q3)'), (22760, 'Mathematics Student', 255742, 0.109, 'Q4', 1, 0, 0, 1, 28, '4', '2019', 'Education (Q4); Mathematics (miscellaneous) (Q4)'), (22761, 'Medycyna Paliatywna w Praktyce', 18980678, 0.109, 'Q4', 4, 0, 0, 3, 26, '17', '2007-2017', 'Medicine (miscellaneous) (Q4)'), (22762, 'Middle East Quarterly', 10739467, 0.109, 'Q4', 16, 18, 0, 10, 27, '2', '2005-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Political Science and International Relations (Q4)'), (22763, 'Military Balance, The', 14799022, 0.109, 'Q4', 3, 9, 0, 6, 30, '3', '1961-1969, 2008, 2010-2020', 'Political Science and International Relations (Q4)'), (22764, 'Military Operations Research', 2755823, 0.109, 'Q4', 14, 0, 0, 9, 42, '2', '2005-2019', 'Civil and Structural Engineering (Q4); Management Science and Operations Research (Q4); Mechanical Engineering (Q4)'), (22765, 'National Interest', 8849382, 0.109, 'Q4', 15, 44, 0, 5, 75, '2', '2004-2018', 'Geography, Planning and Development (Q4); Political Science and International Relations (Q4)'), (22766, 'New Review of Film and Television Studies', 17400309, 0.109, 'Q3', 9, 22, 638, 12, 89, '3', '2010-2020', 'Visual Arts and Performing Arts (Q3); Communication (Q4)'), (22767, 'Nineteenth-Century Literature', 8919356, 0.109, 'Q2', 14, 1, 54, 3, 47, '2', '1986-2019', 'Literature and Literary Theory (Q2)'), (22768, 'Oceanide', 19896328, 0.109, 'Q3', 2, 23, 684, 1, 28, '12', '2013-2018, 2020', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4)'), (22769, 'Orbis Litterarum', 16000730, 0.109, 'Q2', 8, 24, 893, 18, 80, '3', '1943-1950, 1954-2020', 'Literature and Literary Theory (Q2)'), (22770, 'OT Practice', 10844902, 0.109, 'Q4', 8, 0, 0, 13, 166, '2', '2006-2009, 2013-2014, 2016-2019', 'Advanced and Specialized Nursing (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4); Rehabilitation (Q4)'), (22771, 'Papers and Proceedings - Royal Society of Tas', 804703, 0.109, 'Q4', 11, 0, 0, 3, 18, '11', '1982-1997, 2009-2011, 2015-2018', 'Multidisciplinary (Q4)'), (22772, 'Perichoresis', 1224984, 0.109, 'Q3', 2, 44, 1163, 7, 73, '43', '2009-2020', 'Religious Studies (Q3)'), (22773, 'Plastics Engineering', 919578, 0.109, 'Q4', 13, 86, 4, 23, 142, '2', '1969-1971, 1973-1991, 1993-2020', 'Chemical Engineering (miscellaneous) (Q4); Materials Chemistry (Q4); Polymers and Plastics (Q4)'), (22774, 'Polis', 20512996, 0.109, 'Q3', 6, 13, 567, 9, 59, '16', '2009-2020', 'Classics (Q3); History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)'), (22775, 'Popolazione e Storia', 15914798, 0.109, 'Q3', 3, 5, 97, 3, 30, '7', '2015-2019', 'History (Q3); Demography (Q4)'), (22776, 'Psychoanalytic Social Work', 15228878, 0.109, 'Q4', 11, 16, 435, 9, 26, '2', '1999-2020', 'Social Psychology (Q4); Social Sciences (miscellaneous) (Q4); Social Work (Q4)'), (22777, 'Recent Patents on Endocrine, Metabolic and Im', 18722148, 0.109, 'Q4', 22, 0, 0, 2, 7, '52', '2008-2017', 'Biochemistry (medical) (Q4); Drug Discovery (Q4); Endocrinology, Diabetes and Metabolism (Q4); Immunology and Allergy (Q4); Medicine (miscellaneous) (Q4)'), (22778, 'Revista de Occidente', 348635, 0.109, 'Q2', 4, 124, 414, 6, 273, '12', '2002-2004, 2007-2020', 'Literature and Literary Theory (Q2); Cultural Studies (Q3); History (Q3); Visual Arts and Performing Arts (Q3)'), (22779, 'Revue du Praticien', 352640, 0.109, 'Q4', 19, 338, 0, 56, 869, '8', '1951-1966, 1972-2020', 'Medicine (miscellaneous) (Q4)'), (22780, 'Risk and Decision Analysis', 18759173, 0.109, 'Q4', 9, 4, 174, 2, 25, '16', '2009-2014, 2016-2018, 2020', 'Economics and Econometrics (Q4); Finance (Q4); Statistics and Probability (Q4); Statistics, Probability and Uncertainty (Q4)'), (22781, 'Romance Studies', 17458153, 0.109, 'Q2', 7, 21, 564, 7, 46, '3', '1983-1995, 2005-2020', 'Literature and Literary Theory (Q2)'), (22782, 'Sapporo Medical Journal', 36472, 0.109, 'Q4', 3, 0, 0, 5, 41, '6', '1961-1971, 1973-2013, 2016-2018, 2020', 'Medicine (miscellaneous) (Q4)'), (22783, 'SEL - Studies in English Literature', 393657, 0.109, 'Q2', 15, 18, 1113, 12, 112, '2', '2002-2020', 'Literature and Literary Theory (Q2)'), (22784, 'Sri Lanka journal of social sciences', 2589710, 0.109, 'Q4', 4, 10, 363, 9, 30, '76', '1978, 1980, 1993, 2004, 2006, 2008, 2010, 2012, 2014-2020', 'Social Sciences (miscellaneous) (Q4)'), (22785, 'Studies in Comics', 20403232, 0.109, 'Q2', 1, 12, 362, 4, 16, '3', '2019', 'Literature and Literary Theory (Q2); Visual Arts and Performing Arts (Q3)'), (22786, 'Surgical Practice', 17441625, 0.109, 'Q4', 10, 37, 508, 14, 90, '3', '2005-2020', 'Surgery (Q4)'), (22787, 'Svensk Teologisk Kvartalskrift', 396761, 0.109, 'Q3', 2, 0, 0, 2, 53, '20', '2011-2017, 2019', 'Religious Studies (Q3)'), (22788, 'Synthesiology', 18830978, 0.109, 'Q4', 10, 0, 0, 5, 35, '6', '2008-2019', 'Engineering (miscellaneous) (Q4); Multidisciplinary (Q4); Social Sciences (miscellaneous) (Q4)'), (22789, 'Turkish Nephrology, Dialysis and Transplantat', 13007718, 0.109, 'Q4', 6, 0, 0, 11, 117, '18', '2011-2018', 'Surgery (Q4); Urology (Q4)'), (22790, 'Turkiye Klinikleri Dermatoloji', 13000330, 0.109, 'Q4', 2, 12, 285, 5, 79, '18', '2010-2020', 'Dermatology (Q4)'), (22791, 'Veterinaria', 3943151, 0.109, 'Q4', 4, 40, 989, 7, 83, '7', '1974, 1979-1980, 2011-2020', 'Veterinary (miscellaneous) (Q4)'), (22792, 'World health &amp; population', 17183340, 0.109, 'Q4', 14, 0, 0, 2, 12, '9', '2007-2014, 2018-2019', 'Medicine (miscellaneous) (Q4)'), (22793, 'Zhenkong Kexue yu Jishu Xuebao/Journal of Vac', 16727126, 0.109, 'Q4', 11, 212, 3433, 63, 576, '1', '1996-2020', 'Condensed Matter Physics (Q4); Electronic, Optical and Magnetic Materials (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)'), (22794, 'Acta Pediatrica de Mexico', 1862391, 0.108, 'Q4', 5, 54, 1327, 22, 138, '30', '2014-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (22795, 'Aktuelle Rheumatologie', 14389940, 0.108, 'Q4', 12, 180, 2138, 20, 146, '5', '1978-2020', 'Rheumatology (Q4)'), (22796, 'Anuario de Estudios Filologicos', 2108178, 0.108, 'Q3', 3, 17, 516, 3, 37, '12', '2015-2018', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22797, 'Archives of Histology and Cytology', 9149465, 0.108, 'Q4', 50, 0, 0, 1, 3, '6', '1988-2009, 2011-2013, 2015-2017', 'Histology (Q4)'), (22798, 'Asian Case Research Journal', 2189275, 0.108, 'Q4', 3, 13, 241, 5, 56, '37', '2008-2019', 'Business, Management and Accounting (miscellaneous) (Q4)'), (22799, 'Aspasia', 19332882, 0.108, 'Q3', 5, 9, 593, 3, 20, '3', '2011-2019', 'History (Q3); Gender Studies (Q4)'), (22800, 'BioSpektrum', 9470867, 0.108, 'Q4', 5, 138, 1222, 18, 292, '5', '2004-2020', 'Biotechnology (Q4); Molecular Biology (Q4)'), (22801, 'Boletin de Estadistica e Investigacion Operat', 18893805, 0.108, 'Q4', 4, 10, 186, 3, 52, '12', '2014-2020', 'Management Science and Operations Research (Q4); Statistics, Probability and Uncertainty (Q4)'), (22802, 'Brno Studies in English', 18050867, 0.108, 'Q3', 8, 29, 1102, 5, 65, '31', '2011-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22803, 'Bulletin of Spanish Studies', 14753820, 0.108, 'Q3', 5, 74, 0, 17, 213, '2', '2010-2020', 'Cultural Studies (Q3); Literature and Literary Theory (Q3)'), (22804, 'Bulletin of the Institute of Classical Studie', 20415370, 0.108, 'Q3', 17, 9, 480, 8, 46, '2', '1954-2019', 'Classics (Q3); History (Q3); Language and Linguistics (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Linguistics and Language (Q4)'), (22805, 'Cahiers Victoriens and Edouardiens', 2205610, 0.108, 'Q3', 3, 23, 624, 5, 54, '8', '1990, 2002-2018', 'Cultural Studies (Q3); Literature and Literary Theory (Q3)'), (22806, 'Change Management', 2327798, 0.108, 'Q4', 3, 4, 172, 5, 17, '2', '2013-2020', 'Strategy and Management (Q4)'), (22807, 'Church History', 96407, 0.108, 'Q3', 23, 25, 2255, 8, 76, '3', '1932-2020', 'Cultural Studies (Q3); History (Q3); Religious Studies (Q3)'), (22808, 'Civil War History', 15336271, 0.108, 'Q3', 14, 18, 796, 5, 31, '2', '1963, 1970, 1978, 1982, 1985, 1987, 1992, 2000, 2002-2020', 'History (Q3)'), (22809, 'Crescent Journal of Medical and Biological Sc', 21489696, 0.108, 'Q4', 2, 0, 0, 0, 3, '18', '2016-2017', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (22810, 'Daimon', 11300507, 0.108, 'Q3', 5, 41, 1242, 16, 143, '12', '2011-2020', 'Philosophy (Q3)'), (22811, 'Deutsche Apotheker Zeitung', 119857, 0.108, 'Q4', 9, 1277, 4223, 15, 2936, '5', '1965, 1967-2020', 'Pharmacology (medical) (Q4)'), (22812, 'Droit et Societe', 19696973, 0.108, 'Q4', 13, 0, 0, 4, 23, '8', '2001-2017', 'Law (Q4); Sociology and Political Science (Q4)'), (22813, 'EEAG Report on the European Economy', 1611311, 0.108, 'Q4', 4, 6, 221, 2, 12, '5', '2006-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (22814, 'Egyptian Journal of Ear, Nose, Throat and All', 20900740, 0.108, 'Q4', 8, 36, 690, 25, 115, '32', '2012-2020', 'Otorhinolaryngology (Q4); Surgery (Q4)'), (22815, 'Eikasmos', 11218819, 0.108, 'Q3', 3, 0, 0, 8, 88, '7', '2011-2019', 'Classics (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22816, 'E-Journal of International and Comparative La', 22804056, 0.108, 'Q4', 2, 4, 146, 8, 45, '7', '2018-2019', 'Industrial Relations (Q4); Law (Q4); Organizational Behavior and Human Resource Management (Q4)'), (22817, 'Emergency Medicine', 136654, 0.108, 'Q4', 6, 0, 0, 10, 72, '2', '1978-1981, 1984, 1999-2018', 'Emergency Medicine (Q4)'), (22818, 'Encyclopaideia', 18258670, 0.108, 'Q4', 4, 2, 60, 9, 51, '7', '2013-2020', 'Education (Q4); E-learning (Q4)'), (22819, 'Endoscopy International Open', 21969736, 0.108, 'Q4', 0, 0, 0, 0, 3, '5', '2018-2019', 'Gastroenterology (Q4); Medicine (miscellaneous) (Q4)'), (22820, 'European Journal of Pragmatism and American P', 20364091, 0.108, 'Q3', 1, 21, 631, 4, 24, '7', '2019', 'Philosophy (Q3); Applied Psychology (Q4); Sociology and Political Science (Q4)'), (22821, 'European Judaism', 143006, 0.108, 'Q3', 2, 27, 227, 6, 95, '2', '2017-2020', 'Cultural Studies (Q3); History (Q3); Philosophy (Q3); Religious Studies (Q3); Applied Psychology (Q4)'), (22822, 'Food Science and Technology', 14753324, 0.108, 'Q4', 8, 1, 0, 11, 87, '3', '2004-2018', 'Food Science (Q4)'), (22823, 'Gaojishu Tongxin/High Technology Letters', 10020470, 0.108, 'Q4', 12, 147, 3036, 57, 387, '1', '1997-1999, 2001-2020', 'Engineering (miscellaneous) (Q4)'), (22824, 'Hospital Medicine Clinics', 22115943, 0.108, 'Q4', 4, 0, 0, 11, 44, '2', '2012-2017', 'Medicine (miscellaneous) (Q4)'), (22825, 'Hypnos', 14139138, 0.108, 'Q3', 1, 5, 106, 2, 26, '14', '2017-2018', 'Classics (Q3); Philosophy (Q3)'), (22826, 'Iatreia', 1210793, 0.108, 'Q4', 10, 56, 1498, 19, 189, '47', '1988-2020', 'Medicine (miscellaneous) (Q4)'), (22827, 'Immunology and Immunogenetics Insights', 11786345, 0.108, 'Q4', 6, 0, 0, 0, 3, '41', '2009-2019', 'Immunology (Q4); Immunology and Allergy (Q4)'), (22828, 'Independent Review', 10861653, 0.108, 'Q4', 20, 0, 0, 10, 58, '2', '1996-2018', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (22829, 'International Eye Science', 16725123, 0.108, 'Q4', 6, 491, 12257, 107, 1653, '1', '2012-2020', 'Ophthalmology (Q4)'), (22830, 'International Journal of Body, Mind and Cultu', 23455802, 0.108, 'Q4', 1, 30, 727, 2, 20, '15', '2019-2020', 'Applied Psychology (Q4); Psychiatry and Mental Health (Q4)'), (22831, 'International Journal of Korean History', 25085921, 0.108, 'Q3', 1, 15, 533, 2, 26, '13', '2018-2020', 'Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3)'), (22832, 'International Journal of Mechatronics and App', 25594397, 0.108, 'Q4', 4, 88, 1308, 42, 230, '43', '2017-2020', 'Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)'), (22833, 'International Journal of Organizational Diver', 23286261, 0.108, 'Q3', 4, 4, 260, 6, 18, '2', '2013-2020', 'Cultural Studies (Q3); Organizational Behavior and Human Resource Management (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (22834, 'International Journal of Technology and Globa', 14765667, 0.108, 'Q4', 20, 11, 563, 1, 3, '3', '2004-2008, 2010-2013', 'Economics and Econometrics (Q4); Management, Monitoring, Policy and Law (Q4); Political Science and International Relations (Q4)'), (22835, 'Italian Studies', 751634, 0.108, 'Q3', 10, 35, 0, 9, 91, '3', '1937-1939, 1946-1947, 1949-1995, 1999, 2002-2020', 'Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22836, 'JFE Technical Report', 18837263, 0.108, 'Q4', 16, 0, 0, 9, 67, '6', '2003-2019', 'Materials Chemistry (Q4); Mechanical Engineering (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (22837, 'Journal de Traumatologie du Sport', 17730465, 0.108, 'Q4', 9, 35, 875, 7, 86, '8', '2003-2020', 'Orthopedics and Sports Medicine (Q4); Rehabilitation (Q4); Sports Science (Q4); Surgery (Q4)'), (22838, 'Journal of Applied Cosmetology', 3928543, 0.108, 'Q4', 11, 0, 0, 3, 31, '7', '1985-2017', 'Dermatology (Q4)'), (22839, 'Journal of Aridland Agriculture', 24559377, 0.108, 'Q4', 1, 6, 220, 1, 3, '52', '2019-2020', 'Agronomy and Crop Science (Q4); Global and Planetary Change (Q4); Horticulture (Q4); Soil Science (Q4)'), (22840, 'Journal of Assessment and Institutional Effec', 21606757, 0.108, 'Q4', 3, 0, 0, 6, 25, '2', '2014-2017, 2019', 'Education (Q4)'), (22841, 'Journal of Cognitive Science', 15982327, 0.108, 'Q4', 4, 5, 156, 19, 57, '13', '2016-2020', 'Artificial Intelligence (Q4); Cognitive Neuroscience (Q4); Experimental and Cognitive Psychology (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22842, 'Journal of Econometric Methods', 21566674, 0.108, 'Q4', 3, 15, 561, 0, 3, '5', '2019-2020', 'Applied Mathematics (Q4); Economics and Econometrics (Q4); Statistics and Probability (Q4)'), (22843, 'Journal of Enterprise Transformation', 19488297, 0.108, 'Q4', 13, 0, 0, 4, 3, '3', '2011-2018', 'Control and Systems Engineering (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management Science and Operations Research (Q4); Organizational Behavior and Human Resource Man'), (22844, 'Journal of Experimental Biology and Agricultu', 23208694, 0.108, 'Q4', 2, 128, 5808, 7, 61, '4', '2019-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Veterinary (miscellaneous) (Q4)'), (22845, 'Journal of Feline Medicine and Surgery Open R', 20551169, 0.108, 'Q4', 2, 57, 1374, 0, 3, '3', '2019-2020', 'Small Animals (Q4)'), (22846, 'Journal of Gastroenterology and Hepatology Re', 22243992, 0.108, 'Q4', 4, 0, 0, 0, 3, '35', '2014-2017', 'Gastroenterology (Q4); Hepatology (Q4)'), (22847, 'Journal of Medical Marketing', 17457912, 0.108, 'Q4', 18, 0, 0, 3, 3, '2', '2000-2015, 2017-2018', 'Marketing (Q4); Medicine (miscellaneous) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4); Strategy and Management (Q4)'), (22848, 'Journal of Print and Media Technology Researc', 22238905, 0.108, 'Q3', 1, 12, 264, 3, 23, '5', '2017-2018', 'Media Technology (Q3); Visual Arts and Performing Arts (Q3); Communication (Q4)'), (22849, 'Journal of SAFOG', 9751920, 0.108, 'Q4', 8, 63, 1002, 24, 258, '4', '2011-2020', 'Obstetrics and Gynecology (Q4)'), (22850, 'Journal of Taiwan Agricultural Engineering', 2575744, 0.108, 'Q4', 3, 22, 441, 4, 77, '22', '2011-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Engineering (miscellaneous) (Q4)'), (22851, 'Journal of the Austrian Society of Agricultur', 18158129, 0.108, 'Q4', 7, 0, 0, 6, 72, '28', '2006-2016, 2018-2019', 'Agronomy and Crop Science (Q4); Economics and Econometrics (Q4); Forestry (Q4)'), (22852, 'Journal of Urban Mathematics Education', 21512612, 0.108, 'Q4', 0, 5, 156, 0, 3, '2', '2019-2020', 'Education (Q4); Mathematics (miscellaneous) (Q4)'), (22853, 'Keria', 15811263, 0.108, 'Q3', 0, 8, 343, 0, 3, '60', '2019', 'Classics (Q3); Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22854, 'Klinicka Farmakologie a Farmacie', 12127973, 0.108, 'Q4', 5, 33, 850, 4, 81, '31', '2009-2020', 'Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacy (Q4)'), (22855, 'KNOB Bulletin', 1660470, 0.108, 'Q3', 3, 6, 172, 3, 36, '16', '2010-2020', 'Conservation (Q3); History (Q3); Visual Arts and Performing Arts (Q3)'), (22856, 'Korean Journal of Medical History', 1225505, 0.108, 'Q4', 7, 25, 873, 11, 43, '13', '1992-1995, 1998-2020', 'History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)'), (22857, 'Late Imperial China', 8843236, 0.108, 'Q3', 13, 10, 756, 6, 24, '2', '1978, 1987-1988, 1999, 2001-2019', 'Cultural Studies (Q3); History (Q3)'), (22858, 'Matatu', 9329714, 0.108, 'Q3', 3, 99, 2074, 4, 48, '16', '2011-2017, 2019-2020', 'Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Sociology and Political Science (Q4)'), (22859, 'Medecine Therapeutique Medecine de la Reprodu', 19524102, 0.108, 'Q4', 5, 16, 0, 2, 116, '8', '2004-2006, 2012-2019', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (22860, 'Medical Journal of Wuhan University', 16718852, 0.108, 'Q4', 6, 215, 3439, 29, 673, '1', '2001-2020', 'Medicine (miscellaneous) (Q4)'), (22861, 'Metodicki Ogledi', 18482325, 0.108, 'Q3', 1, 8, 274, 4, 29, '58', '2017-2019', 'Philosophy (Q3); Education (Q4)'), (22862, 'Modern Language Review', 267937, 0.108, 'Q3', 11, 7, 311, 16, 90, '3', '2002-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22863, 'Muzikoloski Zbornik', 580373, 0.108, 'Q3', 4, 11, 219, 5, 69, '60', '2008-2019', 'Music (Q3)'), (22864, 'National Toxicology Program technical report ', 8888051, 0.108, 'Q4', 18, 2, 0, 1, 7, '2', '2000-2013', 'Medicine (miscellaneous) (Q4)'), (22865, 'Nederlands Tijdschrift voor Dermatologie en V', 9258604, 0.108, 'Q4', 4, 129, 678, 5, 321, '16', '2004-2020', 'Critical Care and Intensive Care Medicine (Q4); Infectious Diseases (Q4)'), (22866, 'New York University Journal of Law and Libert', 19305044, 0.108, 'Q4', 4, 8, 1037, 6, 50, '2', '2016-2020', 'Law (Q4)'), (22867, 'Occupational Therapy Now', 14815532, 0.108, 'Q4', 8, 0, 0, 10, 17, '9', '2006-2009, 2017-2019', 'Advanced and Specialized Nursing (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Public Health, Environmental and Occupational Health (Q4); Rehabilitation (Q4)'), (22868, 'Ophthalmology in China', 10044469, 0.108, 'Q4', 5, 87, 1235, 9, 265, '1', '2006-2020', 'Ophthalmology (Q4)'), (22869, 'Ortho Magazine', 12624586, 0.108, 'Q4', 1, 41, 137, 0, 3, '8', '2006-2017, 2020', 'Developmental and Educational Psychology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (22870, 'Pediatria i Medycyna Rodzinna', 17341531, 0.108, 'Q4', 5, 76, 1647, 17, 203, '17', '2006-2020', 'Family Practice (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (22871, 'Pediatric Hematology/Oncology and Immunopatho', 17261708, 0.108, 'Q4', 3, 98, 2807, 24, 175, '10', '2005, 2013-2020', 'Hematology (Q4); Immunology (Q4); Immunology and Allergy (Q4); Oncology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (22872, 'Pharmaceutical Journal', 316873, 0.108, 'Q4', 28, 0, 0, 2, 21, '3', '1945-1949, 1994-2012, 2014-2017', 'Pharmaceutical Science (Q4); Pharmacology (Q4); Pharmacy (Q4)'), (22873, 'Philosophy and Literature', 1900013, 0.108, 'Q3', 15, 35, 669, 4, 112, '2', '2002-2020', 'Literature and Literary Theory (Q3); Philosophy (Q3)'), (22874, 'Piel', 15788830, 0.108, 'Q4', 6, 218, 3070, 22, 561, '12', '2005-2020', 'Dermatology (Q4)'), (22875, 'Plato Journal', 20797567, 0.108, 'Q3', 0, 14, 431, 0, 3, '26', '2019', 'Philosophy (Q3)'), (22876, 'Psikiyatride Guncel Yaklasimlar', 13090674, 0.108, 'Q4', 1, 0, 0, 1, 4, '18', '2014, 2016-2017', 'Biological Psychiatry (Q4); Psychiatry and Mental Health (Q4)'), (22877, 'Psycho-Oncologie', 17783798, 0.108, 'Q4', 11, 0, 0, 8, 124, '8', '2007-2019', 'Clinical Psychology (Q4); Oncology (Q4); Oncology (nursing) (Q4); Psychiatry and Mental Health (Q4)'), (22878, 'Public Finance Quarterly', 20648278, 0.108, 'Q4', 2, 57, 1735, 0, 3, '50', '2020', 'Finance (Q4); Public Administration (Q4)'), (22879, 'Purushartha', 975024, 0.108, 'Q3', 3, 9, 436, 14, 57, '4', '2011-2013, 2015-2019', 'Philosophy (Q3); Strategy and Management (Q4)'), (22880, 'Rehabilitacja Medyczna', 14279622, 0.108, 'Q4', 7, 5, 153, 4, 72, '5', '2005-2019', 'Rehabilitation (Q4)'), (22881, 'Revista Cubana de Hematologia, Inmunologia y ', 8640289, 0.108, 'Q4', 8, 51, 1304, 7, 114, '85', '1999-2003, 2006-2020', 'Hematology (Q4); Immunology (Q4); Immunology and Allergy (Q4)'), (22882, 'Revista de Critica Literaria Latinoamericana', 2528843, 0.108, 'Q3', 5, 0, 0, 5, 74, '68', '2002-2014, 2017-2018', 'Cultural Studies (Q3); Literature and Literary Theory (Q3)'), (22883, 'Revista de Historiografia', 18852718, 0.108, 'Q3', 4, 13, 427, 16, 99, '12', '2012-2020', 'History (Q3)'), (22884, 'Revista del Jardin Botanico Nacional', 24105546, 0.108, 'Q4', 1, 0, 0, 1, 11, '85', '2019', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (22885, 'Revista Espanola de Educacion Comparada', 11378654, 0.108, 'Q4', 1, 22, 958, 2, 16, '12', '2019-2020', 'Education (Q4)'), (22886, 'Revista Geografica Venezolana', 22448853, 0.108, 'Q4', 9, 17, 365, 9, 77, '94', '1981, 1985-2020', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (22887, 'Revista Mexicana de Cardiologia', 1882198, 0.108, 'Q4', 5, 0, 0, 12, 44, '30', '2008-2018', 'Cardiology and Cardiovascular Medicine (Q4)'), (22888, 'Revus', 18557112, 0.108, 'Q3', 6, 30, 667, 5, 57, '60', '2013-2020', 'Philosophy (Q3); Law (Q4)'), (22889, 'Romance Notes', 357995, 0.108, 'Q3', 4, 24, 408, 6, 139, '2', '1975, 2002-2019', 'Literature and Literary Theory (Q3)'), (22890, 'SA Pharmaceutical Journal', 10151362, 0.108, 'Q4', 7, 34, 359, 18, 143, '27', '2009-2020', 'Pharmaceutical Science (Q4)'), (22891, 'Shanghai Ligong Daxue Xuebao/Journal of Unive', 10076735, 0.108, 'Q4', 11, 88, 1662, 36, 279, '1', '1998, 2001-2020', 'Engineering (miscellaneous) (Q4)'), (22892, 'Sistema', 2100223, 0.108, 'Q4', 2, 24, 188, 4, 40, '12', '2015-2020', 'Social Sciences (miscellaneous) (Q4)'), (22893, 'Slavic and East European Information Resource', 15229041, 0.108, 'Q4', 5, 12, 0, 4, 44, '2', '2001-2020', 'Library and Information Sciences (Q4); Linguistics and Language (Q4)'), (22894, 'South African Theatre Journal', 21637660, 0.108, 'Q3', 8, 6, 125, 9, 37, '3', '1996-2012, 2014-2020', 'Visual Arts and Performing Arts (Q3)'), (22895, 'Studies in the Literary Imagination', 393819, 0.108, 'Q3', 7, 0, 0, 2, 22, '2', '2002-2018', 'Literature and Literary Theory (Q3)'), (22896, 'Style', 394238, 0.108, 'Q3', 18, 19, 463, 18, 109, '2', '2002-2019', 'Literature and Literary Theory (Q3)'), (22897, 'Sunbird', 1037258, 0.108, 'Q4', 1, 0, 0, 0, 3, '11', '1982-1983, 2014-2017', 'Animal Science and Zoology (Q4)'), (22898, 'Theater', 1527196, 0.108, 'Q3', 7, 23, 201, 5, 66, '2', '2002-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)'), (22899, 'Theological Studies', 405639, 0.108, 'Q3', 19, 33, 0, 21, 109, '2', '1973-1976, 1979-1981, 1987-1990, 1993, 1995-2020', 'Religious Studies (Q3)'), (22900, 'Turkish Journal of Nephrology', 26674440, 0.108, 'Q4', 1, 56, 1465, 5, 60, '18', '2019-2020', 'Nephrology (Q4); Surgery (Q4); Transplantation (Q4)'), (22901, 'Turk Osteoporoz Dergisi', 21472653, 0.108, 'Q4', 5, 29, 745, 3, 54, '18', '2011-2020', 'Endocrinology, Diabetes and Metabolism (Q4)'), (22902, 'Victorians', 21660107, 0.108, 'Q3', 4, 23, 465, 4, 52, '2', '2013, 2015-2020', 'Cultural Studies (Q3); Literature and Literary Theory (Q3)'), (22903, 'Voprosy Onkologii', 5073758, 0.108, 'Q4', 11, 95, 2115, 43, 360, '10', '1955-2019', 'Cancer Research (Q4); Oncology (Q4)'), (22904, 'Wellsian', 2631776, 0.108, 'Q3', 0, 4, 156, 0, 3, '17', '2019', 'Literature and Literary Theory (Q3)'), (22905, 'World Journal of Laparoscopic Surgery', 9751955, 0.108, 'Q4', 5, 37, 683, 16, 98, '4', '2011-2020', 'Surgery (Q4)'), (22906, 'World of Music', 438774, 0.108, 'Q3', 11, 13, 599, 4, 36, '5', '2002-2010, 2012-2019', 'Music (Q3)'), (22907, 'Acta Geographica Lodziensia', 651249, 0.107, 'Q4', 8, 11, 563, 1, 17, '17', '1979-1980, 1982, 1985-1990, 1993-1998, 2002-2009, 2019', 'Geography, Planning and Development (Q4); Geology (Q4)'), (22908, 'Acta Microbiologica Hellenica', 4389573, 0.107, 'Q4', 3, 0, 0, 5, 40, '39', '1973-1985, 1989-2019', 'Microbiology (medical) (Q4)'), (22909, 'Acta Stomatologica Naissi', 18201202, 0.107, 'Q4', 8, 1, 66, 3, 26, '55', '2009-2019', 'Dentistry (miscellaneous) (Q4)'), (22910, 'Advances in Environmental Technology', 24764779, 0.107, 'Q4', 1, 2, 98, 2, 18, '15', '2019', 'Environmental Chemistry (Q4); Environmental Engineering (Q4); Pollution (Q4); Renewable Energy, Sustainability and the Environment (Q4); Waste Management and Disposal (Q4); Water Science and Technolog'), (22911, 'African Journal of Legal Studies', 17087384, 0.107, 'Q4', 8, 15, 647, 3, 31, '16', '2004-2006, 2008-2009, 2011-2020', 'Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (22912, 'AlBayan', 22321969, 0.107, 'Q3', 4, 9, 306, 4, 25, '16', '2011-2020', 'Cultural Studies (Q3); Religious Studies (Q3)'), (22913, 'Ariel', 41327, 0.107, 'Q3', 10, 21, 902, 9, 63, '2', '2002-2020', 'Literature and Literary Theory (Q3)'), (22914, 'Art Bulletin', 43079, 0.107, 'Q3', 28, 27, 0, 8, 67, '3', '1945-1948, 1950-1959, 1961-2020', 'History (Q3); Visual Arts and Performing Arts (Q3)'), (22915, 'Atelie Geografico', 19821956, 0.107, 'Q4', 1, 41, 1342, 4, 41, '14', '2019-2020', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Tourism, Leisure and Hospitality Management (Q4); Urban Studies (Q4)'), (22916, 'Beitrage zur Geschichte der Deutschen Sprache', 58076, 0.107, 'Q3', 8, 13, 431, 4, 55, '5', '1874, 1876-1880, 1882, 1884-1889, 1891-1910, 1912-1918, 1920-1940, 1942, 1944-1945, 1947-1953, 1955-', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22917, 'British and American Studies', 24577715, 0.107, 'Q3', 1, 0, 0, 2, 54, '43', '2018-2019', 'Cultural Studies (Q3); Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22918, 'Bulletin de Correspondance Hellenique', 74217, 0.107, 'Q3', 6, 0, 0, 3, 21, '8', '2002-2004, 2011-2012, 2014-2015, 2017', 'Classics (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (22919, 'Bulletin de la Societe Vaudoise des Sciences ', 379603, 0.107, 'Q4', 11, 0, 0, 1, 35, '19', '1981-2013, 2015, 2017-2019', 'Multidisciplinary (Q4)'), (22920, 'Chinese Journal of Biomedical Engineering', 2588021, 0.107, 'Q4', 13, 94, 2622, 44, 297, '1', '1984-2019', 'Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4)'), (22921, 'Chinese Journal of Tissue Engineering Researc', 16738225, 0.107, 'Q4', 11, 1084, 31544, 195, 2794, '1', '2007-2021', 'Biomedical Engineering (Q4); Clinical Biochemistry (Q4); Orthopedics and Sports Medicine (Q4)'), (22922, 'Communications Law', 17467616, 0.107, 'Q4', 5, 0, 0, 1, 13, '3', '2004-2017', 'Communication (Q4); Law (Q4)'), (22923, 'Diasporas', 16375823, 0.107, 'Q3', 3, 0, 0, 3, 64, '8', '2008-2019', 'Cultural Studies (Q3); History (Q3); Demography (Q4); Sociology and Political Science (Q4)'), (22924, 'Edinburgh Law Review', 17551692, 0.107, 'Q3', 2, 56, 0, 8, 60, '3', '2019-2020', 'Cultural Studies (Q3); History (Q3); Law (Q4)'), (22925, 'Estudos de Psicologia', 1413294, 0.107, 'Q4', 13, 0, 0, 9, 90, '14', '2006-2019', 'Psychology (miscellaneous) (Q4)'), (22926, 'European Journal of Pediatric Dermatology', 11227672, 0.107, 'Q4', 9, 0, 0, 12, 78, '7', '1994-2019', 'Dermatology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (22927, 'Gastroenterological Endoscopy', 3871207, 0.107, 'Q4', 11, 114, 2431, 15, 333, '6', '1970, 1973-2020', 'Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (22928, 'Gynakologische Endokrinologie', 16102908, 0.107, 'Q4', 6, 52, 1019, 27, 134, '5', '2005-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4); Reproductive Medicine (Q4)'), (22929, 'History of Medicine', 25002910, 0.107, 'Q3', 3, 0, 0, 11, 102, '10', '2014-2019', 'History (Q3); History and Philosophy of Science (Q4); Medicine (miscellaneous) (Q4)'), (22930, 'Hobbes Studies', 9215891, 0.107, 'Q3', 8, 7, 519, 7, 31, '16', '1989-1990, 1992, 1994, 1996-2020', 'History (Q3); Philosophy (Q3); Sociology and Political Science (Q4)'), (22931, 'Ilahiyat Studies', 13091786, 0.107, 'Q3', 1, 9, 351, 1, 24, '18', '2013-2020', 'Cultural Studies (Q3); Religious Studies (Q3)'), (22932, 'Industrial Archaeology Review', 17458196, 0.107, 'Q4', 7, 16, 0, 7, 31, '3', '1976-1982, 1984-1996, 2002-2020', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (22933, 'International Journal of Academic Medicine', 24555568, 0.107, 'Q4', 2, 58, 1123, 8, 15, '4', '2019-2020', 'Education (Q4); Health (social science) (Q4)'), (22934, 'International Journal of Clinical Skills', 17530431, 0.107, 'Q4', 1, 0, 0, 3, 14, '3', '2016-2017', 'Medicine (miscellaneous) (Q4)'), (22935, 'International Journal of Computational Biolog', 17560764, 0.107, 'Q4', 13, 28, 808, 23, 57, '3', '2008-2015, 2020', 'Computer Science Applications (Q4); Drug Discovery (Q4)'), (22936, 'International Journal of Computers and their ', 10765204, 0.107, 'Q4', 7, 16, 322, 7, 52, '2', '2011-2014', 'Computer Science (miscellaneous) (Q4)'), (22937, 'International Journal of the Book', 14479567, 0.107, 'Q3', 4, 0, 0, 2, 18, '2', '2011-2019', 'History (Q3); Literature and Literary Theory (Q3); Communication (Q4); Library and Information Sciences (Q4)'), (22938, 'International Review of Social Research', 20698267, 0.107, 'Q3', 3, 0, 0, 5, 25, '5', '2018-2019', 'Cultural Studies (Q3); Anthropology (Q4); Social Sciences (miscellaneous) (Q4)'), (22939, 'Japanese Journal of Geriatrics', 3009173, 0.107, 'Q4', 17, 74, 905, 21, 208, '6', '1965-2020', 'Geriatrics and Gerontology (Q4)'), (22940, 'Japanese Journal of Urology', 215287, 0.107, 'Q4', 14, 10, 90, 10, 130, '6', '1961-2019', 'Urology (Q4)'), (22941, 'Journal Asiatique', 17831504, 0.107, 'Q3', 10, 4, 270, 9, 61, '24', '1970, 1989, 1996-2004, 2006-2019', 'Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22942, 'Journal de la Societe des Americanistes', 19577842, 0.107, 'Q3', 7, 26, 943, 9, 77, '8', '1980, 1984, 2011-2020', 'Cultural Studies (Q3); Anthropology (Q4)'), (22943, 'Journal for the Study of the Pseudepigrapha', 17455286, 0.107, 'Q3', 13, 17, 187, 3, 38, '3', '1987-2002, 2004-2020', 'Religious Studies (Q3)'), (22944, 'Journal of Applied Hematology', 24546976, 0.107, 'Q4', 2, 48, 884, 6, 27, '4', '2019-2020', 'Hematology (Q4)'), (22945, 'Journal of Commercial Biotechnology', 1478565, 0.107, 'Q4', 17, 0, 0, 11, 64, '3', '2003-2018', 'Biotechnology (Q4); Economics and Econometrics (Q4); Management of Technology and Innovation (Q4)'), (22946, 'Journal of Environmental Law and Litigation', 10490280, 0.107, 'Q4', 10, 0, 0, 3, 25, '2', '1996-2019', 'Geography, Planning and Development (Q4); Law (Q4); Management, Monitoring, Policy and Law (Q4)'), (22947, 'Journal of Latin American Cultural Studies', 13569325, 0.107, 'Q3', 14, 32, 1143, 21, 78, '3', '1995-2003, 2005-2020', 'Cultural Studies (Q3); History (Q3)'), (22948, 'Journal of Philosophical Economics: Reflectio', 18432298, 0.107, 'Q3', 2, 0, 0, 5, 24, '43', '2017-2019', 'Philosophy (Q3); Economics and Econometrics (Q4); Sociology and Political Science (Q4)'), (22949, 'Journal of RNAi and Gene Silencing', 17470854, 0.107, 'Q4', 7, 0, 0, 1, 6, '3', '2011-2017', 'Biochemistry (Q4); Genetics (Q4); Molecular Biology (Q4)'), (22950, 'Journal of Technology', 10123407, 0.107, 'Q4', 3, 17, 347, 9, 62, '22', '2011-2020', 'Engineering (miscellaneous) (Q4)'), (22951, 'Journal of the American Health Information Ma', 10605487, 0.107, 'Q4', 17, 0, 0, 13, 148, '2', '1991-2018', 'Health Policy (Q4); Medicine (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (22952, 'Journal of the Vacuum Society of Japan', 18824749, 0.107, 'Q4', 6, 0, 0, 9, 94, '6', '2008-2017', 'Instrumentation (Q4); Materials Science (miscellaneous) (Q4); Spectroscopy (Q4); Surfaces and Interfaces (Q4)'), (22953, 'Journal of Writing in Creative Practice', 17535204, 0.107, 'Q3', 4, 19, 163, 11, 57, '3', '2012-2020', 'Visual Arts and Performing Arts (Q3); Communication (Q4)'), (22954, 'Kardiologija v Belarusi', 24142131, 0.107, 'Q4', 2, 75, 1720, 8, 148, '75', '2018-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (22955, 'Methis', 17366852, 0.107, 'Q3', 2, 0, 0, 6, 39, '71', '2017-2019', 'Cultural Studies (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Library and Information Sciences (Q4)'), (22956, 'Nephrologe', 1862040, 0.107, 'Q4', 5, 65, 1273, 20, 194, '5', '2006-2020', 'Nephrology (Q4)'), (22957, 'Nephrology and Dialysis', 16804422, 0.107, 'Q4', 2, 32, 1640, 8, 69, '10', '2017-2020', 'Nephrology (Q4)'), (22958, 'Nephrology, Dialysis and Transplantation', 13125257, 0.107, 'Q4', 1, 31, 750, 1, 54, '61', '2004-2019', 'Nephrology (Q4); Transplantation (Q4)'), (22959, 'Novoe Literaturnoe Obozrenie', 8696365, 0.107, 'Q3', 2, 70, 2563, 17, 325, '10', '2016-2019', 'Cultural Studies (Q3); Literature and Literary Theory (Q3)'), (22960, 'Obrana a Strategie', 18027199, 0.107, 'Q4', 1, 2, 86, 1, 6, '31', '2019', 'Political Science and International Relations (Q4); Safety Research (Q4)'), (22961, 'Otorhinolaryngology Clinics', 975444, 0.107, 'Q4', 5, 14, 178, 5, 77, '4', '2011-2019', 'Otorhinolaryngology (Q4)'), (22962, 'Oxford Art Journal', 1426540, 0.107, 'Q3', 14, 6, 658, 6, 53, '3', '1978, 1981-1994, 1996-2019', 'History (Q3); Visual Arts and Performing Arts (Q3)'), (22963, 'Paragraph', 2648334, 0.107, 'Q3', 15, 23, 711, 11, 69, '3', '2002-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)'), (22964, 'Pharmaceuticals Policy and Law', 2210495, 0.107, 'Q4', 9, 0, 0, 3, 29, '16', '1999, 2001-2002, 2005, 2007-2018', 'Health Policy (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (22965, 'Pharma Times', 316849, 0.107, 'Q4', 11, 4, 34, 8, 109, '4', '2006-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (22966, 'Philosophy of Music Education Review', 10635734, 0.107, 'Q3', 2, 14, 477, 3, 13, '2', '2019-2020', 'Music (Q3); Philosophy (Q3); Education (Q4)'), (22967, 'Photography and Culture', 17514525, 0.107, 'Q3', 5, 37, 761, 13, 60, '3', '2012-2020', 'Cultural Studies (Q3); Visual Arts and Performing Arts (Q3)'), (22968, 'Pielegniarstwo XXI Wieku', 17301912, 0.107, 'Q4', 1, 43, 898, 3, 24, '17', '2019-2020', 'Nursing (miscellaneous) (Q4)'), (22969, 'Plant Engineer', 320838, 0.107, 'Q4', 1, 0, 0, 2, 78, '3', '1970-1971, 1973-1975, 1985, 1994-1996, 1998-2018', 'Industrial and Manufacturing Engineering (Q4); Strategy and Management (Q4)'), (22970, 'Ploughshares', 484474, 0.107, 'Q3', 1, 48, 0, 1, 128, '2', '2002-2019', 'Literature and Literary Theory (Q3)'), (22971, 'QED', 23271574, 0.107, 'Q3', 1, 31, 658, 2, 21, '2', '2019-2020', 'Cultural Studies (Q3); Gender Studies (Q4)'), (22972, 'Ragion Pratica', 17202396, 0.107, 'Q3', 3, 12, 527, 8, 76, '7', '2016-2019', 'Philosophy (Q3); Law (Q4); Sociology and Political Science (Q4)'), (22973, 'Review of International American Studies', 19912773, 0.107, 'Q3', 1, 20, 402, 5, 32, '7', '2018-2019', 'Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Anthropology (Q4)'), (22974, 'Revija za Kriminalistiko in Kriminologijo', 34690, 0.107, 'Q4', 8, 0, 0, 13, 46, '60', '1981, 2011-2019', 'Law (Q4); Pathology and Forensic Medicine (Q4); Social Psychology (Q4)'), (22975, 'Revista Electronica de Veterinaria', 16957504, 0.107, 'Q4', 6, 7, 414, 51, 507, '12', '2011-2018', 'Veterinary (miscellaneous) (Q4)'), (22976, 'Revista Venezolana de Oncologia', 7980582, 0.107, 'Q4', 5, 0, 0, 3, 50, '94', '2008-2018', 'Oncology (Q4)'), (22977, 'Revue de Psychotherapie Psychanalytique de Gr', 17762863, 0.107, 'Q4', 9, 34, 0, 4, 102, '8', '2001-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (22978, 'Rivista Internazionale di Filosofia e Psicolo', 20394667, 0.107, 'Q3', 1, 25, 934, 3, 23, '7', '2019-2020', 'Philosophy (Q3); Experimental and Cognitive Psychology (Q4); Social Psychology (Q4)'), (22979, 'Sefarad', 370894, 0.107, 'Q3', 5, 13, 0, 3, 40, '12', '1982-1983, 1996-2020', 'Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22980, 'Slavia Orientalis', 376744, 0.107, 'Q3', 2, 24, 614, 2, 102, '17', '2011-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22981, 'South', 24748102, 0.107, 'Q3', 7, 0, 0, 3, 32, '2', '2015-2018', 'Cultural Studies (Q3); Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22982, 'Synergies Algerie', 22605029, 0.107, 'Q4', 1, 0, 0, 1, 52, '8', '2013-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22983, 'Theoretical Biology Forum', 356050, 0.107, 'Q4', 17, 0, 0, 4, 24, '7', '1949-1994, 1996-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (22984, 'Theory and Practice of Second Language Acquis', 24505455, 0.107, 'Q4', 2, 1, 0, 4, 24, '17', '2018-2019', 'Developmental and Educational Psychology (Q4); Education (Q4); Linguistics and Language (Q4)'), (22985, 'Tropical Agriculture', 413216, 0.107, 'Q4', 17, 0, 0, 7, 76, '126', '1979-1980, 1982-1983, 1985, 1987-2018', 'Agronomy and Crop Science (Q4); Development (Q4)'), (22986, 'Turkiye Klinikleri Journal of Medical Science', 13000292, 0.107, 'Q4', 15, 69, 1633, 16, 137, '18', '2005-2014, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (22987, 'Tyche', 10109161, 0.107, 'Q3', 4, 0, 0, 4, 38, '28', '2010-2011, 2013-2018', 'History (Q3); Archeology (Q4); Language and Linguistics (Q4)'), (22988, 'USDA Forest Service - General Technical Repor', 8874840, 0.107, 'Q4', 18, 10, 829, 1, 11, '2', '1996-2020', 'Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (22989, 'Winterthur Portfolio', 15456927, 0.107, 'Q3', 9, 6, 73, 3, 18, '2', '1979, 1989, 1996-2019', 'History (Q3); Museology (Q3); Visual Arts and Performing Arts (Q3)'), (22990, 'Word and Image', 2666286, 0.107, 'Q3', 11, 26, 0, 8, 82, '3', '1985-2020', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22991, 'Year s Work in Critical and Cultural Theory', 10774254, 0.107, 'Q3', 3, 0, 0, 2, 61, '3', '1991-1996, 2007-2019', 'Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Philosophy (Q3); Visual Arts and Performing Arts (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (22992, 'Zeitschrift fur Arznei- und Gewurzpflanzen', 14319292, 0.107, 'Q4', 9, 0, 0, 9, 48, '5', '2008-2018', 'Agronomy and Crop Science (Q4); Food Science (Q4); Plant Science (Q4)'), (22993, 'Zeitschrift fur Rechtssoziologie', 1740202, 0.107, 'Q4', 2, 0, 0, 5, 35, '5', '2016-2019', 'Law (Q4)'), (22994, 'Advances in Power Electronics', 20901828, 0.106, 'Q4', 12, 0, 0, 0, 4, '32', '2010-2018', 'Electrical and Electronic Engineering (Q4)'), (22995, 'Ambulatory Surgery', 9666532, 0.106, 'Q4', 16, 4, 61, 4, 33, '3', '1993-2019', 'Anesthesiology and Pain Medicine (Q4); Medical and Surgical Nursing (Q4); Surgery (Q4)'), (22996, 'American Book Review', 1499408, 0.106, 'Q3', 2, 12, 0, 3, 66, '2', '2012-2020', 'Cultural Studies (Q3); Literature and Literary Theory (Q3)'), (22997, 'American Heritage', 28738, 0.106, 'Q3', 3, 0, 0, 0, 4, '2', '1967, 1970-1971, 1973-1974, 1978-1987, 1990, 2000, 2002-2012, 2017', 'Cultural Studies (Q3); History (Q3)'), (22998, 'Annales Francaises de Medecine d Urgence', 21086591, 0.106, 'Q4', 9, 0, 0, 25, 218, '8', '2011-2019', 'Emergency Medicine (Q4)'), (22999, 'Arquiteturarevista', 18085741, 0.106, 'Q4', 5, 19, 660, 6, 53, '14', '2010-2020', 'Architecture (Q4)'), (23000, 'Baltic Linguistics', 20817533, 0.106, 'Q4', 1, 0, 0, 2, 4, '17', '2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23001, 'Biologist', 25165151, 0.106, 'Q4', 22, 23, 65, 7, 4, '3', '1988, 1991-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (23002, 'Biomedicine', 9702067, 0.106, 'Q4', 9, 109, 2418, 14, 270, '4', '1973-1981, 1999-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (23003, 'Biotechnology Law Report', 730031, 0.106, 'Q4', 8, 52, 451, 9, 130, '2', '2000-2020', 'Biotechnology (Q4); Management, Monitoring, Policy and Law (Q4)'), (23004, 'Body, Space and Technology', 14709120, 0.106, 'Q4', 2, 14, 320, 8, 24, '3', '2018-2019', 'Arts and Humanities (miscellaneous) (Q4); Computer Graphics and Computer-Aided Design (Q4); Human-Computer Interaction (Q4)'), (23005, 'Brussels Studies', 20310293, 0.106, 'Q3', 2, 0, 0, 2, 42, '24', '2018-2019', 'Cultural Studies (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)'), (23006, 'Case Reports in Cardiology', 20906404, 0.106, 'Q4', 5, 0, 0, 2, 4, '32', '2014-2017', 'Cardiology and Cardiovascular Medicine (Q4)'), (23007, 'Central Europe', 14790963, 0.106, 'Q4', 19, 2, 0, 1, 26, '3', '2003-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23008, 'Central European Journal of International and', 1802548, 0.106, 'Q4', 4, 13, 666, 13, 113, '31', '2012-2020', 'Political Science and International Relations (Q4); Safety Research (Q4)'), (23009, 'Chinese Journal of Cancer Biotherapy', 1007385, 0.106, 'Q4', 4, 198, 6036, 17, 354, '1', '2008-2011, 2013-2016, 2018-2020', 'Cancer Research (Q4); Molecular Medicine (Q4); Pharmacology (Q4)'), (23010, 'Chinese Journal of Cerebrovascular Diseases', 16725921, 0.106, 'Q4', 6, 69, 1453, 30, 319, '1', '2006-2019', 'Cardiology and Cardiovascular Medicine (Q4); Neurology (clinical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (23011, 'Chinese Journal of Gastroenterology', 10087125, 0.106, 'Q4', 8, 107, 2856, 36, 526, '1', '2001-2020', 'Gastroenterology (Q4)'), (23012, 'Chinese Journal of Rehabilitation Medicine', 10011242, 0.106, 'Q4', 6, 131, 3156, 26, 398, '1', '2006-2020', 'Rehabilitation (Q4)'), (23013, 'Cleveland state law review', 98876, 0.106, 'Q4', 4, 21, 1545, 13, 69, '2', '1974-1975, 1980, 1982-1983, 1990, 1995, 1997, 1999, 2001, 2016-2020', 'Law (Q4)'), (23014, 'Cliniques Mediterraneennes', 7627491, 0.106, 'Q4', 8, 44, 0, 7, 103, '8', '2001-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (23015, 'Communitas', 10230556, 0.106, 'Q4', 1, 0, 0, 2, 12, '27', '2019', 'Communication (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23016, 'Conradiana', 106356, 0.106, 'Q3', 5, 0, 0, 0, 4, '2', '2007-2016', 'Literature and Literary Theory (Q3)'), (23017, 'Conservacion Colombiana', 19001592, 0.106, 'Q4', 1, 0, 0, 2, 4, '47', '2018', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)'), (23018, 'Contemporary Hypnosis and Integrative Therapy', 20492154, 0.106, 'Q3', 6, 0, 0, 0, 4, '3', '2011-2017', 'Complementary and Manual Therapy (Q3); Clinical Psychology (Q4)'), (23019, 'Con-textos Kantianos', 23867655, 0.106, 'Q3', 3, 24, 567, 8, 121, '12', '2014-2020', 'Philosophy (Q3)'), (23020, 'Critical Reviews in Physical and Rehabilitati', 21626553, 0.106, 'Q4', 17, 20, 621, 11, 62, '2', '1995-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (23021, 'Douleur et Analgesie', 19516398, 0.106, 'Q4', 8, 14, 285, 9, 98, '8', '1988-2020', 'Anesthesiology and Pain Medicine (Q4)'), (23022, 'Drug Delivery System', 18812732, 0.106, 'Q4', 8, 50, 824, 8, 118, '6', '1986, 1988-2020', 'Pharmaceutical Science (Q4)'), (23023, 'Economie et Prevision', 2494744, 0.106, 'Q4', 13, 0, 0, 7, 31, '8', '2001-2013, 2015-2019', 'Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (23024, 'Electronic Device Failure Analysis', 15370755, 0.106, 'Q4', 6, 18, 105, 5, 46, '2', '2004-2020', 'Electrical and Electronic Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)'), (23025, 'Esprit', 140759, 0.106, 'Q3', 8, 0, 0, 27, 342, '8', '1973, 1975, 1981-1983, 2010-2019', 'Religious Studies (Q3); Arts and Humanities (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23026, 'Exchange', 1572543, 0.106, 'Q3', 6, 19, 1166, 10, 52, '16', '1973-1975, 2010-2020', 'Cultural Studies (Q3); Religious Studies (Q3)'), (23027, 'Explosion', 916801, 0.106, 'Q4', 3, 1, 2, 0, 4, '6', '1996-2016, 2019', 'Chemical Engineering (miscellaneous) (Q4)'), (23028, 'Footprint', 18751490, 0.106, 'Q3', 9, 20, 477, 8, 51, '16', '2007-2020', 'Philosophy (Q3); Architecture (Q4)'), (23029, 'Gaceta Mexicana de Oncologia', 16659201, 0.106, 'Q4', 4, 36, 844, 10, 122, '12', '2009-2020', 'Cancer Research (Q4); Oncology (Q4)'), (23030, 'Great Plains Quarterly', 2757664, 0.106, 'Q4', 9, 10, 645, 5, 50, '2', '1983-1993, 1995-2020', 'Arts and Humanities (miscellaneous) (Q4)'), (23031, 'Hacettepe University Journal of the Faculty o', 13000608, 0.106, 'Q4', 7, 10, 460, 1, 31, '18', '2008-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (23032, 'Higher Education for the Future', 23485779, 0.106, 'Q4', 1, 14, 430, 6, 12, '4', '2019-2020', 'Education (Q4)'), (23033, 'Hrvatske Vode', 13301144, 0.106, 'Q4', 7, 0, 0, 4, 61, '58', '2001-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (23034, 'International Journal of Adult, Community and', 23286318, 0.106, 'Q4', 3, 2, 76, 2, 17, '2', '2013-2019', 'Education (Q4)'), (23035, 'International Journal of Biotechnology', 17415020, 0.106, 'Q4', 20, 0, 0, 1, 4, '3', '1999-2014', 'Bioengineering (Q4); Management of Technology and Innovation (Q4)'), (23036, 'International Journal of Humanities Education', 23272457, 0.106, 'Q4', 3, 6, 274, 4, 25, '2', '2013-2019', 'Arts and Humanities (miscellaneous) (Q4); Education (Q4)'), (23037, 'International Journal of Interdisciplinary Ed', 2327011, 0.106, 'Q4', 3, 12, 531, 6, 33, '2', '2012-2020', 'Education (Q4)'), (23038, 'International Journal of Radio Frequency Iden', 17453216, 0.106, 'Q4', 12, 0, 0, 0, 4, '3', '2006-2007, 2009, 2011-2013', 'Electrical and Electronic Engineering (Q4)'), (23039, 'Istanbul Universitesi Veteriner Fakultesi Der', 2502836, 0.106, 'Q4', 7, 0, 0, 8, 26, '18', '2011-2017', 'Veterinary (miscellaneous) (Q4)'), (23040, 'Journal fur Mineralstoffwechsel', 10237763, 0.106, 'Q4', 7, 0, 0, 0, 4, '28', '1998-2017', 'Endocrinology (Q4); Endocrinology, Diabetes and Metabolism (Q4); Orthopedics and Sports Medicine (Q4)'), (23041, 'Journal of Algebra and Related Topics', 23829877, 0.106, 'Q4', 1, 12, 184, 1, 12, '15', '2019-2020', 'Algebra and Number Theory (Q4); Applied Mathematics (Q4); Discrete Mathematics and Combinatorics (Q4)'), (23042, 'Journal of Belarusian Studies', 754161, 0.106, 'Q3', 1, 0, 0, 0, 4, '3', '2018', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23043, 'Journal of Dentistry: X', 25897004, 0.106, 'Q4', 1, 9, 342, 1, 4, '3', '2019-2020', 'Dentistry (miscellaneous) (Q4)'), (23044, 'Journal of King Abdulaziz University, Marine ', 10128840, 0.106, 'Q4', 8, 17, 588, 2, 20, '29', '2009-2018', 'Aquatic Science (Q4); Environmental Chemistry (Q4); Oceanography (Q4); Water Science and Technology (Q4)'), (23045, 'Journal of Ocean and Coastal Economics', 23738456, 0.106, 'Q4', 1, 3, 100, 5, 22, '2', '2019', 'Economics and Econometrics (Q4)'), (23046, 'Journal of Plantation Crops', 24548480, 0.106, 'Q4', 2, 0, 0, 8, 79, '4', '2017-2019', 'Agronomy and Crop Science (Q4); Soil Science (Q4)'), (23047, 'Journal of Plant Resources and Environment', 10040978, 0.106, 'Q4', 8, 58, 500, 22, 160, '1', '2005-2020', 'Ecology, Evolution, Behavior and Systematics (Q4); Physiology (Q4); Plant Science (Q4)'), (23048, 'Journal of Punjab Academy of Forensic Medicin', 974083, 0.106, 'Q4', 6, 44, 693, 10, 150, '4', '2011-2020', 'Pathology and Forensic Medicine (Q4); Toxicology (Q4)'), (23049, 'Journal of Scottish Historical Studies', 1748538, 0.106, 'Q3', 2, 6, 0, 4, 21, '3', '2018-2020', 'Cultural Studies (Q3); History (Q3); Anthropology (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (23050, 'Journal of Shanghai Jiaotong University (Medi', 2585898, 0.106, 'Q4', 6, 258, 6692, 50, 863, '1', '2009-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (23051, 'Journal of Spiritual Formation and Soul Care', 23281030, 0.106, 'Q3', 4, 22, 0, 6, 64, '3', '2008-2020', 'History (Q3); Religious Studies (Q3); Education (Q4)'), (23052, 'Journal of Sustainable Real Estate', 19498276, 0.106, 'Q4', 1, 0, 0, 3, 18, '2', '2018-2019', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4); Urban Studies (Q4)'), (23053, 'Journal of Xi an Jiaotong University (Medical', 16718259, 0.106, 'Q4', 8, 147, 2863, 29, 562, '1', '2002-2020', 'Clinical Biochemistry (Q4); Medicine (miscellaneous) (Q4)'), (23054, 'Kardiologiya i Serdechno-Sosudistaya Khirurgi', 23094737, 0.106, 'Q4', 1, 81, 1818, 11, 83, '10', '2019-2020', 'Cardiology and Cardiovascular Medicine (Q4); Surgery (Q4)'), (23055, 'Kodikas/ Code', 1710834, 0.106, 'Q4', 2, 0, 0, 1, 30, '5', '2011-2017', 'Communication (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23056, 'Mass Communication Research', 10161007, 0.106, 'Q4', 4, 0, 0, 1, 26, '22', '2007-2018', 'Communication (Q4)'), (23057, 'Medical Science Technology', 23290072, 0.106, 'Q4', 3, 0, 0, 4, 22, '2', '2013, 2015-2018', 'Bioengineering (Q4); Biomedical Engineering (Q4); Medicine (miscellaneous) (Q4); Psychology (miscellaneous) (Q4)'), (23058, 'MMW Fortschritte der Medizin', 16133560, 0.106, 'Q4', 13, 1148, 2672, 76, 1843, '5', '1999-2020', 'Medicine (miscellaneous) (Q4)'), (23059, 'Muslim World, The', 14781913, 0.106, 'Q3', 23, 35, 0, 11, 91, '2', '1911-2020', 'History (Q3); Religious Studies (Q3); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23060, 'NII Technical Reports', 13465597, 0.106, 'Q4', 5, 0, 0, 1, 4, '6', '2003-2018', 'Computer Science Applications (Q4); Information Systems (Q4)'), (23061, 'Open Urology and Nephrology Journal', 1874303, 0.106, 'Q4', 6, 7, 174, 5, 36, '16', '2011-2020', 'Nephrology (Q4); Urology (Q4)'), (23062, 'Ostkirchliche Studien', 306487, 0.106, 'Q3', 1, 0, 0, 3, 39, '5', '2013-2019', 'Religious Studies (Q3)'), (23063, 'Peremennye Zvezdy', 22210474, 0.106, 'Q4', 1, 10, 78, 1, 4, '10', '2019', 'Astronomy and Astrophysics (Q4)'), (23064, 'Phillippine Journal of Internal Medicine', 1199641, 0.106, 'Q4', 7, 33, 862, 8, 121, '63', '2010-2020', 'Internal Medicine (Q4)'), (23065, 'Planet Earth', 14792605, 0.106, 'Q4', 2, 0, 0, 0, 4, '3', '2005-2017', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (23066, 'Pneumologe', 16135636, 0.106, 'Q4', 6, 69, 1363, 13, 158, '5', '2005-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (23067, 'Prace i Studia Geograficzne', 2084589, 0.106, 'Q3', 10, 12, 306, 9, 77, '17', '1979, 1983-1985, 1988, 1992, 1994-2005, 2008-2020', 'Cultural Studies (Q3); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4); Tourism, Leisure and Hospitality Management (Q'), (23068, 'Prescriber', 9596682, 0.106, 'Q3', 3, 0, 0, 0, 4, '3', '2014-2017', 'Pharmacology (nursing) (Q3); Pharmacology (medical) (Q4)'), (23069, 'Radical Philosophy', 300211, 0.106, 'Q3', 19, 20, 557, 23, 8, '3', '2006-2016, 2019-2020', 'Philosophy (Q3); Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23070, 'Reanimation', 19516959, 0.106, 'Q4', 16, 0, 0, 5, 58, '8', '2001-2017', 'Emergency Medicine (Q4); Emergency Nursing (Q4)'), (23071, 'Renascence', 344346, 0.106, 'Q3', 5, 7, 191, 3, 44, '2', '2002-2020', 'Literature and Literary Theory (Q3)'), (23072, 'Reproductive Endocrinology', 24111295, 0.106, 'Q4', 2, 60, 1862, 5, 71, '44', '2019-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (23073, 'Revista Arta', 25376136, 0.106, 'Q3', 1, 0, 0, 3, 29, '123', '2018', 'Visual Arts and Performing Arts (Q3)'), (23074, 'Revista Clinica de Ortodontia Dental Press', 16766849, 0.106, 'Q4', 1, 0, 0, 2, 76, '14', '2019', 'Orthodontics (Q4)'), (23075, 'Revista Complutense de Historia de America', 1988270, 0.106, 'Q3', 8, 13, 482, 5, 36, '12', '1996-2019', 'History (Q3)'), (23076, 'Revista de Economia del Rosario', 1235362, 0.106, 'Q4', 6, 12, 380, 6, 31, '47', '2007-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (23077, 'Revista UNISCI', 23869453, 0.106, 'Q4', 2, 33, 1395, 13, 102, '12', '2015-2020', 'Political Science and International Relations (Q4)'), (23078, 'Revue de Laryngologie Otologie Rhinologie', 351334, 0.106, 'Q4', 25, 0, 0, 1, 36, '8', '1947-2017', 'Medicine (miscellaneous) (Q4); Otorhinolaryngology (Q4)'), (23079, 'Rhetorica', 7348584, 0.106, 'Q4', 15, 5, 308, 6, 47, '2', '1983-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23080, 'Russian Studies in Philosophy', 15580431, 0.106, 'Q3', 4, 25, 0, 14, 101, '2', '1992-1995, 2002-2013, 2015-2020', 'Philosophy (Q3)'), (23081, 'Shi You Lian Zhi Yu Hua Gong/Petroleum Proces', 10052399, 0.106, 'Q4', 13, 221, 2958, 33, 679, '1', '1996-2020', 'Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Process Chemistry and Technology (Q4)'), (23082, 'Silva Gabreta', 12117420, 0.106, 'Q4', 0, 0, 0, 0, 4, '31', '2019', 'Earth-Surface Processes (Q4); Forestry (Q4); Geography, Planning and Development (Q4); Geology (Q4); Management, Monitoring, Policy and Law (Q4); Nature and Landscape Conservation (Q4)'), (23083, 'Sintagma', 2149141, 0.106, 'Q4', 5, 0, 0, 3, 15, '12', '2011-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23084, 'Soundings', 21616302, 0.106, 'Q3', 5, 22, 782, 11, 59, '2', '1975-1977, 1979-1980, 1982-1985, 1989, 1994, 2002-2020', 'Cultural Studies (Q3); Arts and Humanities (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (23085, 'Speciality Petrochemicals', 10039384, 0.106, 'Q4', 5, 98, 1803, 20, 309, '1', '2005-2020', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Energy Engineering and Power Technology (Q4); Fuel Technology (Q4)'), (23086, 'Special Report - National Research Council, T', 360859, 0.106, 'Q4', 14, 0, 0, 0, 4, '2', '1973-1981, 1983-1984, 1986-1987, 1996-1999, 2001-2009, 2011-2018', 'Transportation (Q4)'), (23087, 'Speculum', 20408072, 0.106, 'Q3', 24, 18, 77, 28, 70, '2', '1926-1995, 1998-1999, 2001-2020', 'Cultural Studies (Q3); History (Q3); Literature and Literary Theory (Q3); Philosophy (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3)'), (23088, 'Standardization News', 10944656, 0.106, 'Q4', 7, 0, 0, 0, 4, '2', '1984-1987, 1989-2017', 'Mechanical Engineering (Q4)'), (23089, 'Studies on Ethno-Medicine', 9735070, 0.106, 'Q3', 17, 14, 551, 20, 107, '4', '2009-2020', 'Cultural Studies (Q3); Anthropology (Q4); Complementary and Alternative Medicine (Q4); Medicine (miscellaneous) (Q4)'), (23090, 'Taiwanese Political Science Review', 10270221, 0.106, 'Q4', 2, 0, 0, 5, 25, '22', '2015-2019', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23091, 'Teaching Artist Journal', 15411796, 0.106, 'Q4', 5, 10, 120, 5, 51, '2', '2010-2020', 'Arts and Humanities (miscellaneous) (Q4); Education (Q4)'), (23092, 'Temenos', 4971817, 0.106, 'Q3', 11, 7, 288, 6, 29, '38', '2003, 2005-2008, 2013-2019', 'Religious Studies (Q3)'), (23093, 'Tumor Diagnostik und Therapie', 722219, 0.106, 'Q4', 6, 203, 1398, 6, 176, '5', '1983-2020', 'Oncology (Q4)'), (23094, 'Tutkimusraportti - Geologian Tutkimuskeskus', 7814240, 0.106, 'Q4', 7, 0, 0, 0, 4, '38', '1984-1988, 1990-2013, 2015-2017', 'Geology (Q4)'), (23095, 'University of Pittsburgh Law Review', 419915, 0.106, 'Q4', 15, 24, 2576, 6, 48, '2', '1973-1975, 1977, 1979-1980, 1982, 1985, 1987, 1989, 1991, 1993-1994, 1996-2020', 'Law (Q4)'), (23096, 'Vascular Cell', 2045824, 0.106, 'Q4', 32, 6, 199, 0, 4, '3', '2011-2018, 2020', 'Cell Biology (Q4); Computer Networks and Communications (Q4); Developmental Neuroscience (Q4); Neurology (Q4)'), (23097, 'Virtual Creativity', 23979712, 0.106, 'Q4', 2, 24, 246, 5, 30, '3', '2018-2019', 'Arts and Humanities (miscellaneous) (Q4); Computational Theory and Mathematics (Q4); Computer Graphics and Computer-Aided Design (Q4); Human-Computer Interaction (Q4)'), (23098, 'Voices - Journal of New York Folklore', 361204, 0.106, 'Q3', 2, 0, 0, 1, 33, '2', '1978, 1982, 1988, 2009-2019', 'Cultural Studies (Q3); History (Q3); Music (Q3); Visual Arts and Performing Arts (Q3); Anthropology (Q4)'), (23099, 'Yeni Symposium', 13044591, 0.106, 'Q4', 7, 8, 296, 6, 42, '18', '2006-2019', 'Biological Psychiatry (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (23100, 'Zaranda de Ideas', 24083801, 0.106, 'Q4', 3, 0, 0, 3, 25, '46', '2013-2018', 'Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23101, 'Zeitschrift fur Agyptische Sprache und Altert', 44216, 0.106, 'Q3', 9, 17, 730, 2, 43, '5', '1863-1876, 1878-1898, 1905, 1908, 1910-1912, 1914-1915, 1917-1918, 1920, 1922-1927, 1929-1936, 1939-', 'History (Q3); Literature and Literary Theory (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23102, 'Zeitschrift fur Slawistik', 443506, 0.106, 'Q3', 5, 20, 784, 4, 88, '5', '1956-1966, 1968-1979, 1981-2020', 'Cultural Studies (Q3); Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23103, 'Zeitschrift fur Volkskunde', 443700, 0.106, 'Q3', 7, 12, 434, 1, 4, '5', '2002-2016, 2019-2020', 'Cultural Studies (Q3); Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23104, 'Acotaciones', 24443948, 0.105, 'Q3', 0, 0, 0, 0, 5, '12', '2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)'), (23105, 'Acta Historica Tallinnensia', 14062925, 0.105, 'Q3', 4, 8, 132, 1, 14, '71', '2008-2019', 'History (Q3)'), (23106, 'Acta Medica Saliniana', 350364, 0.105, 'Q4', 4, 0, 0, 6, 46, '90', '2009-2012, 2017-2019', 'Medicine (miscellaneous) (Q4)'), (23107, 'Acta Turistica', 18486061, 0.105, 'Q4', 1, 3, 155, 4, 19, '58', '2018-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (23108, 'Advances in Modelling and Analysis B', 12404543, 0.105, 'Q4', 7, 0, 0, 51, 63, '8', '1994-2012, 2014-2018', 'Modeling and Simulation (Q4); Signal Processing (Q4)'), (23109, 'Agroalimentaria', 13160354, 0.105, 'Q4', 7, 16, 857, 4, 60, '94', '2007-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Food Science (Q4); Social Sciences (miscellaneous) (Q4)'), (23110, 'Ajalooline Ajakiri', 14063859, 0.105, 'Q3', 2, 4, 95, 2, 41, '71', '1999, 2001-2002, 2015-2018', 'History (Q3)'), (23111, 'American Journal of Forensic Psychology', 7331290, 0.105, 'Q4', 18, 10, 238, 1, 29, '2', '1991, 1996-2020', 'Applied Psychology (Q4); Pathology and Forensic Medicine (Q4)'), (23112, 'Apeiron', 21567093, 0.105, 'Q3', 2, 260, 8191, 2, 5, '5', '2019-2020', 'Philosophy (Q3); History and Philosophy of Science (Q4)'), (23113, 'Archaeologia Maritima Mediterranea', 18253881, 0.105, 'Q4', 5, 0, 0, 4, 20, '7', '2011-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23114, 'Argumenta Philosophica', 24624993, 0.105, 'Q3', 0, 14, 197, 0, 5, '12', '2017-2018, 2020', 'Philosophy (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3); Anthropology (Q4); History and Philosophy of Science (Q4)'), (23115, 'Arzneimitteltherapie', 7236913, 0.105, 'Q4', 6, 137, 1137, 7, 193, '5', '2008-2020', 'Pharmacology (medical) (Q4); Pharmacology (nursing) (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (23116, 'Atalante', 23406992, 0.105, 'Q3', 3, 0, 0, 5, 82, '12', '2011-2019', 'Visual Arts and Performing Arts (Q3)'), (23117, 'Australian Veterinary Practitioner', 310138, 0.105, 'Q4', 14, 0, 0, 4, 50, '11', '1996-2013, 2015, 2017-2019', 'Small Animals (Q4)'), (23118, 'Boletim Paranaense de Geosciencias', 67964, 0.105, 'Q4', 12, 9, 285, 1, 11, '14', '1996-2008, 2011-2015, 2017-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (23119, 'British Journal of Canadian Studies', 17578078, 0.105, 'Q3', 5, 0, 0, 4, 16, '3', '2011-2018', 'History (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4)'), (23120, 'Bulletin des Bibliotheques de France', 62006, 0.105, 'Q4', 2, 0, 0, 2, 39, '8', '2012-2019', 'Library and Information Sciences (Q4)'), (23121, 'Bulletin of the Kyushu Institute of Technolog', 13438670, 0.105, 'Q4', 2, 2, 37, 0, 5, '6', '2012-2020', 'Mathematics (miscellaneous) (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (23122, 'Cahiers Scientifiques du Transport', 11508809, 0.105, 'Q4', 1, 0, 0, 0, 5, '8', '2016-2017', 'Transportation (Q4)'), (23123, 'Cesko-Slovenska Dermatologie', 90514, 0.105, 'Q4', 6, 29, 658, 7, 65, '31', '1947-1956, 1959-2012, 2014-2020', 'Dermatology (Q4)'), (23124, 'Chinese Journal of Emergency Medicine', 16710282, 0.105, 'Q4', 5, 0, 0, 25, 302, '1', '2006-2019', 'Emergency Medicine (Q4); Emergency Nursing (Q4)'), (23125, 'Clinica e Investigacion en Ginecologia y Obst', 210573, 0.105, 'Q4', 6, 65, 1235, 9, 113, '12', '1976-2020', 'Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (23126, 'Clinical Kinesiology', 8969620, 0.105, 'Q4', 12, 0, 0, 0, 5, '2', '1988-2017', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (23127, 'Derrida Today', 17548519, 0.105, 'Q4', 1, 26, 267, 3, 27, '3', '2018-2020', 'Philosophy (Q4); Sociology and Political Science (Q4)'), (23128, 'Devenir', 10158154, 0.105, 'Q4', 11, 15, 664, 8, 48, '19', '2001-2020', 'Developmental and Educational Psychology (Q4); Developmental Neuroscience (Q4); Life-span and Life-course Studies (Q4); Pediatrics (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (23129, 'Enfances, Familles, Generations', 17086310, 0.105, 'Q4', 7, 0, 0, 9, 96, '8', '2011-2019', 'Anthropology (Q4); Social Psychology (Q4); Social Sciences (miscellaneous) (Q4)'), (23130, 'English Scholarship Beyond Borders', 24109096, 0.105, 'Q4', 1, 8, 170, 4, 5, '52', '2019-2020', 'Education (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23131, 'Espaco Plural', 1981478, 0.105, 'Q4', 2, 0, 0, 1, 23, '14', '2012-2017', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23132, 'Espiritu', 140716, 0.105, 'Q3', 2, 0, 0, 4, 9, '12', '2015-2018', 'Philosophy (Q3); Religious Studies (Q3)'), (23133, 'European Journal of Oncology Pharmacy', 17833914, 0.105, 'Q4', 4, 0, 0, 6, 16, '24', '2008-2015, 2017-2019', 'Oncology (Q4); Pharmacology (Q4)'), (23134, 'ExELL', 23034858, 0.105, 'Q4', 2, 11, 401, 5, 11, '5', '2017-2018, 2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23135, 'Fatigue of Aircraft Structures', 20817738, 0.105, 'Q4', 2, 3, 21, 7, 33, '17', '2016-2019', 'Aerospace Engineering (Q4); Civil and Structural Engineering (Q4); Mechanics of Materials (Q4); Safety, Risk, Reliability and Quality (Q4)'), (23136, 'French Colonial History', 15393402, 0.105, 'Q3', 4, 0, 0, 1, 5, '2', '2010-2014, 2016-2017', 'History (Q3); Sociology and Political Science (Q4)'), (23137, 'French History', 2691191, 0.105, 'Q3', 14, 8, 386, 9, 63, '3', '1987-2019', 'History (Q3)'), (23138, 'Futuro del Pasado', 19899289, 0.105, 'Q3', 2, 23, 1182, 9, 58, '12', '2017-2019', 'History (Q3); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (23139, 'Gastroenterologe', 1861969, 0.105, 'Q4', 6, 56, 1576, 8, 140, '5', '2006-2020', 'Gastroenterology (Q4)'), (23140, 'Geopolitics of Energy', 2731371, 0.105, 'Q4', 6, 1, 25, 4, 36, '9', '1984, 1989-1993, 1997-1998, 2003-2019', 'Fuel Technology (Q4); Geography, Planning and Development (Q4)'), (23141, 'Getty Research Journal', 23291249, 0.105, 'Q3', 2, 11, 738, 3, 36, '2', '2015-2020', 'History (Q3); Museology (Q3); Visual Arts and Performing Arts (Q3); Conservation (Q4)'), (23142, 'Harvard International Review', 7391854, 0.105, 'Q4', 14, 35, 0, 14, 99, '2', '1986, 1994-2019', 'Geography, Planning and Development (Q4); Industrial Relations (Q4); Political Science and International Relations (Q4)'), (23143, 'Huaxue Fanying Gongcheng Yu Gongyi/Chemical R', 10017631, 0.105, 'Q4', 10, 0, 0, 12, 228, '1', '1985-1989, 1996-2019', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4)'), (23144, 'Humanities, Arts and Social Sciences Studies', 26300079, 0.105, 'Q4', 1, 23, 795, 1, 31, '40', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23145, 'Images', 18717993, 0.105, 'Q3', 5, 3, 290, 5, 31, '16', '2007-2012, 2015-2019', 'History (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)'), (23146, 'Infektoloski Glasnik', 13312820, 0.105, 'Q4', 7, 13, 259, 5, 55, '58', '2002-2019', 'Epidemiology (Q4); Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (23147, 'In Monte Artium', 20313098, 0.105, 'Q3', 1, 5, 85, 1, 5, '24', '2019', 'History (Q3); Literature and Literary Theory (Q3); Music (Q3); Arts and Humanities (miscellaneous) (Q4); Library and Information Sciences (Q4)'), (23148, 'Interacao em Psicologia', 19818076, 0.105, 'Q4', 1, 23, 838, 2, 62, '14', '2018-2020', 'Psychology (miscellaneous) (Q4)'), (23149, 'Internasjonal Politikk', 20577, 0.105, 'Q4', 6, 20, 827, 1, 37, '33', '1996-2015', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23150, 'International Journal of Dentistry and Oral S', 23778075, 0.105, 'Q4', 2, 100, 2990, 5, 90, '2', '2018-2020', 'Dentistry (miscellaneous) (Q4)'), (23151, 'International Journal of Energy, Environment ', 1054853, 0.105, 'Q4', 7, 8, 302, 2, 43, '2', '2007, 2009-2017', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (23152, 'International Journal of Interdisciplinary So', 18331882, 0.105, 'Q4', 14, 1, 64, 0, 5, '2', '2006-2017, 2019', 'Social Sciences (miscellaneous) (Q4)'), (23153, 'International Journal of Language Testing', 24765880, 0.105, 'Q4', 2, 0, 0, 4, 15, '15', '2016-2019', 'Education (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23154, 'International Journal of Private Law', 17536243, 0.105, 'Q4', 4, 0, 0, 2, 20, '3', '2010-2014', 'Law (Q4)'), (23155, 'International Journal of Sociology of the Fam', 9732039, 0.105, 'Q4', 0, 0, 0, 0, 5, '4', '2019', 'Anthropology (Q4); Health (social science) (Q4); Social Psychology (Q4); Social Sciences (miscellaneous) (Q4)'), (23156, 'International Journal of the Society of Mater', 18846629, 0.105, 'Q4', 10, 0, 0, 4, 46, '6', '1993-2007, 2009-2014, 2016-2018', 'Chemical Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Mechanical Engineering (Q4)'), (23157, 'Japanese Journal of Clinical Pharmacology and', 18828272, 0.105, 'Q4', 7, 38, 574, 6, 104, '6', '1970-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (23158, 'Jeoloji Muhendisligi Dergisi', 10169172, 0.105, 'Q4', 6, 11, 407, 4, 33, '18', '2005-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'), (23159, 'Journal fur Gynakologische Endokrinologie', 19961553, 0.105, 'Q4', 4, 32, 629, 4, 46, '28', '2008-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (23160, 'Journal Medical Libanais', 239852, 0.105, 'Q4', 19, 27, 532, 8, 131, '70', '1951-1975, 1980, 1986-1987, 1989, 1991-2019', 'Medicine (miscellaneous) (Q4)'), (23161, 'Journal of Architectural and Planning Researc', 7380895, 0.105, 'Q4', 26, 0, 0, 10, 58, '2', '1984-2019', 'Architecture (Q4); Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)'), (23162, 'Journal of Jilin University Medicine Edition', 1671587, 0.105, 'Q4', 6, 109, 2112, 37, 673, '1', '2005-2020', 'Pharmacology (Q4)'), (23163, 'Journal of Law, Religion and State', 22126465, 0.105, 'Q3', 4, 4, 49, 5, 36, '16', '2012-2019', 'Religious Studies (Q3); Law (Q4); Sociology and Political Science (Q4)'), (23164, 'Journal of Problem Solving', 19326246, 0.105, 'Q4', 11, 0, 0, 1, 5, '2', '2013-2018', 'Applied Psychology (Q4)'), (23165, 'Journal of Public and International Affairs', 1070521, 0.105, 'Q4', 8, 0, 0, 1, 19, '2', '2005-2014, 2016-2018', 'Political Science and International Relations (Q4)'), (23166, 'Journal of Reformed Theology', 15697312, 0.105, 'Q3', 3, 12, 321, 6, 48, '16', '2013-2020', 'Religious Studies (Q3)'), (23167, 'Journal of the Hong Kong College of Cardiolog', 10277811, 0.105, 'Q4', 1, 0, 0, 0, 5, '1', '2012-2019', 'Cardiology and Cardiovascular Medicine (Q4)'), (23168, 'Journal of Wildlife Rehabilitation', 10712232, 0.105, 'Q4', 8, 0, 0, 4, 21, '2', '1996-2004, 2006, 2008, 2010-2011, 2014-2019', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (23169, 'Kartografija i Geoinformacije', 1333896, 0.105, 'Q4', 6, 12, 137, 4, 34, '58', '2007-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geology (Q4); Geophysics (Q4)'), (23170, 'Literature-Film Quarterly', 904260, 0.105, 'Q3', 7, 0, 0, 8, 52, '2', '2002-2018', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)'), (23171, 'Machine Graphics and Vision', 12300535, 0.105, 'Q4', 13, 0, 0, 3, 12, '17', '2004-2011, 2013-2014, 2016-2018', 'Computer Graphics and Computer-Aided Design (Q4); Computer Vision and Pattern Recognition (Q4); Software (Q4)'), (23172, 'Medecine Intensive Reanimation', 24966142, 0.105, 'Q4', 2, 1, 8, 3, 113, '8', '2018-2020', 'Emergency Medicine (Q4); Emergency Nursing (Q4)'), (23173, 'Nanotechnology Perceptions', 16606795, 0.105, 'Q4', 9, 7, 0, 5, 40, '19', '2008-2020', 'Condensed Matter Physics (Q4); Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Nanoscience and Nanotechnology (Q4)'), (23174, 'New Medicine', 14270994, 0.105, 'Q4', 5, 0, 0, 2, 31, '17', '1999, 2001-2008, 2011-2018', 'Medicine (miscellaneous) (Q4)'), (23175, 'Nigerian Journal of Economic and Social Studi', 290092, 0.105, 'Q4', 1, 12, 546, 0, 5, '51', '1967, 1974-1977, 1982, 1984-1988, 1992, 2019', 'Economics and Econometrics (Q4); Finance (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (23176, 'Nineteenth Century Music', 1482076, 0.105, 'Q3', 17, 0, 0, 2, 33, '2', '1977-2019', 'Music (Q3)'), (23177, 'October', 1536013, 0.105, 'Q3', 18, 20, 63, 6, 47, '2', '2002-2020', 'Literature and Literary Theory (Q3); Music (Q3); Visual Arts and Performing Arts (Q3)'), (23178, 'Otorhinolaryngologist', 17529360, 0.105, 'Q4', 4, 0, 0, 3, 33, '3', '2006-2018', 'Otorhinolaryngology (Q4); Surgery (Q4)'), (23179, 'Papers in Meteorology and Geophysics', 18806643, 0.105, 'Q4', 16, 1, 14, 0, 5, '6', '1950-2014, 2016, 2018', 'Atmospheric Science (Q4); Geophysics (Q4)'), (23180, 'Philologica Canariensia', 23868635, 0.105, 'Q4', 0, 5, 177, 0, 5, '12', '2019-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23181, 'PIDE Working Papers', 788228, 0.105, 'Q4', 5, 5, 202, 1, 23, '34', '2000-2001, 2003, 2005-2019', 'Development (Q4); Geography, Planning and Development (Q4)'), (23182, 'Praticien en Anesthesie Reanimation', 12797960, 0.105, 'Q4', 5, 61, 1191, 3, 158, '8', '2006-2020', 'Anesthesiology and Pain Medicine (Q4); Emergency Medicine (Q4); Emergency Nursing (Q4)'), (23183, 'PSN', 19552351, 0.105, 'Q4', 5, 0, 0, 0, 5, '8', '2007-2011, 2019', 'Neuroscience (miscellaneous) (Q4); Psychiatry and Mental Health (Q4)'), (23184, 'Revista Brasileira de Gestao e Desenvolviment', 1809239, 0.105, 'Q4', 6, 59, 2183, 15, 129, '14', '2007-2020', 'Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4); Urban Studies (Q4)'), (23185, 'Revista Latinoamericana de Metalurgia y Mater', 2556952, 0.105, 'Q4', 9, 6, 150, 8, 52, '94', '2009-2018', 'Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)'), (23186, 'Revista Mexicana de Enfermeria Cardiologica', 14050315, 0.105, 'Q4', 2, 0, 0, 0, 5, '30', '2008-2017', 'Advanced and Specialized Nursing (Q4); Cardiology and Cardiovascular Medicine (Q4)'), (23187, 'Revista Proyecto, Progreso, Arquitectura', 21716897, 0.105, 'Q4', 2, 21, 433, 9, 62, '12', '2010-2019', 'Architecture (Q4); Arts and Humanities (miscellaneous) (Q4); Urban Studies (Q4)'), (23188, 'Revue Archeologique', 350737, 0.105, 'Q4', 5, 20, 610, 4, 25, '8', '2001-2020', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23189, 'Revue des Etudes Anciennes', 352004, 0.105, 'Q3', 8, 8, 383, 5, 42, '8', '2002-2013, 2017-2019', 'Classics (Q3); History (Q3); Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23190, 'Revue du Rhumatisme (Edition Francaise)', 11698330, 0.105, 'Q4', 13, 136, 2976, 15, 289, '8', '1961, 1993-1994, 2000-2020', 'Rheumatology (Q4)'), (23191, 'Roczniki Naukowe Zootechniki', 1371657, 0.105, 'Q4', 1, 15, 595, 1, 5, '17', '2019', 'Animal Science and Zoology (Q4); Veterinary (miscellaneous) (Q4)'), (23192, 'Schweizer Zeitschrift fur Onkologie', 16604369, 0.105, 'Q4', 0, 0, 0, 0, 5, '19', '2015-2017', 'Oncology (Q4)'), (23193, 'SEAISI Quarterly (South East Asia Iron and St', 1295721, 0.105, 'Q4', 7, 0, 0, 3, 27, '23', '1981-1989, 1994-2013, 2015, 2017', 'Condensed Matter Physics (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Physical and Theoretical Chemistry (Q4)'), (23194, 'Seminar - A Journal of Germanic Studies', 371939, 0.105, 'Q3', 7, 20, 777, 4, 60, '9', '1996-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23195, 'Singapore Journal of Legal Studies', 2182173, 0.105, 'Q4', 5, 33, 0, 2, 16, '37', '2012-2013, 2019-2020', 'Law (Q4)'), (23196, 'SKASE Journal of Translation and Interpretati', 13367811, 0.105, 'Q3', 5, 0, 0, 1, 25, '53', '2011, 2013-2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23197, 'Soins Pediatrie/Puericulture', 12594792, 0.105, 'Q4', 3, 58, 343, 13, 178, '8', '1995-2020', 'Pediatrics (Q4)'), (23198, 'Soudni Lekarstvi', 3711854, 0.105, 'Q4', 7, 0, 0, 2, 23, '31', '1974-2019', 'Medicine (miscellaneous) (Q4); Pathology and Forensic Medicine (Q4)'), (23199, 'Studies in Interreligious Dialogue', 17831806, 0.105, 'Q3', 4, 0, 0, 4, 35, '24', '2011-2019', 'Religious Studies (Q3)'), (23200, 'Szociologiai Szemle', 12162051, 0.105, 'Q4', 5, 5, 132, 11, 75, '50', '2009-2019', 'Social Sciences (miscellaneous) (Q4)'), (23201, 'Taiwanese Journal of Agricultural Chemistry a', 16052471, 0.105, 'Q4', 4, 18, 479, 4, 74, '22', '2007-2019', 'Agronomy and Crop Science (Q4); Applied Microbiology and Biotechnology (Q4); Food Science (Q4)'), (23202, 'Territoire en Mouvement', 19544863, 0.105, 'Q4', 6, 9, 312, 4, 52, '8', '2006-2008, 2011-2020', 'Geography, Planning and Development (Q4); Urban Studies (Q4)'), (23203, 'Texas Medicine', 19383223, 0.105, 'Q4', 14, 94, 0, 9, 210, '2', '1963-2020', 'Medicine (miscellaneous) (Q4)'), (23204, 'Thoracic and Cardiovascular Surgeon, Suppleme', 9464778, 0.105, 'Q4', 11, 1, 21, 1, 16, '5', '1990, 1999, 2007, 2010, 2012, 2015, 2017, 2019-2020', 'Cardiology and Cardiovascular Medicine (Q4); Pulmonary and Respiratory Medicine (Q4); Surgery (Q4)'), (23205, 'Tilburg Law Review', 22110046, 0.105, 'Q4', 7, 5, 356, 4, 37, '16', '2012-2019', 'Law (Q4)'), (23206, 'Tort trial &amp; insurance practice law journ', 15433234, 0.105, 'Q4', 3, 0, 0, 0, 5, '2', '2003-2009, 2015-2018', 'Medicine (miscellaneous) (Q4)'), (23207, 'Welsh History Review', 432431, 0.105, 'Q3', 7, 5, 429, 0, 5, '3', '1971, 1979-1980, 1982, 1985, 1999-2017', 'History (Q3)'), (23208, 'Working Paper - Chr. Michelson Institute', 8043639, 0.105, 'Q4', 5, 5, 312, 2, 13, '33', '1980, 1990-2020', 'Development (Q4); Geography, Planning and Development (Q4)'), (23209, 'Wutan Huatan Jisuan Jishu', 10011749, 0.105, 'Q4', 7, 0, 0, 20, 328, '1', '2003-2020', 'Geology (Q4)'), (23210, 'Zeitschrift fur Katalanistik', 9322221, 0.105, 'Q3', 4, 0, 0, 3, 33, '5', '2010-2018', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23211, 'Academe', 1902946, 0.104, 'Q4', 20, 43, 7, 8, 62, '2', '1996-2019', 'Education (Q4)'), (23212, 'Acoustics Bulletin', 308437, 0.104, 'Q4', 9, 0, 0, 1, 70, '3', '1979, 1982, 1984, 1986, 1995-2018', 'Acoustics and Ultrasonics (Q4)'), (23213, 'American Bee Journal', 27626, 0.104, 'Q4', 27, 0, 0, 10, 258, '2', '1993-2018', 'Insect Science (Q4)'), (23214, 'Annals of Agri Bio Research', 9719660, 0.104, 'Q4', 7, 28, 584, 33, 162, '4', '2004-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4)'), (23215, 'Approaching Religion', 17993121, 0.104, 'Q3', 1, 21, 950, 0, 6, '38', '2019-2020', 'History (Q3); Religious Studies (Q3)'), (23216, 'Archaeology', 38113, 0.104, 'Q4', 7, 0, 0, 0, 6, '2', '1966, 1973, 1983-1984, 2002-2017', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23217, 'Archive of Oncology', 14509520, 0.104, 'Q4', 13, 9, 206, 2, 17, '55', '1997-2013, 2017-2020', 'Hematology (Q4); Oncology (Q4)'), (23218, 'Asian Affairs', 927678, 0.104, 'Q4', 11, 16, 0, 2, 18, '3', '1973-2005, 2010-2020', 'Economics and Econometrics (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); Law (Q4); Political Science and International Relations (Q4); Socio'), (23219, 'Bach', 53600, 0.104, 'Q3', 3, 5, 185, 7, 34, '2', '2002-2019', 'Music (Q3)'), (23220, 'Banking and Finance Review', 19477945, 0.104, 'Q4', 5, 0, 0, 1, 28, '2', '2009-2019', 'Economics and Econometrics (Q4); Finance (Q4)'), (23221, 'Best Practice Onkologie', 9464565, 0.104, 'Q4', 3, 49, 861, 5, 78, '5', '2006-2020', 'Oncology (Q4)'), (23222, 'Canadian Poetry', 7045646, 0.104, 'Q3', 2, 0, 0, 0, 6, '9', '2011-2016, 2018', 'Literature and Literary Theory (Q3)'), (23223, 'Canadian Review of American Studies', 77720, 0.104, 'Q3', 7, 23, 801, 9, 66, '9', '1973, 1979-1981, 1983, 1988, 1993, 2000, 2003, 2009-2020', 'History (Q3); Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23224, 'Cement International', 16106199, 0.104, 'Q4', 6, 35, 185, 5, 102, '5', '2009-2019', 'Civil and Structural Engineering (Q4); Materials Science (miscellaneous) (Q4); Mechanics of Materials (Q4)'), (23225, 'Chinese Journal of Pharmaceutical Biotechnolo', 10058915, 0.104, 'Q4', 5, 126, 2651, 17, 363, '1', '2007-2020', 'Applied Microbiology and Biotechnology (Q4); Pharmaceutical Science (Q4)'), (23226, 'Chirurgia (Turin)', 18271782, 0.104, 'Q4', 7, 81, 1459, 13, 187, '7', '1973-1985, 1988-2020', 'Surgery (Q4)'), (23227, 'Cinema', 16478991, 0.104, 'Q3', 0, 11, 0, 0, 6, '26', '2019', 'Visual Arts and Performing Arts (Q3); Communication (Q4)'), (23228, 'Colon and Rectum', 1951638, 0.104, 'Q4', 3, 10, 0, 5, 118, '8', '2007-2019', 'Gastroenterology (Q4); Internal Medicine (Q4)'), (23229, 'Contention', 25727184, 0.104, 'Q4', 1, 23, 924, 1, 12, '2', '2019-2020', 'Cultural Studies (Q4); Sociology and Political Science (Q4)'), (23230, 'Critica Letteraria', 3900142, 0.104, 'Q3', 2, 56, 1028, 4, 128, '7', '2009-2020', 'Literature and Literary Theory (Q3)'), (23231, 'Criticism', 111589, 0.104, 'Q3', 18, 5, 401, 5, 68, '2', '2002-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)'), (23232, 'Cuestiones de Fisioterapia', 11358599, 0.104, 'Q4', 1, 15, 376, 1, 20, '12', '2019-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4); Rehabilitation (Q4)'), (23233, 'Current Biomarkers', 24684236, 0.104, 'Q4', 2, 0, 0, 0, 6, '16', '2016-2017', 'Clinical Biochemistry (Q4); Molecular Medicine (Q4)'), (23234, 'Droit, Deontologie et Soin', 16296583, 0.104, 'Q4', 3, 32, 11, 1, 100, '8', '2004-2020', 'Issues, Ethics and Legal Aspects (Q4); Pathology and Forensic Medicine (Q4)'), (23235, 'Ecologia Mediterranea', 17754100, 0.104, 'Q4', 1, 0, 0, 0, 6, '8', '2017', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (23236, 'Ecumenical Review', 130796, 0.104, 'Q3', 7, 72, 0, 11, 156, '2', '1948-2020', 'Religious Studies (Q3)'), (23237, 'Edelweiss Applied Science and Technology', 25768484, 0.104, 'Q4', 1, 7, 158, 1, 12, '2', '2019-2020', 'Multidisciplinary (Q4)'), (23238, 'Egyptian Liver Journal', 20906226, 0.104, 'Q4', 3, 56, 1496, 4, 35, '2', '2012-2020', 'Hepatology (Q4)'), (23239, 'Eidola', 1826719, 0.104, 'Q3', 0, 0, 0, 0, 6, '7', '2019', 'Classics (Q3); History (Q3); Visual Arts and Performing Arts (Q3)'), (23240, 'Eighteenth-Century Fiction', 8406286, 0.104, 'Q3', 11, 25, 766, 7, 72, '9', '2002-2020', 'Literature and Literary Theory (Q3)'), (23241, 'European Journal of Oriental Medicine', 13516647, 0.104, 'Q4', 4, 0, 0, 2, 12, '3', '2006-2014, 2017', 'Complementary and Alternative Medicine (Q4)'), (23242, 'European Journal of Parenteral and Pharmaceut', 9644679, 0.104, 'Q4', 6, 0, 0, 0, 6, '3', '2010-2016, 2018-2019', 'Pharmaceutical Science (Q4); Pharmacy (Q4)'), (23243, 'Finnisch-Ugrische Forschungen', 3551253, 0.104, 'Q4', 3, 0, 0, 0, 6, '38', '2014, 2016, 2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23244, 'Food Australia', 10325298, 0.104, 'Q4', 24, 0, 0, 0, 6, '11', '1996-2017', 'Food Science (Q4); Industrial and Manufacturing Engineering (Q4)'), (23245, 'Foreign Policy', 157228, 0.104, 'Q4', 39, 42, 0, 4, 85, '2', '1979, 1981, 1984-1985, 1998-2015, 2017-2018, 2020', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23246, 'French Review, The', 16111, 0.104, 'Q3', 9, 0, 0, 4, 127, '2', '2002-2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Education (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23247, 'Frontiers of Philosophy in China', 16733436, 0.104, 'Q4', 6, 0, 0, 5, 98, '16', '2006-2019', 'Philosophy (Q4)'), (23248, 'Fudan University Journal of Medical Sciences', 16728467, 0.104, 'Q4', 8, 124, 2830, 31, 439, '1', '2001-2020', 'Medicine (miscellaneous) (Q4)'), (23249, 'Furukawa Review', 13481797, 0.104, 'Q4', 12, 0, 0, 4, 24, '6', '1988-1989, 1991-1992, 1998-2018', 'Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4)'), (23250, 'Geografski Obzornik', 167274, 0.104, 'Q4', 4, 0, 0, 1, 30, '60', '1993-2018', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (23251, 'Gineco.eu', 23442379, 0.104, 'Q4', 5, 0, 0, 5, 74, '43', '2013-2018', 'Obstetrics and Gynecology (Q4); Oncology (Q4)'), (23252, 'Giornale Italiano di Ostetricia e Ginecologia', 3919013, 0.104, 'Q4', 10, 0, 0, 15, 48, '7', '1982-2019', 'Obstetrics and Gynecology (Q4)'), (23253, 'Global Journal Al-Thaqafah', 22320474, 0.104, 'Q4', 6, 25, 620, 18, 82, '23', '2011-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (23254, 'Graziadio Business Report', 19391633, 0.104, 'Q4', 4, 0, 0, 3, 19, '2', '2009-2017', 'Business and International Management (Q4); Economics and Econometrics (Q4)'), (23255, 'Haser', 2172055, 0.104, 'Q4', 0, 6, 116, 0, 6, '12', '2019-2020', 'Philosophy (Q4)'), (23256, 'Historical Reflections', 3157997, 0.104, 'Q3', 8, 19, 935, 7, 62, '2', '1977, 1979, 1982-1983, 1985, 1987, 1989, 1999, 2001-2020', 'History (Q3)'), (23257, 'History of Education and Children s Literatur', 19711093, 0.104, 'Q4', 5, 88, 0, 12, 217, '7', '2011-2020', 'Education (Q4); History and Philosophy of Science (Q4)'), (23258, 'Hong Kong Journal of Radiology', 22236619, 0.104, 'Q4', 9, 32, 684, 5, 121, '1', '2011-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (23259, 'Hotel Management', 21582122, 0.104, 'Q4', 4, 27, 0, 1, 47, '2', '2011-2019', 'Business and International Management (Q4); Tourism, Leisure and Hospitality Management (Q4)'), (23260, 'Imagerie de la Femme', 17769817, 0.104, 'Q4', 9, 24, 535, 4, 102, '8', '2005-2020', 'Surgery (Q4)'), (23261, 'Intellectual Discourse', 1284878, 0.104, 'Q4', 7, 20, 699, 27, 116, '23', '2011-2020', 'Philosophy (Q4); Sociology and Political Science (Q4)'), (23262, 'Interdisciplinary Literary Studies', 2161427, 0.104, 'Q3', 2, 23, 891, 5, 74, '2', '2017-2019', 'Literature and Literary Theory (Q3)'), (23263, 'International Journal of Environmental Sustai', 23251077, 0.104, 'Q4', 6, 2, 113, 4, 17, '2', '2013-2020', 'Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (23264, 'International Journal of Knowledge, Culture a', 14479575, 0.104, 'Q4', 8, 0, 0, 1, 6, '2', '2009-2013, 2015-2016, 2018-2019', 'Strategy and Management (Q4)'), (23265, 'International Journal of Pluralism and Econom', 17575656, 0.104, 'Q4', 1, 15, 518, 5, 50, '19', '2018-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Education (Q4); Sociology and Political Science (Q4)'), (23266, 'Internistische Praxis', 209570, 0.104, 'Q4', 5, 82, 2068, 10, 319, '5', '1962, 1965, 1973-1980, 2001-2018', 'Internal Medicine (Q4)'), (23267, 'Iranian Journal of Geophysics', 20080336, 0.104, 'Q4', 1, 20, 583, 1, 24, '15', '2019-2020', 'Geophysics (Q4)'), (23268, 'Journal de Pediatrie et de Puericulture', 9877983, 0.104, 'Q4', 8, 37, 949, 6, 92, '8', '1988-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (23269, 'Journal of Advanced Zoology', 2537214, 0.104, 'Q4', 9, 0, 0, 23, 36, '4', '1993-2019', 'Animal Science and Zoology (Q4)'), (23270, 'Journal of American-East Asian Relations', 10583947, 0.104, 'Q3', 8, 15, 602, 6, 44, '16', '1996, 1998-2000, 2002-2003, 2007-2019', 'History (Q3); Cultural Studies (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23271, 'Journal of Clinical Dermatology', 10004963, 0.104, 'Q4', 5, 0, 0, 6, 162, '1', '2006-2017', 'Dermatology (Q4)'), (23272, 'Journal of Critical and Intensive Care', 27176428, 0.104, 'Q4', 5, 32, 565, 4, 51, '18', '2020', 'Critical Care and Intensive Care Medicine (Q4)'), (23273, 'Journal of Fiber Science and Technology', 21897654, 0.104, 'Q4', 19, 112, 1792, 12, 261, '6', '1946-1948, 1951, 1954-2020', 'Chemical Engineering (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)'), (23274, 'Journal of ICT Standardization', 2245800, 0.104, 'Q4', 1, 11, 200, 2, 23, '25', '2019', 'Computer Networks and Communications (Q4); Computer Science Applications (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management of Technology and Innovation (Q4)'), (23275, 'Journal of Information Systems Security', 15510123, 0.104, 'Q4', 0, 7, 186, 0, 6, '2', '2019-2020', 'Education (Q4); Information Systems (Q4); Information Systems and Management (Q4); Management Information Systems (Q4); Safety Research (Q4); Software (Q4)'), (23276, 'Journal of Nuclear Energy Science and Power G', 23259809, 0.104, 'Q4', 1, 2, 60, 1, 6, '3', '2018-2019', 'Energy Engineering and Power Technology (Q4); Nuclear and High Energy Physics (Q4); Nuclear Energy and Engineering (Q4); Waste Management and Disposal (Q4)'), (23277, 'Journal of Social Research and Policy', 20689861, 0.104, 'Q4', 9, 0, 0, 5, 20, '43', '2010-2018', 'Sociology and Political Science (Q4)'), (23278, 'Journal of Wind Engineering', 1349340, 0.104, 'Q4', 6, 6, 92, 1, 26, '6', '1999-2019', 'Renewable Energy, Sustainability and the Environment (Q4)'), (23279, 'Kriminologisches Journal', 3411966, 0.104, 'Q4', 6, 0, 0, 8, 63, '5', '2009-2013, 2015-2019', 'Law (Q4); Safety Research (Q4)'), (23280, 'Lettere Italiane', 241334, 0.104, 'Q3', 3, 22, 0, 1, 61, '7', '1987, 2002-2020', 'Literature and Literary Theory (Q3)'), (23281, 'Lingue e Linguaggio', 17209331, 0.104, 'Q4', 13, 0, 0, 6, 19, '7', '2002-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23282, 'Literature and History', 3061973, 0.104, 'Q3', 8, 11, 0, 4, 29, '3', '1985, 2002-2020', 'History (Q3); Literature and Literary Theory (Q3)'), (23283, 'Lizi Jiaohuan Yu Xifu/Ion Exchange and Adsorp', 10015493, 0.104, 'Q4', 8, 50, 1055, 9, 174, '1', '1987-1995, 1998, 2001-2018', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (23284, 'Manusya', 26659077, 0.104, 'Q4', 1, 23, 492, 1, 16, '40', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4)'), (23285, 'Medicina', 766046, 0.104, 'Q4', 10, 63, 1549, 12, 147, '14', '1991-2020', 'Medicine (miscellaneous) (Q4)'), (23286, 'Medicine', 15788822, 0.104, 'Q4', 5, 202, 3809, 40, 603, '12', '2007-2020', 'Medicine (miscellaneous) (Q4)'), (23287, 'Medium Aevum', 258385, 0.104, 'Q3', 9, 17, 687, 3, 47, '3', '2002-2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23288, 'Memoirs of the Faculty of Engineering, Kyushu', 1880148, 0.104, 'Q4', 9, 0, 0, 2, 7, '6', '1970, 1972, 1974, 1976-1999, 2001-2018', 'Atmospheric Science (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Energy (miscellaneous) (Q4); Management of Technology and Innovation (Q4)'), (23289, 'M et T2', 16378962, 0.104, 'Q4', 0, 0, 0, 0, 6, '8', '2004-2017', 'Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)'), (23290, 'Mondo Digitale', 1720898, 0.104, 'Q3', 6, 0, 0, 4, 107, '7', '2003-2019', 'Media Technology (Q3); Computer Science Applications (Q4); Information Systems (Q4)'), (23291, 'Moving Image Review and Art Journal', 20456301, 0.104, 'Q3', 1, 10, 139, 1, 6, '3', '2019', 'Visual Arts and Performing Arts (Q3); Computer Graphics and Computer-Aided Design (Q4); Computer Science Applications (Q4)'), (23292, 'Multitudes', 17775841, 0.104, 'Q4', 11, 89, 672, 8, 228, '8', '2000-2020', 'Philosophy (Q4); Sociology and Political Science (Q4)'), (23293, 'Narrative Culture', 21690235, 0.104, 'Q3', 4, 12, 382, 6, 32, '2', '2014-2020', 'Literature and Literary Theory (Q3); Anthropology (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23294, 'New Scientist', 2624079, 0.104, 'Q4', 17, 231, 4, 44, 726, '2', '1973-2020', 'Multidisciplinary (Q4)'), (23295, 'No To Hattatsu', 290831, 0.104, 'Q4', 12, 66, 618, 4, 164, '6', '1969-2020', 'Medicine (miscellaneous) (Q4); Neurology (clinical) (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (23296, 'Nuova Rivista Storica', 296236, 0.104, 'Q3', 4, 33, 0, 5, 95, '7', '1973, 1976, 1978, 1980, 1999, 2002-2020', 'History (Q3)'), (23297, 'Nursing Made Incredibly Easy', 15522032, 0.104, 'Q3', 4, 11, 108, 14, 145, '2', '2006-2009, 2012, 2014-2020', 'Nurse Assisting (Q3); Assessment and Diagnosis (Q4); Fundamentals and Skills (Q4); LPN and LVN (Q4)'), (23298, 'Ochrona Przed Korozja', 24499501, 0.104, 'Q4', 1, 65, 700, 3, 51, '17', '2019-2020', 'Chemical Engineering (miscellaneous) (Q4); Materials Chemistry (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)'), (23299, 'Onkopediatria', 23119977, 0.104, 'Q4', 3, 0, 0, 8, 37, '10', '2018-2019', 'Oncology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (23300, 'Ornis Svecica', 11026812, 0.104, 'Q4', 14, 8, 212, 4, 32, '20', '1991-2020', 'Animal Science and Zoology (Q4)'), (23301, 'Oxford University Commonwealth Law Journal', 14729342, 0.104, 'Q4', 3, 15, 0, 6, 34, '3', '2013-2020', 'Law (Q4)'), (23302, 'Perspectives on Political Science', 10457097, 0.104, 'Q4', 6, 36, 24, 7, 83, '2', '1990-2020', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23303, 'Pratique Neurologique - FMC', 18787762, 0.104, 'Q4', 3, 44, 999, 6, 140, '8', '2010-2020', 'Neurology (clinical) (Q4)'), (23304, 'Problemi', 5552419, 0.104, 'Q3', 2, 0, 0, 2, 97, '60', '2017-2019', 'Literature and Literary Theory (Q3); Applied Psychology (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Philosophy (Q4)'), (23305, 'Progresos en Obstetricia y Ginecologia', 15781453, 0.104, 'Q4', 10, 17, 604, 16, 239, '12', '1972-1976, 1978-1980, 1986-1990, 1992-1999, 2005-2020', 'Obstetrics and Gynecology (Q4)'), (23306, 'Recherche - Transports - Securite', 7618980, 0.104, 'Q4', 11, 0, 0, 4, 10, '8', '1998-2003, 2011-2012, 2014-2018', 'Automotive Engineering (Q4); Transportation (Q4)'), (23307, 'Religion and Theology', 15743012, 0.104, 'Q3', 8, 14, 662, 5, 45, '16', '1996-2019', 'Religious Studies (Q3); Social Sciences (miscellaneous) (Q4)'), (23308, 'Renewable Resources Journal', 7386532, 0.104, 'Q4', 8, 19, 213, 1, 33, '2', '1993-2011, 2014-2019', 'Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (23309, 'Research Reports on Information Science and E', 13423819, 0.104, 'Q4', 6, 0, 0, 0, 6, '6', '1996-2010, 2012-2019', 'Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)'), (23310, 'Review of Korean Studies', 12290076, 0.104, 'Q4', 1, 0, 0, 1, 41, '13', '2018-2019', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)'), (23311, 'Revista Argentina de Dermatologia', 3252787, 0.104, 'Q4', 5, 0, 0, 4, 50, '46', '1979-2018', 'Dermatology (Q4)'), (23312, 'Revista de historia', 348309, 0.104, 'Q3', 3, 44, 1926, 4, 59, '14', '1968-1971, 1973, 1975-1978, 1999-2001, 2017-2019', 'History (Q3)'), (23313, 'Revista de Historia das Ideias', 8700958, 0.104, 'Q3', 3, 12, 395, 4, 50, '26', '2011-2012, 2016-2019', 'History (Q3); Cultural Studies (Q4); Philosophy (Q4)'), (23314, 'Revue Archeologique de l Est', 17607264, 0.104, 'Q4', 4, 0, 0, 3, 35, '8', '2011-2016', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23315, 'Revue Belge de Philologie et de Histoire', 350818, 0.104, 'Q3', 7, 0, 0, 0, 6, '24', '1969-1972, 1974, 1983, 1986, 1989, 1999, 2002-2017', 'History (Q3); Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23316, 'Revue de la Histoire des Religions', 351423, 0.104, 'Q3', 5, 22, 1136, 3, 84, '8', '1967, 1974, 2008-2019', 'Religious Studies (Q3)'), (23317, 'Russian Neurological Journal', 26587947, 0.104, 'Q4', 4, 28, 968, 25, 111, '10', '2019-2020', 'Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (23318, 'Schweizerisches Archiv fur Volkskunde', 36794, 0.104, 'Q4', 2, 12, 486, 4, 31, '19', '2008-2014, 2017-2019', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (23319, 'SCIAMVS', 13454617, 0.104, 'Q4', 5, 0, 0, 2, 6, '6', '2010-2018', 'History and Philosophy of Science (Q4)'), (23320, 'Scientific Journal of King Faisal University', 16580311, 0.104, 'Q4', 5, 91, 2550, 14, 61, '29', '2009-2020', 'Multidisciplinary (Q4)'), (23321, 'Shiyou Huagong/Petrochemical Technology', 10008144, 0.104, 'Q4', 14, 0, 0, 5, 60, '1', '1994-2017', 'Chemical Engineering (miscellaneous) (Q4); Fuel Technology (Q4)'), (23322, 'Shofar', 15345165, 0.104, 'Q3', 4, 35, 1363, 6, 61, '2', '2015-2020', 'History (Q3); Religious Studies (Q3); Cultural Studies (Q4)'), (23323, 'Slavica Slovaca', 376787, 0.104, 'Q3', 2, 61, 110, 6, 75, '53', '2011-2020', 'History (Q3); Anthropology (Q4); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23324, 'South African Gastroenterology Review', 18121659, 0.104, 'Q4', 3, 9, 96, 2, 61, '27', '2007-2020', 'Gastroenterology (Q4); Hepatology (Q4)'), (23325, 'South Australian Ornithologist', 382973, 0.104, 'Q4', 4, 0, 0, 0, 6, '11', '2010-2016, 2018', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (23326, 'Stellenbosch Papers in Linguistics Plus', 22243380, 0.104, 'Q4', 1, 8, 335, 8, 39, '27', '2019-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23327, 'Storia del Pensiero Politico', 22799818, 0.104, 'Q3', 1, 6, 167, 5, 62, '7', '2016-2019', 'History (Q3); Philosophy (Q4); Sociology and Political Science (Q4)'), (23328, 'Studies in French Cinema', 17589517, 0.104, 'Q3', 11, 0, 0, 11, 65, '3', '2001-2019', 'Visual Arts and Performing Arts (Q3)'), (23329, 'Studies in the History of Gardens and Designe', 14601176, 0.104, 'Q3', 9, 23, 0, 8, 47, '3', '1996-2020', 'Visual Arts and Performing Arts (Q3); Nature and Landscape Conservation (Q4)'), (23330, 'Synergies Chili', 22606017, 0.104, 'Q4', 2, 1, 12, 1, 14, '8', '2013-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23331, 'Taiwan International ESP Journal', 20797761, 0.104, 'Q4', 0, 0, 0, 0, 6, '22', '2019', 'Communication (Q4); Education (Q4); Linguistics and Language (Q4)'), (23332, 'Text Matters', 20832931, 0.104, 'Q3', 1, 0, 0, 7, 72, '17', '2016-2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23333, 'Topique', 409375, 0.104, 'Q4', 5, 35, 469, 7, 117, '8', '2001-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (23334, 'Trauma (Spain)', 18886116, 0.104, 'Q4', 6, 0, 0, 0, 6, '12', '2008-2015, 2018', 'Orthopedics and Sports Medicine (Q4)'), (23335, 'Tribunes de la Sante', 17658888, 0.104, 'Q4', 5, 24, 0, 4, 75, '8', '2003-2017, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (23336, 'Turkiye Klinikleri Cardiovascular Sciences', 13067656, 0.104, 'Q4', 3, 22, 548, 5, 46, '18', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (23337, 'Turkiye Klinikleri Pediatri', 13000381, 0.104, 'Q4', 3, 27, 735, 7, 50, '18', '2010-2020', 'Pediatrics, Perinatology and Child Health (Q4)'), (23338, 'University of Toronto Quarterly', 420247, 0.104, 'Q4', 13, 15, 591, 14, 81, '9', '2001-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (23339, 'USDA Forest Service - Research Note RMRS-RN', 5024994, 0.104, 'Q4', 5, 0, 0, 0, 6, '2', '1998-2002, 2004-2014, 2016-2019', 'Ecology (Q4); Forestry (Q4); Plant Science (Q4)'), (23340, 'World Literature Today', 19458134, 0.104, 'Q3', 6, 75, 8, 4, 138, '2', '2002-2020', 'Literature and Literary Theory (Q3)'), (23341, 'Wuhan Ligong Daxue Xuebao/Journal of Wuhan Un', 16714431, 0.104, 'Q4', 17, 0, 0, 17, 315, '1', '2002-2018', 'Engineering (miscellaneous) (Q4)'), (23342, 'Zeitschrift der Savigny-Stiftung fur Rechtsge', 23044896, 0.104, 'Q3', 4, 12, 191, 1, 30, '5', '1911-1922, 1924-1944, 1947-1948, 1950-1995, 2011-2019', 'History (Q3); Law (Q4)'), (23343, 'Zograf', 3501361, 0.104, 'Q3', 3, 0, 0, 2, 38, '55', '2012-2019', 'History (Q3); Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23344, 'Acta Philosophica', 11212179, 0.103, 'Q4', 3, 11, 537, 8, 44, '7', '2011-2019', 'Philosophy (Q4)'), (23345, 'Adelaide Law Review', 651915, 0.103, 'Q4', 1, 44, 331, 3, 23, '11', '2019-2020', 'Law (Q4)'), (23346, 'Advancing Microelectronics', 22228748, 0.103, 'Q4', 13, 5, 77, 5, 43, '2', '1995-2020', 'Electrical and Electronic Engineering (Q4)'), (23347, 'American Art', 15496503, 0.103, 'Q3', 8, 12, 336, 8, 74, '2', '1996-2020', 'Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)'), (23348, 'Ancient History Bulletin', 8353638, 0.103, 'Q3', 2, 0, 0, 2, 8, '2', '2018', 'Classics (Q3); History (Q3); Anthropology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4)'), (23349, 'Anglo Saxonica', 8730628, 0.103, 'Q3', 0, 0, 0, 0, 8, '26', '2018', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23350, 'Annali di Scienze Religiose', 20315929, 0.103, 'Q3', 1, 0, 0, 1, 20, '46', '2018-2019', 'History (Q3); Religious Studies (Q3)'), (23351, 'Antike Kunst', 35688, 0.103, 'Q3', 6, 8, 462, 12, 37, '19', '2009-2019', 'Classics (Q3); Visual Arts and Performing Arts (Q3)'), (23352, 'Applicationes Mathematicae', 17306280, 0.103, 'Q4', 1, 9, 153, 1, 8, '17', '2019', 'Applied Mathematics (Q4)'), (23353, 'Architectural History', 66622, 0.103, 'Q3', 10, 10, 404, 3, 19, '3', '2002-2009, 2011-2018', 'Visual Arts and Performing Arts (Q3); Architecture (Q4)'), (23354, 'Archiv fur Liturgiewissenschaft', 666386, 0.103, 'Q3', 4, 0, 0, 0, 8, '19', '2001, 2003-2007, 2009-2011, 2014, 2016, 2018', 'Religious Studies (Q3)'), (23355, 'Arms and Armour', 17496268, 0.103, 'Q3', 3, 9, 23, 3, 28, '3', '2010-2020', 'History (Q3); Religious Studies (Q3)'), (23356, 'Asian Theatre Journal', 7425457, 0.103, 'Q3', 10, 24, 526, 10, 63, '2', '2002-2019', 'Visual Arts and Performing Arts (Q3)'), (23357, 'Australian Journal of Clinical and Experiment', 1560417, 0.103, 'Q4', 11, 0, 0, 0, 7, '11', '1978-1985, 1987-2013, 2016-2017', 'Clinical Psychology (Q4); Complementary and Manual Therapy (Q4)'), (23358, 'Australian Journal of Clinical Hypnotherapy a', 8100713, 0.103, 'Q4', 5, 0, 0, 0, 8, '11', '1982-2015, 2017', 'Clinical Psychology (Q4); Complementary and Manual Therapy (Q4)'), (23359, 'Australian Literary Studies', 49697, 0.103, 'Q3', 7, 0, 0, 5, 33, '11', '2002-2018', 'Literature and Literary Theory (Q3)'), (23360, 'Australian Slavonic and East European Studies', 8188149, 0.103, 'Q3', 1, 4, 164, 1, 8, '11', '2013-2017', 'History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4)'), (23361, 'Barnboken', 20004389, 0.103, 'Q3', 1, 17, 537, 0, 9, '20', '2019-2020', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)'), (23362, 'Boletin Americanista', 5204100, 0.103, 'Q3', 5, 1, 47, 7, 53, '12', '2011-2019', 'History (Q3)'), (23363, 'Business, Peace and Sustainable Development', 20518757, 0.103, 'Q4', 5, 0, 0, 2, 10, '3', '2013-2017', 'Business and International Management (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)'), (23364, 'Canadian Literature', 84360, 0.103, 'Q3', 9, 0, 0, 12, 51, '9', '2002-2019', 'Literature and Literary Theory (Q3)'), (23365, 'Chinese Journal of Clinical Nutrition', 1674635, 0.103, 'Q4', 5, 38, 935, 10, 189, '1', '2006-2020', 'Nutrition and Dietetics (Q4)'), (23366, 'Con A de Animacion', 21736049, 0.103, 'Q3', 1, 14, 211, 3, 18, '12', '2019-2020', 'Visual Arts and Performing Arts (Q3)'), (23367, 'Concentric', 17298792, 0.103, 'Q3', 4, 9, 378, 4, 63, '22', '2012-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23368, 'Contemporanea', 11273070, 0.103, 'Q3', 5, 21, 2093, 6, 97, '7', '1999, 2002, 2008-2020', 'History (Q3)'), (23369, 'Counselling Psychology Review', 17572142, 0.103, 'Q4', 0, 20, 430, 0, 9, '3', '2019-2020', 'Applied Psychology (Q4); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (23370, 'Cracow Indological Studies', 17320917, 0.103, 'Q3', 1, 19, 476, 1, 9, '17', '2019', 'History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4); Philosophy (Q4)'), (23371, 'Cronache Ercolanesi', 3911535, 0.103, 'Q4', 3, 0, 0, 0, 7, '7', '2011, 2017', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Philosophy (Q4)'), (23372, 'Cuadernos Electronicos de Filosofia del Derec', 11389877, 0.103, 'Q4', 0, 29, 1045, 0, 8, '12', '2019-2020', 'Law (Q4); Philosophy (Q4)'), (23373, 'Culture and History Digital Journal', 2253797, 0.103, 'Q3', 5, 19, 1073, 20, 46, '12', '2016-2019', 'History (Q3); Cultural Studies (Q4)'), (23374, 'Danza e Ricerca', 20361599, 0.103, 'Q3', 0, 0, 0, 0, 8, '7', '2019', 'Visual Arts and Performing Arts (Q3)'), (23375, 'Diabetes Aktuell', 18616089, 0.103, 'Q4', 3, 68, 772, 8, 137, '5', '2007-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Internal Medicine (Q4)'), (23376, 'Documenta et Instrumenta', 16974328, 0.103, 'Q3', 1, 10, 336, 1, 9, '12', '2019', 'History (Q3)'), (23377, 'Education Therapeutique du Patient', 21000816, 0.103, 'Q4', 10, 13, 0, 13, 42, '8', '2009-2020', 'Education (Q4); Public Health, Environmental and Occupational Health (Q4)'), (23378, 'Energia Elettrica', 137308, 0.103, 'Q4', 6, 0, 0, 4, 57, '7', '1969-1990, 1993-2019', 'Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Energy Engineering and Power Technology (Q4)'), (23379, 'English Literature', 23851635, 0.103, 'Q3', 0, 9, 370, 0, 8, '7', '2019', 'Literature and Literary Theory (Q3)'), (23380, 'Estudios de Cultura Nahuatl', 711675, 0.103, 'Q3', 3, 0, 0, 0, 9, '30', '1971-1972, 2014-2017', 'History (Q3); Anthropology (Q4)'), (23381, 'Etudes sur la Mort', 11570466, 0.103, 'Q4', 5, 0, 0, 2, 21, '8', '2001-2017, 2019', 'Clinical Psychology (Q4)'), (23382, 'European Journal of Lymphology and Related Pr', 7785569, 0.103, 'Q4', 7, 0, 0, 1, 7, '24', '1992-1993, 1995, 1997, 1999-2000, 2002-2006, 2008-2012, 2014-2015, 2017', 'Cardiology and Cardiovascular Medicine (Q4)'), (23383, 'European State Aid Law Quarterly', 16195272, 0.103, 'Q4', 2, 16, 0, 3, 42, '5', '2019-2020', 'Law (Q4)'), (23384, 'Family Law Quarterly', 14729, 0.103, 'Q4', 18, 0, 0, 2, 15, '2', '1973-1975, 1977, 1979-1980, 1983-1985, 1988, 1991-1992, 1996-2012, 2017', 'Law (Q4); Social Sciences (miscellaneous) (Q4)'), (23385, 'Film Fashion and Consumption', 20442823, 0.103, 'Q3', 1, 13, 589, 0, 7, '3', '2019', 'History (Q3); Visual Arts and Performing Arts (Q3); Communication (Q4); Cultural Studies (Q4)'), (23386, 'Filozofski Vestnik', 15811239, 0.103, 'Q3', 7, 1, 73, 9, 93, '60', '2002-2018, 2020', 'Religious Studies (Q3)'), (23387, 'Fortune', 158259, 0.103, 'Q4', 15, 0, 0, 3, 66, '2', '1973-1974, 1976-2018', 'Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4)'), (23388, 'Frontiers of Literary Studies in China', 16737423, 0.103, 'Q3', 3, 8, 102, 4, 63, '16', '2007-2019', 'Literature and Literary Theory (Q3)'), (23389, 'Groupwork', 951824, 0.103, 'Q4', 8, 0, 0, 1, 24, '3', '2005-2014, 2017', 'Applied Psychology (Q4); Public Health, Environmental and Occupational Health (Q4)'), (23390, 'Handelingen van de Koninklijke Commissie voor', 7748396, 0.103, 'Q4', 2, 0, 0, 1, 9, '24', '2011-2017', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23391, 'Hepato-Gastro et Oncologie Digestive', 21155631, 0.103, 'Q4', 6, 89, 1705, 7, 369, '8', '2010-2020', 'Gastroenterology (Q4); Hepatology (Q4); Oncology (Q4)'), (23392, 'Hispamerica', 3630471, 0.103, 'Q3', 2, 0, 0, 3, 92, '2', '2009-2019', 'Literature and Literary Theory (Q3)'), (23393, 'Historia Caribe', 23226889, 0.103, 'Q3', 2, 17, 555, 4, 60, '47', '2015-2019', 'History (Q3)'), (23394, 'Historical Studies in Industrial Relations', 20494459, 0.103, 'Q3', 0, 0, 0, 0, 7, '3', '2019', 'History (Q3); Economics and Econometrics (Q4); Political Science and International Relations (Q4)'), (23395, 'Honeyguide', 18456, 0.103, 'Q4', 2, 0, 0, 1, 22, '27', '2010, 2012-2014, 2016-2018', 'Animal Science and Zoology (Q4)'), (23396, 'Hospitals and Health Networks', 10688838, 0.103, 'Q4', 12, 0, 0, 3, 65, '2', '1993-2017', 'Health Policy (Q4); Medicine (miscellaneous) (Q4)'), (23397, 'Hume Studies', 3197336, 0.103, 'Q4', 19, 0, 0, 0, 9, '2', '1996-1998, 2000-2017', 'Philosophy (Q4)'), (23398, 'IAFOR Journal of Literature and Librarianship', 21870608, 0.103, 'Q3', 0, 15, 469, 0, 9, '6', '2019-2020', 'Literature and Literary Theory (Q3); Library and Information Sciences (Q4)'), (23399, 'In_Bo', 20361602, 0.103, 'Q3', 0, 0, 0, 0, 8, '7', '2019', 'Visual Arts and Performing Arts (Q3); Architecture (Q4); Building and Construction (Q4); Urban Studies (Q4)'), (23400, 'International Journal of China Studies', 21803250, 0.103, 'Q4', 11, 18, 834, 4, 40, '23', '2010-2020', 'Cultural Studies (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23401, 'International Journal of Computer Science and', 9729038, 0.103, 'Q4', 14, 4, 101, 4, 12, '3', '2009-2019', 'Computer Science Applications (Q4)'), (23402, 'International Journal of Educational Organiza', 23291656, 0.103, 'Q4', 4, 12, 683, 2, 15, '2', '2013-2020', 'Education (Q4); Strategy and Management (Q4)'), (23403, 'International Journal of Electrical Engineeri', 18123031, 0.103, 'Q4', 8, 26, 378, 7, 77, '22', '2004-2020', 'Electrical and Electronic Engineering (Q4)'), (23404, 'International Journal of Mechanical Engineeri', 9745823, 0.103, 'Q4', 3, 8, 563, 0, 9, '4', '2019', 'Mechanical Engineering (Q4)'), (23405, 'International Journal of Mechatronics and Aut', 20451059, 0.103, 'Q4', 15, 21, 509, 2, 20, '19', '2011, 2014, 2020', 'Artificial Intelligence (Q4); Computational Mathematics (Q4); Computational Mechanics (Q4); Control and Systems Engineering (Q4); Electrical and Electronic Engineering (Q4); Industrial and Manufacturi'), (23406, 'International Journal of Postharvest Technolo', 17447550, 0.103, 'Q4', 12, 22, 895, 2, 26, '3', '2006, 2008-2014', 'Agronomy and Crop Science (Q4); Food Science (Q4)'), (23407, 'International Journal of Religion and Spiritu', 21548633, 0.103, 'Q3', 2, 14, 565, 3, 48, '2', '2016-2020', 'Religious Studies (Q3)'), (23408, 'International Journal of the Humanities', 14479508, 0.103, 'Q4', 5, 3, 89, 0, 7, '2', '2010-2018, 2020', 'Arts and Humanities (miscellaneous) (Q4)'), (23409, 'International Review of Modern Sociology', 9732047, 0.103, 'Q4', 1, 6, 454, 1, 8, '4', '2019', 'Social Sciences (miscellaneous) (Q4)'), (23410, 'International Sports Studies', 14430770, 0.103, 'Q4', 2, 16, 389, 1, 24, '5', '2016-2020', 'Applied Psychology (Q4); Education (Q4)'), (23411, 'Interpretation- Journal of Bible and Theology', 2159340, 0.103, 'Q3', 9, 34, 0, 9, 64, '2', '1965-1966, 1998, 2002-2020', 'Religious Studies (Q3)'), (23412, 'IPSJ Transactions on Bioinformatics', 18826679, 0.103, 'Q4', 4, 3, 77, 3, 8, '6', '2008-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Computer Science Applications (Q4)'), (23413, 'IUP Journal of English Studies', 9733728, 0.103, 'Q3', 2, 48, 932, 9, 100, '4', '2009-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23414, 'Jahr', 18487874, 0.103, 'Q4', 1, 27, 890, 5, 45, '58', '2017-2019', 'Health Policy (Q4); Health (social science) (Q4); Medicine (miscellaneous) (Q4)'), (23415, 'Japanese Journal of Lung Cancer', 3869628, 0.103, 'Q4', 7, 71, 754, 6, 203, '6', '1965, 1969-2020', 'Oncology (Q4); Pulmonary and Respiratory Medicine (Q4)'), (23416, 'Journal des Economistes et des Etudes Humaine', 21945799, 0.103, 'Q4', 10, 5, 285, 0, 8, '5', '1995-1996, 1998-2004, 2009-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23417, 'Journal for the History of Astronomy', 218286, 0.103, 'Q4', 17, 18, 0, 11, 57, '2', '1970-2020', 'Arts and Humanities (miscellaneous) (Q4); Astronomy and Astrophysics (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (23418, 'Journalism history', 947679, 0.103, 'Q4', 2, 19, 0, 5, 24, '2', '1975, 1980, 1984, 1986, 2001, 2019-2020', 'Communication (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (23419, 'Journal of China and International Relations', 22458921, 0.103, 'Q4', 2, 0, 0, 3, 27, '25', '2018-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23420, 'Journal of Early Modern Studies', 22797149, 0.103, 'Q3', 1, 10, 714, 4, 7, '7', '2019-2020', 'History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); So'), (23421, 'Journal of Experimental and Clinical Medicine', 13095129, 0.103, 'Q4', 3, 1, 42, 3, 42, '18', '2014-2017', 'Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (23422, 'Journal of Fiber Bioengineering and Informati', 19408676, 0.103, 'Q4', 13, 25, 663, 2, 40, '1', '2012-2015', 'Computer Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (23423, 'Journal of Global Drug Policy and Practice', 19344708, 0.103, 'Q4', 5, 0, 0, 0, 8, '2', '2009-2017', 'Health Policy (Q4); Psychiatry and Mental Health (Q4); Public Health, Environmental and Occupational Health (Q4)'), (23424, 'Journal of Iberian and Latin American Researc', 21519668, 0.103, 'Q3', 8, 15, 0, 6, 67, '3', '1995-2008, 2010-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4)'), (23425, 'Journal of Iberian Women Writers', 23409029, 0.103, 'Q3', 0, 5, 164, 0, 7, '12', '2019', 'Literature and Literary Theory (Q3); Gender Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23426, 'Journal of Information Technology Education: ', 21661324, 0.103, 'Q4', 1, 0, 0, 2, 12, '2', '2012-2017', 'Computer Science (miscellaneous) (Q4); Education (Q4); Sociology and Political Science (Q4)'), (23427, 'Journal of Interactional Research in Communic', 2040512, 0.103, 'Q4', 0, 11, 447, 0, 9, '3', '2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Speech and Hearing (Q4)'), (23428, 'Journal of International Pharmaceutical Resea', 16740440, 0.103, 'Q4', 6, 168, 5236, 13, 187, '1', '2010-2011, 2013-2020', 'Pharmaceutical Science (Q4)'), (23429, 'Journal of Juristic Papyrology', 754277, 0.103, 'Q4', 8, 0, 0, 2, 8, '17', '2002-2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Law (Q4)'), (23430, 'Journal of Land and Development', 23340053, 0.103, 'Q4', 2, 0, 0, 0, 7, '2', '2012-2019', 'Environmental Science (miscellaneous) (Q4); Geography, Planning and Development (Q4); Law (Q4); Management, Monitoring, Policy and Law (Q4)'), (23431, 'Journal of Literary and Cultural Disability S', 17576458, 0.103, 'Q4', 2, 18, 435, 5, 32, '3', '2018-2020', 'Health Professions (miscellaneous) (Q4); Health (social science) (Q4); Social Sciences (miscellaneous) (Q4)'), (23432, 'Journal of Music Research', 20798857, 0.103, 'Q3', 0, 3, 103, 0, 7, '22', '2019-2020', 'Music (Q3)'), (23433, 'Journal of Practical Oncology', 10011692, 0.103, 'Q4', 4, 67, 1407, 16, 241, '1', '2009-2020', 'Cancer Research (Q4); Oncology (Q4)'), (23434, 'Journal of Pre-Raphaelite Studies-New Series', 1060149, 0.103, 'Q3', 2, 0, 0, 2, 9, '9', '2002-2015, 2017, 2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)'), (23435, 'Journal of Protective Coatings and Linings', 87551985, 0.103, 'Q4', 14, 0, 0, 3, 108, '2', '1984-2018', 'Materials Chemistry (Q4); Mechanical Engineering (Q4); Metals and Alloys (Q4); Surfaces, Coatings and Films (Q4)'), (23436, 'Journal of RNA and Genomics', 25917781, 0.103, 'Q4', 0, 0, 0, 0, 7, '3', '2017-2019', 'Biochemistry (Q4); Genetics (Q4); Molecular Biology (Q4)'), (23437, 'Journal of Science and Technology in the Trop', 18235034, 0.103, 'Q4', 4, 0, 0, 0, 9, '23', '2009-2017', 'Engineering (miscellaneous) (Q4); Multidisciplinary (Q4)'), (23438, 'Journal of the Alamire Foundation', 25070320, 0.103, 'Q3', 0, 13, 0, 0, 8, '24', '2019-2020', 'Music (Q3)'), (23439, 'Journal of the Institute of Electrical Engine', 13405551, 0.103, 'Q4', 10, 129, 569, 12, 313, '6', '1996-2020', 'Electrical and Electronic Engineering (Q4)'), (23440, 'Judaisme Ancien - Ancient Judaism', 25070339, 0.103, 'Q3', 0, 11, 17, 0, 9, '24', '2019', 'History (Q3); Literature and Literary Theory (Q3); Religious Studies (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23441, 'Kinoshi Kenkyu Kaishi/Annals of the High Perf', 2885867, 0.103, 'Q3', 2, 0, 0, 0, 9, '6', '1997-2016, 2018', 'Media Technology (Q3); Chemistry (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (23442, 'Korean Journal of Microbiology and Biotechnol', 22347305, 0.103, 'Q4', 16, 0, 0, 1, 15, '13', '2002-2017', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Microbiology (Q4)'), (23443, 'Kuste', 4527739, 0.103, 'Q4', 11, 0, 0, 0, 8, '5', '1973, 1975, 1977, 1979-2014, 2016', 'Ocean Engineering (Q4); Oceanography (Q4)'), (23444, 'Labour History', 236942, 0.103, 'Q3', 9, 0, 0, 2, 39, '11', '1980-1981, 1984-1985, 1987, 1999, 2001-2002, 2008-2018', 'History (Q3); Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4); Sociology and Political Science (Q4)'), (23445, 'La Revue du MAUSS', 12474819, 0.103, 'Q4', 11, 32, 385, 12, 127, '8', '2001-2019', 'Philosophy (Q4); Sociology and Political Science (Q4)'), (23446, 'Learning and Teaching in Higher Education: Gu', 20775504, 0.103, 'Q4', 0, 0, 0, 0, 7, '52', '2018-2019', 'Education (Q4)'), (23447, 'Lebenswelt', 22409599, 0.103, 'Q4', 0, 6, 151, 0, 7, '7', '2019-2020', 'Philosophy (Q4)'), (23448, 'Leibniz Review', 15241556, 0.103, 'Q4', 5, 0, 0, 1, 9, '2', '2008-2012, 2014-2018', 'Philosophy (Q4)'), (23449, 'lnternational Journal of Differential Equatio', 13146084, 0.103, 'Q4', 2, 4, 91, 3, 12, '61', '2019-2020', 'Analysis (Q4); Applied Mathematics (Q4)'), (23450, 'Lymphologie in Forschung und Praxis', 14335255, 0.103, 'Q4', 8, 0, 0, 2, 23, '5', '1999-2018', 'Cardiology and Cardiovascular Medicine (Q4)'), (23451, 'Mathematical Scientist', 3123685, 0.103, 'Q4', 4, 0, 0, 3, 38, '3', '2010-2018', 'Materials Science (miscellaneous) (Q4)'), (23452, 'Mathematische Semesterberichte', 720728, 0.103, 'Q4', 6, 13, 326, 5, 40, '5', '1992-1994, 2005-2020', 'Mathematics (miscellaneous) (Q4)'), (23453, 'Meanjin', 14488094, 0.103, 'Q3', 6, 119, 353, 7, 337, '11', '2002-2003, 2005-2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4)'), (23454, 'Medecine Buccale Chirurgie Buccale', 12732761, 0.103, 'Q4', 4, 0, 0, 4, 36, '8', '2007-2009, 2011-2017', 'Dentistry (miscellaneous) (Q4); Oral Surgery (Q4); Periodontics (Q4)'), (23455, 'Medecine Therapeutique', 12646520, 0.103, 'Q4', 7, 53, 0, 5, 210, '8', '1996-2020', 'Medicine (miscellaneous) (Q4)'), (23456, 'Medecine Therapeutique Pediatrie', 12865494, 0.103, 'Q4', 7, 0, 0, 5, 92, '8', '1998-2019', 'Pediatrics, Perinatology and Child Health (Q4)'), (23457, 'Medicina Cutanea Ibero-Latino-Americana', 2105187, 0.103, 'Q4', 9, 11, 241, 8, 102, '12', '1973-2020', 'Dermatology (Q4)'), (23458, 'Medievalia et Humanistica', 766127, 0.103, 'Q3', 4, 6, 196, 1, 8, '2', '1960, 1967, 1986, 2002-2012, 2014-2017, 2019-2020', 'History (Q3); Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Philosophy (Q4)'), (23459, 'Medieval Low Countries', 25070363, 0.103, 'Q3', 0, 6, 0, 0, 8, '24', '2019', 'History (Q3)'), (23460, 'Mexican Studies/Estudios Mexicanos', 7429797, 0.103, 'Q3', 15, 0, 0, 3, 42, '2', '1985-2019', 'History (Q3); Cultural Studies (Q4)'), (23461, 'Mextesol Journal', 23959908, 0.103, 'Q4', 1, 52, 1941, 6, 39, '30', '2018-2020', 'Cultural Studies (Q4); Education (Q4); Linguistics and Language (Q4)'), (23462, 'Millennium DIPr', 24443220, 0.103, 'Q4', 1, 0, 0, 1, 9, '30', '2019', 'Law (Q4)'), (23463, 'Missouri Review', 15489930, 0.103, 'Q3', 1, 58, 0, 1, 85, '2', '2015-2019', 'Literature and Literary Theory (Q3)'), (23464, 'Mitteilungen des Deutschen Archaologischen In', 3419142, 0.103, 'Q4', 9, 0, 0, 0, 7, '5', '2002-2016, 2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23465, 'Mitteilungen zur Christlichen Archaologie', 18142036, 0.103, 'Q3', 4, 0, 0, 0, 8, '28', '2002-2018', 'Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23466, 'Nation', 278378, 0.103, 'Q4', 11, 0, 0, 9, 184, '2', '1973-1974, 1976-1980, 1990, 2002, 2006-2018', 'Cultural Studies (Q4)'), (23467, 'New England Review-Middlebury Series', 10531297, 0.103, 'Q3', 3, 59, 68, 2, 147, '2', '2002-2020', 'Literature and Literary Theory (Q3)'), (23468, 'New Mexico Geology', 196948, 0.103, 'Q4', 11, 0, 0, 0, 7, '2', '1979-1987, 1992-2018', 'Geology (Q4)'), (23469, 'Northern Scotland', 3065278, 0.103, 'Q3', 2, 12, 597, 1, 9, '3', '1979, 1981, 1999, 2001, 2018-2020', 'History (Q3); Anthropology (Q4); Cultural Studies (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); Sociology and Political Science (Q4)'), (23470, 'Nursing History Review', 10628061, 0.103, 'Q4', 12, 20, 0, 8, 64, '2', '1993-1997, 1999-2006, 2008-2019', 'Nursing (miscellaneous) (Q4)'), (23471, 'Offshore', 300608, 0.103, 'Q4', 10, 0, 0, 3, 7, '2', '1973, 1984, 1986-2017', 'Energy (miscellaneous) (Q4); Geotechnical Engineering and Engineering Geology (Q4); Ocean Engineering (Q4); Oceanography (Q4)'), (23472, 'On the W@terfront', 11397365, 0.103, 'Q3', 1, 17, 645, 1, 8, '12', '2019', 'Visual Arts and Performing Arts (Q3); Geography, Planning and Development (Q4); Urban Studies (Q4)'), (23473, 'Oxford German Studies', 787191, 0.103, 'Q3', 5, 25, 0, 2, 97, '3', '1966-1973, 1978-1985, 1988-1989, 1991, 1993-1995, 2002-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23474, 'Papers on Global Change IGBP', 1730802, 0.103, 'Q4', 3, 0, 0, 1, 8, '17', '2012-2017', 'Ecology (Q4); Geology (Q4); Geophysics (Q4); Global and Planetary Change (Q4)'), (23475, 'Parergon', 3136221, 0.103, 'Q4', 9, 10, 1447, 3, 50, '11', '2002-2019', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (23476, 'Pesticide Research Journal', 2249524, 0.103, 'Q4', 1, 19, 468, 3, 37, '4', '2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Agronomy and Crop Science (Q4); Biochemistry (Q4); Biotechnology (Q4); Food Science (Q4); Pollution (Q4)'), (23477, 'Philobiblon', 22478442, 0.103, 'Q4', 3, 24, 0, 3, 60, '43', '2011-2020', 'Arts and Humanities (miscellaneous) (Q4)'), (23478, 'Phoenix', 318299, 0.103, 'Q3', 14, 0, 0, 2, 9, '9', '2002-2003, 2005-2007, 2009-2017', 'Classics (Q3)'), (23479, 'Physics in Perspective', 14226960, 0.103, 'Q3', 15, 16, 745, 8, 29, '19', '1999-2020', 'History (Q3); Physics and Astronomy (miscellaneous) (Q4)'), (23480, 'Policy and Practice', 1748135, 0.103, 'Q4', 2, 14, 371, 1, 8, '3', '2019', 'Education (Q4)'), (23481, 'Prakseologia', 794872, 0.103, 'Q4', 3, 0, 0, 2, 41, '17', '2012-2019', 'Business, Management and Accounting (miscellaneous) (Q4); Philosophy (Q4)'), (23482, 'Pravara Medical Review', 9760164, 0.103, 'Q4', 4, 27, 508, 6, 72, '4', '2011-2020', 'Medicine (miscellaneous) (Q4)'), (23483, 'Problema', 20074387, 0.103, 'Q4', 1, 14, 335, 2, 44, '30', '2016-2019', 'Law (Q4)'), (23484, 'Przestrzen Spoleczna', 20841558, 0.103, 'Q4', 0, 8, 285, 0, 8, '17', '2018', 'Cultural Studies (Q4); Demography (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); Social Psychology (Q4); Social Sciences (miscellaneous) (Q4)'), (23485, 'Publishing History', 3092445, 0.103, 'Q3', 3, 0, 0, 0, 7, '3', '2002-2010, 2012, 2018-2019', 'Visual Arts and Performing Arts (Q3); Communication (Q4)'), (23486, 'Quaerendo', 149527, 0.103, 'Q3', 5, 16, 588, 1, 38, '16', '1971-1979, 1981-1985, 1987-2020', 'History (Q3); Library and Information Sciences (Q4)'), (23487, 'Revista Cubana de Ortopedia y Traumatologia', 864215, 0.103, 'Q4', 4, 26, 488, 1, 34, '85', '1996-2003, 2006-2019', 'Orthopedics and Sports Medicine (Q4); Rehabilitation (Q4); Surgery (Q4)'), (23488, 'Revista de Analisis Economico', 7165927, 0.103, 'Q4', 6, 10, 392, 5, 28, '45', '2011-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (23489, 'Revista del Hospital Psiquiatrico de la Haban', 1387103, 0.103, 'Q4', 5, 0, 0, 0, 8, '85', '1975-1992, 1997-2000, 2004-2017', 'Psychiatry and Mental Health (Q4)'), (23490, 'Revista Espanola de Antropologia Fisica', 18872042, 0.103, 'Q4', 2, 0, 0, 0, 9, '12', '2012-2018', 'Anthropology (Q4)'), (23491, 'Revista Mad', 7180527, 0.103, 'Q4', 3, 0, 0, 3, 22, '45', '2016-2019', 'Social Sciences (miscellaneous) (Q4)'), (23492, 'Revue Belge d Archeologie et d Histoire de l ', 35077, 0.103, 'Q3', 1, 0, 0, 0, 9, '24', '1972, 2013-2014, 2016, 2019', 'Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23493, 'Revue Internationale de Philosophie', 488143, 0.103, 'Q4', 9, 33, 797, 7, 69, '24', '1983, 2002-2020', 'Philosophy (Q4)'), (23494, 'Revue Juridique de l USEK', 10263268, 0.103, 'Q4', 0, 0, 0, 0, 8, '70', '2019', 'Law (Q4)'), (23495, 'Rubber World', 359572, 0.103, 'Q4', 14, 14, 60, 5, 136, '2', '1969-2019', 'Materials Chemistry (Q4); Polymers and Plastics (Q4)'), (23496, 'Salud (i) Ciencia', 16678990, 0.103, 'Q4', 4, 10, 213, 2, 84, '46', '2005-2020', 'Medicine (miscellaneous) (Q4)'), (23497, 'Scripta Mediaevalia', 18518753, 0.103, 'Q4', 0, 5, 175, 0, 7, '46', '2019-2020', 'Philosophy (Q4)'), (23498, 'Security and Human Rights', 18747337, 0.103, 'Q4', 8, 14, 227, 1, 9, '16', '2008-2017, 2020', 'Law (Q4); Political Science and International Relations (Q4)'), (23499, 'Sight and Sound', 374806, 0.103, 'Q3', 8, 0, 0, 7, 251, '3', '2002-2019', 'Visual Arts and Performing Arts (Q3)'), (23500, 'Social Sciences', 1345486, 0.103, 'Q4', 4, 0, 0, 12, 113, '10', '1988, 1994, 2008-2019', 'Social Sciences (miscellaneous) (Q4)'), (23501, 'Sociological Theory and Methods', 9131442, 0.103, 'Q4', 7, 11, 152, 2, 34, '6', '1986-1987, 1989-1994, 1996-2019', 'Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (23502, 'SPAFA Journal', 8581975, 0.103, 'Q3', 1, 13, 614, 1, 7, '40', '2019-2020', 'Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Conservation (Q4)'), (23503, 'S.T.P. Pharma Pratiques', 11571497, 0.103, 'Q4', 9, 0, 0, 1, 9, '8', '1991-2014, 2017-2018', 'Pharmaceutical Science (Q4)'), (23504, 'Studia Celtica', 816353, 0.103, 'Q3', 6, 0, 0, 0, 8, '3', '2003, 2005-2017', 'History (Q3); Literature and Literary Theory (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); Linguistics and Language (Q4)'), (23505, 'Studia Liturgica', 393207, 0.103, 'Q3', 6, 20, 0, 5, 45, '5', '2002-2011, 2014-2020', 'Religious Studies (Q3)'), (23506, 'Studia Slavica Academiae Scientiarum Hungaric', 393363, 0.103, 'Q3', 3, 0, 0, 2, 81, '50', '2007-2019', 'History (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23507, 'Studia Theodisca', 15932478, 0.103, 'Q3', 0, 0, 0, 0, 9, '7', '2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23508, 'Studi Culturali', 1824369, 0.103, 'Q4', 1, 7, 280, 1, 24, '7', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23509, 'Suvremena Lingvistika', 5860296, 0.103, 'Q4', 5, 11, 433, 7, 34, '58', '2011-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23510, 'Synergies Afrique des Grands Lacs', 22604278, 0.103, 'Q3', 1, 0, 0, 0, 9, '8', '2018', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4)'), (23511, 'Synergies Pays Germanophones', 18665268, 0.103, 'Q4', 0, 0, 0, 0, 9, '8', '2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23512, 'Taiwan Review', 17275199, 0.103, 'Q4', 2, 73, 0, 1, 180, '22', '2003-2019', 'Multidisciplinary (Q4)'), (23513, 'Tempo Psicanalitico', 23166576, 0.103, 'Q4', 4, 12, 429, 5, 78, '14', '2010-2019', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (23514, 'Terra', 403741, 0.103, 'Q4', 8, 18, 488, 8, 31, '38', '1978-2015, 2017-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Water Science and Technology (Q4)'), (23515, 'Tichodroma', 26444992, 0.103, 'Q4', 0, 0, 0, 0, 9, '53', '2019', 'Animal Science and Zoology (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (23516, 'Transactions of the Institute of Indian Geogr', 9709851, 0.103, 'Q4', 4, 10, 296, 11, 69, '4', '1980-2019', 'Geography, Planning and Development (Q4); Ocean Engineering (Q4); Water Science and Technology (Q4)'), (23517, 'Transgender Studies Quarterly', 23289252, 0.103, 'Q4', 2, 46, 1114, 4, 7, '2', '2020', 'Cultural Studies (Q4); Gender Studies (Q4)'), (23518, 'Twentieth Century Literature', 41462, 0.103, 'Q3', 14, 15, 499, 5, 52, '2', '2002-2014, 2016-2019', 'Literature and Literary Theory (Q3)'), (23519, 'UNISCI Discussion Papers', 16962206, 0.103, 'Q4', 5, 0, 0, 0, 7, '12', '2012-2017', 'Political Science and International Relations (Q4)'), (23520, 'Urogynaecologia International Journal', 20388314, 0.103, 'Q4', 7, 0, 0, 1, 9, '7', '1995-2014, 2016-2017, 2019', 'Obstetrics and Gynecology (Q4); Urology (Q4)'), (23521, 'Waffen-und Kostumkunde', 429945, 0.103, 'Q3', 2, 0, 0, 0, 8, '5', '2002-2017', 'Visual Arts and Performing Arts (Q3)'), (23522, 'Windows in time', 25765213, 0.103, 'Q4', 1, 0, 0, 0, 7, '2', '1999-2005, 2007-2011, 2014-2018', 'Medicine (miscellaneous) (Q4)'), (23523, 'World Review of Political Economy', 20428928, 0.103, 'Q4', 2, 0, 0, 2, 59, '3', '2018-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23524, 'Ymer', 440477, 0.103, 'Q4', 5, 10, 404, 3, 32, '20', '1980, 1984-1986, 1988-2000, 2002-2019', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (23525, 'Youth Voice Journal', 20562969, 0.103, 'Q4', 2, 14, 545, 2, 31, '3', '2015-2020', 'Social Psychology (Q4); Sociology and Political Science (Q4)'), (23526, 'Zeitschrift fur Padagogik (Beiheft)', 5142717, 0.103, 'Q4', 10, 19, 659, 4, 34, '5', '2002-2005, 2007-2019', 'Education (Q4)'), (23527, 'Zhonghua fang she xue za zhi Chinese journal ', 10051201, 0.103, 'Q4', 5, 256, 4437, 36, 711, '1', '1957, 1959-1960, 1979-1989, 2006-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (23528, 'Zhonghua yi shi za zhi (Beijing, China : 1980', 2557053, 0.103, 'Q4', 5, 51, 0, 0, 7, '1', '1980-1981, 1984-2010, 2014-2016, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (23529, 'Acta Medica Croatica', 13300164, 0.102, 'Q4', 17, 2, 44, 9, 149, '58', '1991-2019', 'Medicine (miscellaneous) (Q4)'), (23530, 'Advances in Business Related Scientific Resea', 1855931, 0.102, 'Q4', 1, 7, 278, 2, 17, '60', '2018-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Gender Studies (Q4); Law (Q4)'), (23531, 'African Journal of International and Comparat', 9548890, 0.102, 'Q4', 2, 38, 80, 12, 57, '3', '2018-2020', 'Law (Q4)'), (23532, 'Agenda', 20796, 0.102, 'Q3', 2, 19, 37, 0, 10, '3', '1979, 2002-2020', 'Literature and Literary Theory (Q3)'), (23533, 'Air Force Magazine', 7306784, 0.102, 'Q4', 8, 0, 0, 4, 222, '2', '1994-2018', 'Aerospace Engineering (Q4)'), (23534, 'Akroterion', 20792883, 0.102, 'Q3', 0, 0, 0, 0, 11, '27', '2019', 'Classics (Q3)'), (23535, 'Ambitos', 23864494, 0.102, 'Q4', 0, 0, 0, 0, 14, '12', '2019', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23536, 'American Scholar', 30937, 0.102, 'Q3', 9, 67, 0, 1, 104, '2', '1983, 1999, 2001-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)'), (23537, 'Analele Universitatii din Bucuresti, Seria St', 15822486, 0.102, 'Q4', 2, 0, 0, 0, 14, '43', '2015-2018', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23538, 'Analele Universitatii din Craiova, Seria Filo', 18418325, 0.102, 'Q4', 4, 0, 0, 6, 37, '43', '2011-2019', 'Philosophy (Q4)'), (23539, 'Anil Aggrawal s Internet Journal of Forensic ', 9728074, 0.102, 'Q4', 11, 7, 135, 0, 11, '4', '2000-2020', 'Law (Q4); Pathology and Forensic Medicine (Q4); Toxicology (Q4)'), (23540, 'Ankara Universitesi Ilahiyat Fakultesi Dergis', 13010522, 0.102, 'Q3', 0, 0, 0, 0, 14, '18', '2019', 'Religious Studies (Q3)'), (23541, 'Annales Academiae Medicae Gedanensis', 3034135, 0.102, 'Q4', 5, 0, 0, 1, 17, '17', '1974-1982, 1988-2014, 2016-2017', 'Medicine (miscellaneous) (Q4)'), (23542, 'Annales Universitates Paedagogicae Cracoviens', 20809751, 0.102, 'Q4', 1, 0, 0, 2, 10, '17', '2019', 'Education (Q4); Mathematics (miscellaneous) (Q4)'), (23543, 'Annali di Ca Foscari Serie Orientale', 11253789, 0.102, 'Q3', 1, 0, 0, 3, 48, '7', '2018-2019', 'Religious Studies (Q3); Cultural Studies (Q4); Linguistics and Language (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23544, 'Aperture', 36420, 0.102, 'Q3', 4, 47, 0, 0, 15, '2', '2002-2017, 2019', 'Visual Arts and Performing Arts (Q3)'), (23545, 'Apocrypha', 20346468, 0.102, 'Q3', 1, 0, 0, 0, 14, '24', '2018-2019', 'Literature and Literary Theory (Q3); Religious Studies (Q3)'), (23546, 'Appita TIME Magazine', 26520974, 0.102, 'Q4', 0, 0, 0, 0, 13, '11', '2019', 'Media Technology (Q4)'), (23547, 'Archeologie Medievale', 1539337, 0.102, 'Q4', 4, 0, 0, 0, 10, '8', '2002-2007, 2011-2018', 'Arts and Humanities (miscellaneous) (Q4)'), (23548, 'Archives d Histoire Doctrinale et Litteraire ', 3735478, 0.102, 'Q3', 3, 6, 162, 0, 14, '8', '2011-2013, 2015-2018, 2020', 'Literature and Literary Theory (Q3); Philosophy (Q4)'), (23549, 'Archives of Cardiovascular Diseases Supplemen', 18786480, 0.102, 'Q4', 3, 4, 0, 0, 12, '8', '2009-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (23550, 'Archiv Orientalni', 448699, 0.102, 'Q3', 4, 21, 1126, 3, 62, '31', '1986, 2001, 2009-2020', 'History (Q3); Cultural Studies (Q4)'), (23551, 'Archivos de Neurociencias', 10285938, 0.102, 'Q4', 5, 13, 512, 4, 71, '30', '1999-2020', 'Neurology (Q4); Neurology (clinical) (Q4)'), (23552, 'Ars Judaica', 25164252, 0.102, 'Q3', 1, 0, 0, 2, 15, '3', '2018-2019', 'Visual Arts and Performing Arts (Q3); Architecture (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4)'), (23553, 'Ars Longa', 11307099, 0.102, 'Q3', 2, 0, 0, 5, 57, '12', '2011-2019', 'Visual Arts and Performing Arts (Q3)'), (23554, 'Ars Orientalis', 5711371, 0.102, 'Q3', 9, 0, 0, 0, 12, '2', '2001-2006, 2010-2012, 2014-2017', 'Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4)'), (23555, 'Artibus et Historiae', 3919064, 0.102, 'Q3', 8, 0, 0, 1, 62, '17', '2002-2018', 'Visual Arts and Performing Arts (Q3)'), (23556, 'Art in Translation', 17561310, 0.102, 'Q3', 3, 11, 30, 8, 63, '3', '2014-2020', 'Visual Arts and Performing Arts (Q3)'), (23557, 'Asian Cinema', 1059440, 0.102, 'Q3', 2, 13, 443, 2, 15, '3', '2019-2020', 'Visual Arts and Performing Arts (Q3); Communication (Q4)'), (23558, 'Asia Pacific Issues', 15220966, 0.102, 'Q4', 12, 4, 100, 2, 10, '2', '1994-2007, 2009-2020', 'Geography, Planning and Development (Q4); Political Science and International Relations (Q4)'), (23559, 'Asia-Pacific Journal on Human Rights and the ', 13881906, 0.102, 'Q4', 10, 10, 176, 4, 22, '16', '2000-2019', 'Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23560, 'ATA Journal of Legal Tax Research', 1543866, 0.102, 'Q4', 2, 1, 0, 0, 12, '2', '2011-2016, 2018-2019', 'Accounting (Q4); Finance (Q4); Law (Q4)'), (23561, 'Atemwegs- und Lungenkrankheiten', 3413055, 0.102, 'Q4', 8, 89, 2219, 6, 184, '5', '1978-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (23562, 'Atene e Roma', 46493, 0.102, 'Q3', 2, 0, 0, 0, 14, '7', '1966, 1970, 1974, 2009-2017', 'Classics (Q3); History (Q4)'), (23563, 'Ausa', 2105853, 0.102, 'Q3', 2, 0, 0, 1, 49, '12', '2011-2018', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); History (Q4)'), (23564, 'Australasian historical archaeology : journal', 13229214, 0.102, 'Q3', 7, 0, 0, 0, 10, '11', '1999, 2001-2002, 2019', 'History (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23565, 'Azafea', 2133563, 0.102, 'Q4', 2, 0, 0, 0, 13, '12', '2018', 'Philosophy (Q4)'), (23566, 'Baltic Journal of Art History', 23465581, 0.102, 'Q3', 1, 15, 722, 2, 52, '71', '2017-2019', 'Visual Arts and Performing Arts (Q3); History (Q4)'), (23567, 'Batalleria', 2147831, 0.102, 'Q4', 7, 0, 0, 0, 11, '12', '1987-1990, 1994, 1996-1997, 2004, 2006, 2009, 2011-2017', 'Paleontology (Q4)'), (23568, 'Bealoideas', 332270, 0.102, 'Q4', 1, 0, 0, 0, 11, '42', '2011, 2013, 2016-2017', 'Anthropology (Q4); Cultural Studies (Q4)'), (23569, 'Biblical Archaeology Review', 989444, 0.102, 'Q3', 5, 41, 73, 5, 117, '2', '2011-2020', 'Religious Studies (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23570, 'Biblos', 21837139, 0.102, 'Q4', 0, 11, 304, 0, 12, '26', '2019', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23571, 'Bioarchaeology of the Near East', 18989403, 0.102, 'Q4', 7, 0, 0, 1, 23, '17', '2009-2019', 'Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23572, 'Bogazici Journal', 13009583, 0.102, 'Q4', 4, 4, 265, 6, 30, '18', '1993-1995, 2005-2019', 'Geography, Planning and Development (Q4); Social Sciences (miscellaneous) (Q4)'), (23573, 'Boletim de Estudos Classicos', 21837260, 0.102, 'Q3', 0, 9, 61, 0, 11, '26', '2018-2019', 'Classics (Q3); Education (Q4)'), (23574, 'Bollettino di Archeologia', 11202742, 0.102, 'Q4', 3, 0, 0, 1, 12, '7', '2011-2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23575, 'Bollettino di Storia delle Scienze Matematich', 3924432, 0.102, 'Q4', 7, 0, 0, 1, 14, '7', '2003-2019', 'History and Philosophy of Science (Q4); Mathematics (miscellaneous) (Q4)'), (23576, 'Book History', 10987371, 0.102, 'Q3', 0, 12, 844, 0, 10, '2', '2019', 'History (Q3); Conservation (Q4); Library and Information Sciences (Q4)'), (23577, 'BSAA Arte', 18889751, 0.102, 'Q3', 1, 14, 711, 1, 15, '12', '2019', 'Visual Arts and Performing Arts (Q3); History (Q4)'), (23578, 'Buddhist-Christian Studies', 15279472, 0.102, 'Q3', 1, 27, 206, 3, 81, '2', '2017-2019', 'Religious Studies (Q3); History (Q4)'), (23579, 'Bulk Solids Handling', 1739980, 0.102, 'Q4', 14, 0, 0, 1, 13, '5', '1981-2017', 'Industrial and Manufacturing Engineering (Q4)'), (23580, 'Bulletin of Pharmaceutical Sciences', 11100052, 0.102, 'Q4', 8, 24, 827, 0, 12, '32', '2008-2014, 2018-2020', 'Pharmaceutical Science (Q4); Pharmacology (Q4)'), (23581, 'Bulletin of the Institute of History and Phil', 10124195, 0.102, 'Q3', 1, 0, 0, 0, 10, '22', '1999, 2018-2019', 'History (Q3); Religious Studies (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23582, 'Bulletin suisse de linguistique appliquee', 10232044, 0.102, 'Q4', 5, 0, 0, 0, 11, '24', '2011-2017', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23583, 'Byzantinoslavica', 77712, 0.102, 'Q4', 4, 0, 0, 3, 13, '31', '1972, 2008-2017', 'Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23584, 'Cadernos de Estudos Africanos', 21827400, 0.102, 'Q4', 3, 2, 12, 2, 59, '26', '2014-2019', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23585, 'Camera Obscura', 15291510, 0.102, 'Q3', 16, 20, 774, 10, 63, '2', '2002-2020', 'Visual Arts and Performing Arts (Q3); Gender Studies (Q4)'), (23586, 'Canadian Journal of Native Studies', 7153244, 0.102, 'Q4', 6, 0, 0, 2, 18, '9', '1984, 2001, 2009-2017', 'Anthropology (Q4); Cultural Studies (Q4)'), (23587, 'Cancer Research and Clinic', 10069801, 0.102, 'Q4', 4, 0, 0, 14, 520, '1', '2013-2019', 'Cancer Research (Q4); Oncology (Q4)'), (23588, 'Casopis Matice moravske (1968)', 323052, 0.102, 'Q4', 2, 0, 0, 0, 15, '31', '1983, 2001, 2019', 'History (Q4); Sociology and Political Science (Q4)'), (23589, 'CEA Critic', 78069, 0.102, 'Q3', 4, 34, 329, 4, 96, '2', '2002-2020', 'Literature and Literary Theory (Q3); Education (Q4)'), (23590, 'Cercles', 11390158, 0.102, 'Q4', 0, 7, 512, 0, 14, '12', '2018-2019', 'Cultural Studies (Q4); History (Q4)'), (23591, 'Cesky Casopis Historicky', 8626111, 0.102, 'Q3', 3, 30, 14, 5, 64, '31', '2009, 2012-2020', 'History (Q3)'), (23592, 'Chiba Medical Journal', 3035476, 0.102, 'Q4', 3, 12, 234, 3, 58, '6', '1974-1989, 2008-2011, 2013-2020', 'Medicine (miscellaneous) (Q4)'), (23593, 'Citta e Storia', 18286364, 0.102, 'Q4', 5, 0, 0, 1, 15, '7', '2006-2017', 'History (Q4); Urban Studies (Q4)'), (23594, 'Clothing Cultures', 20500742, 0.102, 'Q3', 1, 0, 0, 1, 14, '3', '2019', 'Visual Arts and Performing Arts (Q3); Cultural Studies (Q4)'), (23595, 'Communication and Management', 2271734, 0.102, 'Q4', 2, 8, 185, 5, 44, '8', '2013-2020', 'Business and International Management (Q4); Marketing (Q4)'), (23596, 'Comparative American Studies', 17412676, 0.102, 'Q4', 5, 0, 0, 0, 13, '3', '2008-2017', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)'), (23597, 'Comparative Law Review', 8669449, 0.102, 'Q4', 1, 12, 38, 1, 39, '17', '2017-2019', 'Law (Q4)'), (23598, 'Contemporary French and Francophone Studies', 17409292, 0.102, 'Q3', 8, 67, 467, 10, 191, '3', '1997-2020', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); History (Q4)'), (23599, 'Convivium', 108235, 0.102, 'Q4', 2, 0, 0, 1, 13, '12', '2009-2014, 2017-2018', 'Philosophy (Q4)'), (23600, 'Critical Studies in Men s Fashion', 20500718, 0.102, 'Q3', 1, 14, 516, 1, 10, '3', '2019', 'Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Gender Studies (Q4)'), (23601, 'Danubius', 12205052, 0.102, 'Q3', 2, 0, 0, 6, 83, '43', '2013-2018', 'History (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23602, 'De Medio Aevo', 22555889, 0.102, 'Q3', 0, 13, 701, 0, 11, '12', '2019', 'Literature and Literary Theory (Q3); Religious Studies (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); History (Q4); Philosophy (Q4)'), (23603, 'DNA Reporter', 4185412, 0.102, 'Q4', 1, 12, 83, 0, 11, '2', '2006-2008, 2017-2019', 'LPN and LVN (Q4)'), (23604, 'Doxa. Cuadernos de Filosofia del Derecho', 2148676, 0.102, 'Q4', 1, 35, 1298, 3, 16, '12', '2019-2020', 'Law (Q4); Philosophy (Q4)'), (23605, 'Dress', 3612112, 0.102, 'Q3', 6, 30, 0, 3, 25, '3', '1975-1995, 2000-2008, 2010-2020', 'Visual Arts and Performing Arts (Q3)'), (23606, 'Dubrovnik Annals', 13313878, 0.102, 'Q4', 2, 9, 510, 2, 12, '58', '2015-2018', 'History (Q4)'), (23607, 'Durkheimian Studies/Etudes durkheimiennes', 17522307, 0.102, 'Q3', 4, 13, 244, 0, 10, '3', '2011-2015, 2017, 2020', 'Religious Studies (Q3); Anthropology (Q4); Philosophy (Q4); Sociology and Political Science (Q4)'), (23608, 'Dynamic Relationships Management Journal', 2350367, 0.102, 'Q4', 1, 1, 23, 3, 18, '60', '2018-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Organizational Behavior and Human Resource Management (Q4); Social Psychology (Q4); Strategy and Management (Q4)'), (23609, 'East African Medical Journal', 12835, 0.102, 'Q4', 40, 0, 0, 5, 211, '72', '1945-2017', 'Medicine (miscellaneous) (Q4)'), (23610, 'East European Jewish Affairs', 1743971, 0.102, 'Q4', 8, 15, 371, 5, 45, '3', '1992-2003, 2005-2020', 'Cultural Studies (Q4); History (Q4); Political Science and International Relations (Q4)'), (23611, 'Ecclesia Orans', 10103872, 0.102, 'Q3', 2, 9, 456, 1, 12, '7', '2012, 2014, 2017', 'Religious Studies (Q3)'), (23612, 'Ecclesiastical Law Journal', 956618, 0.102, 'Q3', 14, 15, 334, 8, 100, '3', '1987-2019', 'Religious Studies (Q3); Law (Q4)'), (23613, 'Education and Culture', 10854908, 0.102, 'Q4', 2, 6, 47, 3, 15, '2', '2018-2020', 'Cultural Studies (Q4); Education (Q4); History (Q4); Philosophy (Q4)'), (23614, 'Eidos', 16928857, 0.102, 'Q4', 3, 14, 422, 12, 82, '47', '2012-2019', 'Philosophy (Q4)'), (23615, 'Ekonomiska Samfundets Tidskrift', 133183, 0.102, 'Q4', 3, 0, 0, 0, 11, '38', '2002-2015, 2017', 'Economics and Econometrics (Q4)'), (23616, 'Encounters in Theory and History of Education', 25608371, 0.102, 'Q4', 1, 12, 516, 5, 19, '9', '2018-2019', 'Education (Q4); History (Q4)'), (23617, 'Eos (Poland)', 127825, 0.102, 'Q3', 0, 0, 0, 0, 12, '17', '2018', 'Classics (Q3)'), (23618, 'Estudios Migratorios Latinoamericanos', 3267458, 0.102, 'Q4', 7, 0, 0, 0, 13, '46', '1986-2005, 2007, 2009, 2011-2016, 2018', 'Demography (Q4); Geography, Planning and Development (Q4)'), (23619, 'Estudos de Literatura Brasileira Contemporane', 23164018, 0.102, 'Q3', 2, 44, 987, 7, 161, '14', '2016-2020', 'Literature and Literary Theory (Q3)'), (23620, 'Etudes Rurales', 142182, 0.102, 'Q4', 11, 11, 419, 8, 62, '8', '1973, 1978-1984, 1989-1990, 1992-1996, 1999-2019', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Economics and Econometrics (Q4); Geography, Planning and Development (Q4); History (Q4)'), (23621, 'Evidence-Based Practice', 10954120, 0.102, 'Q4', 2, 34, 90, 16, 14, '2', '2005-2008, 2013-2020', 'Fundamentals and Skills (Q4)'), (23622, 'Fabrications', 21644756, 0.102, 'Q3', 3, 25, 0, 10, 52, '3', '1989, 1991, 1993-1995, 2015-2020', 'Visual Arts and Performing Arts (Q3); Urban Studies (Q4)'), (23623, 'Fachsprache', 10173285, 0.102, 'Q4', 7, 8, 315, 5, 35, '28', '2011-2013, 2015-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23624, 'Film Comment', 15119, 0.102, 'Q3', 6, 0, 0, 0, 12, '2', '2002-2011, 2019', 'Visual Arts and Performing Arts (Q3)'), (23625, 'Folk Music Journal', 5319684, 0.102, 'Q3', 5, 14, 269, 1, 13, '3', '2002-2008, 2011-2020', 'Visual Arts and Performing Arts (Q3); Music (Q4)'), (23626, 'Forma y Funcion', 120338, 0.102, 'Q4', 1, 15, 654, 0, 15, '47', '2019-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23627, 'Forum Modernes Theater', 9305874, 0.102, 'Q3', 2, 18, 750, 0, 11, '5', '2002-2010, 2012-2014', 'Visual Arts and Performing Arts (Q3)'), (23628, 'FORUM (Netherlands)', 15987647, 0.102, 'Q3', 1, 11, 394, 2, 13, '16', '2019-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23629, 'Forum of Clinical Oncology', 1792345, 0.102, 'Q4', 5, 5, 194, 0, 13, '39', '2012-2019', 'Oncology (Q4)'), (23630, 'Frontiers of History in China', 16733525, 0.102, 'Q4', 6, 4, 322, 4, 56, '16', '2006-2020', 'History (Q4)'), (23631, 'Gaceta Medica de Bilbao', 3044858, 0.102, 'Q4', 3, 74, 474, 3, 88, '12', '1973-1977, 2010-2020', 'Medicine (miscellaneous) (Q4)'), (23632, 'Gastroenterology Insights', 20367422, 0.102, 'Q4', 4, 9, 313, 2, 25, '7', '2010-2013, 2015-2020', 'Gastroenterology (Q4); Hepatology (Q4)'), (23633, 'Genocide Studies International', 22911855, 0.102, 'Q4', 0, 0, 0, 0, 10, '9', '2019', 'Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23634, 'Geo-Regards', 16628527, 0.102, 'Q4', 2, 0, 0, 0, 13, '19', '2010-2017', 'Geography, Planning and Development (Q4)'), (23635, 'Geotermia', 1865897, 0.102, 'Q4', 7, 0, 0, 0, 12, '30', '1996-2000, 2004-2018', 'Economic Geology (Q4); Water Science and Technology (Q4)'), (23636, 'Greek Review of Social Research', 139696, 0.102, 'Q4', 1, 19, 715, 1, 18, '39', '2018-2020', 'Social Sciences (miscellaneous) (Q4)'), (23637, 'Gynakologische Praxis', 3418677, 0.102, 'Q4', 4, 77, 1958, 5, 314, '5', '1977-1980, 2002-2019', 'Obstetrics and Gynecology (Q4)'), (23638, 'Health and Social Care Chaplaincy', 20515553, 0.102, 'Q3', 3, 17, 299, 4, 40, '3', '2017-2020', 'Religious Studies (Q3); Health (social science) (Q4); Social Psychology (Q4)'), (23639, 'Heart and Metabolism', 15660338, 0.102, 'Q4', 9, 19, 347, 5, 72, '8', '2006-2020', 'Cardiology and Cardiovascular Medicine (Q4); Endocrinology, Diabetes and Metabolism (Q4)'), (23640, 'Hecheng Shuzhi Ji Suliao/China Synthetic Resi', 10021396, 0.102, 'Q4', 6, 135, 1812, 20, 416, '1', '1994-1998, 2001-2020', 'Polymers and Plastics (Q4); Process Chemistry and Technology (Q4)'), (23641, 'Historein', 22412816, 0.102, 'Q3', 4, 6, 394, 3, 31, '39', '2011-2012, 2014-2015, 2017-2020', 'History (Q3)'), (23642, 'Historia, Instituciones, Documentos', 2107716, 0.102, 'Q4', 0, 15, 812, 0, 12, '12', '2019', 'Cultural Studies (Q4); History (Q4); Law (Q4); Sociology and Political Science (Q4)'), (23643, 'Historian', 15406563, 0.102, 'Q4', 12, 11, 0, 5, 35, '3', '1938-2020', 'History (Q4)'), (23644, 'History of Retailing and Consumption', 2373518, 0.102, 'Q4', 1, 10, 616, 1, 16, '3', '2019-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); History (Q4)'), (23645, 'History Today', 182753, 0.102, 'Q4', 7, 0, 0, 2, 103, '3', '1969, 1971-1973, 1976-1986, 1988-1990, 1999-2017', 'History (Q4)'), (23646, 'Innes Review', 17455219, 0.102, 'Q3', 1, 7, 0, 0, 13, '3', '2018-2020', 'Religious Studies (Q3); Cultural Studies (Q4); History (Q4)'), (23647, 'Integrative Medicine Alert', 23252812, 0.102, 'Q4', 2, 22, 192, 6, 87, '2', '2015-2020', 'Complementary and Alternative Medicine (Q4)'), (23648, 'InterEULawEast', 18493734, 0.102, 'Q4', 1, 8, 190, 1, 12, '58', '2019-2020', 'Law (Q4)'), (23649, 'International Journal of Designed Objects', 23251395, 0.102, 'Q3', 3, 5, 212, 3, 18, '2', '2012-2020', 'Visual Arts and Performing Arts (Q3); Architecture (Q4)'), (23650, 'International Journal of Infertility and Feta', 22293817, 0.102, 'Q4', 6, 14, 265, 1, 49, '4', '2010-2019', 'Reproductive Medicine (Q4)'), (23651, 'Interni Medicina pro Praxi', 12127299, 0.102, 'Q4', 4, 0, 0, 3, 152, '31', '2011-2019', 'Internal Medicine (Q4)'), (23652, 'Interventional Cardiology', 17555302, 0.102, 'Q4', 10, 0, 0, 1, 10, '3', '2010-2017', 'Cardiology and Cardiovascular Medicine (Q4)'), (23653, 'IPPTA: Quarterly Journal of Indian Pulp and P', 3795462, 0.102, 'Q4', 11, 0, 0, 27, 824, '4', '1998-2019', 'Chemical Engineering (miscellaneous) (Q4); Chemistry (miscellaneous) (Q4); Materials Chemistry (Q4); Media Technology (Q4)'), (23654, 'Iranian Journal of Breast Diseases', 26457482, 0.102, 'Q4', 0, 7, 186, 0, 12, '15', '2019-2020', 'Internal Medicine (Q4); Oncology (Q4); Surgery (Q4)'), (23655, 'J19', 2166742, 0.102, 'Q3', 1, 20, 27, 2, 14, '2', '2019-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4)'), (23656, 'Japanese Journal of Anesthesiology', 214892, 0.102, 'Q4', 17, 0, 0, 1, 274, '6', '1965-2016, 2018', 'Anesthesiology and Pain Medicine (Q4); Medicine (miscellaneous) (Q4)'), (23657, 'Japanese Journal of Gastroenterological Surge', 3869768, 0.102, 'Q4', 9, 107, 860, 8, 320, '6', '1970, 1973-2020', 'Gastroenterology (Q4); Surgery (Q4)'), (23658, 'Japanese Journal of Head and Neck Cancer', 18818382, 0.102, 'Q4', 3, 44, 469, 2, 137, '6', '2004-2020', 'Oncology (Q4); Otorhinolaryngology (Q4)'), (23659, 'Japanese Journal of Human Geography', 187216, 0.102, 'Q4', 5, 10, 262, 1, 46, '6', '1950-2019', 'Geography, Planning and Development (Q4)'), (23660, 'Japanese Journal of Physical Fitness and Spor', 39906, 0.102, 'Q4', 11, 37, 1005, 5, 107, '6', '1956, 1958-2020', 'Orthopedics and Sports Medicine (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4); Sports Science (Q4)'), (23661, 'Journal for the Liberal Arts and Sciences', 21673756, 0.102, 'Q4', 3, 0, 0, 1, 10, '2', '2009-2017', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23662, 'Journal, Indian Academy of Clinical Medicine', 9723560, 0.102, 'Q4', 14, 40, 574, 5, 167, '4', '2005-2020', 'Medicine (miscellaneous) (Q4)'), (23663, 'Journal of Acute Medicine', 22115587, 0.102, 'Q4', 12, 7, 127, 2, 79, '16', '2011-2019', 'Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4)'), (23664, 'Journal of Architecture and Planning', 16068238, 0.102, 'Q4', 3, 0, 0, 1, 15, '1', '2011-2019', 'Architecture (Q4); Urban Studies (Q4)'), (23665, 'Journal of Business and Entrepreneurship', 10426337, 0.102, 'Q4', 2, 0, 0, 3, 10, '2', '2016-2018', 'Business and International Management (Q4); Management of Technology and Innovation (Q4)'), (23666, 'Journal of Chinese Literature and Culture', 23290056, 0.102, 'Q3', 1, 17, 781, 1, 15, '2', '2019', 'Literature and Literary Theory (Q3); Anthropology (Q4)'), (23667, 'Journal of Chinese Religions', 20508999, 0.102, 'Q3', 2, 0, 0, 3, 12, '3', '1983, 2015-2018', 'Religious Studies (Q3)'), (23668, 'Journal of Internal Medicine of Taiwan', 10167390, 0.102, 'Q4', 8, 49, 1235, 6, 129, '22', '2001-2019', 'Internal Medicine (Q4)'), (23669, 'Journal of Interventional Radiology', 2680882, 0.102, 'Q4', 7, 0, 0, 28, 722, '2', '1986-1999, 2006-2019', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (23670, 'Journal of Investment Strategies', 20471238, 0.102, 'Q4', 2, 6, 146, 3, 22, '3', '2018-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Strategy and Management (Q4)'), (23671, 'Journal of Japan Institute of Electronics Pac', 13439677, 0.102, 'Q4', 11, 100, 903, 8, 275, '6', '1998-2020', 'Electrical and Electronic Engineering (Q4)'), (23672, 'Journal of Language, Literature and Culture', 20512864, 0.102, 'Q3', 2, 14, 0, 2, 43, '3', '2013-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23673, 'Journal of Language Relationship', 20736320, 0.102, 'Q4', 2, 0, 0, 5, 40, '10', '2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23674, 'Journal of Late Antiquity', 19396716, 0.102, 'Q3', 2, 20, 1122, 7, 16, '2', '2019-2020', 'Classics (Q3); History (Q4)'), (23675, 'Journal of New Zealand Studies', 1176306, 0.102, 'Q4', 0, 18, 54, 0, 13, '41', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23676, 'Journal of Orthomolecular Medicine', 8344825, 0.102, 'Q4', 14, 0, 0, 1, 15, '9', '1988-2015, 2017', 'Complementary and Alternative Medicine (Q4)'), (23677, 'Journal of Plastination', 23117761, 0.102, 'Q4', 1, 10, 156, 0, 10, '2', '2019-2020', 'Anatomy (Q4); Medical Laboratory Technology (Q4); Pathology and Forensic Medicine (Q4)'), (23678, 'Journal of Presbyterian History', 15219216, 0.102, 'Q3', 1, 3, 190, 0, 11, '2', '1973, 1980-1982, 2009-2018', 'Religious Studies (Q3); History (Q4)'), (23679, 'Journal of Shi a Islamic Studies', 17489423, 0.102, 'Q3', 5, 0, 0, 1, 14, '3', '2011-2017', 'Religious Studies (Q3); Cultural Studies (Q4); History (Q4); Law (Q4); Philosophy (Q4); Political Science and International Relations (Q4)'), (23680, 'Journal of Song-Yuan Studies', 21546665, 0.102, 'Q3', 4, 12, 498, 0, 14, '2', '2010-2012, 2014-2015, 2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)'), (23681, 'Journal of Sufi Studies', 22105956, 0.102, 'Q3', 4, 7, 571, 2, 15, '16', '2012-2018, 2020', 'Religious Studies (Q3); Cultural Studies (Q4); History (Q4); Philosophy (Q4)'), (23682, 'Journal of Technology and Chinese Language Te', 1949260, 0.102, 'Q4', 0, 11, 369, 0, 10, '2', '2019-2020', 'Computer Science Applications (Q4); Education (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23683, 'Journal of the American Musical Instrument So', 3623300, 0.102, 'Q4', 2, 0, 0, 1, 13, '2', '2009-2015, 2018', 'Music (Q4)'), (23684, 'Journal of the Civil War Era', 21544727, 0.102, 'Q3', 0, 0, 0, 0, 10, '2', '2019', 'History (Q3)'), (23685, 'Journal of the National Academy of Forensic E', 23793244, 0.102, 'Q4', 1, 0, 0, 0, 12, '2', '2016-2017', 'Automotive Engineering (Q4); Building and Construction (Q4); Civil and Structural Engineering (Q4); Law (Q4); Pathology and Forensic Medicine (Q4); Safety, Risk, Reliability and Quality (Q4)'), (23686, 'Journal of the Ottoman and Turkish Studies As', 23760702, 0.102, 'Q3', 1, 29, 415, 0, 14, '2', '2019', 'Religious Studies (Q3); Anthropology (Q4); Cultural Studies (Q4); History (Q4); Law (Q4)'), (23687, 'Journal of Tokyo Medical University', 408905, 0.102, 'Q4', 4, 34, 522, 1, 88, '6', '1965-1971, 1973-2019', 'Medicine (miscellaneous) (Q4)'), (23688, 'Journal of Transnational American Studies', 19400764, 0.102, 'Q4', 9, 13, 380, 3, 103, '2', '2009-2013, 2015-2019', 'Arts and Humanities (miscellaneous) (Q4); Communication (Q4); Cultural Studies (Q4)'), (23689, 'Journal of Vietnamese Studies', 1559372, 0.102, 'Q4', 1, 5, 313, 3, 18, '2', '2019-2020', 'Anthropology (Q4); Cultural Studies (Q4); History (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4)'), (23690, 'Journal of Water Law', 9599754, 0.102, 'Q4', 12, 5, 76, 0, 15, '3', '2000-2016, 2019', 'Law (Q4); Water Science and Technology (Q4)'), (23691, 'Journal of World Popular Music', 20524919, 0.102, 'Q3', 3, 4, 35, 9, 41, '3', '2014-2019', 'Music (Q3)'), (23692, 'Jusletter IT', 1664848, 0.102, 'Q4', 3, 0, 0, 10, 358, '19', '2017-2019', 'Computer Science (miscellaneous) (Q4); Law (Q4)'), (23693, 'Kaku igaku. The Japanese journal of nuclear m', 227854, 0.102, 'Q4', 9, 6, 21, 0, 10, '6', '1972-2017, 2019-2020', 'Medicine (miscellaneous) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (23694, 'Kasmera', 755222, 0.102, 'Q4', 6, 0, 0, 0, 12, '94', '2008-2017', 'Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (23695, 'Kemanusiaan', 13949330, 0.102, 'Q3', 4, 16, 754, 11, 55, '23', '2008-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Philosophy (Q4)'), (23696, 'Keramische Zeitschrift', 230561, 0.102, 'Q3', 8, 31, 18, 4, 70, '5', '1968-2020', 'Visual Arts and Performing Arts (Q3); Ceramics and Composites (Q4); Marketing (Q4)'), (23697, 'Kriterion', 19815336, 0.102, 'Q4', 4, 23, 740, 4, 116, '14', '2007-2020', 'Philosophy (Q4)'), (23698, 'Labour, Capital and Society', 7061706, 0.102, 'Q4', 11, 0, 0, 0, 11, '9', '1980, 1982-1986, 1989-2013, 2015, 2019', 'Development (Q4); Geography, Planning and Development (Q4)'), (23699, 'Leuvense Bijdragen', 17831598, 0.102, 'Q4', 4, 0, 0, 3, 11, '24', '1968, 2011-2012, 2016-2017', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23700, 'Linguistique Balkanique', 3241653, 0.102, 'Q4', 1, 27, 663, 1, 14, '61', '2019-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23701, 'Literary Journalism Studies', 1944897, 0.102, 'Q4', 0, 10, 333, 0, 12, '2', '2019', 'Communication (Q4)'), (23702, 'Literature and Theology', 2691205, 0.102, 'Q3', 9, 23, 1152, 6, 84, '3', '1987-2019', 'Literature and Literary Theory (Q3); Religious Studies (Q3)'), (23703, 'Llull', 2108615, 0.102, 'Q3', 3, 10, 526, 4, 32, '12', '1978, 1986, 1999-2002, 2017-2019', 'History (Q3); History and Philosophy of Science (Q4)'), (23704, 'Makslas Vesture un Teorija', 16910869, 0.102, 'Q3', 0, 7, 191, 0, 11, '77', '2018-2019', 'Visual Arts and Performing Arts (Q3); History (Q4)'), (23705, 'Malta Medical Journal', 18133339, 0.102, 'Q4', 7, 41, 874, 2, 48, '101', '2008-2020', 'Medicine (miscellaneous) (Q4)'), (23706, 'Medicinski Casopis', 3501221, 0.102, 'Q4', 4, 9, 173, 3, 59, '55', '2010-2019', 'Medicine (miscellaneous) (Q4)'), (23707, 'Medieval Sermon Studies', 17496276, 0.102, 'Q3', 3, 6, 0, 2, 15, '3', '2013-2020', 'Literature and Literary Theory (Q3); Religious Studies (Q3)'), (23708, 'Metropolitan Museum of Art Bulletin', 261521, 0.102, 'Q3', 4, 20, 229, 0, 15, '2', '2002-2019', 'Museology (Q3); Visual Arts and Performing Arts (Q3)'), (23709, 'Microbiology Today', 14640570, 0.102, 'Q4', 6, 0, 0, 4, 96, '3', '2007-2019', 'Microbiology (Q4)'), (23710, 'Militargeschichtliche Zeitschrift', 263826, 0.102, 'Q4', 3, 8, 53, 1, 15, '5', '2001, 2009-2017', 'History (Q4)'), (23711, 'Millennium Film Journal', 10645586, 0.102, 'Q3', 3, 0, 0, 0, 12, '2', '2009-2014, 2016, 2018', 'Visual Arts and Performing Arts (Q3)'), (23712, 'Mining History', 13662511, 0.102, 'Q4', 7, 0, 0, 0, 11, '3', '1996-2011, 2014, 2018-2019', 'Economic Geology (Q4); Geotechnical Engineering and Engineering Geology (Q4); History (Q4)'), (23713, 'Miscelanea de Estudios Arabes y Hebraicos, Se', 23402547, 0.102, 'Q3', 1, 0, 0, 1, 23, '12', '2015-2018', 'Literature and Literary Theory (Q3); Religious Studies (Q3); Cultural Studies (Q4); History (Q4)'), (23714, 'Mississippi Quarterly', 26637, 0.102, 'Q3', 7, 5, 231, 1, 13, '2', '1964, 1982, 2002-2017', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23715, 'Modern Chinese Literature and Culture', 15209857, 0.102, 'Q3', 5, 0, 0, 3, 13, '2', '2009-2017', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23716, 'Multicultural Shakespeare', 23007605, 0.102, 'Q3', 2, 8, 141, 4, 45, '5', '2011-2013, 2015-2020', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23717, 'Museum Worlds', 20496737, 0.102, 'Q3', 1, 15, 526, 3, 15, '2', '2019', 'Museology (Q3); Conservation (Q4)'), (23718, 'Music, Sound and the Moving Image', 17530776, 0.102, 'Q3', 0, 0, 0, 0, 10, '3', '2019', 'Music (Q3); Visual Arts and Performing Arts (Q3); Communication (Q4); Computer Graphics and Computer-Aided Design (Q4)'), (23719, 'Muslim World Journal of Human Rights', 15544419, 0.102, 'Q4', 12, 5, 292, 2, 14, '5', '2006-2007, 2009-2020', 'Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23720, 'Natur und Recht', 14390515, 0.102, 'Q4', 7, 73, 0, 14, 209, '5', '1980, 1997-1998, 2004-2020', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (23721, 'Negentiende Eeuw', 13818546, 0.102, 'Q3', 3, 0, 0, 0, 12, '16', '2002-2017', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); History (Q4)'), (23722, 'Neurologia-Neurocirugia Psiquiatria', 283851, 0.102, 'Q4', 2, 5, 149, 1, 33, '30', '1969-1979, 2008-2011, 2017-2019', 'Clinical Psychology (Q4); Neurology (Q4); Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4)'), (23723, 'Northeast African Studies', 15356574, 0.102, 'Q4', 8, 10, 629, 2, 21, '2', '1985, 1999-2002, 2004, 2011-2018', 'Cultural Studies (Q4); History (Q4)'), (23724, 'Northern Mariner', 1183112, 0.102, 'Q4', 2, 0, 0, 0, 12, '9', '1999, 2001, 2013-2017', 'History (Q4); Transportation (Q4)'), (23725, 'Nueva Revista del Pacifico', 7166346, 0.102, 'Q3', 1, 33, 1223, 1, 10, '45', '2019-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23726, 'Nuova Rivista di Letteratura Italiana', 15907929, 0.102, 'Q3', 1, 5, 501, 0, 11, '7', '2019-2020', 'Literature and Literary Theory (Q3)'), (23727, 'Nursing Care and Research', 22413960, 0.102, 'Q4', 1, 7, 200, 1, 27, '39', '2013-2019', 'Nursing (miscellaneous) (Q4)'), (23728, 'Nurture', 19941633, 0.102, 'Q4', 2, 6, 106, 0, 15, '34', '2012-2017, 2019', 'Economics and Econometrics (Q4); Education (Q4); Health (social science) (Q4); Nutrition and Dietetics (Q4)'), (23729, 'Obstetrica si Ginecologie', 12205532, 0.102, 'Q4', 1, 0, 0, 0, 11, '43', '1973-1987, 2010-2017', 'Obstetrics and Gynecology (Q4)'), (23730, 'Oceanus', 298182, 0.102, 'Q4', 4, 0, 0, 0, 13, '2', '1974-1976, 1978-1994, 2005-2014, 2016-2019', 'Oceanography (Q4)'), (23731, 'OECD observer. Organisation for Economic Co-o', 297054, 0.102, 'Q4', 12, 0, 0, 2, 59, '8', '1970, 1973-2019', 'Geography, Planning and Development (Q4)'), (23732, 'Oncologie', 12923818, 0.102, 'Q4', 10, 19, 573, 5, 65, '8', '1999-2018, 2020', 'Oncology (Q4)'), (23733, 'Open Access Journal of Medicinal and Aromatic', 9747877, 0.102, 'Q4', 7, 0, 0, 0, 10, '4', '2010-2019', 'Complementary and Alternative Medicine (Q4); Drug Discovery (Q4)'), (23734, 'Oralprophylaxe und Kinderzahnheilkunde', 21908036, 0.102, 'Q4', 2, 43, 589, 1, 36, '5', '2011-2018', 'Dentistry (miscellaneous) (Q4)'), (23735, 'Oral Therapeutics and Pharmacology', 2881012, 0.102, 'Q4', 5, 3, 82, 1, 27, '6', '1982-2018', 'Dentistry (miscellaneous) (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4)'), (23736, 'Ordines Militares', 23917512, 0.102, 'Q4', 1, 0, 0, 1, 11, '17', '2019', 'History (Q4)'), (23737, 'Oslo Law Review', 23873299, 0.102, 'Q4', 1, 9, 596, 1, 14, '33', '2019', 'Law (Q4)'), (23738, 'Osteopathic Family Physician', 1877573, 0.102, 'Q4', 7, 7, 103, 4, 81, '2', '2009-2019', 'Family Practice (Q4)'), (23739, 'Osterreichische Musikzeitschrift', 23072970, 0.102, 'Q3', 3, 0, 0, 0, 12, '5', '1946-1955, 1957-1966, 1968-2014, 2018', 'Music (Q3)'), (23740, 'Pasavento', 22554505, 0.102, 'Q3', 1, 27, 799, 1, 10, '12', '2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4)'), (23741, 'Petroleum Refinery Engineering', 1002106, 0.102, 'Q4', 8, 171, 1207, 16, 402, '1', '1994-2008, 2012-2020', 'Energy Engineering and Power Technology (Q4); Fuel Technology (Q4); Process Chemistry and Technology (Q4)'), (23742, 'Pharmaceutical Engineering', 2738139, 0.102, 'Q4', 16, 0, 0, 5, 54, '2', '1996-2018', 'Pharmaceutical Science (Q4)'), (23743, 'Pharmaceutical Technology Europe', 1646826, 0.102, 'Q4', 17, 18, 122, 10, 256, '2', '1998-2019', 'Pharmaceutical Science (Q4)'), (23744, 'PharmacoVigilance Review', 17526752, 0.102, 'Q4', 2, 0, 0, 1, 15, '3', '2010-2019', 'Health Policy (Q4); Pharmacology, Toxicology and Pharmaceutics (miscellaneous) (Q4)'), (23745, 'Pharmazeutische Industrie', 16167074, 0.102, 'Q4', 18, 0, 0, 16, 539, '5', '1960-1961, 1973-2019', 'Pharmaceutical Science (Q4)'), (23746, 'Philosophical Inquiries', 22818618, 0.102, 'Q4', 1, 24, 724, 1, 22, '7', '2019-2020', 'Philosophy (Q4)'), (23747, 'Philosophie', 2941805, 0.102, 'Q4', 2, 30, 676, 6, 49, '8', '2011-2020', 'Philosophy (Q4)'), (23748, 'Planning', 12610, 0.102, 'Q4', 11, 133, 7, 5, 182, '2', '1979-1982, 1984, 1998-2020', 'Geography, Planning and Development (Q4)'), (23749, 'Planning Advisory Service Memo', 21691908, 0.102, 'Q4', 4, 0, 0, 0, 11, '2', '1989-1990, 1992-2018', 'Geography, Planning and Development (Q4)'), (23750, 'Podravina', 13335286, 0.102, 'Q4', 6, 13, 489, 3, 75, '58', '2003-2019', 'Geography, Planning and Development (Q4)'), (23751, 'Pratiques en Nutrition', 17667305, 0.102, 'Q4', 3, 46, 611, 3, 102, '8', '2005-2020', 'Nutrition and Dietetics (Q4)'), (23752, 'Problemy sotsial noi gigieny i istoriia medit', 869866, 0.102, 'Q4', 4, 234, 0, 23, 350, '10', '1994-2020', 'Medicine (miscellaneous) (Q4)'), (23753, 'Public Transport International', 1016796, 0.102, 'Q4', 7, 0, 0, 0, 11, '24', '1990, 1994-2012, 2018', 'Automotive Engineering (Q4); Transportation (Q4); Urban Studies (Q4)'), (23754, 'Queeste', 9298592, 0.102, 'Q3', 5, 0, 0, 1, 15, '16', '2002-2019', 'Literature and Literary Theory (Q3)'), (23755, 'Reception: Texts, Readers, Audiences, History', 21680604, 0.102, 'Q3', 1, 5, 135, 1, 10, '2', '2017-2020', 'History (Q3); Literature and Literary Theory (Q3); Communication (Q4); Cultural Studies (Q4)'), (23756, 'Res Militaris', 22656294, 0.102, 'Q4', 0, 13, 270, 0, 10, '8', '2019-2020', 'Political Science and International Relations (Q4); Safety Research (Q4); Social Sciences (miscellaneous) (Q4); Sociology and Political Science (Q4)'), (23757, 'RevCEDOUA', 8741093, 0.102, 'Q4', 1, 0, 0, 1, 15, '26', '2017-2018', 'Geography, Planning and Development (Q4); Law (Q4); Management, Monitoring, Policy and Law (Q4); Urban Studies (Q4)'), (23758, 'Review of Marketing Science', 15465616, 0.102, 'Q4', 11, 10, 680, 0, 10, '5', '2004-2017, 2019-2020', 'Marketing (Q4)'), (23759, 'Revista Brasileira de Neurologia e Psiquiatri', 14140365, 0.102, 'Q4', 2, 8, 128, 2, 63, '14', '1999-2000, 2008-2010, 2013-2019', 'Neurology (Q4); Neurology (clinical) (Q4); Neuropsychology and Physiological Psychology (Q4); Psychiatry and Mental Health (Q4)'), (23760, 'Revista de Filosofia (Venzuela)', 7981171, 0.102, 'Q4', 4, 1, 0, 2, 76, '94', '2008-2018', 'Philosophy (Q4)'), (23761, 'Revista de Historia Moderna', 2125862, 0.102, 'Q3', 0, 11, 500, 0, 11, '12', '2019', 'Religious Studies (Q3)'), (23762, 'Revista de Humanidades de Valparaiso', 7194242, 0.102, 'Q4', 2, 17, 483, 5, 39, '2', '2019', 'Philosophy (Q4)'), (23763, 'Revista Hispanica Moderna', 19446446, 0.102, 'Q3', 1, 10, 455, 1, 11, '2', '2019-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4)'), (23764, 'Revista Iberoamericana de Fertilidad y Reprod', 11320249, 0.102, 'Q4', 6, 0, 0, 1, 10, '12', '2002-2017', 'Obstetrics and Gynecology (Q4); Reproductive Medicine (Q4)'), (23765, 'Revista Mexicana de Anestesiologia', 1851012, 0.102, 'Q4', 7, 48, 1038, 17, 140, '30', '1984-2020', 'Anesthesiology and Pain Medicine (Q4)'), (23766, 'Revue des Maladies Respiratoires Actualites', 1877122, 0.102, 'Q4', 4, 109, 3093, 8, 252, '8', '2009-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (23767, 'Revue des Musees de France', 19624271, 0.102, 'Q3', 2, 18, 153, 2, 92, '8', '2009-2016, 2018-2019', 'Museology (Q3); Visual Arts and Performing Arts (Q3); Conservation (Q4)'), (23768, 'Revue d Oncologie Hematologie Pediatrique', 22134670, 0.102, 'Q4', 4, 0, 0, 3, 19, '8', '2013-2017', 'Hematology (Q4); Oncology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (23769, 'Rigakuryoho Kagaku', 13411667, 0.102, 'Q4', 6, 128, 1364, 14, 491, '6', '1995-2015, 2017-2020', 'Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (23770, 'RIG Kulturhistorisk Tidskrift', 355267, 0.102, 'Q4', 2, 0, 0, 0, 13, '20', '2011-2012, 2014-2018', 'Anthropology (Q4); Cultural Studies (Q4)'), (23771, 'Rivista di Filosofia Neo-Scolastica', 356247, 0.102, 'Q4', 5, 0, 0, 7, 133, '7', '2002-2019', 'Philosophy (Q4)'), (23772, 'Romanian Journal of Applied Psychology', 2392845, 0.102, 'Q4', 1, 4, 171, 2, 12, '7', '2019', 'Applied Psychology (Q4)'), (23773, 'Rostaniha', 24236608, 0.102, 'Q4', 1, 23, 950, 1, 18, '15', '2019', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Plant Science (Q4)'), (23774, 'Scientific Mining Journal', 25647024, 0.102, 'Q4', 7, 1, 18, 4, 31, '18', '2017-2018', 'Geotechnical Engineering and Engineering Geology (Q4); Industrial and Manufacturing Engineering (Q4)'), (23775, 'Scope', 11775653, 0.102, 'Q3', 2, 18, 126, 3, 65, '41', '1945-1946, 2009, 2011-2019', 'Visual Arts and Performing Arts (Q3)'), (23776, 'Scottish Archaeological Journal', 17552028, 0.102, 'Q4', 1, 11, 387, 2, 14, '3', '2018-2020', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4)'), (23777, 'Seikagaku. The Journal of Japanese Biochemica', 371017, 0.102, 'Q4', 7, 7, 200, 8, 204, '6', '1962, 1964-2018', 'Biochemistry (Q4); Medicine (miscellaneous) (Q4)'), (23778, 'Sewanee Review', 373052, 0.102, 'Q3', 3, 36, 0, 3, 100, '2', '2006-2020', 'Literature and Literary Theory (Q3)'), (23779, 'Siglo XXI, Literatura y Cultura Espanolas', 21727457, 0.102, 'Q3', 1, 1, 35, 0, 12, '12', '2018-2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23780, 'Singapore Academy of Law Journal', 2182009, 0.102, 'Q4', 0, 12, 1654, 0, 12, '37', '2019', 'Law (Q4)'), (23781, 'Sociedade e Cultura', 19808194, 0.102, 'Q4', 4, 26, 1255, 9, 74, '14', '2010-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23782, 'South Central Review', 7436831, 0.102, 'Q3', 4, 19, 581, 3, 70, '2', '2011-2020', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Philosophy (Q4)'), (23783, 'Southeast Asian Journal of Economics', 22868984, 0.102, 'Q4', 0, 12, 358, 0, 11, '40', '2019-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Development (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4)'), (23784, 'Southwestern Historical Quarterly', 38478, 0.102, 'Q4', 6, 15, 1054, 2, 39, '2', '1966, 1974, 1977-1978, 1980, 1986, 1993, 2001, 2003-2020', 'History (Q4)'), (23785, 'Spermova', 22239375, 0.102, 'Q4', 1, 8, 336, 0, 12, '68', '2019', 'Animal Science and Zoology (Q4); Developmental Biology (Q4); Veterinary (miscellaneous) (Q4)'), (23786, 'Spirituality Studies', 13399578, 0.102, 'Q3', 0, 15, 302, 0, 10, '53', '2019-2020', 'Religious Studies (Q3); Philosophy (Q4)'), (23787, 'Spool', 22150900, 0.102, 'Q4', 1, 20, 402, 1, 15, '16', '2019', 'Architecture (Q4); Geography, Planning and Development (Q4); Renewable Energy, Sustainability and the Environment (Q4); Urban Studies (Q4)'), (23788, 'Stem-, Spraak- en Taalpathologie', 9247025, 0.102, 'Q4', 2, 3, 61, 1, 11, '16', '2011-2019', 'Developmental and Educational Psychology (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Otorhinolaryngology (Q4); Speech and Hearing (Q4)'), (23789, 'Strategic Comments', 13567888, 0.102, 'Q4', 4, 40, 0, 2, 59, '3', '2001-2005, 2007-2020', 'Political Science and International Relations (Q4)'), (23790, 'Studia Leibnitiana', 393185, 0.102, 'Q4', 5, 0, 0, 0, 12, '5', '1973-1974, 1976, 1987, 2003-2006, 2008-2017', 'History and Philosophy of Science (Q4); Philosophy (Q4)'), (23791, 'Studia Rudolphina', 12135372, 0.102, 'Q3', 0, 0, 0, 0, 10, '31', '2019', 'History (Q3); Visual Arts and Performing Arts (Q3)'), (23792, 'Studi e Saggi Linguistici', 856827, 0.102, 'Q4', 2, 0, 0, 5, 30, '7', '2016-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23793, 'Studi Medievali', 3918467, 0.102, 'Q4', 5, 9, 401, 3, 48, '7', '2002-2019', 'Cultural Studies (Q4); History (Q4)'), (23794, 'Surgical Chronicles', 11085002, 0.102, 'Q4', 3, 66, 1263, 4, 161, '39', '2005-2020', 'Surgery (Q4)'), (23795, 'Surgical Products', 10624732, 0.102, 'Q4', 0, 0, 0, 0, 11, '2', '2006, 2008-2009, 2016-2018', 'Medical and Surgical Nursing (Q4); Surgery (Q4)'), (23796, 'Synergies France', 17663059, 0.102, 'Q4', 1, 0, 0, 0, 14, '8', '2016-2017', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23797, 'Synergies Italie', 17240700, 0.102, 'Q4', 3, 0, 0, 0, 10, '8', '2013-2017', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23798, 'Tabularia', 16307364, 0.102, 'Q4', 2, 4, 232, 0, 12, '8', '2009-2011, 2013-2020', 'History (Q4)'), (23799, 'Tagliche Praxis', 494464, 0.102, 'Q4', 3, 209, 5534, 1, 169, '5', '1973-1980, 2000-2018', 'Medicine (miscellaneous) (Q4)'), (23800, 'Taida Journal of Art History', 10232095, 0.102, 'Q3', 0, 4, 195, 0, 14, '22', '2018-2020', 'Visual Arts and Performing Arts (Q3); Arts and Humanities (miscellaneous) (Q4); History (Q4)'), (23801, 'T ang Studies', 17597633, 0.102, 'Q4', 5, 4, 0, 1, 13, '3', '1982, 1984-1990, 1992, 1994-1997, 2000, 2002, 2005, 2007-2020', 'Cultural Studies (Q4); History (Q4)'), (23802, 'Temps Zero', 19135963, 0.102, 'Q3', 1, 0, 0, 1, 12, '9', '2013-2015, 2017-2018', 'Literature and Literary Theory (Q3)'), (23803, 'Textile Outlook International', 2684764, 0.102, 'Q4', 7, 6, 20, 0, 15, '3', '1989-2017, 2020', 'Business, Management and Accounting (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (23804, 'Tijdschrift Voor Nederlandse Taal-en Letterku', 407550, 0.102, 'Q3', 7, 4, 134, 3, 39, '16', '2002-2017, 2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23805, 'Topoi Orient Occident', 11619473, 0.102, 'Q4', 3, 0, 0, 1, 11, '8', '2014-2015, 2017', 'Arts and Humanities (miscellaneous) (Q4)'), (23806, 'Transactions of the Ancient Monuments Society', 951001, 0.102, 'Q3', 3, 9, 454, 1, 11, '3', '2002-2016, 2018-2019', 'Religious Studies (Q3); Architecture (Q4); Conservation (Q4)'), (23807, 'Trans/Form/Acao', 1980539, 0.102, 'Q4', 4, 12, 235, 6, 151, '14', '2007-2020', 'Philosophy (Q4)'), (23808, 'TUBA-AR', 13018566, 0.102, 'Q4', 7, 0, 0, 0, 12, '18', '2008-2011, 2014, 2017', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23809, 'Turkiye Klinikleri Jinekoloji Obstetrik', 13000306, 0.102, 'Q4', 5, 0, 0, 5, 55, '18', '2010-2018', 'Obstetrics and Gynecology (Q4)'), (23810, 'University of Bucharest Review: Literary and ', 20698658, 0.102, 'Q3', 1, 0, 0, 2, 39, '43', '2011-2012, 2016-2018', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23811, 'University of Cincinnati Law Review', 96881, 0.102, 'Q4', 22, 0, 0, 2, 20, '2', '1973, 1975-1978, 1980-1982, 1987, 1990, 1992-1994, 1996-2013, 2016, 2018', 'Law (Q4)'), (23812, 'Usuteaduslik Ajakiri', 14066564, 0.102, 'Q3', 3, 0, 0, 1, 13, '71', '2011-2019', 'Religious Studies (Q3)'), (23813, 'Vox Romanica', 42899, 0.102, 'Q3', 3, 0, 0, 1, 12, '19', '2011-2017', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23814, 'West Bohemian Historical Review', 18045480, 0.102, 'Q4', 0, 5, 265, 0, 12, '31', '2019-2020', 'History (Q4)'), (23815, 'World Agriculture', 20567979, 0.102, 'Q4', 2, 1, 177, 1, 13, '3', '2017-2020', 'Agronomy and Crop Science (Q4); Aquatic Science (Q4); Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Forestry (Q4); Global and Planetary Change (Q4); Management, Monitoring, Policy a'), (23816, 'World Journal of Endocrine Surgery', 9755039, 0.102, 'Q4', 4, 26, 439, 5, 75, '4', '2011-2019', 'Endocrinology, Diabetes and Metabolism (Q4); Radiology, Nuclear Medicine and Imaging (Q4); Surgery (Q4)'), (23817, 'Zeitgeschichte', 2565250, 0.102, 'Q4', 3, 0, 0, 4, 65, '28', '1976, 1978-1982, 1999-2001, 2006-2019', 'Cultural Studies (Q4); History (Q4)'), (23818, 'Zeitschrift fur Semiotik', 1706241, 0.102, 'Q3', 4, 0, 0, 0, 11, '5', '2002-2017', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Philosophy (Q4)'), (23819, 'Zeitschrift fur Slavische Philologie', 443492, 0.102, 'Q4', 4, 0, 0, 2, 15, '5', '2002-2005, 2007, 2009-2012, 2014-2017', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23820, 'Zeitschrift fur Zahnarztliche Implantologie', 1773348, 0.102, 'Q4', 4, 24, 199, 1, 39, '5', '2011-2018', 'Oral Surgery (Q4)'), (23821, 'Zhonghua nan ke xue = National journal of and', 10093591, 0.102, 'Q4', 16, 143, 0, 10, 168, '1', '2002-2016, 2019', 'Medicine (miscellaneous) (Q4)'), (23822, 'Zoologische Garten', 445169, 0.102, 'Q4', 9, 0, 0, 2, 12, '5', '2004-2017', 'Animal Science and Zoology (Q4)'), (23823, 'AAO Journal', 23755776, 0.101, 'Q4', 4, 0, 0, 0, 27, '2', '2006-2008, 2015-2019', 'Advanced and Specialized Nursing (Q4); Complementary and Alternative Medicine (Q4); Complementary and Manual Therapy (Q4)'), (23824, 'Abriu', 20148534, 0.101, 'Q3', 0, 0, 0, 0, 16, '12', '2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23825, 'ACDI Anuario Colombiano de Derecho Internacio', 20271131, 0.101, 'Q4', 2, 10, 413, 3, 26, '47', '2012-2020', 'Law (Q4)'), (23826, 'A Contrario', 16607880, 0.101, 'Q4', 4, 8, 225, 0, 35, '19', '2003-2007, 2009-2018, 2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23827, 'Acta Academiae Artium Vilnensis', 13920316, 0.101, 'Q4', 0, 11, 377, 0, 33, '69', '2019', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (23828, 'Acta Archaeologica Lodziensia', 24510300, 0.101, 'Q3', 1, 12, 449, 2, 22, '17', '2016-2017, 2019', 'Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)'), (23829, 'Acta Comeniana', 2315955, 0.101, 'Q3', 2, 0, 0, 0, 16, '31', '2005, 2007, 2009-2018', 'Religious Studies (Q3); Cultural Studies (Q4); Education (Q4); History (Q4); Philosophy (Q4)'), (23830, 'Acta Poloniae Historica', 16829, 0.101, 'Q4', 5, 18, 194, 10, 59, '17', '1968, 1999, 2001-2020', 'Cultural Studies (Q4); Gender Studies (Q4); History (Q4); Sociology and Political Science (Q4)'), (23831, 'Actuel Marx', 9944524, 0.101, 'Q4', 5, 12, 480, 7, 70, '8', '2008-2019', 'Economics and Econometrics (Q4); Philosophy (Q4); Sociology and Political Science (Q4)'), (23832, 'Adamantius', 11266244, 0.101, 'Q4', 5, 0, 0, 5, 71, '7', '2010-2013, 2015, 2017-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23833, 'Ad Limina', 2171620, 0.101, 'Q3', 2, 0, 0, 0, 20, '12', '2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (23834, 'Advances in Small Animal Medicine and Surgery', 10417826, 0.101, 'Q4', 2, 12, 48, 0, 36, '3', '2001-2020', 'Small Animals (Q4)'), (23835, 'Adverse Drug Reaction Bulletin', 21597774, 0.101, 'Q4', 7, 3, 79, 0, 17, '2', '1970, 1973-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (23836, 'African Historical Review', 17532523, 0.101, 'Q4', 7, 1, 37, 2, 22, '3', '2010-2020', 'Cultural Studies (Q4); History (Q4)'), (23837, 'Age of Human Rights Journal', 23409592, 0.101, 'Q4', 1, 24, 1426, 0, 16, '12', '2019', 'Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23838, 'Ajatus', 3551725, 0.101, 'Q4', 1, 0, 0, 0, 28, '38', '2012, 2014-2015, 2017', 'Philosophy (Q4)'), (23839, 'Akkadica', 7797842, 0.101, 'Q4', 2, 5, 172, 5, 18, '24', '2015-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)'), (23840, 'Akropolis', 25365738, 0.101, 'Q4', 1, 0, 0, 2, 24, '2', '2017-2019', 'Classics (Q4)'), (23841, 'Altre Modernita', 20357680, 0.101, 'Q3', 4, 39, 996, 9, 216, '7', '2015-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Linguistics and Language (Q4)'), (23842, 'Amaltea', 19891709, 0.101, 'Q3', 1, 5, 162, 0, 18, '12', '2017-2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (23843, 'American and British Studies Annual', 18036058, 0.101, 'Q4', 2, 10, 270, 1, 36, '31', '2012-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (23844, 'American City and County', 149337, 0.101, 'Q4', 4, 0, 0, 2, 95, '2', '1975-1984, 1986-1989, 1994-1996, 2002-2004, 2008-2019', 'Civil and Structural Engineering (Q4); Water Science and Technology (Q4)'), (23845, 'American History', 10768866, 0.101, 'Q4', 2, 58, 0, 2, 138, '2', '2009-2020', 'History (Q4)'), (23846, 'American Nineteenth Century History', 17437903, 0.101, 'Q4', 6, 12, 865, 2, 35, '2', '2010-2020', 'History (Q4)'), (23847, 'American Studies in Scandinavia', 448060, 0.101, 'Q4', 3, 12, 139, 2, 35, '25', '2002-2019', 'History (Q4)'), (23848, 'America sin Nombre', 19899831, 0.101, 'Q3', 1, 47, 885, 0, 16, '12', '2019-2020', 'Literature and Literary Theory (Q3)'), (23849, 'Amerikastudien', 3402827, 0.101, 'Q4', 7, 0, 0, 1, 30, '5', '1983, 1999-2000, 2002-2017', 'Cultural Studies (Q4); History (Q4)'), (23850, 'Anais de histo&amp;#x0301;ria de ale&amp;#x03', 8749671, 0.101, 'Q4', 3, 0, 0, 0, 27, '26', '2001, 2011, 2013-2019', 'History (Q4)'), (23851, 'Anales del Instituto de Investigaciones Estet', 18703062, 0.101, 'Q4', 2, 23, 1612, 3, 40, '30', '2014-2019', 'Philosophy (Q4); Visual Arts and Performing Arts (Q4)'), (23852, 'Anastasis', 2392862, 0.101, 'Q4', 1, 8, 258, 0, 38, '43', '2018-2019', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (23853, 'Anesthesia and Resuscitation', 3851664, 0.101, 'Q4', 3, 0, 0, 1, 42, '6', '1994-2019', 'Anesthesiology and Pain Medicine (Q4); Emergency Medicine (Q4)'), (23854, 'Anglica', 8605734, 0.101, 'Q3', 1, 29, 722, 0, 28, '17', '2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23855, 'Anglo-Saxon England', 14740532, 0.101, 'Q4', 20, 0, 0, 5, 21, '3', '1972-2010, 2012-2018', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4)'), (23856, 'Animal Technology and Welfare', 17420385, 0.101, 'Q4', 4, 0, 0, 1, 134, '3', '2008-2015, 2017-2019', 'Animal Science and Zoology (Q4)'), (23857, 'Annales de Bretagne et des pays de l Ouest', 3990826, 0.101, 'Q4', 5, 0, 0, 5, 94, '8', '1974-1975, 1977, 1979, 1981-1984, 1988-1989, 2002-2019', 'History (Q4); Literature and Literary Theory (Q4)'), (23858, 'Annales d Universite Valahia Targoviste, Se', 15841855, 0.101, 'Q4', 5, 0, 0, 0, 22, '43', '2009-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)'), (23859, 'Annales Historiques de la Revolution Francais', 1952403, 0.101, 'Q4', 7, 0, 0, 0, 26, '8', '1965, 1999, 2001-2017', 'History (Q4)'), (23860, 'Annali di Storia delle Universita Italiane', 11278250, 0.101, 'Q4', 1, 15, 777, 1, 39, '7', '2018-2019', 'Education (Q4); History (Q4)'), (23861, 'Annals of Arid Zone', 5701791, 0.101, 'Q4', 18, 0, 0, 0, 28, '4', '1976, 1978-1983, 1996-2014, 2016-2018', 'Agronomy and Crop Science (Q4); Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (23862, 'Annals of the Romanian Society for Cell Biolo', 15836258, 0.101, 'Q4', 7, 13, 290, 16, 31, '43', '2009-2018', 'Cell Biology (Q4); Molecular Biology (Q4); Physiology (Q4)'), (23863, 'Antichthon', 664774, 0.101, 'Q4', 5, 9, 574, 4, 28, '11', '1986, 2011-2019', 'Classics (Q4)'), (23864, 'Antigonish Review', 35661, 0.101, 'Q3', 2, 0, 0, 0, 24, '9', '2001-2002, 2009-2017', 'Literature and Literary Theory (Q3)'), (23865, 'Antiquaries Journal', 35815, 0.101, 'Q4', 14, 25, 1419, 3, 37, '3', '1921-1962, 1964-1971, 1973-1990, 1995, 1998, 2000-2020', 'Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Visual Arts and Performing Arts (Q4)'), (23866, 'Anuario Musical', 2113538, 0.101, 'Q3', 2, 11, 428, 3, 38, '12', '2011-2019', 'Visual Arts and Performing Arts (Q3); Music (Q4)'), (23867, 'Archives of American Art Journal', 23270667, 0.101, 'Q4', 3, 20, 282, 1, 30, '2', '2002-2020', 'Museology (Q4); Visual Arts and Performing Arts (Q4)'), (23868, 'Archives of Asian Art', 666637, 0.101, 'Q4', 5, 9, 618, 4, 29, '2', '2002, 2004-2019', 'Visual Arts and Performing Arts (Q4)'), (23869, 'Archives of Perinatal Medicine', 15084868, 0.101, 'Q4', 4, 0, 0, 0, 22, '17', '2011-2017', 'Obstetrics and Gynecology (Q4)'), (23870, 'Archiv fur das Studium der Neueren Sprachen u', 38970, 0.101, 'Q3', 4, 0, 0, 0, 23, '5', '2002-2011, 2017', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23871, 'Archivium Hibernicum', 448745, 0.101, 'Q4', 4, 0, 0, 4, 28, '42', '1999, 2001, 2011-2013, 2015-2019', 'History (Q4)'), (23872, 'Arenal', 11346396, 0.101, 'Q4', 3, 24, 1116, 16, 62, '12', '2017-2020', 'Cultural Studies (Q4); Gender Studies (Q4); History (Q4)'), (23873, 'Arheologia Moldovei', 667358, 0.101, 'Q4', 2, 0, 0, 0, 33, '43', '2017-2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23874, 'Arkiv for Nordisk Filologi', 667668, 0.101, 'Q3', 2, 6, 270, 2, 19, '20', '2012-2015, 2017-2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23875, 'Ars Aeterna', 13379291, 0.101, 'Q4', 1, 10, 230, 2, 36, '17', '2016-2020', 'Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (23876, 'Artforum International', 10867058, 0.101, 'Q4', 10, 0, 0, 0, 26, '2', '2001-2017', 'Visual Arts and Performing Arts (Q4)'), (23877, 'Arthuriana', 10786279, 0.101, 'Q3', 7, 15, 873, 4, 60, '2', '2002-2020', 'Literature and Literary Theory (Q3); History (Q4)'), (23878, 'Asia Maior', 23852526, 0.101, 'Q4', 0, 0, 0, 0, 33, '7', '2018-2019', 'Cultural Studies (Q4); History (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (23879, 'Asia Pacific Journal of Educators and Educati', 21803463, 0.101, 'Q4', 1, 20, 772, 1, 18, '23', '2018-2020', 'Education (Q4)'), (23880, 'Atencion Primaria Practica', 26050730, 0.101, 'Q4', 1, 28, 203, 1, 28, '12', '2019-2020', 'Family Practice (Q4)'), (23881, 'Augustiniana', 48003, 0.101, 'Q4', 3, 6, 167, 2, 32, '24', '2011-2019', 'Philosophy (Q4); Religious Studies (Q4)'), (23882, 'Aussiger Beitrage', 18026419, 0.101, 'Q4', 2, 14, 331, 3, 37, '31', '2013-2019', 'Education (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (23883, 'Australian Journal of Pharmacy', 3118002, 0.101, 'Q4', 6, 0, 0, 6, 235, '11', '1974-1976, 1978-1985, 1996-2019', 'Pharmacology (medical) (Q4); Pharmacy (Q4)'), (23884, 'Avances del Cesor', 15143899, 0.101, 'Q4', 1, 12, 404, 2, 19, '46', '2019-2020', 'History (Q4); Sociology and Political Science (Q4)'), (23885, 'Balkanistica', 3602206, 0.101, 'Q4', 3, 0, 0, 0, 30, '2', '2011-2018', 'Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (23886, 'Baptist quarterly, The', 5576, 0.101, 'Q4', 3, 20, 0, 0, 31, '3', '1988, 1996-2020', 'History (Q4); Religious Studies (Q4)'), (23887, 'Beitrage zur Geschichte der Sprachwissenschaf', 9392815, 0.101, 'Q4', 4, 9, 194, 3, 32, '5', '2009-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23888, 'Beitrage zur Mittelalterarchaologie in Osterr', 10110062, 0.101, 'Q4', 1, 9, 871, 2, 34, '28', '1993, 2018-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (23889, 'Berichte. Geographie und Landeskunde', 21966184, 0.101, 'Q4', 10, 13, 631, 6, 36, '5', '2013-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4)'), (23890, 'Biblical Annals', 20832222, 0.101, 'Q4', 2, 20, 1114, 6, 38, '17', '2018-2020', 'Religious Studies (Q4)'), (23891, 'Biuletynu Polskiej Misji Historycznej', 20837755, 0.101, 'Q4', 0, 19, 539, 0, 17, '17', '2019', 'History (Q4)'), (23892, 'Blake - An Illustrated Quarterly', 160628, 0.101, 'Q3', 6, 6, 96, 0, 21, '2', '2002-2020', 'Literature and Literary Theory (Q3)'), (23893, 'Boletin Academico', 21736723, 0.101, 'Q3', 1, 5, 107, 1, 24, '12', '2016-2019', 'Visual Arts and Performing Arts (Q3); Architecture (Q4); Cultural Studies (Q4)'), (23894, 'Boletin de Estetica', 16687132, 0.101, 'Q3', 0, 9, 364, 0, 17, '46', '2018-2020', 'Visual Arts and Performing Arts (Q3); Philosophy (Q4)'), (23895, 'Bollettino d Arte', 3944611, 0.101, 'Q4', 2, 0, 0, 0, 33, '7', '2007, 2009-2011, 2014-2016, 2018-2019', 'Visual Arts and Performing Arts (Q4)'), (23896, 'Bollettino dell Istituto Storico Italiano per', 11276096, 0.101, 'Q4', 2, 17, 579, 2, 29, '7', '2014, 2018-2019', 'History (Q4)'), (23897, 'Bollettino Filosofico', 20352670, 0.101, 'Q4', 0, 20, 699, 0, 19, '7', '2019', 'Philosophy (Q4)'), (23898, 'British Birds', 70335, 0.101, 'Q4', 22, 0, 0, 0, 23, '3', '1981-1984, 1989-1990, 1995-2016, 2018', 'Animal Science and Zoology (Q4)'), (23899, 'British Catholic History', 20557973, 0.101, 'Q4', 4, 7, 429, 4, 30, '3', '2015-2020', 'History (Q4); Religious Studies (Q4)'), (23900, 'Bulletin de l Academie Veterinaire de France', 341843, 0.101, 'Q4', 6, 7, 176, 4, 67, '8', '1946-1948, 1964-1974, 2008-2019', 'Veterinary (miscellaneous) (Q4)'), (23901, 'Bulletin de liaison des membres de la Societe', 19648995, 0.101, 'Q4', 1, 5, 65, 0, 28, '8', '2008-2019', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (23902, 'Bulletin de Philosophie Medievale', 684023, 0.101, 'Q4', 1, 12, 12, 1, 18, '24', '1968, 1983, 1996, 2018-2019', 'History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (23903, 'Bulletin of the Comediantes', 75108, 0.101, 'Q3', 5, 0, 0, 1, 18, '2', '2002-2018', 'Literature and Literary Theory (Q3)'), (23904, 'Bulletin of the John Rylands Library', 20549326, 0.101, 'Q4', 5, 5, 306, 0, 30, '3', '1946-1948, 1971-1972, 1990, 1999, 2002-2006, 2012, 2014-2019', 'Arts and Humanities (miscellaneous) (Q4); Library and Information Sciences (Q4)'), (23905, 'Byron Journal', 17570263, 0.101, 'Q4', 1, 10, 421, 0, 31, '3', '2018-2020', 'History (Q4); Literature and Literary Theory (Q4)'), (23906, 'Byzantin Symmeikta', 11051639, 0.101, 'Q3', 2, 22, 1214, 1, 17, '39', '2011-2019', 'Classics (Q3); History (Q4)'), (23907, 'Byzantion: Revue Internationale des Etudes By', 22946209, 0.101, 'Q4', 9, 0, 0, 1, 31, '24', '1969, 1972, 1977-1979, 2002-2007, 2009-2018', 'History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (23908, 'Cadernos CEDES', 1013262, 0.101, 'Q4', 8, 26, 595, 5, 73, '14', '2006-2020', 'Education (Q4)'), (23909, 'Cahiers de Civilisation Medievale', 2408678, 0.101, 'Q4', 7, 5, 338, 0, 34, '8', '2002-2014, 2017-2019', 'History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (23910, 'Cahiers de Geographie de Quebec', 79766, 0.101, 'Q4', 11, 3, 155, 0, 16, '9', '1978-2018', 'Geography, Planning and Development (Q4)'), (23911, 'Cahiers de l Association Internationale des E', 5715865, 0.101, 'Q3', 3, 0, 0, 0, 19, '8', '2002-2015, 2017', 'Literature and Literary Theory (Q3)'), (23912, 'Cahiers de Recherches Medievales', 12729752, 0.101, 'Q3', 4, 0, 0, 0, 21, '8', '2008-2016', 'Literature and Literary Theory (Q3); History (Q4)'), (23913, 'Cahiers des Etudes Anciennes', 19232713, 0.101, 'Q3', 3, 9, 243, 1, 32, '9', '1976, 2011-2019', 'Classics (Q3)'), (23914, 'Callaloo', 10806512, 0.101, 'Q3', 14, 0, 0, 1, 29, '2', '2002-2018', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)'), (23915, 'Calvin Theological Journal', 81795, 0.101, 'Q4', 3, 13, 765, 2, 38, '2', '2011-2019', 'Religious Studies (Q4)'), (23916, 'Cambrian Medieval Celtic Studies', 13530089, 0.101, 'Q3', 8, 9, 910, 2, 21, '3', '2002-2014, 2016-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Archeology (arts and humanities) (Q4); History (Q4); Language and Linguistics (Q4)'), (23917, 'Cambridge Classical Journal', 17502705, 0.101, 'Q3', 9, 9, 559, 7, 19, '3', '1884, 1957, 2002-2020', 'Literature and Literary Theory (Q3); Classics (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23918, 'Canadian Journal of Film Studies', 8475911, 0.101, 'Q4', 8, 13, 422, 3, 31, '9', '1998-2001, 2004-2019', 'Visual Arts and Performing Arts (Q4)'), (23919, 'Caracol', 23179651, 0.101, 'Q4', 1, 66, 1502, 1, 37, '14', '2019-2020', 'Communication (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23920, 'Caracteres', 22544496, 0.101, 'Q4', 0, 0, 0, 0, 30, '12', '2019', 'Arts and Humanities (miscellaneous) (Q4); Communication (Q4); Computer Science Applications (Q4); Education (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23921, 'Carthaginensia', 2134381, 0.101, 'Q4', 1, 11, 199, 2, 36, '12', '2018-2020', 'Religious Studies (Q4)'), (23922, 'CASE Journal', 15449106, 0.101, 'Q4', 1, 4, 50, 2, 39, '3', '2004, 2019-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Education (Q4)'), (23923, 'Catalan Review', 2135949, 0.101, 'Q3', 2, 7, 256, 4, 26, '3', '2016-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23924, 'Central Asiatic Journal', 89182, 0.101, 'Q3', 5, 0, 0, 1, 25, '5', '2002-2012, 2014-2018', 'Literature and Literary Theory (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23925, 'Ceramics - Art and Perception', 10351841, 0.101, 'Q3', 1, 32, 39, 1, 18, '2', '2002-2020', 'Visual Arts and Performing Arts (Q3)'), (23926, 'Chicago Review', 93696, 0.101, 'Q3', 4, 13, 9, 3, 80, '2', '2002-2019', 'Literature and Literary Theory (Q3)'), (23927, 'Chinese Journal of Interventional Imaging and', 16728475, 0.101, 'Q4', 5, 208, 2899, 20, 601, '1', '2006-2020', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (23928, 'Chinese Journal of Medical Imaging Technology', 10033289, 0.101, 'Q4', 6, 541, 6075, 62, 1613, '1', '2006-2020', 'Physiology (medical) (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (23929, 'Chinese Journal of Urology', 10006702, 0.101, 'Q4', 1, 219, 4430, 5, 149, '1', '2019-2020', 'Nephrology (Q4); Neurology (clinical) (Q4)'), (23930, 'CHINOPERL: Journal of Chinese Oral and Perfor', 1937774, 0.101, 'Q3', 3, 0, 0, 2, 20, '3', '2013-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3)'), (23931, 'Chirurgia Polska', 16443349, 0.101, 'Q4', 5, 0, 0, 0, 18, '17', '2002-2018', 'Surgery (Q4)'), (23932, 'Christian Journal for Global Health', 21672415, 0.101, 'Q4', 1, 51, 902, 0, 19, '2', '2019', 'Health Policy (Q4); Public Health, Environmental and Occupational Health (Q4)'), (23933, 'Ciencia and Engenharia/ Science and Engineeri', 19834071, 0.101, 'Q4', 6, 0, 0, 0, 16, '14', '1997-2018', 'Multidisciplinary (Q4)'), (23934, 'Citeaux', 97497, 0.101, 'Q4', 2, 0, 0, 0, 38, '24', '2011-2018', 'History (Q4); Religious Studies (Q4)'), (23935, 'Cithara', 97527, 0.101, 'Q3', 3, 7, 195, 1, 18, '2', '2002-2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Religious Studies (Q4)'), (23936, 'Classica et Christiana', 18423043, 0.101, 'Q4', 3, 0, 0, 3, 35, '43', '2013-2019', 'Classics (Q4); Religious Studies (Q4)'), (23937, 'Clean Air and Containment Review', 20423268, 0.101, 'Q4', 5, 16, 61, 3, 45, '3', '2012-2020', 'Ecological Modeling (Q4); Environmental Engineering (Q4); Health, Toxicology and Mutagenesis (Q4); Management, Monitoring, Policy and Law (Q4)'), (23938, 'Clinical Osteology', 25711334, 0.101, 'Q4', 1, 0, 0, 0, 33, '31', '2018-2019', 'Endocrinology, Diabetes and Metabolism (Q4); Orthopedics and Sports Medicine (Q4)'), (23939, 'Clio', 8842043, 0.101, 'Q3', 7, 0, 0, 0, 22, '2', '1979-1980, 1984, 1987, 1999, 2001-2017, 2019', 'Literature and Literary Theory (Q3); History (Q4); Philosophy (Q4)'), (23940, 'CME', 1614371, 0.101, 'Q4', 1, 0, 0, 0, 26, '27', '1973-1974, 2007-2017', 'Family Practice (Q4)'), (23941, 'Cocuk Sagligi ve Hastaliklari Dergisi', 100161, 0.101, 'Q4', 13, 0, 0, 1, 32, '18', '1992-2019', 'Pediatrics, Perinatology and Child Health (Q4)'), (23942, 'Colloquia', 18223737, 0.101, 'Q3', 1, 6, 112, 2, 29, '69', '2018-2020', 'Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Music (Q4); Sociology and Political Science (Q4)'), (23943, 'Colloquia Germanica', 101338, 0.101, 'Q3', 3, 21, 677, 1, 18, '45', '2002-2016', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23944, 'Colloquia Humanistica', 23922419, 0.101, 'Q4', 1, 17, 540, 3, 37, '17', '2017-2019', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (23945, 'Comitatus', 696412, 0.101, 'Q3', 3, 8, 349, 1, 24, '2', '2002-2009, 2017-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); History (Q4)'), (23946, 'Commonwealth Law Bulletin', 3050718, 0.101, 'Q4', 7, 58, 214, 4, 90, '3', '1974-2020', 'Law (Q4)'), (23947, 'Communiquer', 23689587, 0.101, 'Q4', 0, 22, 1260, 0, 20, '9', '2018-2020', 'Communication (Q4); Linguistics and Language (Q4)'), (23948, 'Community Practitioner', 14622815, 0.101, 'Q4', 19, 14, 84, 6, 243, '3', '2005-2020', 'Community and Home Care (Q4); Family Practice (Q4); Medicine (miscellaneous) (Q4)'), (23949, 'Comparative Drama', 19361637, 0.101, 'Q4', 8, 0, 0, 2, 40, '2', '2002-2019', 'Literature and Literary Theory (Q4)'), (23950, 'Comprendre', 11399759, 0.101, 'Q4', 1, 5, 166, 0, 32, '12', '2015-2020', 'Philosophy (Q4)'), (23951, 'Computer Software', 2896540, 0.101, 'Q4', 7, 35, 354, 6, 65, '6', '2000-2020', 'Software (Q4)'), (23952, 'Comunicacao Midia e Consumo', 19837070, 0.101, 'Q4', 1, 28, 720, 5, 76, '14', '2017-2020', 'Communication (Q4)'), (23953, 'CONCAWE Review', 10277358, 0.101, 'Q4', 3, 0, 0, 1, 30, '24', '1996-2019', 'Energy (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Process Chemistry and Technology (Q4); Safety, Risk, Reliability and Quality (Q4)'), (23954, 'Confrontation', 105716, 0.101, 'Q4', 1, 14, 0, 0, 33, '2', '2008-2018', 'Literature and Literary Theory (Q4)'), (23955, 'Connections', 18121098, 0.101, 'Q4', 1, 30, 0, 2, 31, '5', '2018', 'Computer Networks and Communications (Q4); Law (Q4); Political Science and International Relations (Q4); Safety Research (Q4); Safety, Risk, Reliability and Quality (Q4)'), (23956, 'Consultant', 107069, 0.101, 'Q4', 6, 0, 0, 4, 302, '2', '1987-1991, 1996-2019', 'Medicine (miscellaneous) (Q4)'), (23957, 'Contemporary French Civilization', 1479156, 0.101, 'Q4', 1, 12, 545, 1, 20, '2', '1981-1982, 1999, 2001, 2019-2020', 'Anthropology (Q4); Cultural Studies (Q4); History (Q4)'), (23958, 'Contemporary Ob/Gyn', 903159, 0.101, 'Q4', 9, 116, 88, 9, 33, '2', '1975-1977, 1982, 1996-2002, 2005-2008, 2011, 2013-2020', 'Advanced and Specialized Nursing (Q4); Maternity and Midwifery (Q4); Obstetrics and Gynecology (Q4)'), (23959, 'Correspondances en MHND', 21009619, 0.101, 'Q4', 2, 51, 0, 1, 114, '8', '2009, 2012-2020', 'Endocrinology, Diabetes and Metabolism (Q4); Food Science (Q4); Internal Medicine (Q4)'), (23960, 'Costume', 5908876, 0.101, 'Q4', 7, 11, 739, 5, 30, '3', '1965, 1967-2020', 'Business, Management and Accounting (miscellaneous) (Q4); History (Q4)'), (23961, 'Court Historian', 14629712, 0.101, 'Q4', 6, 16, 0, 1, 36, '3', '1996-2020', 'History (Q4)'), (23962, 'Critica-Revista Hispanoamericana de Filosofia', 18704905, 0.101, 'Q4', 6, 11, 408, 3, 39, '30', '1977, 2002-2019', 'Philosophy (Q4)'), (23963, 'Croatian and Comparative Public Administratio', 18480357, 0.101, 'Q4', 1, 8, 526, 3, 24, '58', '2019-2020', 'Law (Q4); Public Administration (Q4)'), (23964, 'Cromohs', 11237023, 0.101, 'Q4', 3, 0, 0, 2, 23, '7', '2011-2015, 2017', 'History (Q4); History and Philosophy of Science (Q4)'), (23965, 'Cuadernos de filologia clasica: estudios grie', 11319070, 0.101, 'Q4', 4, 14, 786, 0, 38, '12', '2011-2020', 'Classics (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (23966, 'Cuadernos de Medicina Forense', 11357606, 0.101, 'Q4', 8, 0, 0, 2, 16, '12', '2001-2002, 2006-2018', 'Pathology and Forensic Medicine (Q4)'), (23967, 'Cuadernos Dieciochistas', 23411902, 0.101, 'Q4', 1, 14, 732, 4, 39, '12', '2017-2018', 'History (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)'), (23968, 'Cuadernos Salmantinos de Filosofia', 2104857, 0.101, 'Q4', 1, 0, 0, 3, 41, '12', '2017-2019', 'Philosophy (Q4)'), (23969, 'Dacoromania', 15824438, 0.101, 'Q4', 2, 10, 206, 0, 31, '43', '2011-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (23970, 'Dance Research', 2642875, 0.101, 'Q4', 8, 20, 581, 2, 35, '3', '2009-2020', 'Visual Arts and Performing Arts (Q4)'), (23971, 'Dansk Teologisk Tidsskrift', 19023898, 0.101, 'Q4', 2, 5, 106, 0, 21, '25', '2011-2016, 2018-2019', 'Religious Studies (Q4)'), (23972, 'Decyzje', 2391761, 0.101, 'Q4', 1, 6, 291, 0, 31, '17', '2018-2019', 'Decision Sciences (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4); Public Administration (Q4)'), (23973, 'De Musica Disserenda', 18543405, 0.101, 'Q4', 2, 10, 292, 1, 36, '60', '2013-2020', 'Music (Q4)'), (23974, 'Die Medizinische Welt', 258512, 0.101, 'Q4', 9, 0, 0, 0, 22, '5', '1951, 1960-2017', 'Medicine (miscellaneous) (Q4)'), (23975, 'Digital Humanities Quarterly', 19384122, 0.101, 'Q4', 2, 0, 0, 4, 39, '2', '2018', 'Arts and Humanities (miscellaneous) (Q4); Communication (Q4); Computer Networks and Communications (Q4); Library and Information Sciences (Q4)'), (23976, 'Digital Textile', 17421128, 0.101, 'Q4', 3, 0, 0, 0, 20, '3', '2005-2013, 2016-2019', 'Computer Graphics and Computer-Aided Design (Q4)'), (23977, 'Digital TV Europe', 2040266, 0.101, 'Q4', 1, 0, 0, 0, 34, '3', '2009-2014, 2016-2018', 'Communication (Q4); Electrical and Electronic Engineering (Q4); Media Technology (Q4)'), (23978, 'Dionysius', 7051085, 0.101, 'Q4', 2, 0, 0, 0, 22, '9', '2011-2018', 'Classics (Q4); History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (23979, 'Diritto Pubblico', 17218985, 0.101, 'Q4', 2, 13, 307, 6, 19, '7', '2019', 'Law (Q4)'), (23980, 'Discipline Filosofiche', 15919625, 0.101, 'Q4', 0, 16, 481, 0, 22, '7', '2019', 'Philosophy (Q4)'), (23981, 'Documenti Geografici', 22817549, 0.101, 'Q4', 1, 63, 1413, 2, 17, '7', '2019-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Geography, Planning and Development (Q4); History (Q4)'), (23982, 'Document Numerique', 19631014, 0.101, 'Q4', 6, 0, 0, 0, 16, '8', '2001-2004, 2006-2016, 2018', 'Library and Information Sciences (Q4)'), (23983, 'DOLOR', 2140659, 0.101, 'Q4', 5, 0, 0, 4, 56, '12', '1995-2019', 'Anesthesiology and Pain Medicine (Q4)'), (23984, 'Drug Topics', 19378157, 0.101, 'Q4', 7, 129, 48, 3, 30, '2', '1991, 1997-2020', 'Pharmaceutical Science (Q4); Pharmacology (Q4)'), (23985, 'Duzce Medical Journal', 1307671, 0.101, 'Q4', 5, 63, 1559, 6, 99, '18', '2010-2020', 'Medicine (miscellaneous) (Q4)'), (23986, 'Early Modern Women', 19330065, 0.101, 'Q4', 3, 13, 539, 1, 35, '2', '2010-2011, 2015-2019', 'Gender Studies (Q4)'), (23987, 'Early Music History', 2611279, 0.101, 'Q4', 13, 6, 345, 2, 17, '3', '1981-1982, 1984-1988, 1990-1992, 1994-2019', 'Music (Q4)'), (23988, 'Early Popular Visual Culture', 17460654, 0.101, 'Q4', 7, 14, 419, 5, 63, '3', '2009-2020', 'Cultural Studies (Q4); History (Q4); Visual Arts and Performing Arts (Q4)'), (23989, 'East Asian Publishing and Society', 22106278, 0.101, 'Q4', 3, 4, 268, 0, 16, '16', '2011-2020', 'Communication (Q4); Library and Information Sciences (Q4); Media Technology (Q4)'), (23990, 'Ecclesial Practices', 22144471, 0.101, 'Q4', 5, 14, 437, 1, 34, '16', '2014-2019', 'Religious Studies (Q4)'), (23991, 'Echa Przeszlosci', 2450078, 0.101, 'Q4', 1, 44, 1299, 2, 37, '17', '2018-2019', 'History (Q4)'), (23992, 'Ecology and Civil Engineering', 18825974, 0.101, 'Q4', 9, 30, 363, 1, 55, '6', '1998-2020', 'Civil and Structural Engineering (Q4); Ecology (Q4)'), (23993, 'Eighteenth-Century Ireland', 7907915, 0.101, 'Q4', 7, 0, 0, 5, 18, '42', '1986, 2002-2015, 2017-2018', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)'), (23994, 'Ekphrasis', 25592068, 0.101, 'Q4', 0, 0, 0, 0, 31, '43', '2019', 'Communication (Q4); Visual Arts and Performing Arts (Q4)'), (23995, 'Electrum', 18973426, 0.101, 'Q4', 2, 10, 692, 2, 34, '17', '2014-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4)'), (23996, 'Emily Dickinson Journal', 10596879, 0.101, 'Q3', 7, 4, 58, 3, 21, '2', '2009-2020', 'Literature and Literary Theory (Q3)'), (23997, 'Empan', 11523336, 0.101, 'Q4', 6, 98, 712, 5, 147, '8', '2002-2020', 'Health (social science) (Q4); Social Psychology (Q4); Sociology and Political Science (Q4)'), (23998, 'Endoscopic Forum for Digestive Disease', 9120505, 0.101, 'Q4', 4, 0, 0, 0, 38, '6', '1993-2019', 'Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (23999, 'English Literary Renaissance', 14756757, 0.101, 'Q3', 18, 35, 189, 6, 28, '3', '1971-2020', 'Literature and Literary Theory (Q3)'), (24000, 'Entangled Religions', 23636696, 0.101, 'Q4', 1, 26, 1576, 3, 28, '5', '2019-2020', 'History (Q4); Religious Studies (Q4)'), (24001, 'Environmental Law and Management', 10676058, 0.101, 'Q4', 8, 0, 0, 2, 69, '3', '1993-2018', 'Geography, Planning and Development (Q4); Management, Monitoring, Policy and Law (Q4)'), (24002, 'Erciyes Tip Dergisi', 1300199, 0.101, 'Q4', 11, 0, 0, 0, 17, '18', '1999-2017', 'Medicine (miscellaneous) (Q4)'), (24003, 'Espacio, Tiempo y Forma, Serie VII: Historia ', 11304715, 0.101, 'Q4', 1, 25, 955, 2, 35, '12', '2018-2019', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (24004, 'Estreno', 978663, 0.101, 'Q3', 2, 12, 232, 0, 29, '2', '2010-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q4)'), (24005, 'Estudios de Linguistica Inglesa Aplicada (ELI', 15765059, 0.101, 'Q4', 6, 0, 0, 1, 32, '12', '2012-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24006, 'Estudos de Linguistica Galega', 18892566, 0.101, 'Q4', 4, 7, 320, 1, 23, '12', '2009-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24007, 'Ethische Perspectieven', 1783144, 0.101, 'Q4', 2, 7, 332, 0, 34, '24', '2011-2020', 'Philosophy (Q4)'), (24008, 'Etudes Romanes de Brno', 23364416, 0.101, 'Q3', 1, 65, 2212, 1, 23, '31', '2019-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24009, 'European Journal of Korean Studies', 26314134, 0.101, 'Q4', 1, 0, 0, 3, 41, '3', '2017-2019', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24010, 'European Medieval Drama', 13782274, 0.101, 'Q3', 4, 12, 525, 2, 26, '24', '2002-2009, 2011-2019', 'Literature and Literary Theory (Q3)'), (24011, 'European Procurement and Public Private Partn', 21947384, 0.101, 'Q4', 1, 0, 0, 1, 24, '5', '2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4)'), (24012, 'European Space Agency Bulletin', 3764265, 0.101, 'Q4', 12, 0, 0, 1, 18, '16', '1979-1993, 1995-2017', 'Aerospace Engineering (Q4); Space and Planetary Science (Q4)'), (24013, 'European Yearbook of the History of Psycholog', 22955267, 0.101, 'Q4', 3, 6, 319, 1, 21, '24', '2015', 'History (Q4); Psychology (miscellaneous) (Q4)'), (24014, 'Exartisis', 11095350, 0.101, 'Q4', 0, 0, 0, 0, 16, '39', '2010-2018', 'Psychiatry and Mental Health (Q4)'), (24015, 'Exemplaria Classica', 16993225, 0.101, 'Q3', 3, 10, 0, 1, 23, '12', '2011-2019', 'Literature and Literary Theory (Q3); Classics (Q4)'), (24016, 'Existentia', 12155950, 0.101, 'Q4', 2, 0, 0, 0, 38, '50', '2011-2019', 'Philosophy (Q4)'), (24017, 'Explorations in Renaissance culture', 982474, 0.101, 'Q3', 7, 17, 605, 1, 23, '16', '1976, 1996-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); History (Q4); Music (Q4); Philosophy (Q4)'), (24018, 'Expository Times', 145246, 0.101, 'Q4', 7, 95, 154, 1, 130, '3', '1889-2020', 'Religious Studies (Q4)'), (24019, 'Extrapolation', 145483, 0.101, 'Q3', 4, 10, 351, 5, 29, '2', '2011-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (24020, 'Family and Community History', 14631180, 0.101, 'Q4', 3, 9, 0, 1, 30, '3', '1999, 2001, 2013-2020', 'History (Q4); Sociology and Political Science (Q4)'), (24021, 'Feministische Studien', 7235186, 0.101, 'Q4', 6, 19, 464, 4, 78, '5', '2008-2020', 'Gender Studies (Q4); Sociology and Political Science (Q4)'), (24022, 'Film and History', 15489922, 0.101, 'Q3', 4, 7, 230, 1, 16, '2', '2011-2019', 'Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); History (Q4)'), (24023, 'Film International', 20403801, 0.101, 'Q4', 2, 50, 516, 5, 118, '3', '2012-2020', 'Communication (Q4); Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24024, 'Folia Japonica de Ophthalmologica Clinica', 18825176, 0.101, 'Q4', 2, 0, 0, 2, 210, '6', '2008-2018', 'Ophthalmology (Q4)'), (24025, 'Folk Life', 4308778, 0.101, 'Q4', 4, 8, 0, 3, 26, '3', '1963-1995, 2002-2020', 'Anthropology (Q4); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24026, 'Fonetica si Dialectologie', 716855, 0.101, 'Q4', 2, 12, 143, 0, 19, '43', '2012-2017', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24027, 'Forum for Nordic Dermato-Venerology', 14022915, 0.101, 'Q4', 3, 12, 152, 6, 22, '20', '2003-2020', 'Dermatology (Q4); Infectious Diseases (Q4)'), (24028, 'Forum Historiae', 13376861, 0.101, 'Q4', 1, 9, 83, 2, 36, '53', '2018-2020', 'History (Q4)'), (24029, 'Franciscan Studies', 805459, 0.101, 'Q4', 4, 11, 715, 1, 40, '2', '2011-2012, 2014-2019', 'History (Q4); Religious Studies (Q4)'), (24030, 'Freiburger Zeitschrift fur Philosophie und Th', 160725, 0.101, 'Q4', 3, 0, 0, 0, 27, '19', '2012-2017', 'Philosophy (Q4); Religious Studies (Q4)'), (24031, 'French Studies Bulletin', 2622750, 0.101, 'Q3', 4, 10, 200, 0, 16, '3', '1981-2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (24032, 'Galilaeana', 19716052, 0.101, 'Q4', 3, 11, 0, 1, 25, '7', '2012-2019', 'History (Q4); History and Philosophy of Science (Q4)'), (24033, 'Gastric and Breast Cancer', 11097647, 0.101, 'Q4', 6, 11, 673, 0, 34, '39', '2008-2012, 2017-2020', 'Gastroenterology (Q4); Oncology (Q4)'), (24034, 'GED - Gastrenterologia Endoscopia Digestiva', 1017772, 0.101, 'Q4', 6, 0, 0, 0, 16, '14', '1997-2008, 2010-2011, 2014-2017', 'Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (24035, 'German Historical Institute London Bulletin', 2698552, 0.101, 'Q4', 4, 6, 0, 1, 40, '3', '2011-2019', 'History (Q4)'), (24036, 'Ginekologia i Poloznictwo', 18980759, 0.101, 'Q4', 4, 12, 261, 1, 34, '17', '2008-2020', 'Obstetrics and Gynecology (Q4)'), (24037, 'GIS-Business', 14303663, 0.101, 'Q4', 4, 78, 136, 1, 119, '19', '2006-2020', 'Earth and Planetary Sciences (miscellaneous) (Q4)'), (24038, 'Gladius', 19884168, 0.101, 'Q4', 4, 6, 458, 1, 26, '12', '2010-2019', 'History (Q4)'), (24039, 'Govor', 3527565, 0.101, 'Q4', 3, 0, 0, 1, 25, '58', '2008-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24040, 'Grafica', 23397500, 0.101, 'Q3', 1, 17, 324, 1, 17, '12', '2019-2020', 'Visual Arts and Performing Arts (Q3); Communication (Q4); Computer Graphics and Computer-Aided Design (Q4)'), (24041, 'Graziadio Business Review', 21592977, 0.101, 'Q4', 1, 11, 274, 0, 18, '2', '2018-2020', 'Business and International Management (Q4); Economics and Econometrics (Q4)'), (24042, 'Guti Dianzixue Yanjiu Yu Jinzhan/Research and', 10003819, 0.101, 'Q4', 6, 84, 1037, 14, 259, '1', '1994-2020', 'Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Electronic, Optical and Magnetic Materials (Q4)'), (24043, 'Gynaecologia et Perinatologia', 13300091, 0.101, 'Q4', 8, 0, 0, 0, 17, '58', '1993-2016, 2018-2019', 'Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (24044, 'Hagiographica', 11241225, 0.101, 'Q4', 1, 11, 0, 1, 26, '7', '2017-2019', 'History (Q4); Religious Studies (Q4)'), (24045, 'Hamdard Islamicus', 2507196, 0.101, 'Q4', 1, 15, 396, 1, 31, '34', '1987, 2012-2017, 2019-2020', 'Cultural Studies (Q4); History (Q4); Political Science and International Relations (Q4); Religious Studies (Q4)'), (24046, 'Hansische Geschichtsblatter', 730327, 0.101, 'Q4', 2, 0, 0, 0, 16, '5', '2013, 2015-2019', 'History (Q4)'), (24047, 'Helios', 19350228, 0.101, 'Q3', 11, 3, 337, 1, 20, '2', '1984, 2002-2019', 'Literature and Literary Theory (Q3); Classics (Q4); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24048, 'Hematology (Bulgaria)', 23677864, 0.101, 'Q4', 0, 0, 0, 0, 41, '61', '2015-2019', 'Hematology (Q4); Immunology and Allergy (Q4)'), (24049, 'Hiperboreea', 22845666, 0.101, 'Q4', 1, 10, 0, 2, 18, '43', '2018-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4)'), (24050, 'Hirosaki Medical Journal', 4391721, 0.101, 'Q4', 6, 19, 365, 1, 52, '6', '1973-2014, 2016-2019', 'Medicine (miscellaneous) (Q4)'), (24051, 'Hispania Antiqua', 11300515, 0.101, 'Q4', 3, 0, 0, 0, 22, '12', '2011-2013, 2015-2017', 'History (Q4)'), (24052, 'Histoire de l Education', 2216280, 0.101, 'Q4', 6, 11, 627, 2, 29, '8', '2001-2018, 2020', 'Education (Q4); History and Philosophy of Science (Q4)'), (24053, 'Histoire et Mesure', 9821783, 0.101, 'Q4', 9, 14, 594, 5, 26, '8', '1986, 1989, 1991, 1993, 1999, 2001-2019', 'History (Q4)'), (24054, 'Historia scientiarum : international journal ', 2854821, 0.101, 'Q4', 5, 15, 339, 1, 38, '6', '1981, 1983-1984, 1986, 1992-1993, 2001-2004, 2008-2019', 'History and Philosophy of Science (Q4)'), (24055, 'Historia Urbana', 1221650, 0.101, 'Q4', 1, 0, 0, 0, 40, '43', '2013-2019', 'History (Q4); Urban Studies (Q4)'), (24056, 'History Australia', 18334881, 0.101, 'Q4', 12, 56, 0, 6, 136, '2', '2003, 2005-2020', 'History (Q4)'), (24057, 'History of Photography', 3087298, 0.101, 'Q3', 11, 7, 0, 6, 56, '3', '1977-2020', 'Visual Arts and Performing Arts (Q3)'), (24058, 'History of Religions', 15456935, 0.101, 'Q4', 22, 9, 20, 6, 35, '2', '1966, 1979, 1982, 1996-2020', 'History (Q4); Religious Studies (Q4)'), (24059, 'Hokkaido Journal of Orthopaedics and Traumato', 13433873, 0.101, 'Q4', 2, 19, 239, 0, 30, '6', '1998-2010, 2016-2017, 2019', 'Orthopedics and Sports Medicine (Q4); Surgery (Q4)'), (24060, 'Hong Kong journal of Social Sciences', 10213619, 0.101, 'Q4', 1, 5, 154, 0, 36, '1', '2010-2014, 2016-2019', 'Social Sciences (miscellaneous) (Q4)'), (24061, 'Hong Kong Practitioner', 10273948, 0.101, 'Q4', 9, 5, 40, 1, 37, '35', '1997-2020', 'Family Practice (Q4)'), (24062, 'Horizons in Biblical Theology', 18712207, 0.101, 'Q4', 5, 11, 386, 1, 30, '16', '1979-1982, 1986-1988, 1994-2005, 2007-2020', 'Religious Studies (Q4)'), (24063, 'Humanitas', 8711569, 0.101, 'Q4', 0, 14, 466, 0, 26, '26', '2018-2019', 'Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24064, 'Human Rights', 24236489, 0.101, 'Q4', 0, 12, 168, 0, 25, '15', '2019', 'Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (24065, 'Humans and Nature', 9181725, 0.101, 'Q4', 5, 0, 0, 0, 19, '6', '1993-2003, 2005-2010, 2013-2019', 'Environmental Science (miscellaneous) (Q4)'), (24066, 'Huntington Library Quarterly', 1544399, 0.101, 'Q4', 18, 18, 942, 6, 85, '2', '1964, 1968-1969, 1971-1977, 1979, 1985, 1996-2019', 'History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24067, 'Hygiene + Medizin', 1723790, 0.101, 'Q4', 13, 45, 229, 3, 138, '5', '1980-2019', 'Infectious Diseases (Q4); Public Health, Environmental and Occupational Health (Q4)'), (24068, 'Iberoamericana. America Latina - Espana - Por', 15773388, 0.101, 'Q4', 2, 38, 1096, 9, 116, '12', '2002, 2017-2019', 'Anthropology (Q4); Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24069, 'Iberoromania', 190993, 0.101, 'Q3', 4, 16, 495, 4, 42, '5', '1969-1970, 1975, 1978-2004, 2006-2009, 2011-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24070, 'Iconographica', 17201764, 0.101, 'Q4', 1, 0, 0, 0, 34, '7', '2015-2019', 'Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24071, 'Illes i Imperis', 23854219, 0.101, 'Q4', 2, 13, 543, 6, 31, '12', '2017-2019', 'History (Q4)'), (24072, 'Ilu. Revista de Ciencias de las Religiones', 19883269, 0.101, 'Q4', 5, 0, 0, 3, 36, '12', '2011-2018', 'Philosophy (Q4); Religious Studies (Q4)'), (24073, 'Imagen Diagnostica', 21713669, 0.101, 'Q4', 2, 0, 0, 1, 24, '12', '2010-2017', 'Radiological and Ultrasound Technology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (24074, 'Imago Temporis - Medium Aevum', 18883931, 0.101, 'Q4', 4, 0, 0, 3, 30, '12', '2011-2013, 2016-2018', 'History (Q4)'), (24075, 'Indexer', 17560632, 0.101, 'Q4', 1, 17, 122, 2, 33, '3', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Library and Information Sciences (Q4)'), (24076, 'Indian Journal of Practical Pediatrics', 9729607, 0.101, 'Q4', 3, 1, 21, 0, 25, '4', '2003-2013, 2015-2018', 'Pediatrics, Perinatology and Child Health (Q4)'), (24077, 'In Esse: English Studies in Albania', 20787413, 0.101, 'Q4', 1, 0, 0, 0, 35, '119', '2017-2018', 'Education (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24078, 'Insuficiencia Cardiaca', 18523862, 0.101, 'Q4', 5, 13, 528, 4, 64, '46', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (24079, 'Interactive Entertainment Law Review', 25153870, 0.101, 'Q4', 1, 15, 39, 0, 22, '3', '2018-2020', 'Law (Q4)'), (24080, 'Interiors: Design, Architecture, Culture', 20419112, 0.101, 'Q3', 5, 12, 205, 1, 19, '3', '2010-2014, 2016-2019', 'Visual Arts and Performing Arts (Q3); Architecture (Q4); Cultural Studies (Q4)'), (24081, 'International and Comparative Law Review', 12138770, 0.101, 'Q4', 1, 18, 675, 2, 26, '17', '2019', 'Law (Q4)'), (24082, 'Internationale Politik', 1430175, 0.101, 'Q4', 7, 67, 0, 1, 344, '5', '1996-2019', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (24083, 'International Journal for the History of Engi', 17581214, 0.101, 'Q4', 3, 14, 133, 1, 28, '3', '2012-2020', 'Engineering (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24084, 'International Journal for the Study of New Re', 2041952, 0.101, 'Q4', 2, 0, 0, 2, 33, '3', '2016-2019', 'Religious Studies (Q4)'), (24085, 'International Journal of Applied Philosophy', 739098, 0.101, 'Q4', 4, 11, 379, 3, 40, '2', '1984-1985, 1987-1992, 1994-1995, 1998-2000, 2003-2005, 2018-2019', 'Philosophy (Q4)'), (24086, 'International Journal of Architectonic, Spati', 23251662, 0.101, 'Q3', 2, 14, 483, 3, 39, '2', '2012-2020', 'Visual Arts and Performing Arts (Q3); Architecture (Q4); Urban Studies (Q4)'), (24087, 'International Journal of Asian Studies', 14795914, 0.101, 'Q4', 11, 16, 748, 1, 19, '3', '1996, 2004-2005, 2007, 2009-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24088, 'International Journal of Cancer Research and ', 15541134, 0.101, 'Q4', 5, 0, 0, 0, 18, '2', '2010-2017', 'Oncology (Q4); Social Psychology (Q4)'), (24089, 'International Journal of Critical Cultural St', 23272376, 0.101, 'Q4', 3, 9, 242, 1, 24, '2', '2013-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24090, 'International Journal of Design in Society', 23251360, 0.101, 'Q4', 3, 13, 634, 1, 33, '2', '2013-2020', 'Cultural Studies (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24091, 'International Journal of Diverse Identities', 23277866, 0.101, 'Q4', 2, 1, 30, 0, 18, '2', '2013-2019', 'Anthropology (Q4); Cultural Studies (Q4); Gender Studies (Q4); Sociology and Political Science (Q4)'), (24092, 'International Journal of Early Childhood Lear', 23278722, 0.101, 'Q4', 3, 1, 45, 1, 18, '2', '2012-2019', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (24093, 'International Journal of Interdisciplinary Ci', 23272481, 0.101, 'Q4', 2, 5, 207, 1, 22, '2', '2012-2020', 'Sociology and Political Science (Q4)'), (24094, 'International Journal of Interdisciplinary Gl', 2324755, 0.101, 'Q4', 3, 16, 649, 4, 24, '2', '2013-2020', 'Social Sciences (miscellaneous) (Q4)'), (24095, 'International Journal of Islamic Thought', 22321314, 0.101, 'Q4', 1, 14, 496, 1, 33, '23', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24096, 'International Journal of Literary Humanities', 23277912, 0.101, 'Q4', 2, 12, 279, 3, 34, '2', '2013-2020', 'Literature and Literary Theory (Q4)'), (24097, 'International Journal of Persian Literature', 23765755, 0.101, 'Q3', 1, 4, 257, 0, 17, '2', '2016-2019', 'Literature and Literary Theory (Q3)'), (24098, 'International Journal of Platonic Tradition', 18725082, 0.101, 'Q4', 7, 7, 131, 0, 21, '16', '2007-2019', 'Philosophy (Q4)'), (24099, 'International Journal of Regional and Local H', 20514549, 0.101, 'Q4', 2, 8, 0, 2, 25, '3', '2015-2020', 'History (Q4)'), (24100, 'International Journal of Research on History ', 16088751, 0.101, 'Q4', 2, 0, 0, 4, 55, '5', '2015-2018', 'Education (Q4); History (Q4)'), (24101, 'International Journal of Science, Mathematics', 2327915, 0.101, 'Q4', 2, 17, 793, 1, 28, '2', '2012-2020', 'Education (Q4); Engineering (miscellaneous) (Q4); Physics and Astronomy (miscellaneous) (Q4)'), (24102, 'International Journal of Sino-Western Studies', 22422471, 0.101, 'Q4', 2, 23, 170, 3, 63, '38', '2016-2020', 'Cultural Studies (Q4); History (Q4); Religious Studies (Q4)'), (24103, 'International Journal of the Classical Tradit', 10730508, 0.101, 'Q3', 6, 36, 58, 8, 55, '16', '1994-1995, 2009-2020', 'Classics (Q3); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24104, 'International Journal of the Inclusive Museum', 18352022, 0.101, 'Q4', 6, 12, 669, 8, 38, '2', '2008-2020', 'Conservation (Q4); Museology (Q4)'), (24105, 'International Review of Medical Practice', 2657697, 0.101, 'Q4', 0, 0, 0, 0, 25, '17', '2019', 'Medicine (miscellaneous) (Q4)'), (24106, 'International Review of the Aesthetics and So', 3515796, 0.101, 'Q4', 4, 16, 530, 1, 32, '58', '2009-2016, 2018-2019', 'Music (Q4)'), (24107, 'Interpretation (United States)', 209635, 0.101, 'Q4', 5, 0, 0, 1, 20, '2', '2002-2018', 'Geology (Q4); Geophysics (Q4); Philosophy (Q4); Sociology and Political Science (Q4)'), (24108, 'Iride', 11227893, 0.101, 'Q4', 4, 12, 250, 4, 90, '7', '1997-2019', 'Philosophy (Q4)'), (24109, 'Irish Sword', 211389, 0.101, 'Q4', 1, 0, 0, 0, 32, '42', '1980-1981, 2001, 2011, 2013-2018', 'History (Q4)'), (24110, 'Irish Theological Quarterly', 211400, 0.101, 'Q4', 8, 20, 0, 8, 51, '2', '1951-1980, 1982-1983, 1985-1996, 1998-2020', 'Religious Studies (Q4)'), (24111, 'Islamic Africa', 2333262, 0.101, 'Q3', 6, 0, 0, 3, 27, '16', '2010-2019', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Religious Studies (Q4); Sociology and Political Science (Q4)'), (24112, 'Israel Economic Review', 7920385, 0.101, 'Q4', 5, 10, 115, 1, 20, '36', '2008-2016, 2018-2019', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (24113, 'Italian Culture', 15590909, 0.101, 'Q3', 6, 14, 407, 2, 26, '3', '1978, 1980-1981, 1983-1986, 1990-1995, 2009-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); Sociology and Political Science (Q4); Visual Arts and Performing Arts (Q4)'), (24114, 'Italienisch', 1714996, 0.101, 'Q4', 1, 8, 135, 0, 37, '19', '2011-2014, 2016-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24115, 'Japanese Journal of Clinical Ophthalmology', 18821308, 0.101, 'Q4', 8, 180, 1461, 4, 587, '6', '1960-1964, 1973-2020', 'Ophthalmology (Q4)'), (24116, 'Japanese Journal of Ecology', 215007, 0.101, 'Q4', 12, 25, 754, 4, 68, '6', '1979-2005, 2007-2011, 2013-2020', 'Ecology (Q4); Ecology, Evolution, Behavior and Systematics (Q4)'), (24117, 'Japanese Journal of Nephrology', 3852385, 0.101, 'Q4', 16, 0, 0, 0, 23, '6', '1959-2017', 'Medicine (miscellaneous) (Q4); Nephrology (Q4)'), (24118, 'Japanese Journal of Neuropsychopharmacology', 3887588, 0.101, 'Q4', 10, 0, 0, 2, 24, '6', '1982-1997, 2002-2017', 'Clinical Psychology (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4); Psychiatry and Mental Health (Q4)'), (24119, 'Japanese Magazine of Mineralogical and Petrol', 13497979, 0.101, 'Q4', 10, 3, 184, 4, 30, '6', '2000-2005, 2007-2013, 2015-2020', 'Economic Geology (Q4); Geochemistry and Petrology (Q4)'), (24120, 'Jazz Perspectives', 17494060, 0.101, 'Q4', 4, 18, 0, 0, 18, '3', '2010-2018, 2020', 'Cultural Studies (Q4); Music (Q4)'), (24121, 'Jazz Research Journal', 17538645, 0.101, 'Q4', 0, 0, 0, 0, 32, '3', '2017-2019', 'Music (Q4)'), (24122, 'JK Practitioner', 9718834, 0.101, 'Q4', 11, 0, 0, 2, 26, '4', '1997-2008, 2011-2018', 'Medicine (miscellaneous) (Q4)'), (24123, 'Journal de Medecine Legale Droit Medical', 2496208, 0.101, 'Q4', 7, 0, 0, 5, 135, '8', '1983-2019', 'Pathology and Forensic Medicine (Q4)'), (24124, 'Journal for the History of Modern Theology', 16129776, 0.101, 'Q4', 6, 11, 376, 0, 27, '5', '1994-2019', 'History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24125, 'Journal for the Study of the Historical Jesus', 14768690, 0.101, 'Q4', 11, 13, 1079, 7, 40, '16', '2003-2020', 'History (Q4); Linguistics and Language (Q4); Religious Studies (Q4)'), (24126, 'Journal fuer Gastroenterologische und Hepatol', 17286263, 0.101, 'Q4', 4, 20, 437, 0, 38, '28', '2005-2020', 'Gastroenterology (Q4); Hepatology (Q4)'), (24127, 'Journal fur Neurologie, Neurochirurgie und Ps', 16081587, 0.101, 'Q4', 7, 17, 197, 2, 46, '28', '2002-2020', 'Neurology (clinical) (Q4); Psychiatry and Mental Health (Q4); Surgery (Q4)'), (24128, 'Journal of Aesthetics and Phenomenology', 20539320, 0.101, 'Q4', 3, 0, 0, 2, 28, '3', '2014-2019', 'Philosophy (Q4)'), (24129, 'Journal of Anglican Studies', 17455278, 0.101, 'Q4', 8, 23, 1251, 2, 33, '3', '2003-2014, 2016-2020', 'Religious Studies (Q4)'), (24130, 'Journal of Anglo-Portuguese Studies', 871682, 0.101, 'Q3', 0, 0, 0, 0, 18, '26', '2018', 'Literature and Literary Theory (Q3); Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); History (Q4)'), (24131, 'Journal of Austrian studies', 23271809, 0.101, 'Q4', 4, 19, 624, 1, 38, '2', '2012-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24132, 'Journal of Bamboo and Rattan', 15691586, 0.101, 'Q4', 13, 0, 0, 2, 21, '4', '2002-2007, 2009-2010, 2014-2018', 'Agronomy and Crop Science (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Horticulture (Q4); Plant Science (Q4)'), (24133, 'Journal of Beckett Studies', 17597811, 0.101, 'Q4', 4, 32, 309, 8, 41, '3', '2012-2020', 'Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24134, 'Journal of British and Irish Innovative Poetr', 1758972, 0.101, 'Q3', 0, 17, 876, 0, 16, '3', '2019-2020', 'Literature and Literary Theory (Q3)'), (24135, 'Journal of Contemporary Iraq and the Arab Wor', 25158546, 0.101, 'Q4', 1, 11, 353, 1, 16, '3', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24136, 'Journal of Contemporary Painting', 20526709, 0.101, 'Q3', 1, 0, 0, 0, 18, '3', '2019', 'Visual Arts and Performing Arts (Q3)'), (24137, 'Journal of Curatorial Studies', 20455836, 0.101, 'Q4', 2, 14, 693, 1, 32, '3', '2016-2020', 'Conservation (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)'), (24138, 'Journal of Health Care Finance', 10786767, 0.101, 'Q4', 26, 16, 488, 0, 16, '2', '1994-2016, 2019-2020', 'Health Policy (Q4)'), (24139, 'Journal of Historical Research in Music Educa', 15366006, 0.101, 'Q4', 1, 17, 0, 0, 17, '2', '2018-2020', 'Education (Q4); History (Q4); Music (Q4)'), (24140, 'Journal of Holocaust Research', 25785656, 0.101, 'Q4', 1, 25, 0, 1, 17, '2', '2019-2020', 'History (Q4); Law (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (24141, 'Journal of Home Economics Research', 11180021, 0.101, 'Q4', 2, 34, 830, 2, 37, '51', '2009-2012, 2019', 'Economics and Econometrics (Q4)'), (24142, 'Journal of Horticultural Sciences', 973354, 0.101, 'Q4', 1, 13, 218, 1, 26, '4', '2019', 'Ecology, Evolution, Behavior and Systematics (Q4); Horticulture (Q4); Plant Science (Q4)'), (24143, 'Journal of Inklings Studies', 20458797, 0.101, 'Q3', 0, 8, 218, 0, 17, '3', '2018-2020', 'Literature and Literary Theory (Q3); History (Q4)'), (24144, 'Journal of International and Comparative Law', 23133775, 0.101, 'Q4', 1, 10, 0, 2, 37, '35', '2018-2020', 'Law (Q4)'), (24145, 'Journal of International Peacekeeping', 18754104, 0.101, 'Q4', 9, 3, 559, 0, 32, '16', '1995, 1997, 2001, 2004-2006, 2008, 2010-2011, 2013-2017, 2020', 'Infectious Diseases (Q4); Pharmacology (Q4); Pharmacology (medical) (Q4); Virology (Q4)'), (24146, 'Journal of Jewish Studies', 222097, 0.101, 'Q4', 13, 16, 1065, 3, 51, '16', '2002-2012, 2014-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)'), (24147, 'Journal of Jewish Thought and Philosophy', 1053699, 0.101, 'Q3', 8, 11, 516, 1, 28, '16', '1993-1995, 1997-2004, 2006-2020', 'Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4); Philosophy (Q4); Religious Studies (Q4); Sociology and Political Science (Q4)'), (24148, 'Journal of Medieval Religious Cultures', 19476566, 0.101, 'Q4', 3, 9, 298, 3, 24, '2', '2014-2020', 'History (Q4); Religious Studies (Q4)'), (24149, 'Journal of Modern Chinese History', 17535662, 0.101, 'Q4', 3, 8, 456, 4, 41, '3', '2007-2020', 'History (Q4)'), (24150, 'Journal of Moravian History', 19336632, 0.101, 'Q4', 2, 5, 0, 1, 21, '2', '2014-2020', 'History (Q4); Religious Studies (Q4)'), (24151, 'Journal of Nara Medical Association', 4695550, 0.101, 'Q4', 4, 3, 44, 0, 24, '6', '1973-2019', 'Medicine (miscellaneous) (Q4)'), (24152, 'Journal of New England Water Environment Asso', 10773002, 0.101, 'Q4', 4, 0, 0, 3, 74, '2', '1993-2019', 'Pollution (Q4); Water Science and Technology (Q4)'), (24153, 'Journal of New Zealand and Pacific Studies', 20504039, 0.101, 'Q3', 1, 13, 183, 0, 29, '3', '2017-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)'), (24154, 'Journal of Religion and Popular Culture', 1703289, 0.101, 'Q4', 4, 9, 546, 4, 47, '9', '2013-2020', 'Cultural Studies (Q4); Religious Studies (Q4)'), (24155, 'Journal of Religion in Japan', 22118349, 0.101, 'Q4', 8, 10, 386, 3, 24, '16', '2012-2019', 'Religious Studies (Q4)'), (24156, 'Journal of Septuagint and Cognate Studies', 23254793, 0.101, 'Q4', 1, 0, 0, 1, 31, '2', '2017-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Religious Studies (Q4)'), (24157, 'Journal of Spacecraft Technology', 9711600, 0.101, 'Q4', 6, 6, 43, 0, 30, '4', '1994-2016', 'Aerospace Engineering (Q4)'), (24158, 'Journal of Taiwan Society of Naval Architects', 10234535, 0.101, 'Q4', 4, 5, 79, 0, 25, '22', '2006-2018', 'Mechanical Engineering (Q4); Ocean Engineering (Q4)'), (24159, 'Journal of Taxation', 224863, 0.101, 'Q4', 7, 0, 0, 2, 112, '2', '1998-2018', 'Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (24160, 'Journal of the Australasian Tax Teachers Asso', 1832911, 0.101, 'Q4', 1, 0, 0, 0, 24, '11', '2018-2019', 'Accounting (Q4); Finance (Q4); Law (Q4)'), (24161, 'Journal of the Australian Early Medieval Asso', 14499320, 0.101, 'Q4', 5, 0, 0, 0, 16, '11', '2005-2019', 'History (Q4)'), (24162, 'Journal of the IEST', 10984321, 0.101, 'Q4', 12, 9, 0, 1, 18, '2', '1997-2013, 2016-2019', 'Environmental Chemistry (Q4); Environmental Engineering (Q4); Safety, Risk, Reliability and Quality (Q4)'), (24163, 'Journal of the Illuminating Engineering Insti', 192341, 0.101, 'Q4', 4, 6, 26, 0, 27, '6', '1917-1934, 1936-1942, 1950-1979, 2004-2020', 'Electrical and Electronic Engineering (Q4)'), (24164, 'Journal of the Japan Research Association for', 372072, 0.101, 'Q4', 7, 11, 28, 4, 87, '6', '1960, 1962, 1964, 1966, 1969-1970, 1978-2019', 'Business, Management and Accounting (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (24165, 'Journal of the Malaysian Branch of the Royal ', 21804338, 0.101, 'Q4', 5, 0, 0, 6, 35, '23', '1972-1973, 1975-1976, 1988, 2010-2019', 'Cultural Studies (Q4); Geography, Planning and Development (Q4); History (Q4)'), (24166, 'Journal of the Midwest Modern Language Associ', 7425562, 0.101, 'Q4', 5, 0, 0, 0, 39, '2', '2002-2018', 'Literature and Literary Theory (Q4)'), (24167, 'Journal of the New England Water Works Associ', 284939, 0.101, 'Q4', 7, 0, 0, 0, 32, '2', '1970-2012, 2016-2018', 'Civil and Structural Engineering (Q4); Water Science and Technology (Q4)'), (24168, 'Journal of Thermoelectricity', 16078829, 0.101, 'Q4', 4, 0, 0, 6, 118, '44', '2012, 2016-2019', 'Condensed Matter Physics (Q4); Electrical and Electronic Engineering (Q4); Materials Chemistry (Q4)'), (24169, 'Journal of the Yamashina Institute for Ornith', 18820999, 0.101, 'Q4', 6, 15, 146, 0, 33, '6', '2005-2020', 'Animal Science and Zoology (Q4)'), (24170, 'Journal on European History of Law', 20426402, 0.101, 'Q4', 1, 41, 283, 5, 126, '3', '2017-2020', 'History (Q4); Law (Q4)'), (24171, 'Judaica Bohemiae', 225738, 0.101, 'Q4', 3, 7, 0, 0, 18, '31', '2007, 2009-2019', 'Cultural Studies (Q4); History (Q4); Religious Studies (Q4)'), (24172, 'Keats-Shelley Review', 20421362, 0.101, 'Q4', 3, 15, 0, 3, 39, '3', '1986-1993, 1995, 2002-2020', 'Literature and Literary Theory (Q4)'), (24173, 'Klinicka Imunologia a Alergologia', 13350013, 0.101, 'Q4', 3, 0, 0, 0, 19, '53', '1993-2012, 2017', 'Immunology and Allergy (Q4)'), (24174, 'Komunikacija i Kultura Online', 22174257, 0.101, 'Q3', 0, 14, 334, 0, 23, '55', '2018-2019', 'Literature and Literary Theory (Q3); Communication (Q4); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24175, 'Korean Journal of Medical Mycology', 12264709, 0.101, 'Q4', 9, 0, 0, 0, 29, '13', '2002-2019', 'Infectious Diseases (Q4)'), (24176, 'Kranion', 15778843, 0.101, 'Q4', 2, 0, 0, 1, 34, '12', '2011-2014, 2017-2019', 'Neurology (clinical) (Q4)'), (24177, 'Krankenhaushygiene und Infektionsverhutung', 7203373, 0.101, 'Q4', 4, 0, 0, 0, 32, '5', '1970, 1981-1986, 2004-2019', 'Infectious Diseases (Q4); Microbiology (medical) (Q4)'), (24178, 'Kulturne Dejiny', 13382209, 0.101, 'Q4', 2, 26, 1059, 0, 40, '53', '2016-2020', 'Anthropology (Q4); Cultural Studies (Q4); History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24179, 'KulturPoetik', 16161203, 0.101, 'Q4', 1, 0, 0, 2, 34, '5', '2009, 2014-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24180, 'Kunstiteaduslikke Uurimusi', 14062860, 0.101, 'Q4', 4, 7, 0, 3, 40, '71', '2011-2019', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24181, 'Landscapes', 14929600, 0.101, 'Q4', 2, 0, 0, 2, 47, '2', '2003, 2011, 2014-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Architecture (Q4); Geography, Planning and Development (Q4); History (Q4); Nature and Landscape Conservation (Q4); Visual Arts and Performing Ar'), (24182, 'Law and Economics Yearly Review', 20509014, 0.101, 'Q4', 5, 24, 2242, 2, 26, '3', '2012-2018', 'Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4)'), (24183, 'Law and Literature', 1535685, 0.101, 'Q4', 12, 38, 162, 5, 71, '3', '1989-2003, 2007, 2010-2020', 'Law (Q4)'), (24184, 'Le Mali me&amp;#x0301;dical', 19930836, 0.101, 'Q4', 6, 0, 0, 1, 44, '133', '2006-2012, 2017-2018', 'Medicine (miscellaneous) (Q4)'), (24185, 'Letteratura e Letterature', 1971906, 0.101, 'Q4', 1, 0, 0, 1, 32, '7', '2014-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24186, 'Lias', 20334753, 0.101, 'Q3', 5, 0, 0, 0, 16, '24', '1974, 1983, 1989, 2002-2007, 2010-2019', 'Literature and Literary Theory (Q3); History (Q4); Philosophy (Q4)'), (24187, 'LIA Today', 26905973, 0.101, 'Q4', 3, 9, 21, 1, 51, '2', '2002-2018', 'Atomic and Molecular Physics, and Optics (Q4); Electrical and Electronic Engineering (Q4)'), (24188, 'Library and Information History', 17583489, 0.101, 'Q4', 3, 0, 0, 1, 31, '3', '2014-2019', 'History and Philosophy of Science (Q4)'), (24189, 'Lied und Populare Kultur', 16190548, 0.101, 'Q4', 4, 0, 0, 1, 40, '5', '2002-2005, 2008-2014, 2017-2019', 'Cultural Studies (Q4); Music (Q4)'), (24190, 'Lijecnicki Vjesnik', 243477, 0.101, 'Q4', 15, 47, 1524, 8, 123, '58', '1949-2020', 'Medicine (miscellaneous) (Q4)'), (24191, 'Lingua e Stile', 24385, 0.101, 'Q3', 5, 0, 0, 1, 25, '7', '2002-2018', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4); Philosophy (Q4)'), (24192, 'Lingvisticae Investigationes', 3784169, 0.101, 'Q4', 11, 16, 747, 3, 38, '16', '1977-1997, 1999-2019', 'Linguistics and Language (Q4)'), (24193, 'Lino', 2112574, 0.101, 'Q4', 2, 11, 549, 1, 40, '12', '2012-2020', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (24194, 'Literatura: Teoria, Historia, Critica', 1235931, 0.101, 'Q3', 1, 31, 872, 1, 21, '47', '2019-2020', 'Literature and Literary Theory (Q3)'), (24195, 'Lithuanian historical studies / Lithuanian In', 13922343, 0.101, 'Q4', 4, 6, 235, 1, 17, '5', '1996-2015, 2017-2019', 'Cultural Studies (Q4); History (Q4); Religious Studies (Q4); Sociology and Political Science (Q4)'), (24196, 'London Business School Review', 20571607, 0.101, 'Q4', 30, 0, 0, 2, 164, '3', '2015-2019', 'Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Strategy and Management (Q4)'), (24197, 'Magazine Antiques', 1619284, 0.101, 'Q4', 3, 0, 0, 0, 30, '2', '1975, 1984, 2002-2012, 2014-2015, 2017', 'Visual Arts and Performing Arts (Q4)'), (24198, 'Magnificat Cultura i Literatura Medievals', 23868295, 0.101, 'Q3', 2, 9, 506, 0, 18, '12', '2014-2019', 'Literature and Literary Theory (Q3); History (Q4)'), (24199, 'Manuscripta Orientalia', 24153613, 0.101, 'Q4', 2, 11, 183, 2, 39, '10', '2016-2020', 'Cultural Studies (Q4); Language and Linguistics (Q4); Library and Information Sciences (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24200, 'Mapping and Image Science', 16518705, 0.101, 'Q4', 4, 0, 0, 0, 24, '20', '2005-2006, 2009-2018', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'), (24201, 'Massachusetts Review', 254878, 0.101, 'Q4', 8, 8, 1, 3, 94, '2', '1977, 1981, 2002-2020', 'Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24202, 'Matematica, Cultura e Societa', 2499751, 0.101, 'Q4', 11, 0, 0, 2, 29, '7', '2017-2019', 'Mathematics (miscellaneous) (Q4)'), (24203, 'Mathematics Teaching-Research Journal', 25734377, 0.101, 'Q4', 3, 6, 70, 1, 30, '2', '2006-2020', 'Education (Q4); Mathematics (miscellaneous) (Q4)'), (24204, 'Mediaevalia Historica Bohemica', 862979, 0.101, 'Q4', 2, 3, 147, 1, 33, '31', '2017-2019', 'History (Q4)'), (24205, 'Mediaeval Studies', 765872, 0.101, 'Q4', 4, 0, 0, 0, 18, '9', '1960, 1962, 1970, 1975, 1977-1980, 1983, 2012-2014, 2016-2018', 'History (Q4)'), (24206, 'Medica Jadertina', 3510093, 0.101, 'Q4', 5, 55, 1070, 1, 88, '58', '1988, 1990-1995, 1997-2000, 2002-2020', 'Medicine (miscellaneous) (Q4)'), (24207, 'Medicina Clinica Practica', 26039249, 0.101, 'Q4', 1, 57, 518, 4, 64, '12', '2018-2020', 'Medicine (miscellaneous) (Q4)'), (24208, 'Mediterranean Chronicle', 17919266, 0.101, 'Q4', 1, 0, 0, 0, 34, '39', '2017-2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4)'), (24209, 'Mediterranean Historical Review', 1743940, 0.101, 'Q4', 16, 11, 745, 2, 28, '3', '1986-2020', 'Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)'), (24210, 'Mediterranee', 258296, 0.101, 'Q4', 7, 8, 192, 1, 22, '8', '2011, 2013-2018', 'Earth and Planetary Sciences (miscellaneous) (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4)'), (24211, 'Medizinrecht', 14338629, 0.101, 'Q4', 6, 266, 0, 16, 297, '5', '1990, 1992, 2004-2020', 'Health Policy (Q4); Issues, Ethics and Legal Aspects (Q4)'), (24212, 'Metacritic Journal for Comparative Studies an', 24578827, 0.101, 'Q4', 1, 10, 268, 0, 19, '43', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24213, 'Methexis', 3270289, 0.101, 'Q4', 3, 10, 282, 1, 33, '16', '2012-2014, 2016-2020', 'Philosophy (Q4)'), (24214, 'Metodo', 22819177, 0.101, 'Q4', 1, 9, 336, 0, 18, '19', '2019', 'Philosophy (Q4)'), (24215, 'Metropolitan Museum Journal', 21693072, 0.101, 'Q4', 5, 12, 391, 1, 24, '24', '2010-2011, 2013-2019', 'Conservation (Q4); Museology (Q4)'), (24216, 'Michigan historical review, The', 8901686, 0.101, 'Q4', 1, 13, 1093, 1, 25, '2', '1986, 1989, 1997, 2016-2019', 'History (Q4)'), (24217, 'Michigan Quarterly Review', 262420, 0.101, 'Q3', 9, 54, 114, 2, 140, '2', '1964-1965, 1967, 1971, 2002-2020', 'Literature and Literary Theory (Q3)'), (24218, 'Middle Eastern Literatures', 1475262, 0.101, 'Q4', 5, 7, 145, 6, 36, '3', '2009-2019', 'Literature and Literary Theory (Q4)'), (24219, 'Midwest Quarterly, The', 263451, 0.101, 'Q4', 5, 0, 0, 2, 48, '2', '1978, 1980-1981, 1985, 2000-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24220, 'Military Law Review', 264040, 0.101, 'Q4', 11, 0, 0, 0, 25, '2', '1973, 1987, 1989, 1995-2019', 'Law (Q4)'), (24221, 'Milton Quarterly', 1094348, 0.101, 'Q4', 12, 13, 250, 0, 36, '2', '1967-2020', 'Literature and Literary Theory (Q4)'), (24222, 'Ming studies', 147037, 0.101, 'Q4', 5, 9, 221, 1, 17, '2', '1975-1991, 1994-2001, 2003-2020', 'Cultural Studies (Q4); History (Q4)'), (24223, 'Mitteilungen - Verbandes der Deutschen Hohlen', 5052211, 0.101, 'Q4', 5, 4, 168, 0, 28, '5', '1985-2008, 2011, 2013-2018, 2020', 'Atmospheric Science (Q4)'), (24224, 'Moenia', 11372346, 0.101, 'Q4', 1, 0, 0, 0, 32, '12', '2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24225, 'Moreana', 478105, 0.101, 'Q4', 4, 10, 437, 3, 33, '8', '1975-1976, 2002-2019', 'History (Q4); Law (Q4); Religious Studies (Q4)'), (24226, 'Mouseion', 19135416, 0.101, 'Q4', 1, 16, 667, 3, 31, '9', '2019-2020', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4)'), (24227, 'Moyen Age', 272841, 0.101, 'Q3', 6, 33, 1908, 0, 21, '24', '2001-2018, 2020', 'Literature and Literary Theory (Q3); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24228, 'Moyen Francais', 2260174, 0.101, 'Q4', 3, 0, 0, 0, 36, '24', '2002-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24229, 'Museum History Journal', 19369824, 0.101, 'Q4', 5, 12, 0, 9, 33, '3', '2008-2020', 'Conservation (Q4); History (Q4); Museology (Q4)'), (24230, 'Musical Quarterly', 17418399, 0.101, 'Q4', 17, 7, 566, 4, 41, '2', '1915-1986, 1989-2002, 2004-2007, 2009-2019', 'Music (Q4)'), (24231, 'Music in Art', 15227464, 0.101, 'Q3', 1, 0, 0, 1, 23, '2', '2018-2019', 'Visual Arts and Performing Arts (Q3); History (Q4); Music (Q4)'), (24232, 'Musicology Australia', 1949453, 0.101, 'Q4', 8, 4, 52, 2, 31, '3', '1964, 1967-1968, 1974, 1979-1980, 1982, 1985-1988, 1990-2005, 2007-2020', 'Music (Q4)'), (24233, 'Musikforschung', 274801, 0.101, 'Q4', 4, 7, 433, 2, 39, '5', '2002-2013, 2016-2019', 'Music (Q4)'), (24234, 'MusikTheorie', 1774182, 0.101, 'Q4', 3, 0, 0, 0, 25, '5', '2002-2015, 2018', 'Music (Q4)'), (24235, 'Muveszettorteneti Ertesito', 15882802, 0.101, 'Q4', 3, 0, 0, 0, 31, '50', '2007-2018', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (24236, 'Muzealnictwo', 23914815, 0.101, 'Q4', 1, 23, 687, 2, 24, '17', '2019-2020', 'Conservation (Q4); Museology (Q4)'), (24237, 'Narodopisny vestnik', 25710982, 0.101, 'Q4', 1, 9, 230, 0, 21, '31', '2018-2020', 'Anthropology (Q4); Cultural Studies (Q4); History (Q4)'), (24238, 'Nederlandse Letterkunde', 13845829, 0.101, 'Q4', 4, 9, 518, 2, 40, '16', '2009-2019', 'Literature and Literary Theory (Q4)'), (24239, 'Neue Zeitschrift fur Musik', 9456945, 0.101, 'Q4', 1, 103, 315, 2, 201, '5', '2002-2019', 'Music (Q4)'), (24240, 'Neurophysiologie-Labor', 14394847, 0.101, 'Q4', 3, 0, 0, 1, 55, '5', '2000-2019', 'Neurology (clinical) (Q4); Pathology and Forensic Medicine (Q4); Physiology (medical) (Q4)'), (24241, 'New Cinemas', 14742756, 0.101, 'Q4', 4, 5, 136, 5, 26, '3', '2012-2018, 2020', 'Communication (Q4); Visual Arts and Performing Arts (Q4)'), (24242, 'New Zealand Journal of History', 288322, 0.101, 'Q4', 11, 0, 0, 3, 35, '41', '1978-1979, 1981-1982, 1988, 1999, 2001-2019', 'History (Q4)'), (24243, 'Nigerian Journal of Nutritional Sciences', 1890913, 0.101, 'Q4', 1, 0, 0, 2, 40, '51', '2019', 'Endocrinology, Diabetes and Metabolism (Q4); Food Science (Q4); Public Health, Environmental and Occupational Health (Q4)'), (24244, 'Nineteenth Century Prose', 10520406, 0.101, 'Q4', 5, 8, 205, 0, 40, '2', '2002-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24245, 'Nka', 21527792, 0.101, 'Q3', 1, 26, 716, 2, 23, '2', '2019-2020', 'Visual Arts and Performing Arts (Q3); Anthropology (Q4)'), (24246, 'Nobel Medicus', 13052381, 0.101, 'Q4', 7, 28, 809, 5, 80, '18', '2005-2020', 'Medicine (miscellaneous) (Q4)'), (24247, 'North and West London Journal of General Prac', 14751763, 0.101, 'Q4', 1, 0, 0, 0, 27, '3', '2003-2007, 2017-2018', 'Family Practice (Q4)'), (24248, 'Northern History', 17458706, 0.101, 'Q4', 10, 22, 0, 1, 32, '3', '1966-2020', 'History (Q4)'), (24249, 'Nosileftiki', 11056843, 0.101, 'Q4', 4, 27, 680, 6, 87, '39', '1979, 1988-1992, 2010-2020', 'Nursing (miscellaneous) (Q4)'), (24250, 'NTUT Journal of Intellectual Property Law and', 22266771, 0.101, 'Q4', 2, 9, 213, 1, 20, '22', '2012-2019', 'Business and International Management (Q4); Law (Q4); Strategy and Management (Q4)'), (24251, 'Nuclear Future', 17452058, 0.101, 'Q4', 6, 0, 0, 1, 38, '3', '2005-2006, 2008-2013, 2018-2019', 'Civil and Structural Engineering (Q4); Electrical and Electronic Engineering (Q4); Mechanical Engineering (Q4); Nuclear Energy and Engineering (Q4); Ocean Engineering (Q4); Safety, Risk, Reliability a'), (24252, 'Oase', 1696238, 0.101, 'Q4', 2, 0, 0, 1, 26, '16', '2012-2017', 'Architecture (Q4); History (Q4); Visual Arts and Performing Arts (Q4)'), (24253, 'Onkologia i Radioterapia', 18968961, 0.101, 'Q4', 2, 45, 1300, 2, 49, '17', '2010-2020', 'Oncology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (24254, 'Onkologie (Czech Republic)', 18024475, 0.101, 'Q4', 3, 25, 468, 4, 139, '31', '2011-2020', 'Cancer Research (Q4); Medicine (miscellaneous) (Q4); Oncology (Q4)'), (24255, 'Ons Geestelijk Erf', 17831652, 0.101, 'Q4', 7, 0, 0, 0, 28, '24', '1996-2004, 2008-2018', 'History (Q4); Religious Studies (Q4)'), (24256, 'Osteologicky Bulletin', 12113778, 0.101, 'Q4', 4, 0, 0, 0, 17, '31', '2002-2017', 'Endocrinology, Diabetes and Metabolism (Q4); Orthopedics and Sports Medicine (Q4)'), (24257, 'Osterreichische Zeitschrift fur Volkskunde', 299669, 0.101, 'Q4', 4, 0, 0, 2, 24, '28', '2002-2019', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24258, 'Oud Holland', 18750176, 0.101, 'Q4', 4, 11, 558, 0, 29, '16', '1883-1885, 1887-1888, 1891-1899, 1901-1902, 1904-1909, 1911-1912, 1914-1919, 1921-1922, 1925-1935, 1', 'Visual Arts and Performing Arts (Q4)'), (24259, 'Overland', 307416, 0.101, 'Q4', 4, 42, 67, 5, 177, '11', '2009-2013, 2015, 2017-2019', 'Literature and Literary Theory (Q4)'), (24260, 'Pacific Northwest Quarterly', 308803, 0.101, 'Q4', 4, 0, 0, 0, 20, '2', '1967, 1974, 1980, 1982, 1986, 2000-2019', 'Cultural Studies (Q4); History (Q4)'), (24261, 'Paint and Coatings Industry', 8843848, 0.101, 'Q4', 7, 103, 284, 8, 83, '2', '1996-2018', 'Chemistry (miscellaneous) (Q4); Marketing (Q4); Surfaces, Coatings and Films (Q4)'), (24262, 'Palaeobulgarica', 26032899, 0.101, 'Q4', 0, 7, 235, 0, 25, '61', '2019-2020', 'History (Q4)'), (24263, 'Papers of the Bibliographical Society of Amer', 23776528, 0.101, 'Q4', 5, 12, 50, 2, 37, '2', '1947, 1970-1972, 1979, 1989, 1993, 1995, 2004-2005, 2008-2020', 'Library and Information Sciences (Q4); Literature and Literary Theory (Q4)'), (24264, 'Papers on Language and Literature', 311294, 0.101, 'Q3', 7, 14, 326, 7, 45, '2', '2002-2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24265, 'Paremia', 21721068, 0.101, 'Q4', 1, 0, 0, 1, 41, '12', '2017-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24266, 'Pennsylvania Magazine of History and Biograph', 21698546, 0.101, 'Q4', 9, 8, 159, 1, 27, '2', '1951, 1968, 1970, 1973, 1979-1982, 1984, 1989, 2002-2020', 'History (Q4)'), (24267, 'PentecoStudies', 20413599, 0.101, 'Q4', 4, 11, 352, 1, 23, '3', '2013-2019', 'Religious Studies (Q4)'), (24268, 'Peritia', 3321592, 0.101, 'Q3', 8, 12, 126, 1, 23, '24', '2002-2003, 2005, 2008, 2010-2011, 2014-2018', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language'), (24269, 'Perspective infirmie&amp;#x0300;re : revue of', 17081890, 0.101, 'Q4', 6, 0, 0, 3, 91, '9', '2003-2019', 'Medicine (miscellaneous) (Q4)'), (24270, 'Pharmakeftiki', 22413081, 0.101, 'Q4', 4, 9, 345, 2, 38, '39', '2008-2010, 2012-2020', 'Pharmaceutical Science (Q4); Pharmacology (Q4)'), (24271, 'Pharma-Kritik', 10105409, 0.101, 'Q4', 2, 9, 66, 0, 37, '19', '1999-2020', 'Pharmacology (medical) (Q4)'), (24272, 'Philippine Statistician', 20940343, 0.101, 'Q4', 2, 1, 12, 3, 17, '63', '2015-2020', 'Statistics and Probability (Q4)'), (24273, 'Philip Roth Studies', 19405278, 0.101, 'Q3', 1, 15, 310, 0, 25, '2', '2018-2020', 'Literature and Literary Theory (Q3)'), (24274, 'Philosophische Rundschau', 318159, 0.101, 'Q4', 2, 18, 94, 0, 21, '5', '2004, 2010-2019', 'Philosophy (Q4)'), (24275, 'Physicist', 10363831, 0.101, 'Q4', 4, 36, 154, 2, 30, '11', '1999-2015, 2017-2020', 'Physics and Astronomy (miscellaneous) (Q4)'), (24276, 'Plainsong and Medieval Music', 14740087, 0.101, 'Q4', 8, 6, 150, 0, 20, '3', '1992-2020', 'Music (Q4)'), (24277, 'Poe Studies: History, Theory, Interpretation', 19474644, 0.101, 'Q3', 1, 12, 332, 1, 23, '2', '2013-2019', 'Literature and Literary Theory (Q3)'), (24278, 'Poetica', 3034178, 0.101, 'Q3', 8, 97, 4227, 2, 20, '5', '2002-2015, 2018-2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24279, 'Poetry Review', 322156, 0.101, 'Q4', 3, 11, 0, 0, 36, '3', '2002-2019', 'Literature and Literary Theory (Q4)'), (24280, 'Poetry Wales', 322202, 0.101, 'Q4', 1, 17, 50, 0, 36, '3', '2002-2012, 2014-2020', 'Literature and Literary Theory (Q4)'), (24281, 'Policlinico - Sezione Medica', 484717, 0.101, 'Q4', 1, 5, 161, 0, 20, '7', '1950-2013, 2015-2019', 'Medicine (miscellaneous) (Q4)'), (24282, 'Pomegranate', 17431735, 0.101, 'Q4', 8, 0, 0, 3, 31, '3', '2004-2018', 'Cultural Studies (Q4); Religious Studies (Q4)'), (24283, 'Popular Entertainment Studies', 18379303, 0.101, 'Q3', 3, 1, 4, 0, 20, '11', '2015-2019', 'Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); Music (Q4)'), (24284, 'Portuguese Studies', 2675315, 0.101, 'Q4', 7, 0, 0, 1, 38, '3', '2002-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24285, 'Prologue', 331031, 0.101, 'Q4', 3, 0, 0, 0, 26, '2', '1977, 1980, 1982, 1987, 2000, 2006-2017', 'History (Q4); Library and Information Sciences (Q4)'), (24286, 'Prometeica', 18529488, 0.101, 'Q4', 0, 16, 353, 0, 16, '46', '2019-2020', 'History and Philosophy of Science (Q4); Philosophy (Q4)'), (24287, 'Przeglad Archiwalny Instytutu Pamieci Narodow', 18991254, 0.101, 'Q4', 0, 0, 0, 0, 41, '17', '2016', 'Conservation (Q4); History (Q4); Library and Information Sciences (Q4)'), (24288, 'Przeglad Nauk Historycznych', 24507660, 0.101, 'Q4', 0, 14, 601, 0, 28, '17', '2019', 'History (Q4)'), (24289, 'Psychiatrie', 16144864, 0.101, 'Q4', 8, 0, 0, 0, 32, '5', '2011-2017', 'Psychiatry and Mental Health (Q4)'), (24290, 'Publications of the English Goethe Society', 9593683, 0.101, 'Q4', 2, 16, 0, 2, 41, '3', '1990-1993, 2011-2020', 'Literature and Literary Theory (Q4)'), (24291, 'Quaderni d Italianistica', 2268043, 0.101, 'Q3', 4, 2, 101, 0, 27, '9', '2002-2018', 'Literature and Literary Theory (Q3)'), (24292, 'Quaderns', 11385790, 0.101, 'Q4', 7, 0, 0, 1, 34, '12', '2011-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24293, 'Quaderns de Filologia: Estudis Literaris', 24441457, 0.101, 'Q3', 0, 0, 0, 0, 16, '12', '2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24294, 'Quebec Studies', 20521731, 0.101, 'Q4', 0, 9, 256, 0, 17, '3', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)'), (24295, 'Questions Liturgiques', 7745524, 0.101, 'Q4', 3, 0, 0, 0, 18, '24', '2011-2017, 2019', 'Religious Studies (Q4)'), (24296, 'Quest. Issues in Contemporary Jewish History', 2037741, 0.101, 'Q4', 2, 7, 0, 2, 34, '7', '2017-2019', 'History (Q4)'), (24297, 'Radovi Zavoda za Znanstvenoistrazivacki i Umj', 18469787, 0.101, 'Q4', 1, 0, 0, 3, 30, '58', '2018-2019', 'History and Philosophy of Science (Q4); Multidisciplinary (Q4); Social Sciences (miscellaneous) (Q4)'), (24298, 'Radwaste Solutions', 15294900, 0.101, 'Q4', 4, 0, 0, 0, 26, '2', '2003-2019', 'Nuclear Energy and Engineering (Q4); Safety, Risk, Reliability and Quality (Q4); Waste Management and Disposal (Q4)'), (24299, 'Ramus', 48671, 0.101, 'Q3', 9, 10, 131, 2, 24, '11', '2002-2019', 'Literature and Literary Theory (Q3); Classics (Q4)'), (24300, 'R and D: Research and Development Kobe Steel ', 3738868, 0.101, 'Q4', 10, 22, 106, 6, 143, '6', '1978-2019', 'Materials Chemistry (Q4); Mechanics of Materials (Q4); Metals and Alloys (Q4)'), (24301, 'Raritan', 2751607, 0.101, 'Q3', 8, 25, 0, 4, 106, '2', '2002-2020', 'Literature and Literary Theory (Q3); Philosophy (Q4); Visual Arts and Performing Arts (Q4)'), (24302, 'Rassegna della Letteratura Italiana', 339423, 0.101, 'Q3', 1, 6, 78, 0, 26, '7', '1979, 2002-2019', 'Literature and Literary Theory (Q3)'), (24303, 'Rassegna Iberistica', 3924777, 0.101, 'Q3', 1, 24, 498, 1, 25, '7', '2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24304, 'Rassegna Storica del Risorgimento', 339873, 0.101, 'Q4', 2, 0, 0, 0, 31, '7', '1987, 1999, 2002, 2009-2013, 2017-2018', 'History (Q4)'), (24305, 'Real Estate Taxation', 935107, 0.101, 'Q4', 2, 0, 0, 0, 25, '2', '1996-2017', 'Accounting (Q4); Economics and Econometrics (Q4); Finance (Q4)'), (24306, 'Recherches sur Diderot et sur L Encyclopedie', 19552416, 0.101, 'Q3', 6, 15, 301, 2, 27, '8', '2002-2014, 2016-2018', 'Literature and Literary Theory (Q3); Philosophy (Q4)'), (24307, 'Reflets et Perspectives de la Vie Economique', 17821509, 0.101, 'Q4', 8, 33, 749, 2, 45, '24', '1973-1975, 2001-2017, 2019-2020', 'Economics, Econometrics and Finance (miscellaneous) (Q4)'), (24308, 'Reflexe', 8626901, 0.101, 'Q4', 2, 28, 631, 1, 41, '31', '2014-2019', 'Philosophy (Q4); Religious Studies (Q4)'), (24309, 'Reformation and Renaissance Review', 14622459, 0.101, 'Q4', 2, 16, 736, 2, 37, '3', '2013-2020', 'Religious Studies (Q4)'), (24310, 'Religion and Literature', 294500, 0.101, 'Q4', 7, 0, 0, 0, 34, '2', '2002-2017', 'Literature and Literary Theory (Q4); Religious Studies (Q4)'), (24311, 'Religious Inquiries', 23224894, 0.101, 'Q4', 1, 5, 104, 1, 41, '15', '2017-2019', 'Philosophy (Q4); Religious Studies (Q4)'), (24312, 'Renaissance Drama', 21643415, 0.101, 'Q3', 8, 11, 267, 3, 29, '2', '2002-2006, 2010-2020', 'Literature and Literary Theory (Q3)'), (24313, 'Reports on Mathematical Logic', 20842589, 0.101, 'Q4', 6, 8, 116, 5, 20, '17', '2011-2014, 2016-2019', 'Logic (Q4); Philosophy (Q4)'), (24314, 'Res Musica', 23828080, 0.101, 'Q4', 1, 11, 347, 2, 16, '71', '2018', 'Cultural Studies (Q4); Music (Q4)'), (24315, 'Res Rhetorica', 23923113, 0.101, 'Q4', 1, 36, 1157, 2, 28, '17', '2019-2020', 'Communication (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24316, 'Review of Economic Analysis', 19733909, 0.101, 'Q4', 1, 28, 1238, 0, 18, '9', '2019-2020', 'Economics and Econometrics (Q4)'), (24317, 'Review of Rabbinic Judaism', 15700704, 0.101, 'Q4', 7, 11, 630, 2, 31, '16', '1998-2020', 'History (Q4); Religious Studies (Q4)'), (24318, 'Revista Arheologica', 1857016, 0.101, 'Q4', 1, 1, 32, 3, 34, '123', '2017-2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (24319, 'Revista Conhecimento Online', 21768501, 0.101, 'Q4', 0, 15, 524, 0, 29, '14', '2019-2020', 'Education (Q4); Multidisciplinary (Q4)'), (24320, 'Revista de Ciencias Farmaceuticas Basica e Ap', 18084532, 0.101, 'Q4', 16, 16, 617, 2, 64, '14', '2005-2017', 'Pharmaceutical Science (Q4)'), (24321, 'Revista de Estudios Colombianos', 24746819, 0.101, 'Q4', 1, 0, 0, 2, 36, '2', '2017-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24322, 'Revista de Estudios Norteamericanos', 22538410, 0.101, 'Q4', 1, 11, 390, 2, 39, '12', '2012-2019', 'Literature and Literary Theory (Q4)'), (24323, 'Revista de Estudios Orteguianos', 15770079, 0.101, 'Q4', 2, 0, 0, 1, 25, '12', '2012-2017, 2019', 'Philosophy (Q4)'), (24324, 'Revista de Estudos Criminais', 16768698, 0.101, 'Q4', 1, 8, 395, 1, 32, '14', '2019-2020', 'Law (Q4)'), (24325, 'Revista de Etnografie si Folclor', 348198, 0.101, 'Q4', 1, 0, 0, 1, 27, '43', '2018-2019', 'Anthropology (Q4); Cultural Studies (Q4)'), (24326, 'Revista de Etnologie si Culturologie', 18572049, 0.101, 'Q4', 0, 0, 0, 0, 32, '123', '2019', 'Anthropology (Q4); Cultural Studies (Q4)'), (24327, 'Revista de Filologia Alemana', 11330406, 0.101, 'Q4', 5, 9, 361, 1, 34, '12', '1996-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24328, 'Revista de Fitoterapia', 15760952, 0.101, 'Q4', 3, 0, 0, 1, 21, '12', '2009-2019', 'Complementary and Alternative Medicine (Q4)'), (24329, 'Revista de Hispanismo Filosofico', 11368071, 0.101, 'Q4', 2, 0, 0, 0, 19, '12', '2013-2014, 2016, 2018-2019', 'Philosophy (Q4)'), (24330, 'Revista de Literatura Medieval', 11303611, 0.101, 'Q4', 3, 13, 274, 3, 32, '12', '2002-2005, 2007-2013, 2015, 2017-2019', 'Literature and Literary Theory (Q4)'), (24331, 'Revista de Musicologia', 15785297, 0.101, 'Q4', 2, 0, 0, 4, 30, '12', '2016-2019', 'Music (Q4)'), (24332, 'Revista de Obras Publicas', 348619, 0.101, 'Q4', 8, 131, 421, 7, 434, '12', '1996-2019', 'Civil and Structural Engineering (Q4)'), (24333, 'Revista de Psicologia de la Salud', 2146118, 0.101, 'Q4', 1, 9, 294, 2, 51, '12', '2018-2019', 'Clinical Psychology (Q4); Public Health, Environmental and Occupational Health (Q4)'), (24334, 'Revista de Quimica e Industria Textil', 23854812, 0.101, 'Q4', 0, 0, 0, 0, 26, '12', '2010-2012, 2014-2018', 'Business and International Management (Q4); Chemical Engineering (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)'), (24335, 'Revista Espanola de Filosofia Medieval', 25307878, 0.101, 'Q4', 1, 14, 0, 1, 18, '12', '2018-2020', 'History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24336, 'Revista Espanola de Pediatria', 15781542, 0.101, 'Q4', 9, 0, 0, 1, 43, '12', '1946, 1948-1965, 1972-2017', 'Pediatrics, Perinatology and Child Health (Q4)'), (24337, 'Revista Medica de Rosario', 3275019, 0.101, 'Q4', 4, 0, 0, 1, 34, '46', '1947, 2006-2019', 'Medicine (miscellaneous) (Q4)'), (24338, 'Revista Mexicana de Angiologia', 3774740, 0.101, 'Q4', 3, 0, 0, 3, 47, '30', '1976-1978, 2008-2019', 'Cardiology and Cardiovascular Medicine (Q4)'), (24339, 'Revista Notas Historicas y Geograficas', 7194404, 0.101, 'Q4', 0, 16, 709, 0, 20, '45', '2019', 'Geography, Planning and Development (Q4); History (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (24340, 'Revista Portuguesa de Historia', 8704147, 0.101, 'Q4', 2, 12, 900, 3, 40, '26', '2016-2019', 'History (Q4)'), (24341, 'Revue de Linguistique Romane', 351458, 0.101, 'Q4', 8, 14, 791, 4, 30, '8', '2006-2017, 2019', 'History and Philosophy of Science (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24342, 'Revue de Philologie de Litterature et d Histo', 351652, 0.101, 'Q3', 4, 14, 632, 1, 23, '8', '1963, 1983-1985, 1987, 1999, 2001-2017, 2019', 'Literature and Literary Theory (Q3); Classics (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24343, 'Revue de Philosophie Ancienne', 7715420, 0.101, 'Q4', 2, 0, 0, 3, 22, '24', '2009-2014, 2016-2019', 'Philosophy (Q4)'), (24344, 'Revue des Etudes Byzantines', 7665598, 0.101, 'Q4', 6, 0, 0, 4, 23, '8', '1974, 1997, 2001-2006, 2008, 2013, 2016-2018', 'History (Q4)'), (24345, 'Revue des Sciences Philosophiques et Theologi', 352209, 0.101, 'Q4', 6, 0, 0, 3, 38, '8', '1980, 2002-2018', 'Philosophy (Q4); Religious Studies (Q4)'), (24346, 'Revue de synthese / Centre international de s', 351776, 0.101, 'Q4', 7, 42, 929, 3, 26, '8', '1950, 1964, 1968, 1971, 1979, 1981-1984, 1986-1997, 1999, 2003, 2006-2016, 2018-2020', 'Philosophy (Q4)'), (24347, 'Revue de Theologie et de Philosophie', 351784, 0.101, 'Q4', 3, 0, 0, 1, 27, '19', '2002-2018', 'Philosophy (Q4); Religious Studies (Q4)'), (24348, 'Revue d Etudes Augustiniennes et Patristiques', 17689260, 0.101, 'Q4', 7, 7, 668, 0, 39, '24', '2002-2019', 'Religious Studies (Q4)'), (24349, 'Revue d Histoire de l Amerique Francaise', 352357, 0.101, 'Q4', 7, 8, 337, 0, 39, '9', '1977-1981, 1983-1987, 1999-2019', 'History (Q4)'), (24350, 'Revue Historique', 353264, 0.101, 'Q4', 8, 21, 1580, 1, 64, '8', '1969, 1971, 1978-1981, 1984, 1986-1987, 1999, 2001-2020', 'History (Q4)'), (24351, 'Revue Internationale de Droit Economique', 10108831, 0.101, 'Q4', 7, 9, 733, 5, 71, '24', '2001-2019', 'Business and International Management (Q4); Economics, Econometrics and Finance (miscellaneous) (Q4); Law (Q4)'), (24352, 'Ricerca Folklorica', 3919099, 0.101, 'Q4', 2, 0, 0, 3, 80, '7', '2011-2013, 2016-2019', 'Anthropology (Q4); Cultural Studies (Q4)'), (24353, 'Ricerche di Pedagogia e Didattica', 19702221, 0.101, 'Q4', 2, 19, 770, 3, 31, '7', '2019-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (24354, 'Ricerche di Storia Politica', 11209526, 0.101, 'Q4', 5, 8, 423, 4, 40, '7', '1999, 2001-2019', 'History (Q4); Political Science and International Relations (Q4)'), (24355, 'RIHA Journal', 21903328, 0.101, 'Q4', 3, 13, 1063, 1, 68, '5', '2010-2019', 'Visual Arts and Performing Arts (Q4)'), (24356, 'Rijksmuseum Bulletin', 18778127, 0.101, 'Q4', 3, 20, 504, 3, 30, '16', '2011-2020', 'Visual Arts and Performing Arts (Q4)'), (24357, 'Rivista Italiana di Medicina dell Adolescenza', 20350678, 0.101, 'Q4', 2, 0, 0, 0, 18, '7', '2005-2017, 2019', 'Pediatrics, Perinatology and Child Health (Q4)'), (24358, 'Rivista Storica Italiana', 357073, 0.101, 'Q4', 7, 0, 0, 2, 32, '7', '1973-1974, 1976-1977, 1985, 2001-2018', 'History (Q4)'), (24359, 'Romanische Forschungen', 358126, 0.101, 'Q4', 4, 11, 469, 1, 39, '5', '2002-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24360, 'Romantische Zeitschrift fur Literaturgeschich', 343379, 0.101, 'Q4', 2, 0, 0, 0, 40, '5', '2002-2018', 'Literature and Literary Theory (Q4)'), (24361, 'Russell - Journal of the Bertrand Russell Stu', 360163, 0.101, 'Q4', 5, 1, 50, 2, 25, '9', '2002-2019', 'Philosophy (Q4)'), (24362, 'Russian Studies in Literature', 10611975, 0.101, 'Q4', 5, 5, 27, 1, 40, '2', '1992-1995, 1997-2019', 'Literature and Literary Theory (Q4)'), (24363, 'Russkaia Literatura', 1316095, 0.101, 'Q3', 2, 103, 1728, 7, 253, '10', '2013-2019', 'Literature and Literary Theory (Q3)'), (24364, 'Sacred Music', 362255, 0.101, 'Q3', 3, 0, 0, 0, 20, '2', '2002-2015, 2018', 'Literature and Literary Theory (Q3); Religious Studies (Q4)'), (24365, 'Sacris Erudiri', 7717776, 0.101, 'Q4', 6, 0, 0, 4, 37, '24', '2002-2019', 'Religious Studies (Q4)'), (24366, 'Saeculum', 21944075, 0.101, 'Q4', 8, 7, 438, 2, 39, '5', '1950-2008, 2010-2019', 'History (Q4)'), (24367, 'Sales and Marketing Management', 1637517, 0.101, 'Q4', 10, 0, 0, 0, 33, '2', '1996-2010, 2012-2018', 'Business and International Management (Q4); Marketing (Q4)'), (24368, 'Salus', 13167138, 0.101, 'Q4', 5, 0, 0, 1, 25, '94', '2002-2018', 'Medicine (miscellaneous) (Q4)'), (24369, 'SARE', 127046, 0.101, 'Q4', 0, 24, 404, 0, 38, '23', '2018-2020', 'Communication (Q4); Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24370, 'Scandinavica', 365653, 0.101, 'Q4', 2, 0, 0, 0, 31, '3', '2002-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24371, 'Schweizerische Zeitschrift fur GanzheitsMediz', 10150684, 0.101, 'Q4', 7, 0, 0, 3, 67, '19', '2002-2017', 'Complementary and Alternative Medicine (Q4)'), (24372, 'Schweizerische Zeitschrift fur Religions- und', 16613880, 0.101, 'Q4', 3, 26, 905, 2, 66, '19', '2011-2015, 2017-2019', 'History (Q4); Religious Studies (Q4)'), (24373, 'Science Fiction Film and Television', 17543770, 0.101, 'Q3', 4, 17, 471, 1, 17, '3', '2019-2020', 'Visual Arts and Performing Arts (Q3); Communication (Q4)'), (24374, 'SCRIPTA', 23404841, 0.101, 'Q4', 1, 20, 478, 1, 36, '12', '2019', 'History (Q4); Language and Linguistics (Q4); Literature and Literary Theory (Q4)'), (24375, 'Scripta Judaica Cracoviensia', 20843925, 0.101, 'Q4', 2, 0, 0, 0, 37, '17', '2014-2018', 'Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Religious Studies (Q4)'), (24376, 'Script and Print', 18349013, 0.101, 'Q3', 4, 0, 0, 0, 18, '11', '2008-2019', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Library and Information Sciences (Q4)'), (24377, 'Scriptorium', 369772, 0.101, 'Q4', 6, 8, 357, 1, 39, '24', '1972, 1975, 1977-1979, 1982, 1984-1985, 1987, 1997, 2002-2019', 'Library and Information Sciences (Q4); Visual Arts and Performing Arts (Q4)'), (24378, 'Shakespeare Quarterly', 373222, 0.101, 'Q4', 23, 1, 19, 3, 30, '2', '2002-2019', 'Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24379, 'Shakespeare Studies', 5829399, 0.101, 'Q4', 9, 0, 0, 1, 39, '2', '1979, 1983, 2002-2013, 2018-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24380, 'Shaman', 12167827, 0.101, 'Q3', 2, 8, 146, 2, 18, '50', '2011-2013, 2016-2017, 2019', 'Religious Studies (Q3); Anthropology (Q4); Cultural Studies (Q4)'), (24381, 'SHAW', 15391480, 0.101, 'Q4', 3, 6, 221, 0, 39, '2', '2010-2019', 'Literature and Literary Theory (Q4)'), (24382, 'Signos Filosoficos', 16651324, 0.101, 'Q4', 3, 5, 160, 1, 35, '30', '2012-2018', 'Philosophy (Q4)'), (24383, 'Signos Historicos', 16654420, 0.101, 'Q4', 4, 17, 636, 1, 40, '30', '2013-2014, 2017-2020', 'History (Q4)'), (24384, 'Silicon Semiconductor', 20507798, 0.101, 'Q4', 5, 36, 13, 0, 33, '3', '2018-2019', 'Electrical and Electronic Engineering (Q4)'), (24385, 'Simiolus', 375411, 0.101, 'Q4', 7, 11, 797, 2, 40, '16', '2002-2004, 2006-2009, 2011-2015, 2017-2019', 'Visual Arts and Performing Arts (Q4)'), (24386, 'Sinapse', 1645281, 0.101, 'Q4', 5, 35, 601, 0, 30, '26', '2005-2019', 'Cellular and Molecular Neuroscience (Q4); Neurology (clinical) (Q4)'), (24387, 'Sino-Christian Studies', 19902670, 0.101, 'Q4', 1, 8, 236, 1, 36, '22', '2013-2019', 'Philosophy (Q4); Religious Studies (Q4)'), (24388, 'Situations', 22887822, 0.101, 'Q4', 2, 14, 342, 6, 21, '13', '2018-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24389, 'Slavonica', 13617427, 0.101, 'Q3', 2, 13, 343, 2, 23, '3', '1994-1995, 2012-2014, 2016-2020', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Sociology and Political Sc'), (24390, 'Slovansky prehled', 376922, 0.101, 'Q4', 0, 19, 0, 0, 17, '31', '1985, 1999, 2002, 2019-2020', 'History (Q4); Political Science and International Relations (Q4)'), (24391, 'Smithsonian', 377333, 0.101, 'Q4', 7, 0, 0, 2, 23, '2', '1971, 1975-1981, 1983-1984, 1987, 1989, 1996-1998, 2000-2011, 2013-2018', 'Anthropology (Q4); Arts and Humanities (miscellaneous) (Q4); Multidisciplinary (Q4)'), (24392, 'Sobornost Incorporating Eastern Churches Revi', 1448722, 0.101, 'Q4', 4, 0, 0, 1, 20, '3', '2002-2019', 'Religious Studies (Q4)'), (24393, 'Sociedad Espanola de Estudios Renacentistas I', 11357789, 0.101, 'Q4', 2, 6, 258, 1, 32, '12', '2011-2019', 'Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24394, 'Societate si Politica', 20677812, 0.101, 'Q4', 3, 0, 0, 4, 27, '43', '2013-2019', 'History (Q4); Philosophy (Q4); Sociology and Political Science (Q4)'), (24395, 'Sokendai Review of Cultural and Social Studie', 1883096, 0.101, 'Q4', 1, 7, 0, 0, 24, '6', '2006-2007, 2009-2020', 'Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)'), (24396, 'Southern Humanities Review', 384186, 0.101, 'Q4', 3, 25, 11, 0, 23, '2', '1967, 2002-2016, 2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24397, 'Specijalna Edukacija i Rehabilitacija', 14527367, 0.101, 'Q4', 1, 12, 587, 0, 38, '55', '2018-2020', 'Developmental and Educational Psychology (Q4); Education (Q4)'), (24398, 'Spenser Studies', 1959468, 0.101, 'Q4', 11, 14, 0, 2, 38, '2', '2002-2005, 2007-2012, 2018-2020', 'Literature and Literary Theory (Q4)'), (24399, 'Spiegel der Letteren', 387479, 0.101, 'Q4', 5, 0, 0, 3, 38, '24', '1996-2017', 'Literature and Literary Theory (Q4)'), (24400, 'Stadsgeschiedenis', 18720676, 0.101, 'Q4', 3, 0, 0, 1, 22, '16', '2011-2018', 'History (Q4); Urban Studies (Q4)'), (24401, 'Stand', 389366, 0.101, 'Q4', 1, 0, 0, 0, 36, '3', '2002-2003, 2006, 2008-2009, 2011-2017', 'Literature and Literary Theory (Q4)'), (24402, 'Stilistica e Metrica Italiana', 15916693, 0.101, 'Q3', 1, 8, 207, 0, 26, '7', '2015-2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24403, 'Strategic Survey', 4597230, 0.101, 'Q4', 1, 10, 0, 0, 20, '3', '2009, 2015, 2018-2019', 'Political Science and International Relations (Q4)'), (24404, 'Studia Austriaca', 15932508, 0.101, 'Q3', 1, 7, 170, 1, 18, '7', '2017-2020', 'Literature and Literary Theory (Q3); Cultural Studies (Q4)'), (24405, 'Studia Graeco-Arabica', 2239012, 0.101, 'Q3', 1, 0, 0, 0, 22, '7', '2018', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24406, 'Studia Hibernica', 816477, 0.101, 'Q3', 2, 0, 0, 1, 16, '3', '2002, 2017-2019', 'Literature and Literary Theory (Q3); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24407, 'Studia Historica, Historia Antigua', 2132052, 0.101, 'Q4', 1, 13, 878, 2, 23, '12', '2017-2019', 'History (Q4)'), (24408, 'Studia Historica, Historia Medieval', 2132060, 0.101, 'Q4', 5, 9, 606, 3, 45, '12', '2011-2013, 2015-2019', 'History (Q4)'), (24409, 'Studia Mythologica Slavica', 1581128, 0.101, 'Q4', 2, 11, 560, 3, 37, '60', '2015-2019', 'Anthropology (Q4); Cultural Studies (Q4)'), (24410, 'Studia Neoaristotelica', 12148407, 0.101, 'Q4', 2, 8, 294, 4, 33, '5', '2015-2019', 'Philosophy (Q4)'), (24411, 'Studia Norwidiana', 8600562, 0.101, 'Q4', 1, 49, 885, 2, 32, '17', '2018-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24412, 'Studia Orientalia Slovaca', 13363786, 0.101, 'Q4', 2, 12, 391, 4, 41, '53', '2016-2020', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24413, 'Studia Pneumologica et Phthiseologica', 1213810, 0.101, 'Q4', 6, 0, 0, 1, 89, '31', '1993-2019', 'Pulmonary and Respiratory Medicine (Q4)'), (24414, 'Studia Poliana', 23871830, 0.101, 'Q4', 2, 11, 271, 2, 25, '12', '2015-2020', 'Philosophy (Q4)'), (24415, 'Studia Universitatis Babes-Bolyai Theologia R', 20659482, 0.101, 'Q4', 0, 20, 574, 0, 32, '43', '2019', 'Religious Studies (Q4)'), (24416, 'Studia Universitatis Cibiniensis, Series Hist', 15843165, 0.101, 'Q3', 0, 0, 0, 0, 27, '43', '2018', 'Literature and Literary Theory (Q3); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)'), (24417, 'Studi Danteschi', 3917835, 0.101, 'Q4', 4, 0, 0, 4, 35, '7', '2002-2006, 2008, 2010-2019', 'Literature and Literary Theory (Q4)'), (24418, 'Studi di Estetica', 5854733, 0.101, 'Q4', 1, 0, 0, 1, 34, '7', '2019', 'Philosophy (Q4)'), (24419, 'Studi e Problemi di Critica Testuale', 492361, 0.101, 'Q4', 3, 16, 451, 0, 32, '7', '2002-2018', 'Literature and Literary Theory (Q4)'), (24420, 'Studies in American Jewish Literature', 19485077, 0.101, 'Q3', 2, 13, 395, 3, 23, '2', '2014-2020', 'Literature and Literary Theory (Q3); Anthropology (Q4); Cultural Studies (Q4)'), (24421, 'Studies in Ancient Art and Civilization', 2449867, 0.101, 'Q4', 1, 0, 0, 3, 34, '17', '2018-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); Museology (Q4)'), (24422, 'Studies in Iconography', 1481029, 0.101, 'Q3', 6, 0, 0, 0, 16, '2', '2002-2019', 'Visual Arts and Performing Arts (Q3)'), (24423, 'Studies in Latin American Popular Culture', 7309139, 0.101, 'Q4', 7, 9, 317, 1, 30, '2', '1996-2008, 2010-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24424, 'Studies in Regional Science', 2876256, 0.101, 'Q4', 11, 10, 93, 4, 51, '6', '1970-2019', 'Environmental Science (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24425, 'Studies in World Christianity', 17500230, 0.101, 'Q4', 7, 7, 2, 6, 41, '3', '2010-2019', 'History (Q4); Religious Studies (Q4)'), (24426, 'Studii de Istoria si Teoria Arhitecturii', 23446544, 0.101, 'Q4', 1, 0, 0, 1, 23, '43', '2017-2018', 'Conservation (Q4); History (Q4); Safety, Risk, Reliability and Quality (Q4); Urban Studies (Q4)'), (24427, 'Studii si cercetari lingvistice', 39405, 0.101, 'Q4', 2, 13, 359, 0, 35, '43', '2011-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24428, 'Studi sulla Questione Criminale', 18284973, 0.101, 'Q4', 3, 5, 196, 2, 41, '7', '2013-2018', 'Law (Q4)'), (24429, 'Suo', 395471, 0.101, 'Q4', 17, 4, 194, 0, 20, '38', '1983, 1986, 1992-1994, 1996-2016, 2018-2019', 'Ecology (Q4); Geology (Q4); Soil Science (Q4); Water Science and Technology (Q4)'), (24430, 'Svet Literatury', 23366729, 0.101, 'Q4', 1, 44, 893, 1, 34, '31', '2019-2020', 'History (Q4); Language and Linguistics (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)'), (24431, 'Sylvia', 2317796, 0.101, 'Q4', 6, 0, 0, 2, 18, '31', '2010-2019', 'Animal Science and Zoology (Q4); Ecology, Evolution, Behavior and Systematics (Q4); Nature and Landscape Conservation (Q4)'), (24432, 'Synergies Espagne', 19619359, 0.101, 'Q4', 2, 0, 0, 1, 26, '8', '2012-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24433, 'Synergies Turquie', 19619472, 0.101, 'Q4', 1, 0, 0, 0, 17, '8', '2013-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24434, 'Taiwan Journal of East Asian Studies', 18126243, 0.101, 'Q4', 5, 11, 179, 1, 32, '22', '2004-2015, 2017-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24435, 'Tamkang Review', 492949, 0.101, 'Q3', 3, 0, 0, 0, 24, '22', '2005-2018', 'Literature and Literary Theory (Q3); History (Q4)'), (24436, 'Tamsui Oxford Journal of Information and Math', 22224432, 0.101, 'Q4', 13, 0, 0, 1, 19, '22', '2005-2013, 2016-2018', 'Mathematics (miscellaneous) (Q4)'), (24437, 'T and D', 15357740, 0.101, 'Q4', 25, 0, 0, 0, 32, '2', '1996-2017', 'Industrial Relations (Q4); Organizational Behavior and Human Resource Management (Q4)'), (24438, 'Taurus', 15153037, 0.101, 'Q4', 1, 4, 75, 0, 29, '46', '2012-2020', 'Veterinary (miscellaneous) (Q4)'), (24439, 'Temas Medievales', 3275094, 0.101, 'Q4', 2, 13, 0, 1, 16, '46', '2007-2011, 2013-2017, 2019-2020', 'Arts and Humanities (miscellaneous) (Q4)'), (24440, 'Teorie Vedy/ Theory of Science', 12100250, 0.101, 'Q4', 6, 17, 578, 2, 27, '31', '2010-2020', 'History and Philosophy of Science (Q4)'), (24441, 'Terrae Incognitae', 20408706, 0.101, 'Q4', 5, 19, 0, 2, 28, '3', '1969-2020', 'History (Q4)'), (24442, 'Textile View2 Magazine', 18726127, 0.101, 'Q4', 0, 11, 0, 0, 20, '16', '2006-2012, 2014-2016, 2018-2020', 'Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); History (Q4)'), (24443, 'Theatre History Studies', 7332033, 0.101, 'Q4', 3, 0, 0, 0, 39, '2', '2002-2012, 2014-2019', 'Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24444, 'Theatre Research in Canada-Recherches Theatra', 11961198, 0.101, 'Q4', 5, 13, 199, 1, 28, '9', '2002-2018', 'Visual Arts and Performing Arts (Q4)'), (24445, 'Theologische Literaturzeitung', 405671, 0.101, 'Q4', 4, 11, 473, 1, 20, '5', '2002-2014, 2018-2020', 'Religious Studies (Q4)'), (24446, 'Theologische Quartalschrift', 3421430, 0.101, 'Q4', 3, 0, 0, 1, 41, '5', '2011-2018', 'Religious Studies (Q4)'), (24447, 'Theologische Rundschau', 405698, 0.101, 'Q4', 3, 4, 221, 0, 22, '5', '2002-2019', 'Religious Studies (Q4)'), (24448, 'Tijdschrift van de Koninklijke Vereniging voo', 13837079, 0.101, 'Q4', 4, 0, 0, 2, 24, '16', '2002-2003, 2005-2018', 'Music (Q4)'), (24449, 'Tijdschrift voor Bedrijfs- en Verzekeringsgen', 18765858, 0.101, 'Q4', 3, 147, 0, 2, 267, '16', '1993-1996, 2005-2006, 2008-2020', 'Health Information Management (Q4); Health Policy (Q4); Health (social science) (Q4)'), (24450, 'Tokyo Jikeikai Medical Journal', 3759172, 0.101, 'Q4', 3, 0, 0, 0, 30, '6', '1964-1965, 1972-2018', 'Medicine (miscellaneous) (Q4)'), (24451, 'Topicos', 1666485, 0.101, 'Q4', 2, 16, 317, 0, 41, '46', '2008-2019', 'Philosophy (Q4)'), (24452, 'Traditio', 21665508, 0.101, 'Q4', 10, 11, 249, 5, 36, '3', '1966, 1974-1978, 1980-1982, 1985-1987, 2002-2019', 'Literature and Literary Theory (Q4); Philosophy (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24453, 'Transactions Historic Society of Lancashire a', 140332, 0.101, 'Q4', 1, 0, 0, 0, 24, '3', '1944, 1977-1981, 1983, 1986-1987, 1989, 1994, 1996, 2016-2019', 'History (Q4)'), (24454, 'Turkic Languages', 14314983, 0.101, 'Q4', 2, 0, 0, 3, 41, '5', '2017-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24455, 'Urban History Review/Revue d Histoire Urbaine', 7030428, 0.101, 'Q4', 11, 4, 0, 1, 21, '9', '1978-2012, 2014-2017', 'History (Q4); Urban Studies (Q4)'), (24456, 'Urology Times', 939722, 0.101, 'Q4', 2, 170, 125, 4, 257, '2', '2015-2020', 'Advanced and Specialized Nursing (Q4); Medical and Surgical Nursing (Q4); Urology (Q4)'), (24457, 'VDI Zeitschrift', 421766, 0.101, 'Q4', 1, 83, 45, 2, 193, '5', '1970-1991, 2018-2020', 'Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (24458, 'Vergentis', 26053357, 0.101, 'Q4', 1, 12, 521, 1, 25, '12', '2019', 'History (Q4); Law (Q4); Religious Studies (Q4)'), (24459, 'Verifiche', 3914186, 0.101, 'Q4', 2, 0, 0, 2, 38, '7', '2014-2019', 'Philosophy (Q4)'), (24460, 'Verslagen en Mededelingen van de Koninklijke ', 770786, 0.101, 'Q3', 5, 3, 176, 0, 21, '24', '2002-2011, 2013-2018, 2020', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24461, 'Versus', 26120909, 0.101, 'Q4', 0, 11, 384, 0, 19, '7', '2019', 'Applied Psychology (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Philosophy (Q4)'), (24462, 'Victorian Historical Journal', 10307710, 0.101, 'Q4', 1, 11, 561, 1, 19, '11', '2019', 'History (Q4)'), (24463, 'Victoriographies', 20442416, 0.101, 'Q4', 1, 18, 577, 1, 30, '3', '2018-2020', 'Communication (Q4); Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24464, 'Wallace Stevens Journal', 1487132, 0.101, 'Q3', 5, 21, 300, 3, 59, '2', '2002-2020', 'Literature and Literary Theory (Q3)'), (24465, 'Welt der Slaven-Halbjahresschrift fur Slavist', 432520, 0.101, 'Q3', 4, 15, 178, 1, 21, '5', '2002-2015, 2017-2020', 'Literature and Literary Theory (Q3); Visual Arts and Performing Arts (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24466, 'Wesley and Methodist Studies', 22911723, 0.101, 'Q3', 2, 13, 629, 0, 26, '2', '2017-2020', 'Literature and Literary Theory (Q3); History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24467, 'West 86th', 21535531, 0.101, 'Q3', 8, 5, 45, 1, 22, '2', '2011-2020', 'Visual Arts and Performing Arts (Q3)'), (24468, 'Westerly', 43342, 0.101, 'Q3', 4, 26, 253, 0, 27, '11', '2002-2015', 'Literature and Literary Theory (Q3)'), (24469, 'Woman s Art Journal', 2707993, 0.101, 'Q3', 4, 2, 45, 2, 21, '2', '2002-2020', 'Visual Arts and Performing Arts (Q3); Gender Studies (Q4)'), (24470, 'Word and Text', 20699271, 0.101, 'Q4', 3, 10, 518, 2, 35, '43', '2011-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24471, 'Word of Mouth', 10483950, 0.101, 'Q4', 1, 27, 189, 2, 59, '2', '1990, 1992-1999, 2005-2006, 2008-2020', 'Education (Q4)'), (24472, 'Working Paper of the Helen Kellogg Institute ', 0, 0.101, 'Q4', 8, 5, 261, 0, 16, '2', '1987-2020', 'Development (Q4); Geography, Planning and Development (Q4)'), (24473, 'Yokohama Medical Journal', 3727726, 0.101, 'Q4', 1, 0, 0, 1, 27, '6', '1977-2018', 'Medicine (miscellaneous) (Q4)'), (24474, 'Yorkshire Archaeological Journal', 20450664, 0.101, 'Q4', 3, 8, 241, 1, 33, '3', '1980, 2010-2020', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (24475, 'Zagadnienia Filozoficzne w Nauce', 24510602, 0.101, 'Q4', 2, 0, 0, 2, 26, '17', '2018-2019', 'History and Philosophy of Science (Q4); Philosophy (Q4)'), (24476, 'Zbornik Matice Srpske za Slavistiku', 3525007, 0.101, 'Q3', 0, 1, 55, 0, 23, '55', '2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24477, 'Zeitschrift fur Deutsche Philologie', 442496, 0.101, 'Q4', 5, 0, 0, 0, 35, '5', '2002-2012, 2017-2018', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24478, 'Zeitschrift fur Franzosische Sprache und Lite', 442747, 0.101, 'Q3', 5, 2, 92, 0, 16, '5', '1987, 2002-2016, 2018-2019', 'Literature and Literary Theory (Q3); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24479, 'Zeitschrift fur Katholische Theologie', 442895, 0.101, 'Q4', 2, 0, 0, 1, 39, '5', '2011-2018', 'Religious Studies (Q4)'), (24480, 'Zgodovina za Vse', 13182498, 0.101, 'Q4', 1, 9, 142, 1, 30, '60', '2016-2020', 'Anthropology (Q4); Cultural Studies (Q4); History (Q4)'), (24481, 'Zutot', 15717283, 0.101, 'Q4', 5, 9, 350, 0, 27, '16', '2001-2004, 2008-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Religious Studies (Q4)'), (24482, 'Zwingliana', 2544407, 0.101, 'Q4', 2, 0, 0, 0, 29, '19', '1981, 2002, 2013-2019', 'History (Q4); Religious Studies (Q4)'), (24483, 'ABA Journal', 7470088, 0.1, 'Q4', 7, 19, 0, 1, 276, '2', '1984-1987, 1993, 1996-1999, 2002-2014, 2016', 'Law (Q4)'), (24484, 'ABU Technical Review', 1266209, 0.1, 'Q4', 3, 0, 0, 0, 49, '23', '1995-1999, 2001-2019', 'Electrical and Electronic Engineering (Q4)'), (24485, 'Acta Literaria', 7176848, 0.1, 'Q4', 5, 8, 209, 4, 49, '45', '2007-2019', 'Literature and Literary Theory (Q4)'), (24486, 'Acta Orientalia', 16446, 0.1, 'Q4', 6, 27, 1230, 6, 73, '50', '2007-2020', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24487, 'Acta Poetica', 1853082, 0.1, 'Q4', 1, 14, 256, 0, 45, '30', '2016-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24488, 'Ada User Journal', 13816551, 0.1, 'Q4', 5, 0, 0, 3, 58, '26', '1999-2019', 'Software (Q4)'), (24489, 'AIMS Journal', 2655004, 0.1, 'Q4', 5, 48, 46, 2, 79, '2', '2006-2008, 2017-2019', 'Maternity and Midwifery (Q4)'), (24490, 'Airline Business', 2687615, 0.1, 'Q4', 6, 0, 0, 0, 100, '2', '1996-2018', 'Business, Management and Accounting (miscellaneous) (Q4)'), (24491, 'Aisthesis', 7187181, 0.1, 'Q4', 3, 10, 259, 2, 63, '45', '2012-2019', 'Literature and Literary Theory (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)'), (24492, 'Akzente', 23957, 0.1, 'Q4', 2, 20, 0, 0, 83, '5', '2002-2019', 'Literature and Literary Theory (Q4)'), (24493, 'Alea', 18070299, 0.1, 'Q4', 3, 57, 1240, 3, 136, '14', '2008-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24494, 'Allgemeine Zeitschrift fur Philosophie', 3407969, 0.1, 'Q4', 3, 19, 473, 0, 51, '5', '2009, 2013-2019', 'Philosophy (Q4)'), (24495, 'American, British and Canadian Studies', 18411487, 0.1, 'Q4', 2, 21, 474, 4, 52, '17', '2017-2020', 'Anthropology (Q4); Computer Science Applications (Q4); Cultural Studies (Q4); Language and Linguistics (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)'), (24496, 'American Literary Realism', 29823, 0.1, 'Q4', 6, 16, 424, 7, 52, '2', '2002-2020', 'Literature and Literary Theory (Q4)'), (24497, 'American Literary Scholarship', 659142, 0.1, 'Q4', 1, 21, 0, 0, 57, '2', '2002-2006, 2008-2019', 'Literature and Literary Theory (Q4)'), (24498, 'American Poetry Review', 3603709, 0.1, 'Q4', 2, 16, 44, 1, 52, '2', '2002-2020', 'Literature and Literary Theory (Q4)'), (24499, 'Anaesthesiology and Intensive Care', 13104284, 0.1, 'Q4', 1, 29, 734, 0, 74, '61', '2002-2019', 'Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)'), (24500, 'Analele Universitatii Ovidius Constanta, Seri', 12241768, 0.1, 'Q4', 2, 0, 0, 0, 118, '43', '2013-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24501, 'Anales de la Literatura Espanola Contemporane', 2721635, 0.1, 'Q4', 6, 8, 255, 0, 69, '2', '2002-2012, 2017-2020', 'Literature and Literary Theory (Q4)'), (24502, 'Anales de Literatura Hispanoamericana', 2104547, 0.1, 'Q4', 5, 0, 0, 1, 108, '12', '1996-2019', 'Literature and Literary Theory (Q4)'), (24503, 'Anclajes', 3293807, 0.1, 'Q4', 3, 26, 610, 2, 53, '46', '2012-2020', 'Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24504, 'Annales de Bourgogne', 33901, 0.1, 'Q4', 1, 32, 907, 5, 62, '8', '1980, 1982, 1987, 2011-2019', 'History (Q4)'), (24505, 'Annals of the Naprstek Museum', 231844, 0.1, 'Q4', 4, 0, 0, 0, 46, '31', '2011, 2013-2019', 'Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4); Cultural Studies (Q4); History (Q4); Museology (Q4)'), (24506, 'Annee Balzacienne', 846473, 0.1, 'Q4', 3, 22, 1050, 2, 70, '8', '2001-2016, 2018-2019', 'Literature and Literary Theory (Q4)'), (24507, 'Antik Tanulmanyok', 3567, 0.1, 'Q4', 2, 18, 673, 5, 44, '50', '2007-2019', 'Classics (Q4); Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24508, 'Antioch Review, The', 35769, 0.1, 'Q4', 3, 0, 0, 0, 127, '2', '1980, 2002-2019', 'Literature and Literary Theory (Q4)'), (24509, 'Anuario de Historia de la Iglesia', 11330104, 0.1, 'Q4', 4, 20, 1079, 2, 57, '12', '2009-2020', 'History (Q4); Religious Studies (Q4)'), (24510, 'Apollo', 36536, 0.1, 'Q4', 5, 78, 0, 1, 358, '3', '2002-2013, 2015-2020', 'Conservation (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)'), (24511, 'Appalachian Journal', 903779, 0.1, 'Q4', 5, 11, 126, 1, 46, '2', '1983, 2002-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24512, 'Arcadia', 37982, 0.1, 'Q4', 7, 11, 431, 5, 44, '5', '1966-1986, 1988-1997, 2003-2020', 'Literature and Literary Theory (Q4)'), (24513, 'Architect', 19357001, 0.1, 'Q4', 3, 27, 0, 3, 267, '2', '1975, 1979-1981, 2002-2019', 'Architecture (Q4); Visual Arts and Performing Arts (Q4)'), (24514, 'Architectural Digest', 38520, 0.1, 'Q4', 2, 96, 0, 0, 258, '2', '2002-2013, 2017-2020', 'Architecture (Q4); Visual Arts and Performing Arts (Q4)'), (24515, 'Architectural Record', 3858, 0.1, 'Q4', 7, 0, 0, 4, 361, '2', '1969-2018', 'Architecture (Q4); Medicine (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)'), (24516, 'Architecture d Aujourd Hui', 38695, 0.1, 'Q4', 2, 97, 0, 1, 177, '8', '2002-2007, 2009-2020', 'Architecture (Q4); Visual Arts and Performing Arts (Q4)'), (24517, 'Archives de Philosophie', 39632, 0.1, 'Q4', 4, 29, 1042, 5, 90, '8', '1972, 1987, 2001-2020', 'Philosophy (Q4)'), (24518, 'Archives des Maladies du Coeur et des Vaissea', 1261694, 0.1, 'Q4', 3, 66, 678, 2, 167, '8', '1995-2020', 'Cardiology and Cardiovascular Medicine (Q4)'), (24519, 'Archives Juives', 19650531, 0.1, 'Q4', 4, 0, 0, 0, 52, '8', '2001-2019', 'Cultural Studies (Q4); History (Q4); Religious Studies (Q4)'), (24520, 'Archiv fur Reformationsgeschichte', 39381, 0.1, 'Q4', 6, 12, 155, 3, 46, '5', '1904-1943, 1948, 1951-1995, 1999, 2001-2002, 2009-2011, 2013-2018', 'Religious Studies (Q4)'), (24521, 'Archivio di Filosofia', 19700792, 0.1, 'Q4', 2, 0, 0, 2, 125, '7', '2011-2019', 'Philosophy (Q4)'), (24522, 'Archivio Storico Italiano', 3917770, 0.1, 'Q4', 6, 19, 0, 5, 47, '7', '1971, 1978-1979, 1981, 1984, 1999, 2002-2008, 2010-2020', 'History (Q4)'), (24523, 'Arion - Journal of Humanities and the Classic', 955809, 0.1, 'Q4', 10, 21, 482, 3, 57, '2', '2002-2020', 'Classics (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24524, 'Arizona Quarterly', 41610, 0.1, 'Q4', 3, 19, 870, 3, 62, '2', '2016-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24525, 'Art History', 14678365, 0.1, 'Q4', 19, 39, 0, 23, 115, '3', '1978-2020', 'Visual Arts and Performing Arts (Q4)'), (24526, 'Arti Musices', 5875455, 0.1, 'Q4', 2, 9, 201, 2, 64, '58', '2008-2009, 2012-2019', 'Music (Q4)'), (24527, 'Art in America', 43214, 0.1, 'Q4', 3, 27, 87, 0, 133, '2', '1979, 1983, 2002-2020', 'Visual Arts and Performing Arts (Q4)'), (24528, 'ARTnews', 43273, 0.1, 'Q4', 3, 13, 0, 0, 86, '2', '1977, 2002-2013, 2017-2019', 'Museology (Q4); Visual Arts and Performing Arts (Q4)'), (24529, 'Arts of Asia', 44083, 0.1, 'Q4', 3, 15, 0, 0, 177, '35', '2002-2020', 'Visual Arts and Performing Arts (Q4)'), (24530, 'A + U-Architecture and Urbanism', 3899160, 0.1, 'Q4', 2, 44, 97, 0, 479, '6', '2002-2019', 'Architecture (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24531, 'Automotive Industries AI', 10994130, 0.1, 'Q4', 5, 0, 0, 0, 330, '2', '1970-1987, 1994-1997, 1999-2019', 'Automotive Engineering (Q4)'), (24532, 'Avant Scene Opera', 7642873, 0.1, 'Q4', 1, 25, 88, 0, 155, '8', '2009-2020', 'Music (Q4); Visual Arts and Performing Arts (Q4)'), (24533, 'Axon', 18388973, 0.1, 'Q4', 1, 0, 0, 0, 64, '11', '2017-2018', 'Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24534, 'Ballet Review', 5220653, 0.1, 'Q4', 2, 0, 0, 0, 87, '2', '2002-2019', 'Visual Arts and Performing Arts (Q4)'), (24535, 'Banking Law Journal', 55506, 0.1, 'Q4', 5, 60, 406, 6, 52, '2', '1996-2012, 2018-2020', 'Business, Management and Accounting (miscellaneous) (Q4); Finance (Q4); Law (Q4)'), (24536, 'Behavioral Healthcare', 19317093, 0.1, 'Q4', 7, 0, 0, 1, 48, '2', '2006-2018', 'Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (24537, 'Belgisch Tijdschrift voor Nieuwste Geschieden', 350869, 0.1, 'Q4', 9, 0, 0, 0, 49, '24', '1985, 1996-2019', 'History (Q4)'), (24538, 'Bibel und Kirche', 60623, 0.1, 'Q4', 1, 36, 175, 0, 73, '5', '2013-2019', 'Religious Studies (Q4)'), (24539, 'Biblische Zeitschrift', 62014, 0.1, 'Q4', 6, 31, 1571, 3, 44, '5', '2002-2015, 2017-2020', 'Religious Studies (Q4)'), (24540, 'Biofutur', 2943506, 0.1, 'Q4', 9, 0, 0, 0, 54, '8', '1989-2018', 'Agricultural and Biological Sciences (miscellaneous) (Q4); Biochemistry, Genetics and Molecular Biology (miscellaneous) (Q4)'), (24541, 'Boletin de Arte', 2118483, 0.1, 'Q4', 1, 31, 700, 1, 266, '12', '2013-2015, 2017-2019', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (24542, 'Bollettino Storico - Bibliografico Subalpino', 3916715, 0.1, 'Q4', 1, 7, 438, 2, 43, '7', '1981, 2014-2015, 2017-2019', 'History (Q4)'), (24543, 'Bruniana e Campanelliana', 11253819, 0.1, 'Q4', 4, 0, 0, 2, 125, '7', '2011-2019', 'History (Q4); Philosophy (Q4)'), (24544, 'Building Engineer', 9698213, 0.1, 'Q4', 5, 25, 0, 0, 140, '3', '2004-2016, 2018-2020', 'Building and Construction (Q4); Civil and Structural Engineering (Q4)'), (24545, 'Bulgarian Historical Review', 2048906, 0.1, 'Q4', 3, 19, 580, 1, 50, '50', '2001-2007, 2009-2019', 'History (Q4)'), (24546, 'Bulletin de Litterature Ecclesiastique', 74322, 0.1, 'Q4', 2, 27, 481, 0, 65, '8', '2011, 2013-2020', 'Religious Studies (Q4)'), (24547, 'BYU Studies Quarterly', 21678472, 0.1, 'Q4', 6, 57, 2863, 2, 66, '2', '2018-2020', 'History (Q4); Religious Studies (Q4)'), (24548, 'Byzantion Nea Hellas', 7162138, 0.1, 'Q4', 1, 0, 0, 2, 52, '45', '2015-2018', 'Classics (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24549, 'Cadernos de Linguagem e Sociedade', 1049712, 0.1, 'Q4', 3, 0, 0, 0, 91, '14', '2012-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Sociology and Political Science (Q4)'), (24550, 'Cadernos de Traducao', 21757968, 0.1, 'Q4', 1, 83, 1927, 4, 60, '14', '2019-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24551, 'Cahiers de Lexicologie', 79871, 0.1, 'Q4', 5, 0, 0, 6, 75, '8', '2011-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24552, 'Cahiers de l Institut de Linguistique de Louv', 20322356, 0.1, 'Q4', 4, 0, 0, 0, 57, '24', '2011-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24553, 'Cahiers du Musee National d Art Moderne', 1811525, 0.1, 'Q4', 2, 24, 729, 0, 60, '8', '2001-2020', 'Visual Arts and Performing Arts (Q4)'), (24554, 'Cahiers Elisabethains', 20544715, 0.1, 'Q4', 3, 18, 0, 2, 71, '2', '2004-2020', 'History (Q4); Literature and Literary Theory (Q4)'), (24555, 'Canadian-American Slavic Studies', 22102396, 0.1, 'Q4', 5, 16, 943, 4, 62, '16', '1974, 1976, 1978, 1999, 2001, 2009-2010, 2012-2019', 'Cultural Studies (Q4); History (Q4)'), (24556, 'Caravelle', 11476753, 0.1, 'Q4', 4, 10, 196, 4, 78, '8', '1999, 2001-2019', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24557, 'Carte e la Storia', 11235624, 0.1, 'Q4', 1, 14, 820, 2, 82, '7', '2016-2020', 'History (Q4)'), (24558, 'Catholica', 88501, 0.1, 'Q4', 3, 15, 514, 3, 55, '5', '2002-2019', 'Religious Studies (Q4)'), (24559, 'Catholic Historical Review', 15340708, 0.1, 'Q4', 10, 25, 2381, 7, 55, '2', '1976, 1980, 2001-2020', 'Arts and Humanities (miscellaneous) (Q4)'), (24560, 'Chasqui', 1458973, 0.1, 'Q4', 6, 21, 784, 3, 91, '2', '2002-2012, 2014-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24561, 'Chinese Journal of Laboratory Medicine', 10099158, 0.1, 'Q4', 4, 210, 5327, 9, 194, '1', '2019-2020', 'Biochemistry (medical) (Q4); Clinical Biochemistry (Q4); Medical Laboratory Technology (Q4); Pathology and Forensic Medicine (Q4)'), (24562, 'Chinese Law and Government', 19447051, 0.1, 'Q4', 4, 0, 0, 4, 202, '2', '1968-1995, 2002-2019', 'Law (Q4); Sociology and Political Science (Q4)'), (24563, 'Chinese Studies in History', 94633, 0.1, 'Q4', 5, 25, 0, 2, 56, '2', '1967-1995, 2002-2020', 'History (Q4)'), (24564, 'Chirurgische Praxis', 94846, 0.1, 'Q4', 5, 75, 2015, 2, 271, '5', '1973-1980, 2001-2018', 'Surgery (Q4)'), (24565, 'Chronique d Egypte', 96067, 0.1, 'Q4', 5, 15, 332, 2, 77, '24', '1971-1973, 1976, 1978, 1987, 2002-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)'), (24566, 'Cincinnati Romance Review', 21558817, 0.1, 'Q4', 2, 0, 0, 2, 55, '2', '2012-2019', 'Literature and Literary Theory (Q4)'), (24567, 'Cineforum', 97039, 0.1, 'Q4', 1, 48, 29, 1, 410, '7', '2008-2019', 'Visual Arts and Performing Arts (Q4)'), (24568, 'Circular Farmaceutica', 97314, 0.1, 'Q4', 2, 11, 118, 0, 73, '12', '1961, 1973-2019', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (24569, 'Civil-Comp Proceedings', 17593433, 0.1, 'Q4', 11, 0, 0, 0, 44, '3', '2003, 2005-2017', 'Artificial Intelligence (Q4); Civil and Structural Engineering (Q4); Computational Theory and Mathematics (Q4); Environmental Engineering (Q4)'), (24570, 'Civilistica.com', 23168374, 0.1, 'Q4', 1, 0, 0, 0, 82, '14', '2017-2019', 'Law (Q4)'), (24571, 'Clavier Companion', 10860819, 0.1, 'Q4', 1, 0, 0, 0, 136, '2', '2009-2018', 'Music (Q4)'), (24572, 'Coloquio-Letras', 101451, 0.1, 'Q4', 2, 52, 558, 0, 66, '26', '2009-2017, 2019-2020', 'Literature and Literary Theory (Q4)'), (24573, 'Communio Viatorum', 103713, 0.1, 'Q4', 2, 12, 320, 0, 55, '2', '2011-2019', 'History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24574, 'Comparative Critical Studies', 17500109, 0.1, 'Q4', 6, 13, 140, 4, 69, '3', '2010-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24575, 'Concurrences', 21160090, 0.1, 'Q4', 2, 0, 0, 11, 1105, '8', '2014-2018', 'Economics and Econometrics (Q4); Law (Q4)'), (24576, 'Confluencia', 8886091, 0.1, 'Q4', 4, 31, 678, 3, 91, '2', '2002-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24577, 'Connaissance des Arts', 2939274, 0.1, 'Q4', 2, 117, 0, 0, 210, '8', '1969, 1980, 2002-2014, 2018-2020', 'Visual Arts and Performing Arts (Q4)'), (24578, 'Contemporary Chinese Thought', 15580997, 0.1, 'Q4', 4, 17, 0, 0, 48, '2', '2002-2020', 'Philosophy (Q4)'), (24579, 'Contrastes', 11364076, 0.1, 'Q4', 3, 15, 468, 3, 80, '12', '2012-2020', 'Philosophy (Q4)'), (24580, 'Convivium (Czech Republic)', 23363452, 0.1, 'Q4', 1, 23, 0, 2, 66, '24', '2017-2020', 'Classics (Q4); History (Q4); Visual Arts and Performing Arts (Q4)'), (24581, 'Corps and Psychisme', 25536087, 0.1, 'Q4', 1, 28, 450, 1, 54, '8', '2016-2020', 'Applied Psychology (Q4); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (24582, 'Cristianesimo nella Storia', 3933598, 0.1, 'Q4', 4, 0, 0, 3, 78, '7', '2012-2019', 'History (Q4); Religious Studies (Q4)'), (24583, 'Critical Survey', 17522293, 0.1, 'Q4', 5, 25, 1437, 3, 74, '3', '2012-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24584, 'Critique (France)', 111600, 0.1, 'Q4', 2, 46, 558, 6, 112, '8', '2015-2020', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24585, 'Cuadernos de Literatura', 1228102, 0.1, 'Q4', 1, 0, 0, 3, 98, '47', '2017-2019', 'Literature and Literary Theory (Q4)'), (24586, 'Czas Kultury', 8672148, 0.1, 'Q4', 1, 0, 0, 1, 68, '17', '2018-2019', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Social Sciences (miscellaneous) (Q4)'), (24587, 'Dairy Industries International', 3088197, 0.1, 'Q4', 6, 13, 0, 1, 206, '3', '1976, 1979, 1981, 1996-2020', 'Food Science (Q4)'), (24588, 'Dalhousie Review', 115827, 0.1, 'Q4', 4, 26, 0, 0, 102, '9', '1973, 1975, 1980, 1985, 1999, 2002-2019', 'Literature and Literary Theory (Q4); Philosophy (Q4); Sociology and Political Science (Q4)'), (24589, 'Dance Magazine', 116009, 0.1, 'Q4', 3, 133, 0, 0, 90, '2', '2002-2015, 2017-2020', 'Visual Arts and Performing Arts (Q4)'), (24590, 'Dancing Times', 11605, 0.1, 'Q4', 1, 213, 21, 0, 370, '3', '2002-2020', 'Visual Arts and Performing Arts (Q4)'), (24591, 'Daphnis', 18796583, 0.1, 'Q4', 4, 24, 1507, 6, 89, '16', '1973, 2002-2012, 2015-2020', 'Literature and Literary Theory (Q4)'), (24592, 'Degres', 3768163, 0.1, 'Q4', 2, 19, 403, 0, 63, '24', '2002-2014, 2016-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Philosophy (Q4)'), (24593, 'Dental Press Endodontics', 21783713, 0.1, 'Q4', 5, 0, 0, 1, 63, '14', '2011-2018', 'Dentistry (miscellaneous) (Q4)'), (24594, 'Deutsche Vierteljahrsschrift fur Literaturwis', 120936, 0.1, 'Q4', 6, 24, 0, 3, 60, '5', '1973, 1978, 1988, 1999, 2002-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4); Philosophy (Q4)'), (24595, 'Dialogue and Universalism', 12345792, 0.1, 'Q4', 1, 13, 222, 0, 42, '17', '2019-2020', 'Communication (Q4); Philosophy (Q4)'), (24596, 'Dialogues d Histoire Ancienne', 1955270, 0.1, 'Q4', 5, 14, 481, 2, 73, '8', '2002-2020', 'Classics (Q4); History (Q4)'), (24597, 'Dialogues in Cardiovascular Medicine', 12729949, 0.1, 'Q4', 7, 0, 0, 0, 52, '8', '2002-2018', 'Cardiology and Cardiovascular Medicine (Q4)'), (24598, 'Discusiones Filosoficas', 1246127, 0.1, 'Q4', 3, 11, 177, 0, 43, '47', '2013-2019', 'Philosophy (Q4)'), (24599, 'Divadelni Revue', 8625409, 0.1, 'Q4', 2, 28, 312, 2, 42, '31', '2012-2019', 'Visual Arts and Performing Arts (Q4)'), (24600, 'Dix-Huitieme Siecle', 706760, 0.1, 'Q4', 5, 29, 625, 1, 67, '8', '1975-1977, 1979-1980, 1982, 1985, 2002-2013, 2015-2016, 2018-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24601, 'Dix-Septieme Siecle', 19696965, 0.1, 'Q4', 4, 38, 1376, 0, 118, '8', '2001-2020', 'Literature and Literary Theory (Q4)'), (24602, 'Documenti e Studi sulla Tradizione Filosofica', 11225750, 0.1, 'Q4', 4, 13, 0, 7, 65, '7', '2015-2019', 'History (Q4); Philosophy (Q4)'), (24603, 'Drapers', 14791617, 0.1, 'Q4', 1, 0, 0, 0, 146, '3', '2002, 2007-2018', 'Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4)'), (24604, 'Du: Zeitschrift Der Kultur', 126837, 0.1, 'Q4', 1, 81, 0, 0, 192, '19', '2002-2020', 'Cultural Studies (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)'), (24605, 'Early Medieval Europe', 9639462, 0.1, 'Q4', 24, 22, 0, 16, 54, '3', '1992-2003, 2005-2020', 'Arts and Humanities (miscellaneous) (Q4); Geography, Planning and Development (Q4); History (Q4)'), (24606, 'Earth', 1943345, 0.1, 'Q4', 13, 0, 0, 0, 105, '2', '2008-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (24607, 'Eau, l INDUSTRIE, les Nuisances', 7555016, 0.1, 'Q4', 6, 23, 38, 3, 233, '8', '1985-1991, 1996-2004, 2006-2020', 'Control and Systems Engineering (Q4); Fluid Flow and Transfer Processes (Q4); Ocean Engineering (Q4); Water Science and Technology (Q4)'), (24608, 'EBR - European Biopharmaceutical Review', 13690663, 0.1, 'Q4', 5, 0, 0, 0, 81, '3', '2004-2019', 'Pharmaceutical Science (Q4)'), (24609, 'Ecclesiology', 17455316, 0.1, 'Q4', 3, 12, 482, 1, 45, '16', '2013-2020', 'Religious Studies (Q4)'), (24610, 'Economic Outlook', 14680319, 0.1, 'Q4', 8, 32, 23, 3, 127, '3', '1977-2020', 'Economics and Econometrics (Q4)'), (24611, 'Economist', 130613, 0.1, 'Q4', 9, 0, 0, 4, 5633, '3', '1973, 1975-1979, 1988, 1992, 1997-1998, 2003-2018', 'Business, Management and Accounting (miscellaneous) (Q4); Economics and Econometrics (Q4)'), (24612, 'Education in Chemistry', 131350, 0.1, 'Q4', 7, 116, 31, 0, 99, '3', '1974-1975, 1978-1979, 1984-1986, 1989, 2006-2020', 'Chemistry (miscellaneous) (Q4); Education (Q4)'), (24613, 'Eighteenth-Century Life', 10863192, 0.1, 'Q4', 13, 23, 994, 4, 66, '2', '1977, 1980, 1982, 1984-1985, 1987, 2001-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24614, 'Engineering', 137782, 0.1, 'Q4', 2, 0, 0, 0, 76, '3', '1968, 1970-1990, 1994-2010, 2012, 2014-2019', 'Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Mechanical Engineering (Q4)'), (24615, 'English', 138215, 0.1, 'Q4', 5, 7, 302, 3, 53, '3', '2003-2020', 'Literature and Literary Theory (Q4)'), (24616, 'English Studies in Africa', 138398, 0.1, 'Q4', 11, 24, 819, 2, 44, '3', '1958-2019', 'Literature and Literary Theory (Q4)'), (24617, 'Ephemerides Liturgicae', 139505, 0.1, 'Q4', 3, 12, 597, 6, 56, '7', '2012-2019', 'Religious Studies (Q4)'), (24618, 'Epigraphica', 139572, 0.1, 'Q4', 4, 40, 1675, 3, 82, '7', '1970, 1977, 2002-2007, 2009-2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4)'), (24619, 'Erga-Logoi', 22809678, 0.1, 'Q4', 3, 6, 340, 4, 47, '7', '2013-2019', 'Classics (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24620, 'Ergotherapie und Rehabilitation', 9428623, 0.1, 'Q4', 3, 0, 0, 0, 133, '5', '2001-2019', 'Occupational Therapy (Q4); Physical Therapy, Sports Therapy and Rehabilitation (Q4)'), (24621, 'Ernahrung', 2501554, 0.1, 'Q4', 3, 0, 0, 0, 80, '28', '2011-2013, 2017-2019', 'Biotechnology (Q4); Food Science (Q4); Industrial and Manufacturing Engineering (Q4); Nutrition and Dietetics (Q4)'), (24622, 'Erosion Control', 10737227, 0.1, 'Q4', 3, 0, 0, 0, 111, '2', '2003-2019', 'Earth and Planetary Sciences (miscellaneous) (Q4); Earth-Surface Processes (Q4)'), (24623, 'ESQ - Journal of the American Renaissance', 1935021, 0.1, 'Q4', 8, 16, 1238, 2, 55, '2', '2002-2019', 'Literature and Literary Theory (Q4)'), (24624, 'Estudios de Teoria Literaria', 23139676, 0.1, 'Q4', 1, 72, 1509, 2, 99, '46', '2018-2019', 'Communication (Q4); Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24625, 'Estudios Irlandeses', 1699311, 0.1, 'Q4', 3, 29, 757, 3, 75, '12', '2012-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24626, 'Estudis Romanics', 2118572, 0.1, 'Q4', 4, 0, 0, 8, 70, '12', '1970, 2011-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24627, 'Ethnographia', 141798, 0.1, 'Q4', 2, 14, 613, 4, 95, '50', '2011-2014, 2016-2019', 'Anthropology (Q4)'), (24628, 'Etudes Anglaises', 14195, 0.1, 'Q4', 3, 21, 522, 2, 72, '8', '1968, 1979, 2001-2020', 'Literature and Literary Theory (Q4)'), (24629, 'Etudes Classiques', 14200, 0.1, 'Q4', 5, 0, 0, 0, 45, '24', '1979, 1996, 2002-2015, 2017-2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24630, 'Etudes Francaises', 142085, 0.1, 'Q4', 4, 18, 2, 3, 71, '9', '2001-2020', 'Literature and Literary Theory (Q4); Social Sciences (miscellaneous) (Q4)'), (24631, 'Etudes Theologiques et Religieuses', 142239, 0.1, 'Q4', 3, 28, 840, 1, 92, '8', '2002-2020', 'Religious Studies (Q4)'), (24632, 'Eugene O Neill Review', 21614318, 0.1, 'Q4', 2, 20, 165, 0, 49, '2', '2017-2020', 'Literature and Literary Theory (Q4)'), (24633, 'Euphorion - Zeitschrift fur Literaturgeschich', 142328, 0.1, 'Q4', 3, 14, 166, 0, 64, '5', '2002-2019', 'Literature and Literary Theory (Q4)'), (24634, 'Europe', 142751, 0.1, 'Q4', 3, 28, 108, 1, 461, '8', '1974, 2002-2020', 'Literature and Literary Theory (Q4)'), (24635, 'Evangelische Theologie', 143502, 0.1, 'Q4', 4, 48, 736, 2, 114, '5', '2009-2020', 'Religious Studies (Q4)'), (24636, 'Existenzanalyse', 10247033, 0.1, 'Q4', 2, 0, 0, 1, 76, '28', '2016-2019', 'Applied Psychology (Q4); Clinical Psychology (Q4); Psychiatry and Mental Health (Q4); Social Psychology (Q4)'), (24637, 'Eye - International Review of Graphic Design', 960779, 0.1, 'Q4', 1, 0, 0, 1, 61, '3', '2008-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24638, 'Ezikov Svyat', 13120484, 0.1, 'Q4', 1, 36, 573, 0, 74, '61', '2018-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24639, 'Fabula', 146242, 0.1, 'Q4', 7, 16, 1000, 6, 53, '5', '1958-1962, 1964-1967, 1969-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24640, 'Festival dell Architettura Magazine', 20390491, 0.1, 'Q4', 1, 10, 163, 0, 62, '7', '2018-2020', 'Architecture (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24641, 'Figures de la Psychanalyse', 17762847, 0.1, 'Q4', 5, 21, 220, 1, 107, '8', '2001-2007, 2009-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (24642, 'Filologija', 449363, 0.1, 'Q4', 3, 0, 0, 4, 44, '58', '2011-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24643, 'Filozofska Istrazivanja', 3514706, 0.1, 'Q4', 3, 43, 704, 10, 153, '58', '2009-2020', 'Philosophy (Q4)'), (24644, 'Fire Rescue Magazine', 10940529, 0.1, 'Q4', 2, 0, 0, 0, 116, '2', '2006-2009, 2015-2017', 'Emergency Medicine (Q4); Emergency Nursing (Q4)'), (24645, 'Folia Linguistica et Litteraria', 23370955, 0.1, 'Q4', 0, 28, 598, 0, 62, '116', '2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24646, 'Forum Italicum', 145858, 0.1, 'Q4', 4, 37, 1465, 3, 126, '2', '1967, 1969-1974, 1976-1985, 1988, 1990-1994, 1998-1999, 2002-2020', 'Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24647, 'Fourth Genre: Explorations in Nonfiction', 15441733, 0.1, 'Q4', 2, 42, 1, 0, 91, '2', '2010-2019', 'Literature and Literary Theory (Q4)'), (24648, 'French Forum', 15341836, 0.1, 'Q4', 6, 15, 297, 3, 91, '2', '2002-2019', 'Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24649, 'Fruit Growing Research', 23443723, 0.1, 'Q4', 3, 13, 291, 1, 59, '43', '2012-2019', 'Agronomy and Crop Science (Q4); Horticulture (Q4); Soil Science (Q4)'), (24650, 'Fuels and Lubes International', 1179470, 0.1, 'Q4', 2, 26, 41, 1, 83, '63', '2002-2012, 2014-2019', 'Economics and Econometrics (Q4); Fuel Technology (Q4); Renewable Energy, Sustainability and the Environment (Q4)'), (24651, 'Gas Wasserfach Wasser Abwasser', 163651, 0.1, 'Q4', 11, 0, 0, 2, 390, '5', '1970-2013, 2015-2018', 'Water Science and Technology (Q4)'), (24652, 'Gazette des Archives', 165522, 0.1, 'Q4', 2, 50, 589, 2, 187, '8', '1976, 2012-2019', 'History (Q4); Library and Information Sciences (Q4)'), (24653, 'Geodezia es Kartografia', 167118, 0.1, 'Q4', 7, 0, 0, 1, 67, '50', '1979-1981, 1988-1989, 1991-1992, 1995-2019', 'Computers in Earth Sciences (Q4); Earth-Surface Processes (Q4); Geography, Planning and Development (Q4); Geophysics (Q4)'), (24654, 'Geografija v Soli', 13184717, 0.1, 'Q4', 3, 30, 235, 1, 67, '60', '1993, 1995-1998, 2000-2014, 2016-2019', 'Earth-Surface Processes (Q4); Geography, Planning and Development (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (24655, 'Germanisch-Romanische Monatsschrift', 168904, 0.1, 'Q4', 5, 18, 884, 1, 51, '5', '1972, 2002-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24656, 'German Life and Letters', 168777, 0.1, 'Q4', 12, 34, 0, 7, 88, '3', '1936-1939, 1947-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)'), (24657, 'German Studies Review', 1497952, 0.1, 'Q4', 14, 23, 1554, 10, 66, '2', '1982, 1985, 1987, 1996-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24658, 'Gestalt', 11545232, 0.1, 'Q4', 2, 14, 61, 0, 47, '8', '2002-2019', 'Clinical Psychology (Q4)'), (24659, 'Giornale di Storia Costituzionale', 18277950, 0.1, 'Q4', 3, 30, 879, 7, 95, '7', '2012-2020', 'History (Q4); Law (Q4)'), (24660, 'Giornale Italiano di Endoscopia Digestiva', 3940225, 0.1, 'Q4', 2, 31, 403, 0, 64, '7', '1989-2000, 2002-2015, 2018-2020', 'Gastroenterology (Q4); Radiology, Nuclear Medicine and Imaging (Q4)'), (24661, 'Giornale Storico della Letteratura Italiana', 170496, 0.1, 'Q4', 2, 16, 653, 0, 79, '7', '2009-2019', 'Literature and Literary Theory (Q4)'), (24662, 'Glossae', 22552707, 0.1, 'Q4', 1, 28, 1738, 2, 68, '12', '2017-2019', 'History (Q4); Law (Q4)'), (24663, 'Goethe Jahrbuch', 3234207, 0.1, 'Q4', 3, 0, 0, 0, 78, '5', '2002-2014, 2016-2018', 'Literature and Literary Theory (Q4)'), (24664, 'Goya', 172715, 0.1, 'Q4', 5, 22, 1510, 3, 59, '12', '2002-2006, 2008-2019', 'Visual Arts and Performing Arts (Q4)'), (24665, 'Gradiva', 3638057, 0.1, 'Q4', 0, 18, 84, 0, 51, '2', '2002-2012, 2017-2019', 'Literature and Literary Theory (Q4)'), (24666, 'Guerres Mondiales et Conflicts Contemporains', 9842292, 0.1, 'Q4', 6, 35, 1347, 3, 111, '8', '1999, 2001-2020', 'History (Q4)'), (24667, 'Harvard Design Magazine', 10934421, 0.1, 'Q4', 7, 0, 0, 3, 124, '2', '2009-2019', 'Architecture (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24668, 'Haut', 9382216, 0.1, 'Q4', 3, 0, 0, 0, 61, '5', '2003-2017', 'Dermatology (Q4)'), (24669, 'Hegel-Jahrbuch', 731579, 0.1, 'Q4', 4, 0, 0, 1, 229, '5', '1999-2006, 2008-2018', 'Philosophy (Q4)'), (24670, 'Hispanofila', 182206, 0.1, 'Q4', 4, 20, 634, 13, 99, '2', '2002-2019', 'Literature and Literary Theory (Q4)'), (24671, 'Histoire Medievale et Archeologie', 9912894, 0.1, 'Q4', 1, 11, 506, 3, 54, '8', '2013-2015, 2017-2019', 'Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)'), (24672, 'Historia (France)', 12700835, 0.1, 'Q4', 1, 0, 0, 0, 209, '8', '2009-2018', 'Arts and Humanities (miscellaneous) (Q4)'), (24673, 'Historicka Sociologie', 18040616, 0.1, 'Q4', 2, 19, 732, 1, 56, '31', '2016-2020', 'Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)'), (24674, 'Hospital Infection Control and Prevention', 98180, 0.1, 'Q4', 2, 60, 111, 0, 158, '2', '1977-1983, 2006-2009, 2014-2020', 'Advanced and Specialized Nursing (Q4); Infectious Diseases (Q4); Leadership and Management (Q4)'), (24675, 'Hungarian Studies', 2366568, 0.1, 'Q4', 5, 12, 325, 3, 68, '50', '2007-2019', 'Arts and Humanities (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24676, 'Ikon', 18468551, 0.1, 'Q4', 3, 31, 2245, 0, 87, '58', '2008-2010, 2012, 2014-2019', 'Religious Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24677, 'Images (Poland)', 1731450, 0.1, 'Q4', 0, 0, 0, 0, 47, '17', '2018', 'Communication (Q4); Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24678, 'Imaginaire et Inconscient', 16289676, 0.1, 'Q4', 2, 41, 429, 2, 47, '8', '2001-2020', 'Clinical Psychology (Q4)'), (24679, 'Indian Historical Review', 9755977, 0.1, 'Q4', 2, 18, 585, 1, 42, '2', '1999, 2001, 2015-2020', 'History (Q4)'), (24680, 'Indian Journal of Forensic Medicine and Patho', 9743383, 0.1, 'Q4', 1, 3, 52, 6, 121, '4', '2016-2020', 'Pathology and Forensic Medicine (Q4)'), (24681, 'Infini', 754023, 0.1, 'Q4', 1, 0, 0, 0, 73, '8', '2002, 2004-2019', 'Literature and Literary Theory (Q4)'), (24682, 'Information Grammaticale', 2229838, 0.1, 'Q4', 4, 8, 282, 0, 93, '24', '2011-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24683, 'Inter Bloc', 2423960, 0.1, 'Q4', 3, 40, 239, 2, 122, '8', '2006-2020', 'Medical and Surgical Nursing (Q4)'), (24684, 'Internationale Kirchliche Zeitschrift', 209252, 0.1, 'Q4', 2, 0, 0, 1, 46, '19', '2011-2013, 2015-2019', 'Religious Studies (Q4)'), (24685, 'Internationales Archiv fuer Sozialgeschichte ', 18659128, 0.1, 'Q4', 8, 28, 1037, 3, 67, '5', '1976, 1978-2019', 'History (Q4); Literature and Literary Theory (Q4)'), (24686, 'International Journal of Francophone Studies', 13682679, 0.1, 'Q4', 4, 7, 324, 1, 42, '3', '2012-2019', 'Cultural Studies (Q4); Gender Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4); Visua'), (24687, 'International Review of African American Art', 10450920, 0.1, 'Q4', 2, 10, 65, 0, 68, '2', '2009-2013, 2015-2019', 'Museology (Q4); Visual Arts and Performing Arts (Q4)'), (24688, 'International Review of Allergology and Clini', 23007877, 0.1, 'Q4', 1, 0, 0, 0, 71, '17', '2014-2019', 'Family Practice (Q4); Health (social science) (Q4); Immunology and Allergy (Q4)'), (24689, 'Intersezioni', 3932451, 0.1, 'Q4', 4, 0, 0, 2, 68, '7', '1981-1983, 1987-1989, 1997-2019', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24690, 'Intervencni a Akutni Kardiologie', 18035302, 0.1, 'Q4', 4, 44, 672, 1, 132, '31', '2010-2020', 'Cardiology and Cardiovascular Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)'), (24691, 'IRYO - Japanese Journal of National Medical S', 211699, 0.1, 'Q4', 3, 68, 245, 0, 227, '6', '1949-2019', 'Medicine (miscellaneous) (Q4)'), (24692, 'Islamic Quarterly', 211842, 0.1, 'Q4', 1, 12, 402, 4, 73, '3', '1983, 1985, 2011-2019', 'Cultural Studies (Q4); History (Q4); Religious Studies (Q4)'), (24693, 'Italianistica', 3913368, 0.1, 'Q4', 3, 12, 21, 0, 93, '7', '2002-2018', 'Literature and Literary Theory (Q4)'), (24694, 'James Joyce Quarterly', 19386036, 0.1, 'Q4', 6, 25, 513, 2, 63, '2', '1989, 2002-2004, 2006-2019', 'Literature and Literary Theory (Q4)'), (24695, 'Japanese Journal of Clinical Chemistry', 3705633, 0.1, 'Q4', 4, 31, 488, 2, 88, '6', '1971-2020', 'Clinical Biochemistry (Q4)'), (24696, 'Japanese Journal of Clinical Urology', 3852393, 0.1, 'Q4', 4, 141, 1477, 0, 456, '6', '1973-2020', 'Urology (Q4)'), (24697, 'Japanese Journal of Plastic Surgery', 215228, 0.1, 'Q4', 6, 0, 0, 0, 246, '6', '1965-2018', 'Surgery (Q4)'), (24698, 'Jewish Culture and History', 1462169, 0.1, 'Q4', 3, 23, 0, 3, 53, '3', '1999, 2001, 2015-2020', 'Cultural Studies (Q4); History (Q4); Sociology and Political Science (Q4)'), (24699, 'Jewish History', 15728579, 0.1, 'Q4', 13, 19, 0, 6, 49, '16', '1986-2002, 2004, 2006-2020', 'Cultural Studies (Q4); History (Q4)'), (24700, 'Joint Commission: The Source', 15428672, 0.1, 'Q4', 2, 0, 0, 0, 89, '2', '2015-2019', 'Leadership and Management (Q4)'), (24701, 'Journal Africain d Hepato-Gastroenterologie', 19543212, 0.1, 'Q4', 5, 0, 0, 0, 44, '8', '2009-2018', 'Gastroenterology (Q4); Hepatology (Q4); Infectious Diseases (Q4)'), (24702, 'Journal des Professionnels de l Enfance', 12975354, 0.1, 'Q4', 1, 59, 172, 0, 153, '8', '2007-2020', 'Pediatrics (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (24703, 'Journal Europeen des Urgences et de Reanimati', 22114238, 0.1, 'Q4', 3, 32, 777, 0, 93, '16', '2011-2020', 'Critical Care and Intensive Care Medicine (Q4); Emergency Medicine (Q4)'), (24704, 'Journal for Weavers, Spinners and Dyers', 2677806, 0.1, 'Q4', 2, 30, 41, 0, 74, '3', '2001-2020', 'Business and International Management (Q4); Chemical Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (24705, 'Journal fur Anasthesie und Intensivbehandlung', 9414223, 0.1, 'Q4', 5, 0, 0, 0, 118, '5', '2000-2019', 'Anesthesiology and Pain Medicine (Q4); Critical Care and Intensive Care Medicine (Q4)'), (24706, 'Journal fur Pharmakologie und Therapie', 14324334, 0.1, 'Q4', 2, 0, 0, 0, 67, '5', '2007-2019', 'Pharmacology (medical) (Q4)'), (24707, 'Journal International Medical Sciences Academ', 971071, 0.1, 'Q4', 9, 0, 0, 0, 90, '4', '1990-2018', 'Medicine (miscellaneous) (Q4)'), (24708, 'Journal of Chinese Medicine', 1438042, 0.1, 'Q4', 9, 27, 405, 1, 57, '3', '2001-2020', 'Complementary and Alternative Medicine (Q4)'), (24709, 'Journal of Chinese Philosophy', 3018121, 0.1, 'Q4', 17, 20, 0, 2, 44, '3', '1973-2020', 'Philosophy (Q4)'), (24710, 'Journal of Coptic Studies', 17831512, 0.1, 'Q4', 3, 0, 0, 1, 49, '24', '2011-2019', 'History (Q4); Religious Studies (Q4)'), (24711, 'Journal of Japanese Dental Society of Anesthe', 3865835, 0.1, 'Q4', 5, 0, 0, 0, 59, '6', '1993-2017', 'Anesthesiology and Pain Medicine (Q4); Dentistry (miscellaneous) (Q4)'), (24712, 'Journal of Jesuit Studies', 22141324, 0.1, 'Q4', 5, 35, 1279, 10, 74, '16', '2014-2020', 'History (Q4); Religious Studies (Q4)'), (24713, 'Journal of Lusophone Studies', 24694800, 0.1, 'Q4', 2, 21, 557, 3, 70, '2', '2016-2020', 'History (Q4); Language and Linguistics (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24714, 'Journal of Medieval and Early Modern Studies', 15278263, 0.1, 'Q4', 20, 27, 1610, 5, 72, '2', '2002-2020', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4)'), (24715, 'Journal of Modern Turkish History', 21471592, 0.1, 'Q4', 1, 22, 1075, 2, 63, '18', '2015-2020', 'History (Q4)'), (24716, 'Journal of Musicological Research', 1411896, 0.1, 'Q4', 11, 20, 0, 2, 45, '3', '1979, 1981-2020', 'Music (Q4)'), (24717, 'Journal of Philosophy ARHE', 18200958, 0.1, 'Q4', 1, 14, 281, 0, 57, '55', '2012-2018', 'Philosophy (Q4)'), (24718, 'Journal of Rare Cardiovascular Diseases', 22993711, 0.1, 'Q4', 2, 8, 102, 0, 61, '17', '2017-2019', 'Cardiology and Cardiovascular Medicine (Q4)'), (24719, 'Journal of Romance Studies', 14733536, 0.1, 'Q4', 2, 21, 664, 5, 86, '2', '2014-2020', 'Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4); Social Sciences (miscellaneous) (Q4); Visual Arts and Performing Arts (Q4)'), (24720, 'Journal of the Chinese Institute of Civil and', 10155856, 0.1, 'Q4', 5, 48, 856, 2, 130, '22', '1991-1992, 2007-2020', 'Civil and Structural Engineering (Q4)'), (24721, 'Journal of the Indian Medical Association', 195847, 0.1, 'Q4', 29, 127, 1244, 1, 72, '4', '1945-1948, 1950-2016, 2019-2020', 'Medicine (miscellaneous) (Q4)'), (24722, 'Journal of the Institute of Image Electronics', 2859831, 0.1, 'Q4', 8, 0, 0, 0, 86, '6', '2001-2017', 'Computer Science (miscellaneous) (Q4); Electrical and Electronic Engineering (Q4)'), (24723, 'Journal of the Medical Society of Toho Univer', 408670, 0.1, 'Q4', 3, 12, 33, 2, 54, '6', '1973-2014, 2016-2019', 'Medicine (miscellaneous) (Q4)'), (24724, 'Journal of the West', 225169, 0.1, 'Q4', 5, 28, 833, 0, 67, '2', '1969, 1972, 1977-1978, 1982, 1988-1990, 2000, 2002-2019', 'Cultural Studies (Q4); History (Q4)'), (24725, 'Kairos', 15212300, 0.1, 'Q4', 3, 0, 0, 5, 82, '60', '2017-2019', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (24726, 'Kenyon Review', 163075, 0.1, 'Q4', 5, 54, 2, 0, 110, '2', '2002-2013, 2017-2020', 'Literature and Literary Theory (Q4)'), (24727, 'Kirchliche Zeitgeschichte', 2196808, 0.1, 'Q4', 2, 38, 943, 3, 52, '5', '2011, 2013-2018, 2020', 'History (Q4); Religious Studies (Q4)'), (24728, 'Knjizevna Smotra', 4550463, 0.1, 'Q4', 1, 52, 1622, 3, 153, '58', '2013-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24729, 'Kobunshi', 4541138, 0.1, 'Q4', 5, 0, 0, 1, 82, '6', '1952-1953, 1956-1959, 1961, 1963-1965, 1967-1974, 1978-1980, 1989-2008, 2011-2018', 'Chemical Engineering (miscellaneous) (Q4); Environmental Science (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4); Polymers and Plastics (Q4)'), (24730, 'Konsthistorisk Tidskrift', 16512294, 0.1, 'Q4', 5, 18, 0, 2, 43, '3', '1932-2020', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (24731, 'Konteksty', 12306142, 0.1, 'Q4', 1, 0, 0, 3, 201, '17', '2011-2014, 2016-2019', 'Anthropology (Q4); Cultural Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24732, 'Kritika i Semiotika', 23071737, 0.1, 'Q4', 1, 46, 1013, 0, 49, '10', '2019-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24733, 'Kyokai Joho Imeji Zasshi/Journal of the Insti', 13426907, 0.1, 'Q4', 12, 28, 242, 10, 216, '6', '1997-2020', 'Computer Science Applications (Q4); Electrical and Electronic Engineering (Q4); Media Technology (Q4)'), (24734, 'La Linguistique', 75966, 0.1, 'Q4', 5, 18, 366, 4, 51, '8', '2004-2020', 'Arts and Humanities (miscellaneous) (Q4); Linguistics and Language (Q4)'), (24735, 'Landfall', 237930, 0.1, 'Q4', 3, 31, 8, 0, 91, '41', '2000-2019', 'Literature and Literary Theory (Q4); Political Science and International Relations (Q4)'), (24736, 'Langage et l Homme', 4587251, 0.1, 'Q4', 2, 0, 0, 2, 65, '24', '2011, 2013-2015, 2017-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24737, 'Latomus', 238856, 0.1, 'Q4', 7, 0, 0, 3, 69, '24', '1971-1974, 1980, 2002-2018', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Classics (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24738, 'Laval Theologique et Philosophique', 239054, 0.1, 'Q4', 5, 6, 542, 0, 42, '9', '2002-2011, 2014, 2016-2019', 'Philosophy (Q4); Religious Studies (Q4)'), (24739, 'Lectora', 11365781, 0.1, 'Q4', 1, 13, 356, 1, 49, '12', '2017-2019', 'Cultural Studies (Q4); Gender Studies (Q4); Philosophy (Q4)'), (24740, 'Legacy', 7484321, 0.1, 'Q4', 9, 9, 371, 1, 73, '2', '2002-2019', 'Gender Studies (Q4); Literature and Literary Theory (Q4)'), (24741, 'Lege Artis Medicinae', 8664811, 0.1, 'Q4', 8, 0, 0, 2, 151, '50', '1977, 1996-2019', 'Medicine (miscellaneous) (Q4)'), (24742, 'Letonica', 14073110, 0.1, 'Q4', 1, 10, 362, 1, 63, '77', '2016-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Music (Q4); Visual Arts and Performing Arts (Q4)'), (24743, 'Lettres Romanes', 241415, 0.1, 'Q4', 2, 18, 534, 1, 63, '24', '2002-2018', 'Literature and Literary Theory (Q4)'), (24744, 'Liberte', 242020, 0.1, 'Q4', 2, 47, 0, 2, 233, '9', '2002-2019', 'Literature and Literary Theory (Q4); Philosophy (Q4); Sociology and Political Science (Q4); Visual Arts and Performing Arts (Q4)'), (24745, 'Lingua Nostra', 243868, 0.1, 'Q4', 3, 14, 526, 0, 46, '7', '1968, 1971-1973, 2002-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24746, 'Linguistica', 2079312, 0.1, 'Q4', 4, 17, 520, 3, 54, '12', '2012-2019', 'Artificial Intelligence (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24747, 'Literary Imagination', 15239012, 0.1, 'Q4', 2, 18, 492, 1, 61, '3', '2009-2020', 'Literature and Literary Theory (Q4)'), (24748, 'Literatur und Kritik', 24466, 0.1, 'Q4', 1, 69, 103, 0, 151, '28', '2009-2019', 'Literature and Literary Theory (Q4)'), (24749, 'Litterature', 474800, 0.1, 'Q4', 4, 38, 1203, 6, 104, '8', '2002-2020', 'Literature and Literary Theory (Q4)'), (24750, 'Logos and Pneuma - Chinese Journal of Theolog', 10232583, 0.1, 'Q4', 2, 13, 331, 0, 76, '1', '2008-2019', 'Religious Studies (Q4)'), (24751, 'Lotus International', 11249064, 0.1, 'Q4', 3, 0, 0, 0, 101, '7', '2002-2019', 'Architecture (Q4); Visual Arts and Performing Arts (Q4)'), (24752, 'Louvain Medical', 246956, 0.1, 'Q4', 7, 0, 0, 2, 193, '24', '1973-2019', 'Medicine (miscellaneous) (Q4)'), (24753, 'Louvain Studies', 246964, 0.1, 'Q4', 3, 3, 181, 1, 68, '24', '1977, 1987-1988, 2011-2019', 'Philosophy (Q4); Religious Studies (Q4)'), (24754, 'Lud', 761435, 0.1, 'Q4', 2, 20, 920, 2, 49, '17', '2012-2014, 2016-2019', 'Anthropology (Q4); Cultural Studies (Q4)'), (24755, 'Luso-Brazilian Review', 15489957, 0.1, 'Q4', 5, 6, 209, 4, 44, '2', '1978, 1980-1981, 1999, 2001, 2009-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)'), (24756, 'Machado de Assis em Linha', 19836821, 0.1, 'Q4', 2, 31, 447, 7, 86, '14', '2014-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24757, 'Maghreb - Machrek', 22716815, 0.1, 'Q4', 5, 10, 388, 1, 53, '8', '1987, 1989-1990, 1994, 2007-2019', 'Cultural Studies (Q4); History (Q4); Law (Q4); Literature and Literary Theory (Q4); Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (24758, 'Magyar Filozofiai Szemle', 250090, 0.1, 'Q4', 4, 46, 1341, 2, 116, '50', '2011-2019', 'Philosophy (Q4)'), (24759, 'MAIA-Rivista di Letterature Classiche', 250538, 0.1, 'Q4', 4, 28, 518, 2, 109, '7', '1971-1974, 2002-2019', 'Classics (Q4); Literature and Literary Theory (Q4)'), (24760, 'Marine Technology', 253316, 0.1, 'Q4', 4, 0, 0, 1, 71, '2', '1969-1975, 1977-1986, 1996-1999, 2010-2018', 'Mechanical Engineering (Q4); Ocean Engineering (Q4)'), (24761, 'Maritime by Holland', 22113444, 0.1, 'Q4', 2, 0, 0, 1, 171, '16', '2011-2019', 'Civil and Structural Engineering (Q4); Mechanical Engineering (Q4); Ocean Engineering (Q4)'), (24762, 'Materiali e Discussioni per l Analisi dei Tes', 3926338, 0.1, 'Q4', 5, 0, 0, 2, 49, '7', '2009-2018', 'Classics (Q4); Literature and Literary Theory (Q4)'), (24763, 'Medecins - Le Magazine Ordre National Des Med', 19672845, 0.1, 'Q4', 1, 0, 0, 0, 78, '8', '2006-2009, 2012-2019', 'Medicine (miscellaneous) (Q4)'), (24764, 'Medizintechnik', 3449416, 0.1, 'Q4', 3, 0, 0, 0, 60, '5', '1978-2019', 'Medicine (miscellaneous) (Q4)'), (24765, 'Memorias', 17948886, 0.1, 'Q4', 3, 11, 490, 2, 50, '47', '2014-2020', 'Archeology (Q4); Archeology (arts and humanities) (Q4); History (Q4)'), (24766, 'Metiers de la Petite Enfance', 1258780, 0.1, 'Q4', 3, 115, 282, 1, 350, '8', '2002-2020', 'Developmental and Educational Psychology (Q4); Pharmacology (nursing) (Q4)'), (24767, 'Metszet', 20612710, 0.1, 'Q4', 2, 64, 293, 5, 194, '50', '2014-2020', 'Architecture (Q4); Conservation (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24768, 'Mitteilungen des Kunsthistorischen Institutes', 3421201, 0.1, 'Q4', 5, 6, 206, 2, 43, '5', '2002-2010, 2013-2019', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (24769, 'Modernist Cultures', 20411022, 0.1, 'Q4', 1, 25, 1046, 4, 50, '3', '2018-2020', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Music (Q4); Sociology and Political Science (Q4); Visual Arts and Performing Arts (Q4)'), (24770, 'Modern Philology', 268232, 0.1, 'Q4', 15, 27, 473, 5, 62, '2', '1984, 1986, 1996-2020', 'Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24771, 'Montana : the magazine of western history', 269891, 0.1, 'Q4', 4, 13, 0, 0, 53, '2', '1971, 1973, 1983, 1985, 1987, 2000, 2002-2019', 'History (Q4)'), (24772, 'Moving Image, The', 15424235, 0.1, 'Q4', 3, 0, 0, 2, 53, '2', '2013-2019', 'Conservation (Q4); Visual Arts and Performing Arts (Q4)'), (24773, 'MSW Management', 10537899, 0.1, 'Q4', 2, 0, 0, 0, 163, '2', '2007-2019', 'Pollution (Q4); Waste Management and Disposal (Q4)'), (24774, 'Museum', 274089, 0.1, 'Q4', 3, 31, 0, 1, 97, '2', '2002-2004, 2009-2012, 2014-2020', 'Conservation (Q4); Museology (Q4)'), (24775, 'Musik und Kirche', 274771, 0.1, 'Q4', 2, 0, 0, 0, 46, '5', '2002-2012, 2014-2018', 'Music (Q4)'), (24776, 'Nau Literaria', 19814526, 0.1, 'Q4', 1, 35, 470, 1, 73, '14', '2012-2020', 'Literature and Literary Theory (Q4)'), (24777, 'Neuphilologische Mitteilungen', 283754, 0.1, 'Q4', 8, 0, 0, 2, 46, '38', '1971, 1974, 1977, 1980, 2002-2015, 2017-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24778, 'New Design', 14722674, 0.1, 'Q4', 2, 67, 0, 0, 152, '3', '2005-2019', 'Control and Systems Engineering (Q4); Industrial and Manufacturing Engineering (Q4)'), (24779, 'New England Quarterly-A Historical Review of ', 284866, 0.1, 'Q4', 10, 18, 0, 4, 44, '2', '1964, 1968-1969, 1975, 1978-1979, 1982-1988, 2000, 2002-2020', 'History (Q4); Literature and Literary Theory (Q4)'), (24780, 'New Mexico Historical Review', 286206, 0.1, 'Q4', 8, 0, 0, 0, 45, '2', '1979, 1981-1983, 1986, 1988, 2000, 2002-2015, 2017-2019', 'History (Q4)'), (24781, 'Nishinihon Journal of Dermatology', 3869784, 0.1, 'Q4', 6, 53, 654, 1, 212, '6', '1969-2020', 'Dermatology (Q4)'), (24782, 'Nishinihon Journal of Urology', 290726, 0.1, 'Q4', 5, 77, 892, 0, 130, '6', '1981-2019', 'Urology (Q4)'), (24783, 'North American Review', 292397, 0.1, 'Q4', 1, 21, 0, 0, 75, '2', '1978, 2002-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24784, 'Nottingham French Studies', 294586, 0.1, 'Q4', 8, 23, 1150, 3, 75, '3', '2002-2019', 'Cultural Studies (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24785, 'Nouvelle Revue Francaise', 294802, 0.1, 'Q4', 1, 80, 53, 0, 225, '8', '2002-2020', 'Literature and Literary Theory (Q4)'), (24786, 'Oeil', 29862, 0.1, 'Q4', 1, 229, 0, 0, 379, '8', '2002-2020', 'Visual Arts and Performing Arts (Q4)'), (24787, 'Olhydraulik und Penumatik', 3412660, 0.1, 'Q4', 6, 110, 187, 0, 202, '5', '1970-1971, 1973-2014, 2016-2020', 'Mechanical Engineering (Q4); Surfaces, Coatings and Films (Q4)'), (24788, 'Opera', 303526, 0.1, 'Q4', 1, 0, 0, 0, 86, '3', '2002-2014, 2017-2019', 'Music (Q4); Visual Arts and Performing Arts (Q4)'), (24789, 'Opuscula Historiae Artium', 12117390, 0.1, 'Q4', 2, 0, 0, 3, 44, '31', '2013-2019', 'Visual Arts and Performing Arts (Q4)'), (24790, 'Oriente Moderno', 22138617, 0.1, 'Q4', 8, 7, 165, 1, 48, '2', '1978, 1996-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Sociology and Political Science (Q4)'), (24791, 'Orillas', 22804390, 0.1, 'Q4', 1, 0, 0, 8, 94, '13', '2018-2019', 'History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24792, 'Osmanli Arastirmalari - Journal of Ottoman St', 2550636, 0.1, 'Q4', 4, 8, 603, 2, 55, '18', '2015-2020', 'Cultural Studies (Q4); History (Q4)'), (24793, 'Osservatorio del Diritto Civile e Commerciale', 22812628, 0.1, 'Q4', 2, 0, 0, 1, 64, '7', '2012-2019', 'Law (Q4)'), (24794, 'Osterreichisches Archiv fur Recht und Religio', 15608670, 0.1, 'Q4', 3, 0, 0, 0, 78, '28', '2011-2018', 'Law (Q4); Religious Studies (Q4)'), (24795, 'Otolaryngology - Head and Neck Surgery (Tokyo', 9143491, 0.1, 'Q4', 3, 142, 781, 0, 529, '6', '1988-2020', 'Otorhinolaryngology (Q4); Surgery (Q4)'), (24796, 'Oto-Rhino-Laryngology Tokyo', 3869687, 0.1, 'Q4', 3, 7, 107, 0, 57, '6', '1932, 1958-2019', 'Otorhinolaryngology (Q4)'), (24797, 'Oxford Literary Review', 3051498, 0.1, 'Q4', 10, 46, 389, 6, 43, '3', '2002-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24798, 'Pacific Coast Philology', 2326067, 0.1, 'Q4', 1, 6, 145, 3, 51, '2', '2017-2020', 'Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24799, 'Paediatria Croatica, Supplement', 1330724, 0.1, 'Q4', 6, 0, 0, 2, 106, '58', '1998-2019', 'Pediatrics, Perinatology and Child Health (Q4)'), (24800, 'PAJ - Journal of Performance and Art', 15379477, 0.1, 'Q4', 9, 43, 73, 2, 103, '2', '2002-2020', 'Music (Q4); Visual Arts and Performing Arts (Q4)'), (24801, 'Pamietnik Literacki', 310514, 0.1, 'Q4', 2, 0, 0, 2, 91, '17', '2010-2018', 'Literature and Literary Theory (Q4)'), (24802, 'Papers on French Seventeenth Century Literatu', 3430758, 0.1, 'Q4', 3, 8, 270, 3, 50, '5', '1987, 2002-2019', 'Literature and Literary Theory (Q4)'), (24803, 'Parabola', 3621596, 0.1, 'Q4', 2, 87, 68, 0, 73, '2', '2002-2015, 2017-2020', 'Cultural Studies (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24804, 'Paris Review', 312037, 0.1, 'Q4', 3, 20, 0, 0, 83, '8', '2002-2014, 2016-2019', 'Literature and Literary Theory (Q4)'), (24805, 'Parole de l Orient', 2588331, 0.1, 'Q4', 3, 16, 609, 0, 55, '70', '2011-2015, 2017-2019', 'Religious Studies (Q4)'), (24806, 'Pediatriya', 4797876, 0.1, 'Q4', 2, 50, 922, 1, 164, '61', '1950, 1972-1991, 1995-2019', 'Pediatrics, Perinatology and Child Health (Q4)'), (24807, 'Pensee', 314773, 0.1, 'Q4', 3, 51, 701, 1, 129, '8', '1971, 1978, 2006-2019', 'Philosophy (Q4); Political Science and International Relations (Q4)'), (24808, 'Pensee Plurielle', 17821479, 0.1, 'Q4', 5, 25, 560, 3, 71, '24', '2001-2020', 'Sociology and Political Science (Q4)'), (24809, 'Performance Apparel Markets', 14776456, 0.1, 'Q4', 8, 8, 29, 16, 46, '3', '2002-2020', 'Materials Science (miscellaneous) (Q4)'), (24810, 'Perfusion (Germany)', 14324334, 0.1, 'Q4', 7, 0, 0, 0, 72, '5', '2001, 2004-2019', 'Cardiology and Cardiovascular Medicine (Q4); Health Professions (miscellaneous) (Q4); Medicine (miscellaneous) (Q4)'), (24811, 'Perinatology', 9722408, 0.1, 'Q4', 3, 29, 429, 0, 48, '4', '2001-2009, 2011-2020', 'Obstetrics and Gynecology (Q4); Pediatrics, Perinatology and Child Health (Q4)'), (24812, 'Perspective (France)', 17777852, 0.1, 'Q4', 4, 4, 93, 2, 73, '8', '2010, 2012-2019', 'History (Q4); Visual Arts and Performing Arts (Q4)'), (24813, 'Pharmaceutical Outsourcing', 19453337, 0.1, 'Q4', 6, 0, 0, 1, 119, '2', '2010-2018', 'Health Policy (Q4); Pharmaceutical Science (Q4)'), (24814, 'Pharmaceutisch Weekblad', 316911, 0.1, 'Q4', 9, 365, 0, 7, 701, '16', '1948-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (24815, 'Pharmazeutische Zeitung', 317136, 0.1, 'Q4', 7, 43, 0, 2, 1107, '5', '1947-1948, 1985-2020', 'Pharmacology (Q4); Pharmacology (medical) (Q4)'), (24816, 'Philippine Journal of Nursing', 483818, 0.1, 'Q4', 3, 13, 306, 0, 53, '63', '1966-1994, 2006-2008, 2017', 'Nursing (miscellaneous) (Q4)'), (24817, 'Philological Quarterly', 317977, 0.1, 'Q4', 8, 0, 0, 1, 50, '2', '2002-2019', 'History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24818, 'Philosophia Christi', 15291634, 0.1, 'Q4', 5, 0, 0, 2, 73, '2', '2011, 2014-2018', 'Philosophy (Q4); Religious Studies (Q4)'), (24819, 'Philosophical Readings', 20364989, 0.1, 'Q4', 2, 44, 1880, 4, 90, '12', '2015-2020', 'Philosophy (Q4)'), (24820, 'Poetry', 322032, 0.1, 'Q4', 3, 43, 2, 0, 52, '2', '2009-2020', 'Literature and Literary Theory (Q4)'), (24821, 'Point Veterinaire', 3354997, 0.1, 'Q4', 8, 0, 0, 0, 153, '8', '1996-2018', 'Veterinary (miscellaneous) (Q4)'), (24822, 'Porownania', 1733165, 0.1, 'Q4', 2, 38, 1150, 2, 122, '17', '2015-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24823, 'Positif', 484911, 0.1, 'Q4', 4, 210, 153, 1, 343, '8', '2002-2020', 'Visual Arts and Performing Arts (Q4)'), (24824, 'Practica Otologica', 326313, 0.1, 'Q4', 6, 136, 1709, 1, 405, '6', '1925-1933, 1936, 1943, 1955-1973, 1975-2020', 'Otorhinolaryngology (Q4)'), (24825, 'Practica Otologica, Supplement', 9121870, 0.1, 'Q4', 3, 0, 0, 0, 90, '6', '1986-2000, 2002-2004, 2006-2008, 2010, 2012, 2015-2018', 'Otorhinolaryngology (Q4)'), (24826, 'Preservation', 10909931, 0.1, 'Q4', 2, 0, 0, 0, 49, '2', '2002-2018', 'Conservation (Q4); Visual Arts and Performing Arts (Q4)'), (24827, 'Printed Circuit Design and Fab', 19395442, 0.1, 'Q4', 5, 0, 0, 2, 197, '2', '2008-2019', 'Electrical and Electronic Engineering (Q4); Industrial and Manufacturing Engineering (Q4); Industrial Relations (Q4); Management of Technology and Innovation (Q4)'), (24828, 'Print Quarterly', 2658305, 0.1, 'Q4', 6, 5, 41, 2, 59, '3', '1986, 2002-2020', 'Visual Arts and Performing Arts (Q4)'), (24829, 'Project Baikal', 23093072, 0.1, 'Q4', 2, 66, 410, 16, 126, '10', '2018-2020', 'Architecture (Q4); Geography, Planning and Development (Q4); Urban Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24830, 'Prospettiva', 3940802, 0.1, 'Q4', 4, 0, 0, 1, 55, '7', '2002-2017', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Visual Arts and Performing Arts (Q4)'), (24831, 'Przeglad Filozoficzno-Literacki', 16432045, 0.1, 'Q4', 1, 0, 0, 0, 68, '17', '2015, 2017', 'Literature and Literary Theory (Q4); Philosophy (Q4)'), (24832, 'Przekladaniec', 14256851, 0.1, 'Q4', 1, 0, 0, 4, 74, '17', '2016-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24833, 'Przestrzenie Teorii', 16446763, 0.1, 'Q4', 2, 7, 188, 2, 102, '17', '2014-2019', 'Literature and Literary Theory (Q4)'), (24834, 'PZ Prisma', 9455566, 0.1, 'Q4', 5, 35, 691, 0, 90, '5', '1994-2019', 'Pharmaceutical Science (Q4); Pharmacology (Q4)'), (24835, 'Quaderni Storici', 3016307, 0.1, 'Q4', 9, 0, 0, 5, 72, '7', '1976-1977, 1979-1987, 1999, 2001-2018', 'History (Q4); Sociology and Political Science (Q4)'), (24836, 'Quaderni Urbinati di Cultura Classica', 17241901, 0.1, 'Q4', 5, 0, 0, 2, 72, '7', '2009-2019', 'Classics (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24837, 'Quebec Journal of International Law', 8289999, 0.1, 'Q4', 3, 0, 0, 0, 59, '9', '2007-2019', 'Law (Q4)'), (24838, 'Queens Quarterly', 336041, 0.1, 'Q4', 3, 45, 18, 1, 113, '9', '1968, 1973, 1975, 1978-1979, 1981-1983, 1986, 1988-1990, 2000-2013, 2017-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24839, 'Quintana', 15797414, 0.1, 'Q4', 2, 0, 0, 3, 64, '12', '2011-2012, 2014-2019', 'Visual Arts and Performing Arts (Q4)'), (24840, 'Quinzaine Litteraire', 486493, 0.1, 'Q4', 1, 0, 0, 0, 50, '8', '2009-2017', 'Literature and Literary Theory (Q4)'), (24841, 'Quiroga', 22547037, 0.1, 'Q4', 1, 23, 195, 2, 59, '12', '2016-2020', 'Conservation (Q4); Museology (Q4); Visual Arts and Performing Arts (Q4)'), (24842, 'Radix', 1654322, 0.1, 'Q4', 2, 30, 377, 0, 56, '16', '2011-2019', 'History and Philosophy of Science (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24843, 'Raisons Politiques', 12911941, 0.1, 'Q4', 14, 25, 1037, 10, 85, '8', '2001-2020', 'Political Science and International Relations (Q4); Sociology and Political Science (Q4)'), (24844, 'RA Revista de Arquitectura', 22546332, 0.1, 'Q4', 2, 15, 236, 0, 47, '12', '2008, 2010-2013, 2015-2019', 'Architecture (Q4); Visual Arts and Performing Arts (Q4)'), (24845, 'Recherche et Formation', 9881824, 0.1, 'Q4', 6, 0, 0, 3, 65, '8', '2011-2019', 'Education (Q4)'), (24846, 'Recherche et Pratiques Pedagogiques en Langue', 21195242, 0.1, 'Q4', 5, 0, 0, 3, 68, '8', '2011-2018', 'Education (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24847, 'Recherches de Science Religieuse', 341258, 0.1, 'Q4', 4, 24, 952, 5, 78, '8', '2001-2020', 'Religious Studies (Q4)'), (24848, 'Religion and the Arts', 10799265, 0.1, 'Q4', 6, 24, 862, 2, 64, '16', '1996, 1998-2020', 'Cultural Studies (Q4); History (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24849, 'Religious Studies Review', 319485, 0.1, 'Q4', 1, 38, 150, 1, 43, '2', '1976-1978, 1980-1982, 1989-1990, 1996, 2010-2011, 2015-2020', 'Religious Studies (Q4)'), (24850, 'Renaissance and Reformation', 34429, 0.1, 'Q4', 5, 41, 21, 3, 80, '9', '1968-1969, 1979, 1982, 1985, 1988, 2001-2020', 'History (Q4); History and Philosophy of Science (Q4); Literature and Literary Theory (Q4); Music (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)'), (24851, 'Rentgenologiya i Radiologiya', 486400, 0.1, 'Q4', 2, 32, 574, 1, 59, '61', '1972-1991, 1996-2018', 'Radiology, Nuclear Medicine and Imaging (Q4)'), (24852, 'Res: Anthropology and Aesthetics', 2771322, 0.1, 'Q4', 10, 24, 0, 1, 53, '2', '2002-2010, 2012, 2014, 2017-2019', 'Anthropology (Q4); Archeology (Q4); Archeology (arts and humanities) (Q4); Visual Arts and Performing Arts (Q4)'), (24853, 'Research and Development (Barrington, Illinoi', 7469179, 0.1, 'Q4', 3, 0, 0, 0, 50, '2', '1984-1989, 1994-1996, 1998-1999, 2001-2002, 2007-2018', 'Industrial and Manufacturing Engineering (Q4); Multidisciplinary (Q4)'), (24854, 'Resource Recycling', 7444710, 0.1, 'Q4', 3, 125, 0, 1, 248, '2', '2006-2020', 'Pollution (Q4); Waste Management and Disposal (Q4)'), (24855, 'Restaurant Business', 978043, 0.1, 'Q4', 3, 48, 0, 1, 74, '2', '2005-2019', 'Tourism, Leisure and Hospitality Management (Q4)'), (24856, 'Review - Literature and Arts of the Americas', 17430666, 0.1, 'Q4', 4, 61, 43, 0, 88, '3', '1968, 1971-1982, 1984-2020', 'Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24857, 'Revisiones en Cancer', 2138573, 0.1, 'Q4', 2, 0, 0, 0, 96, '12', '1992-2019', 'Oncology (Q4)'), (24858, 'Revista Canadiense de Estudios Hispanicos', 3848167, 0.1, 'Q4', 6, 12, 501, 1, 60, '9', '2002-2019', 'Cultural Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24859, 'Revista de Direito Civil Contemporaneo', 23581433, 0.1, 'Q4', 1, 0, 0, 2, 84, '14', '2018-2019', 'Law (Q4); Sociology and Political Science (Q4)'), (24860, 'Revista de Filosofia: Aurora', 1044443, 0.1, 'Q4', 2, 53, 1191, 4, 128, '14', '2010-2020', 'Philosophy (Q4)'), (24861, 'Revista de Letras', 1013505, 0.1, 'Q4', 2, 0, 0, 3, 66, '14', '2004-2018', 'Literature and Literary Theory (Q4); Philosophy (Q4)'), (24862, 'Revista del Instituto Nacional de Enfermedade', 1877585, 0.1, 'Q4', 9, 0, 0, 6, 62, '30', '1996-2018', 'Pulmonary and Respiratory Medicine (Q4)'), (24863, 'Revista de Patologia Respiratoria', 15769895, 0.1, 'Q4', 3, 22, 533, 1, 89, '12', '2009-2020', 'Pulmonary and Respiratory Medicine (Q4)'), (24864, 'Revista Digital de Biblioteconomia e Ciencia ', 1678765, 0.1, 'Q4', 2, 33, 1130, 3, 84, '14', '2018-2020', 'Education (Q4); Information Systems (Q4); Library and Information Sciences (Q4); Public Administration (Q4)'), (24865, 'Revista Iberoamericana', 349631, 0.1, 'Q4', 6, 81, 1475, 13, 178, '2', '2007, 2009-2020', 'Literature and Literary Theory (Q4)'), (24866, 'Revista Portuguesa de Filosofia', 2183461, 0.1, 'Q4', 1, 51, 1594, 4, 92, '26', '2019-2020', 'Philosophy (Q4)'), (24867, 'Revmatologiia (Bulgaria)', 13100505, 0.1, 'Q4', 15, 180, 4800, 10, 43, '61', '1996-2019', 'Rheumatology (Q4)'), (24868, 'Revue Benedictine', 350893, 0.1, 'Q4', 7, 15, 1051, 8, 43, '24', '2002-2019', 'Religious Studies (Q4)'), (24869, 'Revue de l Art', 1953812, 0.1, 'Q4', 4, 21, 733, 0, 69, '8', '2002-2019', 'Visual Arts and Performing Arts (Q4)'), (24870, 'Revue de Metaphysique et de Morale', 351571, 0.1, 'Q4', 5, 31, 760, 3, 76, '8', '1978, 1982, 1987, 2001-2020', 'Philosophy (Q4)'), (24871, 'Revue des Etudes Juives', 1783175, 0.1, 'Q4', 8, 0, 0, 0, 42, '24', '1967, 1969, 1975-1977, 1983-1984, 1996-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Religious Studies (Q4)'), (24872, 'Revue des Langues Romanes', 2233711, 0.1, 'Q4', 3, 8, 379, 1, 60, '8', '1964, 2002-2019', 'Archeology (arts and humanities) (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24873, 'Revue des Sciences Humaines', 352195, 0.1, 'Q4', 3, 69, 1022, 3, 156, '8', '1982, 1985, 1987, 2002-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24874, 'Revue d Histoire du Theatre', 12912530, 0.1, 'Q4', 2, 25, 166, 3, 119, '8', '1999, 2001-2010, 2012-2019', 'Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24875, 'Revue d Histoire Ecclesiastique', 352381, 0.1, 'Q4', 6, 19, 1296, 2, 65, '24', '1980, 2002-2019', 'Religious Studies (Q4)'), (24876, 'Revue du Podologue', 17667313, 0.1, 'Q4', 2, 55, 471, 2, 120, '8', '2007-2020', 'Podiatry (Q4)'), (24877, 'Revue Philosophique de la France et de La Etr', 353833, 0.1, 'Q4', 4, 14, 316, 4, 63, '8', '1949, 2001-2020', 'Philosophy (Q4)'), (24878, 'Revue Philosophique de Louvain', 17831768, 0.1, 'Q4', 4, 0, 0, 3, 62, '24', '1973, 1996-2019', 'Philosophy (Q4)'), (24879, 'Revue Roumaine de Philosophie', 12205400, 0.1, 'Q4', 3, 4, 59, 1, 70, '43', '2013-2020', 'Philosophy (Q4)'), (24880, 'Revue Theologique de Louvain', 17838401, 0.1, 'Q4', 6, 12, 368, 3, 46, '24', '1996-2019', 'Religious Studies (Q4)'), (24881, 'Revue Thomiste', 354295, 0.1, 'Q4', 2, 12, 504, 1, 59, '8', '2011-2019', 'Philosophy (Q4); Religious Studies (Q4)'), (24882, 'Rinascimento', 803073, 0.1, 'Q4', 8, 18, 0, 1, 48, '7', '1978, 1986-1987, 2001-2012, 2017-2019', 'Cultural Studies (Q4); History (Q4); Philosophy (Q4)'), (24883, 'Rivista degli Studi Orientali', 17241863, 0.1, 'Q4', 3, 0, 0, 2, 65, '7', '1971-1972, 2012-2018', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24884, 'Rivista di Cultura Classica e Medioevale', 356085, 0.1, 'Q4', 2, 0, 0, 2, 47, '7', '2011-2019', 'Classics (Q4); History (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24885, 'Rivista di Letterature Moderne e Comparate', 3912108, 0.1, 'Q4', 2, 11, 421, 2, 51, '7', '2002-2013, 2017-2019', 'Literature and Literary Theory (Q4)'), (24886, 'Rivista di storia della chiesa in Italia', 356557, 0.1, 'Q4', 1, 0, 0, 1, 43, '7', '1973-1974, 1983, 1987, 2011, 2013-2018', 'History (Q4); Religious Studies (Q4)'), (24887, 'Rivista di Storia e Letteratura Religiosa', 20357583, 0.1, 'Q4', 4, 12, 101, 2, 69, '7', '2002-2019', 'Literature and Literary Theory (Q4); Religious Studies (Q4); Visual Arts and Performing Arts (Q4)'), (24888, 'Rivista Italiana della Saldatura', 356794, 0.1, 'Q4', 4, 18, 164, 0, 59, '7', '1970-1991, 1993, 1997, 2006-2019', 'Mechanical Engineering (Q4); Mechanics of Materials (Q4)'), (24889, 'RLC - Revue de Litterature Comparee', 351466, 0.1, 'Q4', 3, 20, 706, 0, 83, '8', '2001-2019', 'Literature and Literary Theory (Q4)'), (24890, 'Romanica Cracoviensia', 20843917, 0.1, 'Q4', 1, 16, 373, 1, 64, '17', '2014-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24891, 'Romanic Review', 358118, 0.1, 'Q4', 5, 0, 0, 0, 64, '2', '2002-2017, 2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24892, 'Ruch Filozoficzny', 25453173, 0.1, 'Q4', 1, 16, 184, 1, 43, '17', '2019', 'Philosophy (Q4)'), (24893, 'Salmagundi', 363529, 0.1, 'Q4', 5, 12, 24, 0, 75, '2', '1987, 2002-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4); Visual Arts and Performing Arts (Q4)'), (24894, 'Sang Thrombose Vaisseaux', 9997385, 0.1, 'Q4', 9, 42, 510, 1, 99, '8', '1990-2020', 'Hematology (Q4)'), (24895, 'Savoirs et Clinique', 16343298, 0.1, 'Q4', 3, 23, 0, 1, 47, '8', '2002-2010, 2012-2020', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (24896, 'Schweizer Zeitschrift fur Gynakologie', 16610199, 0.1, 'Q4', 2, 18, 206, 2, 108, '19', '1997-2020', 'Family Practice (Q4); Obstetrics and Gynecology (Q4)'), (24897, 'Scottish Literary Review', 17565634, 0.1, 'Q4', 6, 20, 695, 4, 50, '3', '2009-2019', 'Literature and Literary Theory (Q4)'), (24898, 'Sculpture Journal', 13662724, 0.1, 'Q4', 5, 12, 393, 1, 65, '3', '2002-2020', 'Visual Arts and Performing Arts (Q4)'), (24899, 'Sculpture Review', 7475284, 0.1, 'Q4', 2, 11, 7, 0, 60, '2', '2002-2007, 2009-2020', 'Visual Arts and Performing Arts (Q4)'), (24900, 'Seibutsu-kogaku Kaishi', 9193758, 0.1, 'Q4', 10, 12, 99, 1, 154, '6', '1996-2020', 'Applied Microbiology and Biotechnology (Q4); Biotechnology (Q4); Food Science (Q4)'), (24901, 'Selvedge', 1742254, 0.1, 'Q4', 1, 0, 0, 0, 163, '3', '2006-2019', 'Arts and Humanities (miscellaneous) (Q4)'), (24902, 'Shagi/ Steps', 24129410, 0.1, 'Q4', 1, 53, 1410, 2, 52, '10', '2019-2020', 'Arts and Humanities (miscellaneous) (Q4); Psychology (miscellaneous) (Q4); Social Sciences (miscellaneous) (Q4)'), (24903, 'Short Film Studies', 20427824, 0.1, 'Q4', 1, 40, 323, 3, 79, '3', '2014-2020', 'Visual Arts and Performing Arts (Q4)'), (24904, 'Sinn und Form', 375756, 0.1, 'Q4', 2, 76, 0, 0, 222, '5', '2002-2014, 2016-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24905, 'Sixteenth Century Journal', 3610160, 0.1, 'Q4', 13, 0, 0, 3, 62, '2', '1979, 1981-1986, 1989, 1999, 2001-2019', 'Cultural Studies (Q4); History (Q4)'), (24906, 'Skin Research', 13471813, 0.1, 'Q4', 7, 27, 186, 1, 134, '6', '2002-2020', 'Dermatology (Q4); Infectious Diseases (Q4)'), (24907, 'Slavic and East European Journal', 376752, 0.1, 'Q4', 7, 22, 314, 3, 90, '2', '2009-2019', 'Cultural Studies (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24908, 'Slovenska Literatura', 376973, 0.1, 'Q4', 1, 34, 1066, 3, 45, '53', '2018-2020', 'Literature and Literary Theory (Q4)'), (24909, 'SMT Surface Mount Technology Magazine', 15298930, 0.1, 'Q4', 8, 0, 0, 2, 66, '2', '1986-1988, 1996-2017', 'Electrical and Electronic Engineering (Q4)'), (24910, 'Sociologia', 380156, 0.1, 'Q4', 4, 0, 0, 2, 64, '7', '1996-2018', 'Sociology and Political Science (Q4)'), (24911, 'Source', 2328207, 0.1, 'Q4', 5, 28, 242, 2, 52, '2', '1995, 2002-2020', 'Visual Arts and Performing Arts (Q4)'), (24912, 'Spolia', 1824727, 0.1, 'Q4', 0, 0, 0, 0, 45, '7', '2019', 'Archeology (arts and humanities) (Q4); History (Q4); Language and Linguistics (Q4); Literature and Literary Theory (Q4); Music (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)'), (24913, 'Spore', 10110054, 0.1, 'Q4', 2, 0, 0, 4, 63, '16', '1988-1998, 2007-2019', 'Agronomy and Crop Science (Q4); Development (Q4); Ecology (Q4); Forestry (Q4)'), (24914, 'Stasis', 23103817, 0.1, 'Q4', 4, 17, 697, 3, 45, '10', '2019', 'Philosophy (Q4)'), (24915, 'Street Art and Urban Creativity', 21833869, 0.1, 'Q4', 4, 0, 0, 6, 66, '26', '2015-2018', 'Visual Arts and Performing Arts (Q4)'), (24916, 'Strumenti Critici', 392618, 0.1, 'Q4', 2, 20, 576, 1, 60, '7', '2002-2018, 2020', 'Literature and Literary Theory (Q4)'), (24917, 'Studia Gilsoniana', 23000066, 0.1, 'Q4', 2, 0, 0, 4, 56, '2', '2018-2019', 'Philosophy (Q4); Religious Studies (Q4)'), (24918, 'Studia Historiae Scientiarum', 24513202, 0.1, 'Q4', 3, 20, 1240, 12, 53, '17', '2016-2020', 'History (Q4); History and Philosophy of Science (Q4)'), (24919, 'Studia Judaica', 15069729, 0.1, 'Q4', 1, 6, 237, 4, 49, '17', '2017-2019', 'Cultural Studies (Q4); History (Q4); Religious Studies (Q4)'), (24920, 'Studia Litterarum', 25004247, 0.1, 'Q4', 3, 63, 1459, 11, 179, '10', '2019-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24921, 'Studia Musicologica', 393266, 0.1, 'Q4', 3, 0, 0, 0, 56, '50', '2007-2018', 'Music (Q4)'), (24922, 'Studies in Canadian Literature - Etudes en Li', 3806995, 0.1, 'Q4', 10, 0, 0, 6, 85, '9', '1996-2018', 'Literature and Literary Theory (Q4)'), (24923, 'Studies in Chinese Religions', 23729988, 0.1, 'Q4', 2, 21, 961, 5, 52, '3', '2015-2020', 'Religious Studies (Q4)'), (24924, 'Studies on Voltaire and the Eighteenth Centur', 4352866, 0.1, 'Q4', 5, 0, 0, 0, 44, '3', '2002-2008, 2013-2017', 'Arts and Humanities (miscellaneous) (Q4); Cultural Studies (Q4); Sociology and Political Science (Q4)'), (24925, 'Studi Francesi', 392944, 0.1, 'Q4', 3, 1, 0, 0, 76, '7', '1967, 1972, 1979, 1999, 2002-2019', 'Cultural Studies (Q4); History (Q4); Literature and Literary Theory (Q4)'), (24926, 'Studii si Cercetari Fliologice, Seria Limbi R', 18433979, 0.1, 'Q4', 0, 18, 247, 0, 57, '43', '2015-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24927, 'Studi Piemontesi', 3927261, 0.1, 'Q4', 2, 1, 0, 3, 116, '7', '2002-2020', 'Cultural Studies (Q4); History (Q4)'), (24928, 'Taller de Letras', 7160798, 0.1, 'Q4', 2, 39, 561, 4, 85, '45', '2011-2019', 'Literature and Literary Theory (Q4)'), (24929, 'Tanz', 18697720, 0.1, 'Q4', 1, 137, 0, 0, 317, '5', '2010-2013, 2017-2020', 'Visual Arts and Performing Arts (Q4)'), (24930, 'Technische Sicherheit', 14364948, 0.1, 'Q4', 6, 53, 132, 2, 201, '5', '2001-2020', 'Engineering (miscellaneous) (Q4); Public Health, Environmental and Occupational Health (Q4)'), (24931, 'Technoetic Arts', 1477965, 0.1, 'Q4', 5, 0, 0, 3, 84, '3', '2012-2019', 'Computer Science Applications (Q4); Human-Computer Interaction (Q4); Philosophy (Q4); Visual Arts and Performing Arts (Q4)'), (24932, 'Teikyo Medical Journal', 3875547, 0.1, 'Q4', 2, 13, 123, 0, 70, '6', '1990-2019', 'Medicine (miscellaneous) (Q4)'), (24933, 'Tekst, Kniga, Knigoizdaniye', 23062061, 0.1, 'Q4', 1, 27, 542, 1, 51, '10', '2018-2020', 'Communication (Q4); Information Systems (Q4); Library and Information Sciences (Q4); Media Technology (Q4); Visual Arts and Performing Arts (Q4)'), (24934, 'Teksty Drugie', 8670633, 0.1, 'Q4', 6, 18, 253, 3, 157, '17', '2008-2011, 2013-2018', 'Literature and Literary Theory (Q4)'), (24935, 'Teologinen Aikakauskirja', 403555, 0.1, 'Q4', 3, 31, 885, 3, 81, '38', '2011, 2013-2019', 'Religious Studies (Q4)'), (24936, 'Textile Network', 16125096, 0.1, 'Q4', 2, 0, 0, 0, 60, '5', '2003-2014, 2018', 'Business and International Management (Q4); Business, Management and Accounting (miscellaneous) (Q4); Industrial and Manufacturing Engineering (Q4); Materials Science (miscellaneous) (Q4)'), (24937, 'Textile Rental', 1950118, 0.1, 'Q4', 1, 56, 0, 0, 181, '2', '1979-1993, 2005-2015, 2017-2019', 'Business and International Management (Q4); Industrial and Manufacturing Engineering (Q4); Polymers and Plastics (Q4)'), (24938, 'Text und Kritik', 9352929, 0.1, 'Q4', 1, 39, 769, 0, 96, '5', '2009-2020', 'Literature and Literary Theory (Q4)'), (24939, 'Theaterheute', 405507, 0.1, 'Q4', 1, 0, 0, 0, 401, '5', '2002-2013, 2017-2019', 'Visual Arts and Performing Arts (Q4)'), (24940, 'Theatralia', 1803845, 0.1, 'Q4', 1, 29, 458, 1, 65, '31', '2018-2020', 'Cultural Studies (Q4); History (Q4); Visual Arts and Performing Arts (Q4)'), (24941, 'Theologica Xaveriana', 1203649, 0.1, 'Q4', 2, 20, 848, 3, 60, '47', '2015-2020', 'Religious Studies (Q4)'), (24942, 'Theologische Beitrage', 3422372, 0.1, 'Q4', 3, 33, 686, 1, 93, '5', '2011-2013, 2015-2019', 'Religious Studies (Q4)'), (24943, 'ThyssenKrupp techforum', 16122771, 0.1, 'Q4', 3, 0, 0, 0, 43, '5', '2003-2008, 2011-2015, 2017-2019', 'Mechanical Engineering (Q4)'), (24944, 'Tijdschrift voor Filosofie', 40750, 0.1, 'Q4', 4, 0, 0, 1, 49, '24', '2002-2019', 'Philosophy (Q4)'), (24945, 'Tijdschrift Voor Geschiedenis', 407518, 0.1, 'Q4', 6, 24, 1372, 5, 71, '16', '1983, 1987-1988, 1999, 2001-2019', 'History (Q4)'), (24946, 'Tijdschrift voor Theologie', 1689959, 0.1, 'Q4', 2, 11, 322, 1, 48, '16', '2011-2019', 'Religious Studies (Q4)'), (24947, 'TLS - The Times Literary Supplement', 307661, 0.1, 'Q4', 10, 0, 0, 1, 115, '3', '2002-2018', 'Literature and Literary Theory (Q4)'), (24948, 'Tonos Digital', 15776921, 0.1, 'Q4', 3, 76, 2566, 4, 242, '12', '2011-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24949, 'Torres de Lucca', 22553827, 0.1, 'Q4', 1, 24, 771, 0, 58, '12', '2017-2020', 'Philosophy (Q4); Sociology and Political Science (Q4)'), (24950, 'Trabajo y Derecho', 23868112, 0.1, 'Q4', 2, 0, 0, 3, 209, '12', '2015-2018', 'Law (Q4)'), (24951, 'Translation Review', 7374836, 0.1, 'Q4', 6, 15, 307, 3, 42, '3', '1978-1989, 1992-2020', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24952, 'Transsylvania Nostra', 18425631, 0.1, 'Q4', 2, 5, 44, 0, 62, '43', '2013-2020', 'Archeology (Q4); Archeology (arts and humanities) (Q4); Conservation (Q4); History (Q4); Urban Studies (Q4)'), (24953, 'Travaux de Litterature', 9956794, 0.1, 'Q4', 3, 0, 0, 0, 47, '8', '2002, 2004-2005, 2007, 2009, 2011-2018', 'Literature and Literary Theory (Q4)'), (24954, 'Triquarterly', 413097, 0.1, 'Q4', 2, 0, 0, 0, 54, '2', '2002-2019', 'Literature and Literary Theory (Q4)'), (24955, 'Tuna', 14064030, 0.1, 'Q4', 3, 0, 0, 1, 51, '71', '2011-2014, 2017-2018', 'History (Q4); Library and Information Sciences (Q4)'), (24956, 'Turkbilig', 13026011, 0.1, 'Q4', 1, 0, 0, 0, 99, '18', '2011, 2013-2019', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24957, 'Tzintzun', 1870719, 0.1, 'Q4', 2, 0, 0, 1, 43, '30', '2000, 2012-2018', 'History (Q4)'), (24958, 'Umeni', 495123, 0.1, 'Q4', 4, 0, 0, 0, 64, '31', '2002-2019', 'Visual Arts and Performing Arts (Q4)'), (24959, 'VDI-Z Integrierte Produktion', 3417255, 0.1, 'Q4', 4, 0, 0, 1, 95, '5', '2005-2012, 2015-2017', 'Engineering (miscellaneous) (Q4); Materials Science (miscellaneous) (Q4)'), (24960, 'Verhaltenstherapie und Verhaltensmedizin', 10131973, 0.1, 'Q4', 3, 8, 243, 0, 43, '5', '2011-2019', 'Clinical Psychology (Q4); Psychiatry and Mental Health (Q4)'), (24961, 'Vertiflite', 424455, 0.1, 'Q4', 8, 69, 6, 17, 160, '2', '1970-1980, 1982-1995, 1997-1998, 2001-2019', 'Aerospace Engineering (Q4)'), (24962, 'Verwaltung', 18655211, 0.1, 'Q4', 2, 0, 0, 1, 52, '5', '2016-2019', 'Law (Q4); Public Administration (Q4)'), (24963, 'Victorian Poetry', 15307190, 0.1, 'Q4', 10, 13, 429, 2, 84, '2', '2002-2019', 'Literature and Literary Theory (Q4)'), (24964, 'Virginia Quarterly Review', 42675, 0.1, 'Q4', 5, 68, 0, 8, 146, '2', '1970, 1978-1979, 1981, 1987-1988, 2002-2020', 'Literature and Literary Theory (Q4); Sociology and Political Science (Q4); Visual Arts and Performing Arts (Q4)'), (24965, 'Visual Journal of Emergency Medicine', 24054690, 0.1, 'Q4', 2, 230, 607, 4, 501, '16', '2015-2020', 'Emergency Medicine (Q4)'), (24966, 'Voprosy Literatury', 428795, 0.1, 'Q4', 1, 74, 1027, 6, 107, '10', '2019-2020', 'Electrical and Electronic Engineering (Q4); Literature and Literary Theory (Q4)'), (24967, 'Wasafiri', 2690055, 0.1, 'Q4', 9, 59, 506, 5, 61, '3', '1984-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24968, 'Wenshan Review of Literature and Culture', 20771290, 0.1, 'Q4', 1, 16, 548, 4, 42, '22', '2016-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'), (24969, 'Western Humanities Review', 433845, 0.1, 'Q4', 5, 10, 0, 0, 89, '2', '1964, 1976, 2002-2019', 'Literature and Literary Theory (Q4)'), (24970, 'Whitehall Papers', 2681307, 0.1, 'Q4', 3, 8, 0, 2, 47, '3', '1996-2014, 2016-2019', 'Archeology (Q4); Safety Research (Q4); Sociology and Political Science (Q4)'), (24971, 'Wordsworth Circle', 26407310, 0.1, 'Q4', 7, 26, 805, 2, 56, '2', '2002-2020', 'Cultural Studies (Q4); Literature and Literary Theory (Q4)'); INSERT INTO `journal` (`idJournal`, `title`, `issn`, `sjr`, `best_quartile`, `hindex`, `total_docs`, `total_references`, `total_cites`, `citable_docs`, `country_idCountry`, `coverage`, `categories`) VALUES (24972, 'Yale Review', 440124, 0.1, 'Q4', 3, 71, 0, 2, 106, '2', '2009-2020', 'Literature and Literary Theory (Q4)'), (24973, 'Year s Work in English Studies', 844144, 0.1, 'Q4', 2, 19, 1180, 0, 55, '3', '1922-1926, 1928-1930, 1933, 1935-1936, 1939-1943, 1948-1949, 1951, 1953-1958, 1960-1972, 1975, 1977-', 'Language and Linguistics (Q4); Linguistics and Language (Q4); Literature and Literary Theory (Q4)'), (24974, 'Zeichen', 9324747, 0.1, 'Q4', 1, 2, 31, 1, 94, '5', '2018-2019', 'Communication (Q4); Language and Linguistics (Q4); Linguistics and Language (Q4)'), (24975, 'Zeitschrift der Deutschen Morgenlandischen Ge', 3410137, 0.1, 'Q4', 7, 0, 0, 2, 45, '5', '1975, 1985, 2002-2009, 2011-2018', 'Cultural Studies (Q4); History (Q4)'), (24976, 'Zeitschrift der Savigny-Stiftung fur Rechtsge', 3234045, 0.1, 'Q4', 5, 16, 908, 3, 55, '5', '1861, 1863-1864, 1866-1870, 1872-1873, 1876, 1878, 1880-1922, 1924-1944, 1947-1948, 1950-2019', 'History (Q4); Law (Q4)'), (24977, 'Zeitschrift fu&amp;#x0308;r Kunstgeschichte', 442992, 0.1, 'Q4', 6, 0, 0, 5, 68, '5', '1975, 1987, 2001-2019', 'Visual Arts and Performing Arts (Q4)'), (24978, 'Zeitschrift fur Religions- und Geistesgeschic', 443441, 0.1, 'Q4', 5, 20, 430, 1, 56, '16', '1929, 1948-1949, 1951-2000, 2006-2020', 'History (Q4); Philosophy (Q4); Religious Studies (Q4)'), (24979, 'Zivot Umjetnosti', 5147794, 0.1, 'Q4', 2, 10, 211, 0, 43, '58', '2008-2019', 'Museology (Q4); Visual Arts and Performing Arts (Q4)'), (24980, '452F', 20133294, 0, '-', 0, 23, 650, 0, 0, '12', '2020', 'Literature and Literary Theory'), (24981, 'Academic Quarter', 19040008, 0, '-', 0, 24, 579, 0, 0, '25', '2020', 'Arts and Humanities (miscellaneous)'), (24982, 'Advanced Studies in Contemporary Mathematics ', 12293067, 0, '-', 34, 25, 406, 182, 161, '13', '2008-2020', 'Mathematics (miscellaneous)'), (24983, 'Advances in Marine Biology', 652881, 0, '-', 63, 26, 2751, 149, 0, '2', '1963-1967, 1969, 1971-1973, 1975-1977, 1979-1980, 1982, 1984-1985, 1987-1994, 1997-2020', 'Aquatic Science; Ecology, Evolution, Behavior and Systematics'), (24984, 'Advances in Mathematics: Scientific Journal (', 18578365, 0, '-', 5, 1090, 12669, 11, 94, '2', '2019-2020', 'Mathematics (miscellaneous)'), (24985, 'Advances in Science, Technology and Engineeri', 24156698, 0, '-', 9, 726, 21040, 553, 920, '2', '2016-2020', 'Engineering (miscellaneous); Management of Technology and Innovation; Physics and Astronomy (miscellaneous)'), (24986, 'Advances in Technology Innovation', 25182994, 0, '-', 1, 22, 462, 0, 0, '22', '2020', 'Computer Science (miscellaneous); Energy Engineering and Power Technology; Engineering (miscellaneous); Environmental Engineering; Management of Technology and Innovation; Renewable Energy, Sustainabi'), (24987, 'Adverse Drug Reactions Journal', 10085734, 0, '-', 1, 193, 2785, 0, 0, '1', '2020', 'Pharmacology; Pharmacology (medical)'), (24988, 'Anafora', 24595160, 0, '-', 0, 21, 711, 0, 0, '58', '2020', 'Communication; Cultural Studies; Literature and Literary Theory'), (24989, 'Anales de Documentacion (discontinued)', 15752437, 0, '-', 5, 6, 167, 9, 31, '12', '2013-2020', 'Library and Information Sciences'), (24990, 'Analytic Philosophy', 2153960, 0, '-', 2, 35, 956, 0, 0, '2', '2020', 'Philosophy'), (24991, 'Annals of Financial Economics', 20104952, 0, '-', 1, 14, 415, 0, 0, '37', '2020', 'Business and International Management; Economics and Econometrics; Finance'), (24992, 'Annals of Tropical Medicine and Public Health', 9746005, 0, '-', 12, 744, 19594, 213, 810, '4', '2009-2020', 'Medicine (miscellaneous); Public Health, Environmental and Occupational Health'), (24993, 'Aquatic Science and Engineering', 2602473, 0, '-', 0, 1, 16, 0, 0, '18', '2020', 'Aquatic Science; Ocean Engineering; Water Science and Technology'), (24994, 'Archivos de prevencion de riesgos laborales', 11389672, 0, '-', 3, 21, 0, 0, 0, '12', '2012-2014, 2016, 2020', 'Medicine (miscellaneous)'), (24995, 'Asia Life Sciences (discontinued)', 1173375, 0, '-', 11, 105, 5737, 360, 914, '63', '2011-2012, 2016-2020', 'Agricultural and Biological Sciences (miscellaneous); Biochemistry, Genetics and Molecular Biology (miscellaneous)'), (24996, 'Asian Pacific Island Nursing Journal', 23736658, 0, '-', 2, 2, 77, 0, 0, '2', '2016', 'Nursing (miscellaneous)'), (24997, 'Athens Journal of Education', 22417958, 0, '-', 1, 22, 928, 0, 0, '39', '2020', 'Education'), (24998, 'Australasian Journal of Ultrasound in Medicin', 22050140, 0, '-', 2, 39, 1003, 0, 0, '11', '2020', 'Radiological and Ultrasound Technology; Radiology, Nuclear Medicine and Imaging'), (24999, 'Australasian Medical Journal (discontinued)', 18361935, 0, '-', 26, 1, 20, 56, 140, '11', '2008-2017', 'Medicine (miscellaneous)'), (25000, 'Bangladesh Journal of Obstetrics and Gynecolo', 10184287, 0, '-', 3, 40, 763, 0, 0, '59', '1997-2001, 2003, 2005-2016, 2020', 'Obstetrics and Gynecology'), (25001, 'Beverages', 23065710, 0, '-', 4, 72, 4949, 0, 0, '19', '2020', 'Food Science'), (25002, 'Bioengineering and Translational Medicine', 23806761, 0, '-', 5, 44, 2366, 0, 0, '2', '2020', 'Biomedical Engineering; Biotechnology; Pharmaceutical Science'), (25003, 'BMJ Military Health', 26333775, 0, '-', 3, 161, 2680, 0, 0, '3', '2020', 'Medicine (miscellaneous)'), (25004, 'Bridge (discontinued)', 7376278, 0, '-', 5, 69, 680, 40, 50, '2', '2016-2020', 'Computer Science (miscellaneous); Education; Energy (miscellaneous); Engineering (miscellaneous)'), (25005, 'Canadian Journal of Educational Administratio', 12077798, 0, '-', 0, 8, 176, 0, 0, '9', '2020', 'Education; Strategy and Management'), (25006, 'Canadian Journal of Higher Education', 22936602, 0, '-', 1, 26, 1318, 0, 0, '9', '2020', 'Education'), (25007, 'Case Reports in Anesthesiology', 20906390, 0, '-', 0, 11, 160, 0, 0, '2', '2020', 'Anesthesiology and Pain Medicine'), (25008, 'Central European Journal of Sport Sciences an', 23009705, 0, '-', 1, 27, 863, 0, 0, '17', '2020', 'Orthopedics and Sports Medicine; Physical Therapy, Sports Therapy and Rehabilitation; Physiology; Tourism, Leisure and Hospitality Management'), (25009, 'Changjiang Liuyu Ziyuan Yu Huanjing/Resources', 10048227, 0, '-', 5, 263, 8667, 0, 0, '1', '1996-1998, 2020', 'Ecology; Management, Monitoring, Policy and Law; Nature and Landscape Conservation; Water Science and Technology'), (25010, 'China Petroleum Exploration', 16727703, 0, '-', 6, 86, 2340, 0, 0, '1', '2020', 'Energy Engineering and Power Technology; Fuel Technology; Geochemistry and Petrology; Geology; Geotechnical Engineering and Engineering Geology'), (25011, 'Chinese Journal of Applied Clinical Pediatric', 2095428, 0, '-', 3, 443, 10901, 0, 0, '1', '2020', 'Pediatrics, Perinatology and Child Health'), (25012, 'Chinese Journal of Cancer Research (discontin', 10009604, 0, '-', 34, 9, 464, 321, 66, '35', '1988-1996, 1998-2017', 'Cancer Research; Oncology'), (25013, 'Chinese Journal of Dermatology', 4124030, 0, '-', 2, 256, 4225, 0, 0, '1', '2020', 'Dermatology; Infectious Diseases'), (25014, 'Chinese Journal of Diabetes Mellitus', 16745809, 0, '-', 1, 212, 4891, 0, 0, '1', '2020', 'Endocrinology, Diabetes and Metabolism; Internal Medicine'), (25015, 'Chinese Journal of Digestive Surgery', 16739752, 0, '-', 1, 205, 6857, 0, 0, '1', '2020', 'Gastroenterology; Surgery'), (25016, 'Chinese Journal of Electrical Engineering', 20961529, 0, '-', 2, 35, 1113, 0, 0, '2', '2020', 'Control and Systems Engineering; Electrical and Electronic Engineering; Energy Engineering and Power Technology'), (25017, 'Chinese Journal of Endocrinology and Metaboli', 10006699, 0, '-', 1, 188, 4714, 0, 0, '1', '2020', 'Endocrinology, Diabetes and Metabolism'), (25018, 'Chinese Journal of Hepatobiliary Surgery', 10078118, 0, '-', 1, 217, 4065, 0, 0, '1', '2020', 'Gastroenterology; Hepatology; Surgery'), (25019, 'Chinese Journal of Neuromedicine', 16718925, 0, '-', 1, 249, 5834, 0, 0, '1', '2020', 'Neurology; Neurology (clinical); Neuropsychology and Physiological Psychology; Psychiatry and Mental Health'), (25020, 'Chinese Journal of Neurosurgery', 10012346, 0, '-', 0, 169, 3161, 0, 0, '1', '2020', 'Neurology (clinical); Surgery'), (25021, 'Chinese Journal of Ocular Fundus Diseases', 10051015, 0, '-', 2, 170, 4692, 0, 0, '1', '2020', 'Ophthalmology'), (25022, 'Chinese Journal of Orthopaedics', 2532352, 0, '-', 1, 197, 6640, 0, 0, '1', '2020', 'Orthopedics and Sports Medicine; Physical Therapy, Sports Therapy and Rehabilitation; Surgery'), (25023, 'Chinese Journal of Orthopaedic Trauma', 16717600, 0, '-', 2, 207, 4467, 0, 0, '1', '2020', 'Orthopedics and Sports Medicine; Physical Therapy, Sports Therapy and Rehabilitation; Rehabilitation; Surgery'), (25024, 'Chinese Journal of Pediatric Surgery', 2533006, 0, '-', 1, 227, 5072, 0, 0, '1', '2020', 'Pediatrics, Perinatology and Child Health; Surgery'), (25025, 'Chinese Journal of Perinatal Medicine', 10079408, 0, '-', 4, 143, 3672, 0, 0, '1', '2020', 'Obstetrics and Gynecology; Pediatrics, Perinatology and Child Health; Reproductive Medicine'), (25026, 'Chinese Journal of Radiological Medicine and ', 2545098, 0, '-', 2, 168, 3311, 0, 0, '1', '2020', 'Radiological and Ultrasound Technology; Radiology, Nuclear Medicine and Imaging'), (25027, 'CIGRE Science and Engineering', 24261335, 0, '-', 1, 24, 509, 0, 0, '8', '2020', 'Control and Systems Engineering; Electrical and Electronic Engineering; Energy Engineering and Power Technology; Renewable Energy, Sustainability and the Environment'), (25028, 'Ciudades', 24453943, 0, '-', 1, 11, 426, 0, 0, '12', '2020', 'Conservation; Geography, Planning and Development; Urban Studies'), (25029, 'Clay Research (discontinued)', 2557193, 0, '-', 5, 5, 109, 1, 25, '4', '2012-2019', 'Materials Science (miscellaneous)'), (25030, 'Compusoft (discontinued)', 23200790, 0, '-', 3, 23, 503, 40, 128, '4', '2018-2020', 'Computer Science (miscellaneous)'), (25031, 'Contemporary Review of the Middle East', 23490055, 0, '-', 1, 28, 1655, 0, 0, '3', '2020', 'Cultural Studies; Economics and Econometrics; Political Science and International Relations; Sociology and Political Science'), (25032, 'CRISPR Journal', 25731599, 0, '-', 2, 75, 2261, 0, 0, '2', '2019-2020', 'Biotechnology; Genetics'), (25033, 'Cubo', 7167776, 0, '-', 1, 21, 456, 0, 0, '45', '2020', 'Algebra and Number Theory; Analysis; Geometry and Topology; Logic'), (25034, 'Drug Development and Registration', 26585049, 0, '-', 2, 76, 1339, 0, 0, '10', '2020', 'Drug Discovery; Pharmaceutical Science'), (25035, 'Drug Invention Today (discontinued)', 9757619, 0, '-', 15, 444, 9698, 673, 2052, '4', '2012-2020', 'Drug Discovery'), (25036, 'East European Journal of Physics', 23124334, 0, '-', 1, 63, 1517, 0, 0, '44', '2020', 'Materials Science (miscellaneous); Physics and Astronomy (miscellaneous)'), (25037, 'Economic Horizons', 1450863, 0, '-', 0, 20, 603, 0, 0, '55', '2020', 'Business, Management and Accounting (miscellaneous); Economics, Econometrics and Finance (miscellaneous)'), (25038, 'EJVES Vascular Forum', 2666688, 0, '-', 1, 45, 340, 0, 0, '3', '2020', 'Cardiology and Cardiovascular Medicine; Surgery'), (25039, 'Elementary Education Online (discontinued)', 13053515, 0, '-', 10, 196, 9899, 159, 388, '18', '2013-2020', 'Education'), (25040, 'Endocrinology, Diabetes and Metabolism', 23989238, 0, '-', 2, 75, 3038, 0, 0, '3', '2019-2020', 'Endocrinology, Diabetes and Metabolism'), (25041, 'Entrepreneurship and Sustainability Issues (d', 23450282, 0, '-', 25, 298, 13074, 1670, 364, '69', '2017-2020', 'Business and International Management; Economics, Econometrics and Finance (miscellaneous); Management, Monitoring, Policy and Law; Management of Technology and Innovation'), (25042, 'Ethique et Sante (discontinued)', 17654629, 0, '-', 8, 1, 8, 9, 65, '8', '2004-2018', 'Health Policy; Health (social science); Issues, Ethics and Legal Aspects'), (25043, 'European human rights law review', 13611526, 0, '-', 3, 85, 133, 0, 0, '3', '1998, 2001, 2003, 2020', 'Law; Political Science and International Relations; Sociology and Political Science'), (25044, 'European Journal of Cancer, Supplement', 13596349, 0, '-', 26, 11, 804, 0, 0, '3', '2003-2016, 2020', 'Cancer Research; Oncology'), (25045, 'European Journal of Electrical Engineering (d', 21033641, 0, '-', 7, 31, 764, 82, 139, '8', '2009-2014, 2016-2020', 'Electrical and Electronic Engineering'), (25046, 'European Journal of Molecular and Clinical Me', 25158260, 0, '-', 6, 30, 542, 73, 9, '3', '2018, 2020', 'Applied Microbiology and Biotechnology; Cell Biology; Genetics; Immunology; Microbiology; Molecular Biology; Molecular Medicine'), (25047, 'European Journal of Sustainable Development', 22396101, 0, '-', 3, 169, 4563, 0, 0, '7', '2020', 'Development; Economics and Econometrics; Environmental Science (miscellaneous); Geography, Planning and Development; Management, Monitoring, Policy and Law'), (25048, 'Geologica Macedonica', 18578586, 0, '-', 0, 12, 334, 0, 0, '100', '2020', 'Earth and Planetary Sciences (miscellaneous)'), (25049, 'Geriatric Orthopaedic Surgery and Rehabilitat', 21514593, 0, '-', 21, 79, 2149, 0, 0, '2', '2010-2014, 2020', 'Geriatrics and Gerontology; Orthopedics and Sports Medicine; Rehabilitation; Surgery'), (25050, 'Gerontology and Geriatric Medicine', 23337214, 0, '-', 5, 16, 742, 0, 0, '3', '2015', 'Geriatrics and Gerontology'), (25051, 'Glasnik - Srpskog Geografskog Drustva', 3503593, 0, '-', 1, 14, 503, 0, 0, '58', '1981-1984, 2020', 'Atmospheric Science; Education; Geography, Planning and Development; Geology; Global and Planetary Change'), (25052, 'Greek and Roman Musical Studies', 22129758, 0, '-', 3, 101, 3629, 0, 0, '16', '2016, 2020', 'Classics; Music'), (25053, 'Gynecology', 20795831, 0, '-', 1, 57, 1622, 0, 0, '10', '2020', 'Obstetrics and Gynecology'), (25054, 'Habitat Sustentable', 7190700, 0, '-', 1, 17, 444, 0, 0, '45', '2020', 'Architecture; Building and Construction; Experimental and Cognitive Psychology; Geography, Planning and Development; Materials Science (miscellaneous); Renewable Energy, Sustainability and the Environ'), (25055, 'Hematologie (discontinued)', 19506368, 0, '-', 8, 3, 79, 4, 77, '8', '1996-2018', 'Hematology'), (25056, 'Historia et Ius', 22797416, 0, '-', 0, 34, 0, 0, 0, '7', '2020', 'Cultural Studies; History; History and Philosophy of Science; Law'), (25057, 'Historia y Memoria de la Educacion', 24440043, 0, '-', 0, 38, 1221, 0, 0, '12', '2020', 'Education; History'), (25058, 'Humanities and Social Sciences Communications', 26629992, 0, '-', 4, 167, 9696, 0, 0, '2', '2020', 'Arts and Humanities (miscellaneous); Business, Management and Accounting (miscellaneous); Economics, Econometrics and Finance (miscellaneous); Psychology (miscellaneous); Social Sciences (miscellaneou'), (25059, 'Indiana', 3418642, 0, '-', 1, 21, 1025, 0, 0, '5', '2020', 'Archeology; Archeology (arts and humanities); History; Language and Linguistics; Linguistics and Language'), (25060, 'Indian Journal of Public Health Research and ', 9765506, 0, '-', 18, 20, 341, 1887, 7499, '4', '2010-2020', 'Public Health, Environmental and Occupational Health'), (25061, 'Indian Journal of Transplantation', 22120017, 0, '-', 1, 71, 1161, 0, 0, '16', '2016, 2020', 'Transplantation'), (25062, 'Interdisciplinary topics in gerontology and g', 22973486, 0, '-', 23, 17, 1309, 0, 0, '19', '2015-2017, 2020', 'Aging; Geriatrics and Gerontology; Medicine (miscellaneous)'), (25063, 'International Journal of Advanced Research in', 9766499, 0, '-', 4, 198, 4263, 57, 195, '4', '2019-2020', 'Biotechnology; Chemical Engineering (miscellaneous); Engineering (miscellaneous); Environmental Engineering; Geotechnical Engineering and Engineering Geology; Information Systems and Management; Manag'), (25064, 'International Journal of Advanced Science and', 22076360, 0, '-', 15, 2960, 62929, 681, 1441, '11', '2016-2020', 'Computer Science (miscellaneous); Energy (miscellaneous); Engineering (miscellaneous)'), (25065, 'International Journal of Advanced Trends in C', 22783091, 0, '-', 18, 1616, 39151, 2237, 954, '4', '2018-2020', 'Computer Science (miscellaneous); Electrical and Electronic Engineering'), (25066, 'International Journal of Biomedical Science (', 15552810, 0, '-', 25, 1, 38, 0, 0, '2', '2008-2016', 'Biochemistry, Genetics and Molecular Biology (miscellaneous); Medicine (miscellaneous)'), (25067, 'International Journal of Botany (discontinued', 18119700, 0, '-', 22, 1, 32, 21, 19, '34', '2006-2018', 'Plant Science'), (25068, 'International Journal of Clinical and Experim', 19405901, 0, '-', 44, 58, 1650, 509, 2058, '2', '2009-2017', 'Biochemistry, Genetics and Molecular Biology (miscellaneous); Medicine (miscellaneous)'), (25069, 'International Journal of Computer Network and', 20749104, 0, '-', 1, 30, 939, 0, 0, '1', '2020', 'Applied Mathematics; Computer Networks and Communications; Computer Science Applications; Information Systems; Safety Research; Software'), (25070, 'International Journal of Computer Networks an', 23950455, 0, '-', 1, 19, 673, 0, 0, '4', '2020', 'Computer Networks and Communications; Computer Science Applications'), (25071, 'International Journal of Control and Automati', 20054297, 0, '-', 9, 173, 3558, 87, 80, '11', '2010-2014, 2018-2020', 'Control and Systems Engineering'), (25072, 'International Journal of Electrical Engineeri', 9766545, 0, '-', 2, 105, 1633, 0, 0, '4', '2020', 'Computer Science Applications; Control and Systems Engineering; Electrical and Electronic Engineering; Energy Engineering and Power Technology'), (25073, 'International Journal of Engineering Research', 9743154, 0, '-', 8, 634, 14766, 242, 577, '4', '2017-2020', 'Artificial Intelligence; Chemical Engineering (miscellaneous); Computer Networks and Communications; Energy Engineering and Power Technology; Engineering (miscellaneous); Environmental Engineering; Ha'), (25074, 'International Journal of Exercise Science', 1939795, 0, '-', 2, 97, 3463, 0, 0, '2', '2020', 'Health (social science); Occupational Therapy; Physical Therapy, Sports Therapy and Rehabilitation'), (25075, 'International Journal of Financial Research (', 19234031, 0, '-', 7, 182, 7279, 200, 207, '9', '2018-2020', 'Accounting; Business and International Management; Economics, Econometrics and Finance (miscellaneous)'), (25076, 'International Journal of Higher Education (di', 19276052, 0, '-', 6, 219, 7567, 156, 267, '9', '2018-2020', 'Education'), (25077, 'International Journal of Innovation, Creativi', 22011323, 0, '-', 14, 1376, 43091, 501, 1646, '3', '2013-2020', 'Arts and Humanities (miscellaneous); Education'), (25078, 'International Journal of Management (disconti', 9766510, 0, '-', 4, 291, 6812, 42, 108, '4', '2019-2020', 'Business, Management and Accounting (miscellaneous); Computer Science Applications; Economics, Econometrics and Finance (miscellaneous); Engineering (miscellaneous); Management Science and Operations '), (25079, 'International Journal of Mechanical and Mecha', 2077124, 0, '-', 23, 26, 755, 226, 168, '34', '2009-2020', 'Engineering (miscellaneous)'), (25080, 'International Journal of Mechanical and Produ', 22498001, 0, '-', 23, 285, 6500, 1577, 2141, '4', '2016-2020', 'Aerospace Engineering; Fluid Flow and Transfer Processes; Mechanical Engineering'), (25081, 'International Journal of Medical Toxicology a', 22518770, 0, '-', 1, 57, 1291, 0, 0, '15', '2020', 'Pathology and Forensic Medicine; Toxicology'), (25082, 'International Journal of Modern Education and', 2075017, 0, '-', 1, 30, 791, 0, 0, '1', '2020', 'Computer Science Applications; Education'), (25083, 'International Journal of Molecular Epidemiolo', 19481756, 0, '-', 24, 1, 26, 12, 7, '2', '2010-2017', 'Epidemiology; Genetics; Genetics (clinical)'), (25084, 'International Journal of Pharmaceutical Resea', 9752366, 0, '-', 17, 2506, 71711, 639, 983, '4', '2010-2020', 'Pharmaceutical Science; Pharmacology, Toxicology and Pharmaceutics (miscellaneous)'), (25085, 'International Journal of Pharmaceutical Scien', 976044, 0, '-', 30, 1, 29, 0, 0, '4', '2010-2016', 'Pharmaceutical Science'), (25086, 'International Journal of Pharmacology (discon', 18125700, 0, '-', 36, 1, 31, 281, 253, '34', '2006-2018', 'Pharmacology'), (25087, 'International Journal of Physiology, Pathophy', 19448171, 0, '-', 27, 3, 117, 48, 26, '2', '2009-2017', 'Pathology and Forensic Medicine; Physiology; Physiology (medical)'), (25088, 'International Journal of Psychosocial Rehabil', 14757192, 0, '-', 7, 442, 12058, 8, 290, '3', '2009-2011, 2013-2014, 2018-2020', 'Clinical Psychology; Psychiatric Mental Health; Psychiatry and Mental Health'), (25089, 'International Journal of Research in Educatio', 21489955, 0, '-', 10, 50, 3140, 146, 150, '18', '2015-2020', 'Education'), (25090, 'International Journal of Research in Pharmace', 9757538, 0, '-', 19, 1657, 36895, 528, 921, '4', '2010-2020', 'Pharmacology, Toxicology and Pharmaceutics (miscellaneous)'), (25091, 'International Journal of Scientific and Techn', 22778616, 0, '-', 18, 3593, 75563, 1512, 3542, '4', '2018-2020', 'Development; Engineering (miscellaneous); Management of Technology and Innovation'), (25092, 'International Journal of Supply Chain Managem', 20507399, 0, '-', 17, 555, 18753, 1007, 1250, '3', '2012-2020', 'Information Systems; Information Systems and Management; Management Information Systems'), (25093, 'International Journal of Wellbeing', 11798602, 0, '-', 3, 35, 2456, 0, 0, '41', '2020', 'Applied Psychology; Economics, Econometrics and Finance (miscellaneous); Social Psychology'), (25094, 'International Journal of Wine Research (disco', 11791403, 0, '-', 15, 2, 62, 15, 7, '41', '2009-2020', 'Food Science'), (25095, 'International Journal on Emerging Technologie', 9758364, 0, '-', 6, 370, 10042, 212, 355, '4', '2018-2020', 'Agricultural and Biological Sciences (miscellaneous); Engineering (miscellaneous); Management of Technology and Innovation'), (25096, 'Internet Journal of Microbiology (discontinue', 19378289, 0, '-', 9, 4, 126, 2, 6, '2', '2010-2013, 2015, 2017, 2019-2020', 'Infectious Diseases; Microbiology; Microbiology (medical)'), (25097, 'Internet Journal of Restorative Justice', 20562985, 0, '-', 0, 2, 79, 0, 0, '3', '2020', 'Law'), (25098, 'Involve', 19444176, 0, '-', 2, 57, 709, 0, 0, '2', '2020', 'Mathematics (miscellaneous)'), (25099, 'Iranian Journal of Pediatric Hematology and O', 20088892, 0, '-', 1, 32, 1080, 0, 0, '15', '2020', 'Hematology; Oncology; Pediatrics, Perinatology and Child Health'), (25100, 'ISACA Journal (discontinued)', 19441975, 0, '-', 5, 54, 508, 20, 109, '2', '2012-2013, 2018-2020', 'Control and Systems Engineering'), (25101, 'JBI evidence synthesis', 26898381, 0, '-', 3, 200, 5246, 0, 0, '2', '2020', 'Nursing (miscellaneous)'), (25102, 'JCO Global Oncology', 26878941, 0, '-', 4, 158, 4584, 0, 0, '2', '2020', 'Cancer Research; Oncology'), (25103, 'JCO Oncology Practice', 26881527, 0, '-', 6, 270, 6158, 0, 0, '2', '2020', 'Health Policy; Oncology; Oncology (nursing)'), (25104, 'Joint Diseases and Related Surgery', 26874792, 0, '-', 2, 107, 2282, 0, 0, '18', '2020', 'Orthopedics and Sports Medicine; Rehabilitation; Surgery'), (25105, 'Journal for the Education of Gifted Young Sci', 2149360, 0, '-', 11, 84, 3936, 308, 115, '18', '2015-2020', 'Education'), (25106, 'Journal of Advanced Research in Dynamical and', 1943023, 0, '-', 21, 2108, 47520, 2078, 6562, '2', '2009-2015, 2017-2020', 'Computer Science (miscellaneous); Engineering (miscellaneous)'), (25107, 'Journal of Advanced Research in Law and Econo', 2068696, 0, '-', 16, 143, 3619, 522, 894, '43', '2011-2020', 'Business, Management and Accounting (miscellaneous); Economics and Econometrics; Law; Political Science and International Relations'), (25108, 'Journal of Advances in Information Technology', 17982340, 0, '-', 1, 43, 1047, 0, 0, '2', '2020', 'Artificial Intelligence; Computer Networks and Communications; Computer Science Applications; Information Systems; Software'), (25109, 'Journal of Agricultural Sciences (Belgrade)', 14508109, 0, '-', 1, 30, 904, 0, 0, '55', '2020', 'Agronomy and Crop Science; Animal Science and Zoology; Plant Science; Soil Science'), (25110, 'Journal of Applied and Natural Science', 9749411, 0, '-', 1, 92, 3158, 0, 0, '4', '2020', 'Agricultural and Biological Sciences (miscellaneous); Biochemistry, Genetics and Molecular Biology (miscellaneous); Environmental Science (miscellaneous); Immunology and Microbiology (miscellaneous) '), (25111, 'Journal of Cardiovascular and Thoracic Resear', 20086830, 0, '-', 1, 3, 51, 0, 0, '15', '2016', 'Cardiology and Cardiovascular Medicine'), (25112, 'Journal of Chinese Physician', 10081372, 0, '-', 1, 277, 7005, 0, 0, '1', '2020', 'Medicine (miscellaneous)'), (25113, 'Journal of clinical and experimental hematopa', 18809952, 0, '-', 27, 2, 0, 0, 0, '6', '2006-2016, 2020', 'Medicine (miscellaneous)'), (25114, 'Journal of Critical Reviews (discontinued)', 23945125, 0, '-', 12, 2906, 65194, 166, 131, '4', '2019-2020', 'Biochemistry, Genetics and Molecular Biology (miscellaneous); Pharmacology, Toxicology and Pharmaceutics (miscellaneous)'), (25115, 'Journal of Dermatology and Dermatologic Surge', 2210836, 0, '-', 1, 18, 403, 0, 0, '4', '2019', 'Dermatology; Surgery'), (25116, 'Journal of Education and Community Health', 23832150, 0, '-', 1, 40, 1344, 0, 0, '15', '2020', 'Education; Health Informatics; Health (social science)'), (25117, 'Journal of Emergency Practice and Trauma', 23834544, 0, '-', 1, 28, 444, 0, 0, '15', '2020', 'Critical Care and Intensive Care Medicine; Emergency Medicine; Emergency Nursing'), (25118, 'Journal of Environmental Treatment Techniques', 23091185, 0, '-', 7, 234, 7944, 208, 185, '52', '2018-2020', 'Environmental Engineering; Waste Management and Disposal; Water Science and Technology'), (25119, 'Journal of Fruit Science', 10099980, 0, '-', 2, 223, 6253, 0, 0, '1', '2020', 'Biotechnology; Ecology; Ecology, Evolution, Behavior and Systematics; Food Science; Genetics; Horticulture'), (25120, 'Journal of Global Pharma Technology (disconti', 9758542, 0, '-', 14, 353, 9682, 424, 1215, '4', '2010-2020', 'Pharmaceutical Science'), (25121, 'Journal of Global Slavery', 2405836, 0, '-', 2, 51, 2538, 0, 0, '16', '2020', 'History; Political Science and International Relations; Sociology and Political Science'), (25122, 'Journal of Governance and Regulation', 23066784, 0, '-', 1, 42, 2512, 0, 0, '44', '2020', 'Business and International Management; Economics and Econometrics; Finance; Public Administration; Strategy and Management'), (25123, 'Journal of Green Engineering (discontinued)', 22454586, 0, '-', 10, 926, 18890, 147, 86, '25', '2010-2020', 'Environmental Engineering'), (25124, 'Journal of Information Technology Research (d', 19387865, 0, '-', 11, 41, 1899, 69, 92, '2', '2010-2020', 'Computer Science (miscellaneous)'), (25125, 'Journal of Konbin (discontinued)', 18958281, 0, '-', 9, 45, 698, 88, 229, '5', '2007-2010, 2012-2020', 'Safety, Risk, Reliability and Quality'), (25126, 'Journal of Measurements in Engineering', 23352124, 0, '-', 1, 17, 362, 0, 0, '69', '2020', 'Instrumentation; Materials Science (miscellaneous); Mechanical Engineering'), (25127, 'Journal of Mechanical Engineering and Science', 22318380, 0, '-', 19, 61, 1990, 357, 263, '23', '1972, 2014-2020', 'Computational Mechanics; Energy Engineering and Power Technology; Fuel Technology; Industrial and Manufacturing Engineering; Mechanical Engineering; Mechanics of Materials'), (25128, 'Journal of Modern Oncology', 18151434, 0, '-', 1, 59, 1942, 0, 0, '10', '2020', 'Cancer Research; Oncology'), (25129, 'Journal of Multiscale Modeling', 17569737, 0, '-', 10, 12, 505, 0, 0, '37', '2009-2010', 'Computer Science Applications; Modeling and Simulation'), (25130, 'Journal of Nephropharmacology', 23454202, 0, '-', 3, 26, 773, 0, 0, '15', '2020-2021', 'Nephrology; Pharmacology (medical)'), (25131, 'Journal of Pharmaceutical Sciences and Resear', 9751459, 0, '-', 29, 7, 333, 892, 1294, '4', '2009-2018', 'Pharmaceutical Science'), (25132, 'Journal of Probability and Statistics (discon', 1687952, 0, '-', 16, 13, 275, 66, 64, '32', '2009-2020', 'Statistics and Probability'), (25133, 'Journal of Public Health and Development', 26511258, 0, '-', 1, 23, 740, 0, 0, '40', '2020', 'Health Informatics; Health Policy; Health (social science); Public Health, Environmental and Occupational Health'), (25134, 'Journal of Research in Gender Studies (discon', 23783524, 0, '-', 13, 10, 301, 104, 57, '2', '2015-2020', 'Gender Studies'), (25135, 'Journal of Research on the Lepidoptera', 21565457, 0, '-', 3, 2, 93, 0, 0, '2', '2014-2016, 2019-2020', 'Insect Science'), (25136, 'Journal of School Administration Research and', 24708496, 0, '-', 1, 27, 504, 0, 0, '2', '2020', 'Development; Strategy and Management'), (25137, 'Journal of Security and Sustainability Issues', 20297017, 0, '-', 23, 174, 7029, 358, 227, '69', '2011-2020', 'Geography, Planning and Development; Renewable Energy, Sustainability and the Environment; Safety Research'), (25138, 'Journal of Sociology and Social Anthropology ', 9766634, 0, '-', 2, 15, 471, 17, 54, '3', '2018-2020', 'Anthropology; Sociology and Political Science'), (25139, 'Journal of Solid Mechanics (discontinued)', 20087683, 0, '-', 16, 4, 145, 106, 147, '15', '2009-2020', 'Mechanical Engineering; Mechanics of Materials'), (25140, 'Journal of Spine Surgery', 2414469, 0, '-', 4, 127, 4501, 0, 0, '1', '2020', 'Orthopedics and Sports Medicine; Surgery'), (25141, 'Journal of the Faculty of Agriculture, Kyushu', 236152, 0, '-', 17, 24, 656, 45, 99, '6', '1996-2020', 'Agronomy and Crop Science; Biotechnology'), (25142, 'Journal of the Korean Academy of Child and Ad', 22339183, 0, '-', 3, 32, 1293, 0, 0, '13', '2020', 'Pediatrics, Perinatology and Child Health; Psychiatry and Mental Health'), (25143, 'Journal of World Literature', 24056472, 0, '-', 3, 146, 4573, 0, 0, '16', '2020', 'Literature and Literary Theory'), (25144, 'Korean Journal of Otorhinolaryngology-Head an', 20926529, 0, '-', 0, 81, 1631, 0, 0, '13', '2020', 'Otorhinolaryngology; Surgery'), (25145, 'Krytyka Prawa', 24507938, 0, '-', 0, 55, 1096, 0, 0, '17', '2020', 'Law'), (25146, 'Languages', 2226471, 0, '-', 2, 71, 4248, 0, 0, '19', '2020', 'Language and Linguistics; Linguistics and Language'), (25147, 'Larmbekampfung (discontinued)', 18634672, 0, '-', 6, 20, 165, 2, 77, '5', '2006-2020', 'Acoustics and Ultrasonics; Pollution; Public Health, Environmental and Occupational Health'), (25148, 'Lowland Technology International (discontinue', 13449656, 0, '-', 11, 29, 692, 24, 107, '6', '2000, 2002-2020', 'Engineering (miscellaneous)'), (25149, 'Management Science Letters (discontinued)', 19239335, 0, '-', 17, 446, 18049, 762, 380, '9', '2017-2021', 'Business, Management and Accounting (miscellaneous)'), (25150, 'Mathematical and Computational Applications (', 1300686, 0, '-', 29, 44, 1631, 9, 4, '18', '1998-2016, 2019-2020', 'Applied Mathematics; Computational Mathematics; Engineering (miscellaneous)'), (25151, 'Media Asia', 1296612, 0, '-', 1, 17, 589, 0, 0, '37', '1984, 1987-1989, 1995-1996, 1998', 'Medicine (miscellaneous)'), (25152, 'Medical Hypothesis, Discovery, and Innovation', 23224436, 0, '-', 3, 33, 1334, 0, 0, '2', '2020', 'Ophthalmology; Optometry'), (25153, 'Medico-Legal Update (discontinued)', 971720, 0, '-', 9, 814, 14695, 69, 494, '4', '1997-1998, 2004-2020', 'Law; Pathology and Forensic Medicine'), (25154, 'Metascience', 14679981, 0, '-', 3, 5, 12, 0, 0, '2', '2008-2020', 'History; History and Philosophy of Science; Social Sciences (miscellaneous)'), (25155, 'MMWR supplements', 23808942, 0, '-', 12, 9, 0, 0, 0, '2', '2016, 2020', 'Medicine (miscellaneous)'), (25156, 'Musica Tecnologia', 19740042, 0, '-', 0, 13, 227, 0, 0, '7', '2020', 'Computer Science Applications; Electrical and Electronic Engineering; Music'), (25157, 'New Zealand Dental Journal', 288047, 0, '-', 21, 1, 24, 0, 0, '41', '1945-1946, 1949-1951, 1965-2016, 2020', 'Dentistry (miscellaneous); Medicine (miscellaneous)'), (25158, 'Nurse Media Journal of Nursing', 20877811, 0, '-', 1, 27, 779, 0, 0, '21', '2020', 'Earth and Planetary Sciences (miscellaneous)'), (25159, 'Nursing Research and Practice', 20901429, 0, '-', 1, 11, 479, 0, 0, '32', '2020', 'Nursing (miscellaneous)'), (25160, 'Onati Socio-Legal Series', 20795971, 0, '-', 1, 63, 3337, 0, 0, '12', '2020', 'Law; Social Sciences (miscellaneous)'), (25161, 'Oncoscience (discontinued)', 23314737, 0, '-', 25, 1, 51, 77, 12, '2', '2014-2017', 'Cancer Research; Oncology'), (25162, 'Opcion (discontinued)', 10121587, 0, '-', 18, 267, 4077, 649, 1976, '94', '2008-2020', 'Arts and Humanities (miscellaneous); Social Sciences (miscellaneous)'), (25163, 'Ophthalmic Surgery Lasers and Imaging', 19382375, 0, '-', 39, 32, 613, 0, 0, '2', '2003-2014, 2020', 'Ophthalmology; Surgery'), (25164, 'Pain and Therapy', 2193651, 0, '-', 3, 1, 2, 0, 0, '2', '2016', 'Anesthesiology and Pain Medicine; Neurology (clinical)'), (25165, 'Pathogens and Immunity', 24692964, 0, '-', 2, 18, 982, 0, 0, '2', '2020', 'Immunology; Immunology and Allergy; Infectious Diseases; Microbiology (medical); Molecular Biology'), (25166, 'Pediatric Dentistry (discontinued)', 1641263, 0, '-', 69, 74, 0, 438, 412, '2', '1979-2020', 'Dentistry (miscellaneous); Medicine (miscellaneous)'), (25167, 'Periodico Tche Quimica (discontinued)', 18060374, 0, '-', 24, 277, 11034, 1104, 469, '14', '2011-2020', 'Chemistry (miscellaneous); Education; Multidisciplinary; Pharmacy'), (25168, 'Philological Encounters', 24519189, 0, '-', 1, 27, 1119, 0, 0, '16', '2020', 'Language and Linguistics; Linguistics and Language'), (25169, 'Physical and Engineering Sciences in Medicine', 26624729, 0, '-', 4, 95, 3069, 0, 0, '16', '2020', 'Biomedical Engineering; Biophysics; Biotechnology; Instrumentation; Radiological and Ultrasound Technology; Radiology, Nuclear Medicine and Imaging'), (25170, 'Physics and Chemistry of Solid State', 23098589, 0, '-', 2, 94, 2286, 0, 0, '44', '2020', 'Condensed Matter Physics; Materials Science (miscellaneous); Physical and Theoretical Chemistry'), (25171, 'Plant Archives (discontinued)', 25816063, 0, '-', 10, 1663, 45831, 548, 2159, '4', '2011-2020', 'Plant Science'), (25172, 'Polymer News', 323918, 0, '-', 17, 1, 0, 0, 0, '3', '1974-1978, 1983-1984, 1989-1990, 1995-2005', 'Chemical Engineering (miscellaneous); Polymers and Plastics'), (25173, 'Profiles of Drug Substances, Excipients and R', 18715125, 0, '-', 19, 7, 793, 49, 0, '2', '2001-2003, 2005, 2007-2020', 'Medicine (miscellaneous); Molecular Medicine; Pharmaceutical Science; Pharmacology'), (25174, 'Progress in Plant Protection', 14274337, 0, '-', 1, 39, 1082, 0, 0, '17', '2020', 'Agronomy and Crop Science; Biochemistry; Plant Science; Pollution; Soil Science'), (25175, 'Przeglad Rusycystyczny', 137298, 0, '-', 0, 43, 793, 0, 0, '17', '2020', 'Cultural Studies; Education; Language and Linguistics; Linguistics and Language; Literature and Literary Theory; Philosophy'), (25176, 'Railway Engineering Science', 26624753, 0, '-', 3, 25, 1234, 0, 0, '19', '2020', 'Computational Mechanics; Computer Science Applications; Electrical and Electronic Engineering; Mechanical Engineering; Transportation'), (25177, 'Rakenteiden Mekaniikka', 17975301, 0, '-', 1, 20, 420, 0, 0, '38', '2020', 'Mechanical Engineering; Mechanics of Materials'), (25178, 'Recherches Germaniques', 3991989, 0, '-', 1, 12, 310, 0, 0, '8', '2008-2011', 'Cultural Studies; Literature and Literary Theory'), (25179, 'Reinwardtia', 34365, 0, '-', 1, 5, 234, 0, 0, '21', '2020', 'Ecology, Evolution, Behavior and Systematics; Plant Science'), (25180, 'Research in World Economy (discontinued)', 19233981, 0, '-', 4, 114, 3675, 55, 103, '9', '2018-2020', 'Economics, Econometrics and Finance (miscellaneous); Industrial Relations; Political Science and International Relations; Sociology and Political Science'), (25181, 'Research Journal of Medical Sciences (discont', 19936095, 0, '-', 13, 1, 5, 0, 0, '34', '2008-2016', 'Medicine (miscellaneous)'), (25182, 'Revista Argentina de Clinica Psicologica (dis', 3276716, 0, '-', 10, 436, 6883, 93, 158, '46', '2008-2020', 'Clinical Psychology; Psychiatry and Mental Health'), (25183, 'Revista Cientifica General Jose Maria Cordova', 19006586, 0, '-', 1, 47, 1774, 0, 0, '47', '2020', 'Law; Political Science and International Relations; Public Administration; Safety Research; Safety, Risk, Reliability and Quality; Social Sciences (miscellaneous); Sociology and Political Science'), (25184, 'Revista de Chimie (discontinued)', 347752, 0, '-', 29, 535, 16555, 1491, 2332, '43', '1973, 1996-2020', 'Chemistry (miscellaneous); Engineering (miscellaneous); Materials Chemistry; Materials Science (miscellaneous); Surfaces, Coatings and Films'), (25185, 'Revista de la Facultad de Ciencias Medicas de', 146722, 0, '-', 9, 15, 0, 0, 0, '46', '1947, 1950-1970, 1972-1997, 1999-2016, 2020', 'Medicine (miscellaneous)'), (25186, 'Revista de la Sociedad Entomologica Argentina', 18517471, 0, '-', 1, 32, 899, 0, 0, '46', '2020', 'Ecology; Ecology, Evolution, Behavior and Systematics; Insect Science'), (25187, 'Revista de Toxicologia (discontinued)', 2127113, 0, '-', 11, 7, 221, 5, 11, '12', '1989-2017', 'Toxicology'), (25188, 'Revista Juridica', 2316753, 0, '-', 1, 114, 3439, 0, 0, '14', '2020', 'Law'), (25189, 'Revista Mexicana de Ciencias Politicas y Soci', 1851918, 0, '-', 7, 35, 1371, 52, 145, '30', '1949, 1976, 1981, 2014-2020', 'Sociology and Political Science; Urban Studies'), (25190, 'Revue Internationale de Soins Palliatifs (dis', 22352155, 0, '-', 5, 4, 57, 0, 54, '19', '2012-2013, 2017-2020', 'Advanced and Specialized Nursing; Fundamentals and Skills; Medicine (miscellaneous)'), (25191, 'RILEM Technical Letters', 25180231, 0, '-', 1, 20, 836, 0, 0, '8', '2020', 'Engineering (miscellaneous); Materials Science (miscellaneous)'), (25192, 'Russian Journal of Biopharmaceuticals (discon', 20738099, 0, '-', 5, 26, 423, 29, 169, '10', '2011-2020', 'Bioengineering; Drug Discovery'), (25193, 'Russian Journal of Clinical Ophthalmology', 23117729, 0, '-', 1, 34, 1090, 0, 0, '10', '2020', 'Ophthalmology'), (25194, 'Russian journal of criminology (discontinued)', 25004255, 0, '-', 6, 46, 1187, 116, 267, '10', '2016-2020', 'Law; Sociology and Political Science'), (25195, 'Sahel Medical Journal', 11188561, 0, '-', 1, 35, 847, 0, 0, '4', '2020', 'Medicine (miscellaneous)'), (25196, 'Sains Tanah', 14123606, 0, '-', 1, 15, 494, 0, 0, '21', '2020', 'Agronomy and Crop Science; Atmospheric Science; Pollution; Soil Science'), (25197, 'Science for Education Today (discontinued)', 26586762, 0, '-', 8, 75, 2147, 187, 258, '10', '2019-2020', 'Education'), (25198, 'Sciences Sociales et Sante (discontinued)', 2940337, 0, '-', 16, 1, 0, 7, 32, '8', '1985, 1996-2018', 'Health Policy; Health (social science); Issues, Ethics and Legal Aspects; Public Health, Environmental and Occupational Health'), (25199, 'Scientia Sinica Informationis', 20959486, 0, '-', 3, 112, 5476, 0, 0, '1', '2020', 'Computer Science (miscellaneous); Engineering (miscellaneous)'), (25200, 'Scientific Study and Research: Chemistry and ', 1582540, 0, '-', 10, 25, 720, 84, 131, '43', '2011-2020', 'Biotechnology; Chemical Engineering (miscellaneous); Chemistry (miscellaneous); Food Science'), (25201, 'SciPost Physics', 25424653, 0, '-', 14, 183, 11775, 0, 0, '16', '2020', 'Physics and Astronomy (miscellaneous)'), (25202, 'Shengwu Yixue Gongchengxue Zazhi/Journal of B', 10015515, 0, '-', 13, 116, 0, 0, 0, '1', '1997-2016, 2020', 'Bioengineering; Biomedical Engineering; Medicine (miscellaneous)'), (25203, 'Shipin Kexue/Food Science', 10026630, 0, '-', 4, 728, 29547, 0, 0, '1', '2016, 2020', 'Food Science'), (25204, 'Smart Learning Environments', 21967091, 0, '-', 16, 35, 1778, 0, 0, '3', '2020', 'Computer Science Applications; Education'), (25205, 'Space and Culture, India (discontinued)', 20528396, 0, '-', 10, 58, 1851, 143, 127, '3', '2013-2020', 'Arts and Humanities (miscellaneous); Cultural Studies; Development; Economics, Econometrics and Finance (miscellaneous); Education; Gender Studies; Sociology and Political Science'), (25206, 'SSRG International Journal of Engineering Tre', 23490918, 0, '-', 2, 293, 6295, 0, 0, '4', '2020', 'Engineering (miscellaneous)'), (25207, 'Studies in Agricultural Economics', 14182106, 0, '-', 1, 20, 611, 0, 0, '50', '2020', 'Agricultural and Biological Sciences (miscellaneous); Development; Economics and Econometrics; Geography, Planning and Development'), (25208, 'Studies in English Language and Education', 24610275, 0, '-', 1, 43, 1636, 0, 0, '21', '2020', 'Education; Language and Linguistics; Linguistics and Language; Literature and Literary Theory'), (25209, 'Systematic Reviews in Pharmacy (discontinued)', 9758453, 0, '-', 25, 1468, 48675, 597, 112, '4', '2010-2020', 'Pharmaceutical Science'), (25210, 'Systems', 20798954, 0, '-', 3, 55, 2973, 0, 0, '19', '2020', 'Computer Networks and Communications; Control and Systems Engineering; Information Systems and Management; Modeling and Simulation; Software'), (25211, 'Text (Australia)', 13279556, 0, '-', 1, 30, 625, 0, 0, '11', '2020', 'Education; Literature and Literary Theory'), (25212, 'Therapeutic Advances in Infectious Disease', 2049937, 0, '-', 13, 25, 1378, 0, 0, '2', '2013-2014, 2020', 'Infectious Diseases; Pharmacology (medical)'), (25213, 'Trends in Classics', 18667481, 0, '-', 2, 179, 6439, 0, 0, '5', '2014, 2019-2020', 'Classics'), (25214, 'Turkish Online Journal of Qualitative Inquiry', 13096591, 0, '-', 0, 22, 913, 0, 0, '18', '2020', 'Communication; Education; Linguistics and Language; Social Sciences (miscellaneous)'), (25215, 'Universal Journal of Educational Research (di', 23323205, 0, '-', 9, 837, 28841, 552, 740, '2', '2018-2020', 'Education'), (25216, 'US Geological Survey Open-File Report', 1961497, 0, '-', 0, 1, 40, 0, 0, '2', '2020', 'Geology'), (25217, 'US Geological Survey Profesional Paper', 10449612, 0, '-', 36, 4, 521, 0, 0, '2', '1964, 1966, 1968-1971, 1978-2012', 'Geology; Water Science and Technology'), (25218, 'Utopia y Praxis Latinoamericana (discontinued', 13155216, 0, '-', 19, 545, 14507, 165, 345, '94', '2008-2020', 'History and Philosophy of Science; Philosophy; Political Science and International Relations; Sociology and Political Science'), (25219, 'Veredas', 2183816, 0, '-', 0, 13, 246, 0, 0, '26', '2020', 'Communication; Language and Linguistics; Linguistics and Language; Literature and Literary Theory; Visual Arts and Performing Arts'), (25220, 'Vestnik Novosibirskogo Gosudarstvennogo Unive', 18187919, 0, '-', 1, 45, 846, 0, 0, '10', '2020', 'Anthropology; Archeology; Archeology (arts and humanities); Cultural Studies; History; Language and Linguistics; Linguistics and Language; Literature and Literary Theory'), (25221, 'West African Journal of Medicine', 189160, 0, '-', 30, 101, 0, 0, 0, '51', '1986, 1989-2014, 2020', 'Medicine (miscellaneous)'), (25222, 'World Journal of Cardiology', 19498462, 0, '-', 2, 55, 2692, 0, 0, '2', '2020', 'Cardiology and Cardiovascular Medicine'), (25223, 'World Journal of Oncology', 19204531, 0, '-', 4, 18, 467, 0, 0, '9', '2014-2016, 2020', 'Cancer Research; Oncology'), (25224, 'Zairyo to Kankyo/ Corrosion Engineering (disc', 9170480, 0, '-', 20, 3, 67, 7, 77, '6', '1991-2018', 'Electrochemistry; Materials Chemistry; Metals and Alloys; Surfaces, Coatings and Films'), (25225, 'Zhongguo yi liao qi xie za zhi = Chinese jour', 16717104, 0, '-', 8, 119, 0, 0, 0, '1', '1997-2002, 2005-2016, 2020', 'Medicine (miscellaneous)'), (25226, 'Zhonghua er ke za zhi. Chinese journal of ped', 5781310, 0, '-', 24, 10, 0, 0, 0, '1', '1960, 2003-2016, 2020', 'Medicine (miscellaneous)'), (25227, 'Zhonghua fu chan ke za zhi', 529567, 0, '-', 18, 2, 0, 0, 0, '1', '1960, 1979-2016, 2020', 'Medicine (miscellaneous)'), (25228, 'Zhonghua kou qiang yi xue za zhi = Zhonghua k', 10020098, 0, '-', 14, 150, 0, 0, 0, '1', '1987-2016, 2020', 'Medicine (miscellaneous)'), (25229, 'Zhonghua liu xing bing xue za zhi = Zhonghua ', 2546450, 0, '-', 31, 292, 0, 0, 0, '1', '1982-2016, 2020', 'Medicine (miscellaneous)'), (25230, 'Zhonghua nei ke za zhi [Chinese journal of in', 5781426, 0, '-', 18, 5, 0, 0, 0, '1', '1957-1959, 1979-1997, 1999-2016, 2020', 'Medicine (miscellaneous)'), (25231, 'Zhonghua wai ke za zhi [Chinese journal of su', 5295815, 0, '-', 16, 5, 0, 0, 0, '1', '1957, 1959-1964, 1979-2016, 2020', 'Medicine (miscellaneous)'), (25232, 'Zhurnal Mikrobiologii Epidemiologii i Immunob', 3729311, 0, '-', 12, 53, 1264, 0, 0, '10', '1945-1947, 1954-2016', 'Immunology; Medicine (miscellaneous); Microbiology (medical); Public Health, Environmental and Occupational Health'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `journalcategory` -- CREATE TABLE `journalcategory` ( `idJournalcategory` int(11) NOT NULL, `category_idCategory` int(11) NOT NULL, `journal_idJournal` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `journalcategory` -- INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (1, 1, 106), (2, 1, 198), (3, 1, 279), (4, 1, 364), (5, 1, 381), (6, 1, 408), (7, 1, 540), (8, 1, 696), (9, 1, 724), (10, 1, 729), (11, 1, 992), (12, 1, 1027), (13, 1, 1170), (14, 1, 1224), (15, 1, 1350), (16, 1, 1529), (17, 1, 1613), (18, 1, 1628), (19, 1, 1645), (20, 1, 1701), (21, 1, 1709), (22, 1, 1987), (23, 1, 2036), (24, 1, 2196), (25, 1, 2473), (26, 1, 2502), (27, 1, 2901), (28, 1, 3051), (29, 1, 3081), (30, 1, 3112), (31, 1, 3198), (32, 1, 3235), (33, 1, 3431), (34, 1, 3502), (35, 1, 3569), (36, 1, 3591), (37, 1, 3763), (38, 1, 3978), (39, 1, 4163), (40, 1, 4571), (41, 1, 4615), (42, 1, 4723), (43, 1, 4788), (44, 1, 4796), (45, 1, 5225), (46, 1, 6492), (47, 1, 6800), (48, 1, 6850), (49, 1, 6960), (50, 1, 6980), (51, 1, 7022), (52, 1, 7039), (53, 1, 7041), (54, 1, 7145), (55, 1, 7257), (56, 1, 7293), (57, 1, 7319), (58, 1, 7447), (59, 1, 7528), (60, 1, 7630), (61, 1, 7665), (62, 1, 7891), (63, 1, 7917), (64, 1, 7933), (65, 1, 8057), (66, 1, 8099), (67, 1, 8117), (68, 1, 8311), (69, 1, 8373), (70, 1, 8550), (71, 1, 8634), (72, 1, 8808), (73, 1, 8846), (74, 1, 8909), (75, 1, 9081), (76, 1, 9291), (77, 1, 9294), (78, 1, 9316), (79, 1, 9338), (80, 1, 9583), (81, 1, 9594), (82, 1, 9684), (83, 1, 10225), (84, 1, 10246), (85, 1, 10445), (86, 1, 10483), (87, 1, 10541), (88, 1, 10550), (89, 1, 10610), (90, 1, 10646), (91, 1, 10670), (92, 1, 10752), (93, 1, 10827), (94, 1, 10853), (95, 1, 10879), (96, 1, 10928), (97, 1, 11441), (98, 1, 11442), (99, 1, 11648), (100, 1, 11748), (101, 1, 12138), (102, 1, 12164), (103, 1, 12190), (104, 1, 12247), (105, 1, 12320), (106, 1, 12537), (107, 1, 12696), (108, 1, 12818), (109, 1, 12826), (110, 1, 13147), (111, 1, 13271), (112, 1, 13323), (113, 1, 13431), (114, 1, 13510), (115, 1, 13515), (116, 1, 13517), (117, 1, 13590), (118, 1, 13595), (119, 1, 13682), (120, 1, 13688), (121, 1, 13798), (122, 1, 13860), (123, 1, 13882), (124, 1, 13897), (125, 1, 13908), (126, 1, 13980), (127, 1, 13994), (128, 1, 14002), (129, 1, 14117), (130, 1, 14146), (131, 1, 14266), (132, 1, 14359), (133, 1, 14377), (134, 1, 14425), (135, 1, 14528), (136, 1, 14571), (137, 1, 14682), (138, 1, 14716), (139, 1, 14845), (140, 1, 14853), (141, 1, 14856), (142, 1, 14927), (143, 1, 14933), (144, 1, 14970), (145, 1, 14974), (146, 1, 15191), (147, 1, 15200), (148, 1, 15220), (149, 1, 15307), (150, 1, 15320), (151, 1, 15368), (152, 1, 15400), (153, 1, 15461), (154, 1, 15587), (155, 1, 15593), (156, 1, 15709), (157, 1, 15736), (158, 1, 15869), (159, 1, 15885), (160, 1, 15908), (161, 1, 15971), (162, 1, 15993), (163, 1, 16039), (164, 1, 16189), (165, 1, 16210), (166, 1, 16320), (167, 1, 16390), (168, 1, 16501), (169, 1, 16511), (170, 1, 16550), (171, 1, 16552), (172, 1, 16563), (173, 1, 16638), (174, 1, 16670), (175, 1, 16737), (176, 1, 16766), (177, 1, 16767), (178, 1, 16771), (179, 1, 16832), (180, 1, 16837), (181, 1, 16840), (182, 1, 16988), (183, 1, 17066), (184, 1, 17158), (185, 1, 17227), (186, 1, 17295), (187, 1, 17359), (188, 1, 17367), (189, 1, 17477), (190, 1, 17523), (191, 1, 17555), (192, 1, 17557), (193, 1, 17565), (194, 1, 17691), (195, 1, 17743), (196, 1, 17767), (197, 1, 17791), (198, 1, 17842), (199, 1, 17906), (200, 1, 18047), (201, 1, 18198), (202, 1, 18247), (203, 1, 18250), (204, 1, 18276), (205, 1, 18300), (206, 1, 18416), (207, 1, 18455), (208, 1, 18492), (209, 1, 18552), (210, 1, 18592), (211, 1, 18682), (212, 1, 18694), (213, 1, 18705), (214, 1, 18790), (215, 1, 18833), (216, 1, 18876), (217, 1, 18888), (218, 1, 18889), (219, 1, 18961), (220, 1, 19000), (221, 1, 19006), (222, 1, 19008), (223, 1, 19028), (224, 1, 19143), (225, 1, 19211), (226, 1, 19258), (227, 1, 19288), (228, 1, 19375), (229, 1, 19418), (230, 1, 19456), (231, 1, 19463), (232, 1, 19560), (233, 1, 19699), (234, 1, 19739), (235, 1, 19763), (236, 1, 19771), (237, 1, 19834), (238, 1, 19936), (239, 1, 20034), (240, 1, 20076), (241, 1, 20116), (242, 1, 20270), (243, 1, 20274), (244, 1, 20283), (245, 1, 20376), (246, 1, 20382), (247, 1, 20399), (248, 1, 20686), (249, 1, 20712), (250, 1, 20831), (251, 1, 20843), (252, 1, 20863), (253, 1, 20907), (254, 1, 21167), (255, 1, 21294), (256, 1, 21516), (257, 1, 21610), (258, 1, 21902), (259, 1, 22023), (260, 1, 22125), (261, 1, 22174), (262, 1, 22386), (263, 1, 22431), (264, 1, 22844), (265, 1, 22850), (266, 1, 22983), (267, 1, 23001), (268, 1, 23214), (269, 1, 23476), (270, 1, 23514), (271, 1, 23620), (272, 1, 23720), (273, 1, 24540), (274, 1, 24995), (275, 1, 25095), (276, 1, 25110), (277, 1, 25207), (512, 2, 475), (513, 2, 1183), (514, 2, 1347), (515, 2, 1360), (516, 2, 1391), (517, 2, 1519), (518, 2, 1535), (519, 2, 1744), (520, 2, 1778), (521, 2, 1790), (522, 2, 1825), (523, 2, 2069), (524, 2, 2077), (525, 2, 2129), (526, 2, 2204), (527, 2, 2215), (528, 2, 2251), (529, 2, 2349), (530, 2, 2383), (531, 2, 2438), (532, 2, 2490), (533, 2, 2523), (534, 2, 2562), (535, 2, 2568), (536, 2, 2574), (537, 2, 2851), (538, 2, 2874), (539, 2, 2967), (540, 2, 3016), (541, 2, 3206), (542, 2, 3739), (543, 2, 3747), (544, 2, 3898), (545, 2, 3902), (546, 2, 3906), (547, 2, 4025), (548, 2, 4069), (549, 2, 4106), (550, 2, 4107), (551, 2, 4161), (552, 2, 4312), (553, 2, 4334), (554, 2, 4353), (555, 2, 4531), (556, 2, 4679), (557, 2, 4750), (558, 2, 4790), (559, 2, 4876), (560, 2, 4895), (561, 2, 4922), (562, 2, 5083), (563, 2, 5216), (564, 2, 5218), (565, 2, 5363), (566, 2, 5602), (567, 2, 5861), (568, 2, 5921), (569, 2, 5933), (570, 2, 5949), (571, 2, 5977), (572, 2, 5993), (573, 2, 6054), (574, 2, 6078), (575, 2, 6187), (576, 2, 6223), (577, 2, 6264), (578, 2, 6281), (579, 2, 6318), (580, 2, 6351), (581, 2, 6455), (582, 2, 6547), (583, 2, 6627), (584, 2, 6638), (585, 2, 6686), (586, 2, 6701), (587, 2, 6784), (588, 2, 6857), (589, 2, 6858), (590, 2, 6867), (591, 2, 6871), (592, 2, 6927), (593, 2, 7034), (594, 2, 7118), (595, 2, 7163), (596, 2, 7208), (597, 2, 7358), (598, 2, 7385), (599, 2, 7393), (600, 2, 7468), (601, 2, 7503), (602, 2, 7536), (603, 2, 7642), (604, 2, 7712), (605, 2, 7832), (606, 2, 8025), (607, 2, 8030), (608, 2, 8172), (609, 2, 8190), (610, 2, 8365), (611, 2, 8409), (612, 2, 8449), (613, 2, 8626), (614, 2, 8689), (615, 2, 8801), (616, 2, 8815), (617, 2, 8954), (618, 2, 8955), (619, 2, 8963), (620, 2, 9070), (621, 2, 9087), (622, 2, 9222), (623, 2, 9233), (624, 2, 9276), (625, 2, 9289), (626, 2, 9524), (627, 2, 9525), (628, 2, 9648), (629, 2, 9701), (630, 2, 9710), (631, 2, 9745), (632, 2, 9825), (633, 2, 9883), (634, 2, 9910), (635, 2, 9916), (636, 2, 9948), (637, 2, 9977), (638, 2, 10108), (639, 2, 10155), (640, 2, 10173), (641, 2, 10195), (642, 2, 10201), (643, 2, 10216), (644, 2, 10247), (645, 2, 10253), (646, 2, 10341), (647, 2, 10375), (648, 2, 10394), (649, 2, 10436), (650, 2, 10555), (651, 2, 10580), (652, 2, 10602), (653, 2, 10700), (654, 2, 10790), (655, 2, 10867), (656, 2, 10878), (657, 2, 10888), (658, 2, 10992), (659, 2, 11002), (660, 2, 11020), (661, 2, 11052), (662, 2, 11068), (663, 2, 11082), (664, 2, 11106), (665, 2, 11154), (666, 2, 11208), (667, 2, 11297), (668, 2, 11545), (669, 2, 11609), (670, 2, 11655), (671, 2, 11677), (672, 2, 11757), (673, 2, 11779), (674, 2, 11943), (675, 2, 11997), (676, 2, 12020), (677, 2, 12089), (678, 2, 12274), (679, 2, 12290), (680, 2, 12347), (681, 2, 12392), (682, 2, 12457), (683, 2, 12468), (684, 2, 12479), (685, 2, 12739), (686, 2, 12771), (687, 2, 12959), (688, 2, 13007), (689, 2, 13020), (690, 2, 13066), (691, 2, 13107), (692, 2, 13141), (693, 2, 13188), (694, 2, 13217), (695, 2, 13270), (696, 2, 13274), (697, 2, 13320), (698, 2, 13380), (699, 2, 13514), (700, 2, 13606), (701, 2, 13719), (702, 2, 13788), (703, 2, 13879), (704, 2, 13905), (705, 2, 13909), (706, 2, 13938), (707, 2, 13952), (708, 2, 14103), (709, 2, 14191), (710, 2, 14224), (711, 2, 14267), (712, 2, 14293), (713, 2, 14333), (714, 2, 14416), (715, 2, 14484), (716, 2, 14532), (717, 2, 14535), (718, 2, 14613), (719, 2, 14656), (720, 2, 14837), (721, 2, 14855), (722, 2, 14963), (723, 2, 15062), (724, 2, 15071), (725, 2, 15101), (726, 2, 15123), (727, 2, 15195), (728, 2, 15199), (729, 2, 15268), (730, 2, 15293), (731, 2, 15428), (732, 2, 15456), (733, 2, 15590), (734, 2, 15606), (735, 2, 15614), (736, 2, 15642), (737, 2, 15667), (738, 2, 15674), (739, 2, 15690), (740, 2, 15700), (741, 2, 15760), (742, 2, 15812), (743, 2, 15860), (744, 2, 15903), (745, 2, 15912), (746, 2, 15977), (747, 2, 15998), (748, 2, 16026), (749, 2, 16039), (750, 2, 16069), (751, 2, 16102), (752, 2, 16106), (753, 2, 16143), (754, 2, 16172), (755, 2, 16173), (756, 2, 16248), (757, 2, 16505), (758, 2, 16529), (759, 2, 16569), (760, 2, 16603), (761, 2, 16605), (762, 2, 16613), (763, 2, 16646), (764, 2, 16666), (765, 2, 16769), (766, 2, 16808), (767, 2, 16891), (768, 2, 16914), (769, 2, 16946), (770, 2, 17029), (771, 2, 17073), (772, 2, 17076), (773, 2, 17128), (774, 2, 17174), (775, 2, 17189), (776, 2, 17192), (777, 2, 17204), (778, 2, 17264), (779, 2, 17382), (780, 2, 17430), (781, 2, 17555), (782, 2, 17647), (783, 2, 17731), (784, 2, 17839), (785, 2, 17858), (786, 2, 17968), (787, 2, 18070), (788, 2, 18072), (789, 2, 18150), (790, 2, 18221), (791, 2, 18229), (792, 2, 18271), (793, 2, 18300), (794, 2, 18348), (795, 2, 18420), (796, 2, 18451), (797, 2, 18648), (798, 2, 18812), (799, 2, 18901), (800, 2, 18993), (801, 2, 19024), (802, 2, 19042), (803, 2, 19102), (804, 2, 19242), (805, 2, 19273), (806, 2, 19282), (807, 2, 19556), (808, 2, 19742), (809, 2, 19833), (810, 2, 19909), (811, 2, 19974), (812, 2, 20002), (813, 2, 20014), (814, 2, 20023), (815, 2, 20114), (816, 2, 20181), (817, 2, 20233), (818, 2, 20399), (819, 2, 20434), (820, 2, 20577), (821, 2, 20620), (822, 2, 20703), (823, 2, 20759), (824, 2, 20828), (825, 2, 20895), (826, 2, 20991), (827, 2, 21031), (828, 2, 21097), (829, 2, 21459), (830, 2, 21569), (831, 2, 21801), (832, 2, 21842), (833, 2, 21876), (834, 2, 22033), (835, 2, 22130), (836, 2, 22213), (837, 2, 22273), (838, 2, 22537), (839, 2, 22737), (840, 2, 22839), (841, 2, 22851), (842, 2, 22985), (843, 2, 22992), (844, 2, 23046), (845, 2, 23201), (846, 2, 23406), (847, 2, 23476), (848, 2, 23815), (849, 2, 23861), (850, 2, 24132), (851, 2, 24649), (852, 2, 24913), (853, 2, 25109), (854, 2, 25141), (855, 2, 25174), (856, 2, 25196), (1023, 3, 671), (1024, 3, 1156), (1025, 3, 1519), (1026, 3, 1778), (1027, 3, 2036), (1028, 3, 2272), (1029, 3, 2556), (1030, 3, 2598), (1031, 3, 2624), (1032, 3, 2625), (1033, 3, 2716), (1034, 3, 2845), (1035, 3, 2976), (1036, 3, 3140), (1037, 3, 3206), (1038, 3, 3230), (1039, 3, 3232), (1040, 3, 3404), (1041, 3, 3478), (1042, 3, 3583), (1043, 3, 3838), (1044, 3, 3843), (1045, 3, 3870), (1046, 3, 4117), (1047, 3, 4161), (1048, 3, 4169), (1049, 3, 4173), (1050, 3, 4233), (1051, 3, 4244), (1052, 3, 4358), (1053, 3, 4475), (1054, 3, 4573), (1055, 3, 4615), (1056, 3, 4616), (1057, 3, 4731), (1058, 3, 4753), (1059, 3, 4759), (1060, 3, 4787), (1061, 3, 4891), (1062, 3, 4909), (1063, 3, 4957), (1064, 3, 5012), (1065, 3, 5083), (1066, 3, 5092), (1067, 3, 5114), (1068, 3, 5181), (1069, 3, 5222), (1070, 3, 5350), (1071, 3, 5383), (1072, 3, 5399), (1073, 3, 5415), (1074, 3, 5549), (1075, 3, 5589), (1076, 3, 5597), (1077, 3, 5690), (1078, 3, 5716), (1079, 3, 5759), (1080, 3, 5761), (1081, 3, 5766), (1082, 3, 5784), (1083, 3, 5804), (1084, 3, 5917), (1085, 3, 6045), (1086, 3, 6054), (1087, 3, 6187), (1088, 3, 6190), (1089, 3, 6240), (1090, 3, 6272), (1091, 3, 6291), (1092, 3, 6309), (1093, 3, 6343), (1094, 3, 6367), (1095, 3, 6440), (1096, 3, 6502), (1097, 3, 6517), (1098, 3, 6539), (1099, 3, 6580), (1100, 3, 6644), (1101, 3, 6663), (1102, 3, 6701), (1103, 3, 6712), (1104, 3, 6723), (1105, 3, 6736), (1106, 3, 6783), (1107, 3, 6794), (1108, 3, 6803), (1109, 3, 6813), (1110, 3, 7075), (1111, 3, 7123), (1112, 3, 7131), (1113, 3, 7268), (1114, 3, 7307), (1115, 3, 7336), (1116, 3, 7402), (1117, 3, 7462), (1118, 3, 7516), (1119, 3, 7530), (1120, 3, 7558), (1121, 3, 7565), (1122, 3, 7566), (1123, 3, 7590), (1124, 3, 7602), (1125, 3, 7638), (1126, 3, 7662), (1127, 3, 7737), (1128, 3, 7922), (1129, 3, 7932), (1130, 3, 7939), (1131, 3, 7952), (1132, 3, 7970), (1133, 3, 8019), (1134, 3, 8025), (1135, 3, 8090), (1136, 3, 8098), (1137, 3, 8105), (1138, 3, 8175), (1139, 3, 8215), (1140, 3, 8252), (1141, 3, 8302), (1142, 3, 8354), (1143, 3, 8403), (1144, 3, 8425), (1145, 3, 8434), (1146, 3, 8489), (1147, 3, 8530), (1148, 3, 8584), (1149, 3, 8592), (1150, 3, 8626), (1151, 3, 8627), (1152, 3, 8628), (1153, 3, 8745), (1154, 3, 8775), (1155, 3, 8954), (1156, 3, 8963), (1157, 3, 8985), (1158, 3, 9016), (1159, 3, 9043), (1160, 3, 9181), (1161, 3, 9186), (1162, 3, 9204), (1163, 3, 9248), (1164, 3, 9259), (1165, 3, 9286), (1166, 3, 9295), (1167, 3, 9349), (1168, 3, 9420), (1169, 3, 9451), (1170, 3, 9526), (1171, 3, 9538), (1172, 3, 9563), (1173, 3, 9632), (1174, 3, 9671), (1175, 3, 9701), (1176, 3, 9706), (1177, 3, 9744), (1178, 3, 9791), (1179, 3, 9794), (1180, 3, 9821), (1181, 3, 9872), (1182, 3, 9952), (1183, 3, 9958), (1184, 3, 9977), (1185, 3, 9992), (1186, 3, 9994), (1187, 3, 10005), (1188, 3, 10019), (1189, 3, 10155), (1190, 3, 10173), (1191, 3, 10179), (1192, 3, 10216), (1193, 3, 10292), (1194, 3, 10315), (1195, 3, 10328), (1196, 3, 10348), (1197, 3, 10386), (1198, 3, 10400), (1199, 3, 10425), (1200, 3, 10470), (1201, 3, 10505), (1202, 3, 10522), (1203, 3, 10732), (1204, 3, 10742), (1205, 3, 10884), (1206, 3, 10888), (1207, 3, 10913), (1208, 3, 10931), (1209, 3, 10994), (1210, 3, 11024), (1211, 3, 11057), (1212, 3, 11060), (1213, 3, 11073), (1214, 3, 11106), (1215, 3, 11232), (1216, 3, 11233), (1217, 3, 11261), (1218, 3, 11285), (1219, 3, 11297), (1220, 3, 11319), (1221, 3, 11352), (1222, 3, 11365), (1223, 3, 11440), (1224, 3, 11470), (1225, 3, 11476), (1226, 3, 11634), (1227, 3, 11642), (1228, 3, 11656), (1229, 3, 11708), (1230, 3, 11769), (1231, 3, 11782), (1232, 3, 11881), (1233, 3, 11892), (1234, 3, 11893), (1235, 3, 11980), (1236, 3, 12061), (1237, 3, 12089), (1238, 3, 12153), (1239, 3, 12173), (1240, 3, 12239), (1241, 3, 12243), (1242, 3, 12377), (1243, 3, 12432), (1244, 3, 12448), (1245, 3, 12512), (1246, 3, 12522), (1247, 3, 12536), (1248, 3, 12561), (1249, 3, 12594), (1250, 3, 12600), (1251, 3, 12635), (1252, 3, 12639), (1253, 3, 12671), (1254, 3, 12683), (1255, 3, 12690), (1256, 3, 12710), (1257, 3, 12739), (1258, 3, 12836), (1259, 3, 12845), (1260, 3, 12920), (1261, 3, 12957), (1262, 3, 12964), (1263, 3, 13014), (1264, 3, 13032), (1265, 3, 13149), (1266, 3, 13150), (1267, 3, 13151), (1268, 3, 13193), (1269, 3, 13254), (1270, 3, 13332), (1271, 3, 13428), (1272, 3, 13534), (1273, 3, 13540), (1274, 3, 13665), (1275, 3, 13717), (1276, 3, 13727), (1277, 3, 13753), (1278, 3, 13816), (1279, 3, 13909), (1280, 3, 13941), (1281, 3, 14026), (1282, 3, 14078), (1283, 3, 14103), (1284, 3, 14118), (1285, 3, 14133), (1286, 3, 14220), (1287, 3, 14234), (1288, 3, 14258), (1289, 3, 14294), (1290, 3, 14324), (1291, 3, 14325), (1292, 3, 14368), (1293, 3, 14406), (1294, 3, 14517), (1295, 3, 14525), (1296, 3, 14539), (1297, 3, 14546), (1298, 3, 14563), (1299, 3, 14615), (1300, 3, 14626), (1301, 3, 14652), (1302, 3, 14656), (1303, 3, 14659), (1304, 3, 14669), (1305, 3, 14701), (1306, 3, 14753), (1307, 3, 14766), (1308, 3, 14829), (1309, 3, 14869), (1310, 3, 14971), (1311, 3, 14975), (1312, 3, 14998), (1313, 3, 15091), (1314, 3, 15134), (1315, 3, 15181), (1316, 3, 15187), (1317, 3, 15284), (1318, 3, 15370), (1319, 3, 15381), (1320, 3, 15382), (1321, 3, 15457), (1322, 3, 15498), (1323, 3, 15522), (1324, 3, 15524), (1325, 3, 15600), (1326, 3, 15707), (1327, 3, 15773), (1328, 3, 15906), (1329, 3, 15922), (1330, 3, 15923), (1331, 3, 15982), (1332, 3, 16002), (1333, 3, 16121), (1334, 3, 16128), (1335, 3, 16143), (1336, 3, 16168), (1337, 3, 16174), (1338, 3, 16212), (1339, 3, 16485), (1340, 3, 16603), (1341, 3, 16710), (1342, 3, 16789), (1343, 3, 16795), (1344, 3, 16891), (1345, 3, 16912), (1346, 3, 16946), (1347, 3, 17204), (1348, 3, 17242), (1349, 3, 17261), (1350, 3, 17354), (1351, 3, 17356), (1352, 3, 17372), (1353, 3, 17382), (1354, 3, 17424), (1355, 3, 17555), (1356, 3, 17556), (1357, 3, 17647), (1358, 3, 17687), (1359, 3, 17722), (1360, 3, 17731), (1361, 3, 17734), (1362, 3, 17809), (1363, 3, 17907), (1364, 3, 17968), (1365, 3, 17992), (1366, 3, 18042), (1367, 3, 18116), (1368, 3, 18150), (1369, 3, 18187), (1370, 3, 18199), (1371, 3, 18245), (1372, 3, 18431), (1373, 3, 18510), (1374, 3, 18521), (1375, 3, 18593), (1376, 3, 18648), (1377, 3, 18649), (1378, 3, 18653), (1379, 3, 18655), (1380, 3, 18861), (1381, 3, 18872), (1382, 3, 18901), (1383, 3, 18927), (1384, 3, 18958), (1385, 3, 19042), (1386, 3, 19315), (1387, 3, 19437), (1388, 3, 19669), (1389, 3, 19897), (1390, 3, 19971), (1391, 3, 19978), (1392, 3, 20181), (1393, 3, 20312), (1394, 3, 20327), (1395, 3, 20541), (1396, 3, 20577), (1397, 3, 20579), (1398, 3, 20620), (1399, 3, 20756), (1400, 3, 20825), (1401, 3, 20960), (1402, 3, 20963), (1403, 3, 21097), (1404, 3, 21265), (1405, 3, 21283), (1406, 3, 21339), (1407, 3, 21466), (1408, 3, 21468), (1409, 3, 21507), (1410, 3, 21569), (1411, 3, 21628), (1412, 3, 21814), (1413, 3, 21876), (1414, 3, 21891), (1415, 3, 22033), (1416, 3, 22071), (1417, 3, 22130), (1418, 3, 22201), (1419, 3, 22897), (1420, 3, 23168), (1421, 3, 23191), (1422, 3, 23269), (1423, 3, 23300), (1424, 3, 23325), (1425, 3, 23395), (1426, 3, 23515), (1427, 3, 23785), (1428, 3, 23822), (1429, 3, 23856), (1430, 3, 23861), (1431, 3, 23898), (1432, 3, 24169), (1433, 3, 24431), (1434, 3, 25109), (1534, 4, 731), (1535, 4, 948), (1536, 4, 1282), (1537, 4, 1592), (1538, 4, 1767), (1539, 4, 1826), (1540, 4, 2085), (1541, 4, 2112), (1542, 4, 2263), (1543, 4, 2510), (1544, 4, 2542), (1545, 4, 2598), (1546, 4, 2630), (1547, 4, 2642), (1548, 4, 2844), (1549, 4, 2887), (1550, 4, 3306), (1551, 4, 3405), (1552, 4, 3463), (1553, 4, 3510), (1554, 4, 3574), (1555, 4, 3766), (1556, 4, 3895), (1557, 4, 4050), (1558, 4, 4205), (1559, 4, 4398), (1560, 4, 4511), (1561, 4, 4618), (1562, 4, 4666), (1563, 4, 4683), (1564, 4, 4775), (1565, 4, 4814), (1566, 4, 4858), (1567, 4, 4906), (1568, 4, 5088), (1569, 4, 5173), (1570, 4, 5181), (1571, 4, 5223), (1572, 4, 5252), (1573, 4, 5414), (1574, 4, 5436), (1575, 4, 5506), (1576, 4, 5645), (1577, 4, 5721), (1578, 4, 5929), (1579, 4, 6187), (1580, 4, 6208), (1581, 4, 6343), (1582, 4, 6466), (1583, 4, 6499), (1584, 4, 6502), (1585, 4, 6574), (1586, 4, 6579), (1587, 4, 6607), (1588, 4, 6675), (1589, 4, 6676), (1590, 4, 6708), (1591, 4, 6741), (1592, 4, 6752), (1593, 4, 6769), (1594, 4, 7005), (1595, 4, 7024), (1596, 4, 7030), (1597, 4, 7074), (1598, 4, 7171), (1599, 4, 7178), (1600, 4, 7261), (1601, 4, 7303), (1602, 4, 7306), (1603, 4, 7314), (1604, 4, 7322), (1605, 4, 7366), (1606, 4, 7467), (1607, 4, 7468), (1608, 4, 7503), (1609, 4, 7506), (1610, 4, 7566), (1611, 4, 7588), (1612, 4, 7590), (1613, 4, 7760), (1614, 4, 7791), (1615, 4, 7831), (1616, 4, 7833), (1617, 4, 7848), (1618, 4, 7932), (1619, 4, 8028), (1620, 4, 8106), (1621, 4, 8198), (1622, 4, 8252), (1623, 4, 8300), (1624, 4, 8302), (1625, 4, 8389), (1626, 4, 8433), (1627, 4, 8468), (1628, 4, 8485), (1629, 4, 8614), (1630, 4, 8658), (1631, 4, 8687), (1632, 4, 8738), (1633, 4, 8898), (1634, 4, 8936), (1635, 4, 8955), (1636, 4, 9023), (1637, 4, 9039), (1638, 4, 9083), (1639, 4, 9358), (1640, 4, 9395), (1641, 4, 9563), (1642, 4, 9640), (1643, 4, 9650), (1644, 4, 9652), (1645, 4, 9677), (1646, 4, 9784), (1647, 4, 9894), (1648, 4, 9936), (1649, 4, 10009), (1650, 4, 10024), (1651, 4, 10064), (1652, 4, 10292), (1653, 4, 10330), (1654, 4, 10341), (1655, 4, 10373), (1656, 4, 10400), (1657, 4, 10425), (1658, 4, 10635), (1659, 4, 10636), (1660, 4, 10879), (1661, 4, 10932), (1662, 4, 10989), (1663, 4, 11009), (1664, 4, 11060), (1665, 4, 11135), (1666, 4, 11404), (1667, 4, 11455), (1668, 4, 11516), (1669, 4, 11656), (1670, 4, 11747), (1671, 4, 11856), (1672, 4, 11897), (1673, 4, 11957), (1674, 4, 12082), (1675, 4, 12120), (1676, 4, 12213), (1677, 4, 12491), (1678, 4, 12562), (1679, 4, 12573), (1680, 4, 12598), (1681, 4, 12625), (1682, 4, 12671), (1683, 4, 12696), (1684, 4, 12710), (1685, 4, 12803), (1686, 4, 12928), (1687, 4, 12964), (1688, 4, 12981), (1689, 4, 13174), (1690, 4, 13298), (1691, 4, 13379), (1692, 4, 13407), (1693, 4, 13707), (1694, 4, 13846), (1695, 4, 13989), (1696, 4, 14406), (1697, 4, 14611), (1698, 4, 14659), (1699, 4, 14677), (1700, 4, 14740), (1701, 4, 14742), (1702, 4, 14782), (1703, 4, 14869), (1704, 4, 15064), (1705, 4, 15134), (1706, 4, 15249), (1707, 4, 15383), (1708, 4, 15465), (1709, 4, 15744), (1710, 4, 15799), (1711, 4, 15906), (1712, 4, 15912), (1713, 4, 15932), (1714, 4, 16002), (1715, 4, 16088), (1716, 4, 16366), (1717, 4, 16616), (1718, 4, 16719), (1719, 4, 16735), (1720, 4, 16776), (1721, 4, 16823), (1722, 4, 16860), (1723, 4, 16869), (1724, 4, 16995), (1725, 4, 17354), (1726, 4, 17424), (1727, 4, 17448), (1728, 4, 17660), (1729, 4, 17812), (1730, 4, 17903), (1731, 4, 18140), (1732, 4, 18165), (1733, 4, 18311), (1734, 4, 18386), (1735, 4, 18510), (1736, 4, 18521), (1737, 4, 18625), (1738, 4, 18653), (1739, 4, 18753), (1740, 4, 18848), (1741, 4, 18971), (1742, 4, 19074), (1743, 4, 19117), (1744, 4, 19229), (1745, 4, 19511), (1746, 4, 19741), (1747, 4, 20354), (1748, 4, 20621), (1749, 4, 20708), (1750, 4, 21405), (1751, 4, 22226), (1752, 4, 22429), (1753, 4, 23044), (1754, 4, 23815), (1755, 4, 24983), (1756, 4, 24993), (1789, 5, 93), (1790, 5, 133), (1791, 5, 157), (1792, 5, 167), (1793, 5, 176), (1794, 5, 182), (1795, 5, 221), (1796, 5, 237), (1797, 5, 324), (1798, 5, 333), (1799, 5, 350), (1800, 5, 387), (1801, 5, 464), (1802, 5, 506), (1803, 5, 573), (1804, 5, 576), (1805, 5, 636), (1806, 5, 640), (1807, 5, 647), (1808, 5, 731), (1809, 5, 807), (1810, 5, 814), (1811, 5, 927), (1812, 5, 1006), (1813, 5, 1057), (1814, 5, 1082), (1815, 5, 1103), (1816, 5, 1144), (1817, 5, 1156), (1818, 5, 1213), (1819, 5, 1229), (1820, 5, 1342), (1821, 5, 1343), (1822, 5, 1397), (1823, 5, 1461), (1824, 5, 1499), (1825, 5, 1529), (1826, 5, 1628), (1827, 5, 1683), (1828, 5, 1701), (1829, 5, 1735), (1830, 5, 1747), (1831, 5, 1761), (1832, 5, 1762), (1833, 5, 1766), (1834, 5, 1783), (1835, 5, 1822), (1836, 5, 1879), (1837, 5, 1891), (1838, 5, 1954), (1839, 5, 2036), (1840, 5, 2099), (1841, 5, 2149), (1842, 5, 2196), (1843, 5, 2415), (1844, 5, 2416), (1845, 5, 2438), (1846, 5, 2568), (1847, 5, 2588), (1848, 5, 2598), (1849, 5, 2625), (1850, 5, 2642), (1851, 5, 2712), (1852, 5, 2719), (1853, 5, 2756), (1854, 5, 2768), (1855, 5, 2845), (1856, 5, 2856), (1857, 5, 2875), (1858, 5, 2882), (1859, 5, 2901), (1860, 5, 2976), (1861, 5, 3001), (1862, 5, 3033), (1863, 5, 3037), (1864, 5, 3112), (1865, 5, 3159), (1866, 5, 3180), (1867, 5, 3197), (1868, 5, 3230), (1869, 5, 3232), (1870, 5, 3276), (1871, 5, 3292), (1872, 5, 3306), (1873, 5, 3360), (1874, 5, 3371), (1875, 5, 3380), (1876, 5, 3404), (1877, 5, 3411), (1878, 5, 3463), (1879, 5, 3478), (1880, 5, 3519), (1881, 5, 3544), (1882, 5, 3569), (1883, 5, 3741), (1884, 5, 3766), (1885, 5, 3794), (1886, 5, 3833), (1887, 5, 3838), (1888, 5, 3930), (1889, 5, 4009), (1890, 5, 4047), (1891, 5, 4052), (1892, 5, 4062), (1893, 5, 4093), (1894, 5, 4109), (1895, 5, 4125), (1896, 5, 4169), (1897, 5, 4185), (1898, 5, 4244), (1899, 5, 4259), (1900, 5, 4260), (1901, 5, 4286), (1902, 5, 4303), (1903, 5, 4334), (1904, 5, 4358), (1905, 5, 4398), (1906, 5, 4459), (1907, 5, 4461), (1908, 5, 4511), (1909, 5, 4522), (1910, 5, 4576), (1911, 5, 4599), (1912, 5, 4619), (1913, 5, 4666), (1914, 5, 4695), (1915, 5, 4730), (1916, 5, 4753), (1917, 5, 4758), (1918, 5, 4759), (1919, 5, 4764), (1920, 5, 4775), (1921, 5, 4805), (1922, 5, 4817), (1923, 5, 4835), (1924, 5, 4858), (1925, 5, 4909), (1926, 5, 4911), (1927, 5, 4955), (1928, 5, 4971), (1929, 5, 4994), (1930, 5, 5092), (1931, 5, 5101), (1932, 5, 5173), (1933, 5, 5181), (1934, 5, 5214), (1935, 5, 5222), (1936, 5, 5239), (1937, 5, 5248), (1938, 5, 5249), (1939, 5, 5252), (1940, 5, 5271), (1941, 5, 5290), (1942, 5, 5367), (1943, 5, 5392), (1944, 5, 5399), (1945, 5, 5439), (1946, 5, 5446), (1947, 5, 5448), (1948, 5, 5450), (1949, 5, 5462), (1950, 5, 5539), (1951, 5, 5549), (1952, 5, 5589), (1953, 5, 5645), (1954, 5, 5661), (1955, 5, 5690), (1956, 5, 5713), (1957, 5, 5726), (1958, 5, 5727), (1959, 5, 5784), (1960, 5, 5789), (1961, 5, 5827), (1962, 5, 5831), (1963, 5, 5850), (1964, 5, 5912), (1965, 5, 5917), (1966, 5, 5923), (1967, 5, 6040), (1968, 5, 6062), (1969, 5, 6162), (1970, 5, 6163), (1971, 5, 6190), (1972, 5, 6236), (1973, 5, 6240), (1974, 5, 6286), (1975, 5, 6330), (1976, 5, 6389), (1977, 5, 6466), (1978, 5, 6503), (1979, 5, 6517), (1980, 5, 6534), (1981, 5, 6536), (1982, 5, 6538), (1983, 5, 6574), (1984, 5, 6614), (1985, 5, 6675), (1986, 5, 6708), (1987, 5, 6712), (1988, 5, 6736), (1989, 5, 6741), (1990, 5, 6752), (1991, 5, 6765), (1992, 5, 6813), (1993, 5, 7005), (1994, 5, 7029), (1995, 5, 7030), (1996, 5, 7033), (1997, 5, 7034), (1998, 5, 7085), (1999, 5, 7090), (2000, 5, 7124), (2001, 5, 7131), (2002, 5, 7179), (2003, 5, 7198), (2004, 5, 7261), (2005, 5, 7268), (2006, 5, 7307), (2007, 5, 7314), (2008, 5, 7322), (2009, 5, 7366), (2010, 5, 7379), (2011, 5, 7402), (2012, 5, 7474), (2013, 5, 7483), (2014, 5, 7503), (2015, 5, 7506), (2016, 5, 7507), (2017, 5, 7522), (2018, 5, 7527), (2019, 5, 7536), (2020, 5, 7557), (2021, 5, 7565), (2022, 5, 7633), (2023, 5, 7656), (2024, 5, 7677), (2025, 5, 7695), (2026, 5, 7720), (2027, 5, 7725), (2028, 5, 7737), (2029, 5, 7807), (2030, 5, 7836), (2031, 5, 7840), (2032, 5, 7848), (2033, 5, 7932), (2034, 5, 7939), (2035, 5, 7979), (2036, 5, 7993), (2037, 5, 8019), (2038, 5, 8041), (2039, 5, 8053), (2040, 5, 8098), (2041, 5, 8105), (2042, 5, 8106), (2043, 5, 8120), (2044, 5, 8170), (2045, 5, 8175), (2046, 5, 8237), (2047, 5, 8254), (2048, 5, 8300), (2049, 5, 8302), (2050, 5, 8354), (2051, 5, 8389), (2052, 5, 8453), (2053, 5, 8468), (2054, 5, 8485), (2055, 5, 8522), (2056, 5, 8530), (2057, 5, 8562), (2058, 5, 8614), (2059, 5, 8628), (2060, 5, 8687), (2061, 5, 8689), (2062, 5, 8702), (2063, 5, 8736), (2064, 5, 8738), (2065, 5, 8745), (2066, 5, 8747), (2067, 5, 8773), (2068, 5, 8870), (2069, 5, 8890), (2070, 5, 8945), (2071, 5, 9023), (2072, 5, 9043), (2073, 5, 9151), (2074, 5, 9155), (2075, 5, 9174), (2076, 5, 9204), (2077, 5, 9206), (2078, 5, 9213), (2079, 5, 9259), (2080, 5, 9358), (2081, 5, 9385), (2082, 5, 9394), (2083, 5, 9395), (2084, 5, 9421), (2085, 5, 9447), (2086, 5, 9451), (2087, 5, 9473), (2088, 5, 9512), (2089, 5, 9534), (2090, 5, 9538), (2091, 5, 9591), (2092, 5, 9603), (2093, 5, 9612), (2094, 5, 9619), (2095, 5, 9643), (2096, 5, 9686), (2097, 5, 9728), (2098, 5, 9745), (2099, 5, 9747), (2100, 5, 9764), (2101, 5, 9795), (2102, 5, 9799), (2103, 5, 9867), (2104, 5, 9877), (2105, 5, 9905), (2106, 5, 9909), (2107, 5, 9934), (2108, 5, 9936), (2109, 5, 9971), (2110, 5, 9972), (2111, 5, 9992), (2112, 5, 9994), (2113, 5, 10024), (2114, 5, 10089), (2115, 5, 10094), (2116, 5, 10129), (2117, 5, 10181), (2118, 5, 10184), (2119, 5, 10201), (2120, 5, 10210), (2121, 5, 10249), (2122, 5, 10292), (2123, 5, 10328), (2124, 5, 10330), (2125, 5, 10340), (2126, 5, 10346), (2127, 5, 10348), (2128, 5, 10393), (2129, 5, 10400), (2130, 5, 10425), (2131, 5, 10437), (2132, 5, 10494), (2133, 5, 10517), (2134, 5, 10565), (2135, 5, 10634), (2136, 5, 10635), (2137, 5, 10636), (2138, 5, 10648), (2139, 5, 10654), (2140, 5, 10738), (2141, 5, 10789), (2142, 5, 10879), (2143, 5, 10931), (2144, 5, 10932), (2145, 5, 10994), (2146, 5, 11033), (2147, 5, 11057), (2148, 5, 11060), (2149, 5, 11132), (2150, 5, 11151), (2151, 5, 11221), (2152, 5, 11262), (2153, 5, 11264), (2154, 5, 11293), (2155, 5, 11319), (2156, 5, 11352), (2157, 5, 11381), (2158, 5, 11397), (2159, 5, 11402), (2160, 5, 11417), (2161, 5, 11455), (2162, 5, 11470), (2163, 5, 11476), (2164, 5, 11488), (2165, 5, 11513), (2166, 5, 11558), (2167, 5, 11605), (2168, 5, 11607), (2169, 5, 11634), (2170, 5, 11655), (2171, 5, 11735), (2172, 5, 11740), (2173, 5, 11769), (2174, 5, 11941), (2175, 5, 11943), (2176, 5, 11950), (2177, 5, 11970), (2178, 5, 11981), (2179, 5, 12061), (2180, 5, 12062), (2181, 5, 12082), (2182, 5, 12111), (2183, 5, 12120), (2184, 5, 12200), (2185, 5, 12250), (2186, 5, 12263), (2187, 5, 12274), (2188, 5, 12289), (2189, 5, 12386), (2190, 5, 12427), (2191, 5, 12448), (2192, 5, 12463), (2193, 5, 12491), (2194, 5, 12518), (2195, 5, 12536), (2196, 5, 12560), (2197, 5, 12563), (2198, 5, 12567), (2199, 5, 12578), (2200, 5, 12600), (2201, 5, 12650), (2202, 5, 12667), (2203, 5, 12671), (2204, 5, 12674), (2205, 5, 12683), (2206, 5, 12690), (2207, 5, 12707), (2208, 5, 12710), (2209, 5, 12717), (2210, 5, 12775), (2211, 5, 12830), (2212, 5, 12845), (2213, 5, 12867), (2214, 5, 12918), (2215, 5, 12920), (2216, 5, 12923), (2217, 5, 12926), (2218, 5, 12966), (2219, 5, 13005), (2220, 5, 13140), (2221, 5, 13143), (2222, 5, 13151), (2223, 5, 13174), (2224, 5, 13190), (2225, 5, 13200), (2226, 5, 13254), (2227, 5, 13332), (2228, 5, 13334), (2229, 5, 13341), (2230, 5, 13356), (2231, 5, 13359), (2232, 5, 13379), (2233, 5, 13407), (2234, 5, 13477), (2235, 5, 13491), (2236, 5, 13608), (2237, 5, 13614), (2238, 5, 13651), (2239, 5, 13661), (2240, 5, 13694), (2241, 5, 13717), (2242, 5, 13718), (2243, 5, 13730), (2244, 5, 13933), (2245, 5, 13941), (2246, 5, 13957), (2247, 5, 14010), (2248, 5, 14027), (2249, 5, 14044), (2250, 5, 14101), (2251, 5, 14184), (2252, 5, 14214), (2253, 5, 14220), (2254, 5, 14239), (2255, 5, 14269), (2256, 5, 14272), (2257, 5, 14372), (2258, 5, 14406), (2259, 5, 14416), (2260, 5, 14491), (2261, 5, 14503), (2262, 5, 14517), (2263, 5, 14545), (2264, 5, 14546), (2265, 5, 14570), (2266, 5, 14611), (2267, 5, 14625), (2268, 5, 14626), (2269, 5, 14652), (2270, 5, 14677), (2271, 5, 14687), (2272, 5, 14721), (2273, 5, 14740), (2274, 5, 14748), (2275, 5, 14782), (2276, 5, 14847), (2277, 5, 14869), (2278, 5, 14879), (2279, 5, 14897), (2280, 5, 14971), (2281, 5, 15003), (2282, 5, 15072), (2283, 5, 15091), (2284, 5, 15100), (2285, 5, 15101), (2286, 5, 15181), (2287, 5, 15187), (2288, 5, 15191), (2289, 5, 15252), (2290, 5, 15276), (2291, 5, 15309), (2292, 5, 15357), (2293, 5, 15370), (2294, 5, 15414), (2295, 5, 15452), (2296, 5, 15460), (2297, 5, 15463), (2298, 5, 15465), (2299, 5, 15498), (2300, 5, 15522), (2301, 5, 15587), (2302, 5, 15606), (2303, 5, 15632), (2304, 5, 15708), (2305, 5, 15744), (2306, 5, 15773), (2307, 5, 15887), (2308, 5, 15905), (2309, 5, 15922), (2310, 5, 15923), (2311, 5, 15957), (2312, 5, 16002), (2313, 5, 16036), (2314, 5, 16041), (2315, 5, 16073), (2316, 5, 16088), (2317, 5, 16102), (2318, 5, 16106), (2319, 5, 16121), (2320, 5, 16132), (2321, 5, 16223), (2322, 5, 16278), (2323, 5, 16309), (2324, 5, 16340), (2325, 5, 16357), (2326, 5, 16497), (2327, 5, 16555), (2328, 5, 16556), (2329, 5, 16605), (2330, 5, 16616), (2331, 5, 16635), (2332, 5, 16710), (2333, 5, 16942), (2334, 5, 16995), (2335, 5, 17057), (2336, 5, 17190), (2337, 5, 17222), (2338, 5, 17337), (2339, 5, 17356), (2340, 5, 17363), (2341, 5, 17372), (2342, 5, 17399), (2343, 5, 17420), (2344, 5, 17448), (2345, 5, 17464), (2346, 5, 17741), (2347, 5, 17773), (2348, 5, 17809), (2349, 5, 17812), (2350, 5, 17867), (2351, 5, 17870), (2352, 5, 17969), (2353, 5, 17996), (2354, 5, 18000), (2355, 5, 18042), (2356, 5, 18116), (2357, 5, 18293), (2358, 5, 18386), (2359, 5, 18451), (2360, 5, 18476), (2361, 5, 18560), (2362, 5, 18730), (2363, 5, 18735), (2364, 5, 18753), (2365, 5, 18757), (2366, 5, 18784), (2367, 5, 18838), (2368, 5, 18848), (2369, 5, 18882), (2370, 5, 18941), (2371, 5, 18944), (2372, 5, 18962), (2373, 5, 19037), (2374, 5, 19052), (2375, 5, 19074), (2376, 5, 19282), (2377, 5, 19329), (2378, 5, 19413), (2379, 5, 19445), (2380, 5, 19456), (2381, 5, 19669), (2382, 5, 19728), (2383, 5, 19741), (2384, 5, 19776), (2385, 5, 19782), (2386, 5, 19897), (2387, 5, 19921), (2388, 5, 19978), (2389, 5, 19980), (2390, 5, 19996), (2391, 5, 20020), (2392, 5, 20044), (2393, 5, 20189), (2394, 5, 20233), (2395, 5, 20312), (2396, 5, 20354), (2397, 5, 20579), (2398, 5, 20601), (2399, 5, 20708), (2400, 5, 20735), (2401, 5, 20756), (2402, 5, 20771), (2403, 5, 20794), (2404, 5, 20835), (2405, 5, 21089), (2406, 5, 21507), (2407, 5, 21628), (2408, 5, 21974), (2409, 5, 22071), (2410, 5, 22201), (2411, 5, 22213), (2412, 5, 22555), (2413, 5, 22579), (2414, 5, 22618), (2415, 5, 22737), (2416, 5, 22884), (2417, 5, 23017), (2418, 5, 23047), (2419, 5, 23235), (2420, 5, 23325), (2421, 5, 23515), (2422, 5, 23773), (2423, 5, 23815), (2424, 5, 23861), (2425, 5, 24116), (2426, 5, 24132), (2427, 5, 24142), (2428, 5, 24431), (2429, 5, 24983), (2430, 5, 25119), (2431, 5, 25179), (2432, 5, 25186), (2812, 6, 323), (2813, 6, 702), (2814, 6, 759), (2815, 6, 777), (2816, 6, 911), (2817, 6, 979), (2818, 6, 986), (2819, 6, 1192), (2820, 6, 1251), (2821, 6, 1636), (2822, 6, 1703), (2823, 6, 1921), (2824, 6, 2096), (2825, 6, 2247), (2826, 6, 2272), (2827, 6, 2281), (2828, 6, 2422), (2829, 6, 2444), (2830, 6, 2523), (2831, 6, 2556), (2832, 6, 2592), (2833, 6, 2601), (2834, 6, 2609), (2835, 6, 2666), (2836, 6, 2780), (2837, 6, 2787), (2838, 6, 2842), (2839, 6, 2871), (2840, 6, 2924), (2841, 6, 2992), (2842, 6, 3016), (2843, 6, 3113), (2844, 6, 3119), (2845, 6, 3244), (2846, 6, 3449), (2847, 6, 3462), (2848, 6, 3480), (2849, 6, 3493), (2850, 6, 3538), (2851, 6, 3723), (2852, 6, 3843), (2853, 6, 3906), (2854, 6, 3931), (2855, 6, 3976), (2856, 6, 4044), (2857, 6, 4161), (2858, 6, 4178), (2859, 6, 4321), (2860, 6, 4353), (2861, 6, 4400), (2862, 6, 4570), (2863, 6, 4583), (2864, 6, 4609), (2865, 6, 4787), (2866, 6, 4942), (2867, 6, 4962), (2868, 6, 5009), (2869, 6, 5017), (2870, 6, 5083), (2871, 6, 5137), (2872, 6, 5178), (2873, 6, 5218), (2874, 6, 5231), (2875, 6, 5324), (2876, 6, 5546), (2877, 6, 5597), (2878, 6, 5614), (2879, 6, 5772), (2880, 6, 6000), (2881, 6, 6054), (2882, 6, 6078), (2883, 6, 6126), (2884, 6, 6132), (2885, 6, 6157), (2886, 6, 6352), (2887, 6, 6367), (2888, 6, 6396), (2889, 6, 6450), (2890, 6, 6488), (2891, 6, 6627), (2892, 6, 6783), (2893, 6, 6824), (2894, 6, 6857), (2895, 6, 6918), (2896, 6, 6927), (2897, 6, 6960), (2898, 6, 6963), (2899, 6, 7026), (2900, 6, 7135), (2901, 6, 7393), (2902, 6, 7410), (2903, 6, 7453), (2904, 6, 7457), (2905, 6, 7555), (2906, 6, 7712), (2907, 6, 7723), (2908, 6, 7759), (2909, 6, 7779), (2910, 6, 7896), (2911, 6, 7953), (2912, 6, 8025), (2913, 6, 8029), (2914, 6, 8031), (2915, 6, 8040), (2916, 6, 8070), (2917, 6, 8268), (2918, 6, 8299), (2919, 6, 8348), (2920, 6, 8365), (2921, 6, 8578), (2922, 6, 8626), (2923, 6, 8661), (2924, 6, 8669), (2925, 6, 8775), (2926, 6, 8792), (2927, 6, 8975), (2928, 6, 9082), (2929, 6, 9187), (2930, 6, 9222), (2931, 6, 9286), (2932, 6, 9343), (2933, 6, 9363), (2934, 6, 9410), (2935, 6, 9411), (2936, 6, 9417), (2937, 6, 9535), (2938, 6, 9545), (2939, 6, 9580), (2940, 6, 9609), (2941, 6, 9624), (2942, 6, 9679), (2943, 6, 9680), (2944, 6, 9691), (2945, 6, 9696), (2946, 6, 9720), (2947, 6, 9771), (2948, 6, 9821), (2949, 6, 9825), (2950, 6, 9831), (2951, 6, 9948), (2952, 6, 9993), (2953, 6, 10130), (2954, 6, 10219), (2955, 6, 10394), (2956, 6, 10505), (2957, 6, 10522), (2958, 6, 10555), (2959, 6, 10606), (2960, 6, 10749), (2961, 6, 10888), (2962, 6, 11002), (2963, 6, 11104), (2964, 6, 11122), (2965, 6, 11265), (2966, 6, 11431), (2967, 6, 11440), (2968, 6, 11566), (2969, 6, 11677), (2970, 6, 11747), (2971, 6, 11779), (2972, 6, 11838), (2973, 6, 11906), (2974, 6, 11991), (2975, 6, 12027), (2976, 6, 12092), (2977, 6, 12170), (2978, 6, 12330), (2979, 6, 12410), (2980, 6, 12457), (2981, 6, 12481), (2982, 6, 12498), (2983, 6, 12572), (2984, 6, 12604), (2985, 6, 12613), (2986, 6, 12739), (2987, 6, 12844), (2988, 6, 13030), (2989, 6, 13150), (2990, 6, 13259), (2991, 6, 13475), (2992, 6, 13514), (2993, 6, 13561), (2994, 6, 13595), (2995, 6, 13709), (2996, 6, 13731), (2997, 6, 13750), (2998, 6, 13798), (2999, 6, 13836), (3000, 6, 13909), (3001, 6, 13943), (3002, 6, 14103), (3003, 6, 14224), (3004, 6, 14324), (3005, 6, 14387), (3006, 6, 14414), (3007, 6, 14593), (3008, 6, 14742), (3009, 6, 14745), (3010, 6, 14803), (3011, 6, 14862), (3012, 6, 14934), (3013, 6, 14982), (3014, 6, 15123), (3015, 6, 15248), (3016, 6, 15302), (3017, 6, 15366), (3018, 6, 15519), (3019, 6, 15521), (3020, 6, 15759), (3021, 6, 15760), (3022, 6, 15854), (3023, 6, 15946), (3024, 6, 15977), (3025, 6, 16001), (3026, 6, 16008), (3027, 6, 16026), (3028, 6, 16039), (3029, 6, 16051), (3030, 6, 16147), (3031, 6, 16172), (3032, 6, 16590), (3033, 6, 16638), (3034, 6, 16666), (3035, 6, 16701), (3036, 6, 16731), (3037, 6, 16891), (3038, 6, 16914), (3039, 6, 16991), (3040, 6, 16993), (3041, 6, 17001), (3042, 6, 17073), (3043, 6, 17192), (3044, 6, 17333), (3045, 6, 17378), (3046, 6, 17521), (3047, 6, 17555), (3048, 6, 17840), (3049, 6, 17858), (3050, 6, 17995), (3051, 6, 18129), (3052, 6, 18310), (3053, 6, 18322), (3054, 6, 18323), (3055, 6, 18392), (3056, 6, 18486), (3057, 6, 18648), (3058, 6, 18705), (3059, 6, 18735), (3060, 6, 18745), (3061, 6, 18812), (3062, 6, 18874), (3063, 6, 18897), (3064, 6, 19285), (3065, 6, 19659), (3066, 6, 19742), (3067, 6, 19815), (3068, 6, 19969), (3069, 6, 19974), (3070, 6, 20023), (3071, 6, 20041), (3072, 6, 20114), (3073, 6, 20130), (3074, 6, 20148), (3075, 6, 20256), (3076, 6, 20405), (3077, 6, 20502), (3078, 6, 20600), (3079, 6, 20621), (3080, 6, 20703), (3081, 6, 20704), (3082, 6, 20828), (3083, 6, 20897), (3084, 6, 21036), (3085, 6, 21134), (3086, 6, 21258), (3087, 6, 21266), (3088, 6, 21459), (3089, 6, 21471), (3090, 6, 21701), (3091, 6, 21842), (3092, 6, 22033), (3093, 6, 22079), (3094, 6, 22130), (3095, 6, 22163), (3096, 6, 22170), (3097, 6, 22174), (3098, 6, 22218), (3099, 6, 22537), (3100, 6, 22659), (3101, 6, 22822), (3102, 6, 22992), (3103, 6, 23109), (3104, 6, 23201), (3105, 6, 23244), (3106, 6, 23406), (3107, 6, 23476), (3108, 6, 23959), (3109, 6, 24243), (3110, 6, 24587), (3111, 6, 24621), (3112, 6, 24900), (3113, 6, 25001), (3114, 6, 25094), (3115, 6, 25119), (3116, 6, 25200), (3117, 6, 25203), (3323, 7, 1535), (3324, 7, 1735), (3325, 7, 1826), (3326, 7, 1833), (3327, 7, 2242), (3328, 7, 2574), (3329, 7, 2885), (3330, 7, 3016), (3331, 7, 3206), (3332, 7, 3388), (3333, 7, 3403), (3334, 7, 3556), (3335, 7, 4069), (3336, 7, 4281), (3337, 7, 4286), (3338, 7, 5219), (3339, 7, 5677), (3340, 7, 5831), (3341, 7, 5988), (3342, 7, 6187), (3343, 7, 6254), (3344, 7, 6318), (3345, 7, 6413), (3346, 7, 6564), (3347, 7, 6634), (3348, 7, 6870), (3349, 7, 6962), (3350, 7, 7118), (3351, 7, 7210), (3352, 7, 7221), (3353, 7, 7224), (3354, 7, 7736), (3355, 7, 7809), (3356, 7, 7896), (3357, 7, 7898), (3358, 7, 7924), (3359, 7, 8677), (3360, 7, 8680), (3361, 7, 8791), (3362, 7, 9047), (3363, 7, 9191), (3364, 7, 9307), (3365, 7, 9360), (3366, 7, 9669), (3367, 7, 9832), (3368, 7, 9991), (3369, 7, 10094), (3370, 7, 10131), (3371, 7, 10247), (3372, 7, 10345), (3373, 7, 10565), (3374, 7, 10710), (3375, 7, 11122), (3376, 7, 11263), (3377, 7, 11267), (3378, 7, 11406), (3379, 7, 11779), (3380, 7, 11940), (3381, 7, 11987), (3382, 7, 12090), (3383, 7, 12266), (3384, 7, 12303), (3385, 7, 12326), (3386, 7, 12417), (3387, 7, 12712), (3388, 7, 12755), (3389, 7, 12796), (3390, 7, 12877), (3391, 7, 13020), (3392, 7, 13120), (3393, 7, 13136), (3394, 7, 13182), (3395, 7, 13220), (3396, 7, 13334), (3397, 7, 13491), (3398, 7, 13605), (3399, 7, 13620), (3400, 7, 13633), (3401, 7, 13651), (3402, 7, 13719), (3403, 7, 13899), (3404, 7, 13933), (3405, 7, 13952), (3406, 7, 14028), (3407, 7, 14141), (3408, 7, 14191), (3409, 7, 14243), (3410, 7, 14345), (3411, 7, 14412), (3412, 7, 14456), (3413, 7, 14748), (3414, 7, 14771), (3415, 7, 15123), (3416, 7, 15202), (3417, 7, 15268), (3418, 7, 15353), (3419, 7, 15368), (3420, 7, 15536), (3421, 7, 15656), (3422, 7, 15741), (3423, 7, 16073), (3424, 7, 16143), (3425, 7, 16532), (3426, 7, 16548), (3427, 7, 17007), (3428, 7, 17140), (3429, 7, 17192), (3430, 7, 17387), (3431, 7, 17392), (3432, 7, 17462), (3433, 7, 17538), (3434, 7, 17555), (3435, 7, 17686), (3436, 7, 17858), (3437, 7, 18007), (3438, 7, 18105), (3439, 7, 18164), (3440, 7, 18381), (3441, 7, 18425), (3442, 7, 18757), (3443, 7, 18784), (3444, 7, 19180), (3445, 7, 19392), (3446, 7, 19445), (3447, 7, 19645), (3448, 7, 19737), (3449, 7, 19828), (3450, 7, 20132), (3451, 7, 20714), (3452, 7, 20809), (3453, 7, 21025), (3454, 7, 21032), (3455, 7, 21492), (3456, 7, 21561), (3457, 7, 22484), (3458, 7, 22588), (3459, 7, 22696), (3460, 7, 22851), (3461, 7, 22988), (3462, 7, 23082), (3463, 7, 23339), (3464, 7, 23815), (3465, 7, 24913), (3578, 8, 1354), (3579, 8, 2523), (3580, 8, 3206), (3581, 8, 4790), (3582, 8, 5001), (3583, 8, 5714), (3584, 8, 6564), (3585, 8, 6627), (3586, 8, 6877), (3587, 8, 7410), (3588, 8, 7537), (3589, 8, 7642), (3590, 8, 7712), (3591, 8, 7931), (3592, 8, 8025), (3593, 8, 8030), (3594, 8, 8708), (3595, 8, 8711), (3596, 8, 9438), (3597, 8, 9498), (3598, 8, 9535), (3599, 8, 9580), (3600, 8, 9916), (3601, 8, 9939), (3602, 8, 10233), (3603, 8, 10295), (3604, 8, 10375), (3605, 8, 10394), (3606, 8, 10804), (3607, 8, 10816), (3608, 8, 11032), (3609, 8, 11059), (3610, 8, 11154), (3611, 8, 11265), (3612, 8, 11505), (3613, 8, 11540), (3614, 8, 11545), (3615, 8, 11630), (3616, 8, 11792), (3617, 8, 11906), (3618, 8, 12392), (3619, 8, 12415), (3620, 8, 12532), (3621, 8, 13066), (3622, 8, 13217), (3623, 8, 13270), (3624, 8, 13320), (3625, 8, 13812), (3626, 8, 13942), (3627, 8, 14224), (3628, 8, 14387), (3629, 8, 14532), (3630, 8, 14630), (3631, 8, 14787), (3632, 8, 14812), (3633, 8, 15152), (3634, 8, 15455), (3635, 8, 15456), (3636, 8, 15559), (3637, 8, 15700), (3638, 8, 15860), (3639, 8, 15977), (3640, 8, 15998), (3641, 8, 17093), (3642, 8, 17555), (3643, 8, 17600), (3644, 8, 17647), (3645, 8, 17839), (3646, 8, 17915), (3647, 8, 18310), (3648, 8, 18315), (3649, 8, 18648), (3650, 8, 19024), (3651, 8, 19804), (3652, 8, 19909), (3653, 8, 20181), (3654, 8, 20434), (3655, 8, 20597), (3656, 8, 20768), (3657, 8, 20903), (3658, 8, 21134), (3659, 8, 22839), (3660, 8, 24132), (3661, 8, 24142), (3662, 8, 24649), (3663, 8, 25119), (3705, 9, 237), (3706, 9, 816), (3707, 9, 1213), (3708, 9, 1725), (3709, 9, 2002), (3710, 9, 2099), (3711, 9, 2598), (3712, 9, 2851), (3713, 9, 3099), (3714, 9, 3234), (3715, 9, 3930), (3716, 9, 4125), (3717, 9, 4222), (3718, 9, 4303), (3719, 9, 4312), (3720, 9, 4334), (3721, 9, 4481), (3722, 9, 4516), (3723, 9, 4531), (3724, 9, 4584), (3725, 9, 4615), (3726, 9, 4785), (3727, 9, 5048), (3728, 9, 5181), (3729, 9, 5216), (3730, 9, 5282), (3731, 9, 5294), (3732, 9, 5735), (3733, 9, 5811), (3734, 9, 5899), (3735, 9, 5931), (3736, 9, 5949), (3737, 9, 6162), (3738, 9, 6236), (3739, 9, 6318), (3740, 9, 6389), (3741, 9, 6789), (3742, 9, 7033), (3743, 9, 7179), (3744, 9, 7269), (3745, 9, 7336), (3746, 9, 7474), (3747, 9, 7522), (3748, 9, 7536), (3749, 9, 7557), (3750, 9, 7712), (3751, 9, 7723), (3752, 9, 7855), (3753, 9, 8403), (3754, 9, 8535), (3755, 9, 8609), (3756, 9, 8679), (3757, 9, 8736), (3758, 9, 8776), (3759, 9, 8919), (3760, 9, 8990), (3761, 9, 9043), (3762, 9, 9075), (3763, 9, 9174), (3764, 9, 9204), (3765, 9, 9213), (3766, 9, 9289), (3767, 9, 9429), (3768, 9, 9603), (3769, 9, 9614), (3770, 9, 9745), (3771, 9, 9883), (3772, 9, 9895), (3773, 9, 9936), (3774, 9, 9948), (3775, 9, 9972), (3776, 9, 10177), (3777, 9, 10370), (3778, 9, 10407), (3779, 9, 10602), (3780, 9, 10658), (3781, 9, 10874), (3782, 9, 10924), (3783, 9, 11046), (3784, 9, 11151), (3785, 9, 11199), (3786, 9, 11365), (3787, 9, 11381), (3788, 9, 11397), (3789, 9, 11558), (3790, 9, 11605), (3791, 9, 11609), (3792, 9, 11634), (3793, 9, 11706), (3794, 9, 11740), (3795, 9, 11769), (3796, 9, 11950), (3797, 9, 12062), (3798, 9, 12166), (3799, 9, 12274), (3800, 9, 12289), (3801, 9, 12386), (3802, 9, 12463), (3803, 9, 12486), (3804, 9, 12852), (3805, 9, 13079), (3806, 9, 13140), (3807, 9, 13718), (3808, 9, 13788), (3809, 9, 14101), (3810, 9, 14214), (3811, 9, 14269), (3812, 9, 14309), (3813, 9, 14532), (3814, 9, 14869), (3815, 9, 15100), (3816, 9, 15276), (3817, 9, 15376), (3818, 9, 15414), (3819, 9, 15522), (3820, 9, 15556), (3821, 9, 15606), (3822, 9, 15878), (3823, 9, 15887), (3824, 9, 16002), (3825, 9, 16121), (3826, 9, 17002), (3827, 9, 17363), (3828, 9, 17642), (3829, 9, 17674), (3830, 9, 17680), (3831, 9, 17694), (3832, 9, 17741), (3833, 9, 18157), (3834, 9, 18177), (3835, 9, 18226), (3836, 9, 18702), (3837, 9, 18735), (3838, 9, 18944), (3839, 9, 19037), (3840, 9, 19413), (3841, 9, 19909), (3842, 9, 19978), (3843, 9, 20579), (3844, 9, 21127), (3845, 9, 22201), (3846, 9, 23213), (3847, 9, 25135), (3848, 9, 25186), (3960, 10, 52), (3961, 10, 85), (3962, 10, 133), (3963, 10, 197), (3964, 10, 198), (3965, 10, 251), (3966, 10, 256), (3967, 10, 315), (3968, 10, 316), (3969, 10, 324), (3970, 10, 357), (3971, 10, 426), (3972, 10, 468), (3973, 10, 475), (3974, 10, 611), (3975, 10, 738), (3976, 10, 793), (3977, 10, 818), (3978, 10, 845), (3979, 10, 927), (3980, 10, 1312), (3981, 10, 1354), (3982, 10, 1360), (3983, 10, 1603), (3984, 10, 1669), (3985, 10, 1701), (3986, 10, 1734), (3987, 10, 1762), (3988, 10, 1790), (3989, 10, 2061), (3990, 10, 2077), (3991, 10, 2086), (3992, 10, 2215), (3993, 10, 2245), (3994, 10, 2349), (3995, 10, 2383), (3996, 10, 2416), (3997, 10, 2438), (3998, 10, 2456), (3999, 10, 2490), (4000, 10, 2562), (4001, 10, 2568), (4002, 10, 2573), (4003, 10, 2636), (4004, 10, 2640), (4005, 10, 2716), (4006, 10, 2888), (4007, 10, 2901), (4008, 10, 2911), (4009, 10, 2967), (4010, 10, 3018), (4011, 10, 3033), (4012, 10, 3037), (4013, 10, 3159), (4014, 10, 3197), (4015, 10, 3360), (4016, 10, 3373), (4017, 10, 3405), (4018, 10, 3425), (4019, 10, 3712), (4020, 10, 3739), (4021, 10, 3741), (4022, 10, 3747), (4023, 10, 3843), (4024, 10, 3975), (4025, 10, 4009), (4026, 10, 4062), (4027, 10, 4106), (4028, 10, 4161), (4029, 10, 4192), (4030, 10, 4302), (4031, 10, 4459), (4032, 10, 4522), (4033, 10, 4531), (4034, 10, 4790), (4035, 10, 4858), (4036, 10, 4876), (4037, 10, 4895), (4038, 10, 4911), (4039, 10, 4922), (4040, 10, 4955), (4041, 10, 5101), (4042, 10, 5181), (4043, 10, 5214), (4044, 10, 5223), (4045, 10, 5231), (4046, 10, 5239), (4047, 10, 5249), (4048, 10, 5279), (4049, 10, 5363), (4050, 10, 5366), (4051, 10, 5436), (4052, 10, 5450), (4053, 10, 5539), (4054, 10, 5571), (4055, 10, 5602), (4056, 10, 5611), (4057, 10, 5714), (4058, 10, 5727), (4059, 10, 5850), (4060, 10, 5921), (4061, 10, 5950), (4062, 10, 5977), (4063, 10, 5988), (4064, 10, 6054), (4065, 10, 6064), (4066, 10, 6132), (4067, 10, 6163), (4068, 10, 6264), (4069, 10, 6326), (4070, 10, 6340), (4071, 10, 6376), (4072, 10, 6419), (4073, 10, 6421), (4074, 10, 6455), (4075, 10, 6534), (4076, 10, 6579), (4077, 10, 6607), (4078, 10, 6638), (4079, 10, 6683), (4080, 10, 6686), (4081, 10, 6765), (4082, 10, 6867), (4083, 10, 7034), (4084, 10, 7171), (4085, 10, 7221), (4086, 10, 7372), (4087, 10, 7385), (4088, 10, 7434), (4089, 10, 7616), (4090, 10, 7628), (4091, 10, 7632), (4092, 10, 7633), (4093, 10, 7642), (4094, 10, 7655), (4095, 10, 7656), (4096, 10, 7677), (4097, 10, 7695), (4098, 10, 7736), (4099, 10, 7779), (4100, 10, 7809), (4101, 10, 7832), (4102, 10, 7840), (4103, 10, 7898), (4104, 10, 7931), (4105, 10, 7986), (4106, 10, 8025), (4107, 10, 8030), (4108, 10, 8106), (4109, 10, 8120), (4110, 10, 8170), (4111, 10, 8172), (4112, 10, 8354), (4113, 10, 8449), (4114, 10, 8522), (4115, 10, 8528), (4116, 10, 8562), (4117, 10, 8578), (4118, 10, 8708), (4119, 10, 8711), (4120, 10, 8747), (4121, 10, 8785), (4122, 10, 8815), (4123, 10, 8834), (4124, 10, 8945), (4125, 10, 9047), (4126, 10, 9058), (4127, 10, 9070), (4128, 10, 9150), (4129, 10, 9204), (4130, 10, 9222), (4131, 10, 9276), (4132, 10, 9368), (4133, 10, 9438), (4134, 10, 9525), (4135, 10, 9567), (4136, 10, 9619), (4137, 10, 9627), (4138, 10, 9686), (4139, 10, 9724), (4140, 10, 9756), (4141, 10, 9799), (4142, 10, 9870), (4143, 10, 9916), (4144, 10, 9939), (4145, 10, 9958), (4146, 10, 10092), (4147, 10, 10108), (4148, 10, 10154), (4149, 10, 10155), (4150, 10, 10166), (4151, 10, 10184), (4152, 10, 10201), (4153, 10, 10213), (4154, 10, 10247), (4155, 10, 10315), (4156, 10, 10345), (4157, 10, 10346), (4158, 10, 10375), (4159, 10, 10394), (4160, 10, 10437), (4161, 10, 10494), (4162, 10, 10517), (4163, 10, 10589), (4164, 10, 10602), (4165, 10, 10636), (4166, 10, 10732), (4167, 10, 10789), (4168, 10, 10804), (4169, 10, 10816), (4170, 10, 10843), (4171, 10, 10879), (4172, 10, 11020), (4173, 10, 11033), (4174, 10, 11046), (4175, 10, 11047), (4176, 10, 11068), (4177, 10, 11132), (4178, 10, 11190), (4179, 10, 11222), (4180, 10, 11263), (4181, 10, 11264), (4182, 10, 11293), (4183, 10, 11297), (4184, 10, 11365), (4185, 10, 11417), (4186, 10, 11434), (4187, 10, 11513), (4188, 10, 11540), (4189, 10, 11607), (4190, 10, 11622), (4191, 10, 11655), (4192, 10, 11712), (4193, 10, 11720), (4194, 10, 11757), (4195, 10, 11769), (4196, 10, 11792), (4197, 10, 11943), (4198, 10, 12111), (4199, 10, 12200), (4200, 10, 12290), (4201, 10, 12303), (4202, 10, 12407), (4203, 10, 12427), (4204, 10, 12457), (4205, 10, 12479), (4206, 10, 12504), (4207, 10, 12518), (4208, 10, 12527), (4209, 10, 12560), (4210, 10, 12613), (4211, 10, 12650), (4212, 10, 12707), (4213, 10, 12775), (4214, 10, 12830), (4215, 10, 12959), (4216, 10, 13005), (4217, 10, 13007), (4218, 10, 13020), (4219, 10, 13066), (4220, 10, 13130), (4221, 10, 13141), (4222, 10, 13143), (4223, 10, 13173), (4224, 10, 13174), (4225, 10, 13188), (4226, 10, 13190), (4227, 10, 13200), (4228, 10, 13217), (4229, 10, 13262), (4230, 10, 13270), (4231, 10, 13274), (4232, 10, 13290), (4233, 10, 13320), (4234, 10, 13334), (4235, 10, 13491), (4236, 10, 13514), (4237, 10, 13608), (4238, 10, 13611), (4239, 10, 13651), (4240, 10, 13661), (4241, 10, 13713), (4242, 10, 13745), (4243, 10, 13747), (4244, 10, 13812), (4245, 10, 13879), (4246, 10, 13905), (4247, 10, 13938), (4248, 10, 14027), (4249, 10, 14032), (4250, 10, 14044), (4251, 10, 14120), (4252, 10, 14224), (4253, 10, 14272), (4254, 10, 14333), (4255, 10, 14352), (4256, 10, 14416), (4257, 10, 14456), (4258, 10, 14469), (4259, 10, 14484), (4260, 10, 14491), (4261, 10, 14503), (4262, 10, 14535), (4263, 10, 14546), (4264, 10, 14687), (4265, 10, 14748), (4266, 10, 14787), (4267, 10, 14818), (4268, 10, 14837), (4269, 10, 14847), (4270, 10, 14855), (4271, 10, 14875), (4272, 10, 14934), (4273, 10, 15071), (4274, 10, 15072), (4275, 10, 15101), (4276, 10, 15202), (4277, 10, 15284), (4278, 10, 15357), (4279, 10, 15376), (4280, 10, 15428), (4281, 10, 15455), (4282, 10, 15456), (4283, 10, 15463), (4284, 10, 15524), (4285, 10, 15573), (4286, 10, 15590), (4287, 10, 15632), (4288, 10, 15642), (4289, 10, 15667), (4290, 10, 15690), (4291, 10, 15700), (4292, 10, 15703), (4293, 10, 15826), (4294, 10, 15860), (4295, 10, 15869), (4296, 10, 15903), (4297, 10, 15905), (4298, 10, 15908), (4299, 10, 15923), (4300, 10, 15957), (4301, 10, 15998), (4302, 10, 16106), (4303, 10, 16132), (4304, 10, 16223), (4305, 10, 16242), (4306, 10, 16248), (4307, 10, 16309), (4308, 10, 16340), (4309, 10, 16485), (4310, 10, 16529), (4311, 10, 16556), (4312, 10, 16569), (4313, 10, 16619), (4314, 10, 16635), (4315, 10, 16666), (4316, 10, 16687), (4317, 10, 16718), (4318, 10, 16743), (4319, 10, 16769), (4320, 10, 16891), (4321, 10, 16895), (4322, 10, 17000), (4323, 10, 17007), (4324, 10, 17032), (4325, 10, 17073), (4326, 10, 17093), (4327, 10, 17187), (4328, 10, 17190), (4329, 10, 17232), (4330, 10, 17264), (4331, 10, 17337), (4332, 10, 17399), (4333, 10, 17418), (4334, 10, 17427), (4335, 10, 17430), (4336, 10, 17495), (4337, 10, 17537), (4338, 10, 17538), (4339, 10, 17593), (4340, 10, 17686), (4341, 10, 17731), (4342, 10, 17828), (4343, 10, 17858), (4344, 10, 17867), (4345, 10, 17870), (4346, 10, 17915), (4347, 10, 17920), (4348, 10, 17968), (4349, 10, 17969), (4350, 10, 17996), (4351, 10, 18072), (4352, 10, 18157), (4353, 10, 18221), (4354, 10, 18229), (4355, 10, 18271), (4356, 10, 18451), (4357, 10, 18755), (4358, 10, 18786), (4359, 10, 18882), (4360, 10, 18921), (4361, 10, 18958), (4362, 10, 18962), (4363, 10, 18993), (4364, 10, 19180), (4365, 10, 19228), (4366, 10, 19235), (4367, 10, 19282), (4368, 10, 19329), (4369, 10, 19392), (4370, 10, 19726), (4371, 10, 19728), (4372, 10, 19737), (4373, 10, 19742), (4374, 10, 19776), (4375, 10, 19833), (4376, 10, 19909), (4377, 10, 19978), (4378, 10, 20014), (4379, 10, 20044), (4380, 10, 20132), (4381, 10, 20214), (4382, 10, 20233), (4383, 10, 20327), (4384, 10, 20434), (4385, 10, 20533), (4386, 10, 20579), (4387, 10, 20597), (4388, 10, 20601), (4389, 10, 20714), (4390, 10, 20735), (4391, 10, 20759), (4392, 10, 20768), (4393, 10, 20835), (4394, 10, 20954), (4395, 10, 20991), (4396, 10, 21025), (4397, 10, 21134), (4398, 10, 21140), (4399, 10, 21890), (4400, 10, 22033), (4401, 10, 22045), (4402, 10, 22201), (4403, 10, 22271), (4404, 10, 22484), (4405, 10, 22737), (4406, 10, 22884), (4407, 10, 22988), (4408, 10, 22992), (4409, 10, 23047), (4410, 10, 23339), (4411, 10, 23773), (4412, 10, 24132), (4413, 10, 24142), (4414, 10, 25067), (4415, 10, 25109), (4416, 10, 25171), (4417, 10, 25174), (4418, 10, 25179), (4471, 11, 456), (4472, 11, 655), (4473, 11, 1183), (4474, 11, 1347), (4475, 11, 1360), (4476, 11, 1517), (4477, 11, 1744), (4478, 11, 1790), (4479, 11, 1910), (4480, 11, 2077), (4481, 11, 2129), (4482, 11, 2251), (4483, 11, 2351), (4484, 11, 2363), (4485, 11, 2488), (4486, 11, 2911), (4487, 11, 3049), (4488, 11, 3051), (4489, 11, 3266), (4490, 11, 3403), (4491, 11, 3411), (4492, 11, 3803), (4493, 11, 4009), (4494, 11, 4085), (4495, 11, 4107), (4496, 11, 4785), (4497, 11, 5083), (4498, 11, 5279), (4499, 11, 5573), (4500, 11, 5713), (4501, 11, 5861), (4502, 11, 5977), (4503, 11, 6186), (4504, 11, 6223), (4505, 11, 6421), (4506, 11, 6712), (4507, 11, 6858), (4508, 11, 6867), (4509, 11, 7163), (4510, 11, 7358), (4511, 11, 7533), (4512, 11, 7628), (4513, 11, 7661), (4514, 11, 7668), (4515, 11, 8025), (4516, 11, 8099), (4517, 11, 8309), (4518, 11, 8412), (4519, 11, 8658), (4520, 11, 8687), (4521, 11, 8778), (4522, 11, 9508), (4523, 11, 9593), (4524, 11, 9710), (4525, 11, 9757), (4526, 11, 10155), (4527, 11, 10387), (4528, 11, 10394), (4529, 11, 10565), (4530, 11, 10580), (4531, 11, 10790), (4532, 11, 10888), (4533, 11, 11013), (4534, 11, 11016), (4535, 11, 11110), (4536, 11, 11154), (4537, 11, 11208), (4538, 11, 11652), (4539, 11, 11757), (4540, 11, 11779), (4541, 11, 11792), (4542, 11, 12005), (4543, 11, 12290), (4544, 11, 12344), (4545, 11, 12468), (4546, 11, 13141), (4547, 11, 13173), (4548, 11, 13615), (4549, 11, 13643), (4550, 11, 13815), (4551, 11, 13879), (4552, 11, 14054), (4553, 11, 14224), (4554, 11, 14239), (4555, 11, 14333), (4556, 11, 14362), (4557, 11, 14837), (4558, 11, 14934), (4559, 11, 14987), (4560, 11, 15456), (4561, 11, 15536), (4562, 11, 15614), (4563, 11, 15860), (4564, 11, 15903), (4565, 11, 16106), (4566, 11, 16248), (4567, 11, 16529), (4568, 11, 16613), (4569, 11, 16666), (4570, 11, 16769), (4571, 11, 16808), (4572, 11, 16891), (4573, 11, 16946), (4574, 11, 16976), (4575, 11, 17264), (4576, 11, 17382), (4577, 11, 17430), (4578, 11, 17858), (4579, 11, 18381), (4580, 11, 18420), (4581, 11, 18451), (4582, 11, 19282), (4583, 11, 19782), (4584, 11, 19974), (4585, 11, 20114), (4586, 11, 20397), (4587, 11, 20434), (4588, 11, 20620), (4589, 11, 20705), (4590, 11, 20895), (4591, 11, 20991), (4592, 11, 21031), (4593, 11, 21459), (4594, 11, 22839), (4595, 11, 23046), (4596, 11, 24429), (4597, 11, 24649), (4598, 11, 25109), (4599, 11, 25174), (4600, 11, 25196), (4726, 12, 1457), (4727, 12, 1461), (4728, 12, 1673), (4729, 12, 1922), (4730, 12, 1988), (4731, 12, 2042), (4732, 12, 2333), (4733, 12, 2860), (4734, 12, 3024), (4735, 12, 3852), (4736, 12, 4192), (4737, 12, 4252), (4738, 12, 4619), (4739, 12, 4809), (4740, 12, 4810), (4741, 12, 4864), (4742, 12, 5241), (4743, 12, 5419), (4744, 12, 5449), (4745, 12, 5530), (4746, 12, 5590), (4747, 12, 5619), (4748, 12, 5837), (4749, 12, 6296), (4750, 12, 6405), (4751, 12, 6530), (4752, 12, 6972), (4753, 12, 6992), (4754, 12, 7059), (4755, 12, 7153), (4756, 12, 7380), (4757, 12, 7772), (4758, 12, 7806), (4759, 12, 8003), (4760, 12, 8141), (4761, 12, 8294), (4762, 12, 8383), (4763, 12, 8431), (4764, 12, 8444), (4765, 12, 8595), (4766, 12, 8663), (4767, 12, 8871), (4768, 12, 8886), (4769, 12, 8894), (4770, 12, 8960), (4771, 12, 9401); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (4772, 12, 9547), (4773, 12, 9763), (4774, 12, 10015), (4775, 12, 10127), (4776, 12, 10289), (4777, 12, 10360), (4778, 12, 10498), (4779, 12, 10666), (4780, 12, 10956), (4781, 12, 11131), (4782, 12, 11341), (4783, 12, 11578), (4784, 12, 11580), (4785, 12, 11867), (4786, 12, 12081), (4787, 12, 12086), (4788, 12, 12221), (4789, 12, 12253), (4790, 12, 12283), (4791, 12, 12325), (4792, 12, 12478), (4793, 12, 12511), (4794, 12, 12558), (4795, 12, 12563), (4796, 12, 12599), (4797, 12, 12615), (4798, 12, 12827), (4799, 12, 12857), (4800, 12, 12882), (4801, 12, 13155), (4802, 12, 13244), (4803, 12, 13253), (4804, 12, 13457), (4805, 12, 13477), (4806, 12, 13543), (4807, 12, 13874), (4808, 12, 13915), (4809, 12, 13951), (4810, 12, 14016), (4811, 12, 14046), (4812, 12, 14087), (4813, 12, 14113), (4814, 12, 14169), (4815, 12, 14241), (4816, 12, 14260), (4817, 12, 14304), (4818, 12, 14537), (4819, 12, 14635), (4820, 12, 14685), (4821, 12, 14795), (4822, 12, 14899), (4823, 12, 15117), (4824, 12, 15162), (4825, 12, 15327), (4826, 12, 15390), (4827, 12, 15426), (4828, 12, 15457), (4829, 12, 15710), (4830, 12, 15743), (4831, 12, 15835), (4832, 12, 15918), (4833, 12, 15937), (4834, 12, 16062), (4835, 12, 16154), (4836, 12, 16169), (4837, 12, 16182), (4838, 12, 16275), (4839, 12, 16329), (4840, 12, 16393), (4841, 12, 16446), (4842, 12, 16472), (4843, 12, 16545), (4844, 12, 16620), (4845, 12, 16633), (4846, 12, 16640), (4847, 12, 16702), (4848, 12, 16705), (4849, 12, 16717), (4850, 12, 16845), (4851, 12, 16935), (4852, 12, 17014), (4853, 12, 17095), (4854, 12, 17211), (4855, 12, 17398), (4856, 12, 17458), (4857, 12, 17471), (4858, 12, 17504), (4859, 12, 17607), (4860, 12, 17610), (4861, 12, 17967), (4862, 12, 17991), (4863, 12, 18359), (4864, 12, 18370), (4865, 12, 18409), (4866, 12, 18453), (4867, 12, 18473), (4868, 12, 18537), (4869, 12, 18546), (4870, 12, 18571), (4871, 12, 18627), (4872, 12, 18640), (4873, 12, 18693), (4874, 12, 18721), (4875, 12, 18827), (4876, 12, 18845), (4877, 12, 18851), (4878, 12, 18871), (4879, 12, 18896), (4880, 12, 18907), (4881, 12, 19141), (4882, 12, 19161), (4883, 12, 19171), (4884, 12, 19185), (4885, 12, 19201), (4886, 12, 19208), (4887, 12, 19335), (4888, 12, 19344), (4889, 12, 19347), (4890, 12, 19594), (4891, 12, 19849), (4892, 12, 19864), (4893, 12, 19914), (4894, 12, 19957), (4895, 12, 20118), (4896, 12, 20123), (4897, 12, 20135), (4898, 12, 20178), (4899, 12, 20202), (4900, 12, 20245), (4901, 12, 20271), (4902, 12, 20322), (4903, 12, 20349), (4904, 12, 20443), (4905, 12, 20509), (4906, 12, 20520), (4907, 12, 20625), (4908, 12, 20800), (4909, 12, 20919), (4910, 12, 20953), (4911, 12, 20978), (4912, 12, 21043), (4913, 12, 21065), (4914, 12, 21099), (4915, 12, 21121), (4916, 12, 21142), (4917, 12, 21243), (4918, 12, 21273), (4919, 12, 21311), (4920, 12, 21325), (4921, 12, 21490), (4922, 12, 21518), (4923, 12, 21530), (4924, 12, 21584), (4925, 12, 21735), (4926, 12, 21753), (4927, 12, 21760), (4928, 12, 21771), (4929, 12, 21836), (4930, 12, 21888), (4931, 12, 21963), (4932, 12, 22050), (4933, 12, 22113), (4934, 12, 22114), (4935, 12, 22175), (4936, 12, 22192), (4937, 12, 22215), (4938, 12, 22270), (4939, 12, 22342), (4940, 12, 22352), (4941, 12, 22437), (4942, 12, 22460), (4943, 12, 22477), (4944, 12, 22499), (4945, 12, 22501), (4946, 12, 22504), (4947, 12, 22587), (4948, 12, 22592), (4949, 12, 22804), (4950, 12, 22918), (4951, 12, 22932), (4952, 12, 23100), (4953, 12, 23101), (4954, 12, 23103), (4955, 12, 23113), (4956, 12, 23188), (4957, 12, 23189), (4958, 12, 23216), (4959, 12, 23314), (4960, 12, 23343), (4961, 12, 23348), (4962, 12, 23371), (4963, 12, 23429), (4964, 12, 23440), (4965, 12, 23464), (4966, 12, 23465), (4967, 12, 23492), (4968, 12, 23502), (4969, 12, 23504), (4970, 12, 23554), (4971, 12, 23564), (4972, 12, 23569), (4973, 12, 23571), (4974, 12, 23574), (4975, 12, 23581), (4976, 12, 23601), (4977, 12, 23776), (4978, 12, 23808), (4979, 12, 23828), (4980, 12, 23839), (4981, 12, 23858), (4982, 12, 23865), (4983, 12, 23873), (4984, 12, 23888), (4985, 12, 23916), (4986, 12, 23924), (4987, 12, 23995), (4988, 12, 24049), (4989, 12, 24063), (4990, 12, 24181), (4991, 12, 24208), (4992, 12, 24226), (4993, 12, 24268), (4994, 12, 24318), (4995, 12, 24416), (4996, 12, 24421), (4997, 12, 24474), (4998, 12, 24505), (4999, 12, 24565), (5000, 12, 24618), (5001, 12, 24629), (5002, 12, 24671), (5003, 12, 24737), (5004, 12, 24765), (5005, 12, 24830), (5006, 12, 24852), (5007, 12, 24872), (5008, 12, 24912), (5009, 12, 24952), (5010, 12, 25059), (5011, 12, 25220), (5237, 13, 32), (5238, 13, 96), (5239, 13, 466), (5240, 13, 575), (5241, 13, 591), (5242, 13, 615), (5243, 13, 653), (5244, 13, 882), (5245, 13, 1093), (5246, 13, 1180), (5247, 13, 1229), (5248, 13, 1313), (5249, 13, 1457), (5250, 13, 1595), (5251, 13, 1671), (5252, 13, 1673), (5253, 13, 1782), (5254, 13, 1827), (5255, 13, 1895), (5256, 13, 1925), (5257, 13, 2023), (5258, 13, 2068), (5259, 13, 2071), (5260, 13, 2143), (5261, 13, 2224), (5262, 13, 2238), (5263, 13, 2320), (5264, 13, 2344), (5265, 13, 2354), (5266, 13, 2397), (5267, 13, 2449), (5268, 13, 2460), (5269, 13, 2481), (5270, 13, 2496), (5271, 13, 2730), (5272, 13, 2755), (5273, 13, 2777), (5274, 13, 2884), (5275, 13, 3045), (5276, 13, 3080), (5277, 13, 3139), (5278, 13, 3142), (5279, 13, 3270), (5280, 13, 3274), (5281, 13, 3300), (5282, 13, 3372), (5283, 13, 3390), (5284, 13, 3421), (5285, 13, 3455), (5286, 13, 3506), (5287, 13, 3534), (5288, 13, 3550), (5289, 13, 3603), (5290, 13, 3627), (5291, 13, 3634), (5292, 13, 3665), (5293, 13, 3705), (5294, 13, 3722), (5295, 13, 3955), (5296, 13, 4012), (5297, 13, 4080), (5298, 13, 4187), (5299, 13, 4306), (5300, 13, 4442), (5301, 13, 4535), (5302, 13, 4551), (5303, 13, 4561), (5304, 13, 4599), (5305, 13, 4644), (5306, 13, 4687), (5307, 13, 4959), (5308, 13, 4960), (5309, 13, 5126), (5310, 13, 5171), (5311, 13, 5243), (5312, 13, 5286), (5313, 13, 5513), (5314, 13, 5566), (5315, 13, 5579), (5316, 13, 5781), (5317, 13, 5941), (5318, 13, 5998), (5319, 13, 6063), (5320, 13, 6171), (5321, 13, 6201), (5322, 13, 6224), (5323, 13, 6304), (5324, 13, 6312), (5325, 13, 6344), (5326, 13, 6381), (5327, 13, 6391), (5328, 13, 6476), (5329, 13, 6519), (5330, 13, 6553), (5331, 13, 6628), (5332, 13, 6680), (5333, 13, 6716), (5334, 13, 6721), (5335, 13, 6726), (5336, 13, 6747), (5337, 13, 7063), (5338, 13, 7133), (5339, 13, 7175), (5340, 13, 7355), (5341, 13, 7388), (5342, 13, 7404), (5343, 13, 7470), (5344, 13, 7651), (5345, 13, 7663), (5346, 13, 7719), (5347, 13, 7796), (5348, 13, 7878), (5349, 13, 7951), (5350, 13, 7959), (5351, 13, 8043), (5352, 13, 8067), (5353, 13, 8135), (5354, 13, 8184), (5355, 13, 8353), (5356, 13, 8431), (5357, 13, 8523), (5358, 13, 8728), (5359, 13, 8850), (5360, 13, 8983), (5361, 13, 9027), (5362, 13, 9065), (5363, 13, 9177), (5364, 13, 9225), (5365, 13, 9357), (5366, 13, 9437), (5367, 13, 9515), (5368, 13, 9623), (5369, 13, 9626), (5370, 13, 9733), (5371, 13, 9827), (5372, 13, 9941), (5373, 13, 9949), (5374, 13, 10168), (5375, 13, 10200), (5376, 13, 10204), (5377, 13, 10408), (5378, 13, 10574), (5379, 13, 10604), (5380, 13, 10631), (5381, 13, 10824), (5382, 13, 10865), (5383, 13, 10883), (5384, 13, 10916), (5385, 13, 10949), (5386, 13, 11023), (5387, 13, 11113), (5388, 13, 11128), (5389, 13, 11227), (5390, 13, 11256), (5391, 13, 11356), (5392, 13, 11414), (5393, 13, 11518), (5394, 13, 11756), (5395, 13, 12022), (5396, 13, 12049), (5397, 13, 12063), (5398, 13, 12079), (5399, 13, 12081), (5400, 13, 12124), (5401, 13, 12287), (5402, 13, 12329), (5403, 13, 12363), (5404, 13, 12403), (5405, 13, 12452), (5406, 13, 12540), (5407, 13, 12630), (5408, 13, 12806), (5409, 13, 12816), (5410, 13, 12834), (5411, 13, 12857), (5412, 13, 12893), (5413, 13, 12898), (5414, 13, 13022), (5415, 13, 13024), (5416, 13, 13025), (5417, 13, 13195), (5418, 13, 13243), (5419, 13, 13251), (5420, 13, 13483), (5421, 13, 13485), (5422, 13, 13704), (5423, 13, 13832), (5424, 13, 13919), (5425, 13, 13972), (5426, 13, 14144), (5427, 13, 14237), (5428, 13, 14374), (5429, 13, 14468), (5430, 13, 14497), (5431, 13, 14520), (5432, 13, 14549), (5433, 13, 14741), (5434, 13, 14941), (5435, 13, 14983), (5436, 13, 15297), (5437, 13, 15326), (5438, 13, 15508), (5439, 13, 15563), (5440, 13, 15581), (5441, 13, 15679), (5442, 13, 15713), (5443, 13, 15786), (5444, 13, 15819), (5445, 13, 15843), (5446, 13, 15925), (5447, 13, 15955), (5448, 13, 15987), (5449, 13, 16151), (5450, 13, 16244), (5451, 13, 16351), (5452, 13, 16574), (5453, 13, 16763), (5454, 13, 16783), (5455, 13, 17066), (5456, 13, 17082), (5457, 13, 17097), (5458, 13, 17130), (5459, 13, 17226), (5460, 13, 17298), (5461, 13, 17313), (5462, 13, 17636), (5463, 13, 17657), (5464, 13, 17681), (5465, 13, 17797), (5466, 13, 17823), (5467, 13, 17831), (5468, 13, 17875), (5469, 13, 17883), (5470, 13, 17885), (5471, 13, 17911), (5472, 13, 18016), (5473, 13, 18057), (5474, 13, 18143), (5475, 13, 18200), (5476, 13, 18205), (5477, 13, 18286), (5478, 13, 18353), (5479, 13, 18373), (5480, 13, 18388), (5481, 13, 18430), (5482, 13, 18508), (5483, 13, 18540), (5484, 13, 18547), (5485, 13, 18557), (5486, 13, 18600), (5487, 13, 18604), (5488, 13, 18761), (5489, 13, 18791), (5490, 13, 18835), (5491, 13, 18877), (5492, 13, 18891), (5493, 13, 18940), (5494, 13, 18956), (5495, 13, 18957), (5496, 13, 18990), (5497, 13, 19056), (5498, 13, 19087), (5499, 13, 19104), (5500, 13, 19119), (5501, 13, 19203), (5502, 13, 19215), (5503, 13, 19219), (5504, 13, 19220), (5505, 13, 19224), (5506, 13, 19231), (5507, 13, 19250), (5508, 13, 19352), (5509, 13, 19453), (5510, 13, 19482), (5511, 13, 19487), (5512, 13, 19521), (5513, 13, 19601), (5514, 13, 19615), (5515, 13, 19617), (5516, 13, 19658), (5517, 13, 19663), (5518, 13, 19677), (5519, 13, 19715), (5520, 13, 19762), (5521, 13, 19832), (5522, 13, 19859), (5523, 13, 19914), (5524, 13, 19970), (5525, 13, 20146), (5526, 13, 20179), (5527, 13, 20241), (5528, 13, 20297), (5529, 13, 20402), (5530, 13, 20403), (5531, 13, 20426), (5532, 13, 20480), (5533, 13, 20508), (5534, 13, 20522), (5535, 13, 20525), (5536, 13, 20530), (5537, 13, 20599), (5538, 13, 20683), (5539, 13, 20767), (5540, 13, 20810), (5541, 13, 20822), (5542, 13, 20915), (5543, 13, 20916), (5544, 13, 20939), (5545, 13, 21001), (5546, 13, 21009), (5547, 13, 21033), (5548, 13, 21094), (5549, 13, 21102), (5550, 13, 21136), (5551, 13, 21231), (5552, 13, 21235), (5553, 13, 21251), (5554, 13, 21295), (5555, 13, 21324), (5556, 13, 21378), (5557, 13, 21391), (5558, 13, 21441), (5559, 13, 21451), (5560, 13, 21462), (5561, 13, 21498), (5562, 13, 21544), (5563, 13, 21578), (5564, 13, 21604), (5565, 13, 21679), (5566, 13, 21741), (5567, 13, 21767), (5568, 13, 21826), (5569, 13, 21848), (5570, 13, 21879), (5571, 13, 21884), (5572, 13, 21952), (5573, 13, 21961), (5574, 13, 22005), (5575, 13, 22006), (5576, 13, 22021), (5577, 13, 22107), (5578, 13, 22259), (5579, 13, 22266), (5580, 13, 22301), (5581, 13, 22320), (5582, 13, 22370), (5583, 13, 22374), (5584, 13, 22425), (5585, 13, 22526), (5586, 13, 22545), (5587, 13, 22564), (5588, 13, 22575), (5589, 13, 22602), (5590, 13, 22640), (5591, 13, 22710), (5592, 13, 22768), (5593, 13, 23004), (5594, 13, 23007), (5595, 13, 23025), (5596, 13, 23030), (5597, 13, 23036), (5598, 13, 23042), (5599, 13, 23069), (5600, 13, 23084), (5601, 13, 23091), (5602, 13, 23097), (5603, 13, 23138), (5604, 13, 23144), (5605, 13, 23147), (5606, 13, 23187), (5607, 13, 23253), (5608, 13, 23284), (5609, 13, 23310), (5610, 13, 23318), (5611, 13, 23338), (5612, 13, 23408), (5613, 13, 23417), (5614, 13, 23475), (5615, 13, 23477), (5616, 13, 23508), (5617, 13, 23535), (5618, 13, 23547), (5619, 13, 23570), (5620, 13, 23584), (5621, 13, 23596), (5622, 13, 23661), (5623, 13, 23675), (5624, 13, 23688), (5625, 13, 23781), (5626, 13, 23800), (5627, 13, 23805), (5628, 13, 23855), (5629, 13, 23904), (5630, 13, 23920), (5631, 13, 23942), (5632, 13, 23944), (5633, 13, 23975), (5634, 13, 23993), (5635, 13, 24009), (5636, 13, 24025), (5637, 13, 24075), (5638, 13, 24087), (5639, 13, 24089), (5640, 13, 24095), (5641, 13, 24103), (5642, 13, 24130), (5643, 13, 24135), (5644, 13, 24180), (5645, 13, 24212), (5646, 13, 24219), (5647, 13, 24244), (5648, 13, 24257), (5649, 13, 24294), (5650, 13, 24388), (5651, 13, 24391), (5652, 13, 24396), (5653, 13, 24412), (5654, 13, 24423), (5655, 13, 24434), (5656, 13, 24439), (5657, 13, 24481), (5658, 13, 24556), (5659, 13, 24559), (5660, 13, 24586), (5661, 13, 24600), (5662, 13, 24605), (5663, 13, 24625), (5664, 13, 24637), (5665, 13, 24657), (5666, 13, 24672), (5667, 13, 24675), (5668, 13, 24689), (5669, 13, 24714), (5670, 13, 24734), (5671, 13, 24838), (5672, 13, 24873), (5673, 13, 24891), (5674, 13, 24901), (5675, 13, 24902), (5676, 13, 24924), (5677, 13, 24981), (5678, 13, 25058), (5679, 13, 25077), (5680, 13, 25162), (5681, 13, 25205), (5748, 14, 12221), (5749, 14, 14016), (5750, 14, 15117), (5751, 14, 15162), (5752, 14, 15431), (5753, 14, 15743), (5754, 14, 15918), (5755, 14, 16275), (5756, 14, 16507), (5757, 14, 16953), (5758, 14, 17908), (5759, 14, 18012), (5760, 14, 18473), (5761, 14, 18501), (5762, 14, 18514), (5763, 14, 18537), (5764, 14, 18587), (5765, 14, 18656), (5766, 14, 18845), (5767, 14, 19141), (5768, 14, 19185), (5769, 14, 19187), (5770, 14, 19250), (5771, 14, 19708), (5772, 14, 19740), (5773, 14, 19852), (5774, 14, 19864), (5775, 14, 19888), (5776, 14, 20322), (5777, 14, 20331), (5778, 14, 20349), (5779, 14, 20460), (5780, 14, 20478), (5781, 14, 20757), (5782, 14, 20946), (5783, 14, 21043), (5784, 14, 21087), (5785, 14, 21150), (5786, 14, 21223), (5787, 14, 21273), (5788, 14, 21472), (5789, 14, 21524), (5790, 14, 21544), (5791, 14, 21580), (5792, 14, 21593), (5793, 14, 21595), (5794, 14, 21937), (5795, 14, 21963), (5796, 14, 21996), (5797, 14, 22066), (5798, 14, 22102), (5799, 14, 22114), (5800, 14, 22129), (5801, 14, 22156), (5802, 14, 22175), (5803, 14, 22352), (5804, 14, 22381), (5805, 14, 22491), (5806, 14, 22504), (5807, 14, 22543), (5808, 14, 22592), (5809, 14, 22616), (5810, 14, 22628), (5811, 14, 22697), (5812, 14, 22718), (5813, 14, 22774), (5814, 14, 22804), (5815, 14, 22815), (5816, 14, 22825), (5817, 14, 22853), (5818, 14, 22918), (5819, 14, 23189), (5820, 14, 23239), (5821, 14, 23348), (5822, 14, 23351), (5823, 14, 23478), (5824, 14, 23534), (5825, 14, 23562), (5826, 14, 23573), (5827, 14, 23617), (5828, 14, 23674), (5829, 14, 23840), (5830, 14, 23863), (5831, 14, 23906), (5832, 14, 23913), (5833, 14, 23917), (5834, 14, 23936), (5835, 14, 23965), (5836, 14, 23978), (5837, 14, 23995), (5838, 14, 24015), (5839, 14, 24047), (5840, 14, 24063), (5841, 14, 24103), (5842, 14, 24208), (5843, 14, 24226), (5844, 14, 24299), (5845, 14, 24342), (5846, 14, 24421), (5847, 14, 24507), (5848, 14, 24523), (5849, 14, 24548), (5850, 14, 24580), (5851, 14, 24596), (5852, 14, 24619), (5853, 14, 24629), (5854, 14, 24737), (5855, 14, 24759), (5856, 14, 24762), (5857, 14, 24836), (5858, 14, 24884), (5859, 14, 25052), (5860, 14, 25213), (5875, 15, 323), (5876, 15, 338), (5877, 15, 576), (5878, 15, 1082), (5879, 15, 1103), (5880, 15, 1373), (5881, 15, 1735), (5882, 15, 1769), (5883, 15, 1833), (5884, 15, 1854), (5885, 15, 1964), (5886, 15, 2125), (5887, 15, 2129), (5888, 15, 2814), (5889, 15, 2885), (5890, 15, 3180), (5891, 15, 3276), (5892, 15, 3371), (5893, 15, 3437), (5894, 15, 3544), (5895, 15, 3655), (5896, 15, 3735), (5897, 15, 3736), (5898, 15, 3805), (5899, 15, 4043), (5900, 15, 4052), (5901, 15, 4093), (5902, 15, 4244), (5903, 15, 4259), (5904, 15, 4286), (5905, 15, 4518), (5906, 15, 4618), (5907, 15, 4677), (5908, 15, 4695), (5909, 15, 4753), (5910, 15, 4759), (5911, 15, 4957), (5912, 15, 5117), (5913, 15, 5549), (5914, 15, 5720), (5915, 15, 5761), (5916, 15, 5910), (5917, 15, 6040), (5918, 15, 6223), (5919, 15, 6380), (5920, 15, 6398), (5921, 15, 6454), (5922, 15, 6460), (5923, 15, 6676), (5924, 15, 6712), (5925, 15, 6749), (5926, 15, 6768), (5927, 15, 6980), (5928, 15, 6996), (5929, 15, 7307), (5930, 15, 7336), (5931, 15, 7338), (5932, 15, 7380), (5933, 15, 7654), (5934, 15, 7720), (5935, 15, 7898), (5936, 15, 7993), (5937, 15, 8063), (5938, 15, 8433), (5939, 15, 8517), (5940, 15, 8554), (5941, 15, 8611), (5942, 15, 8680), (5943, 15, 8687), (5944, 15, 8702), (5945, 15, 8871), (5946, 15, 8894), (5947, 15, 8920), (5948, 15, 9005), (5949, 15, 9229), (5950, 15, 9349), (5951, 15, 9538), (5952, 15, 9562), (5953, 15, 9774), (5954, 15, 10249), (5955, 15, 10315), (5956, 15, 10328), (5957, 15, 10381), (5958, 15, 10393), (5959, 15, 10418), (5960, 15, 10573), (5961, 15, 10666), (5962, 15, 10719), (5963, 15, 10870), (5964, 15, 10929), (5965, 15, 10943), (5966, 15, 11402), (5967, 15, 11476), (5968, 15, 11622), (5969, 15, 11656), (5970, 15, 11880), (5971, 15, 11893), (5972, 15, 11965), (5973, 15, 11987), (5974, 15, 12086), (5975, 15, 12316), (5976, 15, 12448), (5977, 15, 12505), (5978, 15, 12649), (5979, 15, 12818), (5980, 15, 13027), (5981, 15, 13244), (5982, 15, 13651), (5983, 15, 13697), (5984, 15, 13888), (5985, 15, 13915), (5986, 15, 13933), (5987, 15, 14241), (5988, 15, 14261), (5989, 15, 14283), (5990, 15, 14518), (5991, 15, 14545), (5992, 15, 14616), (5993, 15, 14626), (5994, 15, 14663), (5995, 15, 14761), (5996, 15, 14814), (5997, 15, 14845), (5998, 15, 14849), (5999, 15, 15024), (6000, 15, 15041), (6001, 15, 15091), (6002, 15, 15575), (6003, 15, 15576), (6004, 15, 15848), (6005, 15, 16281), (6006, 15, 16555), (6007, 15, 16566), (6008, 15, 16605), (6009, 15, 16657), (6010, 15, 16715), (6011, 15, 16769), (6012, 15, 16916), (6013, 15, 16942), (6014, 15, 16958), (6015, 15, 17100), (6016, 15, 17167), (6017, 15, 17222), (6018, 15, 17407), (6019, 15, 17422), (6020, 15, 17480), (6021, 15, 17600), (6022, 15, 17601), (6023, 15, 17776), (6024, 15, 17828), (6025, 15, 17858), (6026, 15, 17991), (6027, 15, 18105), (6028, 15, 18338), (6029, 15, 18381), (6030, 15, 18451), (6031, 15, 18463), (6032, 15, 18546), (6033, 15, 18693), (6034, 15, 18718), (6035, 15, 18724), (6036, 15, 18743), (6037, 15, 18784), (6038, 15, 18830), (6039, 15, 18896), (6040, 15, 18918), (6041, 15, 18949), (6042, 15, 18966), (6043, 15, 19014), (6044, 15, 19096), (6045, 15, 19161), (6046, 15, 19313), (6047, 15, 19335), (6048, 15, 19445), (6049, 15, 19472), (6050, 15, 19763), (6051, 15, 19822), (6052, 15, 19914), (6053, 15, 19921), (6054, 15, 20013), (6055, 15, 20020), (6056, 15, 20035), (6057, 15, 20042), (6058, 15, 20189), (6059, 15, 20257), (6060, 15, 20270), (6061, 15, 20301), (6062, 15, 20323), (6063, 15, 20327), (6064, 15, 20407), (6065, 15, 20464), (6066, 15, 20742), (6067, 15, 20771), (6068, 15, 20963), (6069, 15, 21001), (6070, 15, 21157), (6071, 15, 21335), (6072, 15, 21336), (6073, 15, 21520), (6074, 15, 21561), (6075, 15, 21664), (6076, 15, 21708), (6077, 15, 21974), (6078, 15, 21979), (6079, 15, 22017), (6080, 15, 22152), (6081, 15, 22272), (6082, 15, 22377), (6083, 15, 22470), (6084, 15, 22505), (6085, 15, 22530), (6086, 15, 22590), (6087, 15, 22706), (6088, 15, 22855), (6089, 15, 22915), (6090, 15, 23017), (6091, 15, 23052), (6092, 15, 23082), (6093, 15, 23141), (6094, 15, 23329), (6095, 15, 23502), (6096, 15, 23576), (6097, 15, 23717), (6098, 15, 23767), (6099, 15, 23806), (6100, 15, 24104), (6101, 15, 24137), (6102, 15, 24181), (6103, 15, 24215), (6104, 15, 24229), (6105, 15, 24236), (6106, 15, 24287), (6107, 15, 24426), (6108, 15, 24431), (6109, 15, 24510), (6110, 15, 24767), (6111, 15, 24772), (6112, 15, 24774), (6113, 15, 24826), (6114, 15, 24841), (6115, 15, 24952), (6116, 15, 25009), (6117, 15, 25028), (6130, 16, 48), (6131, 16, 63), (6132, 16, 162), (6133, 16, 304), (6134, 16, 417), (6135, 16, 559), (6136, 16, 988), (6137, 16, 1345), (6138, 16, 1384), (6139, 16, 1407), (6140, 16, 1737), (6141, 16, 1745), (6142, 16, 1757), (6143, 16, 1768), (6144, 16, 1851), (6145, 16, 1961), (6146, 16, 2042), (6147, 16, 2043), (6148, 16, 2167), (6149, 16, 2496), (6150, 16, 2554), (6151, 16, 2754), (6152, 16, 2806), (6153, 16, 2893), (6154, 16, 3024), (6155, 16, 3160), (6156, 16, 4055), (6157, 16, 4090), (6158, 16, 4215), (6159, 16, 4292), (6160, 16, 4438), (6161, 16, 4628), (6162, 16, 4698), (6163, 16, 4734), (6164, 16, 4735), (6165, 16, 4864), (6166, 16, 5242), (6167, 16, 5315), (6168, 16, 5530), (6169, 16, 5599), (6170, 16, 5680), (6171, 16, 5893), (6172, 16, 5954), (6173, 16, 6037), (6174, 16, 6166), (6175, 16, 6349), (6176, 16, 6394), (6177, 16, 6423), (6178, 16, 6512), (6179, 16, 6552), (6180, 16, 6669), (6181, 16, 6778), (6182, 16, 6864), (6183, 16, 6880), (6184, 16, 6996), (6185, 16, 7071), (6186, 16, 7235), (6187, 16, 7283), (6188, 16, 7298), (6189, 16, 7319), (6190, 16, 7380), (6191, 16, 7437), (6192, 16, 7554), (6193, 16, 7698), (6194, 16, 7700), (6195, 16, 7742), (6196, 16, 7785), (6197, 16, 7838), (6198, 16, 7877), (6199, 16, 8021), (6200, 16, 8058), (6201, 16, 8072), (6202, 16, 8121), (6203, 16, 8141), (6204, 16, 8248), (6205, 16, 8251), (6206, 16, 8350), (6207, 16, 8432), (6208, 16, 8648), (6209, 16, 8663), (6210, 16, 8800), (6211, 16, 8960), (6212, 16, 9041), (6213, 16, 9225), (6214, 16, 9480), (6215, 16, 9547), (6216, 16, 9702), (6217, 16, 9711), (6218, 16, 9770), (6219, 16, 9901), (6220, 16, 9906), (6221, 16, 9981), (6222, 16, 10061), (6223, 16, 10090), (6224, 16, 10127), (6225, 16, 10136), (6226, 16, 10158), (6227, 16, 10191), (6228, 16, 10215), (6229, 16, 10218), (6230, 16, 10278), (6231, 16, 10289), (6232, 16, 10360), (6233, 16, 10496), (6234, 16, 10575), (6235, 16, 10592), (6236, 16, 10599), (6237, 16, 10611), (6238, 16, 10626), (6239, 16, 10760), (6240, 16, 10794), (6241, 16, 10801), (6242, 16, 10824), (6243, 16, 10827), (6244, 16, 10836), (6245, 16, 10838), (6246, 16, 10851), (6247, 16, 10928), (6248, 16, 10956), (6249, 16, 11006), (6250, 16, 11007), (6251, 16, 11156), (6252, 16, 11292), (6253, 16, 11295), (6254, 16, 11341), (6255, 16, 11348), (6256, 16, 11357), (6257, 16, 11400), (6258, 16, 11408), (6259, 16, 11616), (6260, 16, 11649), (6261, 16, 11709), (6262, 16, 11756), (6263, 16, 11819), (6264, 16, 11867), (6265, 16, 11899), (6266, 16, 11905), (6267, 16, 11907), (6268, 16, 11936), (6269, 16, 12075), (6270, 16, 12146), (6271, 16, 12210), (6272, 16, 12221), (6273, 16, 12225), (6274, 16, 12240), (6275, 16, 12253), (6276, 16, 12473), (6277, 16, 12489), (6278, 16, 12538), (6279, 16, 12563), (6280, 16, 12611), (6281, 16, 12615), (6282, 16, 12648), (6283, 16, 12651), (6284, 16, 12789), (6285, 16, 12816), (6286, 16, 12857), (6287, 16, 12860), (6288, 16, 12888), (6289, 16, 12911), (6290, 16, 12934), (6291, 16, 12967), (6292, 16, 13024), (6293, 16, 13068), (6294, 16, 13071), (6295, 16, 13089), (6296, 16, 13100), (6297, 16, 13103), (6298, 16, 13126), (6299, 16, 13155), (6300, 16, 13178), (6301, 16, 13192), (6302, 16, 13244), (6303, 16, 13251), (6304, 16, 13313), (6305, 16, 13314), (6306, 16, 13342), (6307, 16, 13352), (6308, 16, 13404), (6309, 16, 13438), (6310, 16, 13524), (6311, 16, 13531), (6312, 16, 13543), (6313, 16, 13556), (6314, 16, 13657), (6315, 16, 13675), (6316, 16, 13737), (6317, 16, 13740), (6318, 16, 13762), (6319, 16, 13773), (6320, 16, 13814), (6321, 16, 13818), (6322, 16, 13821), (6323, 16, 13828), (6324, 16, 13841), (6325, 16, 13885), (6326, 16, 13915), (6327, 16, 13950), (6328, 16, 14009), (6329, 16, 14055), (6330, 16, 14083), (6331, 16, 14129), (6332, 16, 14157), (6333, 16, 14171), (6334, 16, 14200), (6335, 16, 14260), (6336, 16, 14286), (6337, 16, 14310), (6338, 16, 14315), (6339, 16, 14366), (6340, 16, 14404), (6341, 16, 14418), (6342, 16, 14435), (6343, 16, 14446), (6344, 16, 14479), (6345, 16, 14537), (6346, 16, 14549), (6347, 16, 14573), (6348, 16, 14575), (6349, 16, 14637), (6350, 16, 14657), (6351, 16, 14666), (6352, 16, 14693), (6353, 16, 14699), (6354, 16, 14703), (6355, 16, 14715), (6356, 16, 14726), (6357, 16, 14758), (6358, 16, 14778), (6359, 16, 14850), (6360, 16, 14885), (6361, 16, 14896), (6362, 16, 14917), (6363, 16, 14918), (6364, 16, 14974), (6365, 16, 14993), (6366, 16, 14996), (6367, 16, 15001), (6368, 16, 15002), (6369, 16, 15013), (6370, 16, 15043), (6371, 16, 15065), (6372, 16, 15066), (6373, 16, 15069), (6374, 16, 15082), (6375, 16, 15113), (6376, 16, 15148), (6377, 16, 15162), (6378, 16, 15210), (6379, 16, 15216), (6380, 16, 15235), (6381, 16, 15251), (6382, 16, 15261), (6383, 16, 15262), (6384, 16, 15263), (6385, 16, 15277), (6386, 16, 15280), (6387, 16, 15336), (6388, 16, 15385), (6389, 16, 15390), (6390, 16, 15411), (6391, 16, 15426), (6392, 16, 15431), (6393, 16, 15448), (6394, 16, 15459), (6395, 16, 15484), (6396, 16, 15526), (6397, 16, 15537), (6398, 16, 15544), (6399, 16, 15548), (6400, 16, 15560), (6401, 16, 15579), (6402, 16, 15592), (6403, 16, 15612), (6404, 16, 15639), (6405, 16, 15673), (6406, 16, 15681), (6407, 16, 15701), (6408, 16, 15714), (6409, 16, 15715), (6410, 16, 15743), (6411, 16, 15766), (6412, 16, 15784), (6413, 16, 15796), (6414, 16, 15828), (6415, 16, 15835), (6416, 16, 15846), (6417, 16, 15911), (6418, 16, 15918), (6419, 16, 15933), (6420, 16, 15987), (6421, 16, 15999), (6422, 16, 16012), (6423, 16, 16031), (6424, 16, 16035), (6425, 16, 16042), (6426, 16, 16121), (6427, 16, 16138), (6428, 16, 16160), (6429, 16, 16169), (6430, 16, 16177), (6431, 16, 16194), (6432, 16, 16202), (6433, 16, 16241), (6434, 16, 16277), (6435, 16, 16329), (6436, 16, 16351), (6437, 16, 16375), (6438, 16, 16398), (6439, 16, 16431), (6440, 16, 16452), (6441, 16, 16480), (6442, 16, 16483), (6443, 16, 16490), (6444, 16, 16509), (6445, 16, 16510), (6446, 16, 16512), (6447, 16, 16545), (6448, 16, 16557), (6449, 16, 16587), (6450, 16, 16620), (6451, 16, 16627), (6452, 16, 16631), (6453, 16, 16634), (6454, 16, 16688), (6455, 16, 16711), (6456, 16, 16717), (6457, 16, 16766), (6458, 16, 16778), (6459, 16, 16779), (6460, 16, 16787), (6461, 16, 16788), (6462, 16, 16798), (6463, 16, 16838), (6464, 16, 16842), (6465, 16, 16844), (6466, 16, 16845), (6467, 16, 16872), (6468, 16, 16935), (6469, 16, 16948), (6470, 16, 16978), (6471, 16, 17030), (6472, 16, 17038), (6473, 16, 17066), (6474, 16, 17088), (6475, 16, 17099), (6476, 16, 17114), (6477, 16, 17130), (6478, 16, 17197), (6479, 16, 17199), (6480, 16, 17205), (6481, 16, 17207), (6482, 16, 17211), (6483, 16, 17228), (6484, 16, 17239), (6485, 16, 17250), (6486, 16, 17262), (6487, 16, 17266), (6488, 16, 17272), (6489, 16, 17274), (6490, 16, 17345), (6491, 16, 17349), (6492, 16, 17365), (6493, 16, 17373), (6494, 16, 17384), (6495, 16, 17389), (6496, 16, 17404), (6497, 16, 17407), (6498, 16, 17432), (6499, 16, 17438), (6500, 16, 17458), (6501, 16, 17467), (6502, 16, 17485), (6503, 16, 17499), (6504, 16, 17504), (6505, 16, 17516), (6506, 16, 17572), (6507, 16, 17588), (6508, 16, 17591), (6509, 16, 17600), (6510, 16, 17607), (6511, 16, 17613), (6512, 16, 17622), (6513, 16, 17638), (6514, 16, 17639), (6515, 16, 17651), (6516, 16, 17659), (6517, 16, 17661), (6518, 16, 17668), (6519, 16, 17673), (6520, 16, 17681), (6521, 16, 17702), (6522, 16, 17748), (6523, 16, 17749), (6524, 16, 17762), (6525, 16, 17783), (6526, 16, 17804), (6527, 16, 17814), (6528, 16, 17815), (6529, 16, 17831), (6530, 16, 17860), (6531, 16, 17873), (6532, 16, 17878), (6533, 16, 17891), (6534, 16, 17905), (6535, 16, 17917), (6536, 16, 17950), (6537, 16, 17961), (6538, 16, 17966), (6539, 16, 17967), (6540, 16, 17982), (6541, 16, 17983), (6542, 16, 18005), (6543, 16, 18006), (6544, 16, 18015), (6545, 16, 18027), (6546, 16, 18041), (6547, 16, 18049), (6548, 16, 18053), (6549, 16, 18054), (6550, 16, 18073), (6551, 16, 18088), (6552, 16, 18093), (6553, 16, 18097), (6554, 16, 18100), (6555, 16, 18102), (6556, 16, 18124), (6557, 16, 18125), (6558, 16, 18128), (6559, 16, 18130), (6560, 16, 18147), (6561, 16, 18173), (6562, 16, 18205), (6563, 16, 18211), (6564, 16, 18224), (6565, 16, 18275), (6566, 16, 18281), (6567, 16, 18282), (6568, 16, 18284), (6569, 16, 18318), (6570, 16, 18335), (6571, 16, 18358), (6572, 16, 18359), (6573, 16, 18394), (6574, 16, 18395), (6575, 16, 18400), (6576, 16, 18405), (6577, 16, 18445), (6578, 16, 18449), (6579, 16, 18453), (6580, 16, 18455), (6581, 16, 18459), (6582, 16, 18461), (6583, 16, 18472), (6584, 16, 18473), (6585, 16, 18494), (6586, 16, 18501), (6587, 16, 18504), (6588, 16, 18522), (6589, 16, 18537), (6590, 16, 18546), (6591, 16, 18551), (6592, 16, 18568), (6593, 16, 18584), (6594, 16, 18603), (6595, 16, 18613), (6596, 16, 18618), (6597, 16, 18627), (6598, 16, 18635), (6599, 16, 18651), (6600, 16, 18660), (6601, 16, 18665), (6602, 16, 18666), (6603, 16, 18679), (6604, 16, 18681), (6605, 16, 18701), (6606, 16, 18710), (6607, 16, 18720), (6608, 16, 18721), (6609, 16, 18724), (6610, 16, 18729), (6611, 16, 18746), (6612, 16, 18748), (6613, 16, 18761), (6614, 16, 18781), (6615, 16, 18798), (6616, 16, 18827), (6617, 16, 18832), (6618, 16, 18845), (6619, 16, 18851), (6620, 16, 18864), (6621, 16, 18878), (6622, 16, 18883), (6623, 16, 18896), (6624, 16, 18935), (6625, 16, 18986), (6626, 16, 19003), (6627, 16, 19004), (6628, 16, 19011), (6629, 16, 19015), (6630, 16, 19019), (6631, 16, 19021), (6632, 16, 19026), (6633, 16, 19044), (6634, 16, 19090), (6635, 16, 19097), (6636, 16, 19099), (6637, 16, 19140), (6638, 16, 19141), (6639, 16, 19149), (6640, 16, 19168), (6641, 16, 19171), (6642, 16, 19178), (6643, 16, 19185), (6644, 16, 19187), (6645, 16, 19188), (6646, 16, 19201), (6647, 16, 19207), (6648, 16, 19209), (6649, 16, 19233), (6650, 16, 19268), (6651, 16, 19269), (6652, 16, 19279), (6653, 16, 19289), (6654, 16, 19296), (6655, 16, 19303), (6656, 16, 19304), (6657, 16, 19340), (6658, 16, 19345), (6659, 16, 19348), (6660, 16, 19357), (6661, 16, 19377), (6662, 16, 19378), (6663, 16, 19380), (6664, 16, 19382), (6665, 16, 19386), (6666, 16, 19390), (6667, 16, 19398), (6668, 16, 19402), (6669, 16, 19404), (6670, 16, 19411), (6671, 16, 19424), (6672, 16, 19428), (6673, 16, 19453), (6674, 16, 19455), (6675, 16, 19465), (6676, 16, 19475), (6677, 16, 19477), (6678, 16, 19479), (6679, 16, 19485), (6680, 16, 19486), (6681, 16, 19521), (6682, 16, 19550), (6683, 16, 19568), (6684, 16, 19580), (6685, 16, 19590), (6686, 16, 19594), (6687, 16, 19601), (6688, 16, 19609), (6689, 16, 19620), (6690, 16, 19639), (6691, 16, 19640), (6692, 16, 19642), (6693, 16, 19648), (6694, 16, 19662), (6695, 16, 19664), (6696, 16, 19676), (6697, 16, 19677), (6698, 16, 19686), (6699, 16, 19691), (6700, 16, 19703), (6701, 16, 19708), (6702, 16, 19725), (6703, 16, 19736), (6704, 16, 19740), (6705, 16, 19755), (6706, 16, 19762), (6707, 16, 19793), (6708, 16, 19844), (6709, 16, 19848), (6710, 16, 19863), (6711, 16, 19864), (6712, 16, 19911), (6713, 16, 19914), (6714, 16, 19923), (6715, 16, 19939), (6716, 16, 19944), (6717, 16, 19948), (6718, 16, 19957), (6719, 16, 19960), (6720, 16, 19961), (6721, 16, 19968), (6722, 16, 19987), (6723, 16, 19994), (6724, 16, 19998), (6725, 16, 20007), (6726, 16, 20010), (6727, 16, 20026), (6728, 16, 20053), (6729, 16, 20066), (6730, 16, 20077), (6731, 16, 20095), (6732, 16, 20099), (6733, 16, 20108), (6734, 16, 20118), (6735, 16, 20123), (6736, 16, 20129), (6737, 16, 20135), (6738, 16, 20140), (6739, 16, 20174), (6740, 16, 20185), (6741, 16, 20186), (6742, 16, 20202), (6743, 16, 20206), (6744, 16, 20207), (6745, 16, 20216), (6746, 16, 20231), (6747, 16, 20235), (6748, 16, 20244), (6749, 16, 20245), (6750, 16, 20264), (6751, 16, 20322), (6752, 16, 20326), (6753, 16, 20334), (6754, 16, 20383), (6755, 16, 20386), (6756, 16, 20407), (6757, 16, 20408), (6758, 16, 20421), (6759, 16, 20425), (6760, 16, 20443), (6761, 16, 20447), (6762, 16, 20449), (6763, 16, 20455), (6764, 16, 20463), (6765, 16, 20470), (6766, 16, 20475), (6767, 16, 20479), (6768, 16, 20481), (6769, 16, 20492), (6770, 16, 20511), (6771, 16, 20512), (6772, 16, 20516), (6773, 16, 20529), (6774, 16, 20540), (6775, 16, 20562), (6776, 16, 20575), (6777, 16, 20595), (6778, 16, 20619), (6779, 16, 20640), (6780, 16, 20641), (6781, 16, 20651), (6782, 16, 20660), (6783, 16, 20673), (6784, 16, 20687), (6785, 16, 20691), (6786, 16, 20697), (6787, 16, 20710), (6788, 16, 20723), (6789, 16, 20725), (6790, 16, 20734), (6791, 16, 20757), (6792, 16, 20760), (6793, 16, 20765), (6794, 16, 20766), (6795, 16, 20799), (6796, 16, 20800), (6797, 16, 20810), (6798, 16, 20846), (6799, 16, 20861), (6800, 16, 20878), (6801, 16, 20889), (6802, 16, 20901), (6803, 16, 20910), (6804, 16, 20911), (6805, 16, 20925), (6806, 16, 20932), (6807, 16, 20943), (6808, 16, 20946), (6809, 16, 20950), (6810, 16, 20951), (6811, 16, 20955), (6812, 16, 20970), (6813, 16, 20978), (6814, 16, 20979), (6815, 16, 20980), (6816, 16, 20981), (6817, 16, 20982), (6818, 16, 20992), (6819, 16, 20996), (6820, 16, 21000), (6821, 16, 21008), (6822, 16, 21011), (6823, 16, 21028), (6824, 16, 21038), (6825, 16, 21044), (6826, 16, 21048), (6827, 16, 21057), (6828, 16, 21058), (6829, 16, 21068), (6830, 16, 21087), (6831, 16, 21097), (6832, 16, 21098), (6833, 16, 21099), (6834, 16, 21103), (6835, 16, 21120), (6836, 16, 21123), (6837, 16, 21124), (6838, 16, 21125), (6839, 16, 21138), (6840, 16, 21142), (6841, 16, 21148), (6842, 16, 21154), (6843, 16, 21157), (6844, 16, 21158), (6845, 16, 21164), (6846, 16, 21167), (6847, 16, 21170), (6848, 16, 21172), (6849, 16, 21188), (6850, 16, 21193), (6851, 16, 21220), (6852, 16, 21243), (6853, 16, 21246), (6854, 16, 21251), (6855, 16, 21254), (6856, 16, 21261), (6857, 16, 21263), (6858, 16, 21269), (6859, 16, 21273), (6860, 16, 21278), (6861, 16, 21285), (6862, 16, 21288), (6863, 16, 21311), (6864, 16, 21312), (6865, 16, 21316), (6866, 16, 21323), (6867, 16, 21324), (6868, 16, 21325), (6869, 16, 21333), (6870, 16, 21345), (6871, 16, 21354), (6872, 16, 21373), (6873, 16, 21433), (6874, 16, 21442), (6875, 16, 21448), (6876, 16, 21453), (6877, 16, 21467), (6878, 16, 21472), (6879, 16, 21473), (6880, 16, 21475), (6881, 16, 21479), (6882, 16, 21494), (6883, 16, 21502), (6884, 16, 21508), (6885, 16, 21515), (6886, 16, 21518), (6887, 16, 21524), (6888, 16, 21530), (6889, 16, 21538), (6890, 16, 21539), (6891, 16, 21541), (6892, 16, 21552), (6893, 16, 21562), (6894, 16, 21564), (6895, 16, 21570), (6896, 16, 21574), (6897, 16, 21575), (6898, 16, 21576), (6899, 16, 21588), (6900, 16, 21590), (6901, 16, 21597), (6902, 16, 21614), (6903, 16, 21615), (6904, 16, 21619), (6905, 16, 21636), (6906, 16, 21638), (6907, 16, 21639), (6908, 16, 21645), (6909, 16, 21646), (6910, 16, 21647), (6911, 16, 21651), (6912, 16, 21660), (6913, 16, 21675), (6914, 16, 21693), (6915, 16, 21694), (6916, 16, 21704), (6917, 16, 21706), (6918, 16, 21708), (6919, 16, 21709), (6920, 16, 21718), (6921, 16, 21731), (6922, 16, 21735), (6923, 16, 21736), (6924, 16, 21742), (6925, 16, 21759), (6926, 16, 21771), (6927, 16, 21780), (6928, 16, 21803), (6929, 16, 21805), (6930, 16, 21811), (6931, 16, 21829), (6932, 16, 21836), (6933, 16, 21838), (6934, 16, 21843), (6935, 16, 21884), (6936, 16, 21897), (6937, 16, 21911), (6938, 16, 21932), (6939, 16, 21935), (6940, 16, 21937), (6941, 16, 21953), (6942, 16, 21963), (6943, 16, 21968), (6944, 16, 21974), (6945, 16, 21977), (6946, 16, 21979), (6947, 16, 21987), (6948, 16, 21988), (6949, 16, 22007), (6950, 16, 22009), (6951, 16, 22020), (6952, 16, 22029), (6953, 16, 22036), (6954, 16, 22050), (6955, 16, 22051), (6956, 16, 22074), (6957, 16, 22076), (6958, 16, 22077), (6959, 16, 22082), (6960, 16, 22087), (6961, 16, 22089), (6962, 16, 22102), (6963, 16, 22105), (6964, 16, 22113), (6965, 16, 22129), (6966, 16, 22143), (6967, 16, 22149), (6968, 16, 22156), (6969, 16, 22177), (6970, 16, 22178), (6971, 16, 22192), (6972, 16, 22197), (6973, 16, 22206), (6974, 16, 22236), (6975, 16, 22238), (6976, 16, 22245), (6977, 16, 22247), (6978, 16, 22248), (6979, 16, 22255), (6980, 16, 22267), (6981, 16, 22270), (6982, 16, 22278), (6983, 16, 22288), (6984, 16, 22289), (6985, 16, 22308), (6986, 16, 22316), (6987, 16, 22325), (6988, 16, 22327), (6989, 16, 22328), (6990, 16, 22339), (6991, 16, 22341), (6992, 16, 22342), (6993, 16, 22344), (6994, 16, 22352), (6995, 16, 22358), (6996, 16, 22359), (6997, 16, 22368), (6998, 16, 22377), (6999, 16, 22387), (7000, 16, 22409), (7001, 16, 22424), (7002, 16, 22425), (7003, 16, 22427), (7004, 16, 22437), (7005, 16, 22439), (7006, 16, 22440), (7007, 16, 22444), (7008, 16, 22450), (7009, 16, 22451), (7010, 16, 22453), (7011, 16, 22470), (7012, 16, 22476), (7013, 16, 22477), (7014, 16, 22485), (7015, 16, 22490), (7016, 16, 22492), (7017, 16, 22494), (7018, 16, 22498), (7019, 16, 22500), (7020, 16, 22506), (7021, 16, 22507), (7022, 16, 22517), (7023, 16, 22520), (7024, 16, 22531), (7025, 16, 22533), (7026, 16, 22536), (7027, 16, 22538), (7028, 16, 22544), (7029, 16, 22553), (7030, 16, 22554), (7031, 16, 22559), (7032, 16, 22561), (7033, 16, 22565), (7034, 16, 22568), (7035, 16, 22580), (7036, 16, 22584), (7037, 16, 22592), (7038, 16, 22596), (7039, 16, 22598), (7040, 16, 22606), (7041, 16, 22607), (7042, 16, 22609), (7043, 16, 22610), (7044, 16, 22622), (7045, 16, 22626), (7046, 16, 22628), (7047, 16, 22631), (7048, 16, 22632), (7049, 16, 22635), (7050, 16, 22644), (7051, 16, 22650), (7052, 16, 22652), (7053, 16, 22653), (7054, 16, 22654), (7055, 16, 22655), (7056, 16, 22656), (7057, 16, 22677), (7058, 16, 22679), (7059, 16, 22681), (7060, 16, 22699), (7061, 16, 22701), (7062, 16, 22708), (7063, 16, 22712), (7064, 16, 22719), (7065, 16, 22721), (7066, 16, 22724), (7067, 16, 22725), (7068, 16, 22735), (7069, 16, 22745), (7070, 16, 22774), (7071, 16, 22775), (7072, 16, 22778), (7073, 16, 22799), (7074, 16, 22804), (7075, 16, 22807), (7076, 16, 22808), (7077, 16, 22821), (7078, 16, 22831), (7079, 16, 22835), (7080, 16, 22855), (7081, 16, 22856), (7082, 16, 22857), (7083, 16, 22858), (7084, 16, 22883), (7085, 16, 22914), (7086, 16, 22923), (7087, 16, 22924), (7088, 16, 22929), (7089, 16, 22930), (7090, 16, 22937), (7091, 16, 22941), (7092, 16, 22947), (7093, 16, 22962), (7094, 16, 22973), (7095, 16, 22979), (7096, 16, 22987), (7097, 16, 22989), (7098, 16, 22991), (7099, 16, 22997), (7100, 16, 23049), (7101, 16, 23051), (7102, 16, 23059), (7103, 16, 23075), (7104, 16, 23087), (7105, 16, 23098), (7106, 16, 23101), (7107, 16, 23105), (7108, 16, 23110), (7109, 16, 23112), (7110, 16, 23114), (7111, 16, 23119), (7112, 16, 23136), (7113, 16, 23137), (7114, 16, 23138), (7115, 16, 23141), (7116, 16, 23145), (7117, 16, 23147), (7118, 16, 23189), (7119, 16, 23207), (7120, 16, 23215), (7121, 16, 23223), (7122, 16, 23239), (7123, 16, 23256), (7124, 16, 23257), (7125, 16, 23270), (7126, 16, 23282), (7127, 16, 23296), (7128, 16, 23312), (7129, 16, 23313), (7130, 16, 23315), (7131, 16, 23319), (7132, 16, 23322), (7133, 16, 23323), (7134, 16, 23327), (7135, 16, 23342), (7136, 16, 23343), (7137, 16, 23348), (7138, 16, 23350), (7139, 16, 23355), (7140, 16, 23360), (7141, 16, 23362), (7142, 16, 23368), (7143, 16, 23370), (7144, 16, 23373), (7145, 16, 23376), (7146, 16, 23380), (7147, 16, 23385), (7148, 16, 23393), (7149, 16, 23394), (7150, 16, 23420), (7151, 16, 23440), (7152, 16, 23444), (7153, 16, 23458), (7154, 16, 23459), (7155, 16, 23460), (7156, 16, 23469), (7157, 16, 23479), (7158, 16, 23486), (7159, 16, 23504), (7160, 16, 23506), (7161, 16, 23536), (7162, 16, 23550), (7163, 16, 23552), (7164, 16, 23562), (7165, 16, 23563), (7166, 16, 23564), (7167, 16, 23566), (7168, 16, 23575), (7169, 16, 23576), (7170, 16, 23577), (7171, 16, 23578), (7172, 16, 23581), (7173, 16, 23583), (7174, 16, 23588), (7175, 16, 23590), (7176, 16, 23591), (7177, 16, 23593), (7178, 16, 23598), (7179, 16, 23601), (7180, 16, 23602), (7181, 16, 23606), (7182, 16, 23610), (7183, 16, 23613), (7184, 16, 23616), (7185, 16, 23620), (7186, 16, 23630), (7187, 16, 23641), (7188, 16, 23642), (7189, 16, 23643), (7190, 16, 23644), (7191, 16, 23645), (7192, 16, 23646), (7193, 16, 23655), (7194, 16, 23674), (7195, 16, 23678), (7196, 16, 23679), (7197, 16, 23680), (7198, 16, 23681), (7199, 16, 23684), (7200, 16, 23686), (7201, 16, 23689), (7202, 16, 23703), (7203, 16, 23704), (7204, 16, 23710), (7205, 16, 23712), (7206, 16, 23713), (7207, 16, 23721), (7208, 16, 23723), (7209, 16, 23724), (7210, 16, 23736), (7211, 16, 23755), (7212, 16, 23763), (7213, 16, 23784), (7214, 16, 23790), (7215, 16, 23791), (7216, 16, 23793), (7217, 16, 23798), (7218, 16, 23800), (7219, 16, 23801), (7220, 16, 23814), (7221, 16, 23817), (7222, 16, 23824), (7223, 16, 23827), (7224, 16, 23828), (7225, 16, 23829), (7226, 16, 23830), (7227, 16, 23833), (7228, 16, 23836), (7229, 16, 23839), (7230, 16, 23845), (7231, 16, 23846), (7232, 16, 23847), (7233, 16, 23849), (7234, 16, 23850), (7235, 16, 23852), (7236, 16, 23855), (7237, 16, 23857), (7238, 16, 23858), (7239, 16, 23859), (7240, 16, 23860), (7241, 16, 23865), (7242, 16, 23871), (7243, 16, 23872), (7244, 16, 23877), (7245, 16, 23878), (7246, 16, 23884), (7247, 16, 23885), (7248, 16, 23886), (7249, 16, 23891), (7250, 16, 23896), (7251, 16, 23899), (7252, 16, 23902), (7253, 16, 23905), (7254, 16, 23906), (7255, 16, 23907), (7256, 16, 23909), (7257, 16, 23912), (7258, 16, 23916), (7259, 16, 23923), (7260, 16, 23924), (7261, 16, 23934), (7262, 16, 23935), (7263, 16, 23939), (7264, 16, 23945), (7265, 16, 23957), (7266, 16, 23960), (7267, 16, 23961), (7268, 16, 23964), (7269, 16, 23967), (7270, 16, 23978), (7271, 16, 23981), (7272, 16, 23988), (7273, 16, 23991), (7274, 16, 23995), (7275, 16, 24000), (7276, 16, 24003), (7277, 16, 24013), (7278, 16, 24017), (7279, 16, 24020), (7280, 16, 24022), (7281, 16, 24028), (7282, 16, 24029), (7283, 16, 24031), (7284, 16, 24032), (7285, 16, 24035), (7286, 16, 24038), (7287, 16, 24044), (7288, 16, 24045), (7289, 16, 24046), (7290, 16, 24049), (7291, 16, 24051), (7292, 16, 24052), (7293, 16, 24053), (7294, 16, 24054), (7295, 16, 24055), (7296, 16, 24056), (7297, 16, 24058), (7298, 16, 24063), (7299, 16, 24066), (7300, 16, 24068), (7301, 16, 24071), (7302, 16, 24074), (7303, 16, 24099), (7304, 16, 24100), (7305, 16, 24102), (7306, 16, 24109), (7307, 16, 24111), (7308, 16, 24124), (7309, 16, 24125), (7310, 16, 24130), (7311, 16, 24139), (7312, 16, 24140), (7313, 16, 24143), (7314, 16, 24146), (7315, 16, 24148), (7316, 16, 24149), (7317, 16, 24150), (7318, 16, 24153), (7319, 16, 24161), (7320, 16, 24165), (7321, 16, 24170), (7322, 16, 24171), (7323, 16, 24178), (7324, 16, 24181), (7325, 16, 24186), (7326, 16, 24188), (7327, 16, 24193), (7328, 16, 24195), (7329, 16, 24198), (7330, 16, 24204), (7331, 16, 24205), (7332, 16, 24208), (7333, 16, 24209), (7334, 16, 24216), (7335, 16, 24222), (7336, 16, 24225), (7337, 16, 24227), (7338, 16, 24229), (7339, 16, 24231), (7340, 16, 24235), (7341, 16, 24237), (7342, 16, 24242), (7343, 16, 24248), (7344, 16, 24252), (7345, 16, 24255), (7346, 16, 24260), (7347, 16, 24262), (7348, 16, 24266), (7349, 16, 24268), (7350, 16, 24284), (7351, 16, 24285), (7352, 16, 24286), (7353, 16, 24287), (7354, 16, 24288), (7355, 16, 24296), (7356, 16, 24297), (7357, 16, 24304), (7358, 16, 24317), (7359, 16, 24321), (7360, 16, 24335), (7361, 16, 24339), (7362, 16, 24340), (7363, 16, 24341), (7364, 16, 24342), (7365, 16, 24344), (7366, 16, 24349), (7367, 16, 24350), (7368, 16, 24354), (7369, 16, 24358), (7370, 16, 24366), (7371, 16, 24372), (7372, 16, 24374), (7373, 16, 24375), (7374, 16, 24383), (7375, 16, 24389), (7376, 16, 24390), (7377, 16, 24394), (7378, 16, 24400), (7379, 16, 24406), (7380, 16, 24407), (7381, 16, 24408), (7382, 16, 24416), (7383, 16, 24425), (7384, 16, 24426), (7385, 16, 24430), (7386, 16, 24435), (7387, 16, 24440), (7388, 16, 24441), (7389, 16, 24442), (7390, 16, 24453), (7391, 16, 24455), (7392, 16, 24458), (7393, 16, 24462), (7394, 16, 24463), (7395, 16, 24466), (7396, 16, 24475), (7397, 16, 24480), (7398, 16, 24482), (7399, 16, 24486), (7400, 16, 24504), (7401, 16, 24505), (7402, 16, 24507), (7403, 16, 24509), (7404, 16, 24511), (7405, 16, 24519), (7406, 16, 24522), (7407, 16, 24537), (7408, 16, 24541), (7409, 16, 24542), (7410, 16, 24543), (7411, 16, 24545), (7412, 16, 24547), (7413, 16, 24548), (7414, 16, 24554), (7415, 16, 24555), (7416, 16, 24557), (7417, 16, 24563), (7418, 16, 24565), (7419, 16, 24573), (7420, 16, 24580), (7421, 16, 24582), (7422, 16, 24584), (7423, 16, 24596), (7424, 16, 24602), (7425, 16, 24605), (7426, 16, 24613), (7427, 16, 24619), (7428, 16, 24624), (7429, 16, 24629), (7430, 16, 24652), (7431, 16, 24659), (7432, 16, 24662), (7433, 16, 24666), (7434, 16, 24671), (7435, 16, 24673), (7436, 16, 24679), (7437, 16, 24685), (7438, 16, 24686), (7439, 16, 24692), (7440, 16, 24698), (7441, 16, 24699), (7442, 16, 24710), (7443, 16, 24712), (7444, 16, 24713), (7445, 16, 24715), (7446, 16, 24724), (7447, 16, 24727), (7448, 16, 24730), (7449, 16, 24737), (7450, 16, 24742), (7451, 16, 24755), (7452, 16, 24757), (7453, 16, 24765), (7454, 16, 24768), (7455, 16, 24769), (7456, 16, 24771), (7457, 16, 24779), (7458, 16, 24780), (7459, 16, 24784), (7460, 16, 24790), (7461, 16, 24791), (7462, 16, 24792), (7463, 16, 24812), (7464, 16, 24817), (7465, 16, 24835), (7466, 16, 24842), (7467, 16, 24848), (7468, 16, 24850), (7469, 16, 24871), (7470, 16, 24882), (7471, 16, 24883), (7472, 16, 24884), (7473, 16, 24886), (7474, 16, 24905), (7475, 16, 24912), (7476, 16, 24918), (7477, 16, 24919), (7478, 16, 24925), (7479, 16, 24927), (7480, 16, 24940), (7481, 16, 24945), (7482, 16, 24952), (7483, 16, 24955), (7484, 16, 24957), (7485, 16, 24975), (7486, 16, 24976), (7487, 16, 24978), (7488, 16, 25056), (7489, 16, 25057), (7490, 16, 25059), (7491, 16, 25121), (7492, 16, 25154), (7493, 16, 25218), (7494, 16, 25220), (8177, 17, 48), (8178, 17, 63), (8179, 17, 162), (8180, 17, 304), (8181, 17, 417), (8182, 17, 559), (8183, 17, 1384), (8184, 17, 1407), (8185, 17, 1737), (8186, 17, 1757), (8187, 17, 1768), (8188, 17, 1961), (8189, 17, 2043), (8190, 17, 2554), (8191, 17, 2893), (8192, 17, 3160), (8193, 17, 4055), (8194, 17, 4292), (8195, 17, 4628), (8196, 17, 4698), (8197, 17, 5893), (8198, 17, 6349), (8199, 17, 6552), (8200, 17, 6669), (8201, 17, 7235), (8202, 17, 7298), (8203, 17, 7319), (8204, 17, 7437), (8205, 17, 7554), (8206, 17, 8021), (8207, 17, 8072), (8208, 17, 8648), (8209, 17, 9225), (8210, 17, 9906), (8211, 17, 10218), (8212, 17, 10592), (8213, 17, 10599), (8214, 17, 10928), (8215, 17, 11348), (8216, 17, 11649), (8217, 17, 12225), (8218, 17, 12240), (8219, 17, 12651), (8220, 17, 12816), (8221, 17, 13024), (8222, 17, 13126), (8223, 17, 13313), (8224, 17, 13352), (8225, 17, 13828), (8226, 17, 13841), (8227, 17, 13950), (8228, 17, 14009), (8229, 17, 14310), (8230, 17, 14435), (8231, 17, 14549), (8232, 17, 14693), (8233, 17, 14703), (8234, 17, 14917), (8235, 17, 14918), (8236, 17, 14993), (8237, 17, 14996), (8238, 17, 15043), (8239, 17, 15066), (8240, 17, 15216), (8241, 17, 15262), (8242, 17, 15911), (8243, 17, 16012), (8244, 17, 16042), (8245, 17, 16138), (8246, 17, 16490), (8247, 17, 16512), (8248, 17, 16634), (8249, 17, 16766), (8250, 17, 16787), (8251, 17, 16842), (8252, 17, 17239), (8253, 17, 17349), (8254, 17, 17404), (8255, 17, 17516), (8256, 17, 17639), (8257, 17, 17651), (8258, 17, 17831), (8259, 17, 17950), (8260, 17, 18015), (8261, 17, 18088), (8262, 17, 18100), (8263, 17, 18102), (8264, 17, 18124), (8265, 17, 18211), (8266, 17, 18281), (8267, 17, 18459), (8268, 17, 18551), (8269, 17, 18584), (8270, 17, 18603), (8271, 17, 18666), (8272, 17, 18878), (8273, 17, 19357), (8274, 17, 19411), (8275, 17, 19428), (8276, 17, 19465), (8277, 17, 19485), (8278, 17, 20026), (8279, 17, 20066), (8280, 17, 20244), (8281, 17, 20408), (8282, 17, 20575), (8283, 17, 20619), (8284, 17, 20710), (8285, 17, 20723), (8286, 17, 20799), (8287, 17, 20846), (8288, 17, 20982), (8289, 17, 21008), (8290, 17, 21044), (8291, 17, 21068), (8292, 17, 21097), (8293, 17, 21164), (8294, 17, 21172), (8295, 17, 21324), (8296, 17, 21433), (8297, 17, 21562), (8298, 17, 21588), (8299, 17, 21694), (8300, 17, 22074), (8301, 17, 22149), (8302, 17, 22451), (8303, 17, 22492), (8304, 17, 22721), (8305, 17, 22856), (8306, 17, 22929), (8307, 17, 23112), (8308, 17, 23114), (8309, 17, 23257), (8310, 17, 23319), (8311, 17, 23575), (8312, 17, 23703), (8313, 17, 23790), (8314, 17, 23964), (8315, 17, 24032), (8316, 17, 24052), (8317, 17, 24054), (8318, 17, 24188), (8319, 17, 24286), (8320, 17, 24297), (8321, 17, 24341), (8322, 17, 24440), (8323, 17, 24475), (8324, 17, 24842), (8325, 17, 24850), (8326, 17, 24918), (8327, 17, 25056), (8328, 17, 25154), (8329, 17, 25218), (8432, 18, 383), (8433, 18, 424), (8434, 18, 491), (8435, 18, 631), (8436, 18, 670), (8437, 18, 932), (8438, 18, 943), (8439, 18, 1041), (8440, 18, 1096), (8441, 18, 1127), (8442, 18, 1203), (8443, 18, 1310), (8444, 18, 1328), (8445, 18, 1363), (8446, 18, 1404), (8447, 18, 1663), (8448, 18, 1682), (8449, 18, 1699), (8450, 18, 1824), (8451, 18, 1844), (8452, 18, 1947), (8453, 18, 1949), (8454, 18, 2010), (8455, 18, 2119), (8456, 18, 2297), (8457, 18, 2298), (8458, 18, 2312), (8459, 18, 2403), (8460, 18, 2414), (8461, 18, 2428), (8462, 18, 2724), (8463, 18, 2815), (8464, 18, 2869), (8465, 18, 2929), (8466, 18, 2947), (8467, 18, 2993), (8468, 18, 3145), (8469, 18, 3156), (8470, 18, 3215), (8471, 18, 3228), (8472, 18, 3258), (8473, 18, 3261), (8474, 18, 3420), (8475, 18, 3459), (8476, 18, 3564), (8477, 18, 3590), (8478, 18, 3637), (8479, 18, 3648), (8480, 18, 3654), (8481, 18, 3666), (8482, 18, 3706), (8483, 18, 3713), (8484, 18, 3734), (8485, 18, 3892), (8486, 18, 3912), (8487, 18, 3923), (8488, 18, 4007), (8489, 18, 4053), (8490, 18, 4201), (8491, 18, 4291), (8492, 18, 4292), (8493, 18, 4359), (8494, 18, 4364), (8495, 18, 4441), (8496, 18, 4544), (8497, 18, 4565), (8498, 18, 4586), (8499, 18, 4631), (8500, 18, 4648), (8501, 18, 4680), (8502, 18, 4771), (8503, 18, 4986), (8504, 18, 5005), (8505, 18, 5021), (8506, 18, 5148), (8507, 18, 5210), (8508, 18, 5224), (8509, 18, 5376), (8510, 18, 5454), (8511, 18, 5501), (8512, 18, 5606), (8513, 18, 5638), (8514, 18, 5833), (8515, 18, 5842), (8516, 18, 6057), (8517, 18, 6069), (8518, 18, 6112), (8519, 18, 6148), (8520, 18, 6191), (8521, 18, 6206), (8522, 18, 6222), (8523, 18, 6276), (8524, 18, 6292), (8525, 18, 6377), (8526, 18, 6514), (8527, 18, 6562), (8528, 18, 6573), (8529, 18, 6597), (8530, 18, 6739), (8531, 18, 6819), (8532, 18, 6828), (8533, 18, 6946), (8534, 18, 7387), (8535, 18, 7526), (8536, 18, 7559), (8537, 18, 7658), (8538, 18, 7713), (8539, 18, 7814), (8540, 18, 8073), (8541, 18, 8214), (8542, 18, 8216), (8543, 18, 8249), (8544, 18, 8318), (8545, 18, 8336), (8546, 18, 8392), (8547, 18, 8395), (8548, 18, 8419), (8549, 18, 8645), (8550, 18, 8648), (8551, 18, 8713), (8552, 18, 8726), (8553, 18, 8761), (8554, 18, 8878), (8555, 18, 8902), (8556, 18, 8966), (8557, 18, 9114), (8558, 18, 9133), (8559, 18, 9166), (8560, 18, 9280), (8561, 18, 9319), (8562, 18, 9409), (8563, 18, 9439), (8564, 18, 9501), (8565, 18, 9505), (8566, 18, 9692), (8567, 18, 9752), (8568, 18, 9785), (8569, 18, 9849), (8570, 18, 9917), (8571, 18, 9930), (8572, 18, 10022), (8573, 18, 10152), (8574, 18, 10215), (8575, 18, 10221), (8576, 18, 10242), (8577, 18, 10255), (8578, 18, 10327), (8579, 18, 10490), (8580, 18, 10509), (8581, 18, 10530), (8582, 18, 10649), (8583, 18, 10735), (8584, 18, 10741), (8585, 18, 10795), (8586, 18, 10817), (8587, 18, 10826), (8588, 18, 10863), (8589, 18, 10889), (8590, 18, 10903), (8591, 18, 10908), (8592, 18, 11034), (8593, 18, 11049), (8594, 18, 11101), (8595, 18, 11139), (8596, 18, 11238), (8597, 18, 11266), (8598, 18, 11327), (8599, 18, 11386), (8600, 18, 11399), (8601, 18, 11437), (8602, 18, 11463), (8603, 18, 11509), (8604, 18, 11570), (8605, 18, 11631), (8606, 18, 11665), (8607, 18, 11816), (8608, 18, 11929), (8609, 18, 12021), (8610, 18, 12085), (8611, 18, 12174), (8612, 18, 12184), (8613, 18, 12235), (8614, 18, 12236), (8615, 18, 12271), (8616, 18, 12377), (8617, 18, 12437), (8618, 18, 12502), (8619, 18, 12516), (8620, 18, 12603), (8621, 18, 12670), (8622, 18, 12734), (8623, 18, 12735), (8624, 18, 12790), (8625, 18, 12817), (8626, 18, 12842), (8627, 18, 12856), (8628, 18, 12868), (8629, 18, 13167), (8630, 18, 13177), (8631, 18, 13198), (8632, 18, 13205), (8633, 18, 13322), (8634, 18, 13327), (8635, 18, 13456), (8636, 18, 13470), (8637, 18, 13472), (8638, 18, 13478), (8639, 18, 13492), (8640, 18, 13513), (8641, 18, 13555), (8642, 18, 13572), (8643, 18, 13597), (8644, 18, 13646), (8645, 18, 13663), (8646, 18, 13800), (8647, 18, 13833), (8648, 18, 13890), (8649, 18, 13910), (8650, 18, 13932), (8651, 18, 13935), (8652, 18, 13973), (8653, 18, 13999), (8654, 18, 14057), (8655, 18, 14077), (8656, 18, 14093), (8657, 18, 14176), (8658, 18, 14179), (8659, 18, 14186), (8660, 18, 14223), (8661, 18, 14304), (8662, 18, 14305), (8663, 18, 14344), (8664, 18, 14441), (8665, 18, 14481), (8666, 18, 14490), (8667, 18, 14495), (8668, 18, 14513), (8669, 18, 14622), (8670, 18, 14686), (8671, 18, 14718), (8672, 18, 14722), (8673, 18, 14815), (8674, 18, 14880), (8675, 18, 15030), (8676, 18, 15048), (8677, 18, 15087), (8678, 18, 15111), (8679, 18, 15153), (8680, 18, 15172), (8681, 18, 15190), (8682, 18, 15205), (8683, 18, 15219), (8684, 18, 15229), (8685, 18, 15306), (8686, 18, 15311), (8687, 18, 15387), (8688, 18, 15418), (8689, 18, 15449), (8690, 18, 15482), (8691, 18, 15525), (8692, 18, 15583), (8693, 18, 15618), (8694, 18, 15624), (8695, 18, 15655), (8696, 18, 15729), (8697, 18, 15748), (8698, 18, 15769), (8699, 18, 15772), (8700, 18, 15798), (8701, 18, 15880), (8702, 18, 15890), (8703, 18, 15900), (8704, 18, 15921), (8705, 18, 15952), (8706, 18, 15974), (8707, 18, 16020), (8708, 18, 16052), (8709, 18, 16071), (8710, 18, 16160), (8711, 18, 16205), (8712, 18, 16236), (8713, 18, 16261), (8714, 18, 16271), (8715, 18, 16339), (8716, 18, 16352), (8717, 18, 16373), (8718, 18, 16413), (8719, 18, 16415), (8720, 18, 16416), (8721, 18, 16424), (8722, 18, 16448), (8723, 18, 16449), (8724, 18, 16488), (8725, 18, 16507), (8726, 18, 16509), (8727, 18, 16553), (8728, 18, 16568), (8729, 18, 16573), (8730, 18, 16575), (8731, 18, 16675), (8732, 18, 16692), (8733, 18, 16699), (8734, 18, 16720), (8735, 18, 16784), (8736, 18, 16848), (8737, 18, 16907), (8738, 18, 16953), (8739, 18, 16957), (8740, 18, 16998), (8741, 18, 17067), (8742, 18, 17080), (8743, 18, 17172), (8744, 18, 17221), (8745, 18, 17274), (8746, 18, 17284), (8747, 18, 17327), (8748, 18, 17347), (8749, 18, 17358), (8750, 18, 17368), (8751, 18, 17389), (8752, 18, 17390), (8753, 18, 17466), (8754, 18, 17496), (8755, 18, 17501), (8756, 18, 17504), (8757, 18, 17508), (8758, 18, 17514), (8759, 18, 17525), (8760, 18, 17579), (8761, 18, 17583), (8762, 18, 17618), (8763, 18, 17649), (8764, 18, 17650), (8765, 18, 17654), (8766, 18, 17712), (8767, 18, 17770), (8768, 18, 17841), (8769, 18, 17876), (8770, 18, 17913), (8771, 18, 17952), (8772, 18, 17953), (8773, 18, 18001), (8774, 18, 18010), (8775, 18, 18015), (8776, 18, 18063), (8777, 18, 18073), (8778, 18, 18087), (8779, 18, 18094), (8780, 18, 18099), (8781, 18, 18100), (8782, 18, 18102), (8783, 18, 18113), (8784, 18, 18126), (8785, 18, 18211), (8786, 18, 18294), (8787, 18, 18330), (8788, 18, 18351), (8789, 18, 18374), (8790, 18, 18399), (8791, 18, 18402), (8792, 18, 18414), (8793, 18, 18454), (8794, 18, 18459), (8795, 18, 18469), (8796, 18, 18480), (8797, 18, 18505), (8798, 18, 18506), (8799, 18, 18514), (8800, 18, 18533), (8801, 18, 18537), (8802, 18, 18538), (8803, 18, 18586), (8804, 18, 18587), (8805, 18, 18606), (8806, 18, 18632), (8807, 18, 18635), (8808, 18, 18641), (8809, 18, 18665), (8810, 18, 18684), (8811, 18, 18685), (8812, 18, 18704), (8813, 18, 18721), (8814, 18, 18802), (8815, 18, 18805), (8816, 18, 18822), (8817, 18, 18865), (8818, 18, 19049), (8819, 18, 19065), (8820, 18, 19088), (8821, 18, 19090), (8822, 18, 19091), (8823, 18, 19145), (8824, 18, 19171), (8825, 18, 19179), (8826, 18, 19205), (8827, 18, 19340), (8828, 18, 19341), (8829, 18, 19399), (8830, 18, 19402), (8831, 18, 19409), (8832, 18, 19494), (8833, 18, 19553), (8834, 18, 19558), (8835, 18, 19589), (8836, 18, 19604), (8837, 18, 19611); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (8838, 18, 19618), (8839, 18, 19653), (8840, 18, 19674), (8841, 18, 19717), (8842, 18, 19718), (8843, 18, 19735), (8844, 18, 19764), (8845, 18, 19781), (8846, 18, 19827), (8847, 18, 19837), (8848, 18, 19846), (8849, 18, 19864), (8850, 18, 19881), (8851, 18, 19890), (8852, 18, 19950), (8853, 18, 19953), (8854, 18, 19957), (8855, 18, 20004), (8856, 18, 20005), (8857, 18, 20054), (8858, 18, 20063), (8859, 18, 20088), (8860, 18, 20124), (8861, 18, 20191), (8862, 18, 20238), (8863, 18, 20278), (8864, 18, 20308), (8865, 18, 20313), (8866, 18, 20314), (8867, 18, 20346), (8868, 18, 20349), (8869, 18, 20355), (8870, 18, 20357), (8871, 18, 20358), (8872, 18, 20360), (8873, 18, 20387), (8874, 18, 20390), (8875, 18, 20440), (8876, 18, 20443), (8877, 18, 20445), (8878, 18, 20450), (8879, 18, 20495), (8880, 18, 20521), (8881, 18, 20526), (8882, 18, 20540), (8883, 18, 20567), (8884, 18, 20585), (8885, 18, 20590), (8886, 18, 20602), (8887, 18, 20645), (8888, 18, 20648), (8889, 18, 20673), (8890, 18, 20677), (8891, 18, 20678), (8892, 18, 20690), (8893, 18, 20693), (8894, 18, 20696), (8895, 18, 20724), (8896, 18, 20725), (8897, 18, 20749), (8898, 18, 20770), (8899, 18, 20788), (8900, 18, 20803), (8901, 18, 20810), (8902, 18, 20851), (8903, 18, 20852), (8904, 18, 20867), (8905, 18, 20874), (8906, 18, 20899), (8907, 18, 20921), (8908, 18, 20925), (8909, 18, 20970), (8910, 18, 20976), (8911, 18, 20977), (8912, 18, 20996), (8913, 18, 21007), (8914, 18, 21011), (8915, 18, 21043), (8916, 18, 21064), (8917, 18, 21081), (8918, 18, 21083), (8919, 18, 21085), (8920, 18, 21103), (8921, 18, 21124), (8922, 18, 21138), (8923, 18, 21149), (8924, 18, 21150), (8925, 18, 21161), (8926, 18, 21182), (8927, 18, 21183), (8928, 18, 21233), (8929, 18, 21252), (8930, 18, 21274), (8931, 18, 21279), (8932, 18, 21298), (8933, 18, 21319), (8934, 18, 21327), (8935, 18, 21346), (8936, 18, 21348), (8937, 18, 21366), (8938, 18, 21446), (8939, 18, 21457), (8940, 18, 21495), (8941, 18, 21496), (8942, 18, 21502), (8943, 18, 21511), (8944, 18, 21524), (8945, 18, 21532), (8946, 18, 21539), (8947, 18, 21547), (8948, 18, 21552), (8949, 18, 21563), (8950, 18, 21574), (8951, 18, 21582), (8952, 18, 21586), (8953, 18, 21587), (8954, 18, 21593), (8955, 18, 21600), (8956, 18, 21607), (8957, 18, 21608), (8958, 18, 21630), (8959, 18, 21687), (8960, 18, 21693), (8961, 18, 21726), (8962, 18, 21742), (8963, 18, 21759), (8964, 18, 21762), (8965, 18, 21778), (8966, 18, 21779), (8967, 18, 21804), (8968, 18, 21827), (8969, 18, 21857), (8970, 18, 21867), (8971, 18, 21877), (8972, 18, 21894), (8973, 18, 21906), (8974, 18, 21909), (8975, 18, 21937), (8976, 18, 21996), (8977, 18, 22004), (8978, 18, 22019), (8979, 18, 22032), (8980, 18, 22044), (8981, 18, 22066), (8982, 18, 22067), (8983, 18, 22068), (8984, 18, 22078), (8985, 18, 22087), (8986, 18, 22088), (8987, 18, 22092), (8988, 18, 22094), (8989, 18, 22102), (8990, 18, 22106), (8991, 18, 22113), (8992, 18, 22121), (8993, 18, 22126), (8994, 18, 22140), (8995, 18, 22162), (8996, 18, 22168), (8997, 18, 22176), (8998, 18, 22208), (8999, 18, 22221), (9000, 18, 22240), (9001, 18, 22246), (9002, 18, 22263), (9003, 18, 22278), (9004, 18, 22281), (9005, 18, 22299), (9006, 18, 22300), (9007, 18, 22302), (9008, 18, 22303), (9009, 18, 22305), (9010, 18, 22321), (9011, 18, 22323), (9012, 18, 22337), (9013, 18, 22379), (9014, 18, 22395), (9015, 18, 22407), (9016, 18, 22408), (9017, 18, 22410), (9018, 18, 22419), (9019, 18, 22444), (9020, 18, 22455), (9021, 18, 22469), (9022, 18, 22474), (9023, 18, 22479), (9024, 18, 22489), (9025, 18, 22522), (9026, 18, 22524), (9027, 18, 22548), (9028, 18, 22549), (9029, 18, 22561), (9030, 18, 22566), (9031, 18, 22570), (9032, 18, 22574), (9033, 18, 22593), (9034, 18, 22597), (9035, 18, 22598), (9036, 18, 22613), (9037, 18, 22616), (9038, 18, 22633), (9039, 18, 22635), (9040, 18, 22646), (9041, 18, 22647), (9042, 18, 22697), (9043, 18, 22703), (9044, 18, 22705), (9045, 18, 22709), (9046, 18, 22724), (9047, 18, 22753), (9048, 18, 22755), (9049, 18, 22796), (9050, 18, 22802), (9051, 18, 22804), (9052, 18, 22815), (9053, 18, 22835), (9054, 18, 22841), (9055, 18, 22853), (9056, 18, 22862), (9057, 18, 22916), (9058, 18, 22917), (9059, 18, 22941), (9060, 18, 22979), (9061, 18, 22980), (9062, 18, 22981), (9063, 18, 22982), (9064, 18, 22987), (9065, 18, 22990), (9066, 18, 22991), (9067, 18, 23000), (9068, 18, 23015), (9069, 18, 23055), (9070, 18, 23079), (9071, 18, 23083), (9072, 18, 23101), (9073, 18, 23102), (9074, 18, 23130), (9075, 18, 23131), (9076, 18, 23134), (9077, 18, 23153), (9078, 18, 23180), (9079, 18, 23196), (9080, 18, 23210), (9081, 18, 23243), (9082, 18, 23246), (9083, 18, 23281), (9084, 18, 23287), (9085, 18, 23293), (9086, 18, 23304), (9087, 18, 23315), (9088, 18, 23323), (9089, 18, 23326), (9090, 18, 23330), (9091, 18, 23349), (9092, 18, 23370), (9093, 18, 23371), (9094, 18, 23390), (9095, 18, 23413), (9096, 18, 23420), (9097, 18, 23425), (9098, 18, 23427), (9099, 18, 23473), (9100, 18, 23506), (9101, 18, 23509), (9102, 18, 23510), (9103, 18, 23511), (9104, 18, 23581), (9105, 18, 23582), (9106, 18, 23583), (9107, 18, 23623), (9108, 18, 23626), (9109, 18, 23628), (9110, 18, 23672), (9111, 18, 23673), (9112, 18, 23682), (9113, 18, 23695), (9114, 18, 23699), (9115, 18, 23700), (9116, 18, 23716), (9117, 18, 23725), (9118, 18, 23740), (9119, 18, 23779), (9120, 18, 23788), (9121, 18, 23792), (9122, 18, 23796), (9123, 18, 23797), (9124, 18, 23804), (9125, 18, 23813), (9126, 18, 23818), (9127, 18, 23819), (9128, 18, 23824), (9129, 18, 23832), (9130, 18, 23854), (9131, 18, 23870), (9132, 18, 23874), (9133, 18, 23875), (9134, 18, 23882), (9135, 18, 23885), (9136, 18, 23887), (9137, 18, 23916), (9138, 18, 23917), (9139, 18, 23919), (9140, 18, 23920), (9141, 18, 23923), (9142, 18, 23924), (9143, 18, 23943), (9144, 18, 23965), (9145, 18, 23969), (9146, 18, 24005), (9147, 18, 24006), (9148, 18, 24008), (9149, 18, 24026), (9150, 18, 24031), (9151, 18, 24039), (9152, 18, 24047), (9153, 18, 24069), (9154, 18, 24077), (9155, 18, 24114), (9156, 18, 24156), (9157, 18, 24174), (9158, 18, 24185), (9159, 18, 24191), (9160, 18, 24199), (9161, 18, 24224), (9162, 18, 24227), (9163, 18, 24228), (9164, 18, 24264), (9165, 18, 24265), (9166, 18, 24268), (9167, 18, 24278), (9168, 18, 24292), (9169, 18, 24293), (9170, 18, 24303), (9171, 18, 24315), (9172, 18, 24327), (9173, 18, 24341), (9174, 18, 24342), (9175, 18, 24359), (9176, 18, 24369), (9177, 18, 24374), (9178, 18, 24375), (9179, 18, 24389), (9180, 18, 24393), (9181, 18, 24402), (9182, 18, 24405), (9183, 18, 24406), (9184, 18, 24427), (9185, 18, 24430), (9186, 18, 24432), (9187, 18, 24433), (9188, 18, 24454), (9189, 18, 24460), (9190, 18, 24461), (9191, 18, 24463), (9192, 18, 24465), (9193, 18, 24470), (9194, 18, 24476), (9195, 18, 24477), (9196, 18, 24478), (9197, 18, 24493), (9198, 18, 24495), (9199, 18, 24500), (9200, 18, 24503), (9201, 18, 24507), (9202, 18, 24523), (9203, 18, 24549), (9204, 18, 24550), (9205, 18, 24551), (9206, 18, 24552), (9207, 18, 24592), (9208, 18, 24619), (9209, 18, 24624), (9210, 18, 24626), (9211, 18, 24638), (9212, 18, 24642), (9213, 18, 24645), (9214, 18, 24646), (9215, 18, 24655), (9216, 18, 24682), (9217, 18, 24686), (9218, 18, 24713), (9219, 18, 24719), (9220, 18, 24732), (9221, 18, 24736), (9222, 18, 24737), (9223, 18, 24745), (9224, 18, 24746), (9225, 18, 24756), (9226, 18, 24770), (9227, 18, 24777), (9228, 18, 24784), (9229, 18, 24791), (9230, 18, 24798), (9231, 18, 24817), (9232, 18, 24836), (9233, 18, 24846), (9234, 18, 24884), (9235, 18, 24890), (9236, 18, 24907), (9237, 18, 24912), (9238, 18, 24926), (9239, 18, 24948), (9240, 18, 24951), (9241, 18, 24956), (9242, 18, 24973), (9243, 18, 24974), (9244, 18, 25059), (9245, 18, 25146), (9246, 18, 25168), (9247, 18, 25175), (9248, 18, 25208), (9249, 18, 25219), (9250, 18, 25220), (9455, 19, 1978), (9456, 19, 4364), (9457, 19, 5224), (9458, 19, 5341), (9459, 19, 5638), (9460, 19, 6059), (9461, 19, 6512), (9462, 19, 6514), (9463, 19, 6757), (9464, 19, 7415), (9465, 19, 9133), (9466, 19, 9981), (9467, 19, 10215), (9468, 19, 10242), (9469, 19, 10649), (9470, 19, 10741), (9471, 19, 10863), (9472, 19, 10960), (9473, 19, 11139), (9474, 19, 11220), (9475, 19, 11631), (9476, 19, 12735), (9477, 19, 12789), (9478, 19, 13100), (9479, 19, 13327), (9480, 19, 13532), (9481, 19, 13576), (9482, 19, 13663), (9483, 19, 13754), (9484, 19, 13890), (9485, 19, 13973), (9486, 19, 13999), (9487, 19, 14077), (9488, 19, 14177), (9489, 19, 14179), (9490, 19, 14305), (9491, 19, 14441), (9492, 19, 14558), (9493, 19, 14575), (9494, 19, 14624), (9495, 19, 14661), (9496, 19, 15030), (9497, 19, 15172), (9498, 19, 15190), (9499, 19, 15205), (9500, 19, 15256), (9501, 19, 15325), (9502, 19, 15431), (9503, 19, 15447), (9504, 19, 15484), (9505, 19, 15485), (9506, 19, 15537), (9507, 19, 15555), (9508, 19, 15583), (9509, 19, 15636), (9510, 19, 15655), (9511, 19, 15798), (9512, 19, 15987), (9513, 19, 16031), (9514, 19, 16035), (9515, 19, 16098), (9516, 19, 16112), (9517, 19, 16133), (9518, 19, 16160), (9519, 19, 16205), (9520, 19, 16241), (9521, 19, 16261), (9522, 19, 16265), (9523, 19, 16271), (9524, 19, 16292), (9525, 19, 16352), (9526, 19, 16358), (9527, 19, 16413), (9528, 19, 16424), (9529, 19, 16507), (9530, 19, 16509), (9531, 19, 16518), (9532, 19, 16699), (9533, 19, 16752), (9534, 19, 16778), (9535, 19, 16907), (9536, 19, 17052), (9537, 19, 17088), (9538, 19, 17168), (9539, 19, 17270), (9540, 19, 17274), (9541, 19, 17349), (9542, 19, 17366), (9543, 19, 17499), (9544, 19, 17527), (9545, 19, 17574), (9546, 19, 17659), (9547, 19, 17699), (9548, 19, 17770), (9549, 19, 17859), (9550, 19, 17942), (9551, 19, 17962), (9552, 19, 18038), (9553, 19, 18083), (9554, 19, 18085), (9555, 19, 18102), (9556, 19, 18115), (9557, 19, 18147), (9558, 19, 18205), (9559, 19, 18294), (9560, 19, 18374), (9561, 19, 18402), (9562, 19, 18445), (9563, 19, 18449), (9564, 19, 18469), (9565, 19, 18482), (9566, 19, 18535), (9567, 19, 18537), (9568, 19, 18587), (9569, 19, 18606), (9570, 19, 18630), (9571, 19, 18635), (9572, 19, 18665), (9573, 19, 18684), (9574, 19, 18700), (9575, 19, 18729), (9576, 19, 18748), (9577, 19, 18905), (9578, 19, 18916), (9579, 19, 19035), (9580, 19, 19064), (9581, 19, 19065), (9582, 19, 19084), (9583, 19, 19093), (9584, 19, 19097), (9585, 19, 19185), (9586, 19, 19187), (9587, 19, 19209), (9588, 19, 19217), (9589, 19, 19291), (9590, 19, 19340), (9591, 19, 19342), (9592, 19, 19363), (9593, 19, 19370), (9594, 19, 19377), (9595, 19, 19383), (9596, 19, 19399), (9597, 19, 19402), (9598, 19, 19431), (9599, 19, 19498), (9600, 19, 19518), (9601, 19, 19548), (9602, 19, 19568), (9603, 19, 19593), (9604, 19, 19594), (9605, 19, 19604), (9606, 19, 19618), (9607, 19, 19620), (9608, 19, 19623), (9609, 19, 19662), (9610, 19, 19666), (9611, 19, 19727), (9612, 19, 19735), (9613, 19, 19755), (9614, 19, 19762), (9615, 19, 19890), (9616, 19, 19905), (9617, 19, 19948), (9618, 19, 19957), (9619, 19, 19994), (9620, 19, 19997), (9621, 19, 20003), (9622, 19, 20004), (9623, 19, 20007), (9624, 19, 20022), (9625, 19, 20033), (9626, 19, 20054), (9627, 19, 20095), (9628, 19, 20108), (9629, 19, 20135), (9630, 19, 20206), (9631, 19, 20237), (9632, 19, 20258), (9633, 19, 20260), (9634, 19, 20288), (9635, 19, 20314), (9636, 19, 20334), (9637, 19, 20336), (9638, 19, 20349), (9639, 19, 20355), (9640, 19, 20398), (9641, 19, 20445), (9642, 19, 20449), (9643, 19, 20450), (9644, 19, 20458), (9645, 19, 20473), (9646, 19, 20490), (9647, 19, 20495), (9648, 19, 20497), (9649, 19, 20517), (9650, 19, 20519), (9651, 19, 20521), (9652, 19, 20540), (9653, 19, 20585), (9654, 19, 20602), (9655, 19, 20607), (9656, 19, 20612), (9657, 19, 20645), (9658, 19, 20673), (9659, 19, 20677), (9660, 19, 20680), (9661, 19, 20690), (9662, 19, 20717), (9663, 19, 20724), (9664, 19, 20725), (9665, 19, 20769), (9666, 19, 20776), (9667, 19, 20787), (9668, 19, 20810), (9669, 19, 20814), (9670, 19, 20851), (9671, 19, 20852), (9672, 19, 20871), (9673, 19, 20888), (9674, 19, 20899), (9675, 19, 20921), (9676, 19, 20925), (9677, 19, 20937), (9678, 19, 20970), (9679, 19, 20975), (9680, 19, 20977), (9681, 19, 20989), (9682, 19, 20992), (9683, 19, 21007), (9684, 19, 21010), (9685, 19, 21033), (9686, 19, 21038), (9687, 19, 21057), (9688, 19, 21064), (9689, 19, 21069), (9690, 19, 21086), (9691, 19, 21099), (9692, 19, 21103), (9693, 19, 21107), (9694, 19, 21109), (9695, 19, 21112), (9696, 19, 21138), (9697, 19, 21177), (9698, 19, 21182), (9699, 19, 21213), (9700, 19, 21219), (9701, 19, 21222), (9702, 19, 21225), (9703, 19, 21233), (9704, 19, 21251), (9705, 19, 21252), (9706, 19, 21261), (9707, 19, 21262), (9708, 19, 21273), (9709, 19, 21279), (9710, 19, 21298), (9711, 19, 21303), (9712, 19, 21327), (9713, 19, 21348), (9714, 19, 21393), (9715, 19, 21398), (9716, 19, 21400), (9717, 19, 21439), (9718, 19, 21447), (9719, 19, 21448), (9720, 19, 21457), (9721, 19, 21464), (9722, 19, 21474), (9723, 19, 21477), (9724, 19, 21496), (9725, 19, 21501), (9726, 19, 21502), (9727, 19, 21511), (9728, 19, 21531), (9729, 19, 21535), (9730, 19, 21539), (9731, 19, 21541), (9732, 19, 21548), (9733, 19, 21552), (9734, 19, 21553), (9735, 19, 21570), (9736, 19, 21579), (9737, 19, 21580), (9738, 19, 21582), (9739, 19, 21595), (9740, 19, 21600), (9741, 19, 21608), (9742, 19, 21615), (9743, 19, 21627), (9744, 19, 21638), (9745, 19, 21639), (9746, 19, 21649), (9747, 19, 21651), (9748, 19, 21659), (9749, 19, 21672), (9750, 19, 21684), (9751, 19, 21699), (9752, 19, 21706), (9753, 19, 21725), (9754, 19, 21742), (9755, 19, 21747), (9756, 19, 21759), (9757, 19, 21768), (9758, 19, 21771), (9759, 19, 21772), (9760, 19, 21776), (9761, 19, 21777), (9762, 19, 21779), (9763, 19, 21803), (9764, 19, 21806), (9765, 19, 21827), (9766, 19, 21834), (9767, 19, 21855), (9768, 19, 21857), (9769, 19, 21884), (9770, 19, 21894), (9771, 19, 21909), (9772, 19, 21913), (9773, 19, 21937), (9774, 19, 21954), (9775, 19, 21965), (9776, 19, 21982), (9777, 19, 21991), (9778, 19, 22015), (9779, 19, 22017), (9780, 19, 22019), (9781, 19, 22029), (9782, 19, 22032), (9783, 19, 22036), (9784, 19, 22044), (9785, 19, 22058), (9786, 19, 22073), (9787, 19, 22087), (9788, 19, 22102), (9789, 19, 22105), (9790, 19, 22122), (9791, 19, 22127), (9792, 19, 22135), (9793, 19, 22140), (9794, 19, 22142), (9795, 19, 22144), (9796, 19, 22168), (9797, 19, 22180), (9798, 19, 22195), (9799, 19, 22200), (9800, 19, 22227), (9801, 19, 22240), (9802, 19, 22242), (9803, 19, 22246), (9804, 19, 22278), (9805, 19, 22283), (9806, 19, 22299), (9807, 19, 22303), (9808, 19, 22304), (9809, 19, 22305), (9810, 19, 22322), (9811, 19, 22323), (9812, 19, 22337), (9813, 19, 22339), (9814, 19, 22340), (9815, 19, 22364), (9816, 19, 22373), (9817, 19, 22375), (9818, 19, 22379), (9819, 19, 22387), (9820, 19, 22395), (9821, 19, 22404), (9822, 19, 22421), (9823, 19, 22455), (9824, 19, 22459), (9825, 19, 22471), (9826, 19, 22473), (9827, 19, 22477), (9828, 19, 22491), (9829, 19, 22506), (9830, 19, 22515), (9831, 19, 22516), (9832, 19, 22518), (9833, 19, 22522), (9834, 19, 22528), (9835, 19, 22532), (9836, 19, 22535), (9837, 19, 22539), (9838, 19, 22557), (9839, 19, 22561), (9840, 19, 22565), (9841, 19, 22570), (9842, 19, 22578), (9843, 19, 22593), (9844, 19, 22595), (9845, 19, 22598), (9846, 19, 22601), (9847, 19, 22604), (9848, 19, 22615), (9849, 19, 22624), (9850, 19, 22625), (9851, 19, 22628), (9852, 19, 22634), (9853, 19, 22635), (9854, 19, 22647), (9855, 19, 22651), (9856, 19, 22652), (9857, 19, 22681), (9858, 19, 22694), (9859, 19, 22698), (9860, 19, 22703), (9861, 19, 22705), (9862, 19, 22708), (9863, 19, 22718), (9864, 19, 22724), (9865, 19, 22725), (9866, 19, 22729), (9867, 19, 22753), (9868, 19, 22755), (9869, 19, 22759), (9870, 19, 22767), (9871, 19, 22769), (9872, 19, 22778), (9873, 19, 22781), (9874, 19, 22783), (9875, 19, 22785), (9876, 19, 22796), (9877, 19, 22802), (9878, 19, 22803), (9879, 19, 22805), (9880, 19, 22831), (9881, 19, 22835), (9882, 19, 22853), (9883, 19, 22858), (9884, 19, 22862), (9885, 19, 22873), (9886, 19, 22882), (9887, 19, 22889), (9888, 19, 22895), (9889, 19, 22896), (9890, 19, 22898), (9891, 19, 22902), (9892, 19, 22904), (9893, 19, 22913), (9894, 19, 22916), (9895, 19, 22917), (9896, 19, 22937), (9897, 19, 22941), (9898, 19, 22955), (9899, 19, 22959), (9900, 19, 22963), (9901, 19, 22970), (9902, 19, 22973), (9903, 19, 22979), (9904, 19, 22980), (9905, 19, 22981), (9906, 19, 22990), (9907, 19, 22991), (9908, 19, 22996), (9909, 19, 23016), (9910, 19, 23071), (9911, 19, 23087), (9912, 19, 23101), (9913, 19, 23102), (9914, 19, 23104), (9915, 19, 23119), (9916, 19, 23147), (9917, 19, 23170), (9918, 19, 23177), (9919, 19, 23194), (9920, 19, 23196), (9921, 19, 23210), (9922, 19, 23222), (9923, 19, 23223), (9924, 19, 23230), (9925, 19, 23231), (9926, 19, 23240), (9927, 19, 23246), (9928, 19, 23262), (9929, 19, 23280), (9930, 19, 23282), (9931, 19, 23287), (9932, 19, 23293), (9933, 19, 23304), (9934, 19, 23315), (9935, 19, 23332), (9936, 19, 23340), (9937, 19, 23349), (9938, 19, 23359), (9939, 19, 23360), (9940, 19, 23361), (9941, 19, 23364), (9942, 19, 23367), (9943, 19, 23370), (9944, 19, 23379), (9945, 19, 23388), (9946, 19, 23392), (9947, 19, 23398), (9948, 19, 23413), (9949, 19, 23420), (9950, 19, 23424), (9951, 19, 23425), (9952, 19, 23434), (9953, 19, 23440), (9954, 19, 23453), (9955, 19, 23458), (9956, 19, 23463), (9957, 19, 23467), (9958, 19, 23473), (9959, 19, 23504), (9960, 19, 23507), (9961, 19, 23510), (9962, 19, 23518), (9963, 19, 23532), (9964, 19, 23536), (9965, 19, 23545), (9966, 19, 23548), (9967, 19, 23563), (9968, 19, 23589), (9969, 19, 23598), (9970, 19, 23602), (9971, 19, 23619), (9972, 19, 23628), (9973, 19, 23655), (9974, 19, 23666), (9975, 19, 23672), (9976, 19, 23680), (9977, 19, 23695), (9978, 19, 23702), (9979, 19, 23707), (9980, 19, 23713), (9981, 19, 23714), (9982, 19, 23715), (9983, 19, 23716), (9984, 19, 23721), (9985, 19, 23725), (9986, 19, 23726), (9987, 19, 23740), (9988, 19, 23754), (9989, 19, 23755), (9990, 19, 23763), (9991, 19, 23778), (9992, 19, 23779), (9993, 19, 23782), (9994, 19, 23802), (9995, 19, 23804), (9996, 19, 23810), (9997, 19, 23813), (9998, 19, 23818), (9999, 19, 23824), (10000, 19, 23826), (10001, 19, 23833), (10002, 19, 23841), (10003, 19, 23842), (10004, 19, 23843), (10005, 19, 23848), (10006, 19, 23854), (10007, 19, 23857), (10008, 19, 23864), (10009, 19, 23870), (10010, 19, 23874), (10011, 19, 23875), (10012, 19, 23877), (10013, 19, 23882), (10014, 19, 23885), (10015, 19, 23892), (10016, 19, 23903), (10017, 19, 23905), (10018, 19, 23907), (10019, 19, 23909), (10020, 19, 23911), (10021, 19, 23912), (10022, 19, 23914), (10023, 19, 23916), (10024, 19, 23917), (10025, 19, 23923), (10026, 19, 23924), (10027, 19, 23926), (10028, 19, 23930), (10029, 19, 23935), (10030, 19, 23939), (10031, 19, 23942), (10032, 19, 23943), (10033, 19, 23945), (10034, 19, 23949), (10035, 19, 23954), (10036, 19, 23967), (10037, 19, 23969), (10038, 19, 23996), (10039, 19, 23999), (10040, 19, 24004), (10041, 19, 24008), (10042, 19, 24010), (10043, 19, 24015), (10044, 19, 24017), (10045, 19, 24019), (10046, 19, 24031), (10047, 19, 24047), (10048, 19, 24066), (10049, 19, 24068), (10050, 19, 24069), (10051, 19, 24077), (10052, 19, 24096), (10053, 19, 24097), (10054, 19, 24111), (10055, 19, 24113), (10056, 19, 24114), (10057, 19, 24130), (10058, 19, 24131), (10059, 19, 24133), (10060, 19, 24134), (10061, 19, 24143), (10062, 19, 24146), (10063, 19, 24147), (10064, 19, 24153), (10065, 19, 24166), (10066, 19, 24172), (10067, 19, 24174), (10068, 19, 24179), (10069, 19, 24185), (10070, 19, 24186), (10071, 19, 24191), (10072, 19, 24194), (10073, 19, 24198), (10074, 19, 24199), (10075, 19, 24201), (10076, 19, 24217), (10077, 19, 24218), (10078, 19, 24221), (10079, 19, 24224), (10080, 19, 24227), (10081, 19, 24228), (10082, 19, 24238), (10083, 19, 24259), (10084, 19, 24263), (10085, 19, 24264), (10086, 19, 24268), (10087, 19, 24273), (10088, 19, 24277), (10089, 19, 24278), (10090, 19, 24279), (10091, 19, 24280), (10092, 19, 24284), (10093, 19, 24290), (10094, 19, 24291), (10095, 19, 24293), (10096, 19, 24299), (10097, 19, 24301), (10098, 19, 24302), (10099, 19, 24303), (10100, 19, 24306), (10101, 19, 24310), (10102, 19, 24312), (10103, 19, 24321), (10104, 19, 24322), (10105, 19, 24327), (10106, 19, 24330), (10107, 19, 24342), (10108, 19, 24359), (10109, 19, 24360), (10110, 19, 24362), (10111, 19, 24363), (10112, 19, 24364), (10113, 19, 24369), (10114, 19, 24370), (10115, 19, 24374), (10116, 19, 24376), (10117, 19, 24378), (10118, 19, 24379), (10119, 19, 24381), (10120, 19, 24389), (10121, 19, 24393), (10122, 19, 24398), (10123, 19, 24399), (10124, 19, 24401), (10125, 19, 24402), (10126, 19, 24404), (10127, 19, 24405), (10128, 19, 24406), (10129, 19, 24411), (10130, 19, 24416), (10131, 19, 24417), (10132, 19, 24419), (10133, 19, 24420), (10134, 19, 24430), (10135, 19, 24435), (10136, 19, 24452), (10137, 19, 24460), (10138, 19, 24463), (10139, 19, 24464), (10140, 19, 24465), (10141, 19, 24466), (10142, 19, 24468), (10143, 19, 24470), (10144, 19, 24476), (10145, 19, 24477), (10146, 19, 24478), (10147, 19, 24485), (10148, 19, 24486), (10149, 19, 24487), (10150, 19, 24491), (10151, 19, 24492), (10152, 19, 24493), (10153, 19, 24495), (10154, 19, 24496), (10155, 19, 24497), (10156, 19, 24498), (10157, 19, 24501), (10158, 19, 24502), (10159, 19, 24503), (10160, 19, 24506), (10161, 19, 24507), (10162, 19, 24508), (10163, 19, 24511), (10164, 19, 24512), (10165, 19, 24523), (10166, 19, 24524), (10167, 19, 24533), (10168, 19, 24548), (10169, 19, 24550), (10170, 19, 24554), (10171, 19, 24560), (10172, 19, 24566), (10173, 19, 24572), (10174, 19, 24574), (10175, 19, 24576), (10176, 19, 24583), (10177, 19, 24584), (10178, 19, 24585), (10179, 19, 24588), (10180, 19, 24591), (10181, 19, 24594), (10182, 19, 24601), (10183, 19, 24613), (10184, 19, 24615), (10185, 19, 24616), (10186, 19, 24619), (10187, 19, 24623), (10188, 19, 24624), (10189, 19, 24628), (10190, 19, 24629), (10191, 19, 24630), (10192, 19, 24632), (10193, 19, 24633), (10194, 19, 24634), (10195, 19, 24638), (10196, 19, 24639), (10197, 19, 24645), (10198, 19, 24646), (10199, 19, 24647), (10200, 19, 24648), (10201, 19, 24655), (10202, 19, 24656), (10203, 19, 24661), (10204, 19, 24663), (10205, 19, 24665), (10206, 19, 24670), (10207, 19, 24681), (10208, 19, 24685), (10209, 19, 24686), (10210, 19, 24693), (10211, 19, 24694), (10212, 19, 24713), (10213, 19, 24719), (10214, 19, 24726), (10215, 19, 24728), (10216, 19, 24732), (10217, 19, 24735), (10218, 19, 24737), (10219, 19, 24740), (10220, 19, 24742), (10221, 19, 24743), (10222, 19, 24744), (10223, 19, 24747), (10224, 19, 24748), (10225, 19, 24749), (10226, 19, 24755), (10227, 19, 24756), (10228, 19, 24757), (10229, 19, 24759), (10230, 19, 24762), (10231, 19, 24769), (10232, 19, 24770), (10233, 19, 24776), (10234, 19, 24779), (10235, 19, 24783), (10236, 19, 24784), (10237, 19, 24785), (10238, 19, 24790), (10239, 19, 24791), (10240, 19, 24797), (10241, 19, 24798), (10242, 19, 24801), (10243, 19, 24802), (10244, 19, 24804), (10245, 19, 24817), (10246, 19, 24820), (10247, 19, 24822), (10248, 19, 24831), (10249, 19, 24832), (10250, 19, 24833), (10251, 19, 24836), (10252, 19, 24840), (10253, 19, 24850), (10254, 19, 24856), (10255, 19, 24858), (10256, 19, 24861), (10257, 19, 24865), (10258, 19, 24871), (10259, 19, 24872), (10260, 19, 24874), (10261, 19, 24883), (10262, 19, 24884), (10263, 19, 24885), (10264, 19, 24887), (10265, 19, 24889), (10266, 19, 24890), (10267, 19, 24893), (10268, 19, 24897), (10269, 19, 24904), (10270, 19, 24907), (10271, 19, 24908), (10272, 19, 24912), (10273, 19, 24916), (10274, 19, 24920), (10275, 19, 24922), (10276, 19, 24925), (10277, 19, 24928), (10278, 19, 24934), (10279, 19, 24938), (10280, 19, 24947), (10281, 19, 24951), (10282, 19, 24953), (10283, 19, 24954), (10284, 19, 24956), (10285, 19, 24963), (10286, 19, 24964), (10287, 19, 24966), (10288, 19, 24967), (10289, 19, 24968), (10290, 19, 24969), (10291, 19, 24971), (10292, 19, 24972), (10293, 19, 24973), (10294, 19, 24980), (10295, 19, 24988), (10296, 19, 25143), (10297, 19, 25175), (10298, 19, 25178), (10299, 19, 25208), (10300, 19, 25211), (10301, 19, 25219), (10302, 19, 25220), (10478, 21, 2496), (10479, 21, 6996), (10480, 21, 11295), (10481, 21, 12505), (10482, 21, 13697), (10483, 21, 14332), (10484, 21, 14540), (10485, 21, 14663), (10486, 21, 14814), (10487, 21, 15174), (10488, 21, 16121), (10489, 21, 16281), (10490, 21, 16557), (10491, 21, 16715), (10492, 21, 17129), (10493, 21, 17407), (10494, 21, 17480), (10495, 21, 17601), (10496, 21, 17640), (10497, 21, 17814), (10498, 21, 18546), (10499, 21, 18724), (10500, 21, 18830), (10501, 21, 19227), (10502, 21, 19313), (10503, 21, 19335), (10504, 21, 19433), (10505, 21, 19822), (10506, 21, 19914), (10507, 21, 20301), (10508, 21, 20464), (10509, 21, 21883), (10510, 21, 21956), (10511, 21, 21974), (10512, 21, 22989), (10513, 21, 23141), (10514, 21, 23708), (10515, 21, 23717), (10516, 21, 23767), (10517, 21, 23867), (10518, 21, 24104), (10519, 21, 24137), (10520, 21, 24215), (10521, 21, 24229), (10522, 21, 24236), (10523, 21, 24421), (10524, 21, 24505), (10525, 21, 24510), (10526, 21, 24528), (10527, 21, 24687), (10528, 21, 24774), (10529, 21, 24841), (10530, 21, 24979), (10541, 22, 1221), (10542, 22, 4394), (10543, 22, 4574), (10544, 22, 4585), (10545, 22, 5341), (10546, 22, 6288), (10547, 22, 7067), (10548, 22, 7482), (10549, 22, 8142), (10550, 22, 8435), (10551, 22, 8637), (10552, 22, 8889), (10553, 22, 9800), (10554, 22, 9957), (10555, 22, 11692), (10556, 22, 11862), (10557, 22, 12576), (10558, 22, 12698), (10559, 22, 12745), (10560, 22, 13099), (10561, 22, 13327), (10562, 22, 13443), (10563, 22, 13511), (10564, 22, 13576), (10565, 22, 13786), (10566, 22, 14116), (10567, 22, 14326), (10568, 22, 14507), (10569, 22, 14568), (10570, 22, 15119), (10571, 22, 15385), (10572, 22, 15415), (10573, 22, 15545), (10574, 22, 15624), (10575, 22, 15661), (10576, 22, 15720), (10577, 22, 16100), (10578, 22, 16680), (10579, 22, 16918), (10580, 22, 17441), (10581, 22, 17499), (10582, 22, 17758), (10583, 22, 17817), (10584, 22, 17998), (10585, 22, 18020), (10586, 22, 18037), (10587, 22, 18242), (10588, 22, 18375), (10589, 22, 18573), (10590, 22, 18580), (10591, 22, 18729), (10592, 22, 18813), (10593, 22, 18935), (10594, 22, 18938), (10595, 22, 19050), (10596, 22, 19169), (10597, 22, 19209), (10598, 22, 19350), (10599, 22, 19694), (10600, 22, 19703), (10601, 22, 19706), (10602, 22, 19759), (10603, 22, 19818), (10604, 22, 19878), (10605, 22, 20224), (10606, 22, 20944), (10607, 22, 20993), (10608, 22, 21001), (10609, 22, 21033), (10610, 22, 21162), (10611, 22, 21252), (10612, 22, 21431), (10613, 22, 21503), (10614, 22, 21560), (10615, 22, 21649), (10616, 22, 21730), (10617, 22, 21785), (10618, 22, 21812), (10619, 22, 21816), (10620, 22, 21817), (10621, 22, 21878), (10622, 22, 21939), (10623, 22, 22157), (10624, 22, 22181), (10625, 22, 22205), (10626, 22, 22210), (10627, 22, 22265), (10628, 22, 22348), (10629, 22, 22377), (10630, 22, 22392), (10631, 22, 22407), (10632, 22, 22508), (10633, 22, 22529), (10634, 22, 22671), (10635, 22, 22673), (10636, 22, 22725), (10637, 22, 22863), (10638, 22, 22906), (10639, 22, 22966), (10640, 22, 23098), (10641, 22, 23147), (10642, 22, 23176), (10643, 22, 23177), (10644, 22, 23219), (10645, 22, 23432), (10646, 22, 23438), (10647, 22, 23625), (10648, 22, 23683), (10649, 22, 23691), (10650, 22, 23718), (10651, 22, 23739), (10652, 22, 23866), (10653, 22, 23942), (10654, 22, 23973), (10655, 22, 23987), (10656, 22, 24017), (10657, 22, 24106), (10658, 22, 24120), (10659, 22, 24121), (10660, 22, 24139), (10661, 22, 24189), (10662, 22, 24230), (10663, 22, 24231), (10664, 22, 24232), (10665, 22, 24233), (10666, 22, 24234), (10667, 22, 24239), (10668, 22, 24276), (10669, 22, 24283), (10670, 22, 24314), (10671, 22, 24331), (10672, 22, 24448), (10673, 22, 24526), (10674, 22, 24532), (10675, 22, 24571), (10676, 22, 24604), (10677, 22, 24716), (10678, 22, 24742), (10679, 22, 24769), (10680, 22, 24775), (10681, 22, 24788), (10682, 22, 24800), (10683, 22, 24850), (10684, 22, 24912), (10685, 22, 24921), (10686, 22, 25052), (10687, 22, 25156), (10796, 23, 48), (10797, 23, 63), (10798, 23, 162), (10799, 23, 304), (10800, 23, 417), (10801, 23, 522), (10802, 23, 559), (10803, 23, 843), (10804, 23, 897), (10805, 23, 944), (10806, 23, 1384), (10807, 23, 1387), (10808, 23, 1407), (10809, 23, 1597), (10810, 23, 1602), (10811, 23, 1737), (10812, 23, 1756), (10813, 23, 1757), (10814, 23, 1768), (10815, 23, 1869), (10816, 23, 1905), (10817, 23, 1961), (10818, 23, 2043), (10819, 23, 2440), (10820, 23, 2471), (10821, 23, 2554), (10822, 23, 2893), (10823, 23, 3026), (10824, 23, 3160), (10825, 23, 3172), (10826, 23, 3537), (10827, 23, 3710), (10828, 23, 3742), (10829, 23, 3748), (10830, 23, 4055), (10831, 23, 4088), (10832, 23, 4292), (10833, 23, 4462), (10834, 23, 4480), (10835, 23, 4549), (10836, 23, 4624), (10837, 23, 4628), (10838, 23, 4698), (10839, 23, 4712), (10840, 23, 4825), (10841, 23, 4921), (10842, 23, 5005), (10843, 23, 5131), (10844, 23, 5425), (10845, 23, 5426), (10846, 23, 5428), (10847, 23, 5616), (10848, 23, 5868), (10849, 23, 5893), (10850, 23, 6005), (10851, 23, 6032), (10852, 23, 6041), (10853, 23, 6067), (10854, 23, 6258), (10855, 23, 6349), (10856, 23, 6552), (10857, 23, 6669), (10858, 23, 6846), (10859, 23, 6856), (10860, 23, 6906), (10861, 23, 6966), (10862, 23, 7004), (10863, 23, 7124), (10864, 23, 7161), (10865, 23, 7182), (10866, 23, 7197), (10867, 23, 7235), (10868, 23, 7298), (10869, 23, 7319), (10870, 23, 7437), (10871, 23, 7554), (10872, 23, 7926), (10873, 23, 7967), (10874, 23, 8012), (10875, 23, 8021), (10876, 23, 8072), (10877, 23, 8351), (10878, 23, 8387), (10879, 23, 8406), (10880, 23, 8441), (10881, 23, 8523), (10882, 23, 8648), (10883, 23, 8726), (10884, 23, 8852), (10885, 23, 8889), (10886, 23, 8935), (10887, 23, 9114), (10888, 23, 9225), (10889, 23, 9397), (10890, 23, 9491), (10891, 23, 9542), (10892, 23, 9688), (10893, 23, 9770), (10894, 23, 9802), (10895, 23, 9849), (10896, 23, 9884), (10897, 23, 9897), (10898, 23, 9906), (10899, 23, 9955), (10900, 23, 9959), (10901, 23, 10062), (10902, 23, 10095), (10903, 23, 10143), (10904, 23, 10208), (10905, 23, 10212), (10906, 23, 10218), (10907, 23, 10472), (10908, 23, 10478), (10909, 23, 10495), (10910, 23, 10509), (10911, 23, 10535), (10912, 23, 10592), (10913, 23, 10599), (10914, 23, 10611), (10915, 23, 10617), (10916, 23, 10629), (10917, 23, 10637), (10918, 23, 10650), (10919, 23, 10779), (10920, 23, 10832), (10921, 23, 10882), (10922, 23, 10928), (10923, 23, 11071), (10924, 23, 11077), (10925, 23, 11218), (10926, 23, 11229), (10927, 23, 11238), (10928, 23, 11266), (10929, 23, 11328), (10930, 23, 11348), (10931, 23, 11386), (10932, 23, 11493), (10933, 23, 11501), (10934, 23, 11649), (10935, 23, 11752), (10936, 23, 11835), (10937, 23, 11899), (10938, 23, 11930), (10939, 23, 11951), (10940, 23, 11954), (10941, 23, 11985), (10942, 23, 12013), (10943, 23, 12021), (10944, 23, 12059), (10945, 23, 12171), (10946, 23, 12215), (10947, 23, 12225), (10948, 23, 12240), (10949, 23, 12341), (10950, 23, 12359), (10951, 23, 12367), (10952, 23, 12375), (10953, 23, 12376), (10954, 23, 12445), (10955, 23, 12643), (10956, 23, 12651), (10957, 23, 12730), (10958, 23, 12789), (10959, 23, 12816), (10960, 23, 12834), (10961, 23, 12944), (10962, 23, 13001), (10963, 23, 13018), (10964, 23, 13024), (10965, 23, 13042), (10966, 23, 13049), (10967, 23, 13114), (10968, 23, 13126), (10969, 23, 13171), (10970, 23, 13277), (10971, 23, 13295), (10972, 23, 13303), (10973, 23, 13313), (10974, 23, 13352), (10975, 23, 13382), (10976, 23, 13473), (10977, 23, 13613), (10978, 23, 13777), (10979, 23, 13814), (10980, 23, 13828), (10981, 23, 13841), (10982, 23, 13871), (10983, 23, 13880), (10984, 23, 13898), (10985, 23, 13950), (10986, 23, 13958), (10987, 23, 13970), (10988, 23, 13992), (10989, 23, 14009), (10990, 23, 14013), (10991, 23, 14310), (10992, 23, 14394), (10993, 23, 14430), (10994, 23, 14435), (10995, 23, 14439), (10996, 23, 14498), (10997, 23, 14549), (10998, 23, 14609), (10999, 23, 14624), (11000, 23, 14645), (11001, 23, 14693), (11002, 23, 14703), (11003, 23, 14817), (11004, 23, 14914), (11005, 23, 14917), (11006, 23, 14918), (11007, 23, 14993), (11008, 23, 14996), (11009, 23, 15019), (11010, 23, 15033), (11011, 23, 15043), (11012, 23, 15066), (11013, 23, 15079), (11014, 23, 15143), (11015, 23, 15147), (11016, 23, 15159), (11017, 23, 15178), (11018, 23, 15216), (11019, 23, 15256), (11020, 23, 15262), (11021, 23, 15306), (11022, 23, 15320), (11023, 23, 15379), (11024, 23, 15394), (11025, 23, 15431), (11026, 23, 15472), (11027, 23, 15494), (11028, 23, 15528), (11029, 23, 15562), (11030, 23, 15579), (11031, 23, 15601), (11032, 23, 15612), (11033, 23, 15658), (11034, 23, 15665), (11035, 23, 15731), (11036, 23, 15803), (11037, 23, 15866), (11038, 23, 15909), (11039, 23, 15911), (11040, 23, 15935), (11041, 23, 15951), (11042, 23, 15995), (11043, 23, 16012), (11044, 23, 16024), (11045, 23, 16042), (11046, 23, 16101), (11047, 23, 16138), (11048, 23, 16148), (11049, 23, 16156), (11050, 23, 16157), (11051, 23, 16234), (11052, 23, 16241), (11053, 23, 16332), (11054, 23, 16429), (11055, 23, 16490), (11056, 23, 16509), (11057, 23, 16512), (11058, 23, 16594), (11059, 23, 16630), (11060, 23, 16634), (11061, 23, 16677), (11062, 23, 16727), (11063, 23, 16760), (11064, 23, 16766), (11065, 23, 16787), (11066, 23, 16791), (11067, 23, 16842), (11068, 23, 16905), (11069, 23, 16945), (11070, 23, 17046), (11071, 23, 17107), (11072, 23, 17114), (11073, 23, 17120), (11074, 23, 17132), (11075, 23, 17139), (11076, 23, 17146), (11077, 23, 17233), (11078, 23, 17239), (11079, 23, 17275), (11080, 23, 17313), (11081, 23, 17328), (11082, 23, 17349), (11083, 23, 17351), (11084, 23, 17376), (11085, 23, 17404), (11086, 23, 17509), (11087, 23, 17516), (11088, 23, 17581), (11089, 23, 17639), (11090, 23, 17648), (11091, 23, 17651), (11092, 23, 17688), (11093, 23, 17693), (11094, 23, 17696), (11095, 23, 17729), (11096, 23, 17782), (11097, 23, 17825), (11098, 23, 17831), (11099, 23, 17886), (11100, 23, 17908), (11101, 23, 17909), (11102, 23, 17950), (11103, 23, 17983), (11104, 23, 18012), (11105, 23, 18015), (11106, 23, 18030), (11107, 23, 18033), (11108, 23, 18048), (11109, 23, 18069), (11110, 23, 18088), (11111, 23, 18100), (11112, 23, 18102), (11113, 23, 18115), (11114, 23, 18124), (11115, 23, 18145), (11116, 23, 18179), (11117, 23, 18189), (11118, 23, 18211), (11119, 23, 18219), (11120, 23, 18223), (11121, 23, 18228), (11122, 23, 18274), (11123, 23, 18277), (11124, 23, 18281), (11125, 23, 18320), (11126, 23, 18411), (11127, 23, 18459), (11128, 23, 18485), (11129, 23, 18501), (11130, 23, 18516), (11131, 23, 18517), (11132, 23, 18551), (11133, 23, 18584), (11134, 23, 18603), (11135, 23, 18608), (11136, 23, 18620), (11137, 23, 18666), (11138, 23, 18667), (11139, 23, 18683), (11140, 23, 18738), (11141, 23, 18765), (11142, 23, 18878), (11143, 23, 18883), (11144, 23, 18950), (11145, 23, 18988), (11146, 23, 19034), (11147, 23, 19064), (11148, 23, 19084), (11149, 23, 19103), (11150, 23, 19147), (11151, 23, 19188), (11152, 23, 19192), (11153, 23, 19216), (11154, 23, 19243), (11155, 23, 19324), (11156, 23, 19339), (11157, 23, 19357), (11158, 23, 19385), (11159, 23, 19388), (11160, 23, 19398), (11161, 23, 19402), (11162, 23, 19411), (11163, 23, 19428), (11164, 23, 19434), (11165, 23, 19453), (11166, 23, 19465), (11167, 23, 19485), (11168, 23, 19522), (11169, 23, 19548), (11170, 23, 19593), (11171, 23, 19614), (11172, 23, 19642), (11173, 23, 19666), (11174, 23, 19708), (11175, 23, 19721), (11176, 23, 19734), (11177, 23, 19810), (11178, 23, 19948), (11179, 23, 19976), (11180, 23, 19977), (11181, 23, 19983), (11182, 23, 19995), (11183, 23, 20021), (11184, 23, 20026), (11185, 23, 20048), (11186, 23, 20061), (11187, 23, 20066), (11188, 23, 20079), (11189, 23, 20104), (11190, 23, 20168), (11191, 23, 20191), (11192, 23, 20220), (11193, 23, 20244), (11194, 23, 20262), (11195, 23, 20394), (11196, 23, 20408), (11197, 23, 20422), (11198, 23, 20460), (11199, 23, 20463), (11200, 23, 20492), (11201, 23, 20516), (11202, 23, 20568), (11203, 23, 20570), (11204, 23, 20575), (11205, 23, 20619), (11206, 23, 20651), (11207, 23, 20687), (11208, 23, 20691), (11209, 23, 20710), (11210, 23, 20711), (11211, 23, 20713), (11212, 23, 20723), (11213, 23, 20779), (11214, 23, 20780), (11215, 23, 20799), (11216, 23, 20846), (11217, 23, 20871), (11218, 23, 20892), (11219, 23, 20942), (11220, 23, 20956), (11221, 23, 20970), (11222, 23, 20982), (11223, 23, 21008), (11224, 23, 21042), (11225, 23, 21044), (11226, 23, 21050), (11227, 23, 21068), (11228, 23, 21097), (11229, 23, 21146), (11230, 23, 21164), (11231, 23, 21172), (11232, 23, 21178), (11233, 23, 21184), (11234, 23, 21187), (11235, 23, 21210), (11236, 23, 21214), (11237, 23, 21217), (11238, 23, 21251), (11239, 23, 21297), (11240, 23, 21324), (11241, 23, 21433), (11242, 23, 21435), (11243, 23, 21461), (11244, 23, 21476), (11245, 23, 21479), (11246, 23, 21491), (11247, 23, 21496), (11248, 23, 21529), (11249, 23, 21536), (11250, 23, 21562), (11251, 23, 21563), (11252, 23, 21588), (11253, 23, 21592), (11254, 23, 21598), (11255, 23, 21612), (11256, 23, 21614), (11257, 23, 21615), (11258, 23, 21622), (11259, 23, 21629), (11260, 23, 21638), (11261, 23, 21641), (11262, 23, 21645), (11263, 23, 21663), (11264, 23, 21681), (11265, 23, 21694), (11266, 23, 21700), (11267, 23, 21716), (11268, 23, 21744), (11269, 23, 21745), (11270, 23, 21765), (11271, 23, 21771), (11272, 23, 21821), (11273, 23, 21828), (11274, 23, 21838), (11275, 23, 21855), (11276, 23, 21868), (11277, 23, 21887), (11278, 23, 21914), (11279, 23, 21919), (11280, 23, 21926), (11281, 23, 21953), (11282, 23, 21955), (11283, 23, 21968), (11284, 23, 21989), (11285, 23, 21995), (11286, 23, 22012), (11287, 23, 22030), (11288, 23, 22070), (11289, 23, 22074), (11290, 23, 22093), (11291, 23, 22115), (11292, 23, 22145), (11293, 23, 22149), (11294, 23, 22187), (11295, 23, 22190), (11296, 23, 22228), (11297, 23, 22239), (11298, 23, 22241), (11299, 23, 22307), (11300, 23, 22319), (11301, 23, 22339), (11302, 23, 22353), (11303, 23, 22356), (11304, 23, 22363), (11305, 23, 22394), (11306, 23, 22395), (11307, 23, 22404), (11308, 23, 22418), (11309, 23, 22422), (11310, 23, 22451), (11311, 23, 22471), (11312, 23, 22477), (11313, 23, 22481), (11314, 23, 22492), (11315, 23, 22494), (11316, 23, 22495), (11317, 23, 22515), (11318, 23, 22531), (11319, 23, 22547), (11320, 23, 22557), (11321, 23, 22562), (11322, 23, 22567), (11323, 23, 22576), (11324, 23, 22591), (11325, 23, 22608), (11326, 23, 22628), (11327, 23, 22655), (11328, 23, 22664), (11329, 23, 22675), (11330, 23, 22681), (11331, 23, 22685), (11332, 23, 22686), (11333, 23, 22721), (11334, 23, 22725), (11335, 23, 22726), (11336, 23, 22759), (11337, 23, 22774), (11338, 23, 22810), (11339, 23, 22820), (11340, 23, 22821), (11341, 23, 22825), (11342, 23, 22856), (11343, 23, 22861), (11344, 23, 22873), (11345, 23, 22875), (11346, 23, 22879), (11347, 23, 22888), (11348, 23, 22929), (11349, 23, 22930), (11350, 23, 22948), (11351, 23, 22966), (11352, 23, 22972), (11353, 23, 22978), (11354, 23, 22991), (11355, 23, 23019), (11356, 23, 23028), (11357, 23, 23069), (11358, 23, 23080), (11359, 23, 23087), (11360, 23, 23112), (11361, 23, 23114), (11362, 23, 23127), (11363, 23, 23132), (11364, 23, 23247), (11365, 23, 23255), (11366, 23, 23257), (11367, 23, 23261), (11368, 23, 23292), (11369, 23, 23304), (11370, 23, 23313), (11371, 23, 23319), (11372, 23, 23327), (11373, 23, 23344), (11374, 23, 23370), (11375, 23, 23371), (11376, 23, 23372), (11377, 23, 23397), (11378, 23, 23445), (11379, 23, 23447), (11380, 23, 23448), (11381, 23, 23458), (11382, 23, 23481), (11383, 23, 23493), (11384, 23, 23497), (11385, 23, 23538), (11386, 23, 23548), (11387, 23, 23565), (11388, 23, 23575), (11389, 23, 23599), (11390, 23, 23602), (11391, 23, 23604), (11392, 23, 23607), (11393, 23, 23613), (11394, 23, 23614), (11395, 23, 23679), (11396, 23, 23681), (11397, 23, 23695), (11398, 23, 23697), (11399, 23, 23703), (11400, 23, 23746), (11401, 23, 23747), (11402, 23, 23760), (11403, 23, 23762), (11404, 23, 23771), (11405, 23, 23782), (11406, 23, 23786), (11407, 23, 23790), (11408, 23, 23807), (11409, 23, 23818), (11410, 23, 23829), (11411, 23, 23831), (11412, 23, 23833), (11413, 23, 23838), (11414, 23, 23851), (11415, 23, 23881), (11416, 23, 23894), (11417, 23, 23897), (11418, 23, 23902), (11419, 23, 23939), (11420, 23, 23950), (11421, 23, 23962), (11422, 23, 23964), (11423, 23, 23967), (11424, 23, 23968), (11425, 23, 23978), (11426, 23, 23980), (11427, 23, 24007), (11428, 23, 24016), (11429, 23, 24017), (11430, 23, 24030), (11431, 23, 24032), (11432, 23, 24052), (11433, 23, 24054), (11434, 23, 24063), (11435, 23, 24072), (11436, 23, 24085), (11437, 23, 24098), (11438, 23, 24107), (11439, 23, 24108), (11440, 23, 24124), (11441, 23, 24128), (11442, 23, 24147), (11443, 23, 24178), (11444, 23, 24186), (11445, 23, 24188), (11446, 23, 24191), (11447, 23, 24213), (11448, 23, 24214), (11449, 23, 24274), (11450, 23, 24286), (11451, 23, 24297), (11452, 23, 24301), (11453, 23, 24306), (11454, 23, 24308), (11455, 23, 24311), (11456, 23, 24313), (11457, 23, 24323), (11458, 23, 24329), (11459, 23, 24335), (11460, 23, 24341), (11461, 23, 24343), (11462, 23, 24345), (11463, 23, 24346), (11464, 23, 24347), (11465, 23, 24361), (11466, 23, 24382), (11467, 23, 24387), (11468, 23, 24394), (11469, 23, 24410), (11470, 23, 24414), (11471, 23, 24418), (11472, 23, 24430), (11473, 23, 24440), (11474, 23, 24451), (11475, 23, 24452), (11476, 23, 24459), (11477, 23, 24461), (11478, 23, 24466), (11479, 23, 24475), (11480, 23, 24491), (11481, 23, 24494), (11482, 23, 24517), (11483, 23, 24521), (11484, 23, 24543), (11485, 23, 24573), (11486, 23, 24578), (11487, 23, 24579), (11488, 23, 24588), (11489, 23, 24592), (11490, 23, 24594), (11491, 23, 24595), (11492, 23, 24598), (11493, 23, 24602), (11494, 23, 24643), (11495, 23, 24669), (11496, 23, 24709), (11497, 23, 24717), (11498, 23, 24738), (11499, 23, 24739), (11500, 23, 24744), (11501, 23, 24753), (11502, 23, 24758), (11503, 23, 24807), (11504, 23, 24818), (11505, 23, 24819), (11506, 23, 24831), (11507, 23, 24842), (11508, 23, 24850), (11509, 23, 24860), (11510, 23, 24861), (11511, 23, 24866), (11512, 23, 24870), (11513, 23, 24877), (11514, 23, 24878), (11515, 23, 24879), (11516, 23, 24881), (11517, 23, 24882), (11518, 23, 24892), (11519, 23, 24904), (11520, 23, 24912), (11521, 23, 24914), (11522, 23, 24917), (11523, 23, 24918), (11524, 23, 24931), (11525, 23, 24944), (11526, 23, 24949), (11527, 23, 24978), (11528, 23, 24990), (11529, 23, 25056), (11530, 23, 25154), (11531, 23, 25175), (11532, 23, 25218), (11819, 24, 1497), (11820, 24, 4507), (11821, 24, 4686), (11822, 24, 5312), (11823, 24, 6295), (11824, 24, 7004), (11825, 24, 7850), (11826, 24, 8770), (11827, 24, 8967), (11828, 24, 9079), (11829, 24, 9324), (11830, 24, 9906), (11831, 24, 10223), (11832, 24, 10224), (11833, 24, 10262), (11834, 24, 10877), (11835, 24, 11105), (11836, 24, 11281), (11837, 24, 12000), (11838, 24, 12361), (11839, 24, 12367), (11840, 24, 12489), (11841, 24, 12678), (11842, 24, 12688), (11843, 24, 13018), (11844, 24, 13135), (11845, 24, 13178), (11846, 24, 13246), (11847, 24, 13277), (11848, 24, 13556), (11849, 24, 13814), (11850, 24, 13866), (11851, 24, 13898), (11852, 24, 13968), (11853, 24, 13970), (11854, 24, 13992), (11855, 24, 14498), (11856, 24, 14500), (11857, 24, 14550), (11858, 24, 14558), (11859, 24, 14914), (11860, 24, 15073), (11861, 24, 15079), (11862, 24, 15351), (11863, 24, 15411), (11864, 24, 15435), (11865, 24, 15528), (11866, 24, 15537), (11867, 24, 15612), (11868, 24, 15658), (11869, 24, 15686), (11870, 24, 15692), (11871, 24, 15863), (11872, 24, 15990), (11873, 24, 16152), (11874, 24, 16177), (11875, 24, 16231), (11876, 24, 16234), (11877, 24, 16333), (11878, 24, 16370), (11879, 24, 16409), (11880, 24, 16431), (11881, 24, 16509), (11882, 24, 16545), (11883, 24, 16577), (11884, 24, 16583), (11885, 24, 16677), (11886, 24, 16723), (11887, 24, 16728), (11888, 24, 16753), (11889, 24, 16839), (11890, 24, 16890), (11891, 24, 16997), (11892, 24, 17096), (11893, 24, 17120), (11894, 24, 17131), (11895, 24, 17145), (11896, 24, 17146), (11897, 24, 17169), (11898, 24, 17215), (11899, 24, 17254), (11900, 24, 17313), (11901, 24, 17373), (11902, 24, 17413), (11903, 24, 17458), (11904, 24, 17572), (11905, 24, 17638), (11906, 24, 17688), (11907, 24, 17692), (11908, 24, 17700), (11909, 24, 17729), (11910, 24, 17805), (11911, 24, 17813), (11912, 24, 17873), (11913, 24, 17905), (11914, 24, 17931), (11915, 24, 17974), (11916, 24, 18156), (11917, 24, 18189), (11918, 24, 18275), (11919, 24, 18281), (11920, 24, 18355), (11921, 24, 18411), (11922, 24, 18516), (11923, 24, 18528), (11924, 24, 18566), (11925, 24, 18610), (11926, 24, 18681), (11927, 24, 18708), (11928, 24, 18721), (11929, 24, 18769), (11930, 24, 18801), (11931, 24, 18977), (11932, 24, 19003), (11933, 24, 19034), (11934, 24, 19090), (11935, 24, 19092), (11936, 24, 19133), (11937, 24, 19140), (11938, 24, 19158), (11939, 24, 19192), (11940, 24, 19231), (11941, 24, 19240), (11942, 24, 19249), (11943, 24, 19320), (11944, 24, 19326), (11945, 24, 19339), (11946, 24, 19340), (11947, 24, 19361), (11948, 24, 19366), (11949, 24, 19373), (11950, 24, 19398), (11951, 24, 19429), (11952, 24, 19476), (11953, 24, 19517), (11954, 24, 19568), (11955, 24, 19593), (11956, 24, 19609), (11957, 24, 19614), (11958, 24, 19620), (11959, 24, 19662), (11960, 24, 19708), (11961, 24, 19734), (11962, 24, 19755), (11963, 24, 19810), (11964, 24, 19820), (11965, 24, 19851), (11966, 24, 19894), (11967, 24, 19934), (11968, 24, 19939), (11969, 24, 19948), (11970, 24, 19961), (11971, 24, 19962), (11972, 24, 19993), (11973, 24, 19998), (11974, 24, 20000), (11975, 24, 20003), (11976, 24, 20048), (11977, 24, 20095), (11978, 24, 20096), (11979, 24, 20183), (11980, 24, 20213), (11981, 24, 20223), (11982, 24, 20304), (11983, 24, 20352), (11984, 24, 20417), (11985, 24, 20443), (11986, 24, 20452), (11987, 24, 20465), (11988, 24, 20470), (11989, 24, 20492), (11990, 24, 20534), (11991, 24, 20548), (11992, 24, 20569), (11993, 24, 20649), (11994, 24, 20711), (11995, 24, 20785), (11996, 24, 20851), (11997, 24, 20864), (11998, 24, 20878), (11999, 24, 20910), (12000, 24, 20931), (12001, 24, 20964), (12002, 24, 20968), (12003, 24, 21000), (12004, 24, 21011), (12005, 24, 21091), (12006, 24, 21099), (12007, 24, 21120), (12008, 24, 21170), (12009, 24, 21178), (12010, 24, 21187), (12011, 24, 21233), (12012, 24, 21246), (12013, 24, 21263), (12014, 24, 21269), (12015, 24, 21426), (12016, 24, 21470), (12017, 24, 21489), (12018, 24, 21502), (12019, 24, 21522), (12020, 24, 21532), (12021, 24, 21534), (12022, 24, 21536), (12023, 24, 21540), (12024, 24, 21546), (12025, 24, 21571), (12026, 24, 21585), (12027, 24, 21598), (12028, 24, 21606), (12029, 24, 21614), (12030, 24, 21636), (12031, 24, 21638), (12032, 24, 21643), (12033, 24, 21662), (12034, 24, 21688), (12035, 24, 21715), (12036, 24, 21716), (12037, 24, 21735), (12038, 24, 21744), (12039, 24, 21771), (12040, 24, 21831), (12041, 24, 21832), (12042, 24, 21847), (12043, 24, 21864), (12044, 24, 21868), (12045, 24, 21922), (12046, 24, 21926), (12047, 24, 21927), (12048, 24, 21937), (12049, 24, 21943), (12050, 24, 21944), (12051, 24, 21953), (12052, 24, 21968), (12053, 24, 21992), (12054, 24, 22007), (12055, 24, 22028), (12056, 24, 22029), (12057, 24, 22043), (12058, 24, 22082), (12059, 24, 22087), (12060, 24, 22095), (12061, 24, 22118), (12062, 24, 22129), (12063, 24, 22133), (12064, 24, 22135), (12065, 24, 22137), (12066, 24, 22177), (12067, 24, 22192), (12068, 24, 22228), (12069, 24, 22235), (12070, 24, 22239), (12071, 24, 22249), (12072, 24, 22251), (12073, 24, 22294), (12074, 24, 22341), (12075, 24, 22347), (12076, 24, 22356), (12077, 24, 22358), (12078, 24, 22364), (12079, 24, 22366), (12080, 24, 22417), (12081, 24, 22439), (12082, 24, 22464), (12083, 24, 22492), (12084, 24, 22494), (12085, 24, 22515), (12086, 24, 22534), (12087, 24, 22555), (12088, 24, 22558), (12089, 24, 22559), (12090, 24, 22576), (12091, 24, 22582), (12092, 24, 22598), (12093, 24, 22599), (12094, 24, 22601), (12095, 24, 22608), (12096, 24, 22626), (12097, 24, 22652), (12098, 24, 22722), (12099, 24, 22759), (12100, 24, 22772), (12101, 24, 22787), (12102, 24, 22807), (12103, 24, 22821), (12104, 24, 22899), (12105, 24, 22912), (12106, 24, 22931), (12107, 24, 22943), (12108, 24, 22979), (12109, 24, 23025), (12110, 24, 23026), (12111, 24, 23051), (12112, 24, 23059), (12113, 24, 23062), (12114, 24, 23087), (12115, 24, 23092), (12116, 24, 23114), (12117, 24, 23132), (12118, 24, 23145), (12119, 24, 23163), (12120, 24, 23166), (12121, 24, 23199), (12122, 24, 23215), (12123, 24, 23236), (12124, 24, 23307), (12125, 24, 23316), (12126, 24, 23322), (12127, 24, 23350), (12128, 24, 23354), (12129, 24, 23355), (12130, 24, 23370), (12131, 24, 23386), (12132, 24, 23407), (12133, 24, 23411), (12134, 24, 23420), (12135, 24, 23440), (12136, 24, 23505), (12137, 24, 23540), (12138, 24, 23543), (12139, 24, 23545), (12140, 24, 23569), (12141, 24, 23578), (12142, 24, 23581), (12143, 24, 23602), (12144, 24, 23607), (12145, 24, 23611), (12146, 24, 23612), (12147, 24, 23638), (12148, 24, 23646), (12149, 24, 23667), (12150, 24, 23678), (12151, 24, 23679), (12152, 24, 23681), (12153, 24, 23686), (12154, 24, 23702), (12155, 24, 23707), (12156, 24, 23713), (12157, 24, 23761), (12158, 24, 23786), (12159, 24, 23806), (12160, 24, 23812), (12161, 24, 23829), (12162, 24, 23833), (12163, 24, 23881), (12164, 24, 23886), (12165, 24, 23890), (12166, 24, 23899), (12167, 24, 23902), (12168, 24, 23915), (12169, 24, 23921), (12170, 24, 23934), (12171, 24, 23935), (12172, 24, 23936), (12173, 24, 23971), (12174, 24, 23978), (12175, 24, 23990), (12176, 24, 24000), (12177, 24, 24018), (12178, 24, 24029), (12179, 24, 24030), (12180, 24, 24044), (12181, 24, 24045), (12182, 24, 24058), (12183, 24, 24062), (12184, 24, 24063), (12185, 24, 24072), (12186, 24, 24084), (12187, 24, 24102), (12188, 24, 24110), (12189, 24, 24111), (12190, 24, 24124), (12191, 24, 24125), (12192, 24, 24129), (12193, 24, 24146), (12194, 24, 24147), (12195, 24, 24148), (12196, 24, 24150), (12197, 24, 24154), (12198, 24, 24155), (12199, 24, 24156), (12200, 24, 24171), (12201, 24, 24178), (12202, 24, 24195), (12203, 24, 24225), (12204, 24, 24255), (12205, 24, 24267), (12206, 24, 24282), (12207, 24, 24295), (12208, 24, 24308), (12209, 24, 24309), (12210, 24, 24310), (12211, 24, 24311), (12212, 24, 24317), (12213, 24, 24335), (12214, 24, 24345), (12215, 24, 24347), (12216, 24, 24348), (12217, 24, 24364), (12218, 24, 24365), (12219, 24, 24372), (12220, 24, 24375), (12221, 24, 24380), (12222, 24, 24387), (12223, 24, 24392), (12224, 24, 24415), (12225, 24, 24425), (12226, 24, 24445), (12227, 24, 24446), (12228, 24, 24447), (12229, 24, 24452), (12230, 24, 24458), (12231, 24, 24466), (12232, 24, 24479), (12233, 24, 24481), (12234, 24, 24482), (12235, 24, 24509), (12236, 24, 24519), (12237, 24, 24520), (12238, 24, 24538), (12239, 24, 24539), (12240, 24, 24546), (12241, 24, 24547), (12242, 24, 24558), (12243, 24, 24573), (12244, 24, 24582), (12245, 24, 24609), (12246, 24, 24617), (12247, 24, 24631), (12248, 24, 24635), (12249, 24, 24676), (12250, 24, 24684), (12251, 24, 24692), (12252, 24, 24710), (12253, 24, 24712), (12254, 24, 24727), (12255, 24, 24738), (12256, 24, 24750), (12257, 24, 24753), (12258, 24, 24794), (12259, 24, 24803), (12260, 24, 24805), (12261, 24, 24818), (12262, 24, 24842), (12263, 24, 24847), (12264, 24, 24848), (12265, 24, 24849), (12266, 24, 24868), (12267, 24, 24871), (12268, 24, 24875), (12269, 24, 24880), (12270, 24, 24881), (12271, 24, 24886), (12272, 24, 24887), (12273, 24, 24904), (12274, 24, 24917), (12275, 24, 24919), (12276, 24, 24923), (12277, 24, 24935), (12278, 24, 24941), (12279, 24, 24942), (12280, 24, 24946), (12281, 24, 24978), (12330, 25, 2916), (12331, 25, 3027), (12332, 25, 4899), (12333, 25, 5073), (12334, 25, 5341), (12335, 25, 5395), (12336, 25, 5619), (12337, 25, 5698), (12338, 25, 6069), (12339, 25, 6749), (12340, 25, 7042), (12341, 25, 8276), (12342, 25, 8519), (12343, 25, 8889), (12344, 25, 9240), (12345, 25, 9547), (12346, 25, 10096), (12347, 25, 10838), (12348, 25, 10869), (12349, 25, 11015), (12350, 25, 11452), (12351, 25, 11882), (12352, 25, 12086), (12353, 25, 12124), (12354, 25, 12202), (12355, 25, 12352), (12356, 25, 12416), (12357, 25, 12698), (12358, 25, 12750), (12359, 25, 12835), (12360, 25, 12946), (12361, 25, 12993), (12362, 25, 13327), (12363, 25, 13337), (12364, 25, 13349), (12365, 25, 13358), (12366, 25, 13576), (12367, 25, 13704), (12368, 25, 13842), (12369, 25, 13854), (12370, 25, 14113), (12371, 25, 14177), (12372, 25, 14414), (12373, 25, 14440), (12374, 25, 14577), (12375, 25, 14595), (12376, 25, 14624), (12377, 25, 15019), (12378, 25, 15117), (12379, 25, 15350), (12380, 25, 15415), (12381, 25, 15447), (12382, 25, 15479), (12383, 25, 15484), (12384, 25, 15555), (12385, 25, 15918), (12386, 25, 16025), (12387, 25, 16060), (12388, 25, 16112), (12389, 25, 16160), (12390, 25, 16293), (12391, 25, 16433), (12392, 25, 16467), (12393, 25, 16478), (12394, 25, 16659), (12395, 25, 16711), (12396, 25, 16726), (12397, 25, 16778), (12398, 25, 16780), (12399, 25, 16939), (12400, 25, 16970), (12401, 25, 17034), (12402, 25, 17052), (12403, 25, 17088), (12404, 25, 17099), (12405, 25, 17106), (12406, 25, 17121), (12407, 25, 17211), (12408, 25, 17259), (12409, 25, 17270), (12410, 25, 17458), (12411, 25, 17499), (12412, 25, 17534), (12413, 25, 17604), (12414, 25, 17746), (12415, 25, 17752), (12416, 25, 17805), (12417, 25, 17942), (12418, 25, 17963), (12419, 25, 17966), (12420, 25, 18019), (12421, 25, 18054), (12422, 25, 18115), (12423, 25, 18124), (12424, 25, 18185), (12425, 25, 18239), (12426, 25, 18338), (12427, 25, 18375), (12428, 25, 18422), (12429, 25, 18449), (12430, 25, 18469), (12431, 25, 18473), (12432, 25, 18545), (12433, 25, 18599), (12434, 25, 18643), (12435, 25, 18650), (12436, 25, 18729), (12437, 25, 18768), (12438, 25, 18779), (12439, 25, 18827), (12440, 25, 18857), (12441, 25, 18871), (12442, 25, 18905), (12443, 25, 18935), (12444, 25, 18960), (12445, 25, 18972), (12446, 25, 19099), (12447, 25, 19104), (12448, 25, 19185), (12449, 25, 19201), (12450, 25, 19209), (12451, 25, 19342), (12452, 25, 19377), (12453, 25, 19402), (12454, 25, 19423), (12455, 25, 19473), (12456, 25, 19481), (12457, 25, 19552), (12458, 25, 19555), (12459, 25, 19579), (12460, 25, 19623), (12461, 25, 19632), (12462, 25, 19639), (12463, 25, 19703), (12464, 25, 19721), (12465, 25, 19727), (12466, 25, 19736), (12467, 25, 19762), (12468, 25, 19763), (12469, 25, 19822), (12470, 25, 19989), (12471, 25, 19994), (12472, 25, 19997), (12473, 25, 20051), (12474, 25, 20092), (12475, 25, 20108), (12476, 25, 20135), (12477, 25, 20153), (12478, 25, 20161), (12479, 25, 20168), (12480, 25, 20178), (12481, 25, 20188), (12482, 25, 20202), (12483, 25, 20237), (12484, 25, 20275), (12485, 25, 20293), (12486, 25, 20323), (12487, 25, 20339), (12488, 25, 20349), (12489, 25, 20407), (12490, 25, 20416), (12491, 25, 20439), (12492, 25, 20457), (12493, 25, 20464), (12494, 25, 20486), (12495, 25, 20507), (12496, 25, 20514), (12497, 25, 20632), (12498, 25, 20692), (12499, 25, 20769), (12500, 25, 20808), (12501, 25, 20814), (12502, 25, 20827); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (12503, 25, 20854), (12504, 25, 20941), (12505, 25, 20951), (12506, 25, 20985), (12507, 25, 20995), (12508, 25, 21001), (12509, 25, 21021), (12510, 25, 21057), (12511, 25, 21090), (12512, 25, 21100), (12513, 25, 21112), (12514, 25, 21157), (12515, 25, 21225), (12516, 25, 21240), (12517, 25, 21245), (12518, 25, 21271), (12519, 25, 21273), (12520, 25, 21296), (12521, 25, 21311), (12522, 25, 21393), (12523, 25, 21423), (12524, 25, 21465), (12525, 25, 21483), (12526, 25, 21490), (12527, 25, 21520), (12528, 25, 21534), (12529, 25, 21535), (12530, 25, 21557), (12531, 25, 21564), (12532, 25, 21570), (12533, 25, 21615), (12534, 25, 21627), (12535, 25, 21649), (12536, 25, 21706), (12537, 25, 21708), (12538, 25, 21722), (12539, 25, 21740), (12540, 25, 21747), (12541, 25, 21761), (12542, 25, 21803), (12543, 25, 21810), (12544, 25, 21841), (12545, 25, 21905), (12546, 25, 21925), (12547, 25, 21956), (12548, 25, 21974), (12549, 25, 22003), (12550, 25, 22029), (12551, 25, 22036), (12552, 25, 22051), (12553, 25, 22054), (12554, 25, 22064), (12555, 25, 22073), (12556, 25, 22086), (12557, 25, 22110), (12558, 25, 22117), (12559, 25, 22135), (12560, 25, 22203), (12561, 25, 22205), (12562, 25, 22216), (12563, 25, 22272), (12564, 25, 22317), (12565, 25, 22336), (12566, 25, 22340), (12567, 25, 22352), (12568, 25, 22375), (12569, 25, 22377), (12570, 25, 22391), (12571, 25, 22399), (12572, 25, 22407), (12573, 25, 22418), (12574, 25, 22427), (12575, 25, 22438), (12576, 25, 22443), (12577, 25, 22449), (12578, 25, 22459), (12579, 25, 22475), (12580, 25, 22477), (12581, 25, 22490), (12582, 25, 22506), (12583, 25, 22508), (12584, 25, 22525), (12585, 25, 22530), (12586, 25, 22542), (12587, 25, 22565), (12588, 25, 22580), (12589, 25, 22589), (12590, 25, 22600), (12591, 25, 22624), (12592, 25, 22634), (12593, 25, 22648), (12594, 25, 22651), (12595, 25, 22658), (12596, 25, 22665), (12597, 25, 22717), (12598, 25, 22719), (12599, 25, 22723), (12600, 25, 22725), (12601, 25, 22730), (12602, 25, 22766), (12603, 25, 22778), (12604, 25, 22785), (12605, 25, 22835), (12606, 25, 22848), (12607, 25, 22855), (12608, 25, 22894), (12609, 25, 22898), (12610, 25, 22914), (12611, 25, 22953), (12612, 25, 22955), (12613, 25, 22962), (12614, 25, 22963), (12615, 25, 22967), (12616, 25, 22989), (12617, 25, 22990), (12618, 25, 22991), (12619, 25, 23073), (12620, 25, 23087), (12621, 25, 23098), (12622, 25, 23104), (12623, 25, 23114), (12624, 25, 23116), (12625, 25, 23141), (12626, 25, 23145), (12627, 25, 23170), (12628, 25, 23177), (12629, 25, 23189), (12630, 25, 23227), (12631, 25, 23231), (12632, 25, 23239), (12633, 25, 23291), (12634, 25, 23328), (12635, 25, 23329), (12636, 25, 23343), (12637, 25, 23347), (12638, 25, 23349), (12639, 25, 23351), (12640, 25, 23353), (12641, 25, 23356), (12642, 25, 23360), (12643, 25, 23361), (12644, 25, 23366), (12645, 25, 23370), (12646, 25, 23374), (12647, 25, 23385), (12648, 25, 23399), (12649, 25, 23420), (12650, 25, 23434), (12651, 25, 23458), (12652, 25, 23465), (12653, 25, 23472), (12654, 25, 23485), (12655, 25, 23492), (12656, 25, 23499), (12657, 25, 23502), (12658, 25, 23521), (12659, 25, 23544), (12660, 25, 23552), (12661, 25, 23553), (12662, 25, 23554), (12663, 25, 23555), (12664, 25, 23556), (12665, 25, 23557), (12666, 25, 23563), (12667, 25, 23566), (12668, 25, 23577), (12669, 25, 23585), (12670, 25, 23594), (12671, 25, 23598), (12672, 25, 23600), (12673, 25, 23602), (12674, 25, 23605), (12675, 25, 23622), (12676, 25, 23624), (12677, 25, 23625), (12678, 25, 23627), (12679, 25, 23649), (12680, 25, 23696), (12681, 25, 23704), (12682, 25, 23708), (12683, 25, 23711), (12684, 25, 23716), (12685, 25, 23718), (12686, 25, 23721), (12687, 25, 23767), (12688, 25, 23775), (12689, 25, 23782), (12690, 25, 23791), (12691, 25, 23800), (12692, 25, 23824), (12693, 25, 23827), (12694, 25, 23828), (12695, 25, 23833), (12696, 25, 23851), (12697, 25, 23852), (12698, 25, 23865), (12699, 25, 23866), (12700, 25, 23867), (12701, 25, 23868), (12702, 25, 23876), (12703, 25, 23893), (12704, 25, 23894), (12705, 25, 23895), (12706, 25, 23907), (12707, 25, 23909), (12708, 25, 23914), (12709, 25, 23916), (12710, 25, 23918), (12711, 25, 23925), (12712, 25, 23930), (12713, 25, 23945), (12714, 25, 23967), (12715, 25, 23970), (12716, 25, 23988), (12717, 25, 23994), (12718, 25, 24003), (12719, 25, 24004), (12720, 25, 24017), (12721, 25, 24022), (12722, 25, 24023), (12723, 25, 24040), (12724, 25, 24057), (12725, 25, 24066), (12726, 25, 24070), (12727, 25, 24080), (12728, 25, 24086), (12729, 25, 24090), (12730, 25, 24113), (12731, 25, 24133), (12732, 25, 24136), (12733, 25, 24137), (12734, 25, 24193), (12735, 25, 24197), (12736, 25, 24201), (12737, 25, 24231), (12738, 25, 24235), (12739, 25, 24241), (12740, 25, 24245), (12741, 25, 24252), (12742, 25, 24258), (12743, 25, 24268), (12744, 25, 24283), (12745, 25, 24301), (12746, 25, 24355), (12747, 25, 24356), (12748, 25, 24373), (12749, 25, 24376), (12750, 25, 24377), (12751, 25, 24378), (12752, 25, 24379), (12753, 25, 24385), (12754, 25, 24389), (12755, 25, 24422), (12756, 25, 24443), (12757, 25, 24444), (12758, 25, 24452), (12759, 25, 24465), (12760, 25, 24467), (12761, 25, 24469), (12762, 25, 24491), (12763, 25, 24507), (12764, 25, 24510), (12765, 25, 24513), (12766, 25, 24514), (12767, 25, 24515), (12768, 25, 24516), (12769, 25, 24525), (12770, 25, 24527), (12771, 25, 24528), (12772, 25, 24529), (12773, 25, 24530), (12774, 25, 24532), (12775, 25, 24533), (12776, 25, 24534), (12777, 25, 24541), (12778, 25, 24553), (12779, 25, 24567), (12780, 25, 24576), (12781, 25, 24577), (12782, 25, 24580), (12783, 25, 24589), (12784, 25, 24590), (12785, 25, 24599), (12786, 25, 24604), (12787, 25, 24613), (12788, 25, 24640), (12789, 25, 24648), (12790, 25, 24664), (12791, 25, 24667), (12792, 25, 24676), (12793, 25, 24677), (12794, 25, 24687), (12795, 25, 24713), (12796, 25, 24719), (12797, 25, 24730), (12798, 25, 24731), (12799, 25, 24742), (12800, 25, 24744), (12801, 25, 24751), (12802, 25, 24767), (12803, 25, 24768), (12804, 25, 24769), (12805, 25, 24772), (12806, 25, 24786), (12807, 25, 24788), (12808, 25, 24789), (12809, 25, 24800), (12810, 25, 24803), (12811, 25, 24812), (12812, 25, 24823), (12813, 25, 24826), (12814, 25, 24828), (12815, 25, 24829), (12816, 25, 24830), (12817, 25, 24839), (12818, 25, 24841), (12819, 25, 24844), (12820, 25, 24848), (12821, 25, 24850), (12822, 25, 24852), (12823, 25, 24856), (12824, 25, 24858), (12825, 25, 24869), (12826, 25, 24874), (12827, 25, 24883), (12828, 25, 24887), (12829, 25, 24893), (12830, 25, 24898), (12831, 25, 24899), (12832, 25, 24903), (12833, 25, 24911), (12834, 25, 24912), (12835, 25, 24915), (12836, 25, 24929), (12837, 25, 24931), (12838, 25, 24933), (12839, 25, 24939), (12840, 25, 24940), (12841, 25, 24958), (12842, 25, 24964), (12843, 25, 24977), (12844, 25, 24979), (12845, 25, 25219), (13353, 26, 223), (13354, 26, 348), (13355, 26, 476), (13356, 26, 563), (13357, 26, 587), (13358, 26, 594), (13359, 26, 595), (13360, 26, 642), (13361, 26, 732), (13362, 26, 806), (13363, 26, 835), (13364, 26, 841), (13365, 26, 855), (13366, 26, 883), (13367, 26, 978), (13368, 26, 998), (13369, 26, 1013), (13370, 26, 1019), (13371, 26, 1157), (13372, 26, 1176), (13373, 26, 1201), (13374, 26, 1266), (13375, 26, 1273), (13376, 26, 1368), (13377, 26, 1378), (13378, 26, 1450), (13379, 26, 1463), (13380, 26, 1489), (13381, 26, 1552), (13382, 26, 1637), (13383, 26, 1660), (13384, 26, 1720), (13385, 26, 1776), (13386, 26, 1913), (13387, 26, 1966), (13388, 26, 2075), (13389, 26, 2147), (13390, 26, 2231), (13391, 26, 2249), (13392, 26, 2292), (13393, 26, 2293), (13394, 26, 2306), (13395, 26, 2467), (13396, 26, 2477), (13397, 26, 2485), (13398, 26, 2519), (13399, 26, 2545), (13400, 26, 2567), (13401, 26, 2683), (13402, 26, 2783), (13403, 26, 2859), (13404, 26, 2920), (13405, 26, 3070), (13406, 26, 3123), (13407, 26, 3349), (13408, 26, 3353), (13409, 26, 3479), (13410, 26, 3507), (13411, 26, 3562), (13412, 26, 3600), (13413, 26, 3626), (13414, 26, 3737), (13415, 26, 3758), (13416, 26, 3819), (13417, 26, 3857), (13418, 26, 3966), (13419, 26, 4071), (13420, 26, 4072), (13421, 26, 4116), (13422, 26, 4143), (13423, 26, 4147), (13424, 26, 4171), (13425, 26, 4197), (13426, 26, 4350), (13427, 26, 4360), (13428, 26, 4363), (13429, 26, 4372), (13430, 26, 4375), (13431, 26, 4386), (13432, 26, 4422), (13433, 26, 4436), (13434, 26, 4880), (13435, 26, 4890), (13436, 26, 4948), (13437, 26, 5004), (13438, 26, 5040), (13439, 26, 5097), (13440, 26, 5162), (13441, 26, 5165), (13442, 26, 5244), (13443, 26, 5264), (13444, 26, 5472), (13445, 26, 5478), (13446, 26, 5536), (13447, 26, 5568), (13448, 26, 5626), (13449, 26, 5643), (13450, 26, 5681), (13451, 26, 5704), (13452, 26, 5778), (13453, 26, 5815), (13454, 26, 5854), (13455, 26, 5911), (13456, 26, 5973), (13457, 26, 5981), (13458, 26, 6074), (13459, 26, 6089), (13460, 26, 6100), (13461, 26, 6105), (13462, 26, 6111), (13463, 26, 6113), (13464, 26, 6197), (13465, 26, 6211), (13466, 26, 6227), (13467, 26, 6228), (13468, 26, 6251), (13469, 26, 6333), (13470, 26, 6403), (13471, 26, 6550), (13472, 26, 6586), (13473, 26, 6587), (13474, 26, 6665), (13475, 26, 6699), (13476, 26, 6707), (13477, 26, 6779), (13478, 26, 6806), (13479, 26, 6823), (13480, 26, 6842), (13481, 26, 6879), (13482, 26, 6913), (13483, 26, 6934), (13484, 26, 6965), (13485, 26, 7018), (13486, 26, 7220), (13487, 26, 7280), (13488, 26, 7297), (13489, 26, 7301), (13490, 26, 7359), (13491, 26, 7368), (13492, 26, 7442), (13493, 26, 7448), (13494, 26, 7478), (13495, 26, 7499), (13496, 26, 7647), (13497, 26, 7718), (13498, 26, 7863), (13499, 26, 8001), (13500, 26, 8006), (13501, 26, 8036), (13502, 26, 8048), (13503, 26, 8119), (13504, 26, 8206), (13505, 26, 8292), (13506, 26, 8314), (13507, 26, 8397), (13508, 26, 8420), (13509, 26, 8471), (13510, 26, 8473), (13511, 26, 8477), (13512, 26, 8487), (13513, 26, 8573), (13514, 26, 8576), (13515, 26, 8624), (13516, 26, 8877), (13517, 26, 8973), (13518, 26, 8996), (13519, 26, 9033), (13520, 26, 9095), (13521, 26, 9135), (13522, 26, 9142), (13523, 26, 9170), (13524, 26, 9201), (13525, 26, 9219), (13526, 26, 9238), (13527, 26, 9272), (13528, 26, 9278), (13529, 26, 9284), (13530, 26, 9292), (13531, 26, 9315), (13532, 26, 9389), (13533, 26, 9544), (13534, 26, 9555), (13535, 26, 9740), (13536, 26, 9863), (13537, 26, 9950), (13538, 26, 9960), (13539, 26, 9967), (13540, 26, 9982), (13541, 26, 10050), (13542, 26, 10058), (13543, 26, 10200), (13544, 26, 10203), (13545, 26, 10241), (13546, 26, 10369), (13547, 26, 10552), (13548, 26, 10561), (13549, 26, 10647), (13550, 26, 10672), (13551, 26, 10707), (13552, 26, 10829), (13553, 26, 10939), (13554, 26, 10954), (13555, 26, 10974), (13556, 26, 11004), (13557, 26, 11027), (13558, 26, 11117), (13559, 26, 11118), (13560, 26, 11129), (13561, 26, 11223), (13562, 26, 11289), (13563, 26, 11376), (13564, 26, 11464), (13565, 26, 11585), (13566, 26, 11841), (13567, 26, 11864), (13568, 26, 11956), (13569, 26, 12312), (13570, 26, 12406), (13571, 26, 12510), (13572, 26, 12605), (13573, 26, 12623), (13574, 26, 12687), (13575, 26, 12795), (13576, 26, 12853), (13577, 26, 12874), (13578, 26, 13034), (13579, 26, 13095), (13580, 26, 13175), (13581, 26, 13267), (13582, 26, 13278), (13583, 26, 13293), (13584, 26, 13403), (13585, 26, 13422), (13586, 26, 13535), (13587, 26, 13732), (13588, 26, 13752), (13589, 26, 13969), (13590, 26, 14140), (13591, 26, 14287), (13592, 26, 14292), (13593, 26, 14307), (13594, 26, 14385), (13595, 26, 14401), (13596, 26, 14438), (13597, 26, 14574), (13598, 26, 14643), (13599, 26, 14834), (13600, 26, 14916), (13601, 26, 15167), (13602, 26, 15354), (13603, 26, 15373), (13604, 26, 15377), (13605, 26, 15419), (13606, 26, 15422), (13607, 26, 15451), (13608, 26, 15477), (13609, 26, 15502), (13610, 26, 15865), (13611, 26, 16193), (13612, 26, 16349), (13613, 26, 16629), (13614, 26, 16669), (13615, 26, 16672), (13616, 26, 16706), (13617, 26, 16850), (13618, 26, 17016), (13619, 26, 17159), (13620, 26, 17260), (13621, 26, 17282), (13622, 26, 17306), (13623, 26, 17546), (13624, 26, 17750), (13625, 26, 17756), (13626, 26, 17924), (13627, 26, 17957), (13628, 26, 17960), (13629, 26, 18267), (13630, 26, 18410), (13631, 26, 18429), (13632, 26, 18616), (13633, 26, 18860), (13634, 26, 19194), (13635, 26, 19365), (13636, 26, 19410), (13637, 26, 19534), (13638, 26, 19637), (13639, 26, 20098), (13640, 26, 20373), (13641, 26, 20424), (13642, 26, 20546), (13643, 26, 20797), (13644, 26, 21110), (13645, 26, 21131), (13646, 26, 21187), (13647, 26, 21276), (13648, 26, 21306), (13649, 26, 21344), (13650, 26, 21380), (13651, 26, 21412), (13652, 26, 21424), (13653, 26, 21682), (13654, 26, 21783), (13655, 26, 21936), (13656, 26, 22212), (13657, 26, 22277), (13658, 26, 22927), (13659, 26, 23010), (13660, 26, 23258), (13661, 26, 23527), (13662, 26, 23669), (13663, 26, 23693), (13664, 26, 23816), (13665, 26, 23927), (13666, 26, 23928), (13667, 26, 23998), (13668, 26, 24034), (13669, 26, 24073), (13670, 26, 24253), (13671, 26, 24660), (13672, 26, 24851), (13673, 26, 24998), (13674, 26, 25026), (13675, 26, 25062), (13676, 26, 25169), (13864, 27, 7), (13865, 27, 17), (13866, 27, 18), (13867, 27, 24), (13868, 27, 35), (13869, 27, 90), (13870, 27, 106), (13871, 27, 140), (13872, 27, 142), (13873, 27, 158), (13874, 27, 161), (13875, 27, 188), (13876, 27, 190), (13877, 27, 194), (13878, 27, 204), (13879, 27, 205), (13880, 27, 215), (13881, 27, 235), (13882, 27, 239), (13883, 27, 250), (13884, 27, 259), (13885, 27, 263), (13886, 27, 270), (13887, 27, 279), (13888, 27, 296), (13889, 27, 311), (13890, 27, 318), (13891, 27, 364), (13892, 27, 381), (13893, 27, 400), (13894, 27, 408), (13895, 27, 443), (13896, 27, 454), (13897, 27, 459), (13898, 27, 476), (13899, 27, 488), (13900, 27, 509), (13901, 27, 525), (13902, 27, 528), (13903, 27, 532), (13904, 27, 561), (13905, 27, 589), (13906, 27, 603), (13907, 27, 609), (13908, 27, 628), (13909, 27, 637), (13910, 27, 647), (13911, 27, 689), (13912, 27, 696), (13913, 27, 725), (13914, 27, 729), (13915, 27, 738), (13916, 27, 752), (13917, 27, 754), (13918, 27, 774), (13919, 27, 829), (13920, 27, 845), (13921, 27, 853), (13922, 27, 870), (13923, 27, 905), (13924, 27, 914), (13925, 27, 954), (13926, 27, 973), (13927, 27, 980), (13928, 27, 981), (13929, 27, 992), (13930, 27, 1001), (13931, 27, 1005), (13932, 27, 1027), (13933, 27, 1035), (13934, 27, 1049), (13935, 27, 1068), (13936, 27, 1089), (13937, 27, 1097), (13938, 27, 1112), (13939, 27, 1113), (13940, 27, 1119), (13941, 27, 1138), (13942, 27, 1187), (13943, 27, 1197), (13944, 27, 1204), (13945, 27, 1218), (13946, 27, 1220), (13947, 27, 1245), (13948, 27, 1289), (13949, 27, 1290), (13950, 27, 1305), (13951, 27, 1319), (13952, 27, 1325), (13953, 27, 1348), (13954, 27, 1354), (13955, 27, 1361), (13956, 27, 1369), (13957, 27, 1381), (13958, 27, 1409), (13959, 27, 1415), (13960, 27, 1422), (13961, 27, 1427), (13962, 27, 1439), (13963, 27, 1453), (13964, 27, 1454), (13965, 27, 1478), (13966, 27, 1547), (13967, 27, 1580), (13968, 27, 1651), (13969, 27, 1665), (13970, 27, 1670), (13971, 27, 1672), (13972, 27, 1703), (13973, 27, 1709), (13974, 27, 1725), (13975, 27, 1737), (13976, 27, 1740), (13977, 27, 1748), (13978, 27, 1754), (13979, 27, 1770), (13980, 27, 1863), (13981, 27, 1872), (13982, 27, 1886), (13983, 27, 1914), (13984, 27, 1941), (13985, 27, 1945), (13986, 27, 1950), (13987, 27, 1956), (13988, 27, 1969), (13989, 27, 1981), (13990, 27, 1989), (13991, 27, 1994), (13992, 27, 2001), (13993, 27, 2021), (13994, 27, 2030), (13995, 27, 2032), (13996, 27, 2062), (13997, 27, 2134), (13998, 27, 2159), (13999, 27, 2173), (14000, 27, 2196), (14001, 27, 2205), (14002, 27, 2206), (14003, 27, 2249), (14004, 27, 2318), (14005, 27, 2352), (14006, 27, 2401), (14007, 27, 2407), (14008, 27, 2413), (14009, 27, 2455), (14010, 27, 2466), (14011, 27, 2469), (14012, 27, 2473), (14013, 27, 2484), (14014, 27, 2491), (14015, 27, 2556), (14016, 27, 2651), (14017, 27, 2653), (14018, 27, 2696), (14019, 27, 2698), (14020, 27, 2707), (14021, 27, 2711), (14022, 27, 2752), (14023, 27, 2816), (14024, 27, 2837), (14025, 27, 2841), (14026, 27, 2848), (14027, 27, 2888), (14028, 27, 2889), (14029, 27, 2909), (14030, 27, 2940), (14031, 27, 2980), (14032, 27, 3007), (14033, 27, 3043), (14034, 27, 3058), (14035, 27, 3061), (14036, 27, 3083), (14037, 27, 3153), (14038, 27, 3175), (14039, 27, 3191), (14040, 27, 3197), (14041, 27, 3224), (14042, 27, 3225), (14043, 27, 3305), (14044, 27, 3322), (14045, 27, 3324), (14046, 27, 3326), (14047, 27, 3337), (14048, 27, 3353), (14049, 27, 3392), (14050, 27, 3419), (14051, 27, 3425), (14052, 27, 3448), (14053, 27, 3451), (14054, 27, 3502), (14055, 27, 3503), (14056, 27, 3515), (14057, 27, 3554), (14058, 27, 3557), (14059, 27, 3561), (14060, 27, 3567), (14061, 27, 3572), (14062, 27, 3583), (14063, 27, 3591), (14064, 27, 3592), (14065, 27, 3601), (14066, 27, 3605), (14067, 27, 3624), (14068, 27, 3668), (14069, 27, 3674), (14070, 27, 3687), (14071, 27, 3704), (14072, 27, 3709), (14073, 27, 3715), (14074, 27, 3716), (14075, 27, 3721), (14076, 27, 3731), (14077, 27, 3763), (14078, 27, 3772), (14079, 27, 3773), (14080, 27, 3779), (14081, 27, 3845), (14082, 27, 3881), (14083, 27, 3887), (14084, 27, 3891), (14085, 27, 3896), (14086, 27, 3899), (14087, 27, 3901), (14088, 27, 3926), (14089, 27, 3933), (14090, 27, 3944), (14091, 27, 3993), (14092, 27, 4006), (14093, 27, 4054), (14094, 27, 4061), (14095, 27, 4081), (14096, 27, 4124), (14097, 27, 4128), (14098, 27, 4178), (14099, 27, 4225), (14100, 27, 4230), (14101, 27, 4236), (14102, 27, 4245), (14103, 27, 4254), (14104, 27, 4284), (14105, 27, 4301), (14106, 27, 4304), (14107, 27, 4319), (14108, 27, 4334), (14109, 27, 4429), (14110, 27, 4430), (14111, 27, 4461), (14112, 27, 4523), (14113, 27, 4543), (14114, 27, 4564), (14115, 27, 4571), (14116, 27, 4573), (14117, 27, 4645), (14118, 27, 4708), (14119, 27, 4723), (14120, 27, 4743), (14121, 27, 4752), (14122, 27, 4796), (14123, 27, 4826), (14124, 27, 4841), (14125, 27, 4842), (14126, 27, 4855), (14127, 27, 4874), (14128, 27, 4889), (14129, 27, 4941), (14130, 27, 4942), (14131, 27, 4956), (14132, 27, 4962), (14133, 27, 4988), (14134, 27, 5002), (14135, 27, 5013), (14136, 27, 5024), (14137, 27, 5082), (14138, 27, 5190), (14139, 27, 5191), (14140, 27, 5202), (14141, 27, 5218), (14142, 27, 5231), (14143, 27, 5291), (14144, 27, 5310), (14145, 27, 5330), (14146, 27, 5337), (14147, 27, 5390), (14148, 27, 5392), (14149, 27, 5406), (14150, 27, 5408), (14151, 27, 5427), (14152, 27, 5471), (14153, 27, 5503), (14154, 27, 5546), (14155, 27, 5611), (14156, 27, 5633), (14157, 27, 5662), (14158, 27, 5714), (14159, 27, 5724), (14160, 27, 5740), (14161, 27, 5741), (14162, 27, 5748), (14163, 27, 5784), (14164, 27, 5816), (14165, 27, 5824), (14166, 27, 5850), (14167, 27, 5889), (14168, 27, 5902), (14169, 27, 5944), (14170, 27, 5980), (14171, 27, 5985), (14172, 27, 6044), (14173, 27, 6054), (14174, 27, 6101), (14175, 27, 6109), (14176, 27, 6110), (14177, 27, 6151), (14178, 27, 6165), (14179, 27, 6184), (14180, 27, 6245), (14181, 27, 6247), (14182, 27, 6256), (14183, 27, 6267), (14184, 27, 6277), (14185, 27, 6311), (14186, 27, 6341), (14187, 27, 6343), (14188, 27, 6375), (14189, 27, 6378), (14190, 27, 6409), (14191, 27, 6411), (14192, 27, 6424), (14193, 27, 6443), (14194, 27, 6461), (14195, 27, 6472), (14196, 27, 6478), (14197, 27, 6506), (14198, 27, 6523), (14199, 27, 6540), (14200, 27, 6626), (14201, 27, 6629), (14202, 27, 6657), (14203, 27, 6659), (14204, 27, 6725), (14205, 27, 6729), (14206, 27, 6746), (14207, 27, 6761), (14208, 27, 6763), (14209, 27, 6769), (14210, 27, 6800), (14211, 27, 6824), (14212, 27, 6878), (14213, 27, 6896), (14214, 27, 6897), (14215, 27, 6901), (14216, 27, 6981), (14217, 27, 6995), (14218, 27, 7013), (14219, 27, 7022), (14220, 27, 7061), (14221, 27, 7064), (14222, 27, 7081), (14223, 27, 7172), (14224, 27, 7178), (14225, 27, 7188), (14226, 27, 7239), (14227, 27, 7305), (14228, 27, 7321), (14229, 27, 7332), (14230, 27, 7412), (14231, 27, 7417), (14232, 27, 7434), (14233, 27, 7447), (14234, 27, 7453), (14235, 27, 7505), (14236, 27, 7515), (14237, 27, 7517), (14238, 27, 7552), (14239, 27, 7563), (14240, 27, 7564), (14241, 27, 7566), (14242, 27, 7590), (14243, 27, 7630), (14244, 27, 7664), (14245, 27, 7665), (14246, 27, 7770), (14247, 27, 7773), (14248, 27, 7779), (14249, 27, 7782), (14250, 27, 7790), (14251, 27, 7827), (14252, 27, 7859), (14253, 27, 7881), (14254, 27, 7889), (14255, 27, 7912), (14256, 27, 7935), (14257, 27, 7981), (14258, 27, 7982), (14259, 27, 7987), (14260, 27, 8037), (14261, 27, 8061), (14262, 27, 8082), (14263, 27, 8094), (14264, 27, 8103), (14265, 27, 8122), (14266, 27, 8199), (14267, 27, 8204), (14268, 27, 8252), (14269, 27, 8258), (14270, 27, 8265), (14271, 27, 8311), (14272, 27, 8341), (14273, 27, 8361), (14274, 27, 8475), (14275, 27, 8509), (14276, 27, 8515), (14277, 27, 8535), (14278, 27, 8552), (14279, 27, 8578), (14280, 27, 8596), (14281, 27, 8597), (14282, 27, 8641), (14283, 27, 8678), (14284, 27, 8686), (14285, 27, 8693), (14286, 27, 8716), (14287, 27, 8727), (14288, 27, 8789), (14289, 27, 8823), (14290, 27, 8824), (14291, 27, 8846), (14292, 27, 8865), (14293, 27, 8935), (14294, 27, 8947), (14295, 27, 8985), (14296, 27, 9017), (14297, 27, 9020), (14298, 27, 9031), (14299, 27, 9084), (14300, 27, 9100), (14301, 27, 9105), (14302, 27, 9171), (14303, 27, 9179), (14304, 27, 9230), (14305, 27, 9234), (14306, 27, 9285), (14307, 27, 9291), (14308, 27, 9312), (14309, 27, 9362), (14310, 27, 9370), (14311, 27, 9473), (14312, 27, 9482), (14313, 27, 9568), (14314, 27, 9591), (14315, 27, 9627), (14316, 27, 9644), (14317, 27, 9671), (14318, 27, 9672), (14319, 27, 9694), (14320, 27, 9714), (14321, 27, 9731), (14322, 27, 9732), (14323, 27, 9751), (14324, 27, 9812), (14325, 27, 9835), (14326, 27, 9954), (14327, 27, 9975), (14328, 27, 9988), (14329, 27, 10014), (14330, 27, 10052), (14331, 27, 10073), (14332, 27, 10154), (14333, 27, 10165), (14334, 27, 10194), (14335, 27, 10206), (14336, 27, 10263), (14337, 27, 10305), (14338, 27, 10343), (14339, 27, 10368), (14340, 27, 10385), (14341, 27, 10394), (14342, 27, 10430), (14343, 27, 10483), (14344, 27, 10516), (14345, 27, 10522), (14346, 27, 10555), (14347, 27, 10613), (14348, 27, 10616), (14349, 27, 10690), (14350, 27, 10857), (14351, 27, 11004), (14352, 27, 11010), (14353, 27, 11068), (14354, 27, 11073), (14355, 27, 11093), (14356, 27, 11095), (14357, 27, 11173), (14358, 27, 11212), (14359, 27, 11257), (14360, 27, 11296), (14361, 27, 11320), (14362, 27, 11427), (14363, 27, 11520), (14364, 27, 11533), (14365, 27, 11536), (14366, 27, 11565), (14367, 27, 11632), (14368, 27, 11644), (14369, 27, 11658), (14370, 27, 11661), (14371, 27, 11696), (14372, 27, 11701), (14373, 27, 11852), (14374, 27, 11897), (14375, 27, 11939), (14376, 27, 12121), (14377, 27, 12196), (14378, 27, 12276), (14379, 27, 12291), (14380, 27, 12300), (14381, 27, 12301), (14382, 27, 12314), (14383, 27, 12358), (14384, 27, 12526), (14385, 27, 12549), (14386, 27, 12555), (14387, 27, 12564), (14388, 27, 12646), (14389, 27, 12672), (14390, 27, 12728), (14391, 27, 12769), (14392, 27, 12886), (14393, 27, 12917), (14394, 27, 12922), (14395, 27, 12924), (14396, 27, 12935), (14397, 27, 12996), (14398, 27, 13007), (14399, 27, 13019), (14400, 27, 13026), (14401, 27, 13050), (14402, 27, 13105), (14403, 27, 13153), (14404, 27, 13201), (14405, 27, 13214), (14406, 27, 13252), (14407, 27, 13331), (14408, 27, 13363), (14409, 27, 13381), (14410, 27, 13397), (14411, 27, 13398), (14412, 27, 13471), (14413, 27, 13581), (14414, 27, 13590), (14415, 27, 13688), (14416, 27, 13694), (14417, 27, 13809), (14418, 27, 13855), (14419, 27, 13856), (14420, 27, 13860), (14421, 27, 13877), (14422, 27, 13882), (14423, 27, 13904), (14424, 27, 13918), (14425, 27, 13964), (14426, 27, 14001), (14427, 27, 14002), (14428, 27, 14023), (14429, 27, 14029), (14430, 27, 14040), (14431, 27, 14072), (14432, 27, 14130), (14433, 27, 14151), (14434, 27, 14253), (14435, 27, 14273), (14436, 27, 14383), (14437, 27, 14474), (14438, 27, 14531), (14439, 27, 14546), (14440, 27, 14605), (14441, 27, 14745), (14442, 27, 14863), (14443, 27, 14898), (14444, 27, 14933), (14445, 27, 14957), (14446, 27, 14958), (14447, 27, 15089), (14448, 27, 15105), (14449, 27, 15106), (14450, 27, 15130), (14451, 27, 15196), (14452, 27, 15200), (14453, 27, 15307), (14454, 27, 15320), (14455, 27, 15400), (14456, 27, 15436), (14457, 27, 15461), (14458, 27, 15589), (14459, 27, 15627), (14460, 27, 15629), (14461, 27, 15659), (14462, 27, 15947), (14463, 27, 15993), (14464, 27, 16056), (14465, 27, 16235), (14466, 27, 16350), (14467, 27, 16353), (14468, 27, 16503), (14469, 27, 16511), (14470, 27, 16550), (14471, 27, 16743), (14472, 27, 16771), (14473, 27, 16814), (14474, 27, 16837), (14475, 27, 16840), (14476, 27, 16910), (14477, 27, 16945), (14478, 27, 16949), (14479, 27, 16988), (14480, 27, 17000), (14481, 27, 17043), (14482, 27, 17059), (14483, 27, 17073), (14484, 27, 17175), (14485, 27, 17230), (14486, 27, 17337), (14487, 27, 17403), (14488, 27, 17418), (14489, 27, 17565), (14490, 27, 17608), (14491, 27, 17691), (14492, 27, 17820), (14493, 27, 17842), (14494, 27, 17867), (14495, 27, 17977), (14496, 27, 17995), (14497, 27, 18025), (14498, 27, 18028), (14499, 27, 18047), (14500, 27, 18162), (14501, 27, 18230), (14502, 27, 18276), (14503, 27, 18352), (14504, 27, 18362), (14505, 27, 18398), (14506, 27, 18406), (14507, 27, 18475), (14508, 27, 18486), (14509, 27, 18636), (14510, 27, 18694), (14511, 27, 18734), (14512, 27, 18777), (14513, 27, 18780), (14514, 27, 18806), (14515, 27, 18955), (14516, 27, 18961), (14517, 27, 18989), (14518, 27, 18993), (14519, 27, 19000), (14520, 27, 19070), (14521, 27, 19101), (14522, 27, 19167), (14523, 27, 19190), (14524, 27, 19232), (14525, 27, 19283), (14526, 27, 19288), (14527, 27, 19305), (14528, 27, 19329), (14529, 27, 19405), (14530, 27, 19430), (14531, 27, 19460), (14532, 27, 19463), (14533, 27, 19484), (14534, 27, 19560), (14535, 27, 19564), (14536, 27, 19612), (14537, 27, 19651), (14538, 27, 19739), (14539, 27, 19754), (14540, 27, 19770), (14541, 27, 19771), (14542, 27, 19782), (14543, 27, 19789), (14544, 27, 19817), (14545, 27, 19834), (14546, 27, 19929), (14547, 27, 19956), (14548, 27, 19980), (14549, 27, 20062), (14550, 27, 20160), (14551, 27, 20181), (14552, 27, 20300), (14553, 27, 20371), (14554, 27, 20382), (14555, 27, 20391), (14556, 27, 20531), (14557, 27, 20543), (14558, 27, 20679), (14559, 27, 20686), (14560, 27, 20712), (14561, 27, 20747), (14562, 27, 20759), (14563, 27, 20831), (14564, 27, 20866), (14565, 27, 20907), (14566, 27, 20924), (14567, 27, 21227), (14568, 27, 21237), (14569, 27, 21280), (14570, 27, 21294), (14571, 27, 21308), (14572, 27, 21309), (14573, 27, 21334), (14574, 27, 21368), (14575, 27, 21403), (14576, 27, 21516), (14577, 27, 21653), (14578, 27, 21748), (14579, 27, 21802), (14580, 27, 21854), (14581, 27, 21891), (14582, 27, 21907), (14583, 27, 21971), (14584, 27, 22174), (14585, 27, 22431), (14586, 27, 22457), (14587, 27, 22741), (14588, 27, 22777), (14589, 27, 22809), (14590, 27, 22844), (14591, 27, 22921), (14592, 27, 22949), (14593, 27, 23002), (14594, 27, 23050), (14595, 27, 23053), (14596, 27, 23233), (14597, 27, 23412), (14598, 27, 23421), (14599, 27, 23436), (14600, 27, 23476), (14601, 27, 23777), (14602, 27, 24540), (14603, 27, 24561), (14604, 27, 24695), (14605, 27, 24995), (14606, 27, 25066), (14607, 27, 25068), (14608, 27, 25110), (14609, 27, 25114), (14610, 27, 25174), (14887, 28, 7), (14888, 28, 17), (14889, 28, 106), (14890, 28, 140), (14891, 28, 142), (14892, 28, 188), (14893, 28, 194), (14894, 28, 204), (14895, 28, 205), (14896, 28, 215), (14897, 28, 235), (14898, 28, 250), (14899, 28, 259), (14900, 28, 279), (14901, 28, 364), (14902, 28, 381), (14903, 28, 400), (14904, 28, 408), (14905, 28, 603), (14906, 28, 696), (14907, 28, 729), (14908, 28, 738), (14909, 28, 829), (14910, 28, 845), (14911, 28, 992), (14912, 28, 1005), (14913, 28, 1027), (14914, 28, 1089), (14915, 28, 1119), (14916, 28, 1138), (14917, 28, 1187), (14918, 28, 1197), (14919, 28, 1204), (14920, 28, 1245), (14921, 28, 1547), (14922, 28, 1651), (14923, 28, 1670), (14924, 28, 1709), (14925, 28, 1737), (14926, 28, 1945), (14927, 28, 1981), (14928, 28, 2030), (14929, 28, 2032), (14930, 28, 2196), (14931, 28, 2205), (14932, 28, 2407), (14933, 28, 2473), (14934, 28, 2653), (14935, 28, 2698), (14936, 28, 2816), (14937, 28, 2841), (14938, 28, 2888), (14939, 28, 2940), (14940, 28, 3061), (14941, 28, 3175), (14942, 28, 3197), (14943, 28, 3448), (14944, 28, 3502), (14945, 28, 3567), (14946, 28, 3583), (14947, 28, 3591), (14948, 28, 3624), (14949, 28, 3716), (14950, 28, 3721), (14951, 28, 3881), (14952, 28, 4225), (14953, 28, 4334), (14954, 28, 4461), (14955, 28, 4571), (14956, 28, 4723), (14957, 28, 4796), (14958, 28, 5013), (14959, 28, 5190), (14960, 28, 5231), (14961, 28, 5390), (14962, 28, 5633), (14963, 28, 5850), (14964, 28, 5985), (14965, 28, 6151), (14966, 28, 6184), (14967, 28, 6411), (14968, 28, 6461), (14969, 28, 6626), (14970, 28, 6763), (14971, 28, 6878), (14972, 28, 7022), (14973, 28, 7239), (14974, 28, 7305), (14975, 28, 7447), (14976, 28, 7517), (14977, 28, 7564), (14978, 28, 7630), (14979, 28, 7665), (14980, 28, 7773), (14981, 28, 7889), (14982, 28, 7982), (14983, 28, 7987), (14984, 28, 8094), (14985, 28, 8103), (14986, 28, 8122), (14987, 28, 8258), (14988, 28, 8311), (14989, 28, 8509), (14990, 28, 8641), (14991, 28, 8846), (14992, 28, 8935), (14993, 28, 8985), (14994, 28, 9020), (14995, 28, 9031), (14996, 28, 9084), (14997, 28, 9100), (14998, 28, 9234), (14999, 28, 9285), (15000, 28, 9291), (15001, 28, 9482), (15002, 28, 9568), (15003, 28, 9671), (15004, 28, 9672), (15005, 28, 9694), (15006, 28, 9812), (15007, 28, 9975), (15008, 28, 10014), (15009, 28, 10073), (15010, 28, 10165), (15011, 28, 10430), (15012, 28, 10483), (15013, 28, 10516), (15014, 28, 10522), (15015, 28, 10613), (15016, 28, 10616), (15017, 28, 11073), (15018, 28, 11296), (15019, 28, 11632), (15020, 28, 11644), (15021, 28, 11661), (15022, 28, 11696), (15023, 28, 11939), (15024, 28, 12358), (15025, 28, 12526), (15026, 28, 12728), (15027, 28, 12917), (15028, 28, 13252), (15029, 28, 13381), (15030, 28, 13590), (15031, 28, 13688), (15032, 28, 13860), (15033, 28, 13877), (15034, 28, 13882), (15035, 28, 13904), (15036, 28, 14002), (15037, 28, 14023), (15038, 28, 14040), (15039, 28, 14383), (15040, 28, 14474), (15041, 28, 14933), (15042, 28, 14957), (15043, 28, 15196), (15044, 28, 15200), (15045, 28, 15307), (15046, 28, 15320), (15047, 28, 15461), (15048, 28, 15589), (15049, 28, 15629), (15050, 28, 15993), (15051, 28, 16056), (15052, 28, 16503), (15053, 28, 16511), (15054, 28, 16550), (15055, 28, 16743), (15056, 28, 16771), (15057, 28, 16837), (15058, 28, 16840), (15059, 28, 16910), (15060, 28, 16945), (15061, 28, 16988), (15062, 28, 17000), (15063, 28, 17043), (15064, 28, 17073), (15065, 28, 17175), (15066, 28, 17337), (15067, 28, 17691), (15068, 28, 17820), (15069, 28, 17842), (15070, 28, 17867), (15071, 28, 17977), (15072, 28, 17995), (15073, 28, 18047), (15074, 28, 18276), (15075, 28, 18406), (15076, 28, 18475), (15077, 28, 18694), (15078, 28, 18777), (15079, 28, 18806), (15080, 28, 18955), (15081, 28, 18961), (15082, 28, 18993), (15083, 28, 19000), (15084, 28, 19070), (15085, 28, 19101), (15086, 28, 19190), (15087, 28, 19283), (15088, 28, 19288), (15089, 28, 19305), (15090, 28, 19463), (15091, 28, 19484), (15092, 28, 19560), (15093, 28, 19612), (15094, 28, 19739), (15095, 28, 19754), (15096, 28, 19771), (15097, 28, 19789), (15098, 28, 19834), (15099, 28, 19929), (15100, 28, 20382), (15101, 28, 20679), (15102, 28, 20686), (15103, 28, 20712), (15104, 28, 20831), (15105, 28, 20924), (15106, 28, 21237), (15107, 28, 21280), (15108, 28, 21294), (15109, 28, 21308), (15110, 28, 21334), (15111, 28, 21516), (15112, 28, 21748), (15113, 28, 21891), (15114, 28, 22174), (15115, 28, 22431), (15116, 28, 22457), (15117, 28, 22809), (15118, 28, 22844), (15119, 28, 23002), (15120, 28, 23050), (15121, 28, 23412), (15122, 28, 23421), (15123, 28, 24540), (15124, 28, 24995), (15125, 28, 25066), (15126, 28, 25068), (15127, 28, 25110), (15128, 28, 25114), (15142, 29, 90), (15143, 29, 558), (15144, 29, 566), (15145, 29, 768), (15146, 29, 821), (15147, 29, 862), (15148, 29, 1283), (15149, 29, 1415), (15150, 29, 1580), (15151, 29, 1649), (15152, 29, 1733), (15153, 29, 1863), (15154, 29, 1994), (15155, 29, 2001), (15156, 29, 2293), (15157, 29, 3047), (15158, 29, 3128), (15159, 29, 3224), (15160, 29, 3528), (15161, 29, 3561), (15162, 29, 3709), (15163, 29, 3731), (15164, 29, 3891), (15165, 29, 4143), (15166, 29, 4230), (15167, 29, 4254), (15168, 29, 4304), (15169, 29, 4536), (15170, 29, 4708), (15171, 29, 4782), (15172, 29, 4855), (15173, 29, 4890), (15174, 29, 5002), (15175, 29, 5040), (15176, 29, 5097), (15177, 29, 5165), (15178, 29, 5191), (15179, 29, 5357), (15180, 29, 5360), (15181, 29, 5402), (15182, 29, 5408), (15183, 29, 5521), (15184, 29, 5667), (15185, 29, 5772), (15186, 29, 6109), (15187, 29, 6133), (15188, 29, 6165), (15189, 29, 6307), (15190, 29, 6334), (15191, 29, 6335), (15192, 29, 6469), (15193, 29, 6707), (15194, 29, 6924), (15195, 29, 6934), (15196, 29, 7216), (15197, 29, 7246), (15198, 29, 7361), (15199, 29, 7427), (15200, 29, 7515), (15201, 29, 7626), (15202, 29, 7664), (15203, 29, 7770), (15204, 29, 8037), (15205, 29, 8061), (15206, 29, 8111), (15207, 29, 8127), (15208, 29, 8333), (15209, 29, 8420), (15210, 29, 8596), (15211, 29, 8651), (15212, 29, 8716), (15213, 29, 8824), (15214, 29, 8833), (15215, 29, 9017), (15216, 29, 9110), (15217, 29, 9115), (15218, 29, 9171), (15219, 29, 9230), (15220, 29, 9370), (15221, 29, 9679), (15222, 29, 9732), (15223, 29, 9834), (15224, 29, 9914), (15225, 29, 10282), (15226, 29, 10481), (15227, 29, 10489), (15228, 29, 10939), (15229, 29, 11084), (15230, 29, 11322), (15231, 29, 11415), (15232, 29, 12204), (15233, 29, 12205), (15234, 29, 12314), (15235, 29, 12520), (15236, 29, 12672), (15237, 29, 12881), (15238, 29, 13175), (15239, 29, 13267), (15240, 29, 13557), (15241, 29, 13809), (15242, 29, 14284), (15243, 29, 14287), (15244, 29, 14610), (15245, 29, 14863), (15246, 29, 15105), (15247, 29, 15106), (15248, 29, 15260), (15249, 29, 15436), (15250, 29, 16801), (15251, 29, 16964), (15252, 29, 17059), (15253, 29, 17230), (15254, 29, 17425), (15255, 29, 17546), (15256, 29, 17575), (15257, 29, 17684), (15258, 29, 18002), (15259, 29, 18778), (15260, 29, 19120), (15261, 29, 19651), (15262, 29, 19831), (15263, 29, 20472), (15264, 29, 20543), (15265, 29, 20550), (15266, 29, 20772), (15267, 29, 21035), (15268, 29, 21141), (15269, 29, 21934), (15270, 29, 21936), (15271, 29, 21941), (15272, 29, 22445), (15273, 29, 25169), (15397, 30, 18), (15398, 30, 31), (15399, 30, 147), (15400, 30, 207), (15401, 30, 232), (15402, 30, 296), (15403, 30, 381), (15404, 30, 415), (15405, 30, 475), (15406, 30, 476), (15407, 30, 565), (15408, 30, 580), (15409, 30, 637), (15410, 30, 640), (15411, 30, 671), (15412, 30, 686), (15413, 30, 713), (15414, 30, 737), (15415, 30, 746), (15416, 30, 777), (15417, 30, 862), (15418, 30, 1001), (15419, 30, 1014), (15420, 30, 1109), (15421, 30, 1123), (15422, 30, 1354), (15423, 30, 1361), (15424, 30, 1391), (15425, 30, 1396), (15426, 30, 1415), (15427, 30, 1478), (15428, 30, 1645), (15429, 30, 1740), (15430, 30, 1760), (15431, 30, 1789), (15432, 30, 1806), (15433, 30, 1863), (15434, 30, 1879), (15435, 30, 1926), (15436, 30, 2034), (15437, 30, 2096), (15438, 30, 2113), (15439, 30, 2247), (15440, 30, 2336), (15441, 30, 2371), (15442, 30, 2494), (15443, 30, 2556), (15444, 30, 2564), (15445, 30, 2579), (15446, 30, 2592), (15447, 30, 2613), (15448, 30, 2640), (15449, 30, 2735), (15450, 30, 2790), (15451, 30, 2842), (15452, 30, 2866), (15453, 30, 2888), (15454, 30, 2889), (15455, 30, 2914), (15456, 30, 3061), (15457, 30, 3297), (15458, 30, 3379), (15459, 30, 3401), (15460, 30, 3495), (15461, 30, 3531), (15462, 30, 3620), (15463, 30, 3696), (15464, 30, 3709), (15465, 30, 3747), (15466, 30, 3814), (15467, 30, 3851), (15468, 30, 3906), (15469, 30, 3975), (15470, 30, 3976), (15471, 30, 4218), (15472, 30, 4284), (15473, 30, 4333), (15474, 30, 4344), (15475, 30, 4424), (15476, 30, 4497), (15477, 30, 4558), (15478, 30, 4570), (15479, 30, 4681), (15480, 30, 4699), (15481, 30, 4732), (15482, 30, 4758), (15483, 30, 4760), (15484, 30, 4830), (15485, 30, 4835), (15486, 30, 4842), (15487, 30, 4859), (15488, 30, 4988), (15489, 30, 5002), (15490, 30, 5017), (15491, 30, 5032), (15492, 30, 5033), (15493, 30, 5121), (15494, 30, 5177), (15495, 30, 5218), (15496, 30, 5372), (15497, 30, 5373), (15498, 30, 5493), (15499, 30, 5521), (15500, 30, 5543), (15501, 30, 5546), (15502, 30, 5561), (15503, 30, 5597), (15504, 30, 5602), (15505, 30, 5674), (15506, 30, 5772), (15507, 30, 5778), (15508, 30, 5779), (15509, 30, 5816), (15510, 30, 5849), (15511, 30, 5929), (15512, 30, 6078), (15513, 30, 6181), (15514, 30, 6231), (15515, 30, 6297), (15516, 30, 6303), (15517, 30, 6349), (15518, 30, 6352), (15519, 30, 6434), (15520, 30, 6450), (15521, 30, 6455), (15522, 30, 6630), (15523, 30, 6701), (15524, 30, 6924), (15525, 30, 6940), (15526, 30, 6976), (15527, 30, 6981), (15528, 30, 7066), (15529, 30, 7081), (15530, 30, 7135), (15531, 30, 7198), (15532, 30, 7303), (15533, 30, 7344), (15534, 30, 7434), (15535, 30, 7443), (15536, 30, 7453), (15537, 30, 7469), (15538, 30, 7567), (15539, 30, 7650), (15540, 30, 7690), (15541, 30, 7747), (15542, 30, 7827), (15543, 30, 7834), (15544, 30, 7859), (15545, 30, 7947), (15546, 30, 7982), (15547, 30, 8029), (15548, 30, 8090), (15549, 30, 8093), (15550, 30, 8161), (15551, 30, 8190), (15552, 30, 8195), (15553, 30, 8268), (15554, 30, 8361), (15555, 30, 8365), (15556, 30, 8438), (15557, 30, 8482), (15558, 30, 8504), (15559, 30, 8600), (15560, 30, 8686), (15561, 30, 8708), (15562, 30, 8759), (15563, 30, 8789), (15564, 30, 8808), (15565, 30, 8849), (15566, 30, 8865), (15567, 30, 8947), (15568, 30, 8957), (15569, 30, 8984), (15570, 30, 9016), (15571, 30, 9042), (15572, 30, 9100), (15573, 30, 9370), (15574, 30, 9488), (15575, 30, 9511), (15576, 30, 9644), (15577, 30, 9651), (15578, 30, 9665), (15579, 30, 9729), (15580, 30, 9756), (15581, 30, 9771), (15582, 30, 9870), (15583, 30, 9914), (15584, 30, 9942), (15585, 30, 9948), (15586, 30, 9958), (15587, 30, 9988), (15588, 30, 9993), (15589, 30, 10108), (15590, 30, 10183), (15591, 30, 10194), (15592, 30, 10265), (15593, 30, 10282), (15594, 30, 10308), (15595, 30, 10372), (15596, 30, 10445), (15597, 30, 10512), (15598, 30, 10541), (15599, 30, 10715), (15600, 30, 10716), (15601, 30, 11068), (15602, 30, 11299), (15603, 30, 11416), (15604, 30, 11520), (15605, 30, 11534), (15606, 30, 11591), (15607, 30, 11687), (15608, 30, 11736), (15609, 30, 11820), (15610, 30, 11937), (15611, 30, 12170), (15612, 30, 12398), (15613, 30, 12420), (15614, 30, 12498), (15615, 30, 12555), (15616, 30, 12604), (15617, 30, 12635), (15618, 30, 12749), (15619, 30, 12780), (15620, 30, 12886), (15621, 30, 12901), (15622, 30, 12922), (15623, 30, 12926), (15624, 30, 13020), (15625, 30, 13188), (15626, 30, 13274), (15627, 30, 13323), (15628, 30, 13397), (15629, 30, 13713), (15630, 30, 13714), (15631, 30, 13758), (15632, 30, 13809), (15633, 30, 13887), (15634, 30, 13909), (15635, 30, 14026), (15636, 30, 14471), (15637, 30, 14531), (15638, 30, 14647), (15639, 30, 14680), (15640, 30, 14803), (15641, 30, 15071), (15642, 30, 15240), (15643, 30, 15428), (15644, 30, 15627), (15645, 30, 15640), (15646, 30, 15648), (15647, 30, 15690), (15648, 30, 16013), (15649, 30, 16172), (15650, 30, 16242), (15651, 30, 16324), (15652, 30, 16556), (15653, 30, 16603), (15654, 30, 16618), (15655, 30, 16689), (15656, 30, 16721), (15657, 30, 16814), (15658, 30, 16899), (15659, 30, 16914), (15660, 30, 16945), (15661, 30, 16965), (15662, 30, 16991), (15663, 30, 17001), (15664, 30, 17378), (15665, 30, 17629), (15666, 30, 17647), (15667, 30, 17684), (15668, 30, 17937), (15669, 30, 18129), (15670, 30, 18269), (15671, 30, 18486), (15672, 30, 18489), (15673, 30, 18705), (15674, 30, 18787), (15675, 30, 18901), (15676, 30, 18921), (15677, 30, 19025), (15678, 30, 19102), (15679, 30, 19143), (15680, 30, 19232), (15681, 30, 19329), (15682, 30, 19354), (15683, 30, 19371), (15684, 30, 19659), (15685, 30, 19709), (15686, 30, 19754), (15687, 30, 19766), (15688, 30, 19920), (15689, 30, 19943), (15690, 30, 20034), (15691, 30, 20233), (15692, 30, 20399), (15693, 30, 20576), (15694, 30, 20597), (15695, 30, 20621), (15696, 30, 20866), (15697, 30, 20903), (15698, 30, 20906), (15699, 30, 20933), (15700, 30, 21063), (15701, 30, 21105), (15702, 30, 21171), (15703, 30, 21499), (15704, 30, 22042), (15705, 30, 22099), (15706, 30, 22134), (15707, 30, 22244), (15708, 30, 22659), (15709, 30, 22690), (15710, 30, 22728), (15711, 30, 22800), (15712, 30, 22945), (15713, 30, 23003), (15714, 30, 23201), (15715, 30, 23225), (15716, 30, 23442), (15717, 30, 23476), (15718, 30, 24621), (15719, 30, 24900), (15720, 30, 25002), (15721, 30, 25032), (15722, 30, 25046), (15723, 30, 25063), (15724, 30, 25119), (15725, 30, 25141), (15726, 30, 25169), (15727, 30, 25200), (15908, 31, 16), (15909, 31, 43), (15910, 31, 66), (15911, 31, 99), (15912, 31, 123), (15913, 31, 148), (15914, 31, 222), (15915, 31, 248), (15916, 31, 276), (15917, 31, 283), (15918, 31, 321), (15919, 31, 343), (15920, 31, 346), (15921, 31, 356), (15922, 31, 366), (15923, 31, 375), (15924, 31, 376), (15925, 31, 390), (15926, 31, 464), (15927, 31, 504), (15928, 31, 517), (15929, 31, 527), (15930, 31, 612), (15931, 31, 688), (15932, 31, 692), (15933, 31, 716), (15934, 31, 730), (15935, 31, 745), (15936, 31, 858), (15937, 31, 879), (15938, 31, 893), (15939, 31, 902), (15940, 31, 909), (15941, 31, 912), (15942, 31, 950), (15943, 31, 955), (15944, 31, 963), (15945, 31, 968), (15946, 31, 996), (15947, 31, 1054), (15948, 31, 1118), (15949, 31, 1159), (15950, 31, 1172), (15951, 31, 1176), (15952, 31, 1244), (15953, 31, 1279), (15954, 31, 1289), (15955, 31, 1296), (15956, 31, 1414), (15957, 31, 1448), (15958, 31, 1462), (15959, 31, 1541), (15960, 31, 1554), (15961, 31, 1565), (15962, 31, 1590), (15963, 31, 1660), (15964, 31, 1668), (15965, 31, 1772), (15966, 31, 1775), (15967, 31, 1785), (15968, 31, 1832), (15969, 31, 1907), (15970, 31, 1932), (15971, 31, 2049), (15972, 31, 2074), (15973, 31, 2091), (15974, 31, 2142), (15975, 31, 2191), (15976, 31, 2197), (15977, 31, 2221), (15978, 31, 2424), (15979, 31, 2478), (15980, 31, 2485), (15981, 31, 2560), (15982, 31, 2619), (15983, 31, 2656), (15984, 31, 2662), (15985, 31, 2676), (15986, 31, 2738), (15987, 31, 2752), (15988, 31, 2831), (15989, 31, 2843), (15990, 31, 2877), (15991, 31, 2895), (15992, 31, 2945), (15993, 31, 2960), (15994, 31, 2963), (15995, 31, 2997), (15996, 31, 3013), (15997, 31, 3042), (15998, 31, 3083), (15999, 31, 3144), (16000, 31, 3271), (16001, 31, 3287), (16002, 31, 3334), (16003, 31, 3340), (16004, 31, 3348), (16005, 31, 3382), (16006, 31, 3433), (16007, 31, 3488), (16008, 31, 3650), (16009, 31, 3746), (16010, 31, 3831), (16011, 31, 3860), (16012, 31, 3869), (16013, 31, 3926), (16014, 31, 3971), (16015, 31, 4054), (16016, 31, 4077), (16017, 31, 4115), (16018, 31, 4128), (16019, 31, 4219), (16020, 31, 4282), (16021, 31, 4290), (16022, 31, 4370), (16023, 31, 4404), (16024, 31, 4435), (16025, 31, 4466), (16026, 31, 4541), (16027, 31, 4553), (16028, 31, 4655), (16029, 31, 4690), (16030, 31, 4881), (16031, 31, 5022), (16032, 31, 5065), (16033, 31, 5070), (16034, 31, 5091), (16035, 31, 5139), (16036, 31, 5217), (16037, 31, 5339), (16038, 31, 5368), (16039, 31, 5410), (16040, 31, 5472), (16041, 31, 5863), (16042, 31, 6134), (16043, 31, 6197), (16044, 31, 6226), (16045, 31, 6342), (16046, 31, 6441), (16047, 31, 6486), (16048, 31, 6554), (16049, 31, 6657), (16050, 31, 6779), (16051, 31, 6848), (16052, 31, 6861), (16053, 31, 6995), (16054, 31, 7002), (16055, 31, 7080), (16056, 31, 7086), (16057, 31, 7521), (16058, 31, 7845), (16059, 31, 7861), (16060, 31, 8118), (16061, 31, 8167), (16062, 31, 8533), (16063, 31, 8877), (16064, 31, 8893), (16065, 31, 8903), (16066, 31, 8931), (16067, 31, 9085), (16068, 31, 9095), (16069, 31, 9588), (16070, 31, 9659), (16071, 31, 10144), (16072, 31, 10477), (16073, 31, 10615), (16074, 31, 10813), (16075, 31, 11719), (16076, 31, 12194), (16077, 31, 12406), (16078, 31, 12874), (16079, 31, 14501), (16080, 31, 14584), (16081, 31, 14884), (16082, 31, 15163), (16083, 31, 15422), (16084, 31, 15502), (16085, 31, 15747), (16086, 31, 16376), (16087, 31, 17309), (16088, 31, 18110), (16089, 31, 18144), (16090, 31, 19162), (16091, 31, 20424), (16092, 31, 21114), (16093, 31, 21141), (16094, 31, 21695), (16095, 31, 21710), (16096, 31, 22183), (16097, 31, 22193), (16098, 31, 22230), (16099, 31, 22293), (16100, 31, 22627), (16101, 31, 22754), (16102, 31, 22903), (16103, 31, 23009), (16104, 31, 23029), (16105, 31, 23433), (16106, 31, 23587), (16107, 31, 24254), (16108, 31, 25012), (16109, 31, 25044), (16110, 31, 25102), (16111, 31, 25128), (16112, 31, 25161), (16113, 31, 25223), (16163, 32, 3), (16164, 32, 18), (16165, 32, 43), (16166, 32, 47), (16167, 32, 52), (16168, 32, 57), (16169, 32, 59), (16170, 32, 70), (16171, 32, 90), (16172, 32, 93), (16173, 32, 97), (16174, 32, 102), (16175, 32, 135), (16176, 32, 144), (16177, 32, 147), (16178, 32, 183), (16179, 32, 209), (16180, 32, 239), (16181, 32, 249), (16182, 32, 256), (16183, 32, 259), (16184, 32, 269), (16185, 32, 296), (16186, 32, 297), (16187, 32, 381), (16188, 32, 386), (16189, 32, 443), (16190, 32, 454), (16191, 32, 509), (16192, 32, 533), (16193, 32, 561), (16194, 32, 595), (16195, 32, 606), (16196, 32, 611), (16197, 32, 637), (16198, 32, 648), (16199, 32, 684), (16200, 32, 708), (16201, 32, 774), (16202, 32, 887), (16203, 32, 898), (16204, 32, 902), (16205, 32, 913), (16206, 32, 914), (16207, 32, 921), (16208, 32, 926), (16209, 32, 965), (16210, 32, 980), (16211, 32, 981), (16212, 32, 1049), (16213, 32, 1065), (16214, 32, 1112), (16215, 32, 1135), (16216, 32, 1148), (16217, 32, 1233), (16218, 32, 1280), (16219, 32, 1289), (16220, 32, 1290), (16221, 32, 1305), (16222, 32, 1312), (16223, 32, 1326), (16224, 32, 1348), (16225, 32, 1422), (16226, 32, 1439), (16227, 32, 1447), (16228, 32, 1453), (16229, 32, 1454), (16230, 32, 1486), (16231, 32, 1556), (16232, 32, 1564), (16233, 32, 1570), (16234, 32, 1579), (16235, 32, 1619), (16236, 32, 1642), (16237, 32, 1643), (16238, 32, 1714), (16239, 32, 1730), (16240, 32, 1748), (16241, 32, 1841), (16242, 32, 1876), (16243, 32, 1879), (16244, 32, 1897), (16245, 32, 1941), (16246, 32, 1950), (16247, 32, 1981), (16248, 32, 1994), (16249, 32, 2001), (16250, 32, 2086), (16251, 32, 2091), (16252, 32, 2122), (16253, 32, 2126), (16254, 32, 2159), (16255, 32, 2187), (16256, 32, 2249), (16257, 32, 2292), (16258, 32, 2336), (16259, 32, 2373), (16260, 32, 2387), (16261, 32, 2395), (16262, 32, 2412), (16263, 32, 2461), (16264, 32, 2469), (16265, 32, 2522), (16266, 32, 2560), (16267, 32, 2594), (16268, 32, 2600), (16269, 32, 2636), (16270, 32, 2704), (16271, 32, 2707), (16272, 32, 2710), (16273, 32, 2747), (16274, 32, 2752), (16275, 32, 2760), (16276, 32, 3000), (16277, 32, 3042), (16278, 32, 3058), (16279, 32, 3061), (16280, 32, 3062), (16281, 32, 3130), (16282, 32, 3191), (16283, 32, 3210), (16284, 32, 3222), (16285, 32, 3256), (16286, 32, 3271), (16287, 32, 3282), (16288, 32, 3334), (16289, 32, 3353), (16290, 32, 3419), (16291, 32, 3425), (16292, 32, 3441), (16293, 32, 3451), (16294, 32, 3461), (16295, 32, 3470), (16296, 32, 3500), (16297, 32, 3528), (16298, 32, 3557), (16299, 32, 3561), (16300, 32, 3677), (16301, 32, 3754), (16302, 32, 3767), (16303, 32, 3887), (16304, 32, 3896), (16305, 32, 3907), (16306, 32, 3944), (16307, 32, 4029), (16308, 32, 4113), (16309, 32, 4115), (16310, 32, 4124), (16311, 32, 4160), (16312, 32, 4267), (16313, 32, 4304), (16314, 32, 4319), (16315, 32, 4348), (16316, 32, 4621), (16317, 32, 4688), (16318, 32, 4708), (16319, 32, 4752), (16320, 32, 4761), (16321, 32, 4764), (16322, 32, 4835), (16323, 32, 4847), (16324, 32, 4852), (16325, 32, 4855), (16326, 32, 4911), (16327, 32, 4944), (16328, 32, 4993), (16329, 32, 5054), (16330, 32, 5078), (16331, 32, 5091), (16332, 32, 5160), (16333, 32, 5287), (16334, 32, 5292), (16335, 32, 5302), (16336, 32, 5310), (16337, 32, 5373), (16338, 32, 5406), (16339, 32, 5411), (16340, 32, 5494), (16341, 32, 5503), (16342, 32, 5510), (16343, 32, 5571), (16344, 32, 5724), (16345, 32, 5824), (16346, 32, 5849), (16347, 32, 6020), (16348, 32, 6277), (16349, 32, 6334), (16350, 32, 6343), (16351, 32, 6378), (16352, 32, 6424), (16353, 32, 6439), (16354, 32, 6540), (16355, 32, 6629), (16356, 32, 6659), (16357, 32, 6729), (16358, 32, 6826), (16359, 32, 6902), (16360, 32, 7064), (16361, 32, 7275), (16362, 32, 7353), (16363, 32, 7412), (16364, 32, 7428), (16365, 32, 7488), (16366, 32, 7524), (16367, 32, 7592), (16368, 32, 7606), (16369, 32, 7664), (16370, 32, 7770), (16371, 32, 7881), (16372, 32, 8037), (16373, 32, 8045), (16374, 32, 8132), (16375, 32, 8199), (16376, 32, 8333), (16377, 32, 8345), (16378, 32, 8386), (16379, 32, 8436), (16380, 32, 8533), (16381, 32, 8563), (16382, 32, 8647), (16383, 32, 8652), (16384, 32, 9020), (16385, 32, 9025), (16386, 32, 9119), (16387, 32, 9171), (16388, 32, 9511), (16389, 32, 9617), (16390, 32, 9627), (16391, 32, 9679), (16392, 32, 9870), (16393, 32, 9988), (16394, 32, 10691), (16395, 32, 11173), (16396, 32, 11212), (16397, 32, 11257), (16398, 32, 11336), (16399, 32, 11352), (16400, 32, 11520), (16401, 32, 11742), (16402, 32, 12300), (16403, 32, 12327), (16404, 32, 12398), (16405, 32, 12412), (16406, 32, 12672), (16407, 32, 12780), (16408, 32, 12886), (16409, 32, 13201), (16410, 32, 13363), (16411, 32, 13431), (16412, 32, 13557), (16413, 32, 13661), (16414, 32, 14082), (16415, 32, 14230), (16416, 32, 14546), (16417, 32, 14574), (16418, 32, 14848), (16419, 32, 14863), (16420, 32, 14869), (16421, 32, 14958), (16422, 32, 15524), (16423, 32, 15659), (16424, 32, 15730), (16425, 32, 16198), (16426, 32, 16207), (16427, 32, 16556), (16428, 32, 17043), (16429, 32, 17230), (16430, 32, 17818), (16431, 32, 17822), (16432, 32, 17837), (16433, 32, 18028), (16434, 32, 18290), (16435, 32, 18941), (16436, 32, 19016), (16437, 32, 19354), (16438, 32, 19940), (16439, 32, 20543), (16440, 32, 20772), (16441, 32, 21427), (16442, 32, 21758), (16443, 32, 21971), (16444, 32, 21972), (16445, 32, 22757), (16446, 32, 23096), (16447, 32, 23862), (16448, 32, 25046), (16674, 33, 488), (16675, 33, 525), (16676, 33, 752), (16677, 33, 914), (16678, 33, 1049), (16679, 33, 1097), (16680, 33, 1112), (16681, 33, 1220), (16682, 33, 1325), (16683, 33, 1651), (16684, 33, 1754), (16685, 33, 1872), (16686, 33, 1914), (16687, 33, 2159), (16688, 33, 2352), (16689, 33, 2413), (16690, 33, 2696), (16691, 33, 2752), (16692, 33, 3043), (16693, 33, 3191), (16694, 33, 3225), (16695, 33, 3305), (16696, 33, 3392), (16697, 33, 3451), (16698, 33, 3503), (16699, 33, 3554), (16700, 33, 3557), (16701, 33, 3572), (16702, 33, 3773), (16703, 33, 3779), (16704, 33, 3887), (16705, 33, 3899), (16706, 33, 3926), (16707, 33, 3944), (16708, 33, 4006), (16709, 33, 4054), (16710, 33, 4128), (16711, 33, 4430), (16712, 33, 4645), (16713, 33, 4752), (16714, 33, 4826), (16715, 33, 4874), (16716, 33, 4941), (16717, 33, 4956), (16718, 33, 5024), (16719, 33, 5082), (16720, 33, 5310), (16721, 33, 5471), (16722, 33, 5662), (16723, 33, 5980), (16724, 33, 6044), (16725, 33, 6110), (16726, 33, 6247), (16727, 33, 6267), (16728, 33, 6311), (16729, 33, 6629), (16730, 33, 6659), (16731, 33, 6725), (16732, 33, 6897), (16733, 33, 6995), (16734, 33, 7061), (16735, 33, 7064), (16736, 33, 7172), (16737, 33, 7188), (16738, 33, 7321), (16739, 33, 7332), (16740, 33, 7505), (16741, 33, 7552), (16742, 33, 7782), (16743, 33, 7912), (16744, 33, 7981), (16745, 33, 8061), (16746, 33, 8082), (16747, 33, 8204), (16748, 33, 8552), (16749, 33, 8693), (16750, 33, 9179), (16751, 33, 9312), (16752, 33, 9482), (16753, 33, 9954), (16754, 33, 9988), (16755, 33, 10305), (16756, 33, 10690), (16757, 33, 11095), (16758, 33, 11658), (16759, 33, 11701), (16760, 33, 11852), (16761, 33, 12196), (16762, 33, 12276), (16763, 33, 12291), (16764, 33, 12646), (16765, 33, 12769), (16766, 33, 13026), (16767, 33, 13201), (16768, 33, 13214), (16769, 33, 13581), (16770, 33, 13964), (16771, 33, 14001), (16772, 33, 14029), (16773, 33, 14072), (16774, 33, 14130), (16775, 33, 15089), (16776, 33, 17403), (16777, 33, 17608), (16778, 33, 18162), (16779, 33, 18230), (16780, 33, 18352), (16781, 33, 19405), (16782, 33, 19430), (16783, 33, 19564), (16784, 33, 19770), (16785, 33, 19817), (16786, 33, 20062), (16787, 33, 20391), (16788, 33, 22741), (16789, 33, 22921), (16790, 33, 23053), (16791, 33, 23233), (16792, 33, 24561), (16793, 33, 24695), (16801, 34, 59), (16802, 34, 155), (16803, 34, 259), (16804, 34, 381), (16805, 34, 423), (16806, 34, 510), (16807, 34, 561), (16808, 34, 606), (16809, 34, 708), (16810, 34, 800), (16811, 34, 898), (16812, 34, 926), (16813, 34, 1135), (16814, 34, 1201), (16815, 34, 1484), (16816, 34, 1619), (16817, 34, 1642), (16818, 34, 1879), (16819, 34, 1912), (16820, 34, 2147), (16821, 34, 2412), (16822, 34, 2507), (16823, 34, 2747), (16824, 34, 2985), (16825, 34, 3211), (16826, 34, 3367), (16827, 34, 3500), (16828, 34, 3833), (16829, 34, 3963), (16830, 34, 4070), (16831, 34, 4115), (16832, 34, 4303), (16833, 34, 4348), (16834, 34, 4505), (16835, 34, 4764), (16836, 34, 4794), (16837, 34, 5111), (16838, 34, 5160), (16839, 34, 5197), (16840, 34, 5292), (16841, 34, 5302), (16842, 34, 5476), (16843, 34, 5556), (16844, 34, 5690), (16845, 34, 6274), (16846, 34, 6439), (16847, 34, 6670), (16848, 34, 6723), (16849, 34, 6800), (16850, 34, 7240), (16851, 34, 7428), (16852, 34, 7488), (16853, 34, 7516), (16854, 34, 7527), (16855, 34, 7602), (16856, 34, 7870), (16857, 34, 8090), (16858, 34, 8345), (16859, 34, 8436), (16860, 34, 8647), (16861, 34, 9328), (16862, 34, 9466), (16863, 34, 9511), (16864, 34, 9526), (16865, 34, 9627), (16866, 34, 9741), (16867, 34, 9870), (16868, 34, 10350), (16869, 34, 10691), (16870, 34, 11336), (16871, 34, 12412), (16872, 34, 13363), (16873, 34, 13727), (16874, 34, 14082), (16875, 34, 19016), (16876, 34, 21427), (16877, 34, 23785), (16928, 35, 104), (16929, 35, 134), (16930, 35, 177), (16931, 35, 185), (16932, 35, 297), (16933, 35, 479), (16934, 35, 496), (16935, 35, 543), (16936, 35, 555), (16937, 35, 685), (16938, 35, 875), (16939, 35, 905), (16940, 35, 931), (16941, 35, 1089), (16942, 35, 1097), (16943, 35, 1112), (16944, 35, 1116), (16945, 35, 1146), (16946, 35, 1290), (16947, 35, 1340), (16948, 35, 1398), (16949, 35, 1402), (16950, 35, 1436), (16951, 35, 1448), (16952, 35, 1466), (16953, 35, 1472), (16954, 35, 1616), (16955, 35, 1801), (16956, 35, 1810), (16957, 35, 1843), (16958, 35, 1968), (16959, 35, 2029), (16960, 35, 2189), (16961, 35, 2195), (16962, 35, 2217), (16963, 35, 2237), (16964, 35, 2253), (16965, 35, 2278), (16966, 35, 2283), (16967, 35, 2289), (16968, 35, 2290), (16969, 35, 2295), (16970, 35, 2340), (16971, 35, 2352), (16972, 35, 2381), (16973, 35, 2461), (16974, 35, 2489), (16975, 35, 2559), (16976, 35, 2645), (16977, 35, 2647), (16978, 35, 2708), (16979, 35, 2711), (16980, 35, 2803), (16981, 35, 2848), (16982, 35, 2910), (16983, 35, 2950), (16984, 35, 3008), (16985, 35, 3084), (16986, 35, 3094), (16987, 35, 3104), (16988, 35, 3113), (16989, 35, 3210), (16990, 35, 3249), (16991, 35, 3353), (16992, 35, 3367), (16993, 35, 3451), (16994, 35, 3509), (16995, 35, 3594), (16996, 35, 3659), (16997, 35, 3668), (16998, 35, 3754), (16999, 35, 3774); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (17000, 35, 3830), (17001, 35, 3915), (17002, 35, 3922), (17003, 35, 3932), (17004, 35, 3958), (17005, 35, 3961), (17006, 35, 4006), (17007, 35, 4019), (17008, 35, 4064), (17009, 35, 4091), (17010, 35, 4092), (17011, 35, 4170), (17012, 35, 4280), (17013, 35, 4283), (17014, 35, 4342), (17015, 35, 4404), (17016, 35, 4509), (17017, 35, 4581), (17018, 35, 4632), (17019, 35, 4646), (17020, 35, 4654), (17021, 35, 4685), (17022, 35, 4768), (17023, 35, 4773), (17024, 35, 4819), (17025, 35, 4874), (17026, 35, 4926), (17027, 35, 4972), (17028, 35, 4987), (17029, 35, 4995), (17030, 35, 5037), (17031, 35, 5102), (17032, 35, 5124), (17033, 35, 5208), (17034, 35, 5220), (17035, 35, 5338), (17036, 35, 5515), (17037, 35, 5628), (17038, 35, 5635), (17039, 35, 5716), (17040, 35, 5734), (17041, 35, 5740), (17042, 35, 5755), (17043, 35, 5784), (17044, 35, 5854), (17045, 35, 5994), (17046, 35, 6000), (17047, 35, 6267), (17048, 35, 6315), (17049, 35, 6396), (17050, 35, 6447), (17051, 35, 6465), (17052, 35, 6473), (17053, 35, 6568), (17054, 35, 6728), (17055, 35, 6744), (17056, 35, 6780), (17057, 35, 6949), (17058, 35, 7064), (17059, 35, 7134), (17060, 35, 7223), (17061, 35, 7292), (17062, 35, 7399), (17063, 35, 7419), (17064, 35, 7440), (17065, 35, 7486), (17066, 35, 7513), (17067, 35, 7552), (17068, 35, 7602), (17069, 35, 7682), (17070, 35, 7751), (17071, 35, 7771), (17072, 35, 7783), (17073, 35, 7792), (17074, 35, 7826), (17075, 35, 7875), (17076, 35, 7949), (17077, 35, 7958), (17078, 35, 7970), (17079, 35, 8090), (17080, 35, 8203), (17081, 35, 8232), (17082, 35, 8303), (17083, 35, 8429), (17084, 35, 8452), (17085, 35, 8584), (17086, 35, 8698), (17087, 35, 8749), (17088, 35, 9016), (17089, 35, 9154), (17090, 35, 9254), (17091, 35, 9328), (17092, 35, 9332), (17093, 35, 9407), (17094, 35, 9496), (17095, 35, 9753), (17096, 35, 9813), (17097, 35, 9990), (17098, 35, 10305), (17099, 35, 10322), (17100, 35, 10446), (17101, 35, 10526), (17102, 35, 10528), (17103, 35, 10544), (17104, 35, 10548), (17105, 35, 10603), (17106, 35, 10627), (17107, 35, 10687), (17108, 35, 11196), (17109, 35, 11216), (17110, 35, 11384), (17111, 35, 11426), (17112, 35, 11626), (17113, 35, 11991), (17114, 35, 12782), (17115, 35, 13118), (17116, 35, 13165), (17117, 35, 13362), (17118, 35, 13644), (17119, 35, 13830), (17120, 35, 14295), (17121, 35, 14501), (17122, 35, 14869), (17123, 35, 15076), (17124, 35, 15095), (17125, 35, 15105), (17126, 35, 15197), (17127, 35, 15348), (17128, 35, 15558), (17129, 35, 16343), (17130, 35, 17048), (17131, 35, 17289), (17132, 35, 17305), (17133, 35, 17333), (17134, 35, 17971), (17135, 35, 18222), (17136, 35, 18369), (17137, 35, 18465), (17138, 35, 19160), (17139, 35, 19351), (17140, 35, 19466), (17141, 35, 19565), (17142, 35, 19625), (17143, 35, 19646), (17144, 35, 19692), (17145, 35, 19732), (17146, 35, 20370), (17147, 35, 20613), (17148, 35, 20797), (17149, 35, 20824), (17150, 35, 20845), (17151, 35, 20900), (17152, 35, 21056), (17153, 35, 21115), (17154, 35, 21221), (17155, 35, 21230), (17156, 35, 21343), (17157, 35, 21383), (17158, 35, 21401), (17159, 35, 21509), (17160, 35, 21677), (17161, 35, 21969), (17162, 35, 21984), (17163, 35, 22001), (17164, 35, 22124), (17165, 35, 22163), (17166, 35, 22393), (17167, 35, 22400), (17168, 35, 22523), (17169, 35, 22611), (17170, 35, 22662), (17171, 35, 22777), (17172, 35, 22859), (17173, 35, 22901), (17174, 35, 22928), (17175, 35, 23040), (17176, 35, 23072), (17177, 35, 23159), (17178, 35, 23375), (17179, 35, 23639), (17180, 35, 23816), (17181, 35, 23938), (17182, 35, 23959), (17183, 35, 24243), (17184, 35, 24256), (17185, 35, 25014), (17186, 35, 25017), (17187, 35, 25040), (17439, 36, 7), (17440, 36, 8), (17441, 36, 17), (17442, 36, 19), (17443, 36, 61), (17444, 36, 83), (17445, 36, 93), (17446, 36, 94), (17447, 36, 97), (17448, 36, 106), (17449, 36, 140), (17450, 36, 142), (17451, 36, 147), (17452, 36, 155), (17453, 36, 157), (17454, 36, 174), (17455, 36, 176), (17456, 36, 188), (17457, 36, 194), (17458, 36, 204), (17459, 36, 205), (17460, 36, 215), (17461, 36, 225), (17462, 36, 227), (17463, 36, 234), (17464, 36, 235), (17465, 36, 250), (17466, 36, 259), (17467, 36, 279), (17468, 36, 318), (17469, 36, 346), (17470, 36, 364), (17471, 36, 381), (17472, 36, 397), (17473, 36, 400), (17474, 36, 408), (17475, 36, 431), (17476, 36, 464), (17477, 36, 468), (17478, 36, 480), (17479, 36, 504), (17480, 36, 509), (17481, 36, 510), (17482, 36, 517), (17483, 36, 561), (17484, 36, 589), (17485, 36, 603), (17486, 36, 611), (17487, 36, 640), (17488, 36, 647), (17489, 36, 671), (17490, 36, 696), (17491, 36, 697), (17492, 36, 701), (17493, 36, 704), (17494, 36, 729), (17495, 36, 738), (17496, 36, 774), (17497, 36, 797), (17498, 36, 807), (17499, 36, 814), (17500, 36, 817), (17501, 36, 829), (17502, 36, 845), (17503, 36, 887), (17504, 36, 907), (17505, 36, 935), (17506, 36, 985), (17507, 36, 992), (17508, 36, 996), (17509, 36, 1005), (17510, 36, 1027), (17511, 36, 1035), (17512, 36, 1039), (17513, 36, 1068), (17514, 36, 1089), (17515, 36, 1119), (17516, 36, 1138), (17517, 36, 1159), (17518, 36, 1187), (17519, 36, 1197), (17520, 36, 1202), (17521, 36, 1204), (17522, 36, 1238), (17523, 36, 1245), (17524, 36, 1306), (17525, 36, 1354), (17526, 36, 1358), (17527, 36, 1391), (17528, 36, 1415), (17529, 36, 1462), (17530, 36, 1478), (17531, 36, 1484), (17532, 36, 1520), (17533, 36, 1529), (17534, 36, 1547), (17535, 36, 1555), (17536, 36, 1556), (17537, 36, 1580), (17538, 36, 1628), (17539, 36, 1651), (17540, 36, 1668), (17541, 36, 1670), (17542, 36, 1709), (17543, 36, 1737), (17544, 36, 1740), (17545, 36, 1742), (17546, 36, 1761), (17547, 36, 1860), (17548, 36, 1877), (17549, 36, 1915), (17550, 36, 1945), (17551, 36, 1950), (17552, 36, 1954), (17553, 36, 1981), (17554, 36, 1994), (17555, 36, 1998), (17556, 36, 2005), (17557, 36, 2030), (17558, 36, 2032), (17559, 36, 2113), (17560, 36, 2123), (17561, 36, 2195), (17562, 36, 2196), (17563, 36, 2205), (17564, 36, 2215), (17565, 36, 2272), (17566, 36, 2274), (17567, 36, 2303), (17568, 36, 2315), (17569, 36, 2349), (17570, 36, 2367), (17571, 36, 2407), (17572, 36, 2437), (17573, 36, 2453), (17574, 36, 2455), (17575, 36, 2457), (17576, 36, 2461), (17577, 36, 2473), (17578, 36, 2479), (17579, 36, 2490), (17580, 36, 2494), (17581, 36, 2537), (17582, 36, 2547), (17583, 36, 2560), (17584, 36, 2619), (17585, 36, 2625), (17586, 36, 2636), (17587, 36, 2637), (17588, 36, 2640), (17589, 36, 2653), (17590, 36, 2678), (17591, 36, 2690), (17592, 36, 2698), (17593, 36, 2711), (17594, 36, 2738), (17595, 36, 2741), (17596, 36, 2769), (17597, 36, 2816), (17598, 36, 2825), (17599, 36, 2841), (17600, 36, 2888), (17601, 36, 2898), (17602, 36, 2933), (17603, 36, 2940), (17604, 36, 2963), (17605, 36, 2975), (17606, 36, 3018), (17607, 36, 3061), (17608, 36, 3083), (17609, 36, 3153), (17610, 36, 3159), (17611, 36, 3175), (17612, 36, 3183), (17613, 36, 3197), (17614, 36, 3230), (17615, 36, 3271), (17616, 36, 3296), (17617, 36, 3353), (17618, 36, 3373), (17619, 36, 3448), (17620, 36, 3496), (17621, 36, 3498), (17622, 36, 3500), (17623, 36, 3502), (17624, 36, 3557), (17625, 36, 3567), (17626, 36, 3583), (17627, 36, 3591), (17628, 36, 3592), (17629, 36, 3624), (17630, 36, 3646), (17631, 36, 3716), (17632, 36, 3721), (17633, 36, 3741), (17634, 36, 3754), (17635, 36, 3763), (17636, 36, 3794), (17637, 36, 3833), (17638, 36, 3836), (17639, 36, 3881), (17640, 36, 3905), (17641, 36, 3967), (17642, 36, 4008), (17643, 36, 4061), (17644, 36, 4081), (17645, 36, 4123), (17646, 36, 4225), (17647, 36, 4245), (17648, 36, 4277), (17649, 36, 4288), (17650, 36, 4334), (17651, 36, 4344), (17652, 36, 4351), (17653, 36, 4459), (17654, 36, 4461), (17655, 36, 4505), (17656, 36, 4516), (17657, 36, 4553), (17658, 36, 4571), (17659, 36, 4578), (17660, 36, 4579), (17661, 36, 4584), (17662, 36, 4655), (17663, 36, 4723), (17664, 36, 4749), (17665, 36, 4787), (17666, 36, 4790), (17667, 36, 4796), (17668, 36, 4842), (17669, 36, 4855), (17670, 36, 4856), (17671, 36, 4859), (17672, 36, 4900), (17673, 36, 4911), (17674, 36, 4941), (17675, 36, 4944), (17676, 36, 4993), (17677, 36, 5006), (17678, 36, 5013), (17679, 36, 5045), (17680, 36, 5069), (17681, 36, 5078), (17682, 36, 5160), (17683, 36, 5187), (17684, 36, 5190), (17685, 36, 5202), (17686, 36, 5217), (17687, 36, 5231), (17688, 36, 5272), (17689, 36, 5290), (17690, 36, 5292), (17691, 36, 5369), (17692, 36, 5380), (17693, 36, 5390), (17694, 36, 5485), (17695, 36, 5525), (17696, 36, 5549), (17697, 36, 5589), (17698, 36, 5602), (17699, 36, 5611), (17700, 36, 5633), (17701, 36, 5661), (17702, 36, 5685), (17703, 36, 5690), (17704, 36, 5718), (17705, 36, 5816), (17706, 36, 5850), (17707, 36, 5887), (17708, 36, 5921), (17709, 36, 5944), (17710, 36, 5985), (17711, 36, 5996), (17712, 36, 6066), (17713, 36, 6101), (17714, 36, 6137), (17715, 36, 6151), (17716, 36, 6184), (17717, 36, 6190), (17718, 36, 6241), (17719, 36, 6309), (17720, 36, 6411), (17721, 36, 6424), (17722, 36, 6434), (17723, 36, 6439), (17724, 36, 6461), (17725, 36, 6564), (17726, 36, 6626), (17727, 36, 6630), (17728, 36, 6657), (17729, 36, 6701), (17730, 36, 6710), (17731, 36, 6763), (17732, 36, 6799), (17733, 36, 6838), (17734, 36, 6878), (17735, 36, 6896), (17736, 36, 6903), (17737, 36, 6915), (17738, 36, 6948), (17739, 36, 7022), (17740, 36, 7029), (17741, 36, 7076), (17742, 36, 7239), (17743, 36, 7240), (17744, 36, 7294), (17745, 36, 7305), (17746, 36, 7408), (17747, 36, 7434), (17748, 36, 7447), (17749, 36, 7485), (17750, 36, 7517), (17751, 36, 7563), (17752, 36, 7564), (17753, 36, 7566), (17754, 36, 7567), (17755, 36, 7616), (17756, 36, 7630), (17757, 36, 7642), (17758, 36, 7650), (17759, 36, 7660), (17760, 36, 7665), (17761, 36, 7747), (17762, 36, 7773), (17763, 36, 7819), (17764, 36, 7854), (17765, 36, 7889), (17766, 36, 7982), (17767, 36, 7987), (17768, 36, 8055), (17769, 36, 8089), (17770, 36, 8090), (17771, 36, 8094), (17772, 36, 8103), (17773, 36, 8122), (17774, 36, 8258), (17775, 36, 8311), (17776, 36, 8415), (17777, 36, 8422), (17778, 36, 8449), (17779, 36, 8453), (17780, 36, 8500), (17781, 36, 8509), (17782, 36, 8515), (17783, 36, 8596), (17784, 36, 8616), (17785, 36, 8641), (17786, 36, 8749), (17787, 36, 8773), (17788, 36, 8846), (17789, 36, 8870), (17790, 36, 8935), (17791, 36, 8936), (17792, 36, 8946), (17793, 36, 8947), (17794, 36, 8985), (17795, 36, 9020), (17796, 36, 9031), (17797, 36, 9082), (17798, 36, 9084), (17799, 36, 9100), (17800, 36, 9102), (17801, 36, 9149), (17802, 36, 9151), (17803, 36, 9173), (17804, 36, 9206), (17805, 36, 9234), (17806, 36, 9245), (17807, 36, 9276), (17808, 36, 9285), (17809, 36, 9291), (17810, 36, 9473), (17811, 36, 9482), (17812, 36, 9568), (17813, 36, 9613), (17814, 36, 9627), (17815, 36, 9671), (17816, 36, 9672), (17817, 36, 9686), (17818, 36, 9694), (17819, 36, 9714), (17820, 36, 9731), (17821, 36, 9747), (17822, 36, 9812), (17823, 36, 9958), (17824, 36, 9975), (17825, 36, 9977), (17826, 36, 10014), (17827, 36, 10058), (17828, 36, 10073), (17829, 36, 10092), (17830, 36, 10165), (17831, 36, 10201), (17832, 36, 10263), (17833, 36, 10350), (17834, 36, 10430), (17835, 36, 10483), (17836, 36, 10488), (17837, 36, 10492), (17838, 36, 10516), (17839, 36, 10522), (17840, 36, 10541), (17841, 36, 10589), (17842, 36, 10613), (17843, 36, 10616), (17844, 36, 11059), (17845, 36, 11063), (17846, 36, 11073), (17847, 36, 11163), (17848, 36, 11296), (17849, 36, 11297), (17850, 36, 11365), (17851, 36, 11447), (17852, 36, 11505), (17853, 36, 11507), (17854, 36, 11520), (17855, 36, 11559), (17856, 36, 11632), (17857, 36, 11644), (17858, 36, 11661), (17859, 36, 11696), (17860, 36, 11843), (17861, 36, 11939), (17862, 36, 11966), (17863, 36, 11981), (17864, 36, 12053), (17865, 36, 12121), (17866, 36, 12290), (17867, 36, 12358), (17868, 36, 12398), (17869, 36, 12421), (17870, 36, 12526), (17871, 36, 12638), (17872, 36, 12667), (17873, 36, 12717), (17874, 36, 12728), (17875, 36, 12762), (17876, 36, 12796), (17877, 36, 12855), (17878, 36, 12917), (17879, 36, 12926), (17880, 36, 12956), (17881, 36, 12959), (17882, 36, 13252), (17883, 36, 13290), (17884, 36, 13332), (17885, 36, 13363), (17886, 36, 13381), (17887, 36, 13397), (17888, 36, 13431), (17889, 36, 13517), (17890, 36, 13545), (17891, 36, 13590), (17892, 36, 13606), (17893, 36, 13623), (17894, 36, 13661), (17895, 36, 13688), (17896, 36, 13855), (17897, 36, 13860), (17898, 36, 13877), (17899, 36, 13882), (17900, 36, 13904), (17901, 36, 13993), (17902, 36, 14002), (17903, 36, 14023), (17904, 36, 14026), (17905, 36, 14029), (17906, 36, 14032), (17907, 36, 14040), (17908, 36, 14383), (17909, 36, 14474), (17910, 36, 14546), (17911, 36, 14613), (17912, 36, 14630), (17913, 36, 14869), (17914, 36, 14898), (17915, 36, 14933), (17916, 36, 14957), (17917, 36, 15077), (17918, 36, 15151), (17919, 36, 15196), (17920, 36, 15200), (17921, 36, 15307), (17922, 36, 15320), (17923, 36, 15434), (17924, 36, 15461), (17925, 36, 15524), (17926, 36, 15589), (17927, 36, 15629), (17928, 36, 15908), (17929, 36, 15961), (17930, 36, 15993), (17931, 36, 15998), (17932, 36, 16056), (17933, 36, 16077), (17934, 36, 16198), (17935, 36, 16355), (17936, 36, 16503), (17937, 36, 16511), (17938, 36, 16550), (17939, 36, 16556), (17940, 36, 16569), (17941, 36, 16595), (17942, 36, 16596), (17943, 36, 16743), (17944, 36, 16771), (17945, 36, 16837), (17946, 36, 16840), (17947, 36, 16910), (17948, 36, 16945), (17949, 36, 16988), (17950, 36, 17000), (17951, 36, 17043), (17952, 36, 17073), (17953, 36, 17175), (17954, 36, 17179), (17955, 36, 17309), (17956, 36, 17337), (17957, 36, 17540), (17958, 36, 17593), (17959, 36, 17647), (17960, 36, 17691), (17961, 36, 17820), (17962, 36, 17842), (17963, 36, 17867), (17964, 36, 17977), (17965, 36, 17995), (17966, 36, 18047), (17967, 36, 18112), (17968, 36, 18150), (17969, 36, 18165), (17970, 36, 18276), (17971, 36, 18406), (17972, 36, 18475), (17973, 36, 18486), (17974, 36, 18489), (17975, 36, 18579), (17976, 36, 18694), (17977, 36, 18777), (17978, 36, 18806), (17979, 36, 18955), (17980, 36, 18961), (17981, 36, 18993), (17982, 36, 19000), (17983, 36, 19070), (17984, 36, 19101), (17985, 36, 19102), (17986, 36, 19190), (17987, 36, 19283), (17988, 36, 19288), (17989, 36, 19305), (17990, 36, 19329), (17991, 36, 19463), (17992, 36, 19484), (17993, 36, 19560), (17994, 36, 19612), (17995, 36, 19739), (17996, 36, 19754), (17997, 36, 19771), (17998, 36, 19789), (17999, 36, 19834), (18000, 36, 19929), (18001, 36, 19980), (18002, 36, 20160), (18003, 36, 20233), (18004, 36, 20382), (18005, 36, 20395), (18006, 36, 20679), (18007, 36, 20686), (18008, 36, 20703), (18009, 36, 20712), (18010, 36, 20831), (18011, 36, 20924), (18012, 36, 21237), (18013, 36, 21280), (18014, 36, 21294), (18015, 36, 21308), (18016, 36, 21309), (18017, 36, 21334), (18018, 36, 21383), (18019, 36, 21516), (18020, 36, 21695), (18021, 36, 21748), (18022, 36, 21891), (18023, 36, 22174), (18024, 36, 22429), (18025, 36, 22431), (18026, 36, 22457), (18027, 36, 22757), (18028, 36, 22809), (18029, 36, 22844), (18030, 36, 22949), (18031, 36, 23002), (18032, 36, 23050), (18033, 36, 23412), (18034, 36, 23421), (18035, 36, 23436), (18036, 36, 24540), (18037, 36, 24995), (18038, 36, 25032), (18039, 36, 25046), (18040, 36, 25066), (18041, 36, 25068), (18042, 36, 25083), (18043, 36, 25110), (18044, 36, 25114), (18045, 36, 25119), (18462, 37, 3), (18463, 37, 7), (18464, 37, 8), (18465, 37, 17), (18466, 37, 18), (18467, 37, 38), (18468, 37, 47), (18469, 37, 52), (18470, 37, 70), (18471, 37, 84), (18472, 37, 106), (18473, 37, 123), (18474, 37, 140), (18475, 37, 142), (18476, 37, 144), (18477, 37, 176), (18478, 37, 183), (18479, 37, 184), (18480, 37, 188), (18481, 37, 190), (18482, 37, 194), (18483, 37, 204), (18484, 37, 205), (18485, 37, 215), (18486, 37, 227), (18487, 37, 233), (18488, 37, 234), (18489, 37, 235), (18490, 37, 250), (18491, 37, 259), (18492, 37, 263), (18493, 37, 273), (18494, 37, 279), (18495, 37, 296), (18496, 37, 311), (18497, 37, 315), (18498, 37, 318), (18499, 37, 337), (18500, 37, 343), (18501, 37, 364), (18502, 37, 381), (18503, 37, 385), (18504, 37, 386), (18505, 37, 397), (18506, 37, 400), (18507, 37, 408), (18508, 37, 414), (18509, 37, 423), (18510, 37, 431), (18511, 37, 443), (18512, 37, 459), (18513, 37, 464), (18514, 37, 476), (18515, 37, 488), (18516, 37, 509), (18517, 37, 517), (18518, 37, 525), (18519, 37, 528), (18520, 37, 532), (18521, 37, 533), (18522, 37, 562), (18523, 37, 566), (18524, 37, 589), (18525, 37, 603), (18526, 37, 616), (18527, 37, 647), (18528, 37, 648), (18529, 37, 657), (18530, 37, 684), (18531, 37, 696), (18532, 37, 697), (18533, 37, 708), (18534, 37, 725), (18535, 37, 729), (18536, 37, 738), (18537, 37, 752), (18538, 37, 774), (18539, 37, 797), (18540, 37, 800), (18541, 37, 817), (18542, 37, 829), (18543, 37, 845), (18544, 37, 893), (18545, 37, 905), (18546, 37, 907), (18547, 37, 913), (18548, 37, 914), (18549, 37, 921), (18550, 37, 954), (18551, 37, 973), (18552, 37, 980), (18553, 37, 981), (18554, 37, 992), (18555, 37, 1005), (18556, 37, 1027), (18557, 37, 1035), (18558, 37, 1039), (18559, 37, 1049), (18560, 37, 1054), (18561, 37, 1065), (18562, 37, 1068), (18563, 37, 1089), (18564, 37, 1112), (18565, 37, 1119), (18566, 37, 1138), (18567, 37, 1148), (18568, 37, 1159), (18569, 37, 1187), (18570, 37, 1197), (18571, 37, 1204), (18572, 37, 1231), (18573, 37, 1233), (18574, 37, 1245), (18575, 37, 1289), (18576, 37, 1295), (18577, 37, 1305), (18578, 37, 1348), (18579, 37, 1360), (18580, 37, 1361), (18581, 37, 1453), (18582, 37, 1454), (18583, 37, 1484), (18584, 37, 1504), (18585, 37, 1520), (18586, 37, 1547), (18587, 37, 1556), (18588, 37, 1570), (18589, 37, 1580), (18590, 37, 1642), (18591, 37, 1643), (18592, 37, 1649), (18593, 37, 1651), (18594, 37, 1670), (18595, 37, 1675), (18596, 37, 1677), (18597, 37, 1709), (18598, 37, 1725), (18599, 37, 1730), (18600, 37, 1737), (18601, 37, 1740), (18602, 37, 1748), (18603, 37, 1770), (18604, 37, 1805), (18605, 37, 1841), (18606, 37, 1868), (18607, 37, 1877), (18608, 37, 1879), (18609, 37, 1882), (18610, 37, 1915), (18611, 37, 1941), (18612, 37, 1945), (18613, 37, 1950), (18614, 37, 1954), (18615, 37, 1981), (18616, 37, 1994), (18617, 37, 1998), (18618, 37, 2030), (18619, 37, 2032), (18620, 37, 2062), (18621, 37, 2126), (18622, 37, 2142), (18623, 37, 2150), (18624, 37, 2187), (18625, 37, 2196), (18626, 37, 2197), (18627, 37, 2205), (18628, 37, 2206), (18629, 37, 2274), (18630, 37, 2303), (18631, 37, 2336), (18632, 37, 2340), (18633, 37, 2352), (18634, 37, 2407), (18635, 37, 2412), (18636, 37, 2433), (18637, 37, 2453), (18638, 37, 2455), (18639, 37, 2461), (18640, 37, 2469), (18641, 37, 2473), (18642, 37, 2522), (18643, 37, 2547), (18644, 37, 2560), (18645, 37, 2568), (18646, 37, 2598), (18647, 37, 2653), (18648, 37, 2690), (18649, 37, 2698), (18650, 37, 2707), (18651, 37, 2711), (18652, 37, 2714), (18653, 37, 2747), (18654, 37, 2816), (18655, 37, 2841), (18656, 37, 2848), (18657, 37, 2872), (18658, 37, 2888), (18659, 37, 2909), (18660, 37, 2940), (18661, 37, 2980), (18662, 37, 3013), (18663, 37, 3019), (18664, 37, 3043), (18665, 37, 3061), (18666, 37, 3083), (18667, 37, 3130), (18668, 37, 3153), (18669, 37, 3175), (18670, 37, 3197), (18671, 37, 3222), (18672, 37, 3224), (18673, 37, 3230), (18674, 37, 3326), (18675, 37, 3334), (18676, 37, 3353), (18677, 37, 3401), (18678, 37, 3448), (18679, 37, 3451), (18680, 37, 3461), (18681, 37, 3500), (18682, 37, 3502), (18683, 37, 3515), (18684, 37, 3528), (18685, 37, 3557), (18686, 37, 3567), (18687, 37, 3583), (18688, 37, 3591), (18689, 37, 3592), (18690, 37, 3601), (18691, 37, 3605), (18692, 37, 3611), (18693, 37, 3624), (18694, 37, 3668), (18695, 37, 3674), (18696, 37, 3677), (18697, 37, 3715), (18698, 37, 3716), (18699, 37, 3721), (18700, 37, 3731), (18701, 37, 3741), (18702, 37, 3773), (18703, 37, 3794), (18704, 37, 3881), (18705, 37, 3887), (18706, 37, 3899), (18707, 37, 3907), (18708, 37, 3993), (18709, 37, 4070), (18710, 37, 4115), (18711, 37, 4124), (18712, 37, 4151), (18713, 37, 4160), (18714, 37, 4225), (18715, 37, 4245), (18716, 37, 4304), (18717, 37, 4334), (18718, 37, 4344), (18719, 37, 4385), (18720, 37, 4424), (18721, 37, 4434), (18722, 37, 4461), (18723, 37, 4571), (18724, 37, 4584), (18725, 37, 4681), (18726, 37, 4688), (18727, 37, 4708), (18728, 37, 4723), (18729, 37, 4764), (18730, 37, 4796), (18731, 37, 4835), (18732, 37, 4852), (18733, 37, 4855), (18734, 37, 4856), (18735, 37, 4889), (18736, 37, 4911), (18737, 37, 4941), (18738, 37, 4993), (18739, 37, 5006), (18740, 37, 5013), (18741, 37, 5045), (18742, 37, 5076), (18743, 37, 5078), (18744, 37, 5160), (18745, 37, 5190), (18746, 37, 5191), (18747, 37, 5202), (18748, 37, 5217), (18749, 37, 5231), (18750, 37, 5292), (18751, 37, 5310), (18752, 37, 5357), (18753, 37, 5359), (18754, 37, 5373), (18755, 37, 5390), (18756, 37, 5406), (18757, 37, 5411), (18758, 37, 5494), (18759, 37, 5503), (18760, 37, 5577), (18761, 37, 5589), (18762, 37, 5602), (18763, 37, 5611), (18764, 37, 5633), (18765, 37, 5714), (18766, 37, 5739), (18767, 37, 5760), (18768, 37, 5816), (18769, 37, 5849), (18770, 37, 5850), (18771, 37, 5889), (18772, 37, 5944), (18773, 37, 5969), (18774, 37, 5980), (18775, 37, 5985), (18776, 37, 6101), (18777, 37, 6151), (18778, 37, 6184), (18779, 37, 6190), (18780, 37, 6241), (18781, 37, 6256), (18782, 37, 6298), (18783, 37, 6340), (18784, 37, 6378), (18785, 37, 6411), (18786, 37, 6424), (18787, 37, 6461), (18788, 37, 6489), (18789, 37, 6540), (18790, 37, 6564), (18791, 37, 6568), (18792, 37, 6626), (18793, 37, 6657), (18794, 37, 6703), (18795, 37, 6725), (18796, 37, 6729), (18797, 37, 6763), (18798, 37, 6826), (18799, 37, 6838), (18800, 37, 6878), (18801, 37, 6896), (18802, 37, 6903), (18803, 37, 6913), (18804, 37, 6925), (18805, 37, 7022), (18806, 37, 7029), (18807, 37, 7076), (18808, 37, 7239), (18809, 37, 7275), (18810, 37, 7305), (18811, 37, 7412), (18812, 37, 7447), (18813, 37, 7517), (18814, 37, 7524), (18815, 37, 7549), (18816, 37, 7563), (18817, 37, 7564), (18818, 37, 7566), (18819, 37, 7590), (18820, 37, 7630), (18821, 37, 7650), (18822, 37, 7660), (18823, 37, 7664), (18824, 37, 7665), (18825, 37, 7747), (18826, 37, 7770), (18827, 37, 7773), (18828, 37, 7819), (18829, 37, 7825), (18830, 37, 7829), (18831, 37, 7859), (18832, 37, 7889), (18833, 37, 7935), (18834, 37, 7981), (18835, 37, 7982), (18836, 37, 7987), (18837, 37, 8045), (18838, 37, 8082), (18839, 37, 8090), (18840, 37, 8094), (18841, 37, 8103), (18842, 37, 8122), (18843, 37, 8252), (18844, 37, 8258), (18845, 37, 8311), (18846, 37, 8361), (18847, 37, 8415), (18848, 37, 8500), (18849, 37, 8509), (18850, 37, 8515), (18851, 37, 8528), (18852, 37, 8616), (18853, 37, 8641), (18854, 37, 8652), (18855, 37, 8678), (18856, 37, 8749), (18857, 37, 8789), (18858, 37, 8823), (18859, 37, 8846), (18860, 37, 8935), (18861, 37, 8946), (18862, 37, 8985), (18863, 37, 9017), (18864, 37, 9020), (18865, 37, 9031), (18866, 37, 9084), (18867, 37, 9100), (18868, 37, 9115), (18869, 37, 9173), (18870, 37, 9206), (18871, 37, 9234), (18872, 37, 9245), (18873, 37, 9285), (18874, 37, 9291), (18875, 37, 9362), (18876, 37, 9473), (18877, 37, 9482), (18878, 37, 9568), (18879, 37, 9644), (18880, 37, 9671), (18881, 37, 9672), (18882, 37, 9694), (18883, 37, 9732), (18884, 37, 9812), (18885, 37, 9835), (18886, 37, 9975), (18887, 37, 10014), (18888, 37, 10073), (18889, 37, 10165), (18890, 37, 10194), (18891, 37, 10206), (18892, 37, 10263), (18893, 37, 10305), (18894, 37, 10343), (18895, 37, 10350), (18896, 37, 10430), (18897, 37, 10483), (18898, 37, 10516), (18899, 37, 10522), (18900, 37, 10613), (18901, 37, 10616), (18902, 37, 10696), (18903, 37, 10857), (18904, 37, 11073), (18905, 37, 11093), (18906, 37, 11209), (18907, 37, 11296), (18908, 37, 11447), (18909, 37, 11507), (18910, 37, 11520), (18911, 37, 11591), (18912, 37, 11632), (18913, 37, 11644), (18914, 37, 11647), (18915, 37, 11658), (18916, 37, 11661), (18917, 37, 11696), (18918, 37, 11740), (18919, 37, 11897), (18920, 37, 11939), (18921, 37, 12053), (18922, 37, 12300), (18923, 37, 12314), (18924, 37, 12358), (18925, 37, 12398), (18926, 37, 12421), (18927, 37, 12526), (18928, 37, 12638), (18929, 37, 12728), (18930, 37, 12762), (18931, 37, 12886), (18932, 37, 12917), (18933, 37, 13019), (18934, 37, 13050), (18935, 37, 13105), (18936, 37, 13252), (18937, 37, 13331), (18938, 37, 13363), (18939, 37, 13381), (18940, 37, 13431), (18941, 37, 13557), (18942, 37, 13581), (18943, 37, 13590), (18944, 37, 13623), (18945, 37, 13688), (18946, 37, 13855), (18947, 37, 13860), (18948, 37, 13877), (18949, 37, 13882), (18950, 37, 13904), (18951, 37, 14002), (18952, 37, 14023), (18953, 37, 14040), (18954, 37, 14230), (18955, 37, 14383), (18956, 37, 14474), (18957, 37, 14546), (18958, 37, 14848), (18959, 37, 14933), (18960, 37, 14957), (18961, 37, 14958), (18962, 37, 15077), (18963, 37, 15151), (18964, 37, 15196), (18965, 37, 15200), (18966, 37, 15284), (18967, 37, 15307), (18968, 37, 15320), (18969, 37, 15461), (18970, 37, 15589), (18971, 37, 15629), (18972, 37, 15659), (18973, 37, 15961), (18974, 37, 15993), (18975, 37, 16056), (18976, 37, 16198), (18977, 37, 16207), (18978, 37, 16503), (18979, 37, 16511), (18980, 37, 16550), (18981, 37, 16743), (18982, 37, 16771), (18983, 37, 16814), (18984, 37, 16837), (18985, 37, 16840), (18986, 37, 16910), (18987, 37, 16945), (18988, 37, 16949), (18989, 37, 16965), (18990, 37, 16988), (18991, 37, 17000), (18992, 37, 17043), (18993, 37, 17073), (18994, 37, 17175), (18995, 37, 17337), (18996, 37, 17456), (18997, 37, 17691), (18998, 37, 17820), (18999, 37, 17842), (19000, 37, 17867), (19001, 37, 17977), (19002, 37, 17995), (19003, 37, 18025), (19004, 37, 18047), (19005, 37, 18129), (19006, 37, 18189), (19007, 37, 18276), (19008, 37, 18406), (19009, 37, 18475), (19010, 37, 18579), (19011, 37, 18694), (19012, 37, 18777), (19013, 37, 18806), (19014, 37, 18955), (19015, 37, 18961), (19016, 37, 18989), (19017, 37, 18993), (19018, 37, 19000), (19019, 37, 19070), (19020, 37, 19101), (19021, 37, 19190), (19022, 37, 19283), (19023, 37, 19288), (19024, 37, 19305), (19025, 37, 19329), (19026, 37, 19354), (19027, 37, 19405), (19028, 37, 19463), (19029, 37, 19484), (19030, 37, 19560), (19031, 37, 19564), (19032, 37, 19612), (19033, 37, 19739), (19034, 37, 19754), (19035, 37, 19771), (19036, 37, 19789), (19037, 37, 19834), (19038, 37, 19879), (19039, 37, 19929), (19040, 37, 20062), (19041, 37, 20160), (19042, 37, 20233), (19043, 37, 20371), (19044, 37, 20382), (19045, 37, 20531), (19046, 37, 20543), (19047, 37, 20576), (19048, 37, 20679), (19049, 37, 20686), (19050, 37, 20712), (19051, 37, 20747), (19052, 37, 20772), (19053, 37, 20774), (19054, 37, 20831), (19055, 37, 20924), (19056, 37, 21141), (19057, 37, 21237), (19058, 37, 21280), (19059, 37, 21294), (19060, 37, 21308), (19061, 37, 21334), (19062, 37, 21499), (19063, 37, 21516), (19064, 37, 21748), (19065, 37, 21854), (19066, 37, 21891), (19067, 37, 21972), (19068, 37, 22099), (19069, 37, 22174), (19070, 37, 22431), (19071, 37, 22457), (19072, 37, 22800), (19073, 37, 22809), (19074, 37, 22844), (19075, 37, 22949), (19076, 37, 23002), (19077, 37, 23050), (19078, 37, 23412), (19079, 37, 23421), (19080, 37, 23436), (19081, 37, 23862), (19082, 37, 24540), (19083, 37, 24995), (19084, 37, 25046), (19085, 37, 25066), (19086, 37, 25068), (19087, 37, 25110), (19088, 37, 25114), (19089, 37, 25165), (19485, 38, 31), (19486, 38, 97), (19487, 38, 116), (19488, 38, 148), (19489, 38, 234), (19490, 38, 276), (19491, 38, 289), (19492, 38, 397), (19493, 38, 414), (19494, 38, 488), (19495, 38, 525), (19496, 38, 648), (19497, 38, 676), (19498, 38, 752), (19499, 38, 942), (19500, 38, 973), (19501, 38, 996), (19502, 38, 1039), (19503, 38, 1068), (19504, 38, 1095), (19505, 38, 1135), (19506, 38, 1159), (19507, 38, 1270), (19508, 38, 1325), (19509, 38, 1427), (19510, 38, 1491), (19511, 38, 1520), (19512, 38, 1742), (19513, 38, 1772), (19514, 38, 1805), (19515, 38, 1806), (19516, 38, 1914), (19517, 38, 1915), (19518, 38, 1926), (19519, 38, 1981), (19520, 38, 2011), (19521, 38, 2142), (19522, 38, 2274), (19523, 38, 2284), (19524, 38, 2302), (19525, 38, 2373), (19526, 38, 2424), (19527, 38, 2453), (19528, 38, 2457), (19529, 38, 2522), (19530, 38, 2690), (19531, 38, 2741), (19532, 38, 2765), (19533, 38, 2857), (19534, 38, 2891), (19535, 38, 2920), (19536, 38, 2972), (19537, 38, 2973), (19538, 38, 3082), (19539, 38, 3225), (19540, 38, 3382), (19541, 38, 3451), (19542, 38, 3495), (19543, 38, 3577), (19544, 38, 3592), (19545, 38, 3611), (19546, 38, 3701), (19547, 38, 3727), (19548, 38, 3773), (19549, 38, 3816), (19550, 38, 3845), (19551, 38, 3993), (19552, 38, 4023), (19553, 38, 4081), (19554, 38, 4101), (19555, 38, 4123), (19556, 38, 4128), (19557, 38, 4284), (19558, 38, 4376), (19559, 38, 4429), (19560, 38, 4440), (19561, 38, 4743), (19562, 38, 4859), (19563, 38, 4988), (19564, 38, 5002), (19565, 38, 5386), (19566, 38, 5490), (19567, 38, 5494), (19568, 38, 5662), (19569, 38, 5690), (19570, 38, 5693), (19571, 38, 5748), (19572, 38, 5760), (19573, 38, 5778), (19574, 38, 5779), (19575, 38, 5804), (19576, 38, 5816), (19577, 38, 5887), (19578, 38, 6114), (19579, 38, 6213), (19580, 38, 6341), (19581, 38, 6523), (19582, 38, 6657), (19583, 38, 6725), (19584, 38, 6770), (19585, 38, 6863), (19586, 38, 6903), (19587, 38, 6933), (19588, 38, 7002), (19589, 38, 7076), (19590, 38, 7981), (19591, 38, 8167), (19592, 38, 8341), (19593, 38, 8500), (19594, 38, 8515), (19595, 38, 8533), (19596, 38, 8578), (19597, 38, 8678), (19598, 38, 8860), (19599, 38, 8865), (19600, 38, 8877), (19601, 38, 8947), (19602, 38, 9102), (19603, 38, 9362), (19604, 38, 9659), (19605, 38, 9983), (19606, 38, 10104), (19607, 38, 10194), (19608, 38, 10206), (19609, 38, 10664), (19610, 38, 11092), (19611, 38, 11093), (19612, 38, 11189), (19613, 38, 11520), (19614, 38, 11623), (19615, 38, 11850), (19616, 38, 11966), (19617, 38, 12438), (19618, 38, 13441), (19619, 38, 13918), (19620, 38, 14232), (19621, 38, 14531), (19622, 38, 14898), (19623, 38, 14938), (19624, 38, 15077), (19625, 38, 15893), (19626, 38, 16198), (19627, 38, 16389), (19628, 38, 16531), (19629, 38, 16814), (19630, 38, 17059), (19631, 38, 17608), (19632, 38, 17964), (19633, 38, 18162), (19634, 38, 19460), (19635, 38, 19784), (19636, 38, 20681), (19637, 38, 20772), (19638, 38, 21114), (19639, 38, 21227), (19640, 38, 21244), (19641, 38, 21331), (19642, 38, 22757), (19643, 38, 23009), (19644, 38, 23233), (19645, 38, 25046), (19646, 38, 25173), (19740, 39, 38), (19741, 39, 52), (19742, 39, 67), (19743, 39, 70), (19744, 39, 131), (19745, 39, 290), (19746, 39, 297), (19747, 39, 349), (19748, 39, 426), (19749, 39, 468), (19750, 39, 543), (19751, 39, 560), (19752, 39, 581), (19753, 39, 699), (19754, 39, 711), (19755, 39, 719), (19756, 39, 769), (19757, 39, 793), (19758, 39, 818), (19759, 39, 867), (19760, 39, 887), (19761, 39, 905), (19762, 39, 1046), (19763, 39, 1049), (19764, 39, 1065), (19765, 39, 1085), (19766, 39, 1113), (19767, 39, 1173), (19768, 39, 1217), (19769, 39, 1312), (19770, 39, 1335), (19771, 39, 1409), (19772, 39, 1447), (19773, 39, 1591), (19774, 39, 1884), (19775, 39, 1986), (19776, 39, 1997), (19777, 39, 2069), (19778, 39, 2137), (19779, 39, 2159), (19780, 39, 2172), (19781, 39, 2217), (19782, 39, 2261), (19783, 39, 2264), (19784, 39, 2268), (19785, 39, 2284), (19786, 39, 2285), (19787, 39, 2395), (19788, 39, 2413), (19789, 39, 2456), (19790, 39, 2486), (19791, 39, 2513), (19792, 39, 2598), (19793, 39, 2636), (19794, 39, 2647), (19795, 39, 2685), (19796, 39, 2748), (19797, 39, 2823), (19798, 39, 2915), (19799, 39, 2961), (19800, 39, 3017), (19801, 39, 3035), (19802, 39, 3038), (19803, 39, 3082), (19804, 39, 3268), (19805, 39, 3373), (19806, 39, 3419), (19807, 39, 3461), (19808, 39, 3512), (19809, 39, 3682), (19810, 39, 3767), (19811, 39, 3778), (19812, 39, 3836), (19813, 39, 3858), (19814, 39, 3887), (19815, 39, 3926), (19816, 39, 3994), (19817, 39, 4054), (19818, 39, 4082), (19819, 39, 4106), (19820, 39, 4127), (19821, 39, 4149), (19822, 39, 4167), (19823, 39, 4250), (19824, 39, 4335), (19825, 39, 4409), (19826, 39, 4470), (19827, 39, 4478), (19828, 39, 4489), (19829, 39, 4554), (19830, 39, 4564), (19831, 39, 4573), (19832, 39, 4614), (19833, 39, 4677), (19834, 39, 4777), (19835, 39, 4813), (19836, 39, 4876), (19837, 39, 4888), (19838, 39, 4911), (19839, 39, 5048), (19840, 39, 5070), (19841, 39, 5381), (19842, 39, 5541), (19843, 39, 5589), (19844, 39, 5740), (19845, 39, 5784), (19846, 39, 5802), (19847, 39, 5824), (19848, 39, 5912), (19849, 39, 5917), (19850, 39, 5969), (19851, 39, 5994), (19852, 39, 6047), (19853, 39, 6061), (19854, 39, 6189), (19855, 39, 6233), (19856, 39, 6277), (19857, 39, 6302), (19858, 39, 6303), (19859, 39, 6326), (19860, 39, 6340), (19861, 39, 6343), (19862, 39, 6353), (19863, 39, 6355), (19864, 39, 6382), (19865, 39, 6558), (19866, 39, 6659), (19867, 39, 6696), (19868, 39, 6800), (19869, 39, 6922), (19870, 39, 7033), (19871, 39, 7178), (19872, 39, 7221), (19873, 39, 7246), (19874, 39, 7292), (19875, 39, 7353), (19876, 39, 7445), (19877, 39, 7566), (19878, 39, 7583), (19879, 39, 7590), (19880, 39, 7672), (19881, 39, 7830), (19882, 39, 7857), (19883, 39, 7998), (19884, 39, 8037), (19885, 39, 8095), (19886, 39, 8172), (19887, 39, 8252), (19888, 39, 8333), (19889, 39, 8483), (19890, 39, 8535), (19891, 39, 8777), (19892, 39, 8848), (19893, 39, 9000), (19894, 39, 9011), (19895, 39, 9254), (19896, 39, 9276), (19897, 39, 9354), (19898, 39, 9530), (19899, 39, 9565), (19900, 39, 9566), (19901, 39, 9730), (19902, 39, 9762), (19903, 39, 9880), (19904, 39, 10058), (19905, 39, 10428), (19906, 39, 10436), (19907, 39, 10786), (19908, 39, 10879), (19909, 39, 10939), (19910, 39, 11173), (19911, 39, 11311), (19912, 39, 11369), (19913, 39, 11740), (19914, 39, 11764), (19915, 39, 12204), (19916, 39, 12322), (19917, 39, 12327), (19918, 39, 12916), (19919, 39, 12981), (19920, 39, 13007), (19921, 39, 13431), (19922, 39, 13661), (19923, 39, 14065), (19924, 39, 14335), (19925, 39, 14501), (19926, 39, 14574), (19927, 39, 14613), (19928, 39, 15105), (19929, 39, 15460), (19930, 39, 16239), (19931, 39, 16502), (19932, 39, 17153), (19933, 39, 17302), (19934, 39, 17418), (19935, 39, 17508), (19936, 39, 17522), (19937, 39, 17593), (19938, 39, 17645), (19939, 39, 17768), (19940, 39, 18365), (19941, 39, 18401), (19942, 39, 18668), (19943, 39, 19329), (19944, 39, 19391), (19945, 39, 19572), (19946, 39, 19625), (19947, 39, 19798), (19948, 39, 19892), (19949, 39, 20138), (19950, 39, 20233), (19951, 39, 20348), (19952, 39, 20707), (19953, 39, 20882), (19954, 39, 21013), (19955, 39, 21313), (19956, 39, 21896), (19957, 39, 23047), (19958, 39, 23862), (19959, 39, 23928), (19960, 39, 24240), (19961, 39, 25008), (19962, 39, 25087), (19995, 40, 84), (19996, 40, 90), (19997, 40, 145), (19998, 40, 385), (19999, 40, 566), (20000, 40, 657), (20001, 40, 774), (20002, 40, 851), (20003, 40, 870), (20004, 40, 973), (20005, 40, 1029), (20006, 40, 1415), (20007, 40, 1580), (20008, 40, 1649), (20009, 40, 1770), (20010, 40, 1994), (20011, 40, 2062), (20012, 40, 2466), (20013, 40, 2494), (20014, 40, 2837), (20015, 40, 3515), (20016, 40, 3528), (20017, 40, 3899), (20018, 40, 4434), (20019, 40, 4539), (20020, 40, 4621), (20021, 40, 5167), (20022, 40, 5359), (20023, 40, 6478), (20024, 40, 6913), (20025, 40, 8596), (20026, 40, 9017), (20027, 40, 9033), (20028, 40, 9100), (20029, 40, 9617), (20030, 40, 10104), (20031, 40, 10206), (20032, 40, 10696), (20033, 40, 11010), (20034, 40, 11320), (20035, 40, 11647), (20036, 40, 11740), (20037, 40, 12564), (20038, 40, 13541), (20039, 40, 15130), (20040, 40, 16801), (20041, 40, 21755), (20058, 41, 22), (20059, 41, 45), (20060, 41, 53), (20061, 41, 58), (20062, 41, 109), (20063, 41, 156), (20064, 41, 171), (20065, 41, 178), (20066, 41, 226), (20067, 41, 288), (20068, 41, 298), (20069, 41, 310), (20070, 41, 334), (20071, 41, 635), (20072, 41, 643), (20073, 41, 659), (20074, 41, 718), (20075, 41, 727), (20076, 41, 753), (20077, 41, 778), (20078, 41, 784), (20079, 41, 815), (20080, 41, 822), (20081, 41, 951), (20082, 41, 953), (20083, 41, 995), (20084, 41, 1017), (20085, 41, 1093), (20086, 41, 1101), (20087, 41, 1232), (20088, 41, 1242), (20089, 41, 1256), (20090, 41, 1308), (20091, 41, 1417), (20092, 41, 1418), (20093, 41, 1602), (20094, 41, 1646), (20095, 41, 1656), (20096, 41, 1691), (20097, 41, 1793), (20098, 41, 1820), (20099, 41, 1839), (20100, 41, 1878), (20101, 41, 2127), (20102, 41, 2135), (20103, 41, 2182), (20104, 41, 2364), (20105, 41, 2420), (20106, 41, 2621), (20107, 41, 2682), (20108, 41, 2785), (20109, 41, 2786), (20110, 41, 2805), (20111, 41, 2806), (20112, 41, 2820), (20113, 41, 2899), (20114, 41, 2965), (20115, 41, 2990), (20116, 41, 3020), (20117, 41, 3028), (20118, 41, 3059), (20119, 41, 3072), (20120, 41, 3141), (20121, 41, 3391), (20122, 41, 3499), (20123, 41, 3644), (20124, 41, 3753), (20125, 41, 3840), (20126, 41, 3847), (20127, 41, 3908), (20128, 41, 3968), (20129, 41, 4204), (20130, 41, 4238), (20131, 41, 4317), (20132, 41, 4675), (20133, 41, 4770), (20134, 41, 4774), (20135, 41, 4786), (20136, 41, 4838), (20137, 41, 4839), (20138, 41, 4920), (20139, 41, 5063), (20140, 41, 5084), (20141, 41, 5185), (20142, 41, 5260), (20143, 41, 5278), (20144, 41, 5305), (20145, 41, 5315), (20146, 41, 5344), (20147, 41, 5469), (20148, 41, 5518), (20149, 41, 5665), (20150, 41, 5686), (20151, 41, 5717), (20152, 41, 5737), (20153, 41, 5769), (20154, 41, 5806), (20155, 41, 5814), (20156, 41, 5843), (20157, 41, 6029), (20158, 41, 6055), (20159, 41, 6215), (20160, 41, 6219), (20161, 41, 6314), (20162, 41, 6464), (20163, 41, 6497), (20164, 41, 6632), (20165, 41, 6635), (20166, 41, 7097), (20167, 41, 7165), (20168, 41, 7167), (20169, 41, 7203), (20170, 41, 7256), (20171, 41, 7271), (20172, 41, 7371), (20173, 41, 7382), (20174, 41, 7398), (20175, 41, 7422), (20176, 41, 7598), (20177, 41, 7605), (20178, 41, 7670), (20179, 41, 7711), (20180, 41, 7735), (20181, 41, 7756), (20182, 41, 7781), (20183, 41, 7785), (20184, 41, 7817), (20185, 41, 7828), (20186, 41, 7963), (20187, 41, 8009), (20188, 41, 8058), (20189, 41, 8067), (20190, 41, 8210), (20191, 41, 8248), (20192, 41, 8284), (20193, 41, 8407), (20194, 41, 8442), (20195, 41, 8734), (20196, 41, 8758), (20197, 41, 8837), (20198, 41, 8913), (20199, 41, 9062), (20200, 41, 9094), (20201, 41, 9165), (20202, 41, 9185), (20203, 41, 9192), (20204, 41, 9211), (20205, 41, 9329), (20206, 41, 9348), (20207, 41, 9455), (20208, 41, 9580), (20209, 41, 9624), (20210, 41, 9641), (20211, 41, 9664), (20212, 41, 9705), (20213, 41, 9766), (20214, 41, 9767), (20215, 41, 9850), (20216, 41, 9852), (20217, 41, 9927), (20218, 41, 9933), (20219, 41, 9962), (20220, 41, 10026), (20221, 41, 10031), (20222, 41, 10034), (20223, 41, 10264), (20224, 41, 10266), (20225, 41, 10334), (20226, 41, 10347), (20227, 41, 10440), (20228, 41, 10465), (20229, 41, 10466), (20230, 41, 10503), (20231, 41, 10558), (20232, 41, 10568), (20233, 41, 10570), (20234, 41, 10585), (20235, 41, 10592), (20236, 41, 10644), (20237, 41, 10708), (20238, 41, 10729), (20239, 41, 10743), (20240, 41, 10773), (20241, 41, 10891), (20242, 41, 10930), (20243, 41, 10947), (20244, 41, 10958), (20245, 41, 10980), (20246, 41, 10986), (20247, 41, 11019), (20248, 41, 11044), (20249, 41, 11098), (20250, 41, 11113), (20251, 41, 11134), (20252, 41, 11186), (20253, 41, 11204), (20254, 41, 11245), (20255, 41, 11279), (20256, 41, 11346), (20257, 41, 11379), (20258, 41, 11498), (20259, 41, 11621), (20260, 41, 11627), (20261, 41, 11633), (20262, 41, 11662), (20263, 41, 11698), (20264, 41, 11854), (20265, 41, 11917), (20266, 41, 11934), (20267, 41, 11946), (20268, 41, 11973), (20269, 41, 11998), (20270, 41, 12024), (20271, 41, 12094), (20272, 41, 12104), (20273, 41, 12132), (20274, 41, 12165), (20275, 41, 12178), (20276, 41, 12336), (20277, 41, 12389), (20278, 41, 12456), (20279, 41, 12535), (20280, 41, 12542), (20281, 41, 12695), (20282, 41, 12723), (20283, 41, 12753), (20284, 41, 12904), (20285, 41, 12910), (20286, 41, 12948), (20287, 41, 12961), (20288, 41, 13004), (20289, 41, 13163), (20290, 41, 13239), (20291, 41, 13258), (20292, 41, 13316), (20293, 41, 13343), (20294, 41, 13344), (20295, 41, 13371), (20296, 41, 13396), (20297, 41, 13452), (20298, 41, 13525), (20299, 41, 13529), (20300, 41, 13544), (20301, 41, 13562), (20302, 41, 13650), (20303, 41, 13655), (20304, 41, 13668), (20305, 41, 13790), (20306, 41, 13821), (20307, 41, 13872), (20308, 41, 13888), (20309, 41, 13920), (20310, 41, 13947), (20311, 41, 13967), (20312, 41, 14071), (20313, 41, 14085), (20314, 41, 14089), (20315, 41, 14092), (20316, 41, 14137), (20317, 41, 14193), (20318, 41, 14361), (20319, 41, 14391), (20320, 41, 14586), (20321, 41, 14587), (20322, 41, 14617), (20323, 41, 14713), (20324, 41, 14735), (20325, 41, 14757), (20326, 41, 14773), (20327, 41, 14833), (20328, 41, 14866), (20329, 41, 14966), (20330, 41, 14980), (20331, 41, 15034), (20332, 41, 15155), (20333, 41, 15255), (20334, 41, 15360), (20335, 41, 15416), (20336, 41, 15550), (20337, 41, 15607), (20338, 41, 15609), (20339, 41, 15674), (20340, 41, 15677), (20341, 41, 15682), (20342, 41, 15759), (20343, 41, 15894), (20344, 41, 15966), (20345, 41, 16037), (20346, 41, 16038), (20347, 41, 16039), (20348, 41, 16091), (20349, 41, 16103), (20350, 41, 16153), (20351, 41, 16200), (20352, 41, 16201), (20353, 41, 16229), (20354, 41, 16255), (20355, 41, 16263), (20356, 41, 16267), (20357, 41, 16282), (20358, 41, 16326), (20359, 41, 16331), (20360, 41, 16354), (20361, 41, 16364), (20362, 41, 16469), (20363, 41, 16538), (20364, 41, 16541), (20365, 41, 16558), (20366, 41, 16563), (20367, 41, 16598), (20368, 41, 16695), (20369, 41, 16725), (20370, 41, 16737), (20371, 41, 16772), (20372, 41, 16866), (20373, 41, 16932), (20374, 41, 16963), (20375, 41, 16983), (20376, 41, 17178), (20377, 41, 17326), (20378, 41, 17344), (20379, 41, 17367), (20380, 41, 17474), (20381, 41, 17530), (20382, 41, 17611), (20383, 41, 17633), (20384, 41, 17669), (20385, 41, 17697), (20386, 41, 17703), (20387, 41, 17735), (20388, 41, 17845), (20389, 41, 17930), (20390, 41, 17933), (20391, 41, 17986), (20392, 41, 18004), (20393, 41, 18056), (20394, 41, 18122), (20395, 41, 18206), (20396, 41, 18278), (20397, 41, 18435), (20398, 41, 18553), (20399, 41, 18594), (20400, 41, 18602), (20401, 41, 18672), (20402, 41, 18733), (20403, 41, 18800), (20404, 41, 18879), (20405, 41, 18895), (20406, 41, 18979), (20407, 41, 19087), (20408, 41, 19182), (20409, 41, 19199), (20410, 41, 19297), (20411, 41, 19308), (20412, 41, 19331), (20413, 41, 19333), (20414, 41, 19520), (20415, 41, 19528), (20416, 41, 19557), (20417, 41, 19577), (20418, 41, 19631), (20419, 41, 19744), (20420, 41, 19747), (20421, 41, 19865), (20422, 41, 19955), (20423, 41, 19970), (20424, 41, 20034), (20425, 41, 20105), (20426, 41, 20166), (20427, 41, 20265), (20428, 41, 20272), (20429, 41, 20285), (20430, 41, 20409), (20431, 41, 20519), (20432, 41, 20603), (20433, 41, 20653), (20434, 41, 20853), (20435, 41, 20870), (20436, 41, 20873), (20437, 41, 20914), (20438, 41, 21053), (20439, 41, 21104), (20440, 41, 21197), (20441, 41, 21363), (20442, 41, 21626), (20443, 41, 21665), (20444, 41, 21830), (20445, 41, 21928), (20446, 41, 22165), (20447, 41, 22396), (20448, 41, 22607), (20449, 41, 22637), (20450, 41, 22762), (20451, 41, 22798), (20452, 41, 23289), (20453, 41, 23387), (20454, 41, 23481), (20455, 41, 23530), (20456, 41, 23560), (20457, 41, 23644), (20458, 41, 23783), (20459, 41, 23803), (20460, 41, 23922), (20461, 41, 23960), (20462, 41, 24159), (20463, 41, 24160), (20464, 41, 24164), (20465, 41, 24305), (20466, 41, 24442), (20467, 41, 24490), (20468, 41, 24535), (20469, 41, 24603), (20470, 41, 24611), (20471, 41, 24936), (20472, 41, 25037), (20473, 41, 25058), (20474, 41, 25075), (20475, 41, 25078), (20476, 41, 25107), (20477, 41, 25149), (20569, 42, 20), (20570, 42, 58), (20571, 42, 60), (20572, 42, 96), (20573, 42, 130), (20574, 42, 160), (20575, 42, 189), (20576, 42, 210), (20577, 42, 241), (20578, 42, 252), (20579, 42, 275), (20580, 42, 280), (20581, 42, 298), (20582, 42, 336), (20583, 42, 345), (20584, 42, 458), (20585, 42, 519), (20586, 42, 582), (20587, 42, 599), (20588, 42, 695), (20589, 42, 723), (20590, 42, 753), (20591, 42, 828), (20592, 42, 1083), (20593, 42, 1093), (20594, 42, 1121), (20595, 42, 1167), (20596, 42, 1211), (20597, 42, 1235), (20598, 42, 1247), (20599, 42, 1442), (20600, 42, 1634), (20601, 42, 1646), (20602, 42, 1722), (20603, 42, 1746), (20604, 42, 1758), (20605, 42, 1815), (20606, 42, 1975), (20607, 42, 2066), (20608, 42, 2135), (20609, 42, 2316), (20610, 42, 2337), (20611, 42, 2389), (20612, 42, 2409), (20613, 42, 2512), (20614, 42, 2658), (20615, 42, 2805), (20616, 42, 2806), (20617, 42, 2838), (20618, 42, 2955), (20619, 42, 3020), (20620, 42, 3036), (20621, 42, 3201), (20622, 42, 3239), (20623, 42, 3267), (20624, 42, 3364), (20625, 42, 3390), (20626, 42, 3407), (20627, 42, 3549), (20628, 42, 3570), (20629, 42, 3717), (20630, 42, 3753), (20631, 42, 3771), (20632, 42, 3866), (20633, 42, 3867), (20634, 42, 3878), (20635, 42, 3998), (20636, 42, 4090), (20637, 42, 4104), (20638, 42, 4155), (20639, 42, 4204), (20640, 42, 4238), (20641, 42, 4317), (20642, 42, 4515), (20643, 42, 5074), (20644, 42, 5315), (20645, 42, 5348), (20646, 42, 5426), (20647, 42, 5459), (20648, 42, 5550), (20649, 42, 5586), (20650, 42, 5665), (20651, 42, 5717), (20652, 42, 5728), (20653, 42, 5852), (20654, 42, 5900), (20655, 42, 6002), (20656, 42, 6042), (20657, 42, 6048), (20658, 42, 6138), (20659, 42, 6175), (20660, 42, 6379), (20661, 42, 6446), (20662, 42, 6521), (20663, 42, 6532), (20664, 42, 6542), (20665, 42, 6641), (20666, 42, 6661), (20667, 42, 6764), (20668, 42, 6833), (20669, 42, 6989), (20670, 42, 7049), (20671, 42, 7271), (20672, 42, 7309), (20673, 42, 7377), (20674, 42, 7391), (20675, 42, 7403), (20676, 42, 7614), (20677, 42, 7615), (20678, 42, 7679), (20679, 42, 7717), (20680, 42, 7763), (20681, 42, 7794), (20682, 42, 7895), (20683, 42, 8110), (20684, 42, 8112), (20685, 42, 8151), (20686, 42, 8187), (20687, 42, 8295), (20688, 42, 8350), (20689, 42, 8418), (20690, 42, 8531), (20691, 42, 8604), (20692, 42, 8841), (20693, 42, 8853), (20694, 42, 8897), (20695, 42, 9022), (20696, 42, 9165), (20697, 42, 9211), (20698, 42, 9274), (20699, 42, 9288), (20700, 42, 9388), (20701, 42, 9499), (20702, 42, 9533), (20703, 42, 9571), (20704, 42, 9597), (20705, 42, 9734), (20706, 42, 9874), (20707, 42, 9892), (20708, 42, 9927), (20709, 42, 9943), (20710, 42, 10007), (20711, 42, 10219), (20712, 42, 10238), (20713, 42, 10258), (20714, 42, 10371), (20715, 42, 10392), (20716, 42, 10440), (20717, 42, 10456), (20718, 42, 10463), (20719, 42, 10487), (20720, 42, 10507), (20721, 42, 10551), (20722, 42, 10558), (20723, 42, 10606), (20724, 42, 10629), (20725, 42, 10694), (20726, 42, 10751), (20727, 42, 10768), (20728, 42, 10769), (20729, 42, 10980), (20730, 42, 10986), (20731, 42, 11007), (20732, 42, 11056), (20733, 42, 11113), (20734, 42, 11144), (20735, 42, 11169), (20736, 42, 11241), (20737, 42, 11250), (20738, 42, 11309), (20739, 42, 11325), (20740, 42, 11345), (20741, 42, 11431), (20742, 42, 11481), (20743, 42, 11541), (20744, 42, 11589), (20745, 42, 11627), (20746, 42, 11697), (20747, 42, 11698), (20748, 42, 11704), (20749, 42, 11724), (20750, 42, 11775), (20751, 42, 11790), (20752, 42, 11807), (20753, 42, 11917), (20754, 42, 12080), (20755, 42, 12294), (20756, 42, 12329), (20757, 42, 12355), (20758, 42, 12500), (20759, 42, 12517), (20760, 42, 12590), (20761, 42, 12758), (20762, 42, 12835), (20763, 42, 12850), (20764, 42, 12897), (20765, 42, 12904), (20766, 42, 12932), (20767, 42, 12991), (20768, 42, 13030), (20769, 42, 13159), (20770, 42, 13215), (20771, 42, 13373), (20772, 42, 13536), (20773, 42, 13549), (20774, 42, 13554), (20775, 42, 13559), (20776, 42, 13626), (20777, 42, 13647), (20778, 42, 13655), (20779, 42, 13689), (20780, 42, 13822), (20781, 42, 13842), (20782, 42, 13913), (20783, 42, 13937), (20784, 42, 13947), (20785, 42, 14048), (20786, 42, 14098), (20787, 42, 14137), (20788, 42, 14248), (20789, 42, 14321), (20790, 42, 14330), (20791, 42, 14398), (20792, 42, 14413), (20793, 42, 14448), (20794, 42, 14554), (20795, 42, 14587), (20796, 42, 14590), (20797, 42, 14644), (20798, 42, 14747), (20799, 42, 14854), (20800, 42, 14860), (20801, 42, 15035), (20802, 42, 15038), (20803, 42, 15074), (20804, 42, 15157), (20805, 42, 15168), (20806, 42, 15176), (20807, 42, 15216), (20808, 42, 15233), (20809, 42, 15274), (20810, 42, 15344), (20811, 42, 15582), (20812, 42, 15591), (20813, 42, 15635), (20814, 42, 15645), (20815, 42, 15671), (20816, 42, 15682), (20817, 42, 15691), (20818, 42, 15766), (20819, 42, 15790), (20820, 42, 15849), (20821, 42, 15872), (20822, 42, 15965), (20823, 42, 16043), (20824, 42, 16045), (20825, 42, 16048), (20826, 42, 16068), (20827, 42, 16267), (20828, 42, 16282), (20829, 42, 16291), (20830, 42, 16295), (20831, 42, 16316), (20832, 42, 16362), (20833, 42, 16364), (20834, 42, 16520), (20835, 42, 16526), (20836, 42, 16660), (20837, 42, 16803), (20838, 42, 16824), (20839, 42, 16825), (20840, 42, 16875), (20841, 42, 16963), (20842, 42, 17027), (20843, 42, 17091), (20844, 42, 17237), (20845, 42, 17245), (20846, 42, 17268), (20847, 42, 17269), (20848, 42, 17323), (20849, 42, 17350), (20850, 42, 17408), (20851, 42, 17489), (20852, 42, 17617), (20853, 42, 17619), (20854, 42, 17657), (20855, 42, 17685), (20856, 42, 17718), (20857, 42, 17721), (20858, 42, 17745), (20859, 42, 17830), (20860, 42, 17836), (20861, 42, 17887), (20862, 42, 17888), (20863, 42, 17918), (20864, 42, 17936), (20865, 42, 17940), (20866, 42, 17981), (20867, 42, 18026), (20868, 42, 18056), (20869, 42, 18278), (20870, 42, 18305), (20871, 42, 18306), (20872, 42, 18345), (20873, 42, 18376), (20874, 42, 18439), (20875, 42, 18444), (20876, 42, 18468), (20877, 42, 18512), (20878, 42, 18524), (20879, 42, 18553), (20880, 42, 18561), (20881, 42, 18695), (20882, 42, 18714), (20883, 42, 18895), (20884, 42, 18920), (20885, 42, 19019), (20886, 42, 19134), (20887, 42, 19206), (20888, 42, 19421), (20889, 42, 19436), (20890, 42, 19450), (20891, 42, 19469), (20892, 42, 19500), (20893, 42, 19579), (20894, 42, 19631), (20895, 42, 19869), (20896, 42, 19895), (20897, 42, 19937), (20898, 42, 20006), (20899, 42, 20166), (20900, 42, 20192), (20901, 42, 20251), (20902, 42, 20284), (20903, 42, 20320), (20904, 42, 20345), (20905, 42, 20469), (20906, 42, 21061), (20907, 42, 21104), (20908, 42, 21129), (20909, 42, 21316), (20910, 42, 21341), (20911, 42, 21365), (20912, 42, 21565), (20913, 42, 21626), (20914, 42, 21629), (20915, 42, 21640), (20916, 42, 21656), (20917, 42, 21923), (20918, 42, 22297), (20919, 42, 22605), (20920, 42, 22607), (20921, 42, 22727), (20922, 42, 23023), (20923, 42, 23254), (20924, 42, 23259), (20925, 42, 23289), (20926, 42, 23363), (20927, 42, 23387), (20928, 42, 23595), (20929, 42, 23665), (20930, 42, 24041), (20931, 42, 24196), (20932, 42, 24250), (20933, 42, 24334), (20934, 42, 24351), (20935, 42, 24367), (20936, 42, 24442), (20937, 42, 24603), (20938, 42, 24704), (20939, 42, 24936), (20940, 42, 24937), (20941, 42, 24991), (20942, 42, 25041), (20943, 42, 25075), (20944, 42, 25122), (21080, 43, 58), (21081, 43, 109), (21082, 43, 156), (21083, 43, 298), (21084, 43, 334), (21085, 43, 635), (21086, 43, 643), (21087, 43, 659), (21088, 43, 753), (21089, 43, 778), (21090, 43, 784), (21091, 43, 822), (21092, 43, 951), (21093, 43, 953), (21094, 43, 995), (21095, 43, 1017), (21096, 43, 1093), (21097, 43, 1101), (21098, 43, 1242), (21099, 43, 1417), (21100, 43, 1602), (21101, 43, 1793), (21102, 43, 1820), (21103, 43, 1839), (21104, 43, 2135), (21105, 43, 2364), (21106, 43, 2420), (21107, 43, 2806), (21108, 43, 2899), (21109, 43, 2990), (21110, 43, 3020), (21111, 43, 3028), (21112, 43, 3059), (21113, 43, 3072), (21114, 43, 3753), (21115, 43, 3840), (21116, 43, 3847), (21117, 43, 4204), (21118, 43, 4238), (21119, 43, 4317), (21120, 43, 4774), (21121, 43, 4786), (21122, 43, 4839), (21123, 43, 4920), (21124, 43, 5084), (21125, 43, 5185), (21126, 43, 5278), (21127, 43, 5305), (21128, 43, 5315), (21129, 43, 5469), (21130, 43, 5518), (21131, 43, 5665), (21132, 43, 5686), (21133, 43, 5717), (21134, 43, 5737), (21135, 43, 5769), (21136, 43, 5806), (21137, 43, 5814), (21138, 43, 5843), (21139, 43, 6029), (21140, 43, 6215), (21141, 43, 6219), (21142, 43, 6464), (21143, 43, 6497), (21144, 43, 6632), (21145, 43, 6635), (21146, 43, 7097), (21147, 43, 7165), (21148, 43, 7167), (21149, 43, 7256), (21150, 43, 7271), (21151, 43, 7371), (21152, 43, 7382), (21153, 43, 7398), (21154, 43, 7598), (21155, 43, 7735), (21156, 43, 7756), (21157, 43, 7785), (21158, 43, 7963), (21159, 43, 8058), (21160, 43, 8067), (21161, 43, 8210), (21162, 43, 8407), (21163, 43, 8758), (21164, 43, 8837), (21165, 43, 9062), (21166, 43, 9094), (21167, 43, 9165), (21168, 43, 9185), (21169, 43, 9192), (21170, 43, 9211), (21171, 43, 9329), (21172, 43, 9348), (21173, 43, 9455), (21174, 43, 9580), (21175, 43, 9624), (21176, 43, 9641), (21177, 43, 9664), (21178, 43, 9766), (21179, 43, 9767), (21180, 43, 9850), (21181, 43, 9852), (21182, 43, 9927), (21183, 43, 9933), (21184, 43, 9962), (21185, 43, 10026), (21186, 43, 10031), (21187, 43, 10034), (21188, 43, 10264), (21189, 43, 10266), (21190, 43, 10334), (21191, 43, 10347), (21192, 43, 10465), (21193, 43, 10466), (21194, 43, 10503), (21195, 43, 10570), (21196, 43, 10585), (21197, 43, 10592), (21198, 43, 10644), (21199, 43, 10708), (21200, 43, 10891), (21201, 43, 10930), (21202, 43, 10958), (21203, 43, 10980), (21204, 43, 10986), (21205, 43, 11019), (21206, 43, 11113), (21207, 43, 11134), (21208, 43, 11186), (21209, 43, 11204), (21210, 43, 11245), (21211, 43, 11279), (21212, 43, 11379), (21213, 43, 11498), (21214, 43, 11627), (21215, 43, 11633), (21216, 43, 11662), (21217, 43, 11854), (21218, 43, 11917), (21219, 43, 11934), (21220, 43, 11973), (21221, 43, 12024), (21222, 43, 12094), (21223, 43, 12104), (21224, 43, 12132), (21225, 43, 12178), (21226, 43, 12336), (21227, 43, 12456), (21228, 43, 12723), (21229, 43, 12753), (21230, 43, 12904), (21231, 43, 12910), (21232, 43, 12948), (21233, 43, 12961), (21234, 43, 13004), (21235, 43, 13163), (21236, 43, 13239), (21237, 43, 13258), (21238, 43, 13316), (21239, 43, 13344), (21240, 43, 13371), (21241, 43, 13396), (21242, 43, 13452), (21243, 43, 13525), (21244, 43, 13544), (21245, 43, 13650), (21246, 43, 13655), (21247, 43, 13668), (21248, 43, 13821), (21249, 43, 13872), (21250, 43, 13888), (21251, 43, 13920), (21252, 43, 13967), (21253, 43, 14085), (21254, 43, 14092), (21255, 43, 14361), (21256, 43, 14586), (21257, 43, 14617), (21258, 43, 14713), (21259, 43, 14735), (21260, 43, 14757), (21261, 43, 14866), (21262, 43, 14980), (21263, 43, 15034), (21264, 43, 15155), (21265, 43, 15416), (21266, 43, 15609), (21267, 43, 15674), (21268, 43, 15759), (21269, 43, 15894), (21270, 43, 16037), (21271, 43, 16039), (21272, 43, 16091), (21273, 43, 16103), (21274, 43, 16153), (21275, 43, 16200), (21276, 43, 16229), (21277, 43, 16255), (21278, 43, 16263), (21279, 43, 16267), (21280, 43, 16282), (21281, 43, 16326), (21282, 43, 16331), (21283, 43, 16354), (21284, 43, 16364), (21285, 43, 16469), (21286, 43, 16538), (21287, 43, 16558), (21288, 43, 16563), (21289, 43, 16598), (21290, 43, 16737), (21291, 43, 16866), (21292, 43, 16983), (21293, 43, 17178), (21294, 43, 17326), (21295, 43, 17344), (21296, 43, 17367), (21297, 43, 17633), (21298, 43, 17669), (21299, 43, 17697), (21300, 43, 17703), (21301, 43, 17845), (21302, 43, 17933), (21303, 43, 17986), (21304, 43, 18122), (21305, 43, 18278), (21306, 43, 18435), (21307, 43, 18602), (21308, 43, 18672); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (21309, 43, 18733), (21310, 43, 18879), (21311, 43, 18895), (21312, 43, 18979), (21313, 43, 19087), (21314, 43, 19297), (21315, 43, 19308), (21316, 43, 19331), (21317, 43, 19333), (21318, 43, 19557), (21319, 43, 19577), (21320, 43, 19747), (21321, 43, 19865), (21322, 43, 19955), (21323, 43, 19970), (21324, 43, 20034), (21325, 43, 20105), (21326, 43, 20166), (21327, 43, 20265), (21328, 43, 20272), (21329, 43, 20285), (21330, 43, 20409), (21331, 43, 20519), (21332, 43, 20603), (21333, 43, 20653), (21334, 43, 20853), (21335, 43, 20870), (21336, 43, 20914), (21337, 43, 21053), (21338, 43, 21104), (21339, 43, 21197), (21340, 43, 21363), (21341, 43, 21665), (21342, 43, 21830), (21343, 43, 21928), (21344, 43, 22165), (21345, 43, 22396), (21346, 43, 22607), (21347, 43, 22637), (21348, 43, 22762), (21349, 43, 22798), (21350, 43, 23289), (21351, 43, 23387), (21352, 43, 23481), (21353, 43, 23530), (21354, 43, 23644), (21355, 43, 23783), (21356, 43, 23803), (21357, 43, 23922), (21358, 43, 23960), (21359, 43, 24164), (21360, 43, 24442), (21361, 43, 24490), (21362, 43, 24535), (21363, 43, 24603), (21364, 43, 24611), (21365, 43, 24936), (21366, 43, 25037), (21367, 43, 25058), (21368, 43, 25078), (21369, 43, 25107), (21370, 43, 25149), (21591, 44, 115), (21592, 44, 582), (21593, 44, 1881), (21594, 44, 1957), (21595, 44, 2472), (21596, 44, 2546), (21597, 44, 3036), (21598, 44, 3170), (21599, 44, 3570), (21600, 44, 4320), (21601, 44, 4496), (21602, 44, 5600), (21603, 44, 5676), (21604, 44, 6943), (21605, 44, 7304), (21606, 44, 7514), (21607, 44, 7717), (21608, 44, 8503), (21609, 44, 9003), (21610, 44, 9376), (21611, 44, 9388), (21612, 44, 10235), (21613, 44, 10377), (21614, 44, 11102), (21615, 44, 11180), (21616, 44, 11616), (21617, 44, 11683), (21618, 44, 11907), (21619, 44, 12380), (21620, 44, 13455), (21621, 44, 13972), (21622, 44, 15144), (21623, 44, 15288), (21624, 44, 15533), (21625, 44, 15582), (21626, 44, 15635), (21627, 44, 16660), (21628, 44, 17044), (21629, 44, 17323), (21630, 44, 17489), (21631, 44, 17603), (21632, 44, 17751), (21633, 44, 18278), (21634, 44, 18455), (21635, 44, 19080), (21636, 44, 19269), (21637, 44, 19443), (21638, 44, 19500), (21639, 44, 19505), (21640, 44, 21316), (21641, 44, 21823), (21642, 44, 22816), (21643, 44, 23142), (21644, 44, 23444), (21645, 44, 24437), (21646, 44, 24827), (21647, 44, 25180), (21654, 45, 260), (21655, 45, 425), (21656, 45, 481), (21657, 45, 541), (21658, 45, 583), (21659, 45, 604), (21660, 45, 1143), (21661, 45, 1741), (21662, 45, 1936), (21663, 45, 2007), (21664, 45, 2071), (21665, 45, 2418), (21666, 45, 2675), (21667, 45, 3545), (21668, 45, 3625), (21669, 45, 4255), (21670, 45, 4320), (21671, 45, 5063), (21672, 45, 5184), (21673, 45, 5355), (21674, 45, 5900), (21675, 45, 5934), (21676, 45, 6347), (21677, 45, 7012), (21678, 45, 7146), (21679, 45, 7337), (21680, 45, 8159), (21681, 45, 8583), (21682, 45, 8705), (21683, 45, 9533), (21684, 45, 9604), (21685, 45, 9871), (21686, 45, 10045), (21687, 45, 10120), (21688, 45, 10150), (21689, 45, 10568), (21690, 45, 11070), (21691, 45, 11429), (21692, 45, 11617), (21693, 45, 11724), (21694, 45, 11729), (21695, 45, 11807), (21696, 45, 11903), (21697, 45, 12106), (21698, 45, 12288), (21699, 45, 12360), (21700, 45, 12609), (21701, 45, 12726), (21702, 45, 12733), (21703, 45, 12837), (21704, 45, 12854), (21705, 45, 12975), (21706, 45, 13115), (21707, 45, 13234), (21708, 45, 14071), (21709, 45, 14465), (21710, 45, 14705), (21711, 45, 14727), (21712, 45, 15085), (21713, 45, 15206), (21714, 45, 15340), (21715, 45, 15515), (21716, 45, 15834), (21717, 45, 15949), (21718, 45, 16118), (21719, 45, 16213), (21720, 45, 16288), (21721, 45, 16695), (21722, 45, 16830), (21723, 45, 16875), (21724, 45, 17091), (21725, 45, 17245), (21726, 45, 17498), (21727, 45, 17623), (21728, 45, 17824), (21729, 45, 18075), (21730, 45, 18169), (21731, 45, 18170), (21732, 45, 18227), (21733, 45, 18253), (21734, 45, 18263), (21735, 45, 18305), (21736, 45, 18487), (21737, 45, 18924), (21738, 45, 19264), (21739, 45, 19284), (21740, 45, 19752), (21741, 45, 19806), (21742, 45, 19930), (21743, 45, 20284), (21744, 45, 20761), (21745, 45, 20816), (21746, 45, 20988), (21747, 45, 21088), (21748, 45, 21129), (21749, 45, 21998), (21750, 45, 22096), (21751, 45, 22160), (21752, 45, 22695), (21753, 45, 22714), (21754, 45, 23275), (21755, 45, 25092), (21781, 46, 58), (21782, 46, 109), (21783, 46, 160), (21784, 46, 163), (21785, 46, 213), (21786, 46, 219), (21787, 46, 298), (21788, 46, 327), (21789, 46, 330), (21790, 46, 336), (21791, 46, 440), (21792, 46, 541), (21793, 46, 545), (21794, 46, 649), (21795, 46, 653), (21796, 46, 723), (21797, 46, 792), (21798, 46, 951), (21799, 46, 1017), (21800, 46, 1026), (21801, 46, 1083), (21802, 46, 1136), (21803, 46, 1417), (21804, 46, 1420), (21805, 46, 1455), (21806, 46, 1456), (21807, 46, 1525), (21808, 46, 1690), (21809, 46, 1722), (21810, 46, 1746), (21811, 46, 1793), (21812, 46, 1820), (21813, 46, 1839), (21814, 46, 1936), (21815, 46, 1957), (21816, 46, 2210), (21817, 46, 2337), (21818, 46, 2364), (21819, 46, 2512), (21820, 46, 2575), (21821, 46, 2580), (21822, 46, 2675), (21823, 46, 3020), (21824, 46, 3028), (21825, 46, 3072), (21826, 46, 3303), (21827, 46, 3316), (21828, 46, 3343), (21829, 46, 3475), (21830, 46, 3570), (21831, 46, 4104), (21832, 46, 4401), (21833, 46, 5084), (21834, 46, 5278), (21835, 46, 5355), (21836, 46, 5459), (21837, 46, 5601), (21838, 46, 5743), (21839, 46, 5806), (21840, 46, 5817), (21841, 46, 5935), (21842, 46, 6009), (21843, 46, 6093), (21844, 46, 6121), (21845, 46, 6138), (21846, 46, 6141), (21847, 46, 6368), (21848, 46, 6379), (21849, 46, 6491), (21850, 46, 6521), (21851, 46, 6623), (21852, 46, 6751), (21853, 46, 6919), (21854, 46, 6989), (21855, 46, 7141), (21856, 46, 7337), (21857, 46, 7390), (21858, 46, 7542), (21859, 46, 8007), (21860, 46, 8151), (21861, 46, 8222), (21862, 46, 8531), (21863, 46, 8604), (21864, 46, 8813), (21865, 46, 9175), (21866, 46, 9366), (21867, 46, 9377), (21868, 46, 9533), (21869, 46, 9570), (21870, 46, 9571), (21871, 46, 9575), (21872, 46, 9579), (21873, 46, 9704), (21874, 46, 9733), (21875, 46, 9734), (21876, 46, 9802), (21877, 46, 9896), (21878, 46, 9943), (21879, 46, 9951), (21880, 46, 10120), (21881, 46, 10377), (21882, 46, 10456), (21883, 46, 10568), (21884, 46, 10713), (21885, 46, 10856), (21886, 46, 10920), (21887, 46, 10944), (21888, 46, 10969), (21889, 46, 10988), (21890, 46, 11070), (21891, 46, 11100), (21892, 46, 11761), (21893, 46, 11771), (21894, 46, 11775), (21895, 46, 11790), (21896, 46, 12017), (21897, 46, 12080), (21898, 46, 12352), (21899, 46, 12355), (21900, 46, 12715), (21901, 46, 12850), (21902, 46, 12854), (21903, 46, 12866), (21904, 46, 13002), (21905, 46, 13115), (21906, 46, 13207), (21907, 46, 13215), (21908, 46, 13234), (21909, 46, 13394), (21910, 46, 13822), (21911, 46, 13944), (21912, 46, 14009), (21913, 46, 14098), (21914, 46, 14213), (21915, 46, 14398), (21916, 46, 14521), (21917, 46, 14641), (21918, 46, 14819), (21919, 46, 14854), (21920, 46, 14921), (21921, 46, 15025), (21922, 46, 15060), (21923, 46, 15085), (21924, 46, 15157), (21925, 46, 15170), (21926, 46, 15206), (21927, 46, 15216), (21928, 46, 15266), (21929, 46, 15340), (21930, 46, 15515), (21931, 46, 15645), (21932, 46, 15671), (21933, 46, 15682), (21934, 46, 15872), (21935, 46, 15941), (21936, 46, 15991), (21937, 46, 16045), (21938, 46, 16213), (21939, 46, 16230), (21940, 46, 16288), (21941, 46, 16294), (21942, 46, 16441), (21943, 46, 16520), (21944, 46, 16524), (21945, 46, 16525), (21946, 46, 16604), (21947, 46, 16649), (21948, 46, 16691), (21949, 46, 16786), (21950, 46, 17201), (21951, 46, 17394), (21952, 46, 17559), (21953, 46, 17567), (21954, 46, 17736), (21955, 46, 17795), (21956, 46, 17824), (21957, 46, 17887), (21958, 46, 18029), (21959, 46, 18253), (21960, 46, 18305), (21961, 46, 18343), (21962, 46, 18524), (21963, 46, 18553), (21964, 46, 18924), (21965, 46, 19083), (21966, 46, 19114), (21967, 46, 19469), (21968, 46, 19713), (21969, 46, 19731), (21970, 46, 19904), (21971, 46, 19913), (21972, 46, 19938), (21973, 46, 20006), (21974, 46, 20192), (21975, 46, 20251), (21976, 46, 20265), (21977, 46, 20284), (21978, 46, 20345), (21979, 46, 20469), (21980, 46, 20539), (21981, 46, 20782), (21982, 46, 20982), (21983, 46, 20988), (21984, 46, 20997), (21985, 46, 21088), (21986, 46, 21126), (21987, 46, 21324), (21988, 46, 21341), (21989, 46, 21455), (21990, 46, 21754), (21991, 46, 21950), (21992, 46, 22161), (21993, 46, 22244), (21994, 46, 22376), (21995, 46, 22511), (21996, 46, 22695), (21997, 46, 22742), (21998, 46, 22748), (21999, 46, 22945), (22000, 46, 23035), (22001, 46, 23274), (22002, 46, 23288), (22003, 46, 23665), (22004, 46, 24827), (22005, 46, 24985), (22006, 46, 24986), (22007, 46, 25041), (22008, 46, 25091), (22009, 46, 25095), (22036, 47, 96), (22037, 47, 130), (22038, 47, 189), (22039, 47, 210), (22040, 47, 241), (22041, 47, 332), (22042, 47, 358), (22043, 47, 425), (22044, 47, 429), (22045, 47, 458), (22046, 47, 519), (22047, 47, 569), (22048, 47, 599), (22049, 47, 744), (22050, 47, 828), (22051, 47, 1121), (22052, 47, 1181), (22053, 47, 1227), (22054, 47, 1247), (22055, 47, 1261), (22056, 47, 1506), (22057, 47, 1634), (22058, 47, 1695), (22059, 47, 1722), (22060, 47, 1741), (22061, 47, 1743), (22062, 47, 1758), (22063, 47, 1898), (22064, 47, 2048), (22065, 47, 2059), (22066, 47, 2066), (22067, 47, 2319), (22068, 47, 2512), (22069, 47, 2782), (22070, 47, 3115), (22071, 47, 3239), (22072, 47, 3252), (22073, 47, 3303), (22074, 47, 3390), (22075, 47, 3407), (22076, 47, 3549), (22077, 47, 4089), (22078, 47, 4155), (22079, 47, 4396), (22080, 47, 4401), (22081, 47, 4439), (22082, 47, 4667), (22083, 47, 4974), (22084, 47, 5057), (22085, 47, 5459), (22086, 47, 5489), (22087, 47, 5550), (22088, 47, 5601), (22089, 47, 5615), (22090, 47, 5634), (22091, 47, 5742), (22092, 47, 5946), (22093, 47, 6007), (22094, 47, 6052), (22095, 47, 6123), (22096, 47, 6175), (22097, 47, 6347), (22098, 47, 6438), (22099, 47, 6532), (22100, 47, 6605), (22101, 47, 6621), (22102, 47, 6641), (22103, 47, 6843), (22104, 47, 7049), (22105, 47, 7141), (22106, 47, 7309), (22107, 47, 7519), (22108, 47, 7576), (22109, 47, 7614), (22110, 47, 7615), (22111, 47, 7674), (22112, 47, 7776), (22113, 47, 7895), (22114, 47, 8187), (22115, 47, 8222), (22116, 47, 8306), (22117, 47, 8418), (22118, 47, 9049), (22119, 47, 9123), (22120, 47, 9472), (22121, 47, 9519), (22122, 47, 9571), (22123, 47, 9630), (22124, 47, 9869), (22125, 47, 9874), (22126, 47, 10150), (22127, 47, 10463), (22128, 47, 10507), (22129, 47, 10520), (22130, 47, 10606), (22131, 47, 10769), (22132, 47, 11287), (22133, 47, 11345), (22134, 47, 11431), (22135, 47, 11450), (22136, 47, 11668), (22137, 47, 11704), (22138, 47, 11718), (22139, 47, 11724), (22140, 47, 11775), (22141, 47, 11823), (22142, 47, 11878), (22143, 47, 11903), (22144, 47, 11928), (22145, 47, 12590), (22146, 47, 12837), (22147, 47, 12850), (22148, 47, 12897), (22149, 47, 12904), (22150, 47, 13419), (22151, 47, 13891), (22152, 47, 14173), (22153, 47, 14197), (22154, 47, 14201), (22155, 47, 14204), (22156, 47, 14354), (22157, 47, 14419), (22158, 47, 14590), (22159, 47, 14598), (22160, 47, 14803), (22161, 47, 15213), (22162, 47, 15231), (22163, 47, 15941), (22164, 47, 16014), (22165, 47, 16038), (22166, 47, 16314), (22167, 47, 16526), (22168, 47, 16733), (22169, 47, 16831), (22170, 47, 16875), (22171, 47, 17012), (22172, 47, 17077), (22173, 47, 17736), (22174, 47, 17824), (22175, 47, 17940), (22176, 47, 18026), (22177, 47, 18169), (22178, 47, 18376), (22179, 47, 18384), (22180, 47, 18588), (22181, 47, 19076), (22182, 47, 19264), (22183, 47, 19450), (22184, 47, 19528), (22185, 47, 19938), (22186, 47, 20149), (22187, 47, 20157), (22188, 47, 20158), (22189, 47, 20192), (22190, 47, 20828), (22191, 47, 20987), (22192, 47, 21129), (22193, 47, 21259), (22194, 47, 21365), (22195, 47, 21366), (22196, 47, 21565), (22197, 47, 21714), (22198, 47, 22343), (22199, 47, 22847), (22200, 47, 23595), (22201, 47, 23696), (22202, 47, 23758), (22203, 47, 24261), (22204, 47, 24367), (22291, 48, 20), (22292, 48, 77), (22293, 48, 163), (22294, 48, 202), (22295, 48, 219), (22296, 48, 240), (22297, 48, 280), (22298, 48, 330), (22299, 48, 331), (22300, 48, 379), (22301, 48, 384), (22302, 48, 649), (22303, 48, 776), (22304, 48, 815), (22305, 48, 827), (22306, 48, 860), (22307, 48, 918), (22308, 48, 934), (22309, 48, 1012), (22310, 48, 1024), (22311, 48, 1061), (22312, 48, 1067), (22313, 48, 1087), (22314, 48, 1256), (22315, 48, 1301), (22316, 48, 1432), (22317, 48, 1456), (22318, 48, 1839), (22319, 48, 1892), (22320, 48, 1895), (22321, 48, 1957), (22322, 48, 2048), (22323, 48, 2066), (22324, 48, 2423), (22325, 48, 2575), (22326, 48, 2785), (22327, 48, 2996), (22328, 48, 3028), (22329, 48, 3116), (22330, 48, 3170), (22331, 48, 3416), (22332, 48, 3717), (22333, 48, 3867), (22334, 48, 3880), (22335, 48, 3981), (22336, 48, 4260), (22337, 48, 4507), (22338, 48, 4673), (22339, 48, 4701), (22340, 48, 4736), (22341, 48, 4738), (22342, 48, 4868), (22343, 48, 5084), (22344, 48, 5196), (22345, 48, 5467), (22346, 48, 5671), (22347, 48, 5676), (22348, 48, 5742), (22349, 48, 5919), (22350, 48, 6087), (22351, 48, 6093), (22352, 48, 6312), (22353, 48, 6497), (22354, 48, 6620), (22355, 48, 6766), (22356, 48, 6943), (22357, 48, 7049), (22358, 48, 7149), (22359, 48, 7286), (22360, 48, 7377), (22361, 48, 7763), (22362, 48, 7785), (22363, 48, 7841), (22364, 48, 8022), (22365, 48, 8042), (22366, 48, 8503), (22367, 48, 8797), (22368, 48, 9003), (22369, 48, 9022), (22370, 48, 9476), (22371, 48, 9500), (22372, 48, 9571), (22373, 48, 9579), (22374, 48, 9597), (22375, 48, 9769), (22376, 48, 9802), (22377, 48, 10159), (22378, 48, 10235), (22379, 48, 10465), (22380, 48, 10891), (22381, 48, 10944), (22382, 48, 10966), (22383, 48, 10988), (22384, 48, 11006), (22385, 48, 11070), (22386, 48, 11099), (22387, 48, 11102), (22388, 48, 11160), (22389, 48, 11182), (22390, 48, 11186), (22391, 48, 11273), (22392, 48, 11423), (22393, 48, 11616), (22394, 48, 11628), (22395, 48, 11683), (22396, 48, 11697), (22397, 48, 11724), (22398, 48, 11754), (22399, 48, 11846), (22400, 48, 11885), (22401, 48, 11946), (22402, 48, 12012), (22403, 48, 12017), (22404, 48, 12034), (22405, 48, 12104), (22406, 48, 12329), (22407, 48, 12664), (22408, 48, 12736), (22409, 48, 12743), (22410, 48, 13004), (22411, 48, 13455), (22412, 48, 13536), (22413, 48, 13603), (22414, 48, 13837), (22415, 48, 13867), (22416, 48, 14510), (22417, 48, 14521), (22418, 48, 14565), (22419, 48, 15060), (22420, 48, 15143), (22421, 48, 15207), (22422, 48, 15216), (22423, 48, 15269), (22424, 48, 15274), (22425, 48, 15281), (22426, 48, 15288), (22427, 48, 15470), (22428, 48, 15509), (22429, 48, 15533), (22430, 48, 15635), (22431, 48, 15682), (22432, 48, 15691), (22433, 48, 15723), (22434, 48, 15980), (22435, 48, 15981), (22436, 48, 16187), (22437, 48, 16312), (22438, 48, 16362), (22439, 48, 16521), (22440, 48, 16526), (22441, 48, 16754), (22442, 48, 16825), (22443, 48, 16893), (22444, 48, 17069), (22445, 48, 17198), (22446, 48, 17489), (22447, 48, 17591), (22448, 48, 17736), (22449, 48, 17934), (22450, 48, 18043), (22451, 48, 18904), (22452, 48, 18924), (22453, 48, 19080), (22454, 48, 19134), (22455, 48, 19269), (22456, 48, 19450), (22457, 48, 19744), (22458, 48, 19856), (22459, 48, 19869), (22460, 48, 20221), (22461, 48, 20249), (22462, 48, 20412), (22463, 48, 21318), (22464, 48, 21365), (22465, 48, 21640), (22466, 48, 21673), (22467, 48, 21805), (22468, 48, 21823), (22469, 48, 21975), (22470, 48, 22151), (22471, 48, 22161), (22472, 48, 22292), (22473, 48, 22676), (22474, 48, 22816), (22475, 48, 22833), (22476, 48, 23444), (22477, 48, 23608), (22478, 48, 24437), (22546, 49, 53), (22547, 49, 58), (22548, 49, 60), (22549, 49, 109), (22550, 49, 139), (22551, 49, 146), (22552, 49, 163), (22553, 49, 213), (22554, 49, 219), (22555, 49, 275), (22556, 49, 287), (22557, 49, 327), (22558, 49, 330), (22559, 49, 336), (22560, 49, 401), (22561, 49, 440), (22562, 49, 448), (22563, 49, 519), (22564, 49, 535), (22565, 49, 582), (22566, 49, 649), (22567, 49, 653), (22568, 49, 695), (22569, 49, 784), (22570, 49, 792), (22571, 49, 890), (22572, 49, 951), (22573, 49, 1010), (22574, 49, 1017), (22575, 49, 1136), (22576, 49, 1167), (22577, 49, 1242), (22578, 49, 1370), (22579, 49, 1374), (22580, 49, 1413), (22581, 49, 1417), (22582, 49, 1420), (22583, 49, 1442), (22584, 49, 1455), (22585, 49, 1456), (22586, 49, 1525), (22587, 49, 1560), (22588, 49, 1584), (22589, 49, 1606), (22590, 49, 1743), (22591, 49, 1758), (22592, 49, 1793), (22593, 49, 1820), (22594, 49, 1881), (22595, 49, 1957), (22596, 49, 2089), (22597, 49, 2186), (22598, 49, 2243), (22599, 49, 2316), (22600, 49, 2337), (22601, 49, 2409), (22602, 49, 2557), (22603, 49, 2575), (22604, 49, 2604), (22605, 49, 2694), (22606, 49, 2878), (22607, 49, 3020), (22608, 49, 3028), (22609, 49, 3072), (22610, 49, 3135), (22611, 49, 3155), (22612, 49, 3343), (22613, 49, 3381), (22614, 49, 3384), (22615, 49, 3424), (22616, 49, 3475), (22617, 49, 3534), (22618, 49, 3550), (22619, 49, 3597), (22620, 49, 3717), (22621, 49, 3878), (22622, 49, 3969), (22623, 49, 4104), (22624, 49, 4155), (22625, 49, 4176), (22626, 49, 4184), (22627, 49, 4193), (22628, 49, 4317), (22629, 49, 4320), (22630, 49, 4401), (22631, 49, 4426), (22632, 49, 4496), (22633, 49, 4515), (22634, 49, 4566), (22635, 49, 4627), (22636, 49, 4667), (22637, 49, 5074), (22638, 49, 5084), (22639, 49, 5278), (22640, 49, 5502), (22641, 49, 5585), (22642, 49, 5586), (22643, 49, 5600), (22644, 49, 5601), (22645, 49, 5665), (22646, 49, 5695), (22647, 49, 5717), (22648, 49, 5742), (22649, 49, 5757), (22650, 49, 5806), (22651, 49, 5817), (22652, 49, 6002), (22653, 49, 6009), (22654, 49, 6042), (22655, 49, 6048), (22656, 49, 6052), (22657, 49, 6093), (22658, 49, 6138), (22659, 49, 6279), (22660, 49, 6521), (22661, 49, 6632), (22662, 49, 6764), (22663, 49, 6833), (22664, 49, 6887), (22665, 49, 6919), (22666, 49, 6929), (22667, 49, 6986), (22668, 49, 7049), (22669, 49, 7141), (22670, 49, 7337), (22671, 49, 7354), (22672, 49, 7390), (22673, 49, 7403), (22674, 49, 7514), (22675, 49, 7598), (22676, 49, 7615), (22677, 49, 7651), (22678, 49, 7674), (22679, 49, 7679), (22680, 49, 7794), (22681, 49, 8057), (22682, 49, 8109), (22683, 49, 8110), (22684, 49, 8187), (22685, 49, 8295), (22686, 49, 8306), (22687, 49, 8418), (22688, 49, 8510), (22689, 49, 8524), (22690, 49, 8604), (22691, 49, 8813), (22692, 49, 8841), (22693, 49, 8853), (22694, 49, 8858), (22695, 49, 8968), (22696, 49, 9022), (22697, 49, 9061), (22698, 49, 9094), (22699, 49, 9165), (22700, 49, 9287), (22701, 49, 9288), (22702, 49, 9296), (22703, 49, 9388), (22704, 49, 9502), (22705, 49, 9571), (22706, 49, 9575), (22707, 49, 9579), (22708, 49, 9630), (22709, 49, 9704), (22710, 49, 9733), (22711, 49, 9819), (22712, 49, 9871), (22713, 49, 9874), (22714, 49, 9896), (22715, 49, 9943), (22716, 49, 9951), (22717, 49, 9987), (22718, 49, 10007), (22719, 49, 10033), (22720, 49, 10034), (22721, 49, 10222), (22722, 49, 10291), (22723, 49, 10377), (22724, 49, 10392), (22725, 49, 10396), (22726, 49, 10434), (22727, 49, 10456), (22728, 49, 10487), (22729, 49, 10520), (22730, 49, 10551), (22731, 49, 10830), (22732, 49, 10944), (22733, 49, 10969), (22734, 49, 10970), (22735, 49, 10988), (22736, 49, 11007), (22737, 49, 11037), (22738, 49, 11182), (22739, 49, 11241), (22740, 49, 11279), (22741, 49, 11309), (22742, 49, 11429), (22743, 49, 11481), (22744, 49, 11541), (22745, 49, 11621), (22746, 49, 11704), (22747, 49, 11718), (22748, 49, 11724), (22749, 49, 11771), (22750, 49, 11790), (22751, 49, 11807), (22752, 49, 11846), (22753, 49, 11878), (22754, 49, 11882), (22755, 49, 11885), (22756, 49, 11946), (22757, 49, 12009), (22758, 49, 12017), (22759, 49, 12031), (22760, 49, 12080), (22761, 49, 12246), (22762, 49, 12294), (22763, 49, 12324), (22764, 49, 12350), (22765, 49, 12352), (22766, 49, 12380), (22767, 49, 12382), (22768, 49, 12409), (22769, 49, 12500), (22770, 49, 12517), (22771, 49, 12854), (22772, 49, 12866), (22773, 49, 13002), (22774, 49, 13159), (22775, 49, 13166), (22776, 49, 13371), (22777, 49, 13373), (22778, 49, 13391), (22779, 49, 13417), (22780, 49, 13423), (22781, 49, 13536), (22782, 49, 13549), (22783, 49, 13554), (22784, 49, 13559), (22785, 49, 13603), (22786, 49, 13647), (22787, 49, 13689), (22788, 49, 13822), (22789, 49, 13837), (22790, 49, 13891), (22791, 49, 13947), (22792, 49, 14031), (22793, 49, 14034), (22794, 49, 14048), (22795, 49, 14163), (22796, 49, 14173), (22797, 49, 14201), (22798, 49, 14248), (22799, 49, 14321), (22800, 49, 14330), (22801, 49, 14339), (22802, 49, 14398), (22803, 49, 14521), (22804, 49, 14554), (22805, 49, 14587), (22806, 49, 14590), (22807, 49, 14644), (22808, 49, 14754), (22809, 49, 14819), (22810, 49, 14823), (22811, 49, 14854), (22812, 49, 14866), (22813, 49, 14886), (22814, 49, 14919), (22815, 49, 14952), (22816, 49, 15060), (22817, 49, 15074), (22818, 49, 15168), (22819, 49, 15170), (22820, 49, 15176), (22821, 49, 15274), (22822, 49, 15323), (22823, 49, 15468), (22824, 49, 15582), (22825, 49, 15607), (22826, 49, 15625), (22827, 49, 15635), (22828, 49, 15671), (22829, 49, 15790), (22830, 49, 15817), (22831, 49, 15872), (22832, 49, 15965), (22833, 49, 15991), (22834, 49, 16038), (22835, 49, 16043), (22836, 49, 16045), (22837, 49, 16048), (22838, 49, 16184), (22839, 49, 16187), (22840, 49, 16201), (22841, 49, 16229), (22842, 49, 16294), (22843, 49, 16295), (22844, 49, 16330), (22845, 49, 16364), (22846, 49, 16399), (22847, 49, 16414), (22848, 49, 16437), (22849, 49, 16443), (22850, 49, 16489), (22851, 49, 16499), (22852, 49, 16520), (22853, 49, 16524), (22854, 49, 16525), (22855, 49, 16526), (22856, 49, 16536), (22857, 49, 16564), (22858, 49, 16649), (22859, 49, 16803), (22860, 49, 16825), (22861, 49, 16873), (22862, 49, 16963), (22863, 49, 17012), (22864, 49, 17026), (22865, 49, 17091), (22866, 49, 17245), (22867, 49, 17252), (22868, 49, 17268), (22869, 49, 17323), (22870, 49, 17388), (22871, 49, 17408), (22872, 49, 17451), (22873, 49, 17559), (22874, 49, 17619), (22875, 49, 17657), (22876, 49, 17669), (22877, 49, 17718), (22878, 49, 17745), (22879, 49, 17824), (22880, 49, 17887), (22881, 49, 18029), (22882, 49, 18169), (22883, 49, 18263), (22884, 49, 18306), (22885, 49, 18345), (22886, 49, 18376), (22887, 49, 18384), (22888, 49, 18439), (22889, 49, 18468), (22890, 49, 18524), (22891, 49, 18553), (22892, 49, 18672), (22893, 49, 18795), (22894, 49, 18975), (22895, 49, 19083), (22896, 49, 19421), (22897, 49, 19450), (22898, 49, 19497), (22899, 49, 19528), (22900, 49, 19631), (22901, 49, 19751), (22902, 49, 19869), (22903, 49, 19895), (22904, 49, 19930), (22905, 49, 19931), (22906, 49, 19938), (22907, 49, 20006), (22908, 49, 20158), (22909, 49, 20192), (22910, 49, 20345), (22911, 49, 20389), (22912, 49, 20469), (22913, 49, 20761), (22914, 49, 20782), (22915, 49, 20984), (22916, 49, 20987), (22917, 49, 21055), (22918, 49, 21341), (22919, 49, 21365), (22920, 49, 21513), (22921, 49, 21565), (22922, 49, 21640), (22923, 49, 21656), (22924, 49, 21924), (22925, 49, 21994), (22926, 49, 22151), (22927, 49, 22161), (22928, 49, 22173), (22929, 49, 22196), (22930, 49, 22207), (22931, 49, 22292), (22932, 49, 22345), (22933, 49, 22486), (22934, 49, 22605), (22935, 49, 22676), (22936, 49, 22695), (22937, 49, 22727), (22938, 49, 22806), (22939, 49, 22847), (22940, 49, 22879), (22941, 49, 22969), (22942, 49, 23264), (22943, 49, 23402), (22944, 49, 23608), (22945, 49, 23670), (22946, 49, 24196), (22947, 49, 24250), (22948, 49, 25005), (22949, 49, 25122), (22950, 49, 25136), (23057, 50, 513), (23058, 50, 535), (23059, 50, 784), (23060, 50, 1010), (23061, 50, 1133), (23062, 50, 1206), (23063, 50, 1506), (23064, 50, 1638), (23065, 50, 1705), (23066, 50, 1715), (23067, 50, 1741), (23068, 50, 1758), (23069, 50, 1924), (23070, 50, 2338), (23071, 50, 2384), (23072, 50, 2788), (23073, 50, 3388), (23074, 50, 3437), (23075, 50, 3597), (23076, 50, 3812), (23077, 50, 3889), (23078, 50, 4296), (23079, 50, 4484), (23080, 50, 4488), (23081, 50, 4799), (23082, 50, 5474), (23083, 50, 5514), (23084, 50, 5567), (23085, 50, 5810), (23086, 50, 6373), (23087, 50, 6598), (23088, 50, 6620), (23089, 50, 6641), (23090, 50, 6661), (23091, 50, 6691), (23092, 50, 6983), (23093, 50, 6996), (23094, 50, 7056), (23095, 50, 7110), (23096, 50, 7700), (23097, 50, 7903), (23098, 50, 8063), (23099, 50, 8306), (23100, 50, 8400), (23101, 50, 8418), (23102, 50, 8443), (23103, 50, 8682), (23104, 50, 8772), (23105, 50, 9118), (23106, 50, 9148), (23107, 50, 9218), (23108, 50, 9229), (23109, 50, 9453), (23110, 50, 9503), (23111, 50, 9546), (23112, 50, 9683), (23113, 50, 10021), (23114, 50, 10258), (23115, 50, 10321), (23116, 50, 10333), (23117, 50, 10358), (23118, 50, 10463), (23119, 50, 10766), (23120, 50, 11128), (23121, 50, 11204), (23122, 50, 11329), (23123, 50, 11704), (23124, 50, 11868), (23125, 50, 12184), (23126, 50, 12244), (23127, 50, 12382), (23128, 50, 12409), (23129, 50, 12429), (23130, 50, 12444), (23131, 50, 12932), (23132, 50, 13108), (23133, 50, 13213), (23134, 50, 13287), (23135, 50, 13377), (23136, 50, 13464), (23137, 50, 13509), (23138, 50, 13842), (23139, 50, 13968), (23140, 50, 14166), (23141, 50, 14329), (23142, 50, 14540), (23143, 50, 15008), (23144, 50, 15271), (23145, 50, 15604), (23146, 50, 15675), (23147, 50, 16005), (23148, 50, 16171), (23149, 50, 16200), (23150, 50, 17071), (23151, 50, 17252), (23152, 50, 17436), (23153, 50, 17685), (23154, 50, 18539), (23155, 50, 18918), (23156, 50, 19014), (23157, 50, 19751), (23158, 50, 19914), (23159, 50, 20742), (23160, 50, 20884), (23161, 50, 21455), (23162, 50, 21494), (23163, 50, 21566), (23164, 50, 22560), (23165, 50, 22915), (23166, 50, 23067), (23167, 50, 23107), (23168, 50, 23259), (23169, 50, 24855), (23170, 50, 25008), (23184, 51, 31), (23185, 51, 35), (23186, 51, 36), (23187, 51, 90), (23188, 51, 207), (23189, 51, 232), (23190, 51, 295), (23191, 51, 558), (23192, 51, 565), (23193, 51, 580), (23194, 51, 686), (23195, 51, 713), (23196, 51, 900), (23197, 51, 1001), (23198, 51, 1120), (23199, 51, 1218), (23200, 51, 1223), (23201, 51, 1645), (23202, 51, 1784), (23203, 51, 1863), (23204, 51, 1888), (23205, 51, 1926), (23206, 51, 2021), (23207, 51, 2174), (23208, 51, 2336), (23209, 51, 2491), (23210, 51, 2735), (23211, 51, 2889), (23212, 51, 2914), (23213, 51, 2972), (23214, 51, 3047), (23215, 51, 3240), (23216, 51, 3401), (23217, 51, 3531), (23218, 51, 3686), (23219, 51, 3709), (23220, 51, 3772), (23221, 51, 3798), (23222, 51, 3814), (23223, 51, 3896), (23224, 51, 3931), (23225, 51, 3989), (23226, 51, 4064), (23227, 51, 4424), (23228, 51, 4523), (23229, 51, 4524), (23230, 51, 4536), (23231, 51, 4570), (23232, 51, 4650), (23233, 51, 4767), (23234, 51, 4806), (23235, 51, 4830), (23236, 51, 4842), (23237, 51, 5032), (23238, 51, 5372), (23239, 51, 5473), (23240, 51, 5493), (23241, 51, 5509), (23242, 51, 5772), (23243, 51, 6104), (23244, 51, 6446), (23245, 51, 6746), (23246, 51, 6981), (23247, 51, 7081), (23248, 51, 7132), (23249, 51, 7344), (23250, 51, 7443), (23251, 51, 7626), (23252, 51, 7827), (23253, 51, 7834), (23254, 51, 7859), (23255, 51, 7947), (23256, 51, 8111), (23257, 51, 8361), (23258, 51, 8365), (23259, 51, 8646), (23260, 51, 8686), (23261, 51, 8688), (23262, 51, 8789), (23263, 51, 8798), (23264, 51, 8865), (23265, 51, 8957), (23266, 51, 8984), (23267, 51, 9042), (23268, 51, 9488), (23269, 51, 9520), (23270, 51, 9729), (23271, 51, 9914), (23272, 51, 9942), (23273, 51, 9979), (23274, 51, 9988), (23275, 51, 10308), (23276, 51, 10356), (23277, 51, 10481), (23278, 51, 10608), (23279, 51, 10664), (23280, 51, 10846), (23281, 51, 11093), (23282, 51, 11367), (23283, 51, 11374), (23284, 51, 11579), (23285, 51, 11687), (23286, 51, 11736), (23287, 51, 12349), (23288, 51, 12520), (23289, 51, 12635), (23290, 51, 12686), (23291, 51, 13175), (23292, 51, 13398), (23293, 51, 13512), (23294, 51, 13758), (23295, 51, 13809), (23296, 51, 13825), (23297, 51, 13918), (23298, 51, 13969), (23299, 51, 14036), (23300, 51, 14188), (23301, 51, 14318), (23302, 51, 14471), (23303, 51, 14531), (23304, 51, 14610), (23305, 51, 14957), (23306, 51, 15240), (23307, 51, 15543), (23308, 51, 15640), (23309, 51, 15648), (23310, 51, 16289), (23311, 51, 16324), (23312, 51, 16456), (23313, 51, 17629), (23314, 51, 18269), (23315, 51, 18778), (23316, 51, 18921), (23317, 51, 19659), (23318, 51, 19808), (23319, 51, 19886), (23320, 51, 19929), (23321, 51, 20414), (23322, 51, 20906), (23323, 51, 21189), (23324, 51, 21369), (23325, 51, 22244), (23326, 51, 22728), (23327, 51, 22920), (23328, 51, 23035), (23329, 51, 23057), (23330, 51, 25192), (23331, 51, 25202), (23439, 52, 35), (23440, 52, 158), (23441, 52, 220), (23442, 52, 291), (23443, 52, 307), (23444, 52, 473), (23445, 52, 632), (23446, 52, 994), (23447, 52, 1537), (23448, 52, 1786), (23449, 52, 1789), (23450, 52, 1908), (23451, 52, 1984), (23452, 52, 2128), (23453, 52, 2183), (23454, 52, 2239), (23455, 52, 2331), (23456, 52, 2516), (23457, 52, 2962), (23458, 52, 3090), (23459, 52, 3312), (23460, 52, 3559), (23461, 52, 4508), (23462, 52, 4678), (23463, 52, 5153), (23464, 52, 5913), (23465, 52, 5914), (23466, 52, 5940), (23467, 52, 6506), (23468, 52, 6588), (23469, 52, 6602), (23470, 52, 7032), (23471, 52, 7120), (23472, 52, 8378), (23473, 52, 8866), (23474, 52, 11030), (23475, 52, 11728), (23476, 52, 11778), (23477, 52, 12015), (23478, 52, 12488), (23479, 52, 12922), (23480, 52, 13398), (23481, 52, 13408), (23482, 52, 13728), (23483, 52, 13794), (23484, 52, 14457), (23485, 52, 15075), (23486, 52, 16775), (23487, 52, 17548), (23488, 52, 18132), (23489, 52, 20255), (23490, 52, 21853), (23502, 53, 26), (23503, 53, 75), (23504, 53, 117), (23505, 53, 161), (23506, 53, 250), (23507, 53, 294), (23508, 53, 428), (23509, 53, 441), (23510, 53, 747), (23511, 53, 806), (23512, 53, 874), (23513, 53, 911), (23514, 53, 949), (23515, 53, 1452), (23516, 53, 1474), (23517, 53, 1534), (23518, 53, 1543), (23519, 53, 1585), (23520, 53, 1600), (23521, 53, 1639), (23522, 53, 1913), (23523, 53, 1956), (23524, 53, 2080), (23525, 53, 2145), (23526, 53, 2155), (23527, 53, 2174), (23528, 53, 2240), (23529, 53, 2582), (23530, 53, 2616), (23531, 53, 2632), (23532, 53, 2706), (23533, 53, 2804), (23534, 53, 3066), (23535, 53, 3119), (23536, 53, 3354), (23537, 53, 3396), (23538, 53, 3559), (23539, 53, 3699), (23540, 53, 3772), (23541, 53, 3828), (23542, 53, 4165), (23543, 53, 4198), (23544, 53, 4337), (23545, 53, 4510), (23546, 53, 4532), (23547, 53, 4557), (23548, 53, 4558), (23549, 53, 4872), (23550, 53, 4875), (23551, 53, 4877), (23552, 53, 4933), (23553, 53, 5178), (23554, 53, 5194), (23555, 53, 5236), (23556, 53, 5329), (23557, 53, 5440), (23558, 53, 5486), (23559, 53, 5546), (23560, 53, 5642), (23561, 53, 5653), (23562, 53, 5687), (23563, 53, 5995), (23564, 53, 6003), (23565, 53, 6096), (23566, 53, 6196), (23567, 53, 6305), (23568, 53, 6319), (23569, 53, 6429), (23570, 53, 6448), (23571, 53, 6450), (23572, 53, 6518), (23573, 53, 6588), (23574, 53, 6649), (23575, 53, 6750), (23576, 53, 6808), (23577, 53, 7008), (23578, 53, 7151), (23579, 53, 7185), (23580, 53, 7264), (23581, 53, 7417), (23582, 53, 7493), (23583, 53, 7690), (23584, 53, 8008), (23585, 53, 8086), (23586, 53, 8088), (23587, 53, 8208), (23588, 53, 8228), (23589, 53, 8258), (23590, 53, 8265), (23591, 53, 8270), (23592, 53, 8561), (23593, 53, 8681), (23594, 53, 8696), (23595, 53, 8769), (23596, 53, 8868), (23597, 53, 9131), (23598, 53, 9187), (23599, 53, 9216), (23600, 53, 9307), (23601, 53, 9333), (23602, 53, 9406), (23603, 53, 9411), (23604, 53, 9458), (23605, 53, 9518), (23606, 53, 9582), (23607, 53, 9596), (23608, 53, 9609), (23609, 53, 9680), (23610, 53, 9691), (23611, 53, 9866), (23612, 53, 9946), (23613, 53, 9969), (23614, 53, 9984), (23615, 53, 10248), (23616, 53, 10405), (23617, 53, 10609), (23618, 53, 10661), (23619, 53, 10672), (23620, 53, 10726), (23621, 53, 10763), (23622, 53, 10776), (23623, 53, 10799), (23624, 53, 10849), (23625, 53, 10862), (23626, 53, 10945), (23627, 53, 10964), (23628, 53, 11050), (23629, 53, 11158), (23630, 53, 11263), (23631, 53, 11269), (23632, 53, 11374), (23633, 53, 11490), (23634, 53, 11522), (23635, 53, 11532), (23636, 53, 11537), (23637, 53, 11554), (23638, 53, 11581), (23639, 53, 11602), (23640, 53, 11619), (23641, 53, 11703), (23642, 53, 11822), (23643, 53, 11833), (23644, 53, 11879), (23645, 53, 11984), (23646, 53, 12040), (23647, 53, 12056), (23648, 53, 12163), (23649, 53, 12339), (23650, 53, 12428), (23651, 53, 12440), (23652, 53, 12669), (23653, 53, 12815), (23654, 53, 12825), (23655, 53, 12859), (23656, 53, 12924), (23657, 53, 12936), (23658, 53, 12970), (23659, 53, 13045), (23660, 53, 13172), (23661, 53, 13304), (23662, 53, 13459), (23663, 53, 13508), (23664, 53, 13563), (23665, 53, 13671), (23666, 53, 13680), (23667, 53, 13695), (23668, 53, 13771), (23669, 53, 13794), (23670, 53, 14022), (23671, 53, 14128), (23672, 53, 14197), (23673, 53, 14202), (23674, 53, 14240), (23675, 53, 14405), (23676, 53, 14512), (23677, 53, 14538), (23678, 53, 14605), (23679, 53, 14639), (23680, 53, 14647), (23681, 53, 14674), (23682, 53, 14751), (23683, 53, 14772), (23684, 53, 14788), (23685, 53, 14803), (23686, 53, 14949), (23687, 53, 14982), (23688, 53, 15005), (23689, 53, 15161), (23690, 53, 15286), (23691, 53, 15371), (23692, 53, 15445), (23693, 53, 15762), (23694, 53, 15789), (23695, 53, 15920), (23696, 53, 15959), (23697, 53, 16050), (23698, 53, 16081), (23699, 53, 16161), (23700, 53, 16227), (23701, 53, 16243), (23702, 53, 16359), (23703, 53, 16419), (23704, 53, 16496), (23705, 53, 16559), (23706, 53, 16601), (23707, 53, 16602), (23708, 53, 16658), (23709, 53, 16678), (23710, 53, 16737), (23711, 53, 16799), (23712, 53, 16878), (23713, 53, 16971), (23714, 53, 17126), (23715, 53, 17127), (23716, 53, 17141), (23717, 53, 17249), (23718, 53, 17350), (23719, 53, 17444), (23720, 53, 17503), (23721, 53, 17582), (23722, 53, 17774), (23723, 53, 17784), (23724, 53, 17947), (23725, 53, 17973), (23726, 53, 18017), (23727, 53, 18044), (23728, 53, 18249), (23729, 53, 18483), (23730, 53, 18578), (23731, 53, 18636), (23732, 53, 18682), (23733, 53, 18692), (23734, 53, 18780), (23735, 53, 18790), (23736, 53, 18936), (23737, 53, 18992), (23738, 53, 19072), (23739, 53, 19170), (23740, 53, 19193), (23741, 53, 19515), (23742, 53, 19524), (23743, 53, 19547), (23744, 53, 19668), (23745, 53, 19773), (23746, 53, 19959), (23747, 53, 20025), (23748, 53, 20163), (23749, 53, 20177), (23750, 53, 20319), (23751, 53, 20340), (23752, 53, 20342), (23753, 53, 20630), (23754, 53, 20676), (23755, 53, 20907), (23756, 53, 20957), (23757, 53, 21111), (23758, 53, 21113), (23759, 53, 21277), (23760, 53, 21359), (23761, 53, 21463), (23762, 53, 21577), (23763, 53, 22061), (23764, 53, 22072), (23765, 53, 22329), (23766, 53, 22355), (23767, 53, 22512), (23768, 53, 22617), (23769, 53, 22773), (23770, 53, 23027), (23771, 53, 23085), (23772, 53, 23143), (23773, 53, 23156), (23774, 53, 23273), (23775, 53, 23283), (23776, 53, 23298), (23777, 53, 23321), (23778, 53, 23653), (23779, 53, 24334), (23780, 53, 24704), (23781, 53, 24729), (23782, 53, 25063), (23783, 53, 25073), (23784, 53, 25172), (23785, 53, 25200), (24013, 54, 3410), (24014, 54, 6070), (24015, 54, 6759), (24016, 54, 8505), (24017, 54, 8548), (24018, 54, 9746), (24019, 54, 11177), (24020, 54, 15574), (24021, 54, 15630), (24022, 54, 20764), (24028, 55, 158), (24029, 55, 1052), (24030, 55, 2015), (24031, 55, 2140), (24032, 55, 2183), (24033, 55, 4699), (24034, 55, 6265), (24035, 55, 6940), (24036, 55, 9238), (24037, 55, 9520), (24038, 55, 11613), (24039, 55, 12067), (24040, 55, 15136), (24041, 55, 16050), (24043, 56, 1381), (24044, 56, 2917), (24045, 56, 3680), (24046, 56, 3772), (24047, 56, 5940), (24048, 56, 6742), (24049, 56, 8088), (24050, 56, 8972), (24051, 56, 10037), (24052, 56, 11703), (24053, 56, 15146), (24054, 56, 18132), (24058, 57, 1223), (24059, 57, 1736), (24060, 57, 2804), (24061, 57, 3050), (24062, 57, 3289), (24063, 57, 3356), (24064, 57, 3490), (24065, 57, 3559), (24066, 57, 4240), (24067, 57, 4607), (24068, 57, 4904), (24069, 57, 4925), (24070, 57, 5416), (24071, 57, 5752), (24072, 57, 5862), (24073, 57, 5892), (24074, 57, 5940), (24075, 57, 6053), (24076, 57, 6643), (24077, 57, 6885), (24078, 57, 7753), (24079, 57, 8099), (24080, 57, 8129), (24081, 57, 8916), (24082, 57, 8971), (24083, 57, 9103), (24084, 57, 9298), (24085, 57, 9537), (24086, 57, 9639), (24087, 57, 9662), (24088, 57, 10060), (24089, 57, 10349), (24090, 57, 10643), (24091, 57, 10937), (24092, 57, 11445), (24093, 57, 11459), (24094, 57, 11610), (24095, 57, 11693), (24096, 57, 11927), (24097, 57, 11944), (24098, 57, 11988), (24099, 57, 12001), (24100, 57, 12694), (24101, 57, 12708), (24102, 57, 12719), (24103, 57, 13162), (24104, 57, 13283), (24105, 57, 13336), (24106, 57, 13710), (24107, 57, 13869), (24108, 57, 14238), (24109, 57, 14386), (24110, 57, 14420), (24111, 57, 14515), (24112, 57, 14981), (24113, 57, 15275), (24114, 57, 15532), (24115, 57, 15647), (24116, 57, 15716), (24117, 57, 16015), (24118, 57, 16124), (24119, 57, 17047), (24120, 57, 17595), (24121, 57, 17903), (24122, 57, 17984), (24123, 57, 18132), (24124, 57, 19222), (24125, 57, 19828), (24126, 57, 21035), (24127, 57, 21610), (24128, 57, 24607), (24129, 57, 25080), (24185, 58, 35), (24186, 58, 307), (24187, 58, 342), (24188, 58, 473), (24189, 58, 1223), (24190, 58, 2155), (24191, 58, 2962), (24192, 58, 3090), (24193, 58, 3480), (24194, 58, 3559), (24195, 58, 3772), (24196, 58, 3931), (24197, 58, 4508), (24198, 58, 4510), (24199, 58, 4678), (24200, 58, 4724), (24201, 58, 5033), (24202, 58, 5642), (24203, 58, 5653), (24204, 58, 5913), (24205, 58, 5940), (24206, 58, 8088), (24207, 58, 8207), (24208, 58, 8619), (24209, 58, 9662), (24210, 58, 10308), (24211, 58, 10510), (24212, 58, 10701), (24213, 58, 11374), (24214, 58, 11512), (24215, 58, 11703), (24216, 58, 12114), (24217, 58, 12997), (24218, 58, 13153), (24219, 58, 13264), (24220, 58, 13398), (24221, 58, 13460), (24222, 58, 13484), (24223, 58, 13512), (24224, 58, 13706), (24225, 58, 13794), (24226, 58, 14743), (24227, 58, 15287), (24228, 58, 16237), (24229, 58, 17314), (24230, 58, 18132), (24231, 58, 18371), (24232, 58, 20248), (24233, 58, 21359), (24234, 58, 22232), (24235, 58, 23081), (24236, 58, 23640), (24237, 58, 23741), (24238, 58, 23953), (24248, 59, 609), (24249, 59, 624), (24250, 59, 628), (24251, 59, 725), (24252, 59, 1042), (24253, 59, 1175), (24254, 59, 1245), (24255, 59, 1307), (24256, 59, 1636), (24257, 59, 2060), (24258, 59, 2484), (24259, 59, 2917), (24260, 59, 3163), (24261, 59, 3295), (24262, 59, 3322), (24263, 59, 3410), (24264, 59, 3462), (24265, 59, 3573), (24266, 59, 3680), (24267, 59, 3903), (24268, 59, 4236), (24269, 59, 4284), (24270, 59, 4301), (24271, 59, 4440), (24272, 59, 4665), (24273, 59, 4988), (24274, 59, 5047), (24275, 59, 5191), (24276, 59, 5337), (24277, 59, 5486), (24278, 59, 5772), (24279, 59, 5840), (24280, 59, 5972), (24281, 59, 6030), (24282, 59, 6079), (24283, 59, 6110), (24284, 59, 6348), (24285, 59, 6626), (24286, 59, 6629), (24287, 59, 6742), (24288, 59, 6746), (24289, 59, 7120), (24290, 59, 7135), (24291, 59, 7332), (24292, 59, 7744), (24293, 59, 7779), (24294, 59, 7871), (24295, 59, 8008), (24296, 59, 8131), (24297, 59, 8207), (24298, 59, 8568), (24299, 59, 8578), (24300, 59, 8597), (24301, 59, 8693), (24302, 59, 9327), (24303, 59, 9644), (24304, 59, 10037), (24305, 59, 10154), (24306, 59, 10269), (24307, 59, 10285), (24308, 59, 10368), (24309, 59, 10401), (24310, 59, 10945), (24311, 59, 11002), (24312, 59, 11004), (24313, 59, 11030), (24314, 59, 11095), (24315, 59, 11189), (24316, 59, 11522), (24317, 59, 11533), (24318, 59, 11543), (24319, 59, 11658), (24320, 59, 11848), (24321, 59, 11879), (24322, 59, 12245), (24323, 59, 12259), (24324, 59, 12276), (24325, 59, 12501), (24326, 59, 12549), (24327, 59, 12591), (24328, 59, 12742), (24329, 59, 13424), (24330, 59, 13471), (24331, 59, 13918), (24332, 59, 13983), (24333, 59, 14001), (24334, 59, 14151), (24335, 59, 14356), (24336, 59, 14362), (24337, 59, 15089), (24338, 59, 15194), (24339, 59, 15343), (24340, 59, 15768), (24341, 59, 15827), (24342, 59, 15867), (24343, 59, 16243), (24344, 59, 16272), (24345, 59, 16775), (24346, 59, 16972), (24347, 59, 17001), (24348, 59, 17453), (24349, 59, 18780), (24350, 59, 18806), (24351, 59, 18954), (24352, 59, 19592), (24353, 59, 20551), (24354, 59, 20926), (24355, 59, 21160), (24356, 59, 21227), (24357, 59, 21239), (24358, 59, 21658), (24359, 59, 21842), (24360, 59, 21893), (24375, 60, 12), (24376, 60, 26), (24377, 60, 29), (24378, 60, 34), (24379, 60, 75), (24380, 60, 103), (24381, 60, 108), (24382, 60, 120), (24383, 60, 158), (24384, 60, 161), (24385, 60, 203), (24386, 60, 220), (24387, 60, 235), (24388, 60, 291), (24389, 60, 294), (24390, 60, 295), (24391, 60, 308), (24392, 60, 389), (24393, 60, 415), (24394, 60, 428), (24395, 60, 435), (24396, 60, 452), (24397, 60, 455), (24398, 60, 473), (24399, 60, 682), (24400, 60, 689), (24401, 60, 747), (24402, 60, 755), (24403, 60, 795), (24404, 60, 874), (24405, 60, 911), (24406, 60, 1070), (24407, 60, 1194), (24408, 60, 1218), (24409, 60, 1319), (24410, 60, 1362), (24411, 60, 1416), (24412, 60, 1431), (24413, 60, 1452), (24414, 60, 1474), (24415, 60, 1485), (24416, 60, 1537), (24417, 60, 1585), (24418, 60, 1600), (24419, 60, 1786), (24420, 60, 1886), (24421, 60, 1888), (24422, 60, 1916), (24423, 60, 1956), (24424, 60, 1984), (24425, 60, 2516), (24426, 60, 2601), (24427, 60, 2632), (24428, 60, 2643), (24429, 60, 2696), (24430, 60, 2763), (24431, 60, 2837), (24432, 60, 2854), (24433, 60, 2906), (24434, 60, 2949), (24435, 60, 3066), (24436, 60, 3090), (24437, 60, 3235), (24438, 60, 3324), (24439, 60, 3491), (24440, 60, 3546), (24441, 60, 3559), (24442, 60, 3686), (24443, 60, 3762), (24444, 60, 3827), (24445, 60, 4078), (24446, 60, 4130), (24447, 60, 4165), (24448, 60, 4230), (24449, 60, 4337), (24450, 60, 4347), (24451, 60, 4482), (24452, 60, 4502), (24453, 60, 4534), (24454, 60, 4562), (24455, 60, 4784), (24456, 60, 4806), (24457, 60, 4904), (24458, 60, 4979), (24459, 60, 4989), (24460, 60, 5016), (24461, 60, 5132), (24462, 60, 5194), (24463, 60, 5200), (24464, 60, 5202), (24465, 60, 5203), (24466, 60, 5534), (24467, 60, 5642), (24468, 60, 5792), (24469, 60, 5905), (24470, 60, 5913), (24471, 60, 5995), (24472, 60, 6003), (24473, 60, 6079), (24474, 60, 6096), (24475, 60, 6103), (24476, 60, 6126), (24477, 60, 6179), (24478, 60, 6245), (24479, 60, 6280), (24480, 60, 6305), (24481, 60, 6319), (24482, 60, 6411), (24483, 60, 6429), (24484, 60, 6446), (24485, 60, 6448), (24486, 60, 6495), (24487, 60, 6531), (24488, 60, 6571), (24489, 60, 6602), (24490, 60, 6750), (24491, 60, 6808), (24492, 60, 6831), (24493, 60, 7031), (24494, 60, 7032), (24495, 60, 7114), (24496, 60, 7151), (24497, 60, 7264), (24498, 60, 7287), (24499, 60, 7380), (24500, 60, 7417), (24501, 60, 7453), (24502, 60, 7493), (24503, 60, 7515), (24504, 60, 7525), (24505, 60, 7621), (24506, 60, 7759), (24507, 60, 7773), (24508, 60, 7876), (24509, 60, 7988), (24510, 60, 7997), (24511, 60, 8029), (24512, 60, 8086), (24513, 60, 8228), (24514, 60, 8265), (24515, 60, 8378), (24516, 60, 8529), (24517, 60, 8546), (24518, 60, 8557), (24519, 60, 8700), (24520, 60, 8703), (24521, 60, 8714), (24522, 60, 8768), (24523, 60, 8769), (24524, 60, 8866), (24525, 60, 8867), (24526, 60, 8868), (24527, 60, 9187), (24528, 60, 9216), (24529, 60, 9238), (24530, 60, 9261), (24531, 60, 9333), (24532, 60, 9364), (24533, 60, 9471), (24534, 60, 9582), (24535, 60, 9609), (24536, 60, 9739), (24537, 60, 9804), (24538, 60, 9922), (24539, 60, 9984), (24540, 60, 10025), (24541, 60, 10069), (24542, 60, 10075), (24543, 60, 10248), (24544, 60, 10282), (24545, 60, 10353), (24546, 60, 10608), (24547, 60, 10609), (24548, 60, 10698), (24549, 60, 10763), (24550, 60, 10799), (24551, 60, 10862), (24552, 60, 10887), (24553, 60, 10905), (24554, 60, 10925), (24555, 60, 11069), (24556, 60, 11084), (24557, 60, 11093), (24558, 60, 11119), (24559, 60, 11153), (24560, 60, 11158), (24561, 60, 11213), (24562, 60, 11441), (24563, 60, 11490), (24564, 60, 11532), (24565, 60, 11537), (24566, 60, 11554), (24567, 60, 11565), (24568, 60, 11602), (24569, 60, 11613), (24570, 60, 11619), (24571, 60, 11670), (24572, 60, 11703), (24573, 60, 11822), (24574, 60, 11831), (24575, 60, 11833), (24576, 60, 11838), (24577, 60, 11935), (24578, 60, 11962), (24579, 60, 12019), (24580, 60, 12175), (24581, 60, 12301), (24582, 60, 12317), (24583, 60, 12337), (24584, 60, 12339), (24585, 60, 12358), (24586, 60, 12440), (24587, 60, 12455), (24588, 60, 12617), (24589, 60, 12731), (24590, 60, 12847), (24591, 60, 12865), (24592, 60, 12878), (24593, 60, 12917), (24594, 60, 12924), (24595, 60, 12936), (24596, 60, 12970), (24597, 60, 13052), (24598, 60, 13096), (24599, 60, 13153), (24600, 60, 13275), (24601, 60, 13286), (24602, 60, 13408), (24603, 60, 13450), (24604, 60, 13503), (24605, 60, 13508), (24606, 60, 13516), (24607, 60, 13591), (24608, 60, 13731), (24609, 60, 13735), (24610, 60, 13764), (24611, 60, 13826), (24612, 60, 13895), (24613, 60, 13974), (24614, 60, 14022), (24615, 60, 14084), (24616, 60, 14128), (24617, 60, 14197), (24618, 60, 14219), (24619, 60, 14318), (24620, 60, 14349), (24621, 60, 14384), (24622, 60, 14442), (24623, 60, 14457), (24624, 60, 14511), (24625, 60, 14524), (24626, 60, 14605), (24627, 60, 14647), (24628, 60, 14674), (24629, 60, 14743), (24630, 60, 14788), (24631, 60, 14805), (24632, 60, 14813), (24633, 60, 14856), (24634, 60, 14868), (24635, 60, 14901), (24636, 60, 14967), (24637, 60, 15005), (24638, 60, 15106), (24639, 60, 15182), (24640, 60, 15184), (24641, 60, 15286), (24642, 60, 15364), (24643, 60, 15400), (24644, 60, 15445), (24645, 60, 15530), (24646, 60, 15574), (24647, 60, 15598), (24648, 60, 15620), (24649, 60, 15733), (24650, 60, 15959), (24651, 60, 15963), (24652, 60, 16009), (24653, 60, 16105), (24654, 60, 16161), (24655, 60, 16218), (24656, 60, 16284), (24657, 60, 16305), (24658, 60, 16359), (24659, 60, 16372), (24660, 60, 16419), (24661, 60, 16421), (24662, 60, 16425), (24663, 60, 16496), (24664, 60, 16503), (24665, 60, 16559), (24666, 60, 16601), (24667, 60, 16602), (24668, 60, 16700), (24669, 60, 16713), (24670, 60, 16766), (24671, 60, 16773), (24672, 60, 16840), (24673, 60, 16887), (24674, 60, 16903), (24675, 60, 16931), (24676, 60, 16971), (24677, 60, 17083), (24678, 60, 17126), (24679, 60, 17127), (24680, 60, 17137), (24681, 60, 17181), (24682, 60, 17207), (24683, 60, 17249), (24684, 60, 17297), (24685, 60, 17444), (24686, 60, 17493), (24687, 60, 17524), (24688, 60, 17548), (24689, 60, 17658), (24690, 60, 17774), (24691, 60, 17784), (24692, 60, 17947), (24693, 60, 17990), (24694, 60, 18008), (24695, 60, 18017), (24696, 60, 18244), (24697, 60, 18249), (24698, 60, 18426), (24699, 60, 18452), (24700, 60, 18519), (24701, 60, 18570), (24702, 60, 18578), (24703, 60, 18636), (24704, 60, 18756), (24705, 60, 18759), (24706, 60, 18819), (24707, 60, 18947), (24708, 60, 18961), (24709, 60, 18978), (24710, 60, 18992), (24711, 60, 19000), (24712, 60, 19072), (24713, 60, 19101), (24714, 60, 19167), (24715, 60, 19170), (24716, 60, 19292), (24717, 60, 19474), (24718, 60, 19724), (24719, 60, 19754), (24720, 60, 19880), (24721, 60, 19915), (24722, 60, 19945), (24723, 60, 20025), (24724, 60, 20041), (24725, 60, 20079), (24726, 60, 20137), (24727, 60, 20163), (24728, 60, 20177), (24729, 60, 20254), (24730, 60, 20319), (24731, 60, 20382), (24732, 60, 20500), (24733, 60, 20581), (24734, 60, 20605), (24735, 60, 20721), (24736, 60, 20907), (24737, 60, 20928), (24738, 60, 21111), (24739, 60, 21113), (24740, 60, 21164), (24741, 60, 21357), (24742, 60, 21403), (24743, 60, 21487), (24744, 60, 21516), (24745, 60, 21577), (24746, 60, 21692), (24747, 60, 22035), (24748, 60, 22056), (24749, 60, 22061), (24750, 60, 22128), (24751, 60, 22355), (24752, 60, 22406), (24753, 60, 22512), (24754, 60, 22688), (24755, 60, 23085), (24756, 60, 23143), (24757, 60, 23283), (24758, 60, 23441), (24759, 60, 23653), (24760, 60, 24261), (24761, 60, 24612), (24762, 60, 25167), (24763, 60, 25184), (24764, 60, 25200), (24886, 61, 203), (24887, 61, 862), (24888, 61, 1307), (24889, 61, 1339), (24890, 61, 1543), (24891, 61, 2145), (24892, 61, 2572), (24893, 61, 2991), (24894, 61, 3143), (24895, 61, 3312), (24896, 61, 4039), (24897, 61, 4301), (24898, 61, 5360), (24899, 61, 5486), (24900, 61, 5521), (24901, 61, 6030), (24902, 61, 6073), (24903, 61, 6762), (24904, 61, 8270), (24905, 61, 8545), (24906, 61, 8568), (24907, 61, 8619), (24908, 61, 8664), (24909, 61, 9858), (24910, 61, 10840), (24911, 61, 11543), (24912, 61, 12276), (24913, 61, 12308), (24914, 61, 12879), (24915, 61, 14328), (24916, 61, 15194), (24917, 61, 15478), (24918, 61, 16050), (24919, 61, 17871), (24920, 61, 18780), (24921, 61, 20295), (24922, 61, 21002), (24923, 61, 21347), (24924, 61, 21853), (24925, 61, 25224), (24949, 62, 265), (24950, 62, 1288), (24951, 62, 1321), (24952, 62, 1913), (24953, 62, 2239), (24954, 62, 2331), (24955, 62, 2430), (24956, 62, 2643), (24957, 62, 3100), (24958, 62, 3962), (24959, 62, 4413), (24960, 62, 5291), (24961, 62, 5902), (24962, 62, 6478), (24963, 62, 6506), (24964, 62, 6513), (24965, 62, 6523), (24966, 62, 7013), (24967, 62, 7323), (24968, 62, 7487), (24969, 62, 7540), (24970, 62, 7547), (24971, 62, 7552), (24972, 62, 7690), (24973, 62, 8233), (24974, 62, 8727), (24975, 62, 9131), (24976, 62, 9261), (24977, 62, 9577), (24978, 62, 9751), (24979, 62, 9860), (24980, 62, 10052), (24981, 62, 10269), (24982, 62, 10590), (24983, 62, 10892), (24984, 62, 11253), (24985, 62, 11494), (24986, 62, 11778), (24987, 62, 12015), (24988, 62, 12114), (24989, 62, 12340), (24990, 62, 12460), (24991, 62, 12488), (24992, 62, 12713), (24993, 62, 12996), (24994, 62, 13045), (24995, 62, 13261), (24996, 62, 13284), (24997, 62, 13728), (24998, 62, 13902), (24999, 62, 14019), (25000, 62, 15487), (25001, 62, 15520), (25002, 62, 15875), (25003, 62, 16109), (25004, 62, 16116), (25005, 62, 16235), (25006, 62, 16259), (25007, 62, 16371), (25008, 62, 18332), (25009, 62, 18717), (25010, 62, 19562), (25011, 62, 20027), (25012, 62, 20295), (25013, 62, 20815), (25076, 63, 208), (25077, 63, 265), (25078, 63, 632), (25079, 63, 754), (25080, 63, 1220), (25081, 63, 1288), (25082, 63, 1321), (25083, 63, 1369), (25084, 63, 1786), (25085, 63, 1900), (25086, 63, 1913), (25087, 63, 2080), (25088, 63, 2128), (25089, 63, 2199), (25090, 63, 2239), (25091, 63, 2331), (25092, 63, 2430), (25093, 63, 2491), (25094, 63, 2581), (25095, 63, 2643), (25096, 63, 2644), (25097, 63, 2914), (25098, 63, 3047), (25099, 63, 3100), (25100, 63, 3248), (25101, 63, 3324), (25102, 63, 3338), (25103, 63, 3573), (25104, 63, 3901), (25105, 63, 3962), (25106, 63, 3993), (25107, 63, 4236), (25108, 63, 4413), (25109, 63, 4440), (25110, 63, 4678), (25111, 63, 4743), (25112, 63, 4841), (25113, 63, 4877), (25114, 63, 4904), (25115, 63, 4933), (25116, 63, 4990), (25117, 63, 5015), (25118, 63, 5082), (25119, 63, 5135), (25120, 63, 5153), (25121, 63, 5208), (25122, 63, 5291), (25123, 63, 5386), (25124, 63, 5466), (25125, 63, 5673), (25126, 63, 5748), (25127, 63, 5779), (25128, 63, 5877), (25129, 63, 5889), (25130, 63, 5902), (25131, 63, 6079), (25132, 63, 6202), (25133, 63, 6230), (25134, 63, 6341), (25135, 63, 6478), (25136, 63, 6506), (25137, 63, 6513), (25138, 63, 6523), (25139, 63, 6725), (25140, 63, 6746), (25141, 63, 6824), (25142, 63, 6832), (25143, 63, 7008), (25144, 63, 7013), (25145, 63, 7185), (25146, 63, 7323), (25147, 63, 7412), (25148, 63, 7487), (25149, 63, 7540), (25150, 63, 7547), (25151, 63, 7552), (25152, 63, 7690), (25153, 63, 7779), (25154, 63, 7835), (25155, 63, 7953), (25156, 63, 7981), (25157, 63, 8199), (25158, 63, 8233), (25159, 63, 8322), (25160, 63, 8341), (25161, 63, 8475), (25162, 63, 8638), (25163, 63, 8646), (25164, 63, 8716), (25165, 63, 8727), (25166, 63, 8792), (25167, 63, 8824), (25168, 63, 9105), (25169, 63, 9131), (25170, 63, 9230), (25171, 63, 9261), (25172, 63, 9327), (25173, 63, 9406), (25174, 63, 9520), (25175, 63, 9577), (25176, 63, 9590), (25177, 63, 9596), (25178, 63, 9598), (25179, 63, 9644), (25180, 63, 9751), (25181, 63, 9782), (25182, 63, 9860), (25183, 63, 9946), (25184, 63, 10052), (25185, 63, 10104), (25186, 63, 10154), (25187, 63, 10206), (25188, 63, 10269), (25189, 63, 10305), (25190, 63, 10368), (25191, 63, 10590), (25192, 63, 10892), (25193, 63, 11004), (25194, 63, 11030), (25195, 63, 11047), (25196, 63, 11095), (25197, 63, 11189), (25198, 63, 11253), (25199, 63, 11296), (25200, 63, 11320), (25201, 63, 11366), (25202, 63, 11494), (25203, 63, 11778), (25204, 63, 12015), (25205, 63, 12027), (25206, 63, 12114), (25207, 63, 12340), (25208, 63, 12373), (25209, 63, 12460), (25210, 63, 12488), (25211, 63, 12549), (25212, 63, 12591), (25213, 63, 12602), (25214, 63, 12666), (25215, 63, 12707), (25216, 63, 12713), (25217, 63, 12748), (25218, 63, 12935), (25219, 63, 12996), (25220, 63, 13045), (25221, 63, 13261), (25222, 63, 13281), (25223, 63, 13284), (25224, 63, 13375), (25225, 63, 13408), (25226, 63, 13454), (25227, 63, 13480), (25228, 63, 13563), (25229, 63, 13641), (25230, 63, 13728), (25231, 63, 13739), (25232, 63, 13856), (25233, 63, 13902), (25234, 63, 13962), (25235, 63, 14019), (25236, 63, 14183), (25237, 63, 14271), (25238, 63, 14273), (25239, 63, 14530), (25240, 63, 14646), (25241, 63, 15023), (25242, 63, 15044), (25243, 63, 15303), (25244, 63, 15487), (25245, 63, 15520), (25246, 63, 15768), (25247, 63, 15827), (25248, 63, 15875), (25249, 63, 15879), (25250, 63, 15920), (25251, 63, 15994), (25252, 63, 16109), (25253, 63, 16116), (25254, 63, 16235), (25255, 63, 16259), (25256, 63, 16289), (25257, 63, 16350), (25258, 63, 16353), (25259, 63, 16371), (25260, 63, 16775), (25261, 63, 16856), (25262, 63, 17054), (25263, 63, 17495), (25264, 63, 18332), (25265, 63, 18362), (25266, 63, 18398), (25267, 63, 18717), (25268, 63, 18780), (25269, 63, 19562), (25270, 63, 19779), (25271, 63, 19785), (25272, 63, 19867), (25273, 63, 20027), (25274, 63, 20295), (25275, 63, 20300), (25276, 63, 20441), (25277, 63, 20815), (25278, 63, 21140), (25279, 63, 21653), (25331, 64, 265), (25332, 64, 270), (25333, 64, 301), (25334, 64, 632), (25335, 64, 852), (25336, 64, 994), (25337, 64, 1052), (25338, 64, 1151), (25339, 64, 1277), (25340, 64, 1369), (25341, 64, 1381), (25342, 64, 1639), (25343, 64, 2015), (25344, 64, 2239), (25345, 64, 2331), (25346, 64, 2498), (25347, 64, 2550), (25348, 64, 2638), (25349, 64, 2643), (25350, 64, 3002), (25351, 64, 3100), (25352, 64, 3281), (25353, 64, 3573), (25354, 64, 3820), (25355, 64, 3856), (25356, 64, 3877), (25357, 64, 3980), (25358, 64, 4203), (25359, 64, 4508), (25360, 64, 4532), (25361, 64, 4651), (25362, 64, 4699), (25363, 64, 4781), (25364, 64, 4841), (25365, 64, 5015), (25366, 64, 5115), (25367, 64, 5309), (25368, 64, 5360), (25369, 64, 5673), (25370, 64, 5741), (25371, 64, 5821), (25372, 64, 5840), (25373, 64, 5914), (25374, 64, 6079), (25375, 64, 6196), (25376, 64, 6265), (25377, 64, 6316), (25378, 64, 6335), (25379, 64, 6393), (25380, 64, 6478), (25381, 64, 6506), (25382, 64, 6518), (25383, 64, 6626), (25384, 64, 6649), (25385, 64, 6940), (25386, 64, 6967), (25387, 64, 7008), (25388, 64, 7545), (25389, 64, 7547), (25390, 64, 7842), (25391, 64, 7871), (25392, 64, 7880), (25393, 64, 8116), (25394, 64, 8129), (25395, 64, 8169), (25396, 64, 8438), (25397, 64, 8492), (25398, 64, 8638), (25399, 64, 9115), (25400, 64, 9364), (25401, 64, 9371), (25402, 64, 9444); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (25403, 64, 9520), (25404, 64, 9607), (25405, 64, 9645), (25406, 64, 9751), (25407, 64, 9860), (25408, 64, 9885), (25409, 64, 10047), (25410, 64, 10052), (25411, 64, 10107), (25412, 64, 10311), (25413, 64, 10791), (25414, 64, 10892), (25415, 64, 11029), (25416, 64, 11061), (25417, 64, 11089), (25418, 64, 11253), (25419, 64, 11392), (25420, 64, 11536), (25421, 64, 11728), (25422, 64, 11778), (25423, 64, 11783), (25424, 64, 11984), (25425, 64, 12015), (25426, 64, 12067), (25427, 64, 12307), (25428, 64, 12314), (25429, 64, 12488), (25430, 64, 12568), (25431, 64, 12666), (25432, 64, 12798), (25433, 64, 12815), (25434, 64, 12996), (25435, 64, 13176), (25436, 64, 13224), (25437, 64, 13247), (25438, 64, 13375), (25439, 64, 13460), (25440, 64, 13708), (25441, 64, 13902), (25442, 64, 13928), (25443, 64, 14019), (25444, 64, 14188), (25445, 64, 14347), (25446, 64, 14438), (25447, 64, 14711), (25448, 64, 14750), (25449, 64, 14911), (25450, 64, 15031), (25451, 64, 15045), (25452, 64, 15136), (25453, 64, 15138), (25454, 64, 15275), (25455, 64, 16109), (25456, 64, 16227), (25457, 64, 16243), (25458, 64, 16371), (25459, 64, 16614), (25460, 64, 16756), (25461, 64, 17196), (25462, 64, 17341), (25463, 64, 17484), (25464, 64, 17621), (25465, 64, 17724), (25466, 64, 18321), (25467, 64, 19040), (25468, 64, 19952), (25469, 64, 20295), (25470, 64, 20300), (25471, 64, 20406), (25472, 64, 20661), (25473, 64, 20815), (25474, 64, 22116), (25475, 64, 22432), (25476, 64, 22445), (25477, 64, 23193), (25478, 64, 25170), (25586, 65, 628), (25587, 65, 806), (25588, 65, 1042), (25589, 65, 1245), (25590, 65, 2331), (25591, 65, 2451), (25592, 65, 2484), (25593, 65, 2651), (25594, 65, 2920), (25595, 65, 3322), (25596, 65, 3820), (25597, 65, 3903), (25598, 65, 4039), (25599, 65, 4301), (25600, 65, 4379), (25601, 65, 4539), (25602, 65, 5047), (25603, 65, 5822), (25604, 65, 5840), (25605, 65, 5951), (25606, 65, 5972), (25607, 65, 6030), (25608, 65, 6110), (25609, 65, 6348), (25610, 65, 6400), (25611, 65, 7842), (25612, 65, 8131), (25613, 65, 8207), (25614, 65, 8597), (25615, 65, 8667), (25616, 65, 9327), (25617, 65, 9607), (25618, 65, 10205), (25619, 65, 10231), (25620, 65, 10269), (25621, 65, 10721), (25622, 65, 11004), (25623, 65, 11030), (25624, 65, 11061), (25625, 65, 11157), (25626, 65, 11337), (25627, 65, 11392), (25628, 65, 11543), (25629, 65, 11990), (25630, 65, 12276), (25631, 65, 12291), (25632, 65, 13424), (25633, 65, 13471), (25634, 65, 13983), (25635, 65, 14064), (25636, 65, 14215), (25637, 65, 14438), (25638, 65, 15343), (25639, 65, 16272), (25640, 65, 16280), (25641, 65, 17374), (25642, 65, 17526), (25643, 65, 18806), (25644, 65, 18852), (25645, 65, 20420), (25646, 65, 21893), (25647, 65, 22952), (25649, 66, 229), (25650, 66, 293), (25651, 66, 344), (25652, 66, 410), (25653, 66, 666), (25654, 66, 669), (25655, 66, 717), (25656, 66, 932), (25657, 66, 1084), (25658, 66, 1162), (25659, 66, 1283), (25660, 66, 1542), (25661, 66, 1610), (25662, 66, 1613), (25663, 66, 1622), (25664, 66, 1821), (25665, 66, 2007), (25666, 66, 2176), (25667, 66, 2235), (25668, 66, 2255), (25669, 66, 2429), (25670, 66, 2526), (25671, 66, 2595), (25672, 66, 2870), (25673, 66, 2923), (25674, 66, 2939), (25675, 66, 3067), (25676, 66, 3261), (25677, 66, 3277), (25678, 66, 3532), (25679, 66, 3539), (25680, 66, 3607), (25681, 66, 3675), (25682, 66, 3684), (25683, 66, 3796), (25684, 66, 4063), (25685, 66, 4298), (25686, 66, 4392), (25687, 66, 4411), (25688, 66, 4544), (25689, 66, 4635), (25690, 66, 4680), (25691, 66, 4912), (25692, 66, 4960), (25693, 66, 5023), (25694, 66, 5163), (25695, 66, 5177), (25696, 66, 5233), (25697, 66, 5379), (25698, 66, 5860), (25699, 66, 5868), (25700, 66, 5908), (25701, 66, 5978), (25702, 66, 5990), (25703, 66, 6414), (25704, 66, 6583), (25705, 66, 6618), (25706, 66, 6807), (25707, 66, 6814), (25708, 66, 6820), (25709, 66, 7053), (25710, 66, 7108), (25711, 66, 7124), (25712, 66, 7129), (25713, 66, 7169), (25714, 66, 7300), (25715, 66, 7308), (25716, 66, 7327), (25717, 66, 7404), (25718, 66, 7686), (25719, 66, 7710), (25720, 66, 7765), (25721, 66, 7793), (25722, 66, 7803), (25723, 66, 7822), (25724, 66, 7883), (25725, 66, 7962), (25726, 66, 8038), (25727, 66, 8049), (25728, 66, 8171), (25729, 66, 8236), (25730, 66, 8986), (25731, 66, 9067), (25732, 66, 9454), (25733, 66, 9514), (25734, 66, 9604), (25735, 66, 9625), (25736, 66, 9665), (25737, 66, 9721), (25738, 66, 9841), (25739, 66, 10172), (25740, 66, 10423), (25741, 66, 10424), (25742, 66, 10578), (25743, 66, 10897), (25744, 66, 10995), (25745, 66, 10999), (25746, 66, 11018), (25747, 66, 11097), (25748, 66, 11149), (25749, 66, 11380), (25750, 66, 11717), (25751, 66, 11817), (25752, 66, 11913), (25753, 66, 11925), (25754, 66, 12044), (25755, 66, 12068), (25756, 66, 12084), (25757, 66, 12113), (25758, 66, 12162), (25759, 66, 12234), (25760, 66, 12299), (25761, 66, 12348), (25762, 66, 12443), (25763, 66, 12716), (25764, 66, 12720), (25765, 66, 12778), (25766, 66, 12786), (25767, 66, 12944), (25768, 66, 12992), (25769, 66, 13085), (25770, 66, 13098), (25771, 66, 13110), (25772, 66, 13186), (25773, 66, 13240), (25774, 66, 13426), (25775, 66, 13436), (25776, 66, 13439), (25777, 66, 13463), (25778, 66, 13646), (25779, 66, 13802), (25780, 66, 13828), (25781, 66, 13868), (25782, 66, 13877), (25783, 66, 13977), (25784, 66, 14006), (25785, 66, 14033), (25786, 66, 14148), (25787, 66, 14160), (25788, 66, 14161), (25789, 66, 14190), (25790, 66, 14259), (25791, 66, 14344), (25792, 66, 14430), (25793, 66, 14642), (25794, 66, 14732), (25795, 66, 14852), (25796, 66, 14981), (25797, 66, 15571), (25798, 66, 15629), (25799, 66, 15666), (25800, 66, 15683), (25801, 66, 15830), (25802, 66, 15845), (25803, 66, 16049), (25804, 66, 16146), (25805, 66, 16221), (25806, 66, 16408), (25807, 66, 16412), (25808, 66, 16416), (25809, 66, 16525), (25810, 66, 16617), (25811, 66, 16748), (25812, 66, 16835), (25813, 66, 17078), (25814, 66, 17155), (25815, 66, 17244), (25816, 66, 17487), (25817, 66, 18035), (25818, 66, 18077), (25819, 66, 18262), (25820, 66, 18527), (25821, 66, 18690), (25822, 66, 18749), (25823, 66, 18751), (25824, 66, 18922), (25825, 66, 19112), (25826, 66, 19154), (25827, 66, 19181), (25828, 66, 19263), (25829, 66, 19272), (25830, 66, 19746), (25831, 66, 19927), (25832, 66, 19930), (25833, 66, 19988), (25834, 66, 20005), (25835, 66, 20070), (25836, 66, 20119), (25837, 66, 20145), (25838, 66, 20165), (25839, 66, 20598), (25840, 66, 20643), (25841, 66, 21384), (25842, 66, 22040), (25843, 66, 22160), (25844, 66, 22161), (25845, 66, 22841), (25846, 66, 23405), (25847, 66, 24569), (25848, 66, 24746), (25849, 66, 25073), (25850, 66, 25108), (25904, 67, 106), (25905, 67, 410), (25906, 67, 459), (25907, 67, 498), (25908, 67, 514), (25909, 67, 666), (25910, 67, 712), (25911, 67, 807), (25912, 67, 1271), (25913, 67, 1788), (25914, 67, 1852), (25915, 67, 2158), (25916, 67, 2185), (25917, 67, 2317), (25918, 67, 2341), (25919, 67, 2617), (25920, 67, 3293), (25921, 67, 3532), (25922, 67, 3752), (25923, 67, 3822), (25924, 67, 4245), (25925, 67, 4246), (25926, 67, 4453), (25927, 67, 4457), (25928, 67, 4485), (25929, 67, 4639), (25930, 67, 4697), (25931, 67, 4804), (25932, 67, 5044), (25933, 67, 5247), (25934, 67, 5293), (25935, 67, 5359), (25936, 67, 5652), (25937, 67, 5908), (25938, 67, 6131), (25939, 67, 6283), (25940, 67, 6489), (25941, 67, 6618), (25942, 67, 6872), (25943, 67, 6914), (25944, 67, 6990), (25945, 67, 7022), (25946, 67, 7129), (25947, 67, 7189), (25948, 67, 7190), (25949, 67, 7610), (25950, 67, 7646), (25951, 67, 7793), (25952, 67, 7851), (25953, 67, 7883), (25954, 67, 8415), (25955, 67, 8546), (25956, 67, 8583), (25957, 67, 8593), (25958, 67, 8915), (25959, 67, 8989), (25960, 67, 9140), (25961, 67, 9200), (25962, 67, 9209), (25963, 67, 9212), (25964, 67, 9367), (25965, 67, 9483), (25966, 67, 9492), (25967, 67, 9560), (25968, 67, 9722), (25969, 67, 9841), (25970, 67, 9896), (25971, 67, 10141), (25972, 67, 10380), (25973, 67, 11126), (25974, 67, 11181), (25975, 67, 11471), (25976, 67, 11969), (25977, 67, 11971), (25978, 67, 12145), (25979, 67, 12228), (25980, 67, 12265), (25981, 67, 12310), (25982, 67, 12421), (25983, 67, 12443), (25984, 67, 12488), (25985, 67, 12662), (25986, 67, 12757), (25987, 67, 12872), (25988, 67, 13065), (25989, 67, 13206), (25990, 67, 13297), (25991, 67, 13368), (25992, 67, 13496), (25993, 67, 13674), (25994, 67, 13721), (25995, 67, 13768), (25996, 67, 14161), (25997, 67, 14172), (25998, 67, 14316), (25999, 67, 14375), (26000, 67, 14408), (26001, 67, 14838), (26002, 67, 14852), (26003, 67, 14948), (26004, 67, 15014), (26005, 67, 15365), (26006, 67, 15684), (26007, 67, 16033), (26008, 67, 16111), (26009, 67, 16318), (26010, 67, 16327), (26011, 67, 16374), (26012, 67, 16571), (26013, 67, 16599), (26014, 67, 16606), (26015, 67, 16614), (26016, 67, 16747), (26017, 67, 16761), (26018, 67, 16828), (26019, 67, 17155), (26020, 67, 17708), (26021, 67, 18430), (26022, 67, 18441), (26023, 67, 18562), (26024, 67, 19416), (26025, 67, 19419), (26026, 67, 19566), (26027, 67, 19918), (26028, 67, 20070), (26029, 67, 20145), (26030, 67, 20232), (26031, 67, 21307), (26032, 67, 21790), (26033, 67, 22084), (26034, 67, 23097), (26035, 67, 24569), (26159, 68, 665), (26160, 68, 712), (26161, 68, 1140), (26162, 68, 1627), (26163, 68, 1713), (26164, 68, 2493), (26165, 68, 2638), (26166, 68, 2776), (26167, 68, 4096), (26168, 68, 4262), (26169, 68, 4545), (26170, 68, 4899), (26171, 68, 4954), (26172, 68, 5087), (26173, 68, 5881), (26174, 68, 6250), (26175, 68, 6942), (26176, 68, 7093), (26177, 68, 8049), (26178, 68, 8502), (26179, 68, 8831), (26180, 68, 9141), (26181, 68, 9142), (26182, 68, 9283), (26183, 68, 9484), (26184, 68, 9630), (26185, 68, 9878), (26186, 68, 10622), (26187, 68, 11061), (26188, 68, 11321), (26189, 68, 12316), (26190, 68, 12757), (26191, 68, 12806), (26192, 68, 12809), (26193, 68, 12925), (26194, 68, 12984), (26195, 68, 12998), (26196, 68, 13025), (26197, 68, 13138), (26198, 68, 13319), (26199, 68, 13442), (26200, 68, 13618), (26201, 68, 13886), (26202, 68, 13977), (26203, 68, 14020), (26204, 68, 15009), (26205, 68, 15215), (26206, 68, 15507), (26207, 68, 15564), (26208, 68, 15602), (26209, 68, 16049), (26210, 68, 16430), (26211, 68, 16645), (26212, 68, 16647), (26213, 68, 17122), (26214, 68, 17752), (26215, 68, 17935), (26216, 68, 18023), (26217, 68, 18422), (26218, 68, 18430), (26219, 68, 18527), (26220, 68, 19116), (26221, 68, 19746), (26222, 68, 19875), (26223, 68, 20145), (26224, 68, 20204), (26225, 68, 20869), (26226, 68, 21535), (26227, 68, 21616), (26228, 68, 22011), (26229, 68, 22054), (26230, 68, 23004), (26231, 68, 23097), (26232, 68, 23171), (26233, 68, 23291), (26234, 68, 23718), (26235, 68, 23976), (26236, 68, 24040), (26286, 69, 293), (26287, 69, 360), (26288, 69, 481), (26289, 69, 514), (26290, 69, 579), (26291, 69, 634), (26292, 69, 669), (26293, 69, 693), (26294, 69, 717), (26295, 69, 802), (26296, 69, 863), (26297, 69, 1075), (26298, 69, 1189), (26299, 69, 1210), (26300, 69, 1226), (26301, 69, 1336), (26302, 69, 1952), (26303, 69, 2064), (26304, 69, 2210), (26305, 69, 2429), (26306, 69, 2584), (26307, 69, 2605), (26308, 69, 2926), (26309, 69, 2974), (26310, 69, 3216), (26311, 69, 3303), (26312, 69, 3313), (26313, 69, 3494), (26314, 69, 3755), (26315, 69, 3782), (26316, 69, 3789), (26317, 69, 3810), (26318, 69, 3848), (26319, 69, 3882), (26320, 69, 4112), (26321, 69, 4168), (26322, 69, 4265), (26323, 69, 4392), (26324, 69, 4431), (26325, 69, 4445), (26326, 69, 4661), (26327, 69, 4731), (26328, 69, 5007), (26329, 69, 5020), (26330, 69, 5056), (26331, 69, 5233), (26332, 69, 5247), (26333, 69, 5307), (26334, 69, 5326), (26335, 69, 5583), (26336, 69, 5769), (26337, 69, 5860), (26338, 69, 5892), (26339, 69, 5909), (26340, 69, 5926), (26341, 69, 5934), (26342, 69, 6082), (26343, 69, 6569), (26344, 69, 6583), (26345, 69, 6643), (26346, 69, 6872), (26347, 69, 7102), (26348, 69, 7108), (26349, 69, 7317), (26350, 69, 7334), (26351, 69, 7572), (26352, 69, 7710), (26353, 69, 7776), (26354, 69, 7784), (26355, 69, 7852), (26356, 69, 7913), (26357, 69, 8038), (26358, 69, 8051), (26359, 69, 8062), (26360, 69, 8069), (26361, 69, 8083), (26362, 69, 8186), (26363, 69, 8225), (26364, 69, 8293), (26365, 69, 8502), (26366, 69, 8593), (26367, 69, 8636), (26368, 69, 8685), (26369, 69, 8755), (26370, 69, 8787), (26371, 69, 8859), (26372, 69, 8961), (26373, 69, 9067), (26374, 69, 9073), (26375, 69, 9226), (26376, 69, 9264), (26377, 69, 9267), (26378, 69, 9323), (26379, 69, 9381), (26380, 69, 9430), (26381, 69, 9483), (26382, 69, 9507), (26383, 69, 9660), (26384, 69, 9719), (26385, 69, 9759), (26386, 69, 9935), (26387, 69, 9942), (26388, 69, 9966), (26389, 69, 10033), (26390, 69, 10093), (26391, 69, 10227), (26392, 69, 10351), (26393, 69, 10404), (26394, 69, 10422), (26395, 69, 10423), (26396, 69, 10447), (26397, 69, 10642), (26398, 69, 10719), (26399, 69, 10739), (26400, 69, 10755), (26401, 69, 10776), (26402, 69, 10788), (26403, 69, 10815), (26404, 69, 10866), (26405, 69, 10875), (26406, 69, 10897), (26407, 69, 10962), (26408, 69, 10990), (26409, 69, 11036), (26410, 69, 11097), (26411, 69, 11149), (26412, 69, 11152), (26413, 69, 11181), (26414, 69, 11243), (26415, 69, 11317), (26416, 69, 11331), (26417, 69, 11515), (26418, 69, 11539), (26419, 69, 11583), (26420, 69, 11761), (26421, 69, 11774), (26422, 69, 12144), (26423, 69, 12180), (26424, 69, 12228), (26425, 69, 12234), (26426, 69, 12264), (26427, 69, 12299), (26428, 69, 12449), (26429, 69, 12485), (26430, 69, 12544), (26431, 69, 12673), (26432, 69, 12778), (26433, 69, 12797), (26434, 69, 12890), (26435, 69, 12891), (26436, 69, 12930), (26437, 69, 12931), (26438, 69, 13115), (26439, 69, 13134), (26440, 69, 13187), (26441, 69, 13234), (26442, 69, 13393), (26443, 69, 13426), (26444, 69, 13502), (26445, 69, 13584), (26446, 69, 13602), (26447, 69, 13729), (26448, 69, 13768), (26449, 69, 13802), (26450, 69, 13803), (26451, 69, 13977), (26452, 69, 14160), (26453, 69, 14279), (26454, 69, 14301), (26455, 69, 14343), (26456, 69, 14388), (26457, 69, 14392), (26458, 69, 14589), (26459, 69, 14596), (26460, 69, 14621), (26461, 69, 14645), (26462, 69, 14710), (26463, 69, 14765), (26464, 69, 14832), (26465, 69, 14954), (26466, 69, 15014), (26467, 69, 15061), (26468, 69, 15410), (26469, 69, 15439), (26470, 69, 15491), (26471, 69, 15507), (26472, 69, 15595), (26473, 69, 15620), (26474, 69, 15684), (26475, 69, 15845), (26476, 69, 15861), (26477, 69, 16049), (26478, 69, 16053), (26479, 69, 16144), (26480, 69, 16228), (26481, 69, 16338), (26482, 69, 16381), (26483, 69, 16412), (26484, 69, 16427), (26485, 69, 16527), (26486, 69, 16535), (26487, 69, 16604), (26488, 69, 16826), (26489, 69, 16836), (26490, 69, 17031), (26491, 69, 17068), (26492, 69, 17123), (26493, 69, 17200), (26494, 69, 17231), (26495, 69, 17340), (26496, 69, 17394), (26497, 69, 17447), (26498, 69, 17490), (26499, 69, 17550), (26500, 69, 17571), (26501, 69, 17594), (26502, 69, 17663), (26503, 69, 17794), (26504, 69, 17838), (26505, 69, 17951), (26506, 69, 18039), (26507, 69, 18123), (26508, 69, 18169), (26509, 69, 18212), (26510, 69, 18253), (26511, 69, 18261), (26512, 69, 18265), (26513, 69, 18329), (26514, 69, 18333), (26515, 69, 18390), (26516, 69, 18403), (26517, 69, 18435), (26518, 69, 18525), (26519, 69, 18527), (26520, 69, 18562), (26521, 69, 18670), (26522, 69, 18793), (26523, 69, 18842), (26524, 69, 18922), (26525, 69, 18975), (26526, 69, 19075), (26527, 69, 19154), (26528, 69, 19181), (26529, 69, 19263), (26530, 69, 19360), (26531, 69, 19432), (26532, 69, 19542), (26533, 69, 19682), (26534, 69, 19745), (26535, 69, 19746), (26536, 69, 19821), (26537, 69, 19824), (26538, 69, 19870), (26539, 69, 19918), (26540, 69, 19932), (26541, 69, 19986), (26542, 69, 20009), (26543, 69, 20070), (26544, 69, 20145), (26545, 69, 20158), (26546, 69, 20286), (26547, 69, 20343), (26548, 69, 20344), (26549, 69, 20482), (26550, 69, 20650), (26551, 69, 20816), (26552, 69, 20818), (26553, 69, 20826), (26554, 69, 20849), (26555, 69, 20872), (26556, 69, 20880), (26557, 69, 20885), (26558, 69, 20927), (26559, 69, 20973), (26560, 69, 21130), (26561, 69, 21152), (26562, 69, 21174), (26563, 69, 21301), (26564, 69, 21364), (26565, 69, 21384), (26566, 69, 21484), (26567, 69, 21707), (26568, 69, 21861), (26569, 69, 22084), (26570, 69, 22160), (26571, 69, 22742), (26572, 69, 23096), (26573, 69, 23274), (26574, 69, 23955), (26575, 69, 23975), (26576, 69, 25069), (26577, 69, 25070), (26578, 69, 25073), (26579, 69, 25108), (26580, 69, 25210), (26797, 70, 207), (26798, 70, 229), (26799, 70, 260), (26800, 70, 270), (26801, 70, 360), (26802, 70, 413), (26803, 70, 448), (26804, 70, 459), (26805, 70, 490), (26806, 70, 503), (26807, 70, 556), (26808, 70, 567), (26809, 70, 579), (26810, 70, 592), (26811, 70, 604), (26812, 70, 639), (26813, 70, 644), (26814, 70, 647), (26815, 70, 669), (26816, 70, 693), (26817, 70, 712), (26818, 70, 848), (26819, 70, 873), (26820, 70, 894), (26821, 70, 961), (26822, 70, 1007), (26823, 70, 1051), (26824, 70, 1064), (26825, 70, 1071), (26826, 70, 1162), (26827, 70, 1210), (26828, 70, 1254), (26829, 70, 1269), (26830, 70, 1277), (26831, 70, 1317), (26832, 70, 1366), (26833, 70, 1375), (26834, 70, 1415), (26835, 70, 1467), (26836, 70, 1477), (26837, 70, 1629), (26838, 70, 1670), (26839, 70, 1702), (26840, 70, 1856), (26841, 70, 1894), (26842, 70, 1940), (26843, 70, 1949), (26844, 70, 1970), (26845, 70, 1999), (26846, 70, 2010), (26847, 70, 2014), (26848, 70, 2030), (26849, 70, 2062), (26850, 70, 2079), (26851, 70, 2176), (26852, 70, 2331), (26853, 70, 2343), (26854, 70, 2365), (26855, 70, 2446), (26856, 70, 2487), (26857, 70, 2493), (26858, 70, 2583), (26859, 70, 2595), (26860, 70, 2602), (26861, 70, 2617), (26862, 70, 2638), (26863, 70, 2694), (26864, 70, 2744), (26865, 70, 2829), (26866, 70, 2866), (26867, 70, 2878), (26868, 70, 2904), (26869, 70, 2936), (26870, 70, 3006), (26871, 70, 3066), (26872, 70, 3161), (26873, 70, 3162), (26874, 70, 3206), (26875, 70, 3216), (26876, 70, 3240), (26877, 70, 3247), (26878, 70, 3250), (26879, 70, 3303), (26880, 70, 3347), (26881, 70, 3456), (26882, 70, 3482), (26883, 70, 3494), (26884, 70, 3497), (26885, 70, 3532), (26886, 70, 3539), (26887, 70, 3607), (26888, 70, 3620), (26889, 70, 3702), (26890, 70, 3756), (26891, 70, 3764), (26892, 70, 3796), (26893, 70, 3802), (26894, 70, 3848), (26895, 70, 3909), (26896, 70, 3919), (26897, 70, 3923), (26898, 70, 3929), (26899, 70, 3943), (26900, 70, 3950), (26901, 70, 3966), (26902, 70, 3997), (26903, 70, 4007), (26904, 70, 4078), (26905, 70, 4104), (26906, 70, 4168), (26907, 70, 4198), (26908, 70, 4239), (26909, 70, 4245), (26910, 70, 4248), (26911, 70, 4278), (26912, 70, 4300), (26913, 70, 4320), (26914, 70, 4434), (26915, 70, 4445), (26916, 70, 4467), (26917, 70, 4484), (26918, 70, 4485), (26919, 70, 4657), (26920, 70, 4696), (26921, 70, 4710), (26922, 70, 4726), (26923, 70, 4779), (26924, 70, 4827), (26925, 70, 4871), (26926, 70, 4908), (26927, 70, 4954), (26928, 70, 4960), (26929, 70, 5029), (26930, 70, 5055), (26931, 70, 5071), (26932, 70, 5077), (26933, 70, 5156), (26934, 70, 5158), (26935, 70, 5177), (26936, 70, 5199), (26937, 70, 5233), (26938, 70, 5307), (26939, 70, 5326), (26940, 70, 5332), (26941, 70, 5340), (26942, 70, 5361), (26943, 70, 5390), (26944, 70, 5417), (26945, 70, 5433), (26946, 70, 5459), (26947, 70, 5520), (26948, 70, 5612), (26949, 70, 5652), (26950, 70, 5796), (26951, 70, 5798), (26952, 70, 5846), (26953, 70, 5881), (26954, 70, 5900), (26955, 70, 5908), (26956, 70, 5967), (26957, 70, 5971), (26958, 70, 6004), (26959, 70, 6085), (26960, 70, 6130), (26961, 70, 6131), (26962, 70, 6187), (26963, 70, 6237), (26964, 70, 6248), (26965, 70, 6305), (26966, 70, 6314), (26967, 70, 6331), (26968, 70, 6393), (26969, 70, 6511), (26970, 70, 6597), (26971, 70, 6600), (26972, 70, 6608), (26973, 70, 6639), (26974, 70, 6691), (26975, 70, 6771), (26976, 70, 6798), (26977, 70, 6812), (26978, 70, 6814), (26979, 70, 6827), (26980, 70, 6878), (26981, 70, 6942), (26982, 70, 6984), (26983, 70, 6990), (26984, 70, 6993), (26985, 70, 7038), (26986, 70, 7096), (26987, 70, 7100), (26988, 70, 7106), (26989, 70, 7109), (26990, 70, 7119), (26991, 70, 7141), (26992, 70, 7189), (26993, 70, 7217), (26994, 70, 7227), (26995, 70, 7241), (26996, 70, 7256), (26997, 70, 7334), (26998, 70, 7343), (26999, 70, 7421), (27000, 70, 7465), (27001, 70, 7541), (27002, 70, 7574), (27003, 70, 7612), (27004, 70, 7646), (27005, 70, 7716), (27006, 70, 7818), (27007, 70, 7893), (27008, 70, 7947), (27009, 70, 7966), (27010, 70, 7985), (27011, 70, 8124), (27012, 70, 8165), (27013, 70, 8184), (27014, 70, 8191), (27015, 70, 8207), (27016, 70, 8253), (27017, 70, 8267), (27018, 70, 8301), (27019, 70, 8310), (27020, 70, 8328), (27021, 70, 8371), (27022, 70, 8524), (27023, 70, 8544), (27024, 70, 8546), (27025, 70, 8569), (27026, 70, 8571), (27027, 70, 8636), (27028, 70, 8705), (27029, 70, 8729), (27030, 70, 8743), (27031, 70, 8823), (27032, 70, 8829), (27033, 70, 8833), (27034, 70, 8837), (27035, 70, 8869), (27036, 70, 8876), (27037, 70, 8886), (27038, 70, 8958), (27039, 70, 8961), (27040, 70, 8986), (27041, 70, 8989), (27042, 70, 8994), (27043, 70, 9061), (27044, 70, 9140), (27045, 70, 9141), (27046, 70, 9206), (27047, 70, 9208), (27048, 70, 9209), (27049, 70, 9265), (27050, 70, 9267), (27051, 70, 9283), (27052, 70, 9322), (27053, 70, 9330), (27054, 70, 9381), (27055, 70, 9405), (27056, 70, 9416), (27057, 70, 9468), (27058, 70, 9491), (27059, 70, 9514), (27060, 70, 9559), (27061, 70, 9560), (27062, 70, 9604), (27063, 70, 9608), (27064, 70, 9641), (27065, 70, 9665), (27066, 70, 9719), (27067, 70, 9747), (27068, 70, 9820), (27069, 70, 9838), (27070, 70, 9899), (27071, 70, 9938), (27072, 70, 9961), (27073, 70, 10071), (27074, 70, 10079), (27075, 70, 10104), (27076, 70, 10135), (27077, 70, 10137), (27078, 70, 10192), (27079, 70, 10232), (27080, 70, 10344), (27081, 70, 10379), (27082, 70, 10396), (27083, 70, 10447), (27084, 70, 10490), (27085, 70, 10537), (27086, 70, 10601), (27087, 70, 10666), (27088, 70, 10713), (27089, 70, 10714), (27090, 70, 10719), (27091, 70, 10770), (27092, 70, 10785), (27093, 70, 10815), (27094, 70, 10873), (27095, 70, 10875), (27096, 70, 10895), (27097, 70, 10900), (27098, 70, 10937), (27099, 70, 10961), (27100, 70, 10990), (27101, 70, 10999), (27102, 70, 11040), (27103, 70, 11091), (27104, 70, 11120), (27105, 70, 11126), (27106, 70, 11169), (27107, 70, 11181), (27108, 70, 11230), (27109, 70, 11333), (27110, 70, 11344), (27111, 70, 11393), (27112, 70, 11465), (27113, 70, 11471), (27114, 70, 11522), (27115, 70, 11542), (27116, 70, 11617), (27117, 70, 11644), (27118, 70, 11665), (27119, 70, 11761), (27120, 70, 11775), (27121, 70, 11817), (27122, 70, 11824), (27123, 70, 11834), (27124, 70, 11841), (27125, 70, 11971), (27126, 70, 12057), (27127, 70, 12093), (27128, 70, 12107), (27129, 70, 12109), (27130, 70, 12113), (27131, 70, 12149), (27132, 70, 12155), (27133, 70, 12176), (27134, 70, 12180), (27135, 70, 12220), (27136, 70, 12228), (27137, 70, 12264), (27138, 70, 12265), (27139, 70, 12266), (27140, 70, 12299), (27141, 70, 12304), (27142, 70, 12316), (27143, 70, 12338), (27144, 70, 12380), (27145, 70, 12400), (27146, 70, 12471), (27147, 70, 12488), (27148, 70, 12586), (27149, 70, 12662), (27150, 70, 12668), (27151, 70, 12670), (27152, 70, 12686), (27153, 70, 12687), (27154, 70, 12721), (27155, 70, 12733), (27156, 70, 12740), (27157, 70, 12744), (27158, 70, 12757), (27159, 70, 12767), (27160, 70, 12786), (27161, 70, 12797), (27162, 70, 12831), (27163, 70, 12890), (27164, 70, 12906), (27165, 70, 12974), (27166, 70, 12976), (27167, 70, 12988), (27168, 70, 13021), (27169, 70, 13050), (27170, 70, 13084), (27171, 70, 13088), (27172, 70, 13098), (27173, 70, 13138), (27174, 70, 13175), (27175, 70, 13236), (27176, 70, 13252), (27177, 70, 13361), (27178, 70, 13442), (27179, 70, 13444), (27180, 70, 13496), (27181, 70, 13512), (27182, 70, 13548), (27183, 70, 13570), (27184, 70, 13601), (27185, 70, 13602), (27186, 70, 13626), (27187, 70, 13646), (27188, 70, 13674), (27189, 70, 13749), (27190, 70, 13768), (27191, 70, 13802), (27192, 70, 13806), (27193, 70, 13917), (27194, 70, 13954), (27195, 70, 13985), (27196, 70, 13998), (27197, 70, 14005), (27198, 70, 14008), (27199, 70, 14069), (27200, 70, 14090), (27201, 70, 14097), (27202, 70, 14160), (27203, 70, 14161), (27204, 70, 14163), (27205, 70, 14172), (27206, 70, 14189), (27207, 70, 14238), (27208, 70, 14249), (27209, 70, 14264), (27210, 70, 14271), (27211, 70, 14277), (27212, 70, 14279), (27213, 70, 14306), (27214, 70, 14317), (27215, 70, 14338), (27216, 70, 14390), (27217, 70, 14445), (27218, 70, 14457), (27219, 70, 14514), (27220, 70, 14518), (27221, 70, 14589), (27222, 70, 14596), (27223, 70, 14640), (27224, 70, 14680), (27225, 70, 14697), (27226, 70, 14727), (27227, 70, 14752), (27228, 70, 14761), (27229, 70, 14806), (27230, 70, 14808), (27231, 70, 14930), (27232, 70, 14935), (27233, 70, 14940), (27234, 70, 14960), (27235, 70, 14961), (27236, 70, 14988), (27237, 70, 15009), (27238, 70, 15025), (27239, 70, 15070), (27240, 70, 15085), (27241, 70, 15093), (27242, 70, 15128), (27243, 70, 15145), (27244, 70, 15259), (27245, 70, 15310), (27246, 70, 15339), (27247, 70, 15365), (27248, 70, 15407), (27249, 70, 15415), (27250, 70, 15468), (27251, 70, 15516), (27252, 70, 15570), (27253, 70, 15575), (27254, 70, 15610), (27255, 70, 15661), (27256, 70, 15831), (27257, 70, 15864), (27258, 70, 15984), (27259, 70, 16000), (27260, 70, 16016), (27261, 70, 16017), (27262, 70, 16033), (27263, 70, 16053), (27264, 70, 16186), (27265, 70, 16190), (27266, 70, 16209), (27267, 70, 16288), (27268, 70, 16318), (27269, 70, 16327), (27270, 70, 16330), (27271, 70, 16373), (27272, 70, 16381), (27273, 70, 16391), (27274, 70, 16405), (27275, 70, 16408), (27276, 70, 16427), (27277, 70, 16428), (27278, 70, 16503), (27279, 70, 16506), (27280, 70, 16522), (27281, 70, 16524), (27282, 70, 16591), (27283, 70, 16606), (27284, 70, 16614), (27285, 70, 16647), (27286, 70, 16680), (27287, 70, 16691), (27288, 70, 16736), (27289, 70, 16745), (27290, 70, 16747), (27291, 70, 16786), (27292, 70, 16800), (27293, 70, 16827), (27294, 70, 16831), (27295, 70, 16917), (27296, 70, 16979), (27297, 70, 17117), (27298, 70, 17122), (27299, 70, 17123), (27300, 70, 17155), (27301, 70, 17158), (27302, 70, 17160), (27303, 70, 17394), (27304, 70, 17405), (27305, 70, 17482), (27306, 70, 17582), (27307, 70, 17623), (27308, 70, 17629), (27309, 70, 17662), (27310, 70, 17670), (27311, 70, 17755), (27312, 70, 17802), (27313, 70, 17884), (27314, 70, 17932), (27315, 70, 17935), (27316, 70, 17951), (27317, 70, 18035), (27318, 70, 18075), (27319, 70, 18135), (27320, 70, 18169), (27321, 70, 18171), (27322, 70, 18178), (27323, 70, 18231), (27324, 70, 18253), (27325, 70, 18307), (27326, 70, 18390), (27327, 70, 18505), (27328, 70, 18524), (27329, 70, 18527), (27330, 70, 18629), (27331, 70, 18691), (27332, 70, 18741), (27333, 70, 18749), (27334, 70, 18750), (27335, 70, 18752), (27336, 70, 18795), (27337, 70, 18828), (27338, 70, 18842), (27339, 70, 18972), (27340, 70, 18975), (27341, 70, 19145), (27342, 70, 19150), (27343, 70, 19154), (27344, 70, 19256), (27345, 70, 19307), (27346, 70, 19317), (27347, 70, 19416), (27348, 70, 19419), (27349, 70, 19432), (27350, 70, 19471), (27351, 70, 19474), (27352, 70, 19553), (27353, 70, 19608), (27354, 70, 19629), (27355, 70, 19680), (27356, 70, 19681), (27357, 70, 19713), (27358, 70, 19745), (27359, 70, 19752), (27360, 70, 19806), (27361, 70, 19807), (27362, 70, 19818), (27363, 70, 19868), (27364, 70, 19913), (27365, 70, 19935), (27366, 70, 19953), (27367, 70, 19963), (27368, 70, 19990), (27369, 70, 20070), (27370, 70, 20093), (27371, 70, 20124), (27372, 70, 20158), (27373, 70, 20284), (27374, 70, 20285), (27375, 70, 20286), (27376, 70, 20291), (27377, 70, 20402), (27378, 70, 20593), (27379, 70, 20625), (27380, 70, 20643), (27381, 70, 20644), (27382, 70, 20676), (27383, 70, 20689), (27384, 70, 20702), (27385, 70, 20818), (27386, 70, 20961), (27387, 70, 20987), (27388, 70, 21001), (27389, 70, 21238), (27390, 70, 21249), (27391, 70, 21268), (27392, 70, 21301), (27393, 70, 21306), (27394, 70, 21341), (27395, 70, 21364), (27396, 70, 21384), (27397, 70, 21482), (27398, 70, 21535), (27399, 70, 21808), (27400, 70, 21861), (27401, 70, 21878), (27402, 70, 21950), (27403, 70, 22000), (27404, 70, 22015), (27405, 70, 22254), (27406, 70, 22309), (27407, 70, 22714), (27408, 70, 22739), (27409, 70, 22742), (27410, 70, 22935), (27411, 70, 23060), (27412, 70, 23274), (27413, 70, 23290), (27414, 70, 23291), (27415, 70, 23401), (27416, 70, 23412), (27417, 70, 23682), (27418, 70, 23920), (27419, 70, 24495), (27420, 70, 24733), (27421, 70, 24931), (27422, 70, 25069), (27423, 70, 25070), (27424, 70, 25072), (27425, 70, 25078), (27426, 70, 25082), (27427, 70, 25108), (27428, 70, 25129), (27429, 70, 25156), (27430, 70, 25176), (27431, 70, 25204), (27820, 71, 465), (27821, 71, 514), (27822, 71, 621), (27823, 71, 967), (27824, 71, 1132), (27825, 71, 1205), (27826, 71, 1880), (27827, 71, 2152), (27828, 71, 2222), (27829, 71, 2223), (27830, 71, 2321), (27831, 71, 2396), (27832, 71, 2570), (27833, 71, 2582), (27834, 71, 2646), (27835, 71, 2767), (27836, 71, 2883), (27837, 71, 2932), (27838, 71, 3413), (27839, 71, 3840), (27840, 71, 3928), (27841, 71, 4004), (27842, 71, 4492), (27843, 71, 4658), (27844, 71, 4901), (27845, 71, 5200), (27846, 71, 5328), (27847, 71, 5390), (27848, 71, 5553), (27849, 71, 5622), (27850, 71, 5679), (27851, 71, 5869), (27852, 71, 5923), (27853, 71, 6085), (27854, 71, 6117), (27855, 71, 6198), (27856, 71, 6459), (27857, 71, 6604), (27858, 71, 6637), (27859, 71, 6905), (27860, 71, 7102), (27861, 71, 7466), (27862, 71, 7574), (27863, 71, 7815), (27864, 71, 7839), (27865, 71, 7877), (27866, 71, 7989), (27867, 71, 8093), (27868, 71, 8136), (27869, 71, 8159), (27870, 71, 8233), (27871, 71, 8285), (27872, 71, 8339), (27873, 71, 8358), (27874, 71, 8384), (27875, 71, 8462), (27876, 71, 8480), (27877, 71, 8497), (27878, 71, 8681), (27879, 71, 8796), (27880, 71, 8819), (27881, 71, 8982), (27882, 71, 9099), (27883, 71, 9212), (27884, 71, 9390), (27885, 71, 9439), (27886, 71, 9472), (27887, 71, 9483), (27888, 71, 9539), (27889, 71, 9631), (27890, 71, 9665), (27891, 71, 9675), (27892, 71, 9816), (27893, 71, 10053), (27894, 71, 10142), (27895, 71, 10283), (27896, 71, 10403), (27897, 71, 10534), (27898, 71, 10563), (27899, 71, 10601), (27900, 71, 10706), (27901, 71, 10845), (27902, 71, 10875), (27903, 71, 10912), (27904, 71, 11115), (27905, 71, 11164), (27906, 71, 11323), (27907, 71, 11428), (27908, 71, 11432), (27909, 71, 11448), (27910, 71, 11538), (27911, 71, 11588), (27912, 71, 11842), (27913, 71, 11863), (27914, 71, 11971), (27915, 71, 12008), (27916, 71, 12019), (27917, 71, 12210), (27918, 71, 12437), (27919, 71, 12586), (27920, 71, 12658), (27921, 71, 12708), (27922, 71, 12917), (27923, 71, 12943), (27924, 71, 13095), (27925, 71, 13119), (27926, 71, 13416), (27927, 71, 13489), (27928, 71, 13495), (27929, 71, 13500), (27930, 71, 13519), (27931, 71, 13558), (27932, 71, 13691), (27933, 71, 13695), (27934, 71, 13703), (27935, 71, 13742), (27936, 71, 13868), (27937, 71, 13893), (27938, 71, 13948), (27939, 71, 13966), (27940, 71, 14084), (27941, 71, 14099), (27942, 71, 14187), (27943, 71, 14194), (27944, 71, 14216), (27945, 71, 14301), (27946, 71, 14477), (27947, 71, 14502), (27948, 71, 14596), (27949, 71, 14653), (27950, 71, 14698), (27951, 71, 14827), (27952, 71, 14878), (27953, 71, 14904), (27954, 71, 14950), (27955, 71, 15036), (27956, 71, 15169), (27957, 71, 15244), (27958, 71, 15301), (27959, 71, 15375), (27960, 71, 15388), (27961, 71, 15413), (27962, 71, 15472), (27963, 71, 15491), (27964, 71, 15499), (27965, 71, 15523), (27966, 71, 15530), (27967, 71, 15603), (27968, 71, 15717), (27969, 71, 15752), (27970, 71, 15824), (27971, 71, 15886), (27972, 71, 15927), (27973, 71, 16162), (27974, 71, 16165), (27975, 71, 16255), (27976, 71, 16326), (27977, 71, 16365), (27978, 71, 16438), (27979, 71, 16442), (27980, 71, 16456), (27981, 71, 16468), (27982, 71, 16486), (27983, 71, 16561), (27984, 71, 16609), (27985, 71, 16617), (27986, 71, 16766), (27987, 71, 16770), (27988, 71, 16792), (27989, 71, 16824), (27990, 71, 16832), (27991, 71, 16926), (27992, 71, 17011), (27993, 71, 17051), (27994, 71, 17105), (27995, 71, 17123), (27996, 71, 17201), (27997, 71, 17257), (27998, 71, 17404), (27999, 71, 17549), (28000, 71, 17559), (28001, 71, 17567), (28002, 71, 17637), (28003, 71, 17789), (28004, 71, 17808), (28005, 71, 17829), (28006, 71, 17850), (28007, 71, 17885), (28008, 71, 17922), (28009, 71, 17927), (28010, 71, 17985), (28011, 71, 17987), (28012, 71, 18076), (28013, 71, 18163), (28014, 71, 18168), (28015, 71, 18212), (28016, 71, 18238), (28017, 71, 18244), (28018, 71, 18360), (28019, 71, 18459), (28020, 71, 18674), (28021, 71, 18682), (28022, 71, 18692), (28023, 71, 18711), (28024, 71, 18716), (28025, 71, 18788), (28026, 71, 18890), (28027, 71, 18922), (28028, 71, 18961), (28029, 71, 18967), (28030, 71, 19018), (28031, 71, 19259), (28032, 71, 19312), (28033, 71, 19417), (28034, 71, 19420), (28035, 71, 19527), (28036, 71, 19530), (28037, 71, 19547), (28038, 71, 19616), (28039, 71, 19630), (28040, 71, 19695), (28041, 71, 19704), (28042, 71, 19745), (28043, 71, 19748), (28044, 71, 19754), (28045, 71, 19789), (28046, 71, 19876), (28047, 71, 20030), (28048, 71, 20046), (28049, 71, 20081), (28050, 71, 20122), (28051, 71, 20145), (28052, 71, 20151), (28053, 71, 20159), (28054, 71, 20194), (28055, 71, 20232), (28056, 71, 20276), (28057, 71, 20309), (28058, 71, 20342), (28059, 71, 20410), (28060, 71, 20468), (28061, 71, 20491), (28062, 71, 20631), (28063, 71, 20731), (28064, 71, 20986), (28065, 71, 21153), (28066, 71, 21168), (28067, 71, 21212), (28068, 71, 21621), (28069, 71, 21685), (28070, 71, 21931), (28071, 71, 22691), (28072, 71, 22750), (28073, 71, 22936), (28074, 71, 23309), (28075, 71, 23422), (28076, 71, 23426), (28077, 71, 23692), (28078, 71, 24722), (28079, 71, 24986), (28080, 71, 25004), (28081, 71, 25030), (28082, 71, 25064), (28083, 71, 25065), (28084, 71, 25106), (28085, 71, 25124), (28086, 71, 25199), (28331, 72, 293), (28332, 72, 410), (28333, 72, 665), (28334, 72, 1622), (28335, 72, 2185), (28336, 72, 2255), (28337, 72, 3607), (28338, 72, 4096), (28339, 72, 4262), (28340, 72, 4991), (28341, 72, 5340), (28342, 72, 5400), (28343, 72, 5895), (28344, 72, 6942), (28345, 72, 7053), (28346, 72, 7169), (28347, 72, 7300), (28348, 72, 7793), (28349, 72, 7971), (28350, 72, 8038), (28351, 72, 8049), (28352, 72, 8052), (28353, 72, 8633), (28354, 72, 9052), (28355, 72, 9142), (28356, 72, 9283), (28357, 72, 9446), (28358, 72, 9484), (28359, 72, 9716), (28360, 72, 9754), (28361, 72, 9938), (28362, 72, 10490), (28363, 72, 10967), (28364, 72, 11643), (28365, 72, 12123), (28366, 72, 12162), (28367, 72, 12338), (28368, 72, 12570), (28369, 72, 12925), (28370, 72, 13187), (28371, 72, 13236), (28372, 72, 13439), (28373, 72, 13618), (28374, 72, 14148), (28375, 72, 14190), (28376, 72, 14407), (28377, 72, 14544), (28378, 72, 14680), (28379, 72, 14806), (28380, 72, 14954), (28381, 72, 14981), (28382, 72, 15215), (28383, 72, 15564), (28384, 72, 16013), (28385, 72, 16221), (28386, 72, 16481), (28387, 72, 16506), (28388, 72, 17036), (28389, 72, 17244), (28390, 72, 17368), (28391, 72, 17487), (28392, 72, 17678), (28393, 72, 17884), (28394, 72, 17935), (28395, 72, 18262), (28396, 72, 18437), (28397, 72, 18751), (28398, 72, 18754), (28399, 72, 19272), (28400, 72, 19680), (28401, 72, 19857), (28402, 72, 19930), (28403, 72, 20165), (28404, 72, 20232), (28405, 72, 20880), (28406, 72, 21384), (28407, 72, 23171), (28458, 73, 709), (28459, 73, 863), (28460, 73, 1021), (28461, 73, 1210), (28462, 73, 1821), (28463, 73, 2429), (28464, 73, 2751), (28465, 73, 2974), (28466, 73, 3216), (28467, 73, 3494), (28468, 73, 3810), (28469, 73, 3848), (28470, 73, 4112), (28471, 73, 4246), (28472, 73, 4431), (28473, 73, 5892), (28474, 73, 6082), (28475, 73, 6283), (28476, 73, 6583), (28477, 73, 6584), (28478, 73, 6872), (28479, 73, 7053), (28480, 73, 7102), (28481, 73, 7129), (28482, 73, 7190), (28483, 73, 7502), (28484, 73, 7556), (28485, 73, 7653), (28486, 73, 7710), (28487, 73, 7765), (28488, 73, 8062), (28489, 73, 8231), (28490, 73, 8289), (28491, 73, 8787), (28492, 73, 8828), (28493, 73, 8880), (28494, 73, 8895), (28495, 73, 8988), (28496, 73, 9028), (28497, 73, 9067), (28498, 73, 9208), (28499, 73, 9212), (28500, 73, 9483), (28501, 73, 9689), (28502, 73, 9961), (28503, 73, 10033), (28504, 73, 10204), (28505, 73, 10227), (28506, 73, 10234), (28507, 73, 10344), (28508, 73, 10388), (28509, 73, 10404), (28510, 73, 10567), (28511, 73, 10622), (28512, 73, 10750), (28513, 73, 10755), (28514, 73, 10788), (28515, 73, 10875), (28516, 73, 10957), (28517, 73, 11097), (28518, 73, 11149), (28519, 73, 11152), (28520, 73, 11275), (28521, 73, 11333), (28522, 73, 11539), (28523, 73, 11638), (28524, 73, 11774), (28525, 73, 11995), (28526, 73, 12106), (28527, 73, 12228), (28528, 73, 12265), (28529, 73, 12304), (28530, 73, 12338), (28531, 73, 12544), (28532, 73, 12784), (28533, 73, 12891), (28534, 73, 13098), (28535, 73, 13161), (28536, 73, 13296), (28537, 73, 13326), (28538, 73, 13426), (28539, 73, 13571), (28540, 73, 13761), (28541, 73, 13977), (28542, 73, 14301), (28543, 73, 14316), (28544, 73, 14392), (28545, 73, 14710), (28546, 73, 14729), (28547, 73, 14732), (28548, 73, 14830), (28549, 73, 14832), (28550, 73, 14955), (28551, 73, 15083), (28552, 73, 15127), (28553, 73, 15433), (28554, 73, 15439), (28555, 73, 15440), (28556, 73, 15507), (28557, 73, 15762), (28558, 73, 15861), (28559, 73, 15896), (28560, 73, 15944), (28561, 73, 16033), (28562, 73, 16047), (28563, 73, 16535), (28564, 73, 16647), (28565, 73, 16684), (28566, 73, 16836), (28567, 73, 17068), (28568, 73, 17340), (28569, 73, 17447), (28570, 73, 17487), (28571, 73, 17550), (28572, 73, 17594), (28573, 73, 17626), (28574, 73, 17708), (28575, 73, 17999), (28576, 73, 18212), (28577, 73, 18261), (28578, 73, 18304), (28579, 73, 18391), (28580, 73, 18403), (28581, 73, 19247), (28582, 73, 19253), (28583, 73, 19360), (28584, 73, 19682), (28585, 73, 19918), (28586, 73, 19988), (28587, 73, 20028), (28588, 73, 20343), (28589, 73, 20650), (28590, 73, 20849), (28591, 73, 21052), (28592, 73, 21130), (28593, 73, 21364), (28594, 73, 21484), (28595, 73, 21616), (28596, 73, 22454), (28713, 74, 293), (28714, 74, 344), (28715, 74, 592), (28716, 74, 959), (28717, 74, 1064), (28718, 74, 1180), (28719, 74, 1629), (28720, 74, 2795), (28721, 74, 2870), (28722, 74, 3250), (28723, 74, 3277), (28724, 74, 3748), (28725, 74, 3764), (28726, 74, 3943), (28727, 74, 4485), (28728, 74, 5087), (28729, 74, 5233), (28730, 74, 5355), (28731, 74, 5675), (28732, 74, 5689), (28733, 74, 5796), (28734, 74, 6065), (28735, 74, 6085), (28736, 74, 6237), (28737, 74, 6250), (28738, 74, 6519), (28739, 74, 6584), (28740, 74, 6751), (28741, 74, 7096), (28742, 74, 7108), (28743, 74, 7663), (28744, 74, 7680), (28745, 74, 7765), (28746, 74, 7776), (28747, 74, 8038), (28748, 74, 8171), (28749, 74, 8289), (28750, 74, 8344), (28751, 74, 8731), (28752, 74, 9067), (28753, 74, 9168), (28754, 74, 9226), (28755, 74, 9491), (28756, 74, 9759), (28757, 74, 9878), (28758, 74, 9935), (28759, 74, 10232), (28760, 74, 10344), (28761, 74, 10396), (28762, 74, 10424), (28763, 74, 10537), (28764, 74, 10619), (28765, 74, 10620), (28766, 74, 10642), (28767, 74, 10990), (28768, 74, 11053), (28769, 74, 11583), (28770, 74, 12068), (28771, 74, 12084), (28772, 74, 12144), (28773, 74, 12377), (28774, 74, 12686), (28775, 74, 12753), (28776, 74, 12839), (28777, 74, 12925), (28778, 74, 12944), (28779, 74, 13294), (28780, 74, 13361), (28781, 74, 13916), (28782, 74, 14172), (28783, 74, 14264), (28784, 74, 14844), (28785, 74, 15145), (28786, 74, 15253), (28787, 74, 15339), (28788, 74, 15410), (28789, 74, 15602), (28790, 74, 15831), (28791, 74, 16238), (28792, 74, 16246), (28793, 74, 16373), (28794, 74, 16381), (28795, 74, 16740), (28796, 74, 17122), (28797, 74, 17244), (28798, 74, 17368), (28799, 74, 17405), (28800, 74, 17550), (28801, 74, 17678), (28802, 74, 17708), (28803, 74, 17885), (28804, 74, 18035), (28805, 74, 18262), (28806, 74, 18430), (28807, 74, 18435), (28808, 74, 18751), (28809, 74, 19112), (28810, 74, 19224), (28811, 74, 19247), (28812, 74, 19542), (28813, 74, 19684), (28814, 74, 19746), (28815, 74, 19988), (28816, 74, 20643), (28817, 74, 20758), (28818, 74, 20869), (28819, 74, 22519), (28820, 74, 23004), (28821, 74, 23097), (28822, 74, 24931), (28840, 75, 260), (28841, 75, 331), (28842, 75, 425), (28843, 75, 481), (28844, 75, 541), (28845, 75, 562), (28846, 75, 583), (28847, 75, 592), (28848, 75, 604), (28849, 75, 709), (28850, 75, 717), (28851, 75, 802), (28852, 75, 815), (28853, 75, 848), (28854, 75, 863), (28855, 75, 890), (28856, 75, 894), (28857, 75, 1064), (28858, 75, 1071), (28859, 75, 1132), (28860, 75, 1143), (28861, 75, 1210), (28862, 75, 1232), (28863, 75, 1234), (28864, 75, 1370), (28865, 75, 1477), (28866, 75, 1629), (28867, 75, 1741), (28868, 75, 1821), (28869, 75, 1936), (28870, 75, 2007), (28871, 75, 2071), (28872, 75, 2176), (28873, 75, 2418), (28874, 75, 2473), (28875, 75, 2487), (28876, 75, 2617), (28877, 75, 2621), (28878, 75, 2675), (28879, 75, 2744), (28880, 75, 2862), (28881, 75, 2923), (28882, 75, 3072), (28883, 75, 3133), (28884, 75, 3161), (28885, 75, 3216), (28886, 75, 3545), (28887, 75, 3570), (28888, 75, 3625), (28889, 75, 3675), (28890, 75, 3789), (28891, 75, 3848), (28892, 75, 3882), (28893, 75, 3909), (28894, 75, 3929), (28895, 75, 4112), (28896, 75, 4164), (28897, 75, 4255), (28898, 75, 4320), (28899, 75, 4357), (28900, 75, 4431), (28901, 75, 4445), (28902, 75, 4484), (28903, 75, 4555), (28904, 75, 4725), (28905, 75, 4783), (28906, 75, 5020), (28907, 75, 5063), (28908, 75, 5177), (28909, 75, 5184), (28910, 75, 5307), (28911, 75, 5326), (28912, 75, 5347), (28913, 75, 5355), (28914, 75, 5535), (28915, 75, 5600), (28916, 75, 5900), (28917, 75, 5934), (28918, 75, 5971), (28919, 75, 6009), (28920, 75, 6085), (28921, 75, 6130), (28922, 75, 6347), (28923, 75, 6491), (28924, 75, 6583), (28925, 75, 6604), (28926, 75, 6639), (28927, 75, 6691), (28928, 75, 6771), (28929, 75, 6814), (28930, 75, 6977), (28931, 75, 7012), (28932, 75, 7053), (28933, 75, 7102), (28934, 75, 7108), (28935, 75, 7113), (28936, 75, 7126), (28937, 75, 7141), (28938, 75, 7146), (28939, 75, 7230), (28940, 75, 7234), (28941, 75, 7256), (28942, 75, 7334), (28943, 75, 7337), (28944, 75, 7343), (28945, 75, 7502), (28946, 75, 7541), (28947, 75, 7572), (28948, 75, 7646), (28949, 75, 7653), (28950, 75, 7734), (28951, 75, 7744), (28952, 75, 7765), (28953, 75, 7784), (28954, 75, 7893), (28955, 75, 7985), (28956, 75, 8038), (28957, 75, 8051), (28958, 75, 8062), (28959, 75, 8083), (28960, 75, 8109), (28961, 75, 8124), (28962, 75, 8129), (28963, 75, 8138), (28964, 75, 8159), (28965, 75, 8178), (28966, 75, 8253), (28967, 75, 8457), (28968, 75, 8538), (28969, 75, 8583), (28970, 75, 8705), (28971, 75, 8766), (28972, 75, 8790), (28973, 75, 8813), (28974, 75, 8988), (28975, 75, 9098), (28976, 75, 9209), (28977, 75, 9322), (28978, 75, 9381), (28979, 75, 9483), (28980, 75, 9533), (28981, 75, 9560), (28982, 75, 9604), (28983, 75, 9719), (28984, 75, 9748), (28985, 75, 9806), (28986, 75, 9820), (28987, 75, 9871), (28988, 75, 9899), (28989, 75, 9935), (28990, 75, 9966), (28991, 75, 10033), (28992, 75, 10045), (28993, 75, 10079), (28994, 75, 10093), (28995, 75, 10113), (28996, 75, 10120), (28997, 75, 10150), (28998, 75, 10264), (28999, 75, 10313), (29000, 75, 10357), (29001, 75, 10441), (29002, 75, 10537), (29003, 75, 10567), (29004, 75, 10568), (29005, 75, 10609), (29006, 75, 10719), (29007, 75, 10728), (29008, 75, 10739), (29009, 75, 10750), (29010, 75, 10755), (29011, 75, 10793), (29012, 75, 10875), (29013, 75, 10897), (29014, 75, 10922), (29015, 75, 10982), (29016, 75, 11018), (29017, 75, 11070), (29018, 75, 11097), (29019, 75, 11149), (29020, 75, 11243), (29021, 75, 11317), (29022, 75, 11330), (29023, 75, 11344), (29024, 75, 11429), (29025, 75, 11444), (29026, 75, 11465), (29027, 75, 11617), (29028, 75, 11665), (29029, 75, 11724), (29030, 75, 11729), (29031, 75, 11746), (29032, 75, 11761), (29033, 75, 11765), (29034, 75, 11807), (29035, 75, 11834), (29036, 75, 11903), (29037, 75, 12011), (29038, 75, 12015), (29039, 75, 12106), (29040, 75, 12107), (29041, 75, 12137), (29042, 75, 12220), (29043, 75, 12228), (29044, 75, 12234), (29045, 75, 12288), (29046, 75, 12296), (29047, 75, 12316), (29048, 75, 12324), (29049, 75, 12360), (29050, 75, 12402), (29051, 75, 12500), (29052, 75, 12609), (29053, 75, 12673), (29054, 75, 12726), (29055, 75, 12733), (29056, 75, 12753), (29057, 75, 12778), (29058, 75, 12786), (29059, 75, 12811), (29060, 75, 12831), (29061, 75, 12837), (29062, 75, 12854), (29063, 75, 12891), (29064, 75, 12931), (29065, 75, 12975), (29066, 75, 12979), (29067, 75, 12984), (29068, 75, 12990), (29069, 75, 12992), (29070, 75, 13098), (29071, 75, 13115), (29072, 75, 13186), (29073, 75, 13187), (29074, 75, 13234), (29075, 75, 13297), (29076, 75, 13361), (29077, 75, 13436), (29078, 75, 13437), (29079, 75, 13502), (29080, 75, 13584), (29081, 75, 13626), (29082, 75, 13703), (29083, 75, 13721), (29084, 75, 13749), (29085, 75, 13802), (29086, 75, 13803), (29087, 75, 13852), (29088, 75, 13893), (29089, 75, 13917), (29090, 75, 14043), (29091, 75, 14071), (29092, 75, 14148), (29093, 75, 14160), (29094, 75, 14163), (29095, 75, 14194), (29096, 75, 14279), (29097, 75, 14301), (29098, 75, 14317), (29099, 75, 14391), (29100, 75, 14396), (29101, 75, 14448), (29102, 75, 14465), (29103, 75, 14610), (29104, 75, 14621), (29105, 75, 14640), (29106, 75, 14705), (29107, 75, 14727), (29108, 75, 14729), (29109, 75, 14774), (29110, 75, 14811), (29111, 75, 14955), (29112, 75, 15014), (29113, 75, 15016), (29114, 75, 15025), (29115, 75, 15070), (29116, 75, 15085), (29117, 75, 15092), (29118, 75, 15127), (29119, 75, 15170), (29120, 75, 15206), (29121, 75, 15234), (29122, 75, 15253), (29123, 75, 15299), (29124, 75, 15340), (29125, 75, 15372), (29126, 75, 15433), (29127, 75, 15506), (29128, 75, 15515), (29129, 75, 15516), (29130, 75, 15538), (29131, 75, 15727), (29132, 75, 15760), (29133, 75, 15792), (29134, 75, 15794), (29135, 75, 15834), (29136, 75, 15861), (29137, 75, 15864), (29138, 75, 15949), (29139, 75, 16118), (29140, 75, 16184), (29141, 75, 16213), (29142, 75, 16267), (29143, 75, 16288), (29144, 75, 16330), (29145, 75, 16338), (29146, 75, 16367), (29147, 75, 16381), (29148, 75, 16391), (29149, 75, 16408), (29150, 75, 16412), (29151, 75, 16524), (29152, 75, 16525), (29153, 75, 16664), (29154, 75, 16690), (29155, 75, 16695), (29156, 75, 16748), (29157, 75, 16830), (29158, 75, 16875), (29159, 75, 16910), (29160, 75, 16960), (29161, 75, 17036), (29162, 75, 17055), (29163, 75, 17078), (29164, 75, 17091), (29165, 75, 17123), (29166, 75, 17245), (29167, 75, 17340), (29168, 75, 17405), (29169, 75, 17498), (29170, 75, 17559), (29171, 75, 17623), (29172, 75, 17663), (29173, 75, 17802), (29174, 75, 17824), (29175, 75, 17991), (29176, 75, 18075), (29177, 75, 18123), (29178, 75, 18169), (29179, 75, 18170), (29180, 75, 18171), (29181, 75, 18212), (29182, 75, 18227), (29183, 75, 18253), (29184, 75, 18263), (29185, 75, 18278), (29186, 75, 18305), (29187, 75, 18329), (29188, 75, 18367), (29189, 75, 18391), (29190, 75, 18403), (29191, 75, 18435), (29192, 75, 18487), (29193, 75, 18795), (29194, 75, 18924), (29195, 75, 18974), (29196, 75, 18975), (29197, 75, 19077), (29198, 75, 19114), (29199, 75, 19154), (29200, 75, 19227), (29201, 75, 19251), (29202, 75, 19264), (29203, 75, 19284), (29204, 75, 19307), (29205, 75, 19358), (29206, 75, 19432), (29207, 75, 19433), (29208, 75, 19542), (29209, 75, 19684), (29210, 75, 19746), (29211, 75, 19752), (29212, 75, 19791), (29213, 75, 19806), (29214, 75, 19824), (29215, 75, 19930), (29216, 75, 19986), (29217, 75, 20024), (29218, 75, 20093), (29219, 75, 20149), (29220, 75, 20159), (29221, 75, 20232), (29222, 75, 20251), (29223, 75, 20284), (29224, 75, 20326), (29225, 75, 20643), (29226, 75, 20650), (29227, 75, 20758), (29228, 75, 20761), (29229, 75, 20816), (29230, 75, 20818), (29231, 75, 20819), (29232, 75, 20826), (29233, 75, 20872), (29234, 75, 20880), (29235, 75, 20933), (29236, 75, 20988), (29237, 75, 20997), (29238, 75, 21088), (29239, 75, 21129), (29240, 75, 21130), (29241, 75, 21301), (29242, 75, 21384), (29243, 75, 21397), (29244, 75, 21484), (29245, 75, 21655), (29246, 75, 21707), (29247, 75, 21950), (29248, 75, 21998), (29249, 75, 22096), (29250, 75, 22160), (29251, 75, 22161), (29252, 75, 22164), (29253, 75, 22454), (29254, 75, 22511), (29255, 75, 22695), (29256, 75, 22714), (29257, 75, 22739), (29258, 75, 22743), (29259, 75, 22843), (29260, 75, 23060), (29261, 75, 23274), (29262, 75, 23275), (29263, 75, 23290), (29264, 75, 24864), (29265, 75, 24933), (29266, 75, 25063), (29267, 75, 25069), (29268, 75, 25092), (29269, 75, 25108), (29270, 75, 25210), (29351, 76, 313), (29352, 76, 709), (29353, 76, 1051), (29354, 76, 1210), (29355, 76, 1221), (29356, 76, 1336), (29357, 76, 1713), (29358, 76, 1903), (29359, 76, 1976), (29360, 76, 2255), (29361, 76, 2365), (29362, 76, 3162), (29363, 76, 3882), (29364, 76, 4262), (29365, 76, 4265), (29366, 76, 4278), (29367, 76, 4731), (29368, 76, 4991), (29369, 76, 5382), (29370, 76, 5390), (29371, 76, 5400), (29372, 76, 5774), (29373, 76, 6181), (29374, 76, 6209), (29375, 76, 6283), (29376, 76, 6617), (29377, 76, 7300), (29378, 76, 8450), (29379, 76, 8633), (29380, 76, 8958), (29381, 76, 9052), (29382, 76, 9208), (29383, 76, 9754), (29384, 76, 9820), (29385, 76, 10137), (29386, 76, 10447), (29387, 76, 10967), (29388, 76, 11344), (29389, 76, 11489), (29390, 76, 11539), (29391, 76, 11643), (29392, 76, 11841), (29393, 76, 11896), (29394, 76, 12029), (29395, 76, 12449), (29396, 76, 12544), (29397, 76, 12569), (29398, 76, 12839), (29399, 76, 12925), (29400, 76, 12990), (29401, 76, 13098), (29402, 76, 13558), (29403, 76, 13571), (29404, 76, 13852), (29405, 76, 14004), (29406, 76, 14058), (29407, 76, 14148), (29408, 76, 14161), (29409, 76, 14544), (29410, 76, 14729), (29411, 76, 14954), (29412, 76, 15070), (29413, 76, 15439), (29414, 76, 15506), (29415, 76, 15861), (29416, 76, 15896), (29417, 76, 16279), (29418, 76, 16571), (29419, 76, 17036), (29420, 76, 18023), (29421, 76, 18302), (29422, 76, 18329), (29423, 76, 19116), (29424, 76, 19213), (29425, 76, 19432), (29426, 76, 19529), (29427, 76, 19930), (29428, 76, 19988), (29429, 76, 20598), (29430, 76, 20826), (29431, 76, 20885), (29432, 76, 20927), (29433, 76, 21020), (29434, 76, 21152), (29435, 76, 21189), (29436, 76, 23108), (29478, 77, 136), (29479, 77, 293), (29480, 77, 344), (29481, 77, 410), (29482, 77, 498), (29483, 77, 592), (29484, 77, 669), (29485, 77, 709), (29486, 77, 802), (29487, 77, 863), (29488, 77, 982), (29489, 77, 1007), (29490, 77, 1021), (29491, 77, 1064), (29492, 77, 1216), (29493, 77, 1549), (29494, 77, 1588), (29495, 77, 1610), (29496, 77, 1620), (29497, 77, 1622), (29498, 77, 1627), (29499, 77, 1629), (29500, 77, 1821), (29501, 77, 2007), (29502, 77, 2079), (29503, 77, 2158), (29504, 77, 2176), (29505, 77, 2185), (29506, 77, 2255), (29507, 77, 2487), (29508, 77, 2493), (29509, 77, 2744), (29510, 77, 2776), (29511, 77, 2795), (29512, 77, 2870), (29513, 77, 2876), (29514, 77, 2878), (29515, 77, 2926), (29516, 77, 2936), (29517, 77, 2939), (29518, 77, 2974), (29519, 77, 3067), (29520, 77, 3530), (29521, 77, 3789), (29522, 77, 3848), (29523, 77, 4063), (29524, 77, 4168), (29525, 77, 4246), (29526, 77, 4262), (29527, 77, 4392), (29528, 77, 4431), (29529, 77, 4514), (29530, 77, 4657), (29531, 77, 4783), (29532, 77, 4827), (29533, 77, 4991), (29534, 77, 5007), (29535, 77, 5056), (29536, 77, 5087), (29537, 77, 5355), (29538, 77, 5370), (29539, 77, 5400), (29540, 77, 5798), (29541, 77, 5846), (29542, 77, 5908), (29543, 77, 6001), (29544, 77, 6082), (29545, 77, 6204), (29546, 77, 6414), (29547, 77, 6489), (29548, 77, 6583), (29549, 77, 6584), (29550, 77, 6618), (29551, 77, 6798), (29552, 77, 6807), (29553, 77, 6820), (29554, 77, 7043), (29555, 77, 7102), (29556, 77, 7129), (29557, 77, 7169), (29558, 77, 7189), (29559, 77, 7190), (29560, 77, 7300), (29561, 77, 7327), (29562, 77, 7343), (29563, 77, 7407), (29564, 77, 7421), (29565, 77, 7556), (29566, 77, 7653), (29567, 77, 7710), (29568, 77, 7765), (29569, 77, 7803), (29570, 77, 7822), (29571, 77, 7867), (29572, 77, 7883), (29573, 77, 8062), (29574, 77, 8069), (29575, 77, 8081), (29576, 77, 8124), (29577, 77, 8207), (29578, 77, 8231), (29579, 77, 8235), (29580, 77, 8293), (29581, 77, 8755), (29582, 77, 8828), (29583, 77, 8831), (29584, 77, 8880), (29585, 77, 8910), (29586, 77, 8988), (29587, 77, 9052), (29588, 77, 9073), (29589, 77, 9141), (29590, 77, 9208), (29591, 77, 9212), (29592, 77, 9330), (29593, 77, 9398), (29594, 77, 9483), (29595, 77, 9507), (29596, 77, 9689), (29597, 77, 9759), (29598, 77, 9841), (29599, 77, 9878), (29600, 77, 9935), (29601, 77, 9961), (29602, 77, 10093), (29603, 77, 10172), (29604, 77, 10192), (29605, 77, 10204), (29606, 77, 10232), (29607, 77, 10234), (29608, 77, 10344), (29609, 77, 10404), (29610, 77, 10423), (29611, 77, 10441), (29612, 77, 10511), (29613, 77, 10620), (29614, 77, 10750), (29615, 77, 10755), (29616, 77, 10770), (29617, 77, 10788), (29618, 77, 10897), (29619, 77, 10909), (29620, 77, 10912), (29621, 77, 10957), (29622, 77, 10967), (29623, 77, 11097), (29624, 77, 11145), (29625, 77, 11149), (29626, 77, 11152), (29627, 77, 11224), (29628, 77, 11275), (29629, 77, 11471), (29630, 77, 11638), (29631, 77, 11643), (29632, 77, 11746), (29633, 77, 11774), (29634, 77, 11817), (29635, 77, 11925), (29636, 77, 12011), (29637, 77, 12068), (29638, 77, 12099), (29639, 77, 12106), (29640, 77, 12123), (29641, 77, 12228), (29642, 77, 12234), (29643, 77, 12265), (29644, 77, 12286), (29645, 77, 12296), (29646, 77, 12304), (29647, 77, 12310), (29648, 77, 12313), (29649, 77, 12338), (29650, 77, 12418), (29651, 77, 12513), (29652, 77, 12569), (29653, 77, 12570), (29654, 77, 12654), (29655, 77, 12720), (29656, 77, 12726), (29657, 77, 12784), (29658, 77, 12787), (29659, 77, 12809), (29660, 77, 12891), (29661, 77, 12925), (29662, 77, 12931), (29663, 77, 12984), (29664, 77, 12988), (29665, 77, 13065), (29666, 77, 13098), (29667, 77, 13134), (29668, 77, 13161), (29669, 77, 13186), (29670, 77, 13187), (29671, 77, 13236), (29672, 77, 13294), (29673, 77, 13296), (29674, 77, 13297), (29675, 77, 13326), (29676, 77, 13426), (29677, 77, 13436), (29678, 77, 13618), (29679, 77, 13674), (29680, 77, 13687), (29681, 77, 13749), (29682, 77, 13768), (29683, 77, 13803), (29684, 77, 13977), (29685, 77, 13984), (29686, 77, 14020), (29687, 77, 14058), (29688, 77, 14160), (29689, 77, 14190), (29690, 77, 14226), (29691, 77, 14316), (29692, 77, 14317), (29693, 77, 14327), (29694, 77, 14344), (29695, 77, 14396), (29696, 77, 14407), (29697, 77, 14514), (29698, 77, 14676), (29699, 77, 14710), (29700, 77, 14732), (29701, 77, 14752), (29702, 77, 14832), (29703, 77, 14852), (29704, 77, 14930), (29705, 77, 14955), (29706, 77, 15007), (29707, 77, 15014), (29708, 77, 15083), (29709, 77, 15127), (29710, 77, 15234), (29711, 77, 15253), (29712, 77, 15310), (29713, 77, 15372), (29714, 77, 15410), (29715, 77, 15433), (29716, 77, 15474), (29717, 77, 15507), (29718, 77, 15571), (29719, 77, 15595), (29720, 77, 15602), (29721, 77, 15830), (29722, 77, 15944), (29723, 77, 16033), (29724, 77, 16049), (29725, 77, 16126); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (29726, 77, 16146), (29727, 77, 16228), (29728, 77, 16391), (29729, 77, 16416), (29730, 77, 16430), (29731, 77, 16535), (29732, 77, 16611), (29733, 77, 16643), (29734, 77, 16645), (29735, 77, 16647), (29736, 77, 16684), (29737, 77, 16748), (29738, 77, 16800), (29739, 77, 16826), (29740, 77, 16835), (29741, 77, 16836), (29742, 77, 16858), (29743, 77, 16883), (29744, 77, 16933), (29745, 77, 16956), (29746, 77, 16979), (29747, 77, 16996), (29748, 77, 17031), (29749, 77, 17078), (29750, 77, 17123), (29751, 77, 17244), (29752, 77, 17368), (29753, 77, 17405), (29754, 77, 17447), (29755, 77, 17487), (29756, 77, 17490), (29757, 77, 17663), (29758, 77, 17678), (29759, 77, 17708), (29760, 77, 17755), (29761, 77, 17832), (29762, 77, 17892), (29763, 77, 17999), (29764, 77, 18035), (29765, 77, 18212), (29766, 77, 18261), (29767, 77, 18265), (29768, 77, 18527), (29769, 77, 18749), (29770, 77, 18750), (29771, 77, 18754), (29772, 77, 19112), (29773, 77, 19154), (29774, 77, 19181), (29775, 77, 19244), (29776, 77, 19253), (29777, 77, 19263), (29778, 77, 19272), (29779, 77, 19432), (29780, 77, 19491), (29781, 77, 19566), (29782, 77, 19681), (29783, 77, 19682), (29784, 77, 19745), (29785, 77, 19824), (29786, 77, 19857), (29787, 77, 19875), (29788, 77, 19918), (29789, 77, 19927), (29790, 77, 20028), (29791, 77, 20119), (29792, 77, 20291), (29793, 77, 20413), (29794, 77, 20818), (29795, 77, 21020), (29796, 77, 21130), (29797, 77, 21152), (29798, 77, 21341), (29799, 77, 21364), (29800, 77, 22011), (29801, 77, 22040), (29802, 77, 22084), (29803, 77, 22160), (29804, 77, 22519), (29805, 77, 23171), (29806, 77, 23275), (29807, 77, 23951), (29808, 77, 24488), (29809, 77, 25069), (29810, 77, 25108), (29811, 77, 25210), (29989, 78, 213), (29990, 78, 327), (29991, 78, 372), (29992, 78, 989), (29993, 78, 1136), (29994, 78, 1420), (29995, 78, 2423), (29996, 78, 2745), (29997, 78, 2768), (29998, 78, 3247), (29999, 78, 3534), (30000, 78, 3885), (30001, 78, 5586), (30002, 78, 6138), (30003, 78, 6491), (30004, 78, 9165), (30005, 78, 9334), (30006, 78, 9455), (30007, 78, 9579), (30008, 78, 9733), (30009, 78, 9927), (30010, 78, 10434), (30011, 78, 10809), (30012, 78, 10845), (30013, 78, 10970), (30014, 78, 11115), (30015, 78, 12025), (30016, 78, 12693), (30017, 78, 14617), (30018, 78, 14703), (30019, 78, 14823), (30020, 78, 15230), (30021, 78, 15611), (30022, 78, 15894), (30023, 78, 16536), (30024, 78, 16617), (30025, 78, 16960), (30026, 78, 16962), (30027, 78, 17918), (30028, 78, 18471), (30029, 78, 19419), (30030, 78, 20948), (30031, 78, 21053), (30032, 78, 21226), (30033, 78, 22748), (30034, 78, 23972), (30052, 79, 260), (30053, 79, 481), (30054, 79, 583), (30055, 79, 604), (30056, 79, 717), (30057, 79, 815), (30058, 79, 890), (30059, 79, 1071), (30060, 79, 1132), (30061, 79, 1143), (30062, 79, 1210), (30063, 79, 1232), (30064, 79, 1234), (30065, 79, 2007), (30066, 79, 2071), (30067, 79, 2176), (30068, 79, 2418), (30069, 79, 2621), (30070, 79, 3072), (30071, 79, 3216), (30072, 79, 3570), (30073, 79, 3625), (30074, 79, 4112), (30075, 79, 4555), (30076, 79, 5020), (30077, 79, 5063), (30078, 79, 5177), (30079, 79, 5355), (30080, 79, 5600), (30081, 79, 5971), (30082, 79, 6009), (30083, 79, 6130), (30084, 79, 7141), (30085, 79, 7230), (30086, 79, 7541), (30087, 79, 8109), (30088, 79, 8138), (30089, 79, 8178), (30090, 79, 8253), (30091, 79, 8705), (30092, 79, 8813), (30093, 79, 9899), (30094, 79, 10113), (30095, 79, 10357), (30096, 79, 11429), (30097, 79, 11834), (30098, 79, 12288), (30099, 79, 12324), (30100, 79, 12500), (30101, 79, 12753), (30102, 79, 12786), (30103, 79, 12992), (30104, 79, 13115), (30105, 79, 13234), (30106, 79, 13626), (30107, 79, 13703), (30108, 79, 13749), (30109, 79, 14391), (30110, 79, 14448), (30111, 79, 14705), (30112, 79, 14727), (30113, 79, 14811), (30114, 79, 15016), (30115, 79, 15025), (30116, 79, 15085), (30117, 79, 15170), (30118, 79, 15206), (30119, 79, 15253), (30120, 79, 15433), (30121, 79, 15538), (30122, 79, 15727), (30123, 79, 15760), (30124, 79, 15794), (30125, 79, 15834), (30126, 79, 15864), (30127, 79, 16118), (30128, 79, 16184), (30129, 79, 16267), (30130, 79, 16330), (30131, 79, 16524), (30132, 79, 16525), (30133, 79, 16695), (30134, 79, 16830), (30135, 79, 17055), (30136, 79, 17498), (30137, 79, 17559), (30138, 79, 18170), (30139, 79, 18227), (30140, 79, 18263), (30141, 79, 18278), (30142, 79, 18487), (30143, 79, 18795), (30144, 79, 18924), (30145, 79, 18974), (30146, 79, 18975), (30147, 79, 20159), (30148, 79, 20251), (30149, 79, 20761), (30150, 79, 20872), (30151, 79, 20988), (30152, 79, 20997), (30153, 79, 21129), (30154, 79, 21130), (30155, 79, 21707), (30156, 79, 21950), (30157, 79, 21998), (30158, 79, 22161), (30159, 79, 22511), (30160, 79, 22739), (30161, 79, 22843), (30162, 79, 23274), (30163, 79, 23275), (30164, 79, 25063), (30165, 79, 25092), (30166, 79, 25210), (30179, 80, 146), (30180, 80, 287), (30181, 80, 413), (30182, 80, 440), (30183, 80, 448), (30184, 80, 545), (30185, 80, 567), (30186, 80, 577), (30187, 80, 604), (30188, 80, 822), (30189, 80, 890), (30190, 80, 953), (30191, 80, 1114), (30192, 80, 1132), (30193, 80, 1235), (30194, 80, 1413), (30195, 80, 1881), (30196, 80, 1940), (30197, 80, 1970), (30198, 80, 2066), (30199, 80, 2222), (30200, 80, 2243), (30201, 80, 2391), (30202, 80, 2487), (30203, 80, 2557), (30204, 80, 2694), (30205, 80, 3570), (30206, 80, 3625), (30207, 80, 3667), (30208, 80, 3867), (30209, 80, 3885), (30210, 80, 3929), (30211, 80, 4104), (30212, 80, 4184), (30213, 80, 4623), (30214, 80, 4744), (30215, 80, 4839), (30216, 80, 4936), (30217, 80, 4998), (30218, 80, 5196), (30219, 80, 5332), (30220, 80, 5347), (30221, 80, 5600), (30222, 80, 6119), (30223, 80, 6279), (30224, 80, 6347), (30225, 80, 6639), (30226, 80, 6775), (30227, 80, 6882), (30228, 80, 6919), (30229, 80, 6986), (30230, 80, 6989), (30231, 80, 7012), (30232, 80, 7230), (30233, 80, 7337), (30234, 80, 7356), (30235, 80, 7390), (30236, 80, 7407), (30237, 80, 7822), (30238, 80, 7895), (30239, 80, 8007), (30240, 80, 8109), (30241, 80, 8191), (30242, 80, 8510), (30243, 80, 8531), (30244, 80, 8583), (30245, 80, 8859), (30246, 80, 9061), (30247, 80, 9398), (30248, 80, 9734), (30249, 80, 9896), (30250, 80, 10045), (30251, 80, 10061), (30252, 80, 10351), (30253, 80, 10377), (30254, 80, 10897), (30255, 80, 10970), (30256, 80, 11018), (30257, 80, 11126), (30258, 80, 11333), (30259, 80, 11379), (30260, 80, 11548), (30261, 80, 11589), (30262, 80, 11617), (30263, 80, 11807), (30264, 80, 12057), (30265, 80, 12060), (30266, 80, 12134), (30267, 80, 12246), (30268, 80, 12288), (30269, 80, 12355), (30270, 80, 12413), (30271, 80, 12679), (30272, 80, 12700), (30273, 80, 12733), (30274, 80, 12743), (30275, 80, 12904), (30276, 80, 13133), (30277, 80, 13215), (30278, 80, 13239), (30279, 80, 13554), (30280, 80, 13626), (30281, 80, 13653), (30282, 80, 13837), (30283, 80, 13971), (30284, 80, 14012), (30285, 80, 14226), (30286, 80, 14398), (30287, 80, 14448), (30288, 80, 14590), (30289, 80, 14705), (30290, 80, 14854), (30291, 80, 14980), (30292, 80, 15035), (30293, 80, 15084), (30294, 80, 15266), (30295, 80, 15567), (30296, 80, 15611), (30297, 80, 15625), (30298, 80, 15790), (30299, 80, 15794), (30300, 80, 15834), (30301, 80, 16118), (30302, 80, 16184), (30303, 80, 16637), (30304, 80, 16830), (30305, 80, 17498), (30306, 80, 17888), (30307, 80, 17936), (30308, 80, 18227), (30309, 80, 18263), (30310, 80, 18556), (30311, 80, 18565), (30312, 80, 18575), (30313, 80, 19077), (30314, 80, 19264), (30315, 80, 19284), (30316, 80, 19469), (30317, 80, 19752), (30318, 80, 19931), (30319, 80, 20251), (30320, 80, 20782), (30321, 80, 20828), (30322, 80, 21055), (30323, 80, 21513), (30324, 80, 21656), (30325, 80, 21869), (30326, 80, 21924), (30327, 80, 22096), (30328, 80, 22345), (30329, 80, 22695), (30330, 80, 22764), (30331, 80, 22801), (30332, 80, 22843), (30434, 81, 121), (30435, 81, 136), (30436, 81, 180), (30437, 81, 217), (30438, 81, 274), (30439, 81, 284), (30440, 81, 487), (30441, 81, 540), (30442, 81, 550), (30443, 81, 564), (30444, 81, 568), (30445, 81, 846), (30446, 81, 848), (30447, 81, 936), (30448, 81, 1099), (30449, 81, 1168), (30450, 81, 1271), (30451, 81, 1351), (30452, 81, 1475), (30453, 81, 1809), (30454, 81, 1838), (30455, 81, 1963), (30456, 81, 2031), (30457, 81, 2078), (30458, 81, 2273), (30459, 81, 2398), (30460, 81, 2618), (30461, 81, 2622), (30462, 81, 2717), (30463, 81, 2897), (30464, 81, 3069), (30465, 81, 3075), (30466, 81, 3092), (30467, 81, 3098), (30468, 81, 3110), (30469, 81, 3220), (30470, 81, 3358), (30471, 81, 3520), (30472, 81, 3568), (30473, 81, 3671), (30474, 81, 3700), (30475, 81, 3749), (30476, 81, 3934), (30477, 81, 3988), (30478, 81, 4184), (30479, 81, 4643), (30480, 81, 4729), (30481, 81, 4850), (30482, 81, 5133), (30483, 81, 5422), (30484, 81, 5882), (30485, 81, 6347), (30486, 81, 6561), (30487, 81, 6645), (30488, 81, 6774), (30489, 81, 7150), (30490, 81, 7277), (30491, 81, 7310), (30492, 81, 7382), (30493, 81, 7397), (30494, 81, 7444), (30495, 81, 7451), (30496, 81, 7865), (30497, 81, 7921), (30498, 81, 8075), (30499, 81, 8087), (30500, 81, 8338), (30501, 81, 8549), (30502, 81, 8675), (30503, 81, 8909), (30504, 81, 9061), (30505, 81, 9199), (30506, 81, 9351), (30507, 81, 9397), (30508, 81, 9470), (30509, 81, 9585), (30510, 81, 9649), (30511, 81, 9888), (30512, 81, 10287), (30513, 81, 10451), (30514, 81, 10513), (30515, 81, 10576), (30516, 81, 10959), (30517, 81, 11083), (30518, 81, 11518), (30519, 81, 11548), (30520, 81, 11694), (30521, 81, 11807), (30522, 81, 11845), (30523, 81, 12145), (30524, 81, 12588), (30525, 81, 12679), (30526, 81, 12700), (30527, 81, 12744), (30528, 81, 12969), (30529, 81, 13015), (30530, 81, 13029), (30531, 81, 13221), (30532, 81, 13339), (30533, 81, 13891), (30534, 81, 14008), (30535, 81, 14114), (30536, 81, 14148), (30537, 81, 14199), (30538, 81, 14375), (30539, 81, 14465), (30540, 81, 15586), (30541, 81, 16076), (30542, 81, 16111), (30543, 81, 16118), (30544, 81, 16291), (30545, 81, 16794), (30546, 81, 16824), (30547, 81, 17012), (30548, 81, 17310), (30549, 81, 17513), (30550, 81, 17753), (30551, 81, 17868), (30552, 81, 17888), (30553, 81, 18045), (30554, 81, 18170), (30555, 81, 18487), (30556, 81, 18529), (30557, 81, 18556), (30558, 81, 18893), (30559, 81, 18910), (30560, 81, 19009), (30561, 81, 19104), (30562, 81, 19338), (30563, 81, 19503), (30564, 81, 19605), (30565, 81, 19903), (30566, 81, 19931), (30567, 81, 19946), (30568, 81, 20984), (30569, 81, 21626), (30570, 81, 21998), (30571, 81, 22010), (30572, 81, 22284), (30573, 81, 22780), (30574, 81, 22801), (30689, 83, 11066), (30690, 84, 1298), (30691, 84, 1309), (30692, 84, 1511), (30693, 84, 1641), (30694, 84, 2228), (30695, 84, 2269), (30696, 84, 2531), (30697, 84, 2628), (30698, 84, 2673), (30699, 84, 3125), (30700, 84, 3309), (30701, 84, 3327), (30702, 84, 3374), (30703, 84, 3777), (30704, 84, 3927), (30705, 84, 4065), (30706, 84, 4336), (30707, 84, 4513), (30708, 84, 4602), (30709, 84, 4605), (30710, 84, 4873), (30711, 84, 5025), (30712, 84, 5263), (30713, 84, 5343), (30714, 84, 5464), (30715, 84, 5478), (30716, 84, 5527), (30717, 84, 5897), (30718, 84, 6124), (30719, 84, 6336), (30720, 84, 6822), (30721, 84, 6899), (30722, 84, 6902), (30723, 84, 6911), (30724, 84, 6939), (30725, 84, 6955), (30726, 84, 6973), (30727, 84, 7242), (30728, 84, 7368), (30729, 84, 7601), (30730, 84, 7612), (30731, 84, 7631), (30732, 84, 7691), (30733, 84, 7731), (30734, 84, 7873), (30735, 84, 7887), (30736, 84, 7945), (30737, 84, 7995), (30738, 84, 8068), (30739, 84, 8440), (30740, 84, 8656), (30741, 84, 8830), (30742, 84, 9188), (30743, 84, 9227), (30744, 84, 9273), (30745, 84, 9345), (30746, 84, 9463), (30747, 84, 9490), (30748, 84, 9544), (30749, 84, 9576), (30750, 84, 9727), (30751, 84, 9781), (30752, 84, 10101), (30753, 84, 10190), (30754, 84, 10374), (30755, 84, 10390), (30756, 84, 10455), (30757, 84, 10594), (30758, 84, 10784), (30759, 84, 10974), (30760, 84, 11080), (30761, 84, 11085), (30762, 84, 11258), (30763, 84, 11274), (30764, 84, 11869), (30765, 84, 12069), (30766, 84, 12088), (30767, 84, 12159), (30768, 84, 12728), (30769, 84, 13158), (30770, 84, 13309), (30771, 84, 13481), (30772, 84, 13903), (30773, 84, 13965), (30774, 84, 14038), (30775, 84, 14110), (30776, 84, 14165), (30777, 84, 14638), (30778, 84, 14695), (30779, 84, 14839), (30780, 84, 14976), (30781, 84, 15032), (30782, 84, 15238), (30783, 84, 15316), (30784, 84, 15356), (30785, 84, 15400), (30786, 84, 15565), (30787, 84, 15983), (30788, 84, 16445), (30789, 84, 16586), (30790, 84, 16588), (30791, 84, 17023), (30792, 84, 17286), (30793, 84, 17304), (30794, 84, 18028), (30795, 84, 18188), (30796, 84, 18291), (30797, 84, 18531), (30798, 84, 18969), (30799, 84, 19053), (30800, 84, 19105), (30801, 84, 19302), (30802, 84, 19670), (30803, 84, 19790), (30804, 84, 20225), (30805, 84, 20353), (30806, 84, 20634), (30807, 84, 21201), (30808, 84, 21321), (30809, 84, 21514), (30810, 84, 21605), (30811, 84, 21789), (30812, 84, 21845), (30813, 84, 22085), (30814, 84, 22171), (30815, 84, 22186), (30816, 84, 22318), (30817, 84, 22430), (30818, 84, 22586), (30819, 84, 22909), (30820, 84, 23043), (30821, 84, 23150), (30822, 84, 23454), (30823, 84, 23734), (30824, 84, 23735), (30825, 84, 24593), (30826, 84, 24711), (30827, 84, 25157), (30828, 84, 25166), (30945, 85, 952), (30946, 85, 1932), (30947, 85, 2673), (30948, 85, 2934), (30949, 85, 3091), (30950, 85, 3125), (30951, 85, 3664), (30952, 85, 4180), (30953, 85, 4530), (30954, 85, 5139), (30955, 85, 5391), (30956, 85, 5710), (30957, 85, 5966), (30958, 85, 6359), (30959, 85, 6508), (30960, 85, 6775), (30961, 85, 6956), (30962, 85, 7111), (30963, 85, 7368), (30964, 85, 7369), (30965, 85, 7667), (30966, 85, 7887), (30967, 85, 7902), (30968, 85, 8402), (30969, 85, 8629), (30970, 85, 9136), (30971, 85, 10051), (30972, 85, 10055), (30973, 85, 10366), (30974, 85, 11258), (30975, 85, 11502), (30976, 85, 11614), (30977, 85, 12436), (30978, 85, 12493), (30979, 85, 13560), (30980, 85, 14251), (30981, 85, 14355), (30982, 85, 15300), (30983, 85, 18619), (30984, 85, 18803), (30985, 85, 19544), (30986, 85, 20198), (30987, 85, 20363), (30988, 85, 21289), (30989, 85, 21769), (30990, 85, 22171), (30991, 85, 22186), (30992, 85, 23454), (30993, 85, 23820), (31008, 86, 3022), (31009, 86, 3308), (31010, 86, 3631), (31011, 86, 4634), (31012, 86, 5391), (31013, 86, 6801), (31014, 86, 7369), (31015, 86, 7902), (31016, 86, 8629), (31017, 86, 10300), (31018, 86, 10366), (31019, 86, 12584), (31020, 86, 13505), (31021, 86, 14107), (31022, 86, 14355), (31023, 86, 14556), (31024, 86, 15892), (31025, 86, 17690), (31026, 86, 18803), (31027, 86, 20555), (31028, 86, 21769), (31029, 86, 23074), (31039, 87, 430), (31040, 87, 500), (31041, 87, 1241), (31042, 87, 2789), (31043, 87, 5139), (31044, 87, 5391), (31045, 87, 6956), (31046, 87, 7111), (31047, 87, 13774), (31048, 87, 14355), (31049, 87, 18292), (31050, 87, 22171), (31051, 87, 23454), (31054, 88, 442), (31055, 88, 523), (31056, 88, 537), (31057, 88, 570), (31058, 88, 772), (31059, 88, 810), (31060, 88, 881), (31061, 88, 1257), (31062, 88, 1268), (31063, 88, 1380), (31064, 88, 1388), (31065, 88, 1495), (31066, 88, 1510), (31067, 88, 1516), (31068, 88, 1535), (31069, 88, 1653), (31070, 88, 1684), (31071, 88, 1706), (31072, 88, 1796), (31073, 88, 1826), (31074, 88, 2006), (31075, 88, 2019), (31076, 88, 2102), (31077, 88, 2116), (31078, 88, 2262), (31079, 88, 2501), (31080, 88, 2541), (31081, 88, 2570), (31082, 88, 2749), (31083, 88, 3014), (31084, 88, 3044), (31085, 88, 3290), (31086, 88, 3465), (31087, 88, 3517), (31088, 88, 3676), (31089, 88, 3825), (31090, 88, 3948), (31091, 88, 4133), (31092, 88, 4208), (31093, 88, 4220), (31094, 88, 4253), (31095, 88, 4380), (31096, 88, 4608), (31097, 88, 4741), (31098, 88, 5103), (31099, 88, 5205), (31100, 88, 5387), (31101, 88, 5416), (31102, 88, 5678), (31103, 88, 5703), (31104, 88, 6136), (31105, 88, 6259), (31106, 88, 6289), (31107, 88, 6366), (31108, 88, 6499), (31109, 88, 6706), (31110, 88, 6758), (31111, 88, 6961), (31112, 88, 7006), (31113, 88, 7143), (31114, 88, 7152), (31115, 88, 7266), (31116, 88, 7481), (31117, 88, 7678), (31118, 88, 7730), (31119, 88, 7738), (31120, 88, 7767), (31121, 88, 8047), (31122, 88, 9246), (31123, 88, 9422), (31124, 88, 9494), (31125, 88, 9537), (31126, 88, 9548), (31127, 88, 10072), (31128, 88, 10253), (31129, 88, 10359), (31130, 88, 10409), (31131, 88, 11217), (31132, 88, 11267), (31133, 88, 11422), (31134, 88, 11442), (31135, 88, 11577), (31136, 88, 11592), (31137, 88, 12065), (31138, 88, 12444), (31139, 88, 12702), (31140, 88, 12800), (31141, 88, 12921), (31142, 88, 13139), (31143, 88, 13340), (31144, 88, 13719), (31145, 88, 13769), (31146, 88, 14191), (31147, 88, 14350), (31148, 88, 15166), (31149, 88, 15265), (31150, 88, 15268), (31151, 88, 15797), (31152, 88, 15982), (31153, 88, 16628), (31154, 88, 18065), (31155, 88, 18440), (31156, 88, 18609), (31157, 88, 19125), (31158, 88, 19576), (31159, 88, 20549), (31160, 88, 20812), (31161, 88, 21729), (31162, 88, 21917), (31163, 88, 22104), (31164, 88, 22164), (31165, 88, 22478), (31166, 88, 22700), (31167, 88, 23179), (31168, 88, 23288), (31169, 88, 24223), (31170, 88, 25051), (31171, 88, 25196), (31181, 89, 456), (31182, 89, 639), (31183, 89, 1623), (31184, 89, 1931), (31185, 89, 2006), (31186, 89, 3006), (31187, 89, 3044), (31188, 89, 3276), (31189, 89, 4577), (31190, 89, 4725), (31191, 89, 5103), (31192, 89, 5134), (31193, 89, 5516), (31194, 89, 5526), (31195, 89, 6921), (31196, 89, 6990), (31197, 89, 7137), (31198, 89, 7716), (31199, 89, 7748), (31200, 89, 8766), (31201, 89, 8909), (31202, 89, 9494), (31203, 89, 10070), (31204, 89, 10318), (31205, 89, 10682), (31206, 89, 11596), (31207, 89, 12305), (31208, 89, 12797), (31209, 89, 13914), (31210, 89, 14588), (31211, 89, 14714), (31212, 89, 18208), (31213, 89, 19576), (31214, 89, 20194), (31215, 89, 20812), (31216, 89, 20844), (31217, 89, 21734), (31218, 89, 22732), (31219, 89, 24653), (31244, 90, 247), (31245, 90, 369), (31246, 90, 394), (31247, 90, 554), (31248, 90, 619), (31249, 90, 691), (31250, 90, 710), (31251, 90, 796), (31252, 90, 799), (31253, 90, 1088), (31254, 90, 1141), (31255, 90, 1147), (31256, 90, 1272), (31257, 90, 1276), (31258, 90, 1303), (31259, 90, 1499), (31260, 90, 1523), (31261, 90, 1582), (31262, 90, 1644), (31263, 90, 1826), (31264, 90, 1893), (31265, 90, 2039), (31266, 90, 2246), (31267, 90, 2333), (31268, 90, 2655), (31269, 90, 2794), (31270, 90, 2861), (31271, 90, 2894), (31272, 90, 2999), (31273, 90, 3093), (31274, 90, 3186), (31275, 90, 3473), (31276, 90, 3474), (31277, 90, 3506), (31278, 90, 3526), (31279, 90, 3613), (31280, 90, 3689), (31281, 90, 3904), (31282, 90, 3911), (31283, 90, 3951), (31284, 90, 4111), (31285, 90, 4134), (31286, 90, 4702), (31287, 90, 4809), (31288, 90, 4883), (31289, 90, 5046), (31290, 90, 5133), (31291, 90, 5219), (31292, 90, 5243), (31293, 90, 5297), (31294, 90, 5388), (31295, 90, 5445), (31296, 90, 5483), (31297, 90, 5505), (31298, 90, 5594), (31299, 90, 5798), (31300, 90, 5910), (31301, 90, 5920), (31302, 90, 6257), (31303, 90, 6289), (31304, 90, 6449), (31305, 90, 6482), (31306, 90, 6681), (31307, 90, 6733), (31308, 90, 6992), (31309, 90, 7015), (31310, 90, 7119), (31311, 90, 7137), (31312, 90, 7152), (31313, 90, 7257), (31314, 90, 7272), (31315, 90, 7288), (31316, 90, 7715), (31317, 90, 7716), (31318, 90, 7862), (31319, 90, 8011), (31320, 90, 8123), (31321, 90, 8201), (31322, 90, 8426), (31323, 90, 8430), (31324, 90, 8479), (31325, 90, 8485), (31326, 90, 8567), (31327, 90, 8585), (31328, 90, 8632), (31329, 90, 8666), (31330, 90, 8829), (31331, 90, 9005), (31332, 90, 9101), (31333, 90, 9153), (31334, 90, 9241), (31335, 90, 9246), (31336, 90, 9374), (31337, 90, 9394), (31338, 90, 9403), (31339, 90, 9422), (31340, 90, 9479), (31341, 90, 9583), (31342, 90, 9605), (31343, 90, 9638), (31344, 90, 9667), (31345, 90, 9676), (31346, 90, 9840), (31347, 90, 10117), (31348, 90, 10146), (31349, 90, 10229), (31350, 90, 10267), (31351, 90, 10309), (31352, 90, 10316), (31353, 90, 10318), (31354, 90, 10326), (31355, 90, 10427), (31356, 90, 10654), (31357, 90, 10682), (31358, 90, 10771), (31359, 90, 10821), (31360, 90, 10842), (31361, 90, 10848), (31362, 90, 10880), (31363, 90, 10921), (31364, 90, 10976), (31365, 90, 11013), (31366, 90, 11225), (31367, 90, 11313), (31368, 90, 11338), (31369, 90, 11407), (31370, 90, 11461), (31371, 90, 11596), (31372, 90, 11691), (31373, 90, 11776), (31374, 90, 12155), (31375, 90, 12179), (31376, 90, 12214), (31377, 90, 12315), (31378, 90, 12319), (31379, 90, 12320), (31380, 90, 12371), (31381, 90, 12465), (31382, 90, 12523), (31383, 90, 12566), (31384, 90, 12627), (31385, 90, 12633), (31386, 90, 12648), (31387, 90, 12652), (31388, 90, 12656), (31389, 90, 12663), (31390, 90, 12800), (31391, 90, 12818), (31392, 90, 12833), (31393, 90, 12878), (31394, 90, 12919), (31395, 90, 12928), (31396, 90, 12949), (31397, 90, 13144), (31398, 90, 13222), (31399, 90, 13256), (31400, 90, 13340), (31401, 90, 13367), (31402, 90, 13447), (31403, 90, 13510), (31404, 90, 13578), (31405, 90, 13590), (31406, 90, 13599), (31407, 90, 13628), (31408, 90, 13634), (31409, 90, 13643), (31410, 90, 13699), (31411, 90, 13793), (31412, 90, 13922), (31413, 90, 13953), (31414, 90, 14011), (31415, 90, 14117), (31416, 90, 14119), (31417, 90, 14300), (31418, 90, 14337), (31419, 90, 14436), (31420, 90, 14809), (31421, 90, 14856), (31422, 90, 14871), (31423, 90, 15141), (31424, 90, 15220), (31425, 90, 15291), (31426, 90, 15401), (31427, 90, 15465), (31428, 90, 15670), (31429, 90, 15816), (31430, 90, 15825), (31431, 90, 15939), (31432, 90, 16066), (31433, 90, 16131), (31434, 90, 16360), (31435, 90, 16390), (31436, 90, 16395), (31437, 90, 16396), (31438, 90, 16434), (31439, 90, 16787), (31440, 90, 16906), (31441, 90, 16928), (31442, 90, 16951), (31443, 90, 16975), (31444, 90, 17202), (31445, 90, 17239), (31446, 90, 17481), (31447, 90, 17587), (31448, 90, 17599), (31449, 90, 17651), (31450, 90, 17775), (31451, 90, 18092), (31452, 90, 18244), (31453, 90, 18316), (31454, 90, 18342), (31455, 90, 18567), (31456, 90, 18740), (31457, 90, 18843), (31458, 90, 18878), (31459, 90, 18987), (31460, 90, 19008), (31461, 90, 19079), (31462, 90, 19107), (31463, 90, 19111), (31464, 90, 19122), (31465, 90, 19164), (31466, 90, 19191), (31467, 90, 19200), (31468, 90, 19225), (31469, 90, 19257), (31470, 90, 19412), (31471, 90, 19427), (31472, 90, 19467), (31473, 90, 19511), (31474, 90, 19519), (31475, 90, 19739), (31476, 90, 19941), (31477, 90, 20427), (31478, 90, 20510), (31479, 90, 20592), (31480, 90, 20907), (31481, 90, 21317), (31482, 90, 21342), (31483, 90, 21352), (31484, 90, 21374), (31485, 90, 21429), (31486, 90, 22048), (31487, 90, 22131), (31488, 90, 22138), (31489, 90, 22403), (31490, 90, 22428), (31491, 90, 22509), (31492, 90, 22527), (31493, 90, 22736), (31494, 90, 22743), (31495, 90, 23033), (31496, 90, 23065), (31497, 90, 23067), (31498, 90, 23118), (31499, 90, 23158), (31500, 90, 23169), (31501, 90, 23288), (31502, 90, 23514), (31503, 90, 23889), (31504, 90, 24037), (31505, 90, 24210), (31506, 90, 24606), (31507, 90, 24622), (31508, 90, 25048), (31509, 90, 25158), (31755, 91, 842), (31756, 91, 1107), (31757, 91, 1115), (31758, 91, 1540), (31759, 91, 1683), (31760, 91, 1744), (31761, 91, 1765), (31762, 91, 1826), (31763, 91, 1919), (31764, 91, 1931), (31765, 91, 2006), (31766, 91, 2065), (31767, 91, 2251), (31768, 91, 2372), (31769, 91, 2650), (31770, 91, 2758), (31771, 91, 2856), (31772, 91, 2861), (31773, 91, 3231), (31774, 91, 3253), (31775, 91, 3266), (31776, 91, 3873), (31777, 91, 4252), (31778, 91, 4325), (31779, 91, 4398), (31780, 91, 4572), (31781, 91, 4664), (31782, 91, 4797), (31783, 91, 5151), (31784, 91, 5243), (31785, 91, 5274), (31786, 91, 5374), (31787, 91, 5574), (31788, 91, 5691), (31789, 91, 6146), (31790, 91, 6538), (31791, 91, 6818), (31792, 91, 6852), (31793, 91, 7009), (31794, 91, 7201), (31795, 91, 7274), (31796, 91, 7282), (31797, 91, 7379), (31798, 91, 7467), (31799, 91, 7480), (31800, 91, 7533), (31801, 91, 7542), (31802, 91, 7668), (31803, 91, 8197), (31804, 91, 8590), (31805, 91, 8605), (31806, 91, 8723), (31807, 91, 8778), (31808, 91, 8920), (31809, 91, 8959), (31810, 91, 9146), (31811, 91, 9484), (31812, 91, 9681), (31813, 91, 10110), (31814, 91, 10618), (31815, 91, 10682), (31816, 91, 11016), (31817, 91, 11422), (31818, 91, 11449), (31819, 91, 11487), (31820, 91, 11587), (31821, 91, 11999), (31822, 91, 12122), (31823, 91, 12305), (31824, 91, 12444), (31825, 91, 12469), (31826, 91, 12478), (31827, 91, 12490), (31828, 91, 12895), (31829, 91, 13070), (31830, 91, 13077), (31831, 91, 13116), (31832, 91, 13691), (31833, 91, 13767), (31834, 91, 13799), (31835, 91, 13846), (31836, 91, 13914), (31837, 91, 14207), (31838, 91, 14770), (31839, 91, 14984), (31840, 91, 15110), (31841, 91, 15142), (31842, 91, 15420), (31843, 91, 15496), (31844, 91, 15649), (31845, 91, 15714), (31846, 91, 15788), (31847, 91, 15937), (31848, 91, 15978), (31849, 91, 16075), (31850, 91, 16319), (31851, 91, 16579), (31852, 91, 16976), (31853, 91, 17437), (31854, 91, 17651), (31855, 91, 17698), (31856, 91, 17716), (31857, 91, 17780), (31858, 91, 18208), (31859, 91, 18210), (31860, 91, 18254), (31861, 91, 18255), (31862, 91, 18407), (31863, 91, 19221), (31864, 91, 19236), (31865, 91, 19248), (31866, 91, 19514), (31867, 91, 19802), (31868, 91, 20194), (31869, 91, 20431), (31870, 91, 20535), (31871, 91, 20549), (31872, 91, 20672), (31873, 91, 20705), (31874, 91, 20862), (31875, 91, 21218), (31876, 91, 21317), (31877, 91, 21543), (31878, 91, 21917), (31879, 91, 21931), (31880, 91, 22150), (31881, 91, 22716), (31882, 91, 22828), (31883, 91, 22886), (31884, 91, 23082), (31885, 91, 23250), (31886, 91, 23901), (31887, 91, 24200), (31888, 91, 24622), (31889, 91, 24653), (31890, 91, 24654), (32010, 92, 1230), (32011, 92, 1818), (32012, 92, 2209), (32013, 92, 2458), (32014, 92, 2684), (32015, 92, 3866), (32016, 92, 4297), (32017, 92, 4322), (32018, 92, 6293), (32019, 92, 6426), (32020, 92, 6875), (32021, 92, 7114), (32022, 92, 7195), (32023, 92, 7347), (32024, 92, 7748), (32025, 92, 9101), (32026, 92, 9929), (32027, 92, 10668), (32028, 92, 12509), (32029, 92, 12545), (32030, 92, 12699), (32031, 92, 13460), (32032, 92, 14882), (32033, 92, 15112), (32034, 92, 15895), (32035, 92, 15931), (32036, 92, 16209), (32037, 92, 16463), (32038, 92, 17019), (32039, 92, 17163), (32040, 92, 17393), (32041, 92, 17463), (32042, 92, 19067), (32043, 92, 19254), (32044, 92, 20994), (32045, 92, 21353), (32046, 92, 23635), (32047, 92, 23712), (32048, 92, 24119), (32073, 93, 691), (32074, 93, 786), (32075, 93, 794), (32076, 93, 798), (32077, 93, 917), (32078, 93, 983), (32079, 93, 993), (32080, 93, 1207), (32081, 93, 1292), (32082, 93, 1303), (32083, 93, 1385), (32084, 93, 1433), (32085, 93, 1623), (32086, 93, 1818), (32087, 93, 1826), (32088, 93, 2132), (32089, 93, 2133), (32090, 93, 2171), (32091, 93, 2209), (32092, 93, 2425), (32093, 93, 2458), (32094, 93, 2655), (32095, 93, 2822), (32096, 93, 2826), (32097, 93, 2986), (32098, 93, 3076), (32099, 93, 3093), (32100, 93, 3266), (32101, 93, 3315), (32102, 93, 3331), (32103, 93, 3775), (32104, 93, 3916), (32105, 93, 4073), (32106, 93, 4211), (32107, 93, 4322), (32108, 93, 4361), (32109, 93, 4660), (32110, 93, 4678), (32111, 93, 4815), (32112, 93, 5205), (32113, 93, 5389), (32114, 93, 5574), (32115, 93, 5706), (32116, 93, 5853), (32117, 93, 5876), (32118, 93, 6293), (32119, 93, 6556), (32120, 93, 6571), (32121, 93, 6698), (32122, 93, 6781), (32123, 93, 6790), (32124, 93, 6802), (32125, 93, 6979), (32126, 93, 7195), (32127, 93, 7231), (32128, 93, 7684), (32129, 93, 7997), (32130, 93, 8014), (32131, 93, 8060), (32132, 93, 8156), (32133, 93, 8245), (32134, 93, 8804), (32135, 93, 8978), (32136, 93, 9101), (32137, 93, 9461), (32138, 93, 9666), (32139, 93, 9750), (32140, 93, 9761), (32141, 93, 9868), (32142, 93, 10156), (32143, 93, 10211), (32144, 93, 10244), (32145, 93, 10427), (32146, 93, 10515), (32147, 93, 10628), (32148, 93, 10899), (32149, 93, 11140), (32150, 93, 11318), (32151, 93, 11332), (32152, 93, 11487), (32153, 93, 11949), (32154, 93, 12356), (32155, 93, 12523), (32156, 93, 12545), (32157, 93, 12691), (32158, 93, 12699), (32159, 93, 12878), (32160, 93, 12919), (32161, 93, 13051), (32162, 93, 13061), (32163, 93, 13276), (32164, 93, 13493), (32165, 93, 13642), (32166, 93, 13643), (32167, 93, 13766), (32168, 93, 13780), (32169, 93, 13849), (32170, 93, 13974), (32171, 93, 14123), (32172, 93, 14240), (32173, 93, 14298), (32174, 93, 14312), (32175, 93, 14788), (32176, 93, 14894), (32177, 93, 15657), (32178, 93, 15895), (32179, 93, 15931), (32180, 93, 16361), (32181, 93, 16879), (32182, 93, 17017), (32183, 93, 17019), (32184, 93, 17400), (32185, 93, 17463), (32186, 93, 17901), (32187, 93, 18255), (32188, 93, 18915), (32189, 93, 19767), (32190, 93, 20510), (32191, 93, 20850), (32192, 93, 20994), (32193, 93, 21340), (32194, 93, 21353), (32195, 93, 22732), (32196, 93, 24119), (32197, 93, 25010), (32200, 94, 456), (32201, 94, 677), (32202, 94, 710), (32203, 94, 786), (32204, 94, 798), (32205, 94, 825), (32206, 94, 920), (32207, 94, 933), (32208, 94, 983), (32209, 94, 1088), (32210, 94, 1105), (32211, 94, 1124), (32212, 94, 1141), (32213, 94, 1145), (32214, 94, 1149), (32215, 94, 1230), (32216, 94, 1249), (32217, 94, 1250), (32218, 94, 1268), (32219, 94, 1317), (32220, 94, 1411), (32221, 94, 1433), (32222, 94, 1461), (32223, 94, 1473), (32224, 94, 1598), (32225, 94, 1644), (32226, 94, 1697), (32227, 94, 1818), (32228, 94, 1910), (32229, 94, 1943), (32230, 94, 1967), (32231, 94, 2132), (32232, 94, 2151), (32233, 94, 2179), (32234, 94, 2209), (32235, 94, 2250), (32236, 94, 2263), (32237, 94, 2299), (32238, 94, 2363), (32239, 94, 2410), (32240, 94, 2439), (32241, 94, 2458), (32242, 94, 2570), (32243, 94, 2589), (32244, 94, 2634), (32245, 94, 2684), (32246, 94, 2705), (32247, 94, 2758), (32248, 94, 2826), (32249, 94, 2868), (32250, 94, 3076), (32251, 94, 3088), (32252, 94, 3093), (32253, 94, 3231), (32254, 94, 3266), (32255, 94, 3286), (32256, 94, 3315), (32257, 94, 3345), (32258, 94, 3409), (32259, 94, 3474), (32260, 94, 3542), (32261, 94, 3695), (32262, 94, 3762), (32263, 94, 3826), (32264, 94, 3866), (32265, 94, 3916), (32266, 94, 3918), (32267, 94, 3924), (32268, 94, 4036), (32269, 94, 4073), (32270, 94, 4099), (32271, 94, 4195), (32272, 94, 4237), (32273, 94, 4297), (32274, 94, 4322), (32275, 94, 4387), (32276, 94, 4408), (32277, 94, 4447), (32278, 94, 4479), (32279, 94, 4619), (32280, 94, 4625), (32281, 94, 4659), (32282, 94, 4717), (32283, 94, 4737), (32284, 94, 4894), (32285, 94, 4919), (32286, 94, 5088), (32287, 94, 5204), (32288, 94, 5299), (32289, 94, 5441), (32290, 94, 5483), (32291, 94, 5516), (32292, 94, 5574), (32293, 94, 5578), (32294, 94, 5773), (32295, 94, 5853), (32296, 94, 5876), (32297, 94, 5961), (32298, 94, 6142), (32299, 94, 6293), (32300, 94, 6426), (32301, 94, 6457), (32302, 94, 6522), (32303, 94, 6677), (32304, 94, 6681), (32305, 94, 6727), (32306, 94, 6781), (32307, 94, 6818), (32308, 94, 6875), (32309, 94, 6928), (32310, 94, 6979), (32311, 94, 7078), (32312, 94, 7114), (32313, 94, 7144), (32314, 94, 7194), (32315, 94, 7195), (32316, 94, 7201), (32317, 94, 7237), (32318, 94, 7340), (32319, 94, 7347), (32320, 94, 7357), (32321, 94, 7436), (32322, 94, 7481), (32323, 94, 7491), (32324, 94, 7508), (32325, 94, 7542), (32326, 94, 7578), (32327, 94, 7661), (32328, 94, 7668), (32329, 94, 7748), (32330, 94, 7894), (32331, 94, 7901), (32332, 94, 7905), (32333, 94, 7916), (32334, 94, 7979), (32335, 94, 8050), (32336, 94, 8148), (32337, 94, 8245), (32338, 94, 8298), (32339, 94, 8375), (32340, 94, 8385), (32341, 94, 8412), (32342, 94, 8426), (32343, 94, 8430), (32344, 94, 8507), (32345, 94, 8591), (32346, 94, 8594), (32347, 94, 8605), (32348, 94, 8655), (32349, 94, 8681), (32350, 94, 8712), (32351, 94, 8733), (32352, 94, 8786), (32353, 94, 8839), (32354, 94, 8873), (32355, 94, 8920), (32356, 94, 8952), (32357, 94, 9101), (32358, 94, 9255), (32359, 94, 9400), (32360, 94, 9403), (32361, 94, 9413), (32362, 94, 9422), (32363, 94, 9447), (32364, 94, 9494), (32365, 94, 9508), (32366, 94, 9593), (32367, 94, 9638), (32368, 94, 9654), (32369, 94, 9829), (32370, 94, 9903), (32371, 94, 9929), (32372, 94, 10012), (32373, 94, 10048), (32374, 94, 10066), (32375, 94, 10156), (32376, 94, 10244), (32377, 94, 10261), (32378, 94, 10405), (32379, 94, 10427), (32380, 94, 10521), (32381, 94, 10628), (32382, 94, 10668), (32383, 94, 10759), (32384, 94, 10848), (32385, 94, 10880), (32386, 94, 10899), (32387, 94, 10904), (32388, 94, 11138), (32389, 94, 11140), (32390, 94, 11230), (32391, 94, 11235), (32392, 94, 11267), (32393, 94, 11286), (32394, 94, 11332), (32395, 94, 11370), (32396, 94, 11407), (32397, 94, 11421), (32398, 94, 11433), (32399, 94, 11449), (32400, 94, 11461), (32401, 94, 11474), (32402, 94, 11547), (32403, 94, 11567), (32404, 94, 11619), (32405, 94, 11637), (32406, 94, 11660), (32407, 94, 11716), (32408, 94, 11745), (32409, 94, 11780), (32410, 94, 11797), (32411, 94, 12095), (32412, 94, 12098), (32413, 94, 12177), (32414, 94, 12227), (32415, 94, 12344), (32416, 94, 12444), (32417, 94, 12478), (32418, 94, 12499), (32419, 94, 12509), (32420, 94, 12523), (32421, 94, 12545), (32422, 94, 12567), (32423, 94, 12653), (32424, 94, 12699), (32425, 94, 12783), (32426, 94, 12859), (32427, 94, 12870), (32428, 94, 12895), (32429, 94, 12919), (32430, 94, 12951), (32431, 94, 13037), (32432, 94, 13061), (32433, 94, 13276), (32434, 94, 13356), (32435, 94, 13372), (32436, 94, 13427), (32437, 94, 13446), (32438, 94, 13460), (32439, 94, 13482), (32440, 94, 13484), (32441, 94, 13573), (32442, 94, 13587), (32443, 94, 13680), (32444, 94, 13769), (32445, 94, 13849), (32446, 94, 13895), (32447, 94, 13974), (32448, 94, 13991), (32449, 94, 14123), (32450, 94, 14207), (32451, 94, 14312), (32452, 94, 14314), (32453, 94, 14378), (32454, 94, 14426), (32455, 94, 14592), (32456, 94, 14594), (32457, 94, 14618), (32458, 94, 14714), (32459, 94, 14724), (32460, 94, 14756), (32461, 94, 14857), (32462, 94, 14858), (32463, 94, 14882), (32464, 94, 14894), (32465, 94, 14909), (32466, 94, 14987), (32467, 94, 15102), (32468, 94, 15110), (32469, 94, 15112), (32470, 94, 15133), (32471, 94, 15398), (32472, 94, 15430), (32473, 94, 15657), (32474, 94, 15739), (32475, 94, 15829), (32476, 94, 15882), (32477, 94, 15895), (32478, 94, 15931), (32479, 94, 15937), (32480, 94, 16011), (32481, 94, 16029), (32482, 94, 16066), (32483, 94, 16075), (32484, 94, 16209), (32485, 94, 16253), (32486, 94, 16300), (32487, 94, 16348), (32488, 94, 16361), (32489, 94, 16396), (32490, 94, 16463), (32491, 94, 16475), (32492, 94, 16476), (32493, 94, 16515), (32494, 94, 16628), (32495, 94, 16765), (32496, 94, 16864), (32497, 94, 16879), (32498, 94, 16938), (32499, 94, 16951), (32500, 94, 17017), (32501, 94, 17019), (32502, 94, 17062), (32503, 94, 17163), (32504, 94, 17362), (32505, 94, 17393), (32506, 94, 17400), (32507, 94, 17463), (32508, 94, 17491), (32509, 94, 17519), (32510, 94, 17566), (32511, 94, 17599), (32512, 94, 17766), (32513, 94, 17901), (32514, 94, 17903), (32515, 94, 18066), (32516, 94, 18248), (32517, 94, 18255), (32518, 94, 18368), (32519, 94, 18385), (32520, 94, 18881), (32521, 94, 18908), (32522, 94, 18953), (32523, 94, 19067), (32524, 94, 19089), (32525, 94, 19127), (32526, 94, 19152), (32527, 94, 19193), (32528, 94, 19221), (32529, 94, 19254), (32530, 94, 19281), (32531, 94, 19321), (32532, 94, 19576), (32533, 94, 19754), (32534, 94, 19767), (32535, 94, 19941), (32536, 94, 19978), (32537, 94, 20073), (32538, 94, 20431), (32539, 94, 20456), (32540, 94, 20510), (32541, 94, 20535), (32542, 94, 20658), (32543, 94, 20705), (32544, 94, 20812), (32545, 94, 20844), (32546, 94, 20850), (32547, 94, 20994), (32548, 94, 21122), (32549, 94, 21340), (32550, 94, 21353), (32551, 94, 21386), (32552, 94, 21775), (32553, 94, 21807), (32554, 94, 22194), (32555, 94, 22207), (32556, 94, 22225), (32557, 94, 22420), (32558, 94, 22452), (32559, 94, 22573), (32560, 94, 22618), (32561, 94, 22733), (32562, 94, 22907), (32563, 94, 23082), (32564, 94, 23094), (32565, 94, 23169), (32566, 94, 23209), (32567, 94, 23468), (32568, 94, 23471), (32569, 94, 23474), (32570, 94, 23635), (32571, 94, 23712), (32572, 94, 23774), (32573, 94, 24107), (32574, 94, 24119), (32575, 94, 24429), (32576, 94, 25010), (32577, 94, 25051), (32578, 94, 25063), (32579, 94, 25216), (32580, 94, 25217), (32711, 95, 118), (32712, 95, 691), (32713, 95, 794), (32714, 95, 917), (32715, 95, 1207), (32716, 95, 1272), (32717, 95, 1292), (32718, 95, 1303), (32719, 95, 1385), (32720, 95, 1623), (32721, 95, 1765), (32722, 95, 1818), (32723, 95, 2065), (32724, 95, 2133), (32725, 95, 2209), (32726, 95, 2212), (32727, 95, 2425), (32728, 95, 2684), (32729, 95, 2822), (32730, 95, 2868), (32731, 95, 2986), (32732, 95, 3266), (32733, 95, 3331), (32734, 95, 3542), (32735, 95, 3718), (32736, 95, 3769), (32737, 95, 3775), (32738, 95, 4361), (32739, 95, 5441), (32740, 95, 5574), (32741, 95, 5691), (32742, 95, 5706), (32743, 95, 6556), (32744, 95, 6698), (32745, 95, 6790), (32746, 95, 7152), (32747, 95, 7195), (32748, 95, 7274), (32749, 95, 7347), (32750, 95, 7702), (32751, 95, 7856), (32752, 95, 7901), (32753, 95, 8060), (32754, 95, 8156), (32755, 95, 8594), (32756, 95, 8655), (32757, 95, 9461), (32758, 95, 9548), (32759, 95, 9666), (32760, 95, 9761), (32761, 95, 9829), (32762, 95, 9868), (32763, 95, 10072), (32764, 95, 10899), (32765, 95, 11140), (32766, 95, 11191), (32767, 95, 11259), (32768, 95, 11332), (32769, 95, 11461), (32770, 95, 11474), (32771, 95, 11797), (32772, 95, 11809), (32773, 95, 11949), (32774, 95, 12006), (32775, 95, 12256), (32776, 95, 12305), (32777, 95, 12499), (32778, 95, 12691), (32779, 95, 12870), (32780, 95, 12927), (32781, 95, 13116), (32782, 95, 13199), (32783, 95, 13493), (32784, 95, 13849), (32785, 95, 14298), (32786, 95, 14314), (32787, 95, 14378), (32788, 95, 14756), (32789, 95, 15398), (32790, 95, 15438), (32791, 95, 15787), (32792, 95, 15797), (32793, 95, 16040), (32794, 95, 16074), (32795, 95, 16361), (32796, 95, 16515), (32797, 95, 17041), (32798, 95, 17475), (32799, 95, 17519), (32800, 95, 18066), (32801, 95, 18208), (32802, 95, 18915), (32803, 95, 18970), (32804, 95, 19008), (32805, 95, 19193), (32806, 95, 19355), (32807, 95, 19912), (32808, 95, 20496), (32809, 95, 20549), (32810, 95, 20812), (32811, 95, 20844), (32812, 95, 21594), (32813, 95, 21734), (32814, 95, 21807), (32815, 95, 22225), (32816, 95, 22700), (32817, 95, 22732), (32818, 95, 23169), (32819, 95, 23179), (32820, 95, 23267), (32821, 95, 23474), (32822, 95, 24107), (32823, 95, 24653), (32838, 96, 710), (32839, 96, 920), (32840, 96, 933), (32841, 96, 1088), (32842, 96, 1124), (32843, 96, 1141), (32844, 96, 1145), (32845, 96, 1149), (32846, 96, 1249), (32847, 96, 1250), (32848, 96, 1268), (32849, 96, 1317), (32850, 96, 1411), (32851, 96, 1598), (32852, 96, 1910), (32853, 96, 1943), (32854, 96, 2299), (32855, 96, 2363), (32856, 96, 2439), (32857, 96, 2570), (32858, 96, 2589), (32859, 96, 2705), (32860, 96, 2868), (32861, 96, 3315), (32862, 96, 3409), (32863, 96, 3474), (32864, 96, 3542), (32865, 96, 3762), (32866, 96, 3826), (32867, 96, 3866), (32868, 96, 3918), (32869, 96, 3924), (32870, 96, 4036), (32871, 96, 4099), (32872, 96, 4387), (32873, 96, 4408), (32874, 96, 4447), (32875, 96, 4625), (32876, 96, 4659), (32877, 96, 4717), (32878, 96, 4894), (32879, 96, 5204), (32880, 96, 5441), (32881, 96, 5483), (32882, 96, 5516), (32883, 96, 5574), (32884, 96, 5773), (32885, 96, 5853), (32886, 96, 5876), (32887, 96, 6142), (32888, 96, 6293), (32889, 96, 6426), (32890, 96, 6457), (32891, 96, 6677), (32892, 96, 6781), (32893, 96, 6875), (32894, 96, 7078), (32895, 96, 7114), (32896, 96, 7144), (32897, 96, 7194), (32898, 96, 7347), (32899, 96, 7481), (32900, 96, 7491), (32901, 96, 7508), (32902, 96, 7542), (32903, 96, 7661), (32904, 96, 7905), (32905, 96, 7916), (32906, 96, 8375), (32907, 96, 8385), (32908, 96, 8412), (32909, 96, 8591), (32910, 96, 8594), (32911, 96, 8681), (32912, 96, 8712), (32913, 96, 8786), (32914, 96, 8839), (32915, 96, 9400), (32916, 96, 9403), (32917, 96, 9508), (32918, 96, 9593), (32919, 96, 9638), (32920, 96, 9903), (32921, 96, 10048), (32922, 96, 10244), (32923, 96, 10405), (32924, 96, 10427), (32925, 96, 10521), (32926, 96, 10628), (32927, 96, 10880), (32928, 96, 10904), (32929, 96, 11230), (32930, 96, 11235), (32931, 96, 11286), (32932, 96, 11370), (32933, 96, 11407), (32934, 96, 11547), (32935, 96, 11567), (32936, 96, 11619), (32937, 96, 11637), (32938, 96, 11745), (32939, 96, 11780), (32940, 96, 11797), (32941, 96, 12095), (32942, 96, 12098), (32943, 96, 12227), (32944, 96, 12344), (32945, 96, 12859), (32946, 96, 12919), (32947, 96, 12951), (32948, 96, 13037), (32949, 96, 13061), (32950, 96, 13276), (32951, 96, 13372), (32952, 96, 13427), (32953, 96, 13446), (32954, 96, 13482), (32955, 96, 13484), (32956, 96, 13573), (32957, 96, 13680), (32958, 96, 13849), (32959, 96, 13895), (32960, 96, 13974), (32961, 96, 14123), (32962, 96, 14378), (32963, 96, 14592), (32964, 96, 14714), (32965, 96, 14857), (32966, 96, 14882), (32967, 96, 14987), (32968, 96, 15133), (32969, 96, 15398), (32970, 96, 15657), (32971, 96, 15739), (32972, 96, 15829), (32973, 96, 16253), (32974, 96, 16300), (32975, 96, 16476), (32976, 96, 16515), (32977, 96, 16765), (32978, 96, 16864), (32979, 96, 16879), (32980, 96, 16938), (32981, 96, 16951), (32982, 96, 17019), (32983, 96, 17062), (32984, 96, 17362), (32985, 96, 17519), (32986, 96, 17566), (32987, 96, 17901), (32988, 96, 18953), (32989, 96, 19152), (32990, 96, 19221), (32991, 96, 19254), (32992, 96, 19281), (32993, 96, 19941), (32994, 96, 20073), (32995, 96, 20456), (32996, 96, 20705), (32997, 96, 20812), (32998, 96, 20850), (32999, 96, 21386), (33000, 96, 22207), (33001, 96, 22225), (33002, 96, 22452), (33003, 96, 22573), (33004, 96, 22733), (33005, 96, 23471), (33006, 96, 23712), (33007, 96, 23774), (33008, 96, 25010), (33009, 96, 25063), (33093, 97, 214), (33094, 97, 731), (33095, 97, 948), (33096, 97, 1268), (33097, 97, 1388), (33098, 97, 1749), (33099, 97, 1752), (33100, 97, 1767), (33101, 97, 2085), (33102, 97, 2112), (33103, 97, 2570), (33104, 97, 2642), (33105, 97, 2684), (33106, 97, 2749), (33107, 97, 2856), (33108, 97, 2902), (33109, 97, 2949), (33110, 97, 3076), (33111, 97, 3355), (33112, 97, 3574), (33113, 97, 3707), (33114, 97, 3792), (33115, 97, 4050), (33116, 97, 4205), (33117, 97, 4208), (33118, 97, 4448), (33119, 97, 4864), (33120, 97, 4906), (33121, 97, 5088), (33122, 97, 5387), (33123, 97, 5414), (33124, 97, 5645), (33125, 97, 6278), (33126, 97, 6499), (33127, 97, 6574), (33128, 97, 6675), (33129, 97, 6752), (33130, 97, 7030), (33131, 97, 7078), (33132, 97, 7299), (33133, 97, 7459), (33134, 97, 7644), (33135, 97, 7678), (33136, 97, 7760), (33137, 97, 7791), (33138, 97, 7891), (33139, 97, 7979), (33140, 97, 8016), (33141, 97, 8148), (33142, 97, 8154), (33143, 97, 8202), (33144, 97, 8300), (33145, 97, 8468), (33146, 97, 8590), (33147, 97, 8748), (33148, 97, 8816), (33149, 97, 9494), (33150, 97, 9640), (33151, 97, 9666), (33152, 97, 9667), (33153, 97, 10418), (33154, 97, 10593), (33155, 97, 10635), (33156, 97, 10808), (33157, 97, 10811), (33158, 97, 10932), (33159, 97, 10989), (33160, 97, 11125), (33161, 97, 11140), (33162, 97, 11407), (33163, 97, 11422), (33164, 97, 11582), (33165, 97, 11592), (33166, 97, 11686), (33167, 97, 11797), (33168, 97, 11897), (33169, 97, 11957), (33170, 97, 12082), (33171, 97, 12273), (33172, 97, 12562), (33173, 97, 12611), (33174, 97, 12625), (33175, 97, 12800), (33176, 97, 12981), (33177, 97, 13047), (33178, 97, 13139), (33179, 97, 13199), (33180, 97, 13212), (33181, 97, 13610), (33182, 97, 13769), (33183, 97, 13839), (33184, 97, 13846), (33185, 97, 14078), (33186, 97, 14350), (33187, 97, 14353), (33188, 97, 14867), (33189, 97, 15249), (33190, 97, 15383), (33191, 97, 15454), (33192, 97, 15578), (33193, 97, 15724), (33194, 97, 16029), (33195, 97, 16040), (33196, 97, 16264), (33197, 97, 16296), (33198, 97, 16860), (33199, 97, 17247), (33200, 97, 17660), (33201, 97, 18140), (33202, 97, 18311), (33203, 97, 18386), (33204, 97, 18510), (33205, 97, 18625), (33206, 97, 18626), (33207, 97, 18971), (33208, 97, 19074), (33209, 97, 20812), (33210, 97, 20894), (33211, 97, 21405), (33212, 97, 21594), (33213, 97, 22178), (33214, 97, 22226), (33215, 97, 23044), (33216, 97, 23443), (33217, 97, 23471), (33218, 97, 23730), (33220, 98, 1253), (33221, 98, 1388), (33222, 98, 1783), (33223, 98, 2856), (33224, 98, 3266), (33225, 98, 3506), (33226, 98, 3569), (33227, 98, 3792), (33228, 98, 4192), (33229, 98, 4252), (33230, 98, 4461), (33231, 98, 4719), (33232, 98, 4805), (33233, 98, 5356), (33234, 98, 5439), (33235, 98, 5495), (33236, 98, 5656), (33237, 98, 5866), (33238, 98, 6129), (33239, 98, 6278), (33240, 98, 6536), (33241, 98, 6979), (33242, 98, 7017), (33243, 98, 7450), (33244, 98, 7578), (33245, 98, 7807), (33246, 98, 7868), (33247, 98, 7891), (33248, 98, 7894), (33249, 98, 8050), (33250, 98, 8148), (33251, 98, 8197), (33252, 98, 8275), (33253, 98, 8507), (33254, 98, 8794), (33255, 98, 8987), (33256, 98, 9058), (33257, 98, 9116), (33258, 98, 9255), (33259, 98, 9317), (33260, 98, 9385), (33261, 98, 9412), (33262, 98, 9447), (33263, 98, 9448), (33264, 98, 9919), (33265, 98, 10012), (33266, 98, 10181), (33267, 98, 10210), (33268, 98, 10485), (33269, 98, 11140), (33270, 98, 11188), (33271, 98, 11267), (33272, 98, 11433), (33273, 98, 11700), (33274, 98, 12100), (33275, 98, 12105), (33276, 98, 12435), (33277, 98, 12478), (33278, 98, 12537), (33279, 98, 12567), (33280, 98, 12611), (33281, 98, 12674), (33282, 98, 13849), (33283, 98, 14312), (33284, 98, 14672), (33285, 98, 15102), (33286, 98, 15191), (33287, 98, 15452), (33288, 98, 15522), (33289, 98, 15889), (33290, 98, 15922), (33291, 98, 15937), (33292, 98, 16075), (33293, 98, 16090), (33294, 98, 16475), (33295, 98, 16636), (33296, 98, 17400), (33297, 98, 18066), (33298, 98, 18291), (33299, 98, 18672), (33300, 98, 18851), (33301, 98, 18881), (33302, 98, 18908), (33303, 98, 19029), (33304, 98, 19036), (33305, 98, 19830), (33306, 98, 19978), (33307, 98, 20579), (33308, 98, 20606), (33309, 98, 20850), (33310, 98, 21340), (33311, 98, 21417), (33312, 98, 21858), (33313, 98, 21974), (33314, 98, 22420), (33315, 98, 22618), (33316, 98, 23567), (33347, 99, 62), (33348, 99, 165), (33349, 99, 450), (33350, 99, 471), (33351, 99, 691), (33352, 99, 824), (33353, 99, 910), (33354, 99, 970), (33355, 99, 1031), (33356, 99, 1152), (33357, 99, 1214), (33358, 99, 1222), (33359, 99, 1294), (33360, 99, 1303), (33361, 99, 1612), (33362, 99, 2038), (33363, 99, 2169), (33364, 99, 2267), (33365, 99, 2442), (33366, 99, 2664), (33367, 99, 3081), (33368, 99, 3430), (33369, 99, 3610), (33370, 99, 3718), (33371, 99, 3724), (33372, 99, 3769), (33373, 99, 3820), (33374, 99, 4133), (33375, 99, 4142), (33376, 99, 4461), (33377, 99, 4931), (33378, 99, 5146), (33379, 99, 5205), (33380, 99, 5578), (33381, 99, 5733), (33382, 99, 6006), (33383, 99, 6301), (33384, 99, 6795), (33385, 99, 6975), (33386, 99, 7003), (33387, 99, 7038), (33388, 99, 7152), (33389, 99, 7802), (33390, 99, 8671), (33391, 99, 8681), (33392, 99, 8794), (33393, 99, 8904), (33394, 99, 8971), (33395, 99, 9394), (33396, 99, 9422), (33397, 99, 9536), (33398, 99, 9548), (33399, 99, 9798), (33400, 99, 9877), (33401, 99, 10855), (33402, 99, 10951), (33403, 99, 10976), (33404, 99, 11499), (33405, 99, 11689), (33406, 99, 11710), (33407, 99, 11766), (33408, 99, 11810), (33409, 99, 12462), (33410, 99, 12663), (33411, 99, 12927), (33412, 99, 13318), (33413, 99, 13468), (33414, 99, 13589), (33415, 99, 13783), (33416, 99, 14915), (33417, 99, 15081), (33418, 99, 15317), (33419, 99, 16662), (33420, 99, 18237), (33421, 99, 18339), (33422, 99, 18817), (33423, 99, 19118), (33424, 99, 19576), (33425, 99, 20865), (33426, 99, 21443), (33427, 99, 21482), (33428, 99, 22572), (33429, 99, 22700), (33430, 99, 24012), (33474, 100, 1230), (33475, 100, 1253), (33476, 100, 1473), (33477, 100, 1644), (33478, 100, 2250), (33479, 100, 2684), (33480, 100, 3088), (33481, 100, 3266), (33482, 100, 4479), (33483, 100, 5151), (33484, 100, 6522), (33485, 100, 6979), (33486, 100, 7578), (33487, 100, 7807), (33488, 100, 7894), (33489, 100, 8148), (33490, 100, 8298), (33491, 100, 8794), (33492, 100, 9929), (33493, 100, 10012), (33494, 100, 10668), (33495, 100, 11140), (33496, 100, 11433), (33497, 100, 12567), (33498, 100, 13587), (33499, 100, 13849), (33500, 100, 14312), (33501, 100, 14594), (33502, 100, 15102), (33503, 100, 16463), (33504, 100, 16475), (33505, 100, 17400), (33506, 100, 18881), (33507, 100, 18908), (33508, 100, 19830), (33509, 100, 20850), (33510, 100, 21340), (33511, 100, 22420), (33512, 100, 22618), (33537, 101, 4), (33538, 101, 10), (33539, 101, 22), (33540, 101, 23), (33541, 101, 25), (33542, 101, 28), (33543, 101, 45), (33544, 101, 51), (33545, 101, 53), (33546, 101, 80), (33547, 101, 86), (33548, 101, 95), (33549, 101, 96), (33550, 101, 115), (33551, 101, 130), (33552, 101, 153), (33553, 101, 156), (33554, 101, 171), (33555, 101, 178), (33556, 101, 189), (33557, 101, 210), (33558, 101, 219), (33559, 101, 226), (33560, 101, 241), (33561, 101, 246), (33562, 101, 252), (33563, 101, 274), (33564, 101, 275), (33565, 101, 281), (33566, 101, 288), (33567, 101, 298), (33568, 101, 305), (33569, 101, 310), (33570, 101, 314), (33571, 101, 319), (33572, 101, 338), (33573, 101, 339), (33574, 101, 345), (33575, 101, 353), (33576, 101, 370), (33577, 101, 391), (33578, 101, 395), (33579, 101, 399), (33580, 101, 404), (33581, 101, 417), (33582, 101, 419), (33583, 101, 427), (33584, 101, 433), (33585, 101, 436), (33586, 101, 463), (33587, 101, 574), (33588, 101, 578), (33589, 101, 662), (33590, 101, 672), (33591, 101, 718), (33592, 101, 736), (33593, 101, 741), (33594, 101, 782), (33595, 101, 880), (33596, 101, 889), (33597, 101, 915), (33598, 101, 916), (33599, 101, 945), (33600, 101, 953), (33601, 101, 964), (33602, 101, 966), (33603, 101, 969), (33604, 101, 988), (33605, 101, 1030), (33606, 101, 1061), (33607, 101, 1093), (33608, 101, 1101), (33609, 101, 1192), (33610, 101, 1247), (33611, 101, 1256), (33612, 101, 1301), (33613, 101, 1308), (33614, 101, 1350), (33615, 101, 1352), (33616, 101, 1356), (33617, 101, 1399), (33618, 101, 1418), (33619, 101, 1421), (33620, 101, 1432), (33621, 101, 1442), (33622, 101, 1443), (33623, 101, 1568), (33624, 101, 1602), (33625, 101, 1656), (33626, 101, 1704), (33627, 101, 1716), (33628, 101, 1722), (33629, 101, 1745), (33630, 101, 1815), (33631, 101, 1820), (33632, 101, 1857), (33633, 101, 1878), (33634, 101, 1975), (33635, 101, 1993), (33636, 101, 2020), (33637, 101, 2040), (33638, 101, 2089), (33639, 101, 2127), (33640, 101, 2135), (33641, 101, 2153), (33642, 101, 2182), (33643, 101, 2202), (33644, 101, 2208), (33645, 101, 2308), (33646, 101, 2427), (33647, 101, 2435), (33648, 101, 2465), (33649, 101, 2500), (33650, 101, 2502), (33651, 101, 2546), (33652, 101, 2566), (33653, 101, 2608), (33654, 101, 2614), (33655, 101, 2630), (33656, 101, 2658), (33657, 101, 2661), (33658, 101, 2671), (33659, 101, 2745), (33660, 101, 2759), (33661, 101, 2824), (33662, 101, 2838), (33663, 101, 2874), (33664, 101, 2927), (33665, 101, 2942), (33666, 101, 2943), (33667, 101, 2944), (33668, 101, 2977), (33669, 101, 2996), (33670, 101, 2998), (33671, 101, 3048), (33672, 101, 3167), (33673, 101, 3239), (33674, 101, 3294), (33675, 101, 3317), (33676, 101, 3364), (33677, 101, 3387), (33678, 101, 3390), (33679, 101, 3391), (33680, 101, 3407), (33681, 101, 3431), (33682, 101, 3515), (33683, 101, 3520), (33684, 101, 3549), (33685, 101, 3556), (33686, 101, 3558), (33687, 101, 3568), (33688, 101, 3581), (33689, 101, 3642), (33690, 101, 3644), (33691, 101, 3700), (33692, 101, 3714), (33693, 101, 3748), (33694, 101, 3771), (33695, 101, 3908), (33696, 101, 3934), (33697, 101, 3968), (33698, 101, 3998), (33699, 101, 4003), (33700, 101, 4090), (33701, 101, 4155), (33702, 101, 4157), (33703, 101, 4166), (33704, 101, 4184), (33705, 101, 4215), (33706, 101, 4317), (33707, 101, 4414), (33708, 101, 4448), (33709, 101, 4540), (33710, 101, 4627), (33711, 101, 4630), (33712, 101, 4642), (33713, 101, 4679), (33714, 101, 4729), (33715, 101, 4734), (33716, 101, 4736), (33717, 101, 4774), (33718, 101, 4824), (33719, 101, 4838), (33720, 101, 4920), (33721, 101, 5098), (33722, 101, 5107), (33723, 101, 5116), (33724, 101, 5146), (33725, 101, 5185), (33726, 101, 5242), (33727, 101, 5344), (33728, 101, 5422), (33729, 101, 5424), (33730, 101, 5447), (33731, 101, 5459), (33732, 101, 5497), (33733, 101, 5511), (33734, 101, 5531), (33735, 101, 5582), (33736, 101, 5634), (33737, 101, 5648), (33738, 101, 5657), (33739, 101, 5665), (33740, 101, 5676), (33741, 101, 5686), (33742, 101, 5697), (33743, 101, 5722), (33744, 101, 5835), (33745, 101, 5984), (33746, 101, 6086), (33747, 101, 6123), (33748, 101, 6144), (33749, 101, 6199), (33750, 101, 6215), (33751, 101, 6224), (33752, 101, 6229), (33753, 101, 6271), (33754, 101, 6322), (33755, 101, 6345), (33756, 101, 6365), (33757, 101, 6370), (33758, 101, 6423), (33759, 101, 6471), (33760, 101, 6498), (33761, 101, 6542), (33762, 101, 6567), (33763, 101, 6653), (33764, 101, 6694), (33765, 101, 6764), (33766, 101, 6837), (33767, 101, 6843), (33768, 101, 6856), (33769, 101, 6943), (33770, 101, 6960), (33771, 101, 6987), (33772, 101, 7019), (33773, 101, 7039), (33774, 101, 7097), (33775, 101, 7145), (33776, 101, 7147), (33777, 101, 7154), (33778, 101, 7181), (33779, 101, 7283), (33780, 101, 7391), (33781, 101, 7397), (33782, 101, 7449), (33783, 101, 7576), (33784, 101, 7689), (33785, 101, 7711), (33786, 101, 7735), (33787, 101, 7817), (33788, 101, 7847), (33789, 101, 7872), (33790, 101, 7907), (33791, 101, 7928), (33792, 101, 7929), (33793, 101, 7978), (33794, 101, 8057), (33795, 101, 8067), (33796, 101, 8112), (33797, 101, 8115), (33798, 101, 8137), (33799, 101, 8177), (33800, 101, 8210), (33801, 101, 8239), (33802, 101, 8262), (33803, 101, 8284), (33804, 101, 8356), (33805, 101, 8376), (33806, 101, 8524), (33807, 101, 8539), (33808, 101, 8626), (33809, 101, 8642), (33810, 101, 8675), (33811, 101, 8734), (33812, 101, 8750), (33813, 101, 8827), (33814, 101, 8963), (33815, 101, 9081), (33816, 101, 9189), (33817, 101, 9192), (33818, 101, 9293), (33819, 101, 9303), (33820, 101, 9351), (33821, 101, 9352), (33822, 101, 9418), (33823, 101, 9423), (33824, 101, 9472), (33825, 101, 9529), (33826, 101, 9572), (33827, 101, 9637), (33828, 101, 9673), (33829, 101, 9701), (33830, 101, 9705), (33831, 101, 9723), (33832, 101, 9758), (33833, 101, 9766), (33834, 101, 9769), (33835, 101, 9852), (33836, 101, 9861), (33837, 101, 9869), (33838, 101, 9892), (33839, 101, 9901), (33840, 101, 9966), (33841, 101, 9976), (33842, 101, 10031), (33843, 101, 10082), (33844, 101, 10098), (33845, 101, 10120), (33846, 101, 10195), (33847, 101, 10197), (33848, 101, 10220), (33849, 101, 10235), (33850, 101, 10245), (33851, 101, 10250), (33852, 101, 10278), (33853, 101, 10320), (33854, 101, 10383), (33855, 101, 10398), (33856, 101, 10451), (33857, 101, 10466), (33858, 101, 10472), (33859, 101, 10478), (33860, 101, 10550), (33861, 101, 10551), (33862, 101, 10585), (33863, 101, 10614), (33864, 101, 10621), (33865, 101, 10644), (33866, 101, 10694), (33867, 101, 10794), (33868, 101, 10806), (33869, 101, 11044), (33870, 101, 11056), (33871, 101, 11102), (33872, 101, 11134), (33873, 101, 11287), (33874, 101, 11290), (33875, 101, 11325), (33876, 101, 11345); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (33877, 101, 11383), (33878, 101, 11479), (33879, 101, 11550), (33880, 101, 11645), (33881, 101, 11679), (33882, 101, 11681), (33883, 101, 11718), (33884, 101, 11755), (33885, 101, 11770), (33886, 101, 11825), (33887, 101, 11832), (33888, 101, 11900), (33889, 101, 11998), (33890, 101, 12017), (33891, 101, 12070), (33892, 101, 12132), (33893, 101, 12197), (33894, 101, 12261), (33895, 101, 12282), (33896, 101, 12294), (33897, 101, 12335), (33898, 101, 12346), (33899, 101, 12360), (33900, 101, 12441), (33901, 101, 12461), (33902, 101, 12517), (33903, 101, 12533), (33904, 101, 12590), (33905, 101, 12618), (33906, 101, 12684), (33907, 101, 12695), (33908, 101, 12741), (33909, 101, 12759), (33910, 101, 12764), (33911, 101, 12838), (33912, 101, 12864), (33913, 101, 12897), (33914, 101, 12911), (33915, 101, 12912), (33916, 101, 13039), (33917, 101, 13048), (33918, 101, 13218), (33919, 101, 13232), (33920, 101, 13369), (33921, 101, 13473), (33922, 101, 13490), (33923, 101, 13507), (33924, 101, 13744), (33925, 101, 13791), (33926, 101, 13813), (33927, 101, 13848), (33928, 101, 13853), (33929, 101, 13876), (33930, 101, 13881), (33931, 101, 13937), (33932, 101, 13952), (33933, 101, 14088), (33934, 101, 14096), (33935, 101, 14131), (33936, 101, 14137), (33937, 101, 14166), (33938, 101, 14173), (33939, 101, 14213), (33940, 101, 14250), (33941, 101, 14265), (33942, 101, 14267), (33943, 101, 14293), (33944, 101, 14315), (33945, 101, 14339), (33946, 101, 14363), (33947, 101, 14366), (33948, 101, 14388), (33949, 101, 14410), (33950, 101, 14431), (33951, 101, 14452), (33952, 101, 14458), (33953, 101, 14465), (33954, 101, 14587), (33955, 101, 14607), (33956, 101, 14620), (33957, 101, 14644), (33958, 101, 14689), (33959, 101, 14723), (33960, 101, 14763), (33961, 101, 14775), (33962, 101, 14833), (33963, 101, 14861), (33964, 101, 14896), (33965, 101, 14919), (33966, 101, 14939), (33967, 101, 14945), (33968, 101, 14966), (33969, 101, 15120), (33970, 101, 15176), (33971, 101, 15201), (33972, 101, 15236), (33973, 101, 15259), (33974, 101, 15360), (33975, 101, 15638), (33976, 101, 15645), (33977, 101, 15677), (33978, 101, 15685), (33979, 101, 15715), (33980, 101, 15759), (33981, 101, 15761), (33982, 101, 15767), (33983, 101, 15779), (33984, 101, 15820), (33985, 101, 15822), (33986, 101, 15907), (33987, 101, 15909), (33988, 101, 16039), (33989, 101, 16043), (33990, 101, 16045), (33991, 101, 16048), (33992, 101, 16063), (33993, 101, 16068), (33994, 101, 16080), (33995, 101, 16153), (33996, 101, 16159), (33997, 101, 16172), (33998, 101, 16175), (33999, 101, 16184), (34000, 101, 16195), (34001, 101, 16229), (34002, 101, 16245), (34003, 101, 16291), (34004, 101, 16295), (34005, 101, 16316), (34006, 101, 16331), (34007, 101, 16345), (34008, 101, 16356), (34009, 101, 16522), (34010, 101, 16526), (34011, 101, 16543), (34012, 101, 16563), (34013, 101, 16803), (34014, 101, 16867), (34015, 101, 16873), (34016, 101, 16882), (34017, 101, 16893), (34018, 101, 16963), (34019, 101, 17037), (34020, 101, 17108), (34021, 101, 17268), (34022, 101, 17290), (34023, 101, 17360), (34024, 101, 17367), (34025, 101, 17408), (34026, 101, 17468), (34027, 101, 17474), (34028, 101, 17520), (34029, 101, 17619), (34030, 101, 17655), (34031, 101, 17664), (34032, 101, 17702), (34033, 101, 17721), (34034, 101, 17803), (34035, 101, 17824), (34036, 101, 17826), (34037, 101, 17830), (34038, 101, 17836), (34039, 101, 17868), (34040, 101, 17872), (34041, 101, 17887), (34042, 101, 17930), (34043, 101, 17940), (34044, 101, 17979), (34045, 101, 17981), (34046, 101, 17983), (34047, 101, 18005), (34048, 101, 18024), (34049, 101, 18125), (34050, 101, 18127), (34051, 101, 18143), (34052, 101, 18158), (34053, 101, 18166), (34054, 101, 18202), (34055, 101, 18252), (34056, 101, 18344), (34057, 101, 18408), (34058, 101, 18412), (34059, 101, 18432), (34060, 101, 18439), (34061, 101, 18490), (34062, 101, 18496), (34063, 101, 18512), (34064, 101, 18532), (34065, 101, 18553), (34066, 101, 18556), (34067, 101, 18644), (34068, 101, 18651), (34069, 101, 18695), (34070, 101, 18714), (34071, 101, 18725), (34072, 101, 18733), (34073, 101, 18758), (34074, 101, 18792), (34075, 101, 18841), (34076, 101, 18894), (34077, 101, 18903), (34078, 101, 18933), (34079, 101, 18968), (34080, 101, 19006), (34081, 101, 19009), (34082, 101, 19021), (34083, 101, 19041), (34084, 101, 19071), (34085, 101, 19134), (34086, 101, 19151), (34087, 101, 19182), (34088, 101, 19196), (34089, 101, 19206), (34090, 101, 19242), (34091, 101, 19264), (34092, 101, 19381), (34093, 101, 19440), (34094, 101, 19443), (34095, 101, 19450), (34096, 101, 19497), (34097, 101, 19503), (34098, 101, 19574), (34099, 101, 19577), (34100, 101, 19600), (34101, 101, 19631), (34102, 101, 19667), (34103, 101, 19725), (34104, 101, 19751), (34105, 101, 19865), (34106, 101, 19946), (34107, 101, 19991), (34108, 101, 20076), (34109, 101, 20090), (34110, 101, 20094), (34111, 101, 20192), (34112, 101, 20234), (34113, 101, 20289), (34114, 101, 20320), (34115, 101, 20345), (34116, 101, 20368), (34117, 101, 20389), (34118, 101, 20401), (34119, 101, 20438), (34120, 101, 20545), (34121, 101, 20557), (34122, 101, 20563), (34123, 101, 20577), (34124, 101, 20603), (34125, 101, 20753), (34126, 101, 20828), (34127, 101, 20873), (34128, 101, 21060), (34129, 101, 21075), (34130, 101, 21097), (34131, 101, 21104), (34132, 101, 21132), (34133, 101, 21250), (34134, 101, 21284), (34135, 101, 21285), (34136, 101, 21293), (34137, 101, 21554), (34138, 101, 21565), (34139, 101, 21629), (34140, 101, 21738), (34141, 101, 21849), (34142, 101, 21908), (34143, 101, 21912), (34144, 101, 21923), (34145, 101, 21988), (34146, 101, 22010), (34147, 101, 22219), (34148, 101, 22440), (34149, 101, 22507), (34150, 101, 22622), (34151, 101, 22666), (34152, 101, 22731), (34153, 101, 22735), (34154, 101, 22780), (34155, 101, 22834), (34156, 101, 22842), (34157, 101, 22851), (34158, 101, 22945), (34159, 101, 22948), (34160, 101, 23045), (34161, 101, 23175), (34162, 101, 23218), (34163, 101, 23220), (34164, 101, 23254), (34165, 101, 23387), (34166, 101, 23394), (34167, 101, 23615), (34168, 101, 23620), (34169, 101, 23728), (34170, 101, 23831), (34171, 101, 24041), (34172, 101, 24141), (34173, 101, 24159), (34174, 101, 24305), (34175, 101, 24316), (34176, 101, 24575), (34177, 101, 24610), (34178, 101, 24611), (34179, 101, 24650), (34180, 101, 24991), (34181, 101, 25031), (34182, 101, 25047), (34183, 101, 25107), (34184, 101, 25122), (34185, 101, 25207), (34560, 102, 44), (34561, 102, 68), (34562, 102, 127), (34563, 102, 132), (34564, 102, 254), (34565, 102, 335), (34566, 102, 372), (34567, 102, 425), (34568, 102, 988), (34569, 102, 995), (34570, 102, 1058), (34571, 102, 1181), (34572, 102, 1451), (34573, 102, 1691), (34574, 102, 1698), (34575, 102, 2225), (34576, 102, 2310), (34577, 102, 2472), (34578, 102, 2546), (34579, 102, 2786), (34580, 102, 2892), (34581, 102, 3071), (34582, 102, 3632), (34583, 102, 3806), (34584, 102, 3878), (34585, 102, 4086), (34586, 102, 4090), (34587, 102, 4190), (34588, 102, 4373), (34589, 102, 4807), (34590, 102, 5133), (34591, 102, 5305), (34592, 102, 5405), (34593, 102, 5426), (34594, 102, 5518), (34595, 102, 5586), (34596, 102, 5683), (34597, 102, 5715), (34598, 102, 5768), (34599, 102, 5927), (34600, 102, 5935), (34601, 102, 6141), (34602, 102, 6169), (34603, 102, 6383), (34604, 102, 6827), (34605, 102, 6998), (34606, 102, 7069), (34607, 102, 7109), (34608, 102, 7149), (34609, 102, 7328), (34610, 102, 7380), (34611, 102, 7398), (34612, 102, 7605), (34613, 102, 7615), (34614, 102, 7794), (34615, 102, 7828), (34616, 102, 7872), (34617, 102, 8035), (34618, 102, 8043), (34619, 102, 8057), (34620, 102, 8110), (34621, 102, 8121), (34622, 102, 8184), (34623, 102, 8326), (34624, 102, 8350), (34625, 102, 8442), (34626, 102, 8459), (34627, 102, 8476), (34628, 102, 8581), (34629, 102, 8731), (34630, 102, 8732), (34631, 102, 8799), (34632, 102, 8934), (34633, 102, 9048), (34634, 102, 9062), (34635, 102, 9080), (34636, 102, 9114), (34637, 102, 9156), (34638, 102, 9185), (34639, 102, 9190), (34640, 102, 9225), (34641, 102, 9274), (34642, 102, 9287), (34643, 102, 9372), (34644, 102, 9499), (34645, 102, 9502), (34646, 102, 9793), (34647, 102, 9802), (34648, 102, 9927), (34649, 102, 9981), (34650, 102, 9987), (34651, 102, 10004), (34652, 102, 10045), (34653, 102, 10297), (34654, 102, 10320), (34655, 102, 10323), (34656, 102, 10408), (34657, 102, 10482), (34658, 102, 10486), (34659, 102, 10568), (34660, 102, 10679), (34661, 102, 10708), (34662, 102, 10745), (34663, 102, 10751), (34664, 102, 10841), (34665, 102, 10853), (34666, 102, 10920), (34667, 102, 11087), (34668, 102, 11113), (34669, 102, 11186), (34670, 102, 11241), (34671, 102, 11313), (34672, 102, 11364), (34673, 102, 11390), (34674, 102, 11412), (34675, 102, 11541), (34676, 102, 11621), (34677, 102, 11633), (34678, 102, 11697), (34679, 102, 11791), (34680, 102, 11808), (34681, 102, 11854), (34682, 102, 11865), (34683, 102, 11886), (34684, 102, 11887), (34685, 102, 11917), (34686, 102, 11934), (34687, 102, 11946), (34688, 102, 11986), (34689, 102, 12116), (34690, 102, 12178), (34691, 102, 12208), (34692, 102, 12336), (34693, 102, 12355), (34694, 102, 12396), (34695, 102, 12466), (34696, 102, 12550), (34697, 102, 12577), (34698, 102, 12703), (34699, 102, 12722), (34700, 102, 12739), (34701, 102, 12740), (34702, 102, 12754), (34703, 102, 12758), (34704, 102, 12812), (34705, 102, 12816), (34706, 102, 13030), (34707, 102, 13131), (34708, 102, 13159), (34709, 102, 13170), (34710, 102, 13265), (34711, 102, 13333), (34712, 102, 13342), (34713, 102, 13350), (34714, 102, 13498), (34715, 102, 13549), (34716, 102, 13622), (34717, 102, 13668), (34718, 102, 13729), (34719, 102, 13744), (34720, 102, 13772), (34721, 102, 13843), (34722, 102, 13891), (34723, 102, 13896), (34724, 102, 14063), (34725, 102, 14071), (34726, 102, 14106), (34727, 102, 14136), (34728, 102, 14276), (34729, 102, 14288), (34730, 102, 14320), (34731, 102, 14361), (34732, 102, 14369), (34733, 102, 14374), (34734, 102, 14395), (34735, 102, 14494), (34736, 102, 14557), (34737, 102, 14576), (34738, 102, 14636), (34739, 102, 14713), (34740, 102, 14715), (34741, 102, 14747), (34742, 102, 14757), (34743, 102, 14828), (34744, 102, 14991), (34745, 102, 15034), (34746, 102, 15035), (34747, 102, 15103), (34748, 102, 15314), (34749, 102, 15344), (34750, 102, 15446), (34751, 102, 15459), (34752, 102, 15550), (34753, 102, 15579), (34754, 102, 15619), (34755, 102, 15691), (34756, 102, 15694), (34757, 102, 15709), (34758, 102, 15718), (34759, 102, 15750), (34760, 102, 15757), (34761, 102, 15764), (34762, 102, 15766), (34763, 102, 15784), (34764, 102, 15849), (34765, 102, 15941), (34766, 102, 15949), (34767, 102, 15950), (34768, 102, 16003), (34769, 102, 16038), (34770, 102, 16084), (34771, 102, 16213), (34772, 102, 16282), (34773, 102, 16285), (34774, 102, 16308), (34775, 102, 16314), (34776, 102, 16377), (34777, 102, 16520), (34778, 102, 16598), (34779, 102, 16650), (34780, 102, 16653), (34781, 102, 16660), (34782, 102, 16802), (34783, 102, 16813), (34784, 102, 16866), (34785, 102, 16994), (34786, 102, 17100), (34787, 102, 17109), (34788, 102, 17134), (34789, 102, 17250), (34790, 102, 17285), (34791, 102, 17307), (34792, 102, 17326), (34793, 102, 17344), (34794, 102, 17455), (34795, 102, 17468), (34796, 102, 17488), (34797, 102, 17603), (34798, 102, 17611), (34799, 102, 17617), (34800, 102, 17733), (34801, 102, 17745), (34802, 102, 17751), (34803, 102, 17872), (34804, 102, 17917), (34805, 102, 17933), (34806, 102, 18058), (34807, 102, 18067), (34808, 102, 18107), (34809, 102, 18120), (34810, 102, 18172), (34811, 102, 18193), (34812, 102, 18252), (34813, 102, 18279), (34814, 102, 18282), (34815, 102, 18343), (34816, 102, 18354), (34817, 102, 18432), (34818, 102, 18444), (34819, 102, 18502), (34820, 102, 18600), (34821, 102, 18719), (34822, 102, 18776), (34823, 102, 18791), (34824, 102, 18903), (34825, 102, 18920), (34826, 102, 18923), (34827, 102, 19019), (34828, 102, 19024), (34829, 102, 19080), (34830, 102, 19087), (34831, 102, 19142), (34832, 102, 19173), (34833, 102, 19277), (34834, 102, 19297), (34835, 102, 19308), (34836, 102, 19319), (34837, 102, 19331), (34838, 102, 19333), (34839, 102, 19436), (34840, 102, 19441), (34841, 102, 19458), (34842, 102, 19499), (34843, 102, 19500), (34844, 102, 19507), (34845, 102, 19574), (34846, 102, 19747), (34847, 102, 19811), (34848, 102, 19951), (34849, 102, 19968), (34850, 102, 19970), (34851, 102, 19981), (34852, 102, 20082), (34853, 102, 20105), (34854, 102, 20265), (34855, 102, 20280), (34856, 102, 20409), (34857, 102, 20519), (34858, 102, 20584), (34859, 102, 20653), (34860, 102, 20751), (34861, 102, 20870), (34862, 102, 20881), (34863, 102, 20914), (34864, 102, 21117), (34865, 102, 21176), (34866, 102, 21197), (34867, 102, 21500), (34868, 102, 21517), (34869, 102, 21609), (34870, 102, 21678), (34871, 102, 21700), (34872, 102, 21732), (34873, 102, 21737), (34874, 102, 21739), (34875, 102, 21871), (34876, 102, 21882), (34877, 102, 21928), (34878, 102, 21978), (34879, 102, 22065), (34880, 102, 22108), (34881, 102, 22256), (34882, 102, 22292), (34883, 102, 22297), (34884, 102, 22359), (34885, 102, 22476), (34886, 102, 22498), (34887, 102, 22520), (34888, 102, 22704), (34889, 102, 22727), (34890, 102, 22813), (34891, 102, 23023), (34892, 102, 23049), (34893, 102, 23076), (34894, 102, 23107), (34895, 102, 23109), (34896, 102, 23151), (34897, 102, 23218), (34898, 102, 23265), (34899, 102, 23416), (34900, 102, 23419), (34901, 102, 23469), (34902, 102, 23484), (34903, 102, 23488), (34904, 102, 23523), (34905, 102, 23530), (34906, 102, 23608), (34907, 102, 23644), (34908, 102, 23670), (34909, 102, 23783), (34910, 102, 23972), (34911, 102, 23981), (34912, 102, 24011), (34913, 102, 24112), (34914, 102, 24135), (34915, 102, 24182), (34916, 102, 24196), (34917, 102, 24307), (34918, 102, 24351), (34919, 102, 25037), (34920, 102, 25041), (34921, 102, 25058), (34922, 102, 25075), (34923, 102, 25078), (34924, 102, 25093), (34925, 102, 25180), (34926, 102, 25205), (35071, 103, 22), (35072, 103, 44), (35073, 103, 45), (35074, 103, 53), (35075, 103, 68), (35076, 103, 86), (35077, 103, 127), (35078, 103, 132), (35079, 103, 139), (35080, 103, 171), (35081, 103, 178), (35082, 103, 226), (35083, 103, 246), (35084, 103, 254), (35085, 103, 281), (35086, 103, 288), (35087, 103, 310), (35088, 103, 335), (35089, 103, 339), (35090, 103, 345), (35091, 103, 372), (35092, 103, 391), (35093, 103, 401), (35094, 103, 404), (35095, 103, 419), (35096, 103, 425), (35097, 103, 458), (35098, 103, 643), (35099, 103, 718), (35100, 103, 727), (35101, 103, 988), (35102, 103, 995), (35103, 103, 1030), (35104, 103, 1058), (35105, 103, 1181), (35106, 103, 1232), (35107, 103, 1308), (35108, 103, 1351), (35109, 103, 1356), (35110, 103, 1418), (35111, 103, 1421), (35112, 103, 1442), (35113, 103, 1451), (35114, 103, 1586), (35115, 103, 1634), (35116, 103, 1656), (35117, 103, 1691), (35118, 103, 1698), (35119, 103, 1878), (35120, 103, 2020), (35121, 103, 2127), (35122, 103, 2182), (35123, 103, 2202), (35124, 103, 2225), (35125, 103, 2308), (35126, 103, 2310), (35127, 103, 2409), (35128, 103, 2472), (35129, 103, 2546), (35130, 103, 2614), (35131, 103, 2621), (35132, 103, 2670), (35133, 103, 2671), (35134, 103, 2759), (35135, 103, 2786), (35136, 103, 2892), (35137, 103, 2899), (35138, 103, 2943), (35139, 103, 3031), (35140, 103, 3071), (35141, 103, 3294), (35142, 103, 3391), (35143, 103, 3581), (35144, 103, 3632), (35145, 103, 3644), (35146, 103, 3806), (35147, 103, 3878), (35148, 103, 3908), (35149, 103, 3968), (35150, 103, 4086), (35151, 103, 4090), (35152, 103, 4190), (35153, 103, 4373), (35154, 103, 4627), (35155, 103, 4643), (35156, 103, 4675), (35157, 103, 4807), (35158, 103, 4838), (35159, 103, 4920), (35160, 103, 4930), (35161, 103, 4985), (35162, 103, 5063), (35163, 103, 5133), (35164, 103, 5185), (35165, 103, 5305), (35166, 103, 5344), (35167, 103, 5405), (35168, 103, 5426), (35169, 103, 5469), (35170, 103, 5497), (35171, 103, 5518), (35172, 103, 5586), (35173, 103, 5632), (35174, 103, 5683), (35175, 103, 5715), (35176, 103, 5737), (35177, 103, 5768), (35178, 103, 5835), (35179, 103, 5904), (35180, 103, 5927), (35181, 103, 5935), (35182, 103, 6055), (35183, 103, 6086), (35184, 103, 6141), (35185, 103, 6169), (35186, 103, 6219), (35187, 103, 6383), (35188, 103, 6471), (35189, 103, 6653), (35190, 103, 6694), (35191, 103, 6827), (35192, 103, 6987), (35193, 103, 6998), (35194, 103, 7019), (35195, 103, 7044), (35196, 103, 7049), (35197, 103, 7069), (35198, 103, 7109), (35199, 103, 7149), (35200, 103, 7154), (35201, 103, 7167), (35202, 103, 7217), (35203, 103, 7309), (35204, 103, 7328), (35205, 103, 7371), (35206, 103, 7380), (35207, 103, 7398), (35208, 103, 7605), (35209, 103, 7615), (35210, 103, 7670), (35211, 103, 7689), (35212, 103, 7711), (35213, 103, 7769), (35214, 103, 7794), (35215, 103, 7817), (35216, 103, 7828), (35217, 103, 7847), (35218, 103, 7872), (35219, 103, 7929), (35220, 103, 8009), (35221, 103, 8035), (35222, 103, 8043), (35223, 103, 8057), (35224, 103, 8110), (35225, 103, 8115), (35226, 103, 8121), (35227, 103, 8184), (35228, 103, 8284), (35229, 103, 8326), (35230, 103, 8350), (35231, 103, 8442), (35232, 103, 8459), (35233, 103, 8476), (35234, 103, 8581), (35235, 103, 8731), (35236, 103, 8732), (35237, 103, 8734), (35238, 103, 8799), (35239, 103, 8934), (35240, 103, 8943), (35241, 103, 9048), (35242, 103, 9062), (35243, 103, 9080), (35244, 103, 9114), (35245, 103, 9156), (35246, 103, 9175), (35247, 103, 9185), (35248, 103, 9189), (35249, 103, 9190), (35250, 103, 9192), (35251, 103, 9225), (35252, 103, 9274), (35253, 103, 9287), (35254, 103, 9348), (35255, 103, 9372), (35256, 103, 9418), (35257, 103, 9423), (35258, 103, 9499), (35259, 103, 9502), (35260, 103, 9529), (35261, 103, 9700), (35262, 103, 9705), (35263, 103, 9767), (35264, 103, 9769), (35265, 103, 9793), (35266, 103, 9802), (35267, 103, 9852), (35268, 103, 9861), (35269, 103, 9927), (35270, 103, 9976), (35271, 103, 9981), (35272, 103, 9987), (35273, 103, 10004), (35274, 103, 10007), (35275, 103, 10045), (35276, 103, 10250), (35277, 103, 10297), (35278, 103, 10320), (35279, 103, 10323), (35280, 103, 10408), (35281, 103, 10482), (35282, 103, 10486), (35283, 103, 10499), (35284, 103, 10558), (35285, 103, 10568), (35286, 103, 10679), (35287, 103, 10708), (35288, 103, 10743), (35289, 103, 10745), (35290, 103, 10751), (35291, 103, 10769), (35292, 103, 10773), (35293, 103, 10806), (35294, 103, 10841), (35295, 103, 10853), (35296, 103, 10920), (35297, 103, 11044), (35298, 103, 11087), (35299, 103, 11098), (35300, 103, 11113), (35301, 103, 11186), (35302, 103, 11241), (35303, 103, 11313), (35304, 103, 11364), (35305, 103, 11390), (35306, 103, 11412), (35307, 103, 11541), (35308, 103, 11621), (35309, 103, 11633), (35310, 103, 11679), (35311, 103, 11697), (35312, 103, 11791), (35313, 103, 11793), (35314, 103, 11808), (35315, 103, 11832), (35316, 103, 11854), (35317, 103, 11865), (35318, 103, 11886), (35319, 103, 11887), (35320, 103, 11917), (35321, 103, 11934), (35322, 103, 11946), (35323, 103, 11986), (35324, 103, 11998), (35325, 103, 12116), (35326, 103, 12178), (35327, 103, 12208), (35328, 103, 12217), (35329, 103, 12294), (35330, 103, 12336), (35331, 103, 12355), (35332, 103, 12360), (35333, 103, 12396), (35334, 103, 12461), (35335, 103, 12466), (35336, 103, 12517), (35337, 103, 12542), (35338, 103, 12550), (35339, 103, 12577), (35340, 103, 12618), (35341, 103, 12684), (35342, 103, 12695), (35343, 103, 12703), (35344, 103, 12722), (35345, 103, 12723), (35346, 103, 12727), (35347, 103, 12739), (35348, 103, 12740), (35349, 103, 12754), (35350, 103, 12758), (35351, 103, 12812), (35352, 103, 12816), (35353, 103, 12864), (35354, 103, 12912), (35355, 103, 12986), (35356, 103, 13030), (35357, 103, 13048), (35358, 103, 13131), (35359, 103, 13159), (35360, 103, 13170), (35361, 103, 13232), (35362, 103, 13265), (35363, 103, 13333), (35364, 103, 13339), (35365, 103, 13342), (35366, 103, 13350), (35367, 103, 13498), (35368, 103, 13507), (35369, 103, 13529), (35370, 103, 13549), (35371, 103, 13562), (35372, 103, 13622), (35373, 103, 13668), (35374, 103, 13729), (35375, 103, 13744), (35376, 103, 13772), (35377, 103, 13790), (35378, 103, 13843), (35379, 103, 13867), (35380, 103, 13891), (35381, 103, 13896), (35382, 103, 14063), (35383, 103, 14071), (35384, 103, 14089), (35385, 103, 14092), (35386, 103, 14106), (35387, 103, 14136), (35388, 103, 14137), (35389, 103, 14173), (35390, 103, 14193), (35391, 103, 14276), (35392, 103, 14288), (35393, 103, 14320), (35394, 103, 14361), (35395, 103, 14363), (35396, 103, 14369), (35397, 103, 14374), (35398, 103, 14391), (35399, 103, 14395), (35400, 103, 14452), (35401, 103, 14494), (35402, 103, 14557), (35403, 103, 14576), (35404, 103, 14587), (35405, 103, 14620), (35406, 103, 14636), (35407, 103, 14713), (35408, 103, 14715), (35409, 103, 14747), (35410, 103, 14754), (35411, 103, 14757), (35412, 103, 14823), (35413, 103, 14828), (35414, 103, 14833), (35415, 103, 14861), (35416, 103, 14866), (35417, 103, 14885), (35418, 103, 14919), (35419, 103, 14966), (35420, 103, 14991), (35421, 103, 14995), (35422, 103, 15022), (35423, 103, 15034), (35424, 103, 15035), (35425, 103, 15103), (35426, 103, 15176), (35427, 103, 15213), (35428, 103, 15236), (35429, 103, 15314), (35430, 103, 15344), (35431, 103, 15360), (35432, 103, 15446), (35433, 103, 15459), (35434, 103, 15550), (35435, 103, 15579), (35436, 103, 15619), (35437, 103, 15645), (35438, 103, 15677), (35439, 103, 15685), (35440, 103, 15691), (35441, 103, 15694), (35442, 103, 15709), (35443, 103, 15718), (35444, 103, 15745), (35445, 103, 15750), (35446, 103, 15757), (35447, 103, 15761), (35448, 103, 15764), (35449, 103, 15766), (35450, 103, 15767), (35451, 103, 15784), (35452, 103, 15849), (35453, 103, 15941), (35454, 103, 15949), (35455, 103, 15950), (35456, 103, 15966), (35457, 103, 16003), (35458, 103, 16038), (35459, 103, 16043), (35460, 103, 16048), (35461, 103, 16063), (35462, 103, 16068), (35463, 103, 16084), (35464, 103, 16153), (35465, 103, 16159), (35466, 103, 16200), (35467, 103, 16201), (35468, 103, 16213), (35469, 103, 16229), (35470, 103, 16282), (35471, 103, 16285), (35472, 103, 16291), (35473, 103, 16294), (35474, 103, 16308), (35475, 103, 16314), (35476, 103, 16331), (35477, 103, 16377), (35478, 103, 16489), (35479, 103, 16506), (35480, 103, 16520), (35481, 103, 16526), (35482, 103, 16527), (35483, 103, 16541), (35484, 103, 16598), (35485, 103, 16650), (35486, 103, 16653), (35487, 103, 16660), (35488, 103, 16725), (35489, 103, 16772), (35490, 103, 16781), (35491, 103, 16794), (35492, 103, 16802), (35493, 103, 16813), (35494, 103, 16843), (35495, 103, 16866), (35496, 103, 16882), (35497, 103, 16932), (35498, 103, 16963), (35499, 103, 16994), (35500, 103, 17100), (35501, 103, 17109), (35502, 103, 17134), (35503, 103, 17237), (35504, 103, 17250), (35505, 103, 17252), (35506, 103, 17285), (35507, 103, 17307), (35508, 103, 17326), (35509, 103, 17344), (35510, 103, 17455), (35511, 103, 17468), (35512, 103, 17474), (35513, 103, 17488), (35514, 103, 17603), (35515, 103, 17611), (35516, 103, 17617), (35517, 103, 17619), (35518, 103, 17624), (35519, 103, 17664), (35520, 103, 17721), (35521, 103, 17733), (35522, 103, 17735), (35523, 103, 17736), (35524, 103, 17745), (35525, 103, 17751), (35526, 103, 17803), (35527, 103, 17872), (35528, 103, 17917), (35529, 103, 17930), (35530, 103, 17933), (35531, 103, 17979), (35532, 103, 18029), (35533, 103, 18058), (35534, 103, 18067), (35535, 103, 18107), (35536, 103, 18120), (35537, 103, 18158), (35538, 103, 18166), (35539, 103, 18172), (35540, 103, 18193), (35541, 103, 18206), (35542, 103, 18252), (35543, 103, 18279), (35544, 103, 18282), (35545, 103, 18295), (35546, 103, 18343), (35547, 103, 18354), (35548, 103, 18432), (35549, 103, 18439), (35550, 103, 18444), (35551, 103, 18490), (35552, 103, 18496), (35553, 103, 18502), (35554, 103, 18532), (35555, 103, 18598), (35556, 103, 18600), (35557, 103, 18714), (35558, 103, 18719), (35559, 103, 18725), (35560, 103, 18733), (35561, 103, 18776), (35562, 103, 18791), (35563, 103, 18800), (35564, 103, 18903), (35565, 103, 18920), (35566, 103, 18923), (35567, 103, 18933), (35568, 103, 19019), (35569, 103, 19024), (35570, 103, 19080), (35571, 103, 19087), (35572, 103, 19142), (35573, 103, 19173), (35574, 103, 19182), (35575, 103, 19199), (35576, 103, 19277), (35577, 103, 19297), (35578, 103, 19308), (35579, 103, 19319), (35580, 103, 19331), (35581, 103, 19333), (35582, 103, 19436), (35583, 103, 19441), (35584, 103, 19450), (35585, 103, 19458), (35586, 103, 19499), (35587, 103, 19500), (35588, 103, 19507), (35589, 103, 19574), (35590, 103, 19631), (35591, 103, 19744), (35592, 103, 19747), (35593, 103, 19811), (35594, 103, 19826), (35595, 103, 19951), (35596, 103, 19968), (35597, 103, 19970), (35598, 103, 19981), (35599, 103, 20082), (35600, 103, 20105), (35601, 103, 20192), (35602, 103, 20234), (35603, 103, 20265), (35604, 103, 20280), (35605, 103, 20404), (35606, 103, 20409), (35607, 103, 20415), (35608, 103, 20438), (35609, 103, 20519), (35610, 103, 20584), (35611, 103, 20603), (35612, 103, 20653), (35613, 103, 20751), (35614, 103, 20870), (35615, 103, 20873), (35616, 103, 20881), (35617, 103, 20914), (35618, 103, 21060), (35619, 103, 21117), (35620, 103, 21176), (35621, 103, 21197), (35622, 103, 21293), (35623, 103, 21361), (35624, 103, 21500), (35625, 103, 21517), (35626, 103, 21609), (35627, 103, 21626), (35628, 103, 21678), (35629, 103, 21700), (35630, 103, 21732), (35631, 103, 21737), (35632, 103, 21738), (35633, 103, 21739), (35634, 103, 21871), (35635, 103, 21882), (35636, 103, 21928), (35637, 103, 21978), (35638, 103, 22065), (35639, 103, 22108), (35640, 103, 22256), (35641, 103, 22279), (35642, 103, 22292), (35643, 103, 22297), (35644, 103, 22359), (35645, 103, 22476), (35646, 103, 22498), (35647, 103, 22520), (35648, 103, 22704), (35649, 103, 22720), (35650, 103, 22727), (35651, 103, 22742), (35652, 103, 22780), (35653, 103, 22813), (35654, 103, 22878), (35655, 103, 23023), (35656, 103, 23049), (35657, 103, 23076), (35658, 103, 23107), (35659, 103, 23109), (35660, 103, 23151), (35661, 103, 23175), (35662, 103, 23218), (35663, 103, 23220), (35664, 103, 23265), (35665, 103, 23416), (35666, 103, 23419), (35667, 103, 23469), (35668, 103, 23484), (35669, 103, 23488), (35670, 103, 23523), (35671, 103, 23530), (35672, 103, 23560), (35673, 103, 23608), (35674, 103, 23644), (35675, 103, 23670), (35676, 103, 23783), (35677, 103, 23972), (35678, 103, 23981), (35679, 103, 24011), (35680, 103, 24112), (35681, 103, 24135), (35682, 103, 24159), (35683, 103, 24160), (35684, 103, 24182), (35685, 103, 24196), (35686, 103, 24305), (35687, 103, 24307), (35688, 103, 24351), (35689, 103, 24535), (35690, 103, 24991), (35691, 103, 25037), (35692, 103, 25041), (35693, 103, 25058), (35694, 103, 25075), (35695, 103, 25078), (35696, 103, 25093), (35697, 103, 25122), (35698, 103, 25180), (35699, 103, 25205), (36094, 104, 15), (36095, 104, 103), (36096, 104, 117), (36097, 104, 262), (36098, 104, 538), (36099, 104, 690), (36100, 104, 733), (36101, 104, 864), (36102, 104, 1018), (36103, 104, 1151), (36104, 104, 1327), (36105, 104, 1339), (36106, 104, 1452), (36107, 104, 1522), (36108, 104, 1543), (36109, 104, 1558), (36110, 104, 1598), (36111, 104, 1732), (36112, 104, 2051), (36113, 104, 2052), (36114, 104, 2080), (36115, 104, 2120), (36116, 104, 2181), (36117, 104, 2240), (36118, 104, 2275), (36119, 104, 2582), (36120, 104, 2632), (36121, 104, 2674), (36122, 104, 2718), (36123, 104, 3093), (36124, 104, 3190), (36125, 104, 3315), (36126, 104, 3396), (36127, 104, 3781), (36128, 104, 3826), (36129, 104, 3835), (36130, 104, 3924), (36131, 104, 3996), (36132, 104, 4036), (36133, 104, 4057), (36134, 104, 4338), (36135, 104, 4647), (36136, 104, 4860), (36137, 104, 5077), (36138, 104, 5178), (36139, 104, 5204), (36140, 104, 5256), (36141, 104, 5300), (36142, 104, 5329), (36143, 104, 5479), (36144, 104, 5610), (36145, 104, 5642), (36146, 104, 5841), (36147, 104, 5876), (36148, 104, 5961), (36149, 104, 6073), (36150, 104, 6293), (36151, 104, 6319), (36152, 104, 6412), (36153, 104, 6567), (36154, 104, 6593), (36155, 104, 6631), (36156, 104, 6681), (36157, 104, 6851), (36158, 104, 7195), (36159, 104, 7469), (36160, 104, 7914), (36161, 104, 8014), (36162, 104, 8032), (36163, 104, 8056), (36164, 104, 8065), (36165, 104, 8185), (36166, 104, 8208), (36167, 104, 8226), (36168, 104, 8288), (36169, 104, 8369), (36170, 104, 8375), (36171, 104, 8398), (36172, 104, 8684), (36173, 104, 8868), (36174, 104, 8933), (36175, 104, 9004), (36176, 104, 9132), (36177, 104, 9218), (36178, 104, 9321), (36179, 104, 10028), (36180, 104, 10156), (36181, 104, 10164), (36182, 104, 10243), (36183, 104, 10405), (36184, 104, 10523), (36185, 104, 10556), (36186, 104, 10661), (36187, 104, 10894), (36188, 104, 10940), (36189, 104, 11078), (36190, 104, 11420), (36191, 104, 11490), (36192, 104, 11619), (36193, 104, 11637), (36194, 104, 11798), (36195, 104, 12036), (36196, 104, 12114), (36197, 104, 12149), (36198, 104, 12185), (36199, 104, 12293), (36200, 104, 12378), (36201, 104, 12428), (36202, 104, 12523), (36203, 104, 12953), (36204, 104, 12970), (36205, 104, 13037), (36206, 104, 13061), (36207, 104, 13119), (36208, 104, 13180), (36209, 104, 13235), (36210, 104, 13445), (36211, 104, 13484), (36212, 104, 13512), (36213, 104, 13654), (36214, 104, 13680), (36215, 104, 14210), (36216, 104, 14240), (36217, 104, 14246), (36218, 104, 14338), (36219, 104, 14420), (36220, 104, 14631), (36221, 104, 14736), (36222, 104, 14765), (36223, 104, 14788), (36224, 104, 14801), (36225, 104, 14802), (36226, 104, 14940), (36227, 104, 14943), (36228, 104, 14954), (36229, 104, 15107), (36230, 104, 15209), (36231, 104, 15242), (36232, 104, 15396), (36233, 104, 15603), (36234, 104, 15680), (36235, 104, 15716), (36236, 104, 15739), (36237, 104, 16082), (36238, 104, 16367), (36239, 104, 16523), (36240, 104, 16671), (36241, 104, 16785), (36242, 104, 16790), (36243, 104, 16857), (36244, 104, 17008), (36245, 104, 17314), (36246, 104, 17451), (36247, 104, 17590), (36248, 104, 17621), (36249, 104, 17792), (36250, 104, 17923), (36251, 104, 18044), (36252, 104, 18249), (36253, 104, 18328), (36254, 104, 18794), (36255, 104, 18887), (36256, 104, 19170), (36257, 104, 19567), (36258, 104, 19871), (36259, 104, 19959), (36260, 104, 20041), (36261, 104, 20073), (36262, 104, 20149), (36263, 104, 20635), (36264, 104, 20670), (36265, 104, 20676), (36266, 104, 20849), (36267, 104, 21347), (36268, 104, 21386), (36269, 104, 21702), (36270, 104, 21773), (36271, 104, 21994), (36272, 104, 22357), (36273, 104, 22573), (36274, 104, 23081), (36275, 104, 23085), (36276, 104, 23276), (36277, 104, 23378), (36278, 104, 23741), (36279, 104, 24986), (36280, 104, 25010), (36281, 104, 25016), (36282, 104, 25027), (36283, 104, 25072), (36284, 104, 25073), (36285, 104, 25127), (36349, 105, 5), (36350, 105, 49), (36351, 105, 617), (36352, 105, 673), (36353, 105, 889), (36354, 105, 949), (36355, 105, 1190), (36356, 105, 1327), (36357, 105, 1339), (36358, 105, 1901), (36359, 105, 2371), (36360, 105, 2498), (36361, 105, 3048), (36362, 105, 3093), (36363, 105, 3251), (36364, 105, 3331), (36365, 105, 3515), (36366, 105, 3865), (36367, 105, 3924), (36368, 105, 4148), (36369, 105, 4414), (36370, 105, 4500), (36371, 105, 4961), (36372, 105, 5940), (36373, 105, 5961), (36374, 105, 6145), (36375, 105, 6379), (36376, 105, 7347), (36377, 105, 7706), (36378, 105, 8226), (36379, 105, 8591), (36380, 105, 8780), (36381, 105, 8783), (36382, 105, 9004), (36383, 105, 9057), (36384, 105, 9233), (36385, 105, 9638), (36386, 105, 9662), (36387, 105, 10359), (36388, 105, 10621), (36389, 105, 10679), (36390, 105, 10726), (36391, 105, 10904), (36392, 105, 11290), (36393, 105, 11370), (36394, 105, 11441), (36395, 105, 11490), (36396, 105, 12344), (36397, 105, 12548), (36398, 105, 12616), (36399, 105, 13196), (36400, 105, 13207), (36401, 105, 13340), (36402, 105, 13417), (36403, 105, 13679), (36404, 105, 14339), (36405, 105, 14605), (36406, 105, 14892), (36407, 105, 15183), (36408, 105, 15378), (36409, 105, 15620), (36410, 105, 15630), (36411, 105, 16080), (36412, 105, 16436), (36413, 105, 16505), (36414, 105, 16600), (36415, 105, 17343), (36416, 105, 17701), (36417, 105, 17742), (36418, 105, 18065), (36419, 105, 18421), (36420, 105, 18764), (36421, 105, 19095), (36422, 105, 19193), (36423, 105, 19355), (36424, 105, 19508), (36425, 105, 19896), (36426, 105, 20030), (36427, 105, 20073), (36428, 105, 20406), (36429, 105, 20853), (36430, 105, 20933), (36431, 105, 21813), (36432, 105, 21853), (36433, 105, 21910), (36434, 105, 22172), (36435, 105, 22232), (36436, 105, 22357), (36437, 105, 23151), (36438, 105, 23288), (36439, 105, 23471), (36440, 105, 23953), (36441, 105, 25004), (36442, 105, 25064), (36476, 106, 15), (36477, 106, 103), (36478, 106, 117), (36479, 106, 733), (36480, 106, 1018), (36481, 106, 1230), (36482, 106, 1339), (36483, 106, 1452), (36484, 106, 1522), (36485, 106, 1558), (36486, 106, 2080), (36487, 106, 2181), (36488, 106, 2240), (36489, 106, 2564), (36490, 106, 2718), (36491, 106, 3093), (36492, 106, 3190), (36493, 106, 3295), (36494, 106, 3396), (36495, 106, 3826), (36496, 106, 4447), (36497, 106, 4678), (36498, 106, 4931), (36499, 106, 5329), (36500, 106, 5841), (36501, 106, 5876), (36502, 106, 5961), (36503, 106, 6161), (36504, 106, 6319), (36505, 106, 6567), (36506, 106, 6643), (36507, 106, 6681), (36508, 106, 7195), (36509, 106, 7426), (36510, 106, 7690), (36511, 106, 8014), (36512, 106, 8065), (36513, 106, 8208), (36514, 106, 8226), (36515, 106, 8375), (36516, 106, 8684), (36517, 106, 8868), (36518, 106, 9101), (36519, 106, 9103), (36520, 106, 9197), (36521, 106, 9662), (36522, 106, 10164), (36523, 106, 10661), (36524, 106, 10940), (36525, 106, 10964), (36526, 106, 11490), (36527, 106, 11619), (36528, 106, 12428), (36529, 106, 12970), (36530, 106, 13037), (36531, 106, 13061), (36532, 106, 13512), (36533, 106, 13680), (36534, 106, 14022), (36535, 106, 14210), (36536, 106, 14240), (36537, 106, 14639), (36538, 106, 14788), (36539, 106, 14882), (36540, 106, 15209), (36541, 106, 15242), (36542, 106, 15287), (36543, 106, 15396), (36544, 106, 16082), (36545, 106, 16227), (36546, 106, 16686), (36547, 106, 17314), (36548, 106, 17597), (36549, 106, 17792), (36550, 106, 18044), (36551, 106, 18249), (36552, 106, 19193), (36553, 106, 19959), (36554, 106, 19990), (36555, 106, 21386), (36556, 106, 22357), (36557, 106, 22573), (36558, 106, 23081), (36559, 106, 23085), (36560, 106, 23140), (36561, 106, 23321), (36562, 106, 23741), (36563, 106, 24650), (36564, 106, 25010), (36565, 106, 25127), (36603, 107, 33), (36604, 107, 733), (36605, 107, 1018), (36606, 107, 1522), (36607, 107, 2181), (36608, 107, 2722), (36609, 107, 2731), (36610, 107, 2804), (36611, 107, 3414), (36612, 107, 3483), (36613, 107, 3609), (36614, 107, 3863), (36615, 107, 4261), (36616, 107, 5159), (36617, 107, 5300), (36618, 107, 5636), (36619, 107, 5841), (36620, 107, 6390), (36621, 107, 6546), (36622, 107, 6549), (36623, 107, 7313), (36624, 107, 7454), (36625, 107, 8182), (36626, 107, 8185), (36627, 107, 8208), (36628, 107, 8684), (36629, 107, 9159), (36630, 107, 9857), (36631, 107, 10164), (36632, 107, 10940), (36633, 107, 11315), (36634, 107, 11798), (36635, 107, 12245), (36636, 107, 12557), (36637, 107, 12960), (36638, 107, 13180), (36639, 107, 13569), (36640, 107, 13604), (36641, 107, 13755), (36642, 107, 13884), (36643, 107, 14017), (36644, 107, 14282), (36645, 107, 14668), (36646, 107, 15209), (36647, 107, 15771), (36648, 107, 15837), (36649, 107, 15964), (36650, 107, 16523), (36651, 107, 16624), (36652, 107, 16851), (36653, 107, 17016), (36654, 107, 17039), (36655, 107, 17597), (36656, 107, 17854), (36657, 107, 18081), (36658, 107, 18483), (36659, 107, 20167), (36660, 107, 20813), (36661, 107, 21918), (36662, 107, 23276), (36663, 107, 24251), (36664, 107, 24298), (36666, 108, 15), (36667, 108, 33), (36668, 108, 74), (36669, 108, 103), (36670, 108, 224), (36671, 108, 262), (36672, 108, 452), (36673, 108, 478), (36674, 108, 620), (36675, 108, 715), (36676, 108, 733), (36677, 108, 747), (36678, 108, 900), (36679, 108, 976), (36680, 108, 1018), (36681, 108, 1036), (36682, 108, 1151), (36683, 108, 1374), (36684, 108, 1429), (36685, 108, 1474), (36686, 108, 1522), (36687, 108, 1532), (36688, 108, 1557), (36689, 108, 1558), (36690, 108, 1883), (36691, 108, 2026), (36692, 108, 2092), (36693, 108, 2181), (36694, 108, 2232), (36695, 108, 2371), (36696, 108, 2564), (36697, 108, 2574), (36698, 108, 2681), (36699, 108, 2705), (36700, 108, 2779), (36701, 108, 2991), (36702, 108, 3009), (36703, 108, 3016), (36704, 108, 3190), (36705, 108, 3429), (36706, 108, 3535), (36707, 108, 3638), (36708, 108, 3755), (36709, 108, 3781), (36710, 108, 3835), (36711, 108, 3876), (36712, 108, 3935), (36713, 108, 3976), (36714, 108, 4057), (36715, 108, 4069), (36716, 108, 4191), (36717, 108, 4246), (36718, 108, 4263), (36719, 108, 4338), (36720, 108, 4524), (36721, 108, 4647), (36722, 108, 4678), (36723, 108, 4767), (36724, 108, 5610), (36725, 108, 5841), (36726, 108, 5993), (36727, 108, 6412), (36728, 108, 6426), (36729, 108, 6477), (36730, 108, 6567), (36731, 108, 6631), (36732, 108, 7031), (36733, 108, 7905), (36734, 108, 7963), (36735, 108, 8014), (36736, 108, 8023), (36737, 108, 8287), (36738, 108, 8288), (36739, 108, 8725), (36740, 108, 8933), (36741, 108, 9004), (36742, 108, 9197), (36743, 108, 9233), (36744, 108, 9321), (36745, 108, 9361), (36746, 108, 9662), (36747, 108, 9737), (36748, 108, 9825), (36749, 108, 9858), (36750, 108, 9867), (36751, 108, 10028), (36752, 108, 10163), (36753, 108, 10164), (36754, 108, 10207), (36755, 108, 10314), (36756, 108, 10678), (36757, 108, 10940), (36758, 108, 11119), (36759, 108, 11122), (36760, 108, 11290), (36761, 108, 11350), (36762, 108, 11432), (36763, 108, 11582), (36764, 108, 11798), (36765, 108, 11944), (36766, 108, 11964), (36767, 108, 12036), (36768, 108, 12616), (36769, 108, 12825), (36770, 108, 13017), (36771, 108, 13059), (36772, 108, 13180), (36773, 108, 13235), (36774, 108, 13413), (36775, 108, 13654), (36776, 108, 13944), (36777, 108, 14017), (36778, 108, 14210), (36779, 108, 14336), (36780, 108, 14631), (36781, 108, 15124), (36782, 108, 15209), (36783, 108, 15396), (36784, 108, 15432), (36785, 108, 15664), (36786, 108, 15734), (36787, 108, 16123), (36788, 108, 16316), (36789, 108, 16517), (36790, 108, 16523), (36791, 108, 16686), (36792, 108, 16724), (36793, 108, 16790), (36794, 108, 17154), (36795, 108, 17597), (36796, 108, 17826), (36797, 108, 18328), (36798, 108, 18489), (36799, 108, 18794), (36800, 108, 18934), (36801, 108, 19497), (36802, 108, 19567), (36803, 108, 19628), (36804, 108, 19643), (36805, 108, 20149), (36806, 108, 20335), (36807, 108, 20670), (36808, 108, 20967), (36809, 108, 21228), (36810, 108, 21347), (36811, 108, 21353), (36812, 108, 21702), (36813, 108, 21994), (36814, 108, 22357), (36815, 108, 22403), (36816, 108, 22590), (36817, 108, 22910), (36818, 108, 23263), (36819, 108, 23278), (36820, 108, 23308), (36821, 108, 23787), (36822, 108, 24606), (36823, 108, 24650), (36824, 108, 25027), (36825, 108, 25137), (36921, 109, 1004), (36922, 109, 1051), (36923, 109, 2038), (36924, 109, 2146), (36925, 109, 2442), (36926, 109, 2546), (36927, 109, 2605), (36928, 109, 2616), (36929, 109, 2744), (36930, 109, 2804), (36931, 109, 2922), (36932, 109, 2942), (36933, 109, 3025), (36934, 109, 3527), (36935, 109, 3541), (36936, 109, 4204), (36937, 109, 4931), (36938, 109, 5109), (36939, 109, 5158), (36940, 109, 5159), (36941, 109, 5417), (36942, 109, 5463), (36943, 109, 5523), (36944, 109, 5640), (36945, 109, 5771), (36946, 109, 6301), (36947, 109, 6572), (36948, 109, 6748), (36949, 109, 6814), (36950, 109, 6975), (36951, 109, 7152), (36952, 109, 7569), (36953, 109, 7687), (36954, 109, 8369), (36955, 109, 8374), (36956, 109, 8684), (36957, 109, 8910), (36958, 109, 8971), (36959, 109, 9103), (36960, 109, 9218), (36961, 109, 9442), (36962, 109, 9950), (36963, 109, 10230), (36964, 109, 10243), (36965, 109, 10702), (36966, 109, 10810), (36967, 109, 10849), (36968, 109, 10894), (36969, 109, 10895), (36970, 109, 11025), (36971, 109, 11107), (36972, 109, 11124), (36973, 109, 11197), (36974, 109, 11203), (36975, 109, 11321), (36976, 109, 11403), (36977, 109, 11456), (36978, 109, 11458), (36979, 109, 11499), (36980, 109, 11610), (36981, 109, 11689), (36982, 109, 11766), (36983, 109, 11824), (36984, 109, 11910), (36985, 109, 11952), (36986, 109, 11994), (36987, 109, 12001), (36988, 109, 12124), (36989, 109, 12528), (36990, 109, 12973), (36991, 109, 13039), (36992, 109, 13083), (36993, 109, 13207), (36994, 109, 13317), (36995, 109, 13318), (36996, 109, 13388), (36997, 109, 13395), (36998, 109, 13468), (36999, 109, 13666), (37000, 109, 13733), (37001, 109, 13817), (37002, 109, 14122), (37003, 109, 14278), (37004, 109, 14317), (37005, 109, 14551), (37006, 109, 14697), (37007, 109, 14915), (37008, 109, 14972), (37009, 109, 15051), (37010, 109, 15081), (37011, 109, 15267), (37012, 109, 15317), (37013, 109, 15453), (37014, 109, 15488), (37015, 109, 15497), (37016, 109, 15603), (37017, 109, 15800), (37018, 109, 15859), (37019, 109, 15901), (37020, 109, 15930), (37021, 109, 16351), (37022, 109, 17229), (37023, 109, 17315), (37024, 109, 17457), (37025, 109, 17539), (37026, 109, 18256), (37027, 109, 18379), (37028, 109, 18483), (37029, 109, 18638), (37030, 109, 18691), (37031, 109, 18817), (37032, 109, 19118), (37033, 109, 19214), (37034, 109, 19359), (37035, 109, 19838), (37036, 109, 20573), (37037, 109, 21443), (37038, 109, 21482), (37039, 109, 23135), (37040, 109, 23533), (37041, 109, 24012), (37042, 109, 24157), (37043, 109, 24961), (37044, 109, 25080), (37048, 110, 709), (37049, 110, 863), (37050, 110, 1021), (37051, 110, 1210), (37052, 110, 1821), (37053, 110, 2429), (37054, 110, 2751), (37055, 110, 2974), (37056, 110, 3216), (37057, 110, 3494), (37058, 110, 3810), (37059, 110, 3848), (37060, 110, 4112), (37061, 110, 4246), (37062, 110, 4431), (37063, 110, 4451), (37064, 110, 4467), (37065, 110, 4899), (37066, 110, 4960), (37067, 110, 5080), (37068, 110, 5117), (37069, 110, 5591), (37070, 110, 5892), (37071, 110, 6082), (37072, 110, 6094), (37073, 110, 6283), (37074, 110, 6583), (37075, 110, 6584), (37076, 110, 6749), (37077, 110, 6872), (37078, 110, 7053), (37079, 110, 7102), (37080, 110, 7129), (37081, 110, 7190), (37082, 110, 7502), (37083, 110, 7556), (37084, 110, 7653), (37085, 110, 7710), (37086, 110, 7765), (37087, 110, 8062), (37088, 110, 8231), (37089, 110, 8278), (37090, 110, 8289), (37091, 110, 8407), (37092, 110, 8461), (37093, 110, 8691), (37094, 110, 8787), (37095, 110, 8828), (37096, 110, 8842), (37097, 110, 8854), (37098, 110, 8880), (37099, 110, 8895), (37100, 110, 8988), (37101, 110, 9028), (37102, 110, 9067), (37103, 110, 9208), (37104, 110, 9212), (37105, 110, 9483), (37106, 110, 9593), (37107, 110, 9689), (37108, 110, 9961), (37109, 110, 10026), (37110, 110, 10033), (37111, 110, 10204), (37112, 110, 10227), (37113, 110, 10234), (37114, 110, 10344), (37115, 110, 10388), (37116, 110, 10404), (37117, 110, 10448), (37118, 110, 10500), (37119, 110, 10563), (37120, 110, 10567), (37121, 110, 10622), (37122, 110, 10723), (37123, 110, 10750), (37124, 110, 10755), (37125, 110, 10764), (37126, 110, 10788), (37127, 110, 10865), (37128, 110, 10875), (37129, 110, 10957), (37130, 110, 11097), (37131, 110, 11149), (37132, 110, 11152), (37133, 110, 11275), (37134, 110, 11333), (37135, 110, 11403), (37136, 110, 11452), (37137, 110, 11525), (37138, 110, 11539), (37139, 110, 11625), (37140, 110, 11638), (37141, 110, 11774), (37142, 110, 11880), (37143, 110, 11898), (37144, 110, 11995), (37145, 110, 12076), (37146, 110, 12086), (37147, 110, 12106), (37148, 110, 12124), (37149, 110, 12228), (37150, 110, 12265), (37151, 110, 12304), (37152, 110, 12338), (37153, 110, 12544), (37154, 110, 12784), (37155, 110, 12891), (37156, 110, 13098), (37157, 110, 13161), (37158, 110, 13296), (37159, 110, 13326), (37160, 110, 13426), (37161, 110, 13571), (37162, 110, 13761), (37163, 110, 13977), (37164, 110, 14283), (37165, 110, 14301), (37166, 110, 14316), (37167, 110, 14392), (37168, 110, 14429), (37169, 110, 14516), (37170, 110, 14710), (37171, 110, 14729), (37172, 110, 14732), (37173, 110, 14764), (37174, 110, 14830), (37175, 110, 14832), (37176, 110, 14955), (37177, 110, 15083), (37178, 110, 15127), (37179, 110, 15298), (37180, 110, 15339), (37181, 110, 15380), (37182, 110, 15433), (37183, 110, 15439), (37184, 110, 15440), (37185, 110, 15507), (37186, 110, 15575), (37187, 110, 15608), (37188, 110, 15762), (37189, 110, 15848), (37190, 110, 15851), (37191, 110, 15861), (37192, 110, 15896), (37193, 110, 15897), (37194, 110, 15944), (37195, 110, 16022), (37196, 110, 16025), (37197, 110, 16033), (37198, 110, 16047), (37199, 110, 16139), (37200, 110, 16313), (37201, 110, 16456), (37202, 110, 16478), (37203, 110, 16535), (37204, 110, 16647), (37205, 110, 16684), (37206, 110, 16711), (37207, 110, 16836), (37208, 110, 16876), (37209, 110, 17068), (37210, 110, 17259), (37211, 110, 17295), (37212, 110, 17340), (37213, 110, 17410), (37214, 110, 17447), (37215, 110, 17487), (37216, 110, 17550), (37217, 110, 17594), (37218, 110, 17626), (37219, 110, 17708), (37220, 110, 17776), (37221, 110, 17999), (37222, 110, 18054), (37223, 110, 18212), (37224, 110, 18239), (37225, 110, 18261), (37226, 110, 18304), (37227, 110, 18338), (37228, 110, 18353), (37229, 110, 18391), (37230, 110, 18403), (37231, 110, 18422), (37232, 110, 18547), (37233, 110, 18548), (37234, 110, 18762), (37235, 110, 18934), (37236, 110, 18960), (37237, 110, 19058), (37238, 110, 19247), (37239, 110, 19253), (37240, 110, 19360), (37241, 110, 19423), (37242, 110, 19454), (37243, 110, 19516), (37244, 110, 19639), (37245, 110, 19682), (37246, 110, 19716), (37247, 110, 19843), (37248, 110, 19918), (37249, 110, 19919), (37250, 110, 19967), (37251, 110, 19988), (37252, 110, 20028), (37253, 110, 20275), (37254, 110, 20323), (37255, 110, 20339), (37256, 110, 20343), (37257, 110, 20407), (37258, 110, 20514), (37259, 110, 20632), (37260, 110, 20650), (37261, 110, 20838), (37262, 110, 20849), (37263, 110, 20985), (37264, 110, 21021), (37265, 110, 21052), (37266, 110, 21100), (37267, 110, 21130), (37268, 110, 21157), (37269, 110, 21259), (37270, 110, 21364), (37271, 110, 21483), (37272, 110, 21484), (37273, 110, 21616), (37274, 110, 21708), (37275, 110, 21925), (37276, 110, 22051), (37277, 110, 22064), (37278, 110, 22185), (37279, 110, 22216), (37280, 110, 22454), (37281, 110, 22530), (37282, 110, 22589), (37283, 110, 22590), (37284, 110, 22658), (37285, 110, 22706), (37286, 110, 22717), (37287, 110, 22999), (37288, 110, 23028), (37289, 110, 23161), (37290, 110, 23187), (37291, 110, 23353), (37292, 110, 23399), (37293, 110, 23552), (37294, 110, 23649), (37295, 110, 23664), (37296, 110, 23787), (37297, 110, 23806), (37298, 110, 23893), (37299, 110, 24080), (37300, 110, 24086), (37301, 110, 24181), (37302, 110, 24252), (37303, 110, 24513), (37304, 110, 24514), (37305, 110, 24515), (37306, 110, 24516), (37307, 110, 24530), (37308, 110, 24640), (37309, 110, 24667), (37310, 110, 24751), (37311, 110, 24767), (37312, 110, 24829), (37313, 110, 24844), (37314, 110, 25054), (37559, 111, 567), (37560, 111, 947), (37561, 111, 1999), (37562, 111, 2146), (37563, 111, 2605), (37564, 111, 2674), (37565, 111, 2744), (37566, 111, 2840), (37567, 111, 2905), (37568, 111, 3009), (37569, 111, 3101), (37570, 111, 3548), (37571, 111, 4204), (37572, 111, 4298), (37573, 111, 5109), (37574, 111, 5523), (37575, 111, 5612), (37576, 111, 6161), (37577, 111, 6487), (37578, 111, 6572), (37579, 111, 7529), (37580, 111, 8032), (37581, 111, 8374), (37582, 111, 8524), (37583, 111, 9103), (37584, 111, 9436), (37585, 111, 9788), (37586, 111, 10352), (37587, 111, 10702), (37588, 111, 10910), (37589, 111, 10933), (37590, 111, 11025), (37591, 111, 11124), (37592, 111, 11321), (37593, 111, 11824), (37594, 111, 11942), (37595, 111, 11952), (37596, 111, 11994), (37597, 111, 12031), (37598, 111, 12060), (37599, 111, 12378), (37600, 111, 12953), (37601, 111, 13197), (37602, 111, 13466), (37603, 111, 13724), (37604, 111, 13736), (37605, 111, 13765), (37606, 111, 14205), (37607, 111, 14317), (37608, 111, 14388), (37609, 111, 14399), (37610, 111, 14555), (37611, 111, 14564), (37612, 111, 15505), (37613, 111, 15532), (37614, 111, 16500), (37615, 111, 16505), (37616, 111, 16604), (37617, 111, 16651), (37618, 111, 16686), (37619, 111, 16757), (37620, 111, 16785), (37621, 111, 17265), (37622, 111, 17385), (37623, 111, 17451), (37624, 111, 17457), (37625, 111, 17563), (37626, 111, 17705), (37627, 111, 17717), (37628, 111, 17726), (37629, 111, 17912), (37630, 111, 18050), (37631, 111, 18052), (37632, 111, 18241), (37633, 111, 18307), (37634, 111, 18319), (37635, 111, 18481), (37636, 111, 18614), (37637, 111, 18841), (37638, 111, 19591), (37639, 111, 19990), (37640, 111, 20573), (37641, 111, 20594), (37642, 111, 20821), (37643, 111, 20936), (37644, 111, 22000), (37645, 111, 23306), (37646, 111, 23685), (37647, 111, 23753), (37648, 111, 24531), (37686, 112, 31), (37687, 112, 36), (37688, 112, 207), (37689, 112, 232), (37690, 112, 362), (37691, 112, 441), (37692, 112, 686), (37693, 112, 749), (37694, 112, 862), (37695, 112, 898), (37696, 112, 1001), (37697, 112, 1032), (37698, 112, 1120), (37699, 112, 1123), (37700, 112, 1138), (37701, 112, 1194), (37702, 112, 1218), (37703, 112, 1314), (37704, 112, 1361), (37705, 112, 1645), (37706, 112, 1863), (37707, 112, 1888), (37708, 112, 1896), (37709, 112, 1926), (37710, 112, 1971), (37711, 112, 1992), (37712, 112, 2021), (37713, 112, 2216), (37714, 112, 2283), (37715, 112, 2336), (37716, 112, 2386), (37717, 112, 2426), (37718, 112, 2491), (37719, 112, 2494), (37720, 112, 2616), (37721, 112, 2632), (37722, 112, 2763), (37723, 112, 2790), (37724, 112, 2914), (37725, 112, 2972), (37726, 112, 3060), (37727, 112, 3346), (37728, 112, 3448), (37729, 112, 3476), (37730, 112, 3497), (37731, 112, 3607), (37732, 112, 3620), (37733, 112, 3709), (37734, 112, 3756), (37735, 112, 3798), (37736, 112, 3809), (37737, 112, 3814), (37738, 112, 3896), (37739, 112, 3976), (37740, 112, 3989), (37741, 112, 4029), (37742, 112, 4064), (37743, 112, 4160), (37744, 112, 4179), (37745, 112, 4363), (37746, 112, 4523), (37747, 112, 4536), (37748, 112, 4650), (37749, 112, 4697), (37750, 112, 4732), (37751, 112, 4861), (37752, 112, 4938), (37753, 112, 5115), (37754, 112, 5364), (37755, 112, 5444), (37756, 112, 5473), (37757, 112, 5493), (37758, 112, 5521), (37759, 112, 5584), (37760, 112, 5667), (37761, 112, 5778), (37762, 112, 6245), (37763, 112, 6297), (37764, 112, 6349), (37765, 112, 6446), (37766, 112, 6489), (37767, 112, 6670), (37768, 112, 6707), (37769, 112, 6760), (37770, 112, 6840), (37771, 112, 6853), (37772, 112, 6893), (37773, 112, 6942), (37774, 112, 7132), (37775, 112, 7136), (37776, 112, 7225), (37777, 112, 7246), (37778, 112, 7308), (37779, 112, 7344), (37780, 112, 7345), (37781, 112, 7350), (37782, 112, 7494), (37783, 112, 7626), (37784, 112, 7680), (37785, 112, 7753), (37786, 112, 7825), (37787, 112, 7827), (37788, 112, 7947), (37789, 112, 8010), (37790, 112, 8111), (37791, 112, 8206), (37792, 112, 8301), (37793, 112, 8541), (37794, 112, 8563), (37795, 112, 8612), (37796, 112, 8651), (37797, 112, 8686), (37798, 112, 8759), (37799, 112, 8798), (37800, 112, 8865), (37801, 112, 8950), (37802, 112, 9010), (37803, 112, 9011), (37804, 112, 9042), (37805, 112, 9090), (37806, 112, 9466), (37807, 112, 9651), (37808, 112, 9715), (37809, 112, 9834), (37810, 112, 9988), (37811, 112, 10023), (37812, 112, 10085), (37813, 112, 10308), (37814, 112, 10356), (37815, 112, 10479), (37816, 112, 10481), (37817, 112, 10716), (37818, 112, 10828), (37819, 112, 11014), (37820, 112, 11027), (37821, 112, 11211), (37822, 112, 11367), (37823, 112, 11687), (37824, 112, 11736), (37825, 112, 11742), (37826, 112, 11779), (37827, 112, 11840), (37828, 112, 11992), (37829, 112, 12038), (37830, 112, 12278), (37831, 112, 12349), (37832, 112, 12520), (37833, 112, 12686), (37834, 112, 12687), (37835, 112, 12881), (37836, 112, 12982), (37837, 112, 13095), (37838, 112, 13175), (37839, 112, 13252), (37840, 112, 13267), (37841, 112, 13416), (37842, 112, 13425), (37843, 112, 13535), (37844, 112, 13666), (37845, 112, 13809), (37846, 112, 13825), (37847, 112, 13927), (37848, 112, 14007), (37849, 112, 14039), (37850, 112, 14060), (37851, 112, 14097), (37852, 112, 14188), (37853, 112, 14284), (37854, 112, 14341), (37855, 112, 14471), (37856, 112, 14544), (37857, 112, 14553), (37858, 112, 14562), (37859, 112, 14610), (37860, 112, 14680), (37861, 112, 14781), (37862, 112, 15244), (37863, 112, 15260), (37864, 112, 15328), (37865, 112, 15476), (37866, 112, 15543), (37867, 112, 15640), (37868, 112, 15833), (37869, 112, 16054), (37870, 112, 16130), (37871, 112, 16344), (37872, 112, 16589), (37873, 112, 16721), (37874, 112, 17177), (37875, 112, 17182), (37876, 112, 17231), (37877, 112, 17281), (37878, 112, 17582), (37879, 112, 17641), (37880, 112, 17684), (37881, 112, 17772), (37882, 112, 17798), (37883, 112, 18269), (37884, 112, 18434), (37885, 112, 18661), (37886, 112, 18778), (37887, 112, 18787), (37888, 112, 19025), (37889, 112, 19120), (37890, 112, 19354), (37891, 112, 19583), (37892, 112, 19641), (37893, 112, 19886), (37894, 112, 19929), (37895, 112, 20472), (37896, 112, 21078), (37897, 112, 21141), (37898, 112, 21306), (37899, 112, 21369), (37900, 112, 21657), (37901, 112, 21789), (37902, 112, 21844), (37903, 112, 22244), (37904, 112, 22432), (37905, 112, 22741), (37906, 112, 22920), (37907, 112, 22921), (37908, 112, 23057), (37909, 112, 25002), (37910, 112, 25169), (37911, 112, 25202), (37941, 113, 312), (37942, 113, 617), (37943, 113, 661), (37944, 113, 1124), (37945, 113, 1327), (37946, 113, 1536), (37947, 113, 1696), (37948, 113, 1700), (37949, 113, 1846), (37950, 113, 1889), (37951, 113, 1983), (37952, 113, 2008), (37953, 113, 2136), (37954, 113, 2241), (37955, 113, 2379), (37956, 113, 2555), (37957, 113, 2641), (37958, 113, 2695), (37959, 113, 2723), (37960, 113, 2868), (37961, 113, 3034), (37962, 113, 3768), (37963, 113, 3918), (37964, 113, 4011), (37965, 113, 4408), (37966, 113, 4451), (37967, 113, 4467), (37968, 113, 4496), (37969, 113, 4500), (37970, 113, 4604), (37971, 113, 4625), (37972, 113, 4947), (37973, 113, 5034), (37974, 113, 5080), (37975, 113, 5184), (37976, 113, 5219), (37977, 113, 5441), (37978, 113, 5591), (37979, 113, 5592), (37980, 113, 6142), (37981, 113, 6422), (37982, 113, 6855), (37983, 113, 7028), (37984, 113, 7117), (37985, 113, 7569), (37986, 113, 7586), (37987, 113, 7810), (37988, 113, 8133), (37989, 113, 8357), (37990, 113, 8385), (37991, 113, 8407), (37992, 113, 8461), (37993, 113, 8809), (37994, 113, 8829), (37995, 113, 8847), (37996, 113, 8854), (37997, 113, 9038), (37998, 113, 9124), (37999, 113, 9202), (38000, 113, 9474), (38001, 113, 9508), (38002, 113, 9606), (38003, 113, 9639), (38004, 113, 9704), (38005, 113, 9827), (38006, 113, 9903), (38007, 113, 9964), (38008, 113, 10016), (38009, 113, 10026); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (38010, 113, 10100), (38011, 113, 10448), (38012, 113, 10452), (38013, 113, 10563), (38014, 113, 10678), (38015, 113, 10764), (38016, 113, 10796), (38017, 113, 10805), (38018, 113, 10865), (38019, 113, 10873), (38020, 113, 10936), (38021, 113, 11040), (38022, 113, 11230), (38023, 113, 11259), (38024, 113, 11403), (38025, 113, 11452), (38026, 113, 11525), (38027, 113, 11650), (38028, 113, 11662), (38029, 113, 11675), (38030, 113, 11684), (38031, 113, 11745), (38032, 113, 11880), (38033, 113, 11921), (38034, 113, 12041), (38035, 113, 12076), (38036, 113, 12125), (38037, 113, 12323), (38038, 113, 12870), (38039, 113, 13081), (38040, 113, 13195), (38041, 113, 13406), (38042, 113, 13442), (38043, 113, 13805), (38044, 113, 14283), (38045, 113, 14420), (38046, 113, 14516), (38047, 113, 14831), (38048, 113, 14872), (38049, 113, 14987), (38050, 113, 15049), (38051, 113, 15180), (38052, 113, 15198), (38053, 113, 15211), (38054, 113, 15221), (38055, 113, 15222), (38056, 113, 15380), (38057, 113, 15443), (38058, 113, 15466), (38059, 113, 15608), (38060, 113, 15851), (38061, 113, 16004), (38062, 113, 16139), (38063, 113, 16203), (38064, 113, 16313), (38065, 113, 16379), (38066, 113, 16491), (38067, 113, 16657), (38068, 113, 16722), (38069, 113, 16876), (38070, 113, 16927), (38071, 113, 17103), (38072, 113, 17295), (38073, 113, 17296), (38074, 113, 17319), (38075, 113, 17457), (38076, 113, 17737), (38077, 113, 18353), (38078, 113, 18547), (38079, 113, 18934), (38080, 113, 18939), (38081, 113, 19023), (38082, 113, 19058), (38083, 113, 19221), (38084, 113, 19567), (38085, 113, 19716), (38086, 113, 19843), (38087, 113, 19873), (38088, 113, 19919), (38089, 113, 19967), (38090, 113, 20126), (38091, 113, 20209), (38092, 113, 20632), (38093, 113, 21259), (38094, 113, 21315), (38095, 113, 21872), (38096, 113, 21924), (38097, 113, 22204), (38098, 113, 22706), (38099, 113, 23399), (38100, 113, 23685), (38101, 113, 24544), (38102, 113, 25054), (38196, 114, 567), (38197, 114, 577), (38198, 114, 598), (38199, 114, 712), (38200, 114, 1051), (38201, 114, 1114), (38202, 114, 1149), (38203, 114, 1235), (38204, 114, 1249), (38205, 114, 1324), (38206, 114, 1327), (38207, 114, 1344), (38208, 114, 1536), (38209, 114, 1696), (38210, 114, 1700), (38211, 114, 1846), (38212, 114, 1883), (38213, 114, 1889), (38214, 114, 1920), (38215, 114, 1979), (38216, 114, 1983), (38217, 114, 2008), (38218, 114, 2063), (38219, 114, 2136), (38220, 114, 2146), (38221, 114, 2343), (38222, 114, 2363), (38223, 114, 2379), (38224, 114, 2641), (38225, 114, 2695), (38226, 114, 2699), (38227, 114, 2723), (38228, 114, 2797), (38229, 114, 2868), (38230, 114, 3009), (38231, 114, 3034), (38232, 114, 3101), (38233, 114, 3516), (38234, 114, 3535), (38235, 114, 3548), (38236, 114, 3768), (38237, 114, 3918), (38238, 114, 4011), (38239, 114, 4099), (38240, 114, 4341), (38241, 114, 4387), (38242, 114, 4408), (38243, 114, 4451), (38244, 114, 4496), (38245, 114, 4604), (38246, 114, 4625), (38247, 114, 4689), (38248, 114, 4726), (38249, 114, 4837), (38250, 114, 4894), (38251, 114, 4898), (38252, 114, 4947), (38253, 114, 5034), (38254, 114, 5061), (38255, 114, 5080), (38256, 114, 5127), (38257, 114, 5159), (38258, 114, 5289), (38259, 114, 5441), (38260, 114, 5591), (38261, 114, 5592), (38262, 114, 5892), (38263, 114, 6094), (38264, 114, 6142), (38265, 114, 6285), (38266, 114, 6299), (38267, 114, 6368), (38268, 114, 6390), (38269, 114, 6422), (38270, 114, 6599), (38271, 114, 6792), (38272, 114, 6854), (38273, 114, 6855), (38274, 114, 7072), (38275, 114, 7144), (38276, 114, 7173), (38277, 114, 7212), (38278, 114, 7218), (38279, 114, 7225), (38280, 114, 7276), (38281, 114, 7454), (38282, 114, 7460), (38283, 114, 7481), (38284, 114, 7491), (38285, 114, 7514), (38286, 114, 7569), (38287, 114, 7586), (38288, 114, 7661), (38289, 114, 7810), (38290, 114, 7858), (38291, 114, 7916), (38292, 114, 8133), (38293, 114, 8180), (38294, 114, 8271), (38295, 114, 8278), (38296, 114, 8372), (38297, 114, 8374), (38298, 114, 8407), (38299, 114, 8461), (38300, 114, 8558), (38301, 114, 8622), (38302, 114, 8631), (38303, 114, 8644), (38304, 114, 8809), (38305, 114, 8854), (38306, 114, 8910), (38307, 114, 8948), (38308, 114, 9038), (38309, 114, 9129), (38310, 114, 9243), (38311, 114, 9296), (38312, 114, 9318), (38313, 114, 9335), (38314, 114, 9336), (38315, 114, 9338), (38316, 114, 9436), (38317, 114, 9442), (38318, 114, 9474), (38319, 114, 9616), (38320, 114, 9738), (38321, 114, 9760), (38322, 114, 9827), (38323, 114, 9903), (38324, 114, 9964), (38325, 114, 9980), (38326, 114, 9985), (38327, 114, 10060), (38328, 114, 10063), (38329, 114, 10109), (38330, 114, 10151), (38331, 114, 10395), (38332, 114, 10413), (38333, 114, 10452), (38334, 114, 10500), (38335, 114, 10502), (38336, 114, 10563), (38337, 114, 10643), (38338, 114, 10796), (38339, 114, 10805), (38340, 114, 10865), (38341, 114, 10876), (38342, 114, 10936), (38343, 114, 10979), (38344, 114, 11040), (38345, 114, 11230), (38346, 114, 11259), (38347, 114, 11286), (38348, 114, 11403), (38349, 114, 11452), (38350, 114, 11480), (38351, 114, 11525), (38352, 114, 11547), (38353, 114, 11596), (38354, 114, 11624), (38355, 114, 11650), (38356, 114, 11675), (38357, 114, 11745), (38358, 114, 11780), (38359, 114, 11798), (38360, 114, 11880), (38361, 114, 11901), (38362, 114, 11921), (38363, 114, 11994), (38364, 114, 12041), (38365, 114, 12045), (38366, 114, 12060), (38367, 114, 12125), (38368, 114, 12133), (38369, 114, 12158), (38370, 114, 12299), (38371, 114, 12323), (38372, 114, 12345), (38373, 114, 12350), (38374, 114, 12840), (38375, 114, 12875), (38376, 114, 12908), (38377, 114, 13081), (38378, 114, 13104), (38379, 114, 13119), (38380, 114, 13127), (38381, 114, 13133), (38382, 114, 13195), (38383, 114, 13249), (38384, 114, 13409), (38385, 114, 13446), (38386, 114, 13573), (38387, 114, 13629), (38388, 114, 13638), (38389, 114, 13666), (38390, 114, 13869), (38391, 114, 14084), (38392, 114, 14086), (38393, 114, 14122), (38394, 114, 14388), (38395, 114, 14403), (38396, 114, 14504), (38397, 114, 14516), (38398, 114, 14564), (38399, 114, 14714), (38400, 114, 14872), (38401, 114, 14956), (38402, 114, 15049), (38403, 114, 15050), (38404, 114, 15067), (38405, 114, 15155), (38406, 114, 15211), (38407, 114, 15222), (38408, 114, 15310), (38409, 114, 15488), (38410, 114, 15492), (38411, 114, 15534), (38412, 114, 15549), (38413, 114, 15580), (38414, 114, 15608), (38415, 114, 15762), (38416, 114, 15800), (38417, 114, 16139), (38418, 114, 16203), (38419, 114, 16302), (38420, 114, 16379), (38421, 114, 16427), (38422, 114, 16491), (38423, 114, 16539), (38424, 114, 16830), (38425, 114, 16876), (38426, 114, 16877), (38427, 114, 16927), (38428, 114, 17042), (38429, 114, 17047), (38430, 114, 17062), (38431, 114, 17118), (38432, 114, 17149), (38433, 114, 17269), (38434, 114, 17295), (38435, 114, 17296), (38436, 114, 17451), (38437, 114, 17566), (38438, 114, 17705), (38439, 114, 17912), (38440, 114, 17984), (38441, 114, 17989), (38442, 114, 18046), (38443, 114, 18052), (38444, 114, 18142), (38445, 114, 18204), (38446, 114, 18216), (38447, 114, 18353), (38448, 114, 18867), (38449, 114, 18934), (38450, 114, 18960), (38451, 114, 18984), (38452, 114, 19023), (38453, 114, 19155), (38454, 114, 19221), (38455, 114, 19359), (38456, 114, 19516), (38457, 114, 19716), (38458, 114, 19843), (38459, 114, 20126), (38460, 114, 20141), (38461, 114, 20276), (38462, 114, 20456), (38463, 114, 20573), (38464, 114, 20805), (38465, 114, 21035), (38466, 114, 21533), (38467, 114, 21872), (38468, 114, 22048), (38469, 114, 22164), (38470, 114, 22764), (38471, 114, 23135), (38472, 114, 23224), (38473, 114, 23378), (38474, 114, 23685), (38475, 114, 23844), (38476, 114, 23992), (38477, 114, 24167), (38478, 114, 24251), (38479, 114, 24332), (38480, 114, 24544), (38481, 114, 24569), (38482, 114, 24720), (38483, 114, 24761), (38707, 115, 873), (38708, 115, 2317), (38709, 115, 2439), (38710, 115, 3050), (38711, 115, 3289), (38712, 115, 3471), (38713, 115, 4240), (38714, 115, 4460), (38715, 115, 4710), (38716, 115, 5177), (38717, 115, 5752), (38718, 115, 6250), (38719, 115, 7057), (38720, 115, 7093), (38721, 115, 7595), (38722, 115, 8060), (38723, 115, 8129), (38724, 115, 8369), (38725, 115, 8662), (38726, 115, 8762), (38727, 115, 9045), (38728, 115, 9107), (38729, 115, 9244), (38730, 115, 9838), (38731, 115, 10060), (38732, 115, 10685), (38733, 115, 11036), (38734, 115, 11206), (38735, 115, 11403), (38736, 115, 11717), (38737, 115, 12299), (38738, 115, 12395), (38739, 115, 12424), (38740, 115, 12687), (38741, 115, 13272), (38742, 115, 13299), (38743, 115, 13319), (38744, 115, 13666), (38745, 115, 13736), (38746, 115, 13978), (38747, 115, 14422), (38748, 115, 14516), (38749, 115, 14650), (38750, 115, 14951), (38751, 115, 15294), (38752, 115, 15375), (38753, 115, 15564), (38754, 115, 15704), (38755, 115, 16000), (38756, 115, 16015), (38757, 115, 16124), (38758, 115, 16225), (38759, 115, 16301), (38760, 115, 16745), (38761, 115, 17047), (38762, 115, 17494), (38763, 115, 17916), (38764, 115, 17932), (38765, 115, 18178), (38766, 115, 19066), (38767, 115, 19222), (38768, 115, 19314), (38769, 115, 19758), (38770, 115, 20141), (38771, 115, 20204), (38772, 115, 20410), (38773, 115, 21035), (38774, 115, 21249), (38775, 115, 22075), (38776, 115, 22167), (38777, 115, 23405), (38778, 115, 25127), (38779, 115, 25176), (38834, 116, 503), (38835, 116, 584), (38836, 116, 592), (38837, 116, 666), (38838, 116, 894), (38839, 116, 961), (38840, 116, 991), (38841, 116, 1021), (38842, 116, 1051), (38843, 116, 1064), (38844, 116, 1254), (38845, 116, 1283), (38846, 116, 1336), (38847, 116, 1375), (38848, 116, 1536), (38849, 116, 1620), (38850, 116, 1629), (38851, 116, 1799), (38852, 116, 1821), (38853, 116, 1856), (38854, 116, 2038), (38855, 116, 2079), (38856, 116, 2176), (38857, 116, 2493), (38858, 116, 2543), (38859, 116, 2602), (38860, 116, 2616), (38861, 116, 2718), (38862, 116, 2744), (38863, 116, 2775), (38864, 116, 2878), (38865, 116, 2883), (38866, 116, 2923), (38867, 116, 3025), (38868, 116, 3067), (38869, 116, 3106), (38870, 116, 3279), (38871, 116, 3347), (38872, 116, 3444), (38873, 116, 3456), (38874, 116, 3482), (38875, 116, 3684), (38876, 116, 3702), (38877, 116, 3762), (38878, 116, 3943), (38879, 116, 4013), (38880, 116, 4199), (38881, 116, 4265), (38882, 116, 4657), (38883, 116, 4696), (38884, 116, 4860), (38885, 116, 4991), (38886, 116, 5077), (38887, 116, 5083), (38888, 116, 5178), (38889, 116, 5233), (38890, 116, 5307), (38891, 116, 5382), (38892, 116, 5610), (38893, 116, 5846), (38894, 116, 5900), (38895, 116, 5967), (38896, 116, 6182), (38897, 116, 6306), (38898, 116, 6617), (38899, 116, 6814), (38900, 116, 7106), (38901, 116, 7108), (38902, 116, 7241), (38903, 116, 7465), (38904, 116, 7685), (38905, 116, 7803), (38906, 116, 7815), (38907, 116, 8125), (38908, 116, 8328), (38909, 116, 8560), (38910, 116, 8710), (38911, 116, 8743), (38912, 116, 8904), (38913, 116, 8961), (38914, 116, 9132), (38915, 116, 9224), (38916, 116, 9322), (38917, 116, 9459), (38918, 116, 9815), (38919, 116, 10079), (38920, 116, 10192), (38921, 116, 10344), (38922, 116, 10405), (38923, 116, 10452), (38924, 116, 10508), (38925, 116, 10511), (38926, 116, 10563), (38927, 116, 10567), (38928, 116, 10702), (38929, 116, 10815), (38930, 116, 10912), (38931, 116, 11018), (38932, 116, 11036), (38933, 116, 11164), (38934, 116, 11197), (38935, 116, 11610), (38936, 116, 11617), (38937, 116, 11699), (38938, 116, 11824), (38939, 116, 11842), (38940, 116, 11901), (38941, 116, 11944), (38942, 116, 12007), (38943, 116, 12043), (38944, 116, 12112), (38945, 116, 12149), (38946, 116, 12402), (38947, 116, 12443), (38948, 116, 12544), (38949, 116, 12720), (38950, 116, 12794), (38951, 116, 12903), (38952, 116, 12906), (38953, 116, 12984), (38954, 116, 12992), (38955, 116, 13172), (38956, 116, 13186), (38957, 116, 13187), (38958, 116, 13228), (38959, 116, 13326), (38960, 116, 13387), (38961, 116, 13429), (38962, 116, 13500), (38963, 116, 13635), (38964, 116, 13804), (38965, 116, 13868), (38966, 116, 13869), (38967, 116, 13895), (38968, 116, 13948), (38969, 116, 13954), (38970, 116, 14005), (38971, 116, 14007), (38972, 116, 14058), (38973, 116, 14216), (38974, 116, 14246), (38975, 116, 14277), (38976, 116, 14278), (38977, 116, 14317), (38978, 116, 14323), (38979, 116, 14338), (38980, 116, 14445), (38981, 116, 14551), (38982, 116, 14589), (38983, 116, 14729), (38984, 116, 14752), (38985, 116, 14807), (38986, 116, 14904), (38987, 116, 14940), (38988, 116, 14951), (38989, 116, 14972), (38990, 116, 14988), (38991, 116, 15025), (38992, 116, 15234), (38993, 116, 15264), (38994, 116, 15474), (38995, 116, 15491), (38996, 116, 15500), (38997, 116, 15561), (38998, 116, 15571), (38999, 116, 15666), (39000, 116, 15830), (39001, 116, 15845), (39002, 116, 16146), (39003, 116, 16163), (39004, 116, 16190), (39005, 116, 16209), (39006, 116, 16222), (39007, 116, 16262), (39008, 116, 16367), (39009, 116, 16428), (39010, 116, 16482), (39011, 116, 16486), (39012, 116, 16617), (39013, 116, 16698), (39014, 116, 16748), (39015, 116, 16800), (39016, 116, 16883), (39017, 116, 17405), (39018, 116, 17670), (39019, 116, 17678), (39020, 116, 17726), (39021, 116, 17755), (39022, 116, 17922), (39023, 116, 17927), (39024, 116, 17995), (39025, 116, 18035), (39026, 116, 18050), (39027, 116, 18077), (39028, 116, 18163), (39029, 116, 18331), (39030, 116, 18333), (39031, 116, 18483), (39032, 116, 18673), (39033, 116, 18690), (39034, 116, 18797), (39035, 116, 18922), (39036, 116, 19073), (39037, 116, 19195), (39038, 116, 19317), (39039, 116, 19576), (39040, 116, 19733), (39041, 116, 19887), (39042, 116, 19988), (39043, 116, 20149), (39044, 116, 20151), (39045, 116, 20573), (39046, 116, 20594), (39047, 116, 20598), (39048, 116, 20643), (39049, 116, 20761), (39050, 116, 20849), (39051, 116, 20933), (39052, 116, 21040), (39053, 116, 21482), (39054, 116, 22000), (39055, 116, 22096), (39056, 116, 22233), (39057, 116, 22739), (39058, 116, 22843), (39059, 116, 23405), (39060, 116, 24607), (39061, 116, 24778), (39062, 116, 25016), (39063, 116, 25027), (39064, 116, 25071), (39065, 116, 25072), (39066, 116, 25100), (39067, 116, 25210), (39089, 117, 36), (39090, 117, 82), (39091, 117, 179), (39092, 117, 224), (39093, 117, 342), (39094, 117, 405), (39095, 117, 494), (39096, 117, 503), (39097, 117, 538), (39098, 117, 556), (39099, 117, 584), (39100, 117, 592), (39101, 117, 634), (39102, 117, 690), (39103, 117, 693), (39104, 117, 737), (39105, 117, 746), (39106, 117, 819), (39107, 117, 844), (39108, 117, 864), (39109, 117, 868), (39110, 117, 894), (39111, 117, 961), (39112, 117, 967), (39113, 117, 1007), (39114, 117, 1036), (39115, 117, 1064), (39116, 117, 1134), (39117, 117, 1147), (39118, 117, 1151), (39119, 117, 1188), (39120, 117, 1194), (39121, 117, 1221), (39122, 117, 1254), (39123, 117, 1269), (39124, 117, 1327), (39125, 117, 1375), (39126, 117, 1534), (39127, 117, 1543), (39128, 117, 1610), (39129, 117, 1629), (39130, 117, 1696), (39131, 117, 1789), (39132, 117, 1799), (39133, 117, 1867), (39134, 117, 1888), (39135, 117, 1903), (39136, 117, 1929), (39137, 117, 1976), (39138, 117, 1977), (39139, 117, 2038), (39140, 117, 2051), (39141, 117, 2052), (39142, 117, 2064), (39143, 117, 2120), (39144, 117, 2275), (39145, 117, 2304), (39146, 117, 2543), (39147, 117, 2589), (39148, 117, 2590), (39149, 117, 2605), (39150, 117, 2616), (39151, 117, 2674), (39152, 117, 2680), (39153, 117, 2715), (39154, 117, 2718), (39155, 117, 2775), (39156, 117, 2839), (39157, 117, 2840), (39158, 117, 2866), (39159, 117, 2883), (39160, 117, 2926), (39161, 117, 2932), (39162, 117, 3025), (39163, 117, 3106), (39164, 117, 3107), (39165, 117, 3162), (39166, 117, 3279), (39167, 117, 3347), (39168, 117, 3417), (39169, 117, 3482), (39170, 117, 3501), (39171, 117, 3527), (39172, 117, 3565), (39173, 117, 3684), (39174, 117, 3781), (39175, 117, 3785), (39176, 117, 3943), (39177, 117, 3996), (39178, 117, 4100), (39179, 117, 4103), (39180, 117, 4159), (39181, 117, 4168), (39182, 117, 4179), (39183, 117, 4261), (39184, 117, 4661), (39185, 117, 4692), (39186, 117, 4696), (39187, 117, 4779), (39188, 117, 4806), (39189, 117, 4860), (39190, 117, 4901), (39191, 117, 4902), (39192, 117, 4991), (39193, 117, 5061), (39194, 117, 5077), (39195, 117, 5132), (39196, 117, 5158), (39197, 117, 5176), (39198, 117, 5232), (39199, 117, 5256), (39200, 117, 5265), (39201, 117, 5307), (39202, 117, 5331), (39203, 117, 5463), (39204, 117, 5479), (39205, 117, 5535), (39206, 117, 5605), (39207, 117, 5610), (39208, 117, 5644), (39209, 117, 5712), (39210, 117, 5774), (39211, 117, 5775), (39212, 117, 5820), (39213, 117, 5885), (39214, 117, 5920), (39215, 117, 5924), (39216, 117, 5925), (39217, 117, 6004), (39218, 117, 6060), (39219, 117, 6073), (39220, 117, 6076), (39221, 117, 6160), (39222, 117, 6181), (39223, 117, 6214), (39224, 117, 6306), (39225, 117, 6358), (39226, 117, 6397), (39227, 117, 6507), (39228, 117, 6513), (39229, 117, 6533), (39230, 117, 6593), (39231, 117, 6594), (39232, 117, 6617), (39233, 117, 6678), (39234, 117, 6695), (39235, 117, 6724), (39236, 117, 6830), (39237, 117, 6929), (39238, 117, 6968), (39239, 117, 6993), (39240, 117, 7066), (39241, 117, 7106), (39242, 117, 7168), (39243, 117, 7302), (39244, 117, 7344), (39245, 117, 7400), (39246, 117, 7464), (39247, 117, 7525), (39248, 117, 7556), (39249, 117, 7680), (39250, 117, 7685), (39251, 117, 7721), (39252, 117, 7722), (39253, 117, 7744), (39254, 117, 7758), (39255, 117, 7793), (39256, 117, 7798), (39257, 117, 7803), (39258, 117, 7815), (39259, 117, 7818), (39260, 117, 7880), (39261, 117, 7946), (39262, 117, 7947), (39263, 117, 7983), (39264, 117, 8015), (39265, 117, 8051), (39266, 117, 8226), (39267, 117, 8233), (39268, 117, 8257), (39269, 117, 8289), (39270, 117, 8321), (39271, 117, 8339), (39272, 117, 8367), (39273, 117, 8368), (39274, 117, 8375), (39275, 117, 8398), (39276, 117, 8438), (39277, 117, 8450), (39278, 117, 8514), (39279, 117, 8545), (39280, 117, 8560), (39281, 117, 8571), (39282, 117, 8633), (39283, 117, 8710), (39284, 117, 8743), (39285, 117, 8831), (39286, 117, 8855), (39287, 117, 8892), (39288, 117, 8895), (39289, 117, 8910), (39290, 117, 8977), (39291, 117, 9028), (39292, 117, 9052), (39293, 117, 9132), (39294, 117, 9134), (39295, 117, 9142), (39296, 117, 9159), (39297, 117, 9224), (39298, 117, 9247), (39299, 117, 9264), (39300, 117, 9323), (39301, 117, 9416), (39302, 117, 9436), (39303, 117, 9561), (39304, 117, 9570), (39305, 117, 9660), (39306, 117, 9689), (39307, 117, 9754), (39308, 117, 9815), (39309, 117, 9853), (39310, 117, 9893), (39311, 117, 9918), (39312, 117, 9938), (39313, 117, 9942), (39314, 117, 9974), (39315, 117, 9979), (39316, 117, 10035), (39317, 117, 10087), (39318, 117, 10180), (39319, 117, 10234), (39320, 117, 10313), (39321, 117, 10335), (39322, 117, 10372), (39323, 117, 10388), (39324, 117, 10422), (39325, 117, 10452), (39326, 117, 10538), (39327, 117, 10595), (39328, 117, 10612), (39329, 117, 10716), (39330, 117, 10754), (39331, 117, 10767), (39332, 117, 10785), (39333, 117, 10815), (39334, 117, 10895), (39335, 117, 10906), (39336, 117, 10971), (39337, 117, 10972), (39338, 117, 11062), (39339, 117, 11078), (39340, 117, 11180), (39341, 117, 11183), (39342, 117, 11243), (39343, 117, 11278), (39344, 117, 11280), (39345, 117, 11284), (39346, 117, 11290), (39347, 117, 11317), (39348, 117, 11331), (39349, 117, 11416), (39350, 117, 11489), (39351, 117, 11539), (39352, 117, 11610), (39353, 117, 11638), (39354, 117, 11643), (39355, 117, 11699), (39356, 117, 11766), (39357, 117, 11773), (39358, 117, 11774), (39359, 117, 11821), (39360, 117, 11824), (39361, 117, 11841), (39362, 117, 11842), (39363, 117, 11901), (39364, 117, 11945), (39365, 117, 11964), (39366, 117, 11995), (39367, 117, 12028), (39368, 117, 12029), (39369, 117, 12072), (39370, 117, 12126), (39371, 117, 12136), (39372, 117, 12149), (39373, 117, 12187), (39374, 117, 12219), (39375, 117, 12293), (39376, 117, 12319), (39377, 117, 12408), (39378, 117, 12420), (39379, 117, 12431), (39380, 117, 12449), (39381, 117, 12471), (39382, 117, 12476), (39383, 117, 12544), (39384, 117, 12570), (39385, 117, 12623), (39386, 117, 12668), (39387, 117, 12701), (39388, 117, 12720), (39389, 117, 12781), (39390, 117, 12784), (39391, 117, 12810), (39392, 117, 12930), (39393, 117, 12953), (39394, 117, 12990), (39395, 117, 12992), (39396, 117, 13063), (39397, 117, 13080), (39398, 117, 13138), (39399, 117, 13208), (39400, 117, 13228), (39401, 117, 13445), (39402, 117, 13489), (39403, 117, 13500), (39404, 117, 13558), (39405, 117, 13564), (39406, 117, 13571), (39407, 117, 13583), (39408, 117, 13785), (39409, 117, 13802), (39410, 117, 13921), (39411, 117, 13981), (39412, 117, 13982), (39413, 117, 13985), (39414, 117, 14004), (39415, 117, 14005), (39416, 117, 14031), (39417, 117, 14100), (39418, 117, 14187), (39419, 117, 14192), (39420, 117, 14246), (39421, 117, 14278), (39422, 117, 14279), (39423, 117, 14338), (39424, 117, 14348), (39425, 117, 14367), (39426, 117, 14388), (39427, 117, 14392), (39428, 117, 14445), (39429, 117, 14447), (39430, 117, 14453), (39431, 117, 14487), (39432, 117, 14522), (39433, 117, 14526), (39434, 117, 14552), (39435, 117, 14589), (39436, 117, 14621), (39437, 117, 14651), (39438, 117, 14676), (39439, 117, 14698), (39440, 117, 14728), (39441, 117, 14751), (39442, 117, 14752), (39443, 117, 14765), (39444, 117, 14802), (39445, 117, 14928), (39446, 117, 14940), (39447, 117, 14943), (39448, 117, 14954), (39449, 117, 14979), (39450, 117, 15009), (39451, 117, 15011), (39452, 117, 15015), (39453, 117, 15081), (39454, 117, 15083), (39455, 117, 15107), (39456, 117, 15115), (39457, 117, 15208), (39458, 117, 15227), (39459, 117, 15264), (39460, 117, 15279), (39461, 117, 15292), (39462, 117, 15295), (39463, 117, 15301), (39464, 117, 15331), (39465, 117, 15340), (39466, 117, 15365), (39467, 117, 15388), (39468, 117, 15396), (39469, 117, 15404), (39470, 117, 15427), (39471, 117, 15439), (39472, 117, 15440), (39473, 117, 15491), (39474, 117, 15499), (39475, 117, 15500), (39476, 117, 15504), (39477, 117, 15570), (39478, 117, 15571), (39479, 117, 15603), (39480, 117, 15650), (39481, 117, 15680), (39482, 117, 15689), (39483, 117, 15762), (39484, 117, 15800), (39485, 117, 15808), (39486, 117, 15811), (39487, 117, 15861), (39488, 117, 15942), (39489, 117, 15984), (39490, 117, 16163), (39491, 117, 16222), (39492, 117, 16249), (39493, 117, 16262), (39494, 117, 16367), (39495, 117, 16399), (39496, 117, 16406), (39497, 117, 16426), (39498, 117, 16428), (39499, 117, 16432), (39500, 117, 16435), (39501, 117, 16456), (39502, 117, 16459), (39503, 117, 16468), (39504, 117, 16479), (39505, 117, 16544), (39506, 117, 16643), (39507, 117, 16671), (39508, 117, 16684), (39509, 117, 16698), (39510, 117, 16703), (39511, 117, 16708), (39512, 117, 16736), (39513, 117, 16748), (39514, 117, 16750), (39515, 117, 16770), (39516, 117, 16811), (39517, 117, 16835), (39518, 117, 16877), (39519, 117, 16913), (39520, 117, 16919), (39521, 117, 16934), (39522, 117, 16937), (39523, 117, 17010), (39524, 117, 17011), (39525, 117, 17031), (39526, 117, 17105), (39527, 117, 17115), (39528, 117, 17123), (39529, 117, 17160), (39530, 117, 17176), (39531, 117, 17257), (39532, 117, 17315), (39533, 117, 17343), (39534, 117, 17470), (39535, 117, 17483), (39536, 117, 17487), (39537, 117, 17497), (39538, 117, 17533), (39539, 117, 17541), (39540, 117, 17543), (39541, 117, 17566), (39542, 117, 17582), (39543, 117, 17626), (39544, 117, 17629), (39545, 117, 17713), (39546, 117, 17717), (39547, 117, 17726), (39548, 117, 17838), (39549, 117, 17874), (39550, 117, 17884), (39551, 117, 17892), (39552, 117, 17893), (39553, 117, 17923), (39554, 117, 17951), (39555, 117, 17955), (39556, 117, 18023), (39557, 117, 18032), (39558, 117, 18035), (39559, 117, 18039), (39560, 117, 18079), (39561, 117, 18167), (39562, 117, 18168), (39563, 117, 18176), (39564, 117, 18190), (39565, 117, 18194), (39566, 117, 18195), (39567, 117, 18216), (39568, 117, 18264), (39569, 117, 18273), (39570, 117, 18301), (39571, 117, 18302), (39572, 117, 18304), (39573, 117, 18327), (39574, 117, 18331), (39575, 117, 18457), (39576, 117, 18470), (39577, 117, 18484), (39578, 117, 18523), (39579, 117, 18670), (39580, 117, 18689), (39581, 117, 18707), (39582, 117, 18711), (39583, 117, 18716), (39584, 117, 18793), (39585, 117, 18795), (39586, 117, 18797), (39587, 117, 19075), (39588, 117, 19113), (39589, 117, 19121), (39590, 117, 19195), (39591, 117, 19202), (39592, 117, 19204), (39593, 117, 19247), (39594, 117, 19314), (39595, 117, 19317), (39596, 117, 19420), (39597, 117, 19432), (39598, 117, 19529), (39599, 117, 19537), (39600, 117, 19539), (39601, 117, 19596), (39602, 117, 19608), (39603, 117, 19630), (39604, 117, 19808), (39605, 117, 19821), (39606, 117, 19858), (39607, 117, 19871), (39608, 117, 19935), (39609, 117, 19982), (39610, 117, 19988), (39611, 117, 20009), (39612, 117, 20041), (39613, 117, 20097), (39614, 117, 20159), (39615, 117, 20172), (39616, 117, 20180), (39617, 117, 20196), (39618, 117, 20229), (39619, 117, 20232), (39620, 117, 20240), (39621, 117, 20276), (39622, 117, 20286), (39623, 117, 20291), (39624, 117, 20324), (39625, 117, 20343), (39626, 117, 20344), (39627, 117, 20380), (39628, 117, 20442), (39629, 117, 20459), (39630, 117, 20482), (39631, 117, 20594), (39632, 117, 20635), (39633, 117, 20647), (39634, 117, 20668), (39635, 117, 20670), (39636, 117, 20773), (39637, 117, 20810), (39638, 117, 20849), (39639, 117, 20872), (39640, 117, 20880), (39641, 117, 20885), (39642, 117, 20927), (39643, 117, 20935), (39644, 117, 20961), (39645, 117, 20973), (39646, 117, 21040), (39647, 117, 21118), (39648, 117, 21119), (39649, 117, 21189), (39650, 117, 21191), (39651, 117, 21347), (39652, 117, 21356), (39653, 117, 21367), (39654, 117, 21385), (39655, 117, 21487), (39656, 117, 21616), (39657, 117, 21654), (39658, 117, 21752), (39659, 117, 21766), (39660, 117, 21900), (39661, 117, 21910), (39662, 117, 22100), (39663, 117, 22454), (39664, 117, 22633), (39665, 117, 22663), (39666, 117, 22734), (39667, 117, 22994), (39668, 117, 23024), (39669, 117, 23038), (39670, 117, 23249), (39671, 117, 23309), (39672, 117, 23346), (39673, 117, 23378), (39674, 117, 23403), (39675, 117, 23405), (39676, 117, 23439), (39677, 117, 23671), (39678, 117, 23977), (39679, 117, 24042), (39680, 117, 24163), (39681, 117, 24168), (39682, 117, 24187), (39683, 117, 24251), (39684, 117, 24384), (39685, 117, 24484), (39686, 117, 24614), (39687, 117, 24722), (39688, 117, 24733), (39689, 117, 24827), (39690, 117, 24909), (39691, 117, 24966), (39692, 117, 25016), (39693, 117, 25027), (39694, 117, 25045), (39695, 117, 25065), (39696, 117, 25072), (39697, 117, 25156), (39698, 117, 25176), (40112, 118, 26), (40113, 118, 75), (40114, 118, 117), (40115, 118, 161), (40116, 118, 236), (40117, 118, 250), (40118, 118, 294), (40119, 118, 392), (40120, 118, 415), (40121, 118, 428), (40122, 118, 440), (40123, 118, 441), (40124, 118, 639), (40125, 118, 739), (40126, 118, 747), (40127, 118, 749), (40128, 118, 792), (40129, 118, 806), (40130, 118, 874), (40131, 118, 911), (40132, 118, 949), (40133, 118, 1026), (40134, 118, 1274), (40135, 118, 1372), (40136, 118, 1452), (40137, 118, 1474), (40138, 118, 1534), (40139, 118, 1543), (40140, 118, 1585), (40141, 118, 1600), (40142, 118, 1639), (40143, 118, 1646), (40144, 118, 1881), (40145, 118, 1887), (40146, 118, 1913), (40147, 118, 1930), (40148, 118, 1956), (40149, 118, 2044), (40150, 118, 2080), (40151, 118, 2145), (40152, 118, 2155), (40153, 118, 2158), (40154, 118, 2174), (40155, 118, 2185), (40156, 118, 2225), (40157, 118, 2240), (40158, 118, 2347), (40159, 118, 2396), (40160, 118, 2431), (40161, 118, 2582), (40162, 118, 2583), (40163, 118, 2595), (40164, 118, 2616), (40165, 118, 2632), (40166, 118, 2706), (40167, 118, 2729), (40168, 118, 2767), (40169, 118, 2804), (40170, 118, 3066), (40171, 118, 3119), (40172, 118, 3160), (40173, 118, 3207), (40174, 118, 3354), (40175, 118, 3396), (40176, 118, 3530), (40177, 118, 3559), (40178, 118, 3686), (40179, 118, 3691), (40180, 118, 3699), (40181, 118, 3740), (40182, 118, 3748), (40183, 118, 3751), (40184, 118, 3772), (40185, 118, 3806), (40186, 118, 3828), (40187, 118, 3855), (40188, 118, 3928), (40189, 118, 4132), (40190, 118, 4165), (40191, 118, 4198), (40192, 118, 4239), (40193, 118, 4337), (40194, 118, 4485), (40195, 118, 4510), (40196, 118, 4532), (40197, 118, 4545), (40198, 118, 4557), (40199, 118, 4558), (40200, 118, 4812), (40201, 118, 4872), (40202, 118, 4875), (40203, 118, 4877), (40204, 118, 4925), (40205, 118, 4933), (40206, 118, 4949), (40207, 118, 4960), (40208, 118, 5002), (40209, 118, 5157), (40210, 118, 5178), (40211, 118, 5194), (40212, 118, 5202), (40213, 118, 5236), (40214, 118, 5238), (40215, 118, 5329), (40216, 118, 5401), (40217, 118, 5403), (40218, 118, 5440), (40219, 118, 5486), (40220, 118, 5523), (40221, 118, 5546), (40222, 118, 5600), (40223, 118, 5642), (40224, 118, 5653), (40225, 118, 5687), (40226, 118, 5750), (40227, 118, 5752), (40228, 118, 5788), (40229, 118, 5817), (40230, 118, 5995), (40231, 118, 6003), (40232, 118, 6096), (40233, 118, 6196), (40234, 118, 6250), (40235, 118, 6273), (40236, 118, 6305), (40237, 118, 6319), (40238, 118, 6429), (40239, 118, 6448), (40240, 118, 6450), (40241, 118, 6518), (40242, 118, 6584), (40243, 118, 6588), (40244, 118, 6600), (40245, 118, 6649), (40246, 118, 6750), (40247, 118, 6753), (40248, 118, 6808), (40249, 118, 6827), (40250, 118, 7008), (40251, 118, 7045), (40252, 118, 7151), (40253, 118, 7185), (40254, 118, 7264), (40255, 118, 7285), (40256, 118, 7302), (40257, 118, 7354), (40258, 118, 7417), (40259, 118, 7421), (40260, 118, 7469), (40261, 118, 7493), (40262, 118, 7690), (40263, 118, 7716), (40264, 118, 7724), (40265, 118, 7822), (40266, 118, 7839), (40267, 118, 8008), (40268, 118, 8086), (40269, 118, 8088), (40270, 118, 8109), (40271, 118, 8208), (40272, 118, 8228), (40273, 118, 8258), (40274, 118, 8265), (40275, 118, 8270), (40276, 118, 8283), (40277, 118, 8384), (40278, 118, 8424), (40279, 118, 8470), (40280, 118, 8519), (40281, 118, 8561), (40282, 118, 8623), (40283, 118, 8634), (40284, 118, 8681), (40285, 118, 8696), (40286, 118, 8769), (40287, 118, 8821), (40288, 118, 8868), (40289, 118, 8917), (40290, 118, 8982), (40291, 118, 9131), (40292, 118, 9187), (40293, 118, 9216), (40294, 118, 9283), (40295, 118, 9307), (40296, 118, 9333), (40297, 118, 9406), (40298, 118, 9411), (40299, 118, 9458), (40300, 118, 9514), (40301, 118, 9518), (40302, 118, 9582), (40303, 118, 9596), (40304, 118, 9608), (40305, 118, 9609), (40306, 118, 9680), (40307, 118, 9691), (40308, 118, 9699), (40309, 118, 9866), (40310, 118, 9906), (40311, 118, 9938), (40312, 118, 9946), (40313, 118, 9969), (40314, 118, 9984), (40315, 118, 10008), (40316, 118, 10122), (40317, 118, 10142), (40318, 118, 10248), (40319, 118, 10405), (40320, 118, 10414), (40321, 118, 10588), (40322, 118, 10609), (40323, 118, 10619), (40324, 118, 10628), (40325, 118, 10661), (40326, 118, 10672), (40327, 118, 10726), (40328, 118, 10763), (40329, 118, 10776), (40330, 118, 10799), (40331, 118, 10845), (40332, 118, 10849), (40333, 118, 10862), (40334, 118, 10893), (40335, 118, 10937), (40336, 118, 10945), (40337, 118, 10964), (40338, 118, 10969), (40339, 118, 10984), (40340, 118, 11025), (40341, 118, 11041), (40342, 118, 11050), (40343, 118, 11100), (40344, 118, 11116), (40345, 118, 11120), (40346, 118, 11158), (40347, 118, 11206), (40348, 118, 11263), (40349, 118, 11269), (40350, 118, 11282), (40351, 118, 11307), (40352, 118, 11323), (40353, 118, 11374), (40354, 118, 11459), (40355, 118, 11490), (40356, 118, 11522), (40357, 118, 11532), (40358, 118, 11537), (40359, 118, 11554), (40360, 118, 11581), (40361, 118, 11586), (40362, 118, 11602), (40363, 118, 11619), (40364, 118, 11703), (40365, 118, 11717), (40366, 118, 11745), (40367, 118, 11822), (40368, 118, 11833), (40369, 118, 11863), (40370, 118, 11879), (40371, 118, 11915), (40372, 118, 11936), (40373, 118, 11984), (40374, 118, 12040), (40375, 118, 12056), (40376, 118, 12058), (40377, 118, 12124), (40378, 118, 12156), (40379, 118, 12158), (40380, 118, 12163), (40381, 118, 12227), (40382, 118, 12339), (40383, 118, 12371), (40384, 118, 12380), (40385, 118, 12428), (40386, 118, 12440), (40387, 118, 12447), (40388, 118, 12472), (40389, 118, 12498), (40390, 118, 12628), (40391, 118, 12634), (40392, 118, 12641), (40393, 118, 12669), (40394, 118, 12778), (40395, 118, 12815), (40396, 118, 12825), (40397, 118, 12859), (40398, 118, 12913), (40399, 118, 12924), (40400, 118, 12925), (40401, 118, 12936), (40402, 118, 12970), (40403, 118, 12998), (40404, 118, 13021), (40405, 118, 13045), (40406, 118, 13074), (40407, 118, 13084), (40408, 118, 13172), (40409, 118, 13210), (40410, 118, 13240), (40411, 118, 13304), (40412, 118, 13367), (40413, 118, 13393), (40414, 118, 13449), (40415, 118, 13459), (40416, 118, 13508), (40417, 118, 13563), (40418, 118, 13577), (40419, 118, 13629), (40420, 118, 13671), (40421, 118, 13674), (40422, 118, 13680), (40423, 118, 13695), (40424, 118, 13771), (40425, 118, 13794), (40426, 118, 13868), (40427, 118, 13937), (40428, 118, 13939), (40429, 118, 13945), (40430, 118, 14014), (40431, 118, 14022), (40432, 118, 14084), (40433, 118, 14128), (40434, 118, 14197), (40435, 118, 14202), (40436, 118, 14238), (40437, 118, 14240), (40438, 118, 14318), (40439, 118, 14405), (40440, 118, 14512), (40441, 118, 14538), (40442, 118, 14605), (40443, 118, 14606), (40444, 118, 14639), (40445, 118, 14647), (40446, 118, 14674), (40447, 118, 14679), (40448, 118, 14689), (40449, 118, 14720), (40450, 118, 14730), (40451, 118, 14751), (40452, 118, 14772), (40453, 118, 14788), (40454, 118, 14793), (40455, 118, 14794), (40456, 118, 14803), (40457, 118, 14851), (40458, 118, 14856), (40459, 118, 14878), (40460, 118, 14946), (40461, 118, 14949), (40462, 118, 14982), (40463, 118, 14989), (40464, 118, 15005), (40465, 118, 15028), (40466, 118, 15040), (40467, 118, 15090), (40468, 118, 15093), (40469, 118, 15128), (40470, 118, 15150), (40471, 118, 15161), (40472, 118, 15212), (40473, 118, 15214), (40474, 118, 15239), (40475, 118, 15286), (40476, 118, 15371), (40477, 118, 15409), (40478, 118, 15415), (40479, 118, 15445), (40480, 118, 15514), (40481, 118, 15530), (40482, 118, 15534), (40483, 118, 15620), (40484, 118, 15625), (40485, 118, 15631), (40486, 118, 15669), (40487, 118, 15676), (40488, 118, 15762), (40489, 118, 15789), (40490, 118, 15793), (40491, 118, 15920), (40492, 118, 15925), (40493, 118, 15943), (40494, 118, 15945), (40495, 118, 15959), (40496, 118, 15962), (40497, 118, 15968), (40498, 118, 16017), (40499, 118, 16022), (40500, 118, 16050), (40501, 118, 16081), (40502, 118, 16100), (40503, 118, 16107), (40504, 118, 16161), (40505, 118, 16224), (40506, 118, 16227), (40507, 118, 16243), (40508, 118, 16250), (40509, 118, 16255), (40510, 118, 16307), (40511, 118, 16325), (40512, 118, 16326), (40513, 118, 16359), (40514, 118, 16378), (40515, 118, 16419), (40516, 118, 16439), (40517, 118, 16487), (40518, 118, 16496), (40519, 118, 16519), (40520, 118, 16536), (40521, 118, 16559), (40522, 118, 16601), (40523, 118, 16602), (40524, 118, 16655), (40525, 118, 16658), (40526, 118, 16678), (40527, 118, 16694), (40528, 118, 16737), (40529, 118, 16739), (40530, 118, 16799), (40531, 118, 16832), (40532, 118, 16878), (40533, 118, 16924), (40534, 118, 16944), (40535, 118, 16959), (40536, 118, 16971), (40537, 118, 16980), (40538, 118, 17025), (40539, 118, 17063), (40540, 118, 17126), (40541, 118, 17127), (40542, 118, 17141), (40543, 118, 17158), (40544, 118, 17161), (40545, 118, 17186), (40546, 118, 17209), (40547, 118, 17224), (40548, 118, 17236), (40549, 118, 17238), (40550, 118, 17249), (40551, 118, 17291), (40552, 118, 17319), (40553, 118, 17324), (40554, 118, 17350), (40555, 118, 17403), (40556, 118, 17412), (40557, 118, 17414), (40558, 118, 17444), (40559, 118, 17473), (40560, 118, 17482), (40561, 118, 17503), (40562, 118, 17582), (40563, 118, 17584), (40564, 118, 17585), (40565, 118, 17621), (40566, 118, 17634), (40567, 118, 17643), (40568, 118, 17742), (40569, 118, 17774), (40570, 118, 17784), (40571, 118, 17791), (40572, 118, 17851), (40573, 118, 17897), (40574, 118, 17941), (40575, 118, 17947), (40576, 118, 17973), (40577, 118, 17986), (40578, 118, 18017), (40579, 118, 18044), (40580, 118, 18076), (40581, 118, 18174), (40582, 118, 18217), (40583, 118, 18244), (40584, 118, 18249), (40585, 118, 18421), (40586, 118, 18483), (40587, 118, 18518), (40588, 118, 18552), (40589, 118, 18567), (40590, 118, 18578), (40591, 118, 18629), (40592, 118, 18636), (40593, 118, 18642), (40594, 118, 18682), (40595, 118, 18692), (40596, 118, 18752), (40597, 118, 18780), (40598, 118, 18790), (40599, 118, 18844), (40600, 118, 18886), (40601, 118, 18928), (40602, 118, 18936), (40603, 118, 18992), (40604, 118, 19072), (40605, 118, 19077), (40606, 118, 19106), (40607, 118, 19129), (40608, 118, 19150), (40609, 118, 19157), (40610, 118, 19163), (40611, 118, 19170), (40612, 118, 19189), (40613, 118, 19193), (40614, 118, 19252), (40615, 118, 19309), (40616, 118, 19310), (40617, 118, 19332), (40618, 118, 19417), (40619, 118, 19426), (40620, 118, 19451), (40621, 118, 19461), (40622, 118, 19471), (40623, 118, 19515), (40624, 118, 19524), (40625, 118, 19535), (40626, 118, 19547), (40627, 118, 19570), (40628, 118, 19584), (40629, 118, 19624), (40630, 118, 19668), (40631, 118, 19681), (40632, 118, 19773), (40633, 118, 19796), (40634, 118, 19877), (40635, 118, 19925), (40636, 118, 19959), (40637, 118, 19979), (40638, 118, 20008), (40639, 118, 20025), (40640, 118, 20030), (40641, 118, 20047), (40642, 118, 20112), (40643, 118, 20122), (40644, 118, 20125), (40645, 118, 20141), (40646, 118, 20163), (40647, 118, 20177), (40648, 118, 20203), (40649, 118, 20319), (40650, 118, 20340), (40651, 118, 20342), (40652, 118, 20410), (40653, 118, 20542), (40654, 118, 20580), (40655, 118, 20630), (40656, 118, 20644), (40657, 118, 20676), (40658, 118, 20716), (40659, 118, 20723), (40660, 118, 20737), (40661, 118, 20859), (40662, 118, 20869), (40663, 118, 20907), (40664, 118, 20957), (40665, 118, 20986), (40666, 118, 20987), (40667, 118, 21024), (40668, 118, 21049), (40669, 118, 21111), (40670, 118, 21113), (40671, 118, 21135), (40672, 118, 21153), (40673, 118, 21211), (40674, 118, 21277), (40675, 118, 21359), (40676, 118, 21419), (40677, 118, 21429), (40678, 118, 21463), (40679, 118, 21573), (40680, 118, 21577), (40681, 118, 21621), (40682, 118, 21676), (40683, 118, 21746), (40684, 118, 21752), (40685, 118, 21787), (40686, 118, 21878), (40687, 118, 21902), (40688, 118, 21950), (40689, 118, 22061), (40690, 118, 22072), (40691, 118, 22329), (40692, 118, 22355), (40693, 118, 22512), (40694, 118, 22617), (40695, 118, 22773), (40696, 118, 22788), (40697, 118, 22823), (40698, 118, 22850), (40699, 118, 22891), (40700, 118, 22950), (40701, 118, 23027), (40702, 118, 23085), (40703, 118, 23143), (40704, 118, 23156), (40705, 118, 23173), (40706, 118, 23273), (40707, 118, 23283), (40708, 118, 23298), (40709, 118, 23321), (40710, 118, 23341), (40711, 118, 23437), (40712, 118, 23653), (40713, 118, 24083), (40714, 118, 24101), (40715, 118, 24334), (40716, 118, 24457), (40717, 118, 24704), (40718, 118, 24729), (40719, 118, 24930), (40720, 118, 24959), (40721, 118, 24985), (40722, 118, 24986), (40723, 118, 25004), (40724, 118, 25063), (40725, 118, 25064), (40726, 118, 25073), (40727, 118, 25078), (40728, 118, 25079), (40729, 118, 25091), (40730, 118, 25095), (40731, 118, 25106), (40732, 118, 25148), (40733, 118, 25150), (40734, 118, 25172), (40735, 118, 25184), (40736, 118, 25191), (40737, 118, 25199), (40738, 118, 25200), (40739, 118, 25206), (41135, 119, 448), (41136, 119, 507), (41137, 119, 545), (41138, 119, 749), (41139, 119, 874), (41140, 119, 953), (41141, 119, 975), (41142, 119, 1021), (41143, 119, 1106), (41144, 119, 1110), (41145, 119, 1234), (41146, 119, 1251), (41147, 119, 1374), (41148, 119, 1413), (41149, 119, 1659), (41150, 119, 1702), (41151, 119, 1713), (41152, 119, 1732), (41153, 119, 1829), (41154, 119, 1929), (41155, 119, 2079), (41156, 119, 2243), (41157, 119, 2546), (41158, 119, 2557), (41159, 119, 2601), (41160, 119, 2602), (41161, 119, 2632), (41162, 119, 2694), (41163, 119, 2779), (41164, 119, 2793), (41165, 119, 2839), (41166, 119, 2878), (41167, 119, 2939), (41168, 119, 3279), (41169, 119, 3316), (41170, 119, 3480), (41171, 119, 3702), (41172, 119, 3772), (41173, 119, 3866), (41174, 119, 3868), (41175, 119, 4148), (41176, 119, 4165), (41177, 119, 4191), (41178, 119, 4218), (41179, 119, 4320), (41180, 119, 4367), (41181, 119, 4458), (41182, 119, 4598), (41183, 119, 4657), (41184, 119, 4703), (41185, 119, 4744), (41186, 119, 4892), (41187, 119, 4997), (41188, 119, 5158), (41189, 119, 5178), (41190, 119, 5184), (41191, 119, 5194), (41192, 119, 5195), (41193, 119, 5280), (41194, 119, 5335), (41195, 119, 5523), (41196, 119, 5614), (41197, 119, 5642), (41198, 119, 5658), (41199, 119, 5746), (41200, 119, 5780), (41201, 119, 5881), (41202, 119, 6094), (41203, 119, 6297), (41204, 119, 6450), (41205, 119, 6594), (41206, 119, 6643), (41207, 119, 6919), (41208, 119, 6970), (41209, 119, 7225), (41210, 119, 7407), (41211, 119, 7453), (41212, 119, 7518), (41213, 119, 7803), (41214, 119, 7809), (41215, 119, 7890), (41216, 119, 7901), (41217, 119, 8007), (41218, 119, 8029), (41219, 119, 8158), (41220, 119, 8191), (41221, 119, 8277), (41222, 119, 8371), (41223, 119, 8510), (41224, 119, 8721), (41225, 119, 9035), (41226, 119, 9055), (41227, 119, 9138), (41228, 119, 9141), (41229, 119, 9184), (41230, 119, 9187), (41231, 119, 9240), (41232, 119, 9260), (41233, 119, 9307), (41234, 119, 9411), (41235, 119, 9518), (41236, 119, 9561), (41237, 119, 9574), (41238, 119, 9630), (41239, 119, 9691), (41240, 119, 9693), (41241, 119, 9721), (41242, 119, 9826), (41243, 119, 9853), (41244, 119, 10048), (41245, 119, 10063), (41246, 119, 10180), (41247, 119, 10202), (41248, 119, 10234), (41249, 119, 10281), (41250, 119, 10337), (41251, 119, 10429), (41252, 119, 10508), (41253, 119, 10510), (41254, 119, 10752), (41255, 119, 10823), (41256, 119, 10845), (41257, 119, 10964), (41258, 119, 10985), (41259, 119, 11018), (41260, 119, 11025), (41261, 119, 11380), (41262, 119, 11496), (41263, 119, 11548), (41264, 119, 11554), (41265, 119, 11602), (41266, 119, 11669), (41267, 119, 11768), (41268, 119, 11787), (41269, 119, 11842), (41270, 119, 11859), (41271, 119, 11926), (41272, 119, 12009), (41273, 119, 12093), (41274, 119, 12187), (41275, 119, 12192), (41276, 119, 12227), (41277, 119, 12440), (41278, 119, 12715), (41279, 119, 12820), (41280, 119, 12854), (41281, 119, 12903), (41282, 119, 12924), (41283, 119, 12953), (41284, 119, 12975), (41285, 119, 13128), (41286, 119, 13215), (41287, 119, 13258), (41288, 119, 13276), (41289, 119, 13326), (41290, 119, 13423), (41291, 119, 13494), (41292, 119, 13733), (41293, 119, 13750), (41294, 119, 13869), (41295, 119, 13913), (41296, 119, 13954), (41297, 119, 13982), (41298, 119, 13997), (41299, 119, 14036), (41300, 119, 14084), (41301, 119, 14196), (41302, 119, 14205), (41303, 119, 14226), (41304, 119, 14243), (41305, 119, 14246), (41306, 119, 14277), (41307, 119, 14279), (41308, 119, 14346), (41309, 119, 14442), (41310, 119, 14480), (41311, 119, 14538), (41312, 119, 14752), (41313, 119, 14803), (41314, 119, 14807), (41315, 119, 14843), (41316, 119, 14982), (41317, 119, 14988), (41318, 119, 14992), (41319, 119, 15011), (41320, 119, 15047), (41321, 119, 15084), (41322, 119, 15124), (41323, 119, 15157), (41324, 119, 15266), (41325, 119, 15340), (41326, 119, 15345), (41327, 119, 15386), (41328, 119, 15458), (41329, 119, 15468), (41330, 119, 15515), (41331, 119, 15603), (41332, 119, 15762), (41333, 119, 15917), (41334, 119, 16081), (41335, 119, 16163), (41336, 119, 16197), (41337, 119, 16226), (41338, 119, 16253), (41339, 119, 16297), (41340, 119, 16404), (41341, 119, 16443), (41342, 119, 16456), (41343, 119, 16465), (41344, 119, 16505), (41345, 119, 16604), (41346, 119, 16658), (41347, 119, 16724), (41348, 119, 16746), (41349, 119, 16834), (41350, 119, 16877), (41351, 119, 16878), (41352, 119, 17040), (41353, 119, 17207), (41354, 119, 17269), (41355, 119, 17386), (41356, 119, 17450), (41357, 119, 17457), (41358, 119, 17497), (41359, 119, 17515), (41360, 119, 17521), (41361, 119, 17628), (41362, 119, 17644), (41363, 119, 17717), (41364, 119, 18011), (41365, 119, 18167), (41366, 119, 18227), (41367, 119, 18264), (41368, 119, 18389), (41369, 119, 18442), (41370, 119, 18561), (41371, 119, 18578), (41372, 119, 18602), (41373, 119, 18612), (41374, 119, 18785), (41375, 119, 18795), (41376, 119, 18953), (41377, 119, 19095), (41378, 119, 19317), (41379, 119, 19531), (41380, 119, 19579), (41381, 119, 19683), (41382, 119, 19714), (41383, 119, 19758), (41384, 119, 19931), (41385, 119, 19969), (41386, 119, 20148), (41387, 119, 20340), (41388, 119, 20356), (41389, 119, 20704), (41390, 119, 20761), (41391, 119, 21061), (41392, 119, 21189), (41393, 119, 21258), (41394, 119, 21513), (41395, 119, 21624), (41396, 119, 21707), (41397, 119, 21929), (41398, 119, 22345), (41399, 119, 22396), (41400, 119, 22607), (41401, 119, 22748), (41402, 119, 22969), (41403, 119, 23185), (41404, 119, 23244), (41405, 119, 23273), (41406, 119, 23289), (41407, 119, 23579), (41408, 119, 23774), (41409, 119, 24334), (41410, 119, 24614), (41411, 119, 24621), (41412, 119, 24778), (41413, 119, 24827), (41414, 119, 24853), (41415, 119, 24936), (41416, 119, 24937), (41417, 119, 25127), (41646, 120, 34), (41647, 120, 65), (41648, 120, 111), (41649, 120, 119), (41650, 120, 229), (41651, 120, 295), (41652, 120, 389), (41653, 120, 420), (41654, 120, 507), (41655, 120, 617), (41656, 120, 646), (41657, 120, 739), (41658, 120, 755), (41659, 120, 813), (41660, 120, 873), (41661, 120, 975), (41662, 120, 1004), (41663, 120, 1051), (41664, 120, 1106), (41665, 120, 1255), (41666, 120, 1502), (41667, 120, 1524), (41668, 120, 1600), (41669, 120, 1610), (41670, 120, 1639), (41671, 120, 1688), (41672, 120, 1696), (41673, 120, 1721), (41674, 120, 1736), (41675, 120, 1823), (41676, 120, 1829), (41677, 120, 1983), (41678, 120, 1999), (41679, 120, 2037), (41680, 120, 2115), (41681, 120, 2136), (41682, 120, 2146), (41683, 120, 2174), (41684, 120, 2241), (41685, 120, 2317), (41686, 120, 2343), (41687, 120, 2441), (41688, 120, 2499), (41689, 120, 2602), (41690, 120, 2695), (41691, 120, 2699), (41692, 120, 2772), (41693, 120, 2796), (41694, 120, 2804), (41695, 120, 2883), (41696, 120, 2905), (41697, 120, 2987), (41698, 120, 3025), (41699, 120, 3086), (41700, 120, 3109), (41701, 120, 3114), (41702, 120, 3128), (41703, 120, 3151), (41704, 120, 3182), (41705, 120, 3240), (41706, 120, 3265), (41707, 120, 3289), (41708, 120, 3316), (41709, 120, 3356), (41710, 120, 3471), (41711, 120, 3483), (41712, 120, 3501), (41713, 120, 3535), (41714, 120, 3546), (41715, 120, 3652), (41716, 120, 3725), (41717, 120, 3762), (41718, 120, 4264), (41719, 120, 4269), (41720, 120, 4349), (41721, 120, 4408), (41722, 120, 4469), (41723, 120, 4607), (41724, 120, 4657), (41725, 120, 4696), (41726, 120, 4710), (41727, 120, 4769), (41728, 120, 4806), (41729, 120, 4931), (41730, 120, 4932), (41731, 120, 4954), (41732, 120, 4997), (41733, 120, 5018), (41734, 120, 5109), (41735, 120, 5136), (41736, 120, 5158), (41737, 120, 5159), (41738, 120, 5236), (41739, 120, 5256), (41740, 120, 5289), (41741, 120, 5333), (41742, 120, 5334), (41743, 120, 5335), (41744, 120, 5347), (41745, 120, 5416), (41746, 120, 5417), (41747, 120, 5433), (41748, 120, 5437), (41749, 120, 5441), (41750, 120, 5523), (41751, 120, 5564), (41752, 120, 5612), (41753, 120, 5658), (41754, 120, 5746), (41755, 120, 5771), (41756, 120, 5799), (41757, 120, 5901), (41758, 120, 5945), (41759, 120, 6008), (41760, 120, 6053), (41761, 120, 6094), (41762, 120, 6176), (41763, 120, 6231), (41764, 120, 6285), (41765, 120, 6324), (41766, 120, 6346), (41767, 120, 6358), (41768, 120, 6390), (41769, 120, 6487), (41770, 120, 6572), (41771, 120, 6599), (41772, 120, 6719), (41773, 120, 6748), (41774, 120, 6851), (41775, 120, 6885), (41776, 120, 6904), (41777, 120, 7011), (41778, 120, 7014), (41779, 120, 7057), (41780, 120, 7068), (41781, 120, 7083), (41782, 120, 7114), (41783, 120, 7144), (41784, 120, 7173), (41785, 120, 7204), (41786, 120, 7205), (41787, 120, 7225), (41788, 120, 7229), (41789, 120, 7253), (41790, 120, 7267), (41791, 120, 7329), (41792, 120, 7424), (41793, 120, 7454), (41794, 120, 7459), (41795, 120, 7525), (41796, 120, 7543), (41797, 120, 7569), (41798, 120, 7586), (41799, 120, 7595), (41800, 120, 7596), (41801, 120, 7694), (41802, 120, 7701), (41803, 120, 7789), (41804, 120, 7798), (41805, 120, 7803), (41806, 120, 7808), (41807, 120, 7890), (41808, 120, 8000), (41809, 120, 8007), (41810, 120, 8014), (41811, 120, 8024), (41812, 120, 8100), (41813, 120, 8109), (41814, 120, 8125), (41815, 120, 8128), (41816, 120, 8140), (41817, 120, 8212), (41818, 120, 8257), (41819, 120, 8320), (41820, 120, 8332), (41821, 120, 8335), (41822, 120, 8369), (41823, 120, 8374), (41824, 120, 8375), (41825, 120, 8493), (41826, 120, 8524), (41827, 120, 8560), (41828, 120, 8662), (41829, 120, 8684), (41830, 120, 8762), (41831, 120, 8783), (41832, 120, 8847), (41833, 120, 8882), (41834, 120, 8904), (41835, 120, 8910), (41836, 120, 8971), (41837, 120, 9055), (41838, 120, 9103), (41839, 120, 9107), (41840, 120, 9109), (41841, 120, 9184), (41842, 120, 9243), (41843, 120, 9275), (41844, 120, 9298), (41845, 120, 9300), (41846, 120, 9322), (41847, 120, 9344), (41848, 120, 9442), (41849, 120, 9561), (41850, 120, 9574), (41851, 120, 9578), (41852, 120, 9684), (41853, 120, 9693), (41854, 120, 9750), (41855, 120, 9760), (41856, 120, 9796), (41857, 120, 9823), (41858, 120, 9827), (41859, 120, 9828), (41860, 120, 9834), (41861, 120, 9893), (41862, 120, 9964), (41863, 120, 10010), (41864, 120, 10063), (41865, 120, 10088), (41866, 120, 10121), (41867, 120, 10134), (41868, 120, 10151), (41869, 120, 10170), (41870, 120, 10178), (41871, 120, 10299), (41872, 120, 10326), (41873, 120, 10337), (41874, 120, 10349), (41875, 120, 10361), (41876, 120, 10468), (41877, 120, 10556), (41878, 120, 10596), (41879, 120, 10610), (41880, 120, 10677), (41881, 120, 10716), (41882, 120, 10785), (41883, 120, 10810), (41884, 120, 10818), (41885, 120, 10849), (41886, 120, 10894), (41887, 120, 10910), (41888, 120, 10933), (41889, 120, 10936), (41890, 120, 10952), (41891, 120, 10992), (41892, 120, 11014), (41893, 120, 11025), (41894, 120, 11107), (41895, 120, 11124), (41896, 120, 11259), (41897, 120, 11286), (41898, 120, 11405), (41899, 120, 11420), (41900, 120, 11436), (41901, 120, 11453), (41902, 120, 11480), (41903, 120, 11528), (41904, 120, 11529), (41905, 120, 11582), (41906, 120, 11624), (41907, 120, 11669), (41908, 120, 11693), (41909, 120, 11717), (41910, 120, 11759), (41911, 120, 11803), (41912, 120, 11821), (41913, 120, 11830), (41914, 120, 11842), (41915, 120, 11901), (41916, 120, 11910), (41917, 120, 11913), (41918, 120, 11914), (41919, 120, 11927), (41920, 120, 11932), (41921, 120, 11952), (41922, 120, 11992), (41923, 120, 11994), (41924, 120, 12037), (41925, 120, 12093), (41926, 120, 12098), (41927, 120, 12181), (41928, 120, 12185), (41929, 120, 12249), (41930, 120, 12309), (41931, 120, 12321), (41932, 120, 12374), (41933, 120, 12381), (41934, 120, 12424), (41935, 120, 12455), (41936, 120, 12647), (41937, 120, 12694), (41938, 120, 12719), (41939, 120, 12776), (41940, 120, 12794), (41941, 120, 12820), (41942, 120, 12953), (41943, 120, 12974), (41944, 120, 13055), (41945, 120, 13061), (41946, 120, 13119), (41947, 120, 13162), (41948, 120, 13249), (41949, 120, 13255), (41950, 120, 13299), (41951, 120, 13330), (41952, 120, 13355), (41953, 120, 13386), (41954, 120, 13429), (41955, 120, 13542), (41956, 120, 13635), (41957, 120, 13652), (41958, 120, 13660), (41959, 120, 13666), (41960, 120, 13670), (41961, 120, 13679), (41962, 120, 13680), (41963, 120, 13705), (41964, 120, 13724), (41965, 120, 13733), (41966, 120, 13736), (41967, 120, 13741), (41968, 120, 13750), (41969, 120, 13869), (41970, 120, 13895), (41971, 120, 13988), (41972, 120, 13997), (41973, 120, 14033), (41974, 120, 14036), (41975, 120, 14075), (41976, 120, 14122), (41977, 120, 14178), (41978, 120, 14227), (41979, 120, 14254), (41980, 120, 14259), (41981, 120, 14275), (41982, 120, 14281), (41983, 120, 14291), (41984, 120, 14346), (41985, 120, 14379), (41986, 120, 14397), (41987, 120, 14399), (41988, 120, 14442), (41989, 120, 14480), (41990, 120, 14482), (41991, 120, 14483), (41992, 120, 14515), (41993, 120, 14527), (41994, 120, 14541), (41995, 120, 14555), (41996, 120, 14650), (41997, 120, 14736), (41998, 120, 14737), (41999, 120, 14751), (42000, 120, 14802), (42001, 120, 14821), (42002, 120, 14874), (42003, 120, 14890), (42004, 120, 14908), (42005, 120, 14922), (42006, 120, 15015), (42007, 120, 15020), (42008, 120, 15047), (42009, 120, 15098), (42010, 120, 15221), (42011, 120, 15245), (42012, 120, 15258), (42013, 120, 15267), (42014, 120, 15295), (42015, 120, 15304), (42016, 120, 15345), (42017, 120, 15375), (42018, 120, 15402), (42019, 120, 15406), (42020, 120, 15444), (42021, 120, 15488), (42022, 120, 15501), (42023, 120, 15505), (42024, 120, 15513), (42025, 120, 15534), (42026, 120, 15571), (42027, 120, 15704), (42028, 120, 15705), (42029, 120, 15728), (42030, 120, 15881), (42031, 120, 15929), (42032, 120, 15942), (42033, 120, 16023), (42034, 120, 16163), (42035, 120, 16183), (42036, 120, 16185), (42037, 120, 16197), (42038, 120, 16206), (42039, 120, 16226), (42040, 120, 16296), (42041, 120, 16300), (42042, 120, 16382), (42043, 120, 16404), (42044, 120, 16456), (42045, 120, 16500), (42046, 120, 16643), (42047, 120, 16651), (42048, 120, 16654), (42049, 120, 16663), (42050, 120, 16722), (42051, 120, 16738), (42052, 120, 16757), (42053, 120, 16785), (42054, 120, 16834), (42055, 120, 16835), (42056, 120, 16841), (42057, 120, 16847), (42058, 120, 16857), (42059, 120, 16877), (42060, 120, 16917), (42061, 120, 17009), (42062, 120, 17047), (42063, 120, 17118), (42064, 120, 17143), (42065, 120, 17158), (42066, 120, 17185), (42067, 120, 17206), (42068, 120, 17295), (42069, 120, 17314), (42070, 120, 17370), (42071, 120, 17386), (42072, 120, 17450), (42073, 120, 17457), (42074, 120, 17492), (42075, 120, 17494), (42076, 120, 17566), (42077, 120, 17582), (42078, 120, 17595), (42079, 120, 17625), (42080, 120, 17644), (42081, 120, 17717), (42082, 120, 17760), (42083, 120, 17863), (42084, 120, 17975), (42085, 120, 17978), (42086, 120, 17988), (42087, 120, 17989), (42088, 120, 18036), (42089, 120, 18077), (42090, 120, 18096), (42091, 120, 18178), (42092, 120, 18216), (42093, 120, 18264), (42094, 120, 18307), (42095, 120, 18319), (42096, 120, 18389), (42097, 120, 18470), (42098, 120, 18483), (42099, 120, 18523), (42100, 120, 18614), (42101, 120, 18732), (42102, 120, 18750), (42103, 120, 18785), (42104, 120, 18787), (42105, 120, 18841), (42106, 120, 18866), (42107, 120, 18952), (42108, 120, 18963), (42109, 120, 19073), (42110, 120, 19078), (42111, 120, 19202), (42112, 120, 19267), (42113, 120, 19271), (42114, 120, 19314), (42115, 120, 19372), (42116, 120, 19531), (42117, 120, 19591), (42118, 120, 19627), (42119, 120, 19645); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (42120, 120, 19693), (42121, 120, 19698), (42122, 120, 19758), (42123, 120, 19840), (42124, 120, 19964), (42125, 120, 19966), (42126, 120, 19990), (42127, 120, 20047), (42128, 120, 20052), (42129, 120, 20069), (42130, 120, 20087), (42131, 120, 20127), (42132, 120, 20141), (42133, 120, 20283), (42134, 120, 20356), (42135, 120, 20474), (42136, 120, 20573), (42137, 120, 20722), (42138, 120, 20893), (42139, 120, 21005), (42140, 120, 21190), (42141, 120, 21249), (42142, 120, 21259), (42143, 120, 21315), (42144, 120, 21437), (42145, 120, 21568), (42146, 120, 21577), (42147, 120, 21752), (42148, 120, 21784), (42149, 120, 21800), (42150, 120, 21835), (42151, 120, 21872), (42152, 120, 22013), (42153, 120, 22039), (42154, 120, 22060), (42155, 120, 22172), (42156, 120, 22349), (42157, 120, 22764), (42158, 120, 22836), (42159, 120, 23088), (42160, 120, 23156), (42161, 120, 23404), (42162, 120, 23435), (42163, 120, 24158), (42164, 120, 24251), (42165, 120, 24614), (42166, 120, 24760), (42167, 120, 24761), (42168, 120, 24787), (42169, 120, 24888), (42170, 120, 24943), (42171, 120, 25080), (42172, 120, 25126), (42173, 120, 25127), (42174, 120, 25139), (42175, 120, 25176), (42176, 120, 25177), (42669, 121, 34), (42670, 121, 65), (42671, 121, 111), (42672, 121, 119), (42673, 121, 342), (42674, 121, 389), (42675, 121, 420), (42676, 121, 490), (42677, 121, 558), (42678, 121, 739), (42679, 121, 755), (42680, 121, 813), (42681, 121, 873), (42682, 121, 1004), (42683, 121, 1106), (42684, 121, 1110), (42685, 121, 1163), (42686, 121, 1255), (42687, 121, 1460), (42688, 121, 1502), (42689, 121, 1524), (42690, 121, 1641), (42691, 121, 1688), (42692, 121, 1721), (42693, 121, 1823), (42694, 121, 1829), (42695, 121, 1983), (42696, 121, 2008), (42697, 121, 2037), (42698, 121, 2136), (42699, 121, 2146), (42700, 121, 2174), (42701, 121, 2379), (42702, 121, 2439), (42703, 121, 2499), (42704, 121, 2641), (42705, 121, 2699), (42706, 121, 2772), (42707, 121, 2796), (42708, 121, 2987), (42709, 121, 3086), (42710, 121, 3114), (42711, 121, 3182), (42712, 121, 3223), (42713, 121, 3240), (42714, 121, 3265), (42715, 121, 3289), (42716, 121, 3471), (42717, 121, 3546), (42718, 121, 3622), (42719, 121, 3652), (42720, 121, 3725), (42721, 121, 3768), (42722, 121, 3827), (42723, 121, 3868), (42724, 121, 4240), (42725, 121, 4349), (42726, 121, 4367), (42727, 121, 4451), (42728, 121, 4460), (42729, 121, 4700), (42730, 121, 4710), (42731, 121, 4769), (42732, 121, 4806), (42733, 121, 4822), (42734, 121, 4837), (42735, 121, 4932), (42736, 121, 4947), (42737, 121, 4954), (42738, 121, 4997), (42739, 121, 5018), (42740, 121, 5127), (42741, 121, 5136), (42742, 121, 5200), (42743, 121, 5325), (42744, 121, 5333), (42745, 121, 5334), (42746, 121, 5346), (42747, 121, 5364), (42748, 121, 5430), (42749, 121, 5433), (42750, 121, 5437), (42751, 121, 5440), (42752, 121, 5523), (42753, 121, 5532), (42754, 121, 5569), (42755, 121, 5746), (42756, 121, 5771), (42757, 121, 5799), (42758, 121, 5901), (42759, 121, 5945), (42760, 121, 6004), (42761, 121, 6008), (42762, 121, 6176), (42763, 121, 6324), (42764, 121, 6346), (42765, 121, 6446), (42766, 121, 6531), (42767, 121, 6572), (42768, 121, 6599), (42769, 121, 6719), (42770, 121, 6854), (42771, 121, 6904), (42772, 121, 6970), (42773, 121, 7011), (42774, 121, 7014), (42775, 121, 7068), (42776, 121, 7083), (42777, 121, 7100), (42778, 121, 7120), (42779, 121, 7173), (42780, 121, 7204), (42781, 121, 7205), (42782, 121, 7253), (42783, 121, 7265), (42784, 121, 7267), (42785, 121, 7392), (42786, 121, 7459), (42787, 121, 7501), (42788, 121, 7529), (42789, 121, 7543), (42790, 121, 7586), (42791, 121, 7694), (42792, 121, 7766), (42793, 121, 7789), (42794, 121, 8020), (42795, 121, 8060), (42796, 121, 8100), (42797, 121, 8128), (42798, 121, 8129), (42799, 121, 8140), (42800, 121, 8335), (42801, 121, 8357), (42802, 121, 8369), (42803, 121, 8591), (42804, 121, 8631), (42805, 121, 8640), (42806, 121, 8970), (42807, 121, 8994), (42808, 121, 8995), (42809, 121, 9038), (42810, 121, 9107), (42811, 121, 9124), (42812, 121, 9244), (42813, 121, 9275), (42814, 121, 9318), (42815, 121, 9416), (42816, 121, 9508), (42817, 121, 9578), (42818, 121, 9610), (42819, 121, 9693), (42820, 121, 9750), (42821, 121, 9796), (42822, 121, 9823), (42823, 121, 9828), (42824, 121, 9893), (42825, 121, 9985), (42826, 121, 10010), (42827, 121, 10063), (42828, 121, 10121), (42829, 121, 10134), (42830, 121, 10170), (42831, 121, 10178), (42832, 121, 10202), (42833, 121, 10234), (42834, 121, 10257), (42835, 121, 10299), (42836, 121, 10337), (42837, 121, 10361), (42838, 121, 10429), (42839, 121, 10510), (42840, 121, 10584), (42841, 121, 10596), (42842, 121, 10677), (42843, 121, 10791), (42844, 121, 10796), (42845, 121, 10810), (42846, 121, 10927), (42847, 121, 10933), (42848, 121, 10936), (42849, 121, 10979), (42850, 121, 11014), (42851, 121, 11038), (42852, 121, 11124), (42853, 121, 11206), (42854, 121, 11235), (42855, 121, 11259), (42856, 121, 11286), (42857, 121, 11405), (42858, 121, 11453), (42859, 121, 11506), (42860, 121, 11528), (42861, 121, 11529), (42862, 121, 11624), (42863, 121, 11670), (42864, 121, 11803), (42865, 121, 11992), (42866, 121, 12037), (42867, 121, 12098), (42868, 121, 12181), (42869, 121, 12185), (42870, 121, 12309), (42871, 121, 12321), (42872, 121, 12374), (42873, 121, 12381), (42874, 121, 12395), (42875, 121, 12424), (42876, 121, 12507), (42877, 121, 12575), (42878, 121, 12644), (42879, 121, 12647), (42880, 121, 12694), (42881, 121, 12777), (42882, 121, 13055), (42883, 121, 13127), (42884, 121, 13160), (42885, 121, 13255), (42886, 121, 13299), (42887, 121, 13386), (42888, 121, 13705), (42889, 121, 13741), (42890, 121, 13940), (42891, 121, 13978), (42892, 121, 13984), (42893, 121, 13988), (42894, 121, 14075), (42895, 121, 14086), (42896, 121, 14122), (42897, 121, 14178), (42898, 121, 14254), (42899, 121, 14263), (42900, 121, 14275), (42901, 121, 14291), (42902, 121, 14365), (42903, 121, 14399), (42904, 121, 14422), (42905, 121, 14482), (42906, 121, 14483), (42907, 121, 14516), (42908, 121, 14527), (42909, 121, 14529), (42910, 121, 14541), (42911, 121, 14572), (42912, 121, 14714), (42913, 121, 14816), (42914, 121, 14843), (42915, 121, 14874), (42916, 121, 14908), (42917, 121, 14922), (42918, 121, 14926), (42919, 121, 14956), (42920, 121, 14992), (42921, 121, 15020), (42922, 121, 15045), (42923, 121, 15049), (42924, 121, 15098), (42925, 121, 15218), (42926, 121, 15304), (42927, 121, 15375), (42928, 121, 15402), (42929, 121, 15444), (42930, 121, 15483), (42931, 121, 15488), (42932, 121, 15501), (42933, 121, 15512), (42934, 121, 15704), (42935, 121, 15705), (42936, 121, 15728), (42937, 121, 15942), (42938, 121, 16004), (42939, 121, 16015), (42940, 121, 16206), (42941, 121, 16218), (42942, 121, 16296), (42943, 121, 16305), (42944, 121, 16324), (42945, 121, 16382), (42946, 121, 16464), (42947, 121, 16491), (42948, 121, 16492), (42949, 121, 16570), (42950, 121, 16654), (42951, 121, 16663), (42952, 121, 16738), (42953, 121, 16827), (42954, 121, 16834), (42955, 121, 16847), (42956, 121, 16849), (42957, 121, 17047), (42958, 121, 17118), (42959, 121, 17142), (42960, 121, 17185), (42961, 121, 17334), (42962, 121, 17386), (42963, 121, 17395), (42964, 121, 17484), (42965, 121, 17492), (42966, 121, 17566), (42967, 121, 17586), (42968, 121, 17710), (42969, 121, 17760), (42970, 121, 17949), (42971, 121, 17988), (42972, 121, 18036), (42973, 121, 18142), (42974, 121, 18181), (42975, 121, 18216), (42976, 121, 18241), (42977, 121, 18287), (42978, 121, 18389), (42979, 121, 18712), (42980, 121, 18732), (42981, 121, 18750), (42982, 121, 18840), (42983, 121, 18868), (42984, 121, 18952), (42985, 121, 19058), (42986, 121, 19267), (42987, 121, 19314), (42988, 121, 19372), (42989, 121, 19531), (42990, 121, 19549), (42991, 121, 19627), (42992, 121, 19753), (42993, 121, 19758), (42994, 121, 19964), (42995, 121, 19990), (42996, 121, 20069), (42997, 121, 20087), (42998, 121, 20127), (42999, 121, 20474), (43000, 121, 20893), (43001, 121, 21190), (43002, 121, 21437), (43003, 121, 21835), (43004, 121, 22013), (43005, 121, 22039), (43006, 121, 22349), (43007, 121, 22832), (43008, 121, 22836), (43009, 121, 23135), (43010, 121, 23224), (43011, 121, 24300), (43012, 121, 24888), (43013, 121, 25127), (43014, 121, 25139), (43015, 121, 25177), (43180, 122, 2629), (43181, 122, 3162), (43182, 122, 3782), (43183, 122, 3929), (43184, 122, 4901), (43185, 122, 5232), (43186, 122, 5743), (43187, 122, 6076), (43188, 122, 6214), (43189, 122, 6974), (43190, 122, 9208), (43191, 122, 9754), (43192, 122, 10537), (43193, 122, 10728), (43194, 122, 10788), (43195, 122, 11169), (43196, 122, 11775), (43197, 122, 11945), (43198, 122, 12654), (43199, 122, 12891), (43200, 122, 14301), (43201, 122, 14621), (43202, 122, 14814), (43203, 122, 15339), (43204, 122, 15350), (43205, 122, 15439), (43206, 122, 15516), (43207, 122, 15585), (43208, 122, 15733), (43209, 122, 15808), (43210, 122, 16297), (43211, 122, 16481), (43212, 122, 16678), (43213, 122, 16680), (43214, 122, 16858), (43215, 122, 17394), (43216, 122, 18213), (43217, 122, 18463), (43218, 122, 19113), (43219, 122, 19116), (43220, 122, 21126), (43221, 122, 21152), (43222, 122, 22015), (43223, 122, 22128), (43224, 122, 22390), (43225, 122, 22663), (43226, 122, 22848), (43227, 122, 23290), (43228, 122, 23441), (43229, 122, 23546), (43230, 122, 23653), (43231, 122, 23977), (43232, 122, 23989), (43233, 122, 24733), (43234, 122, 24933), (43243, 123, 948), (43244, 123, 2083), (43245, 123, 2085), (43246, 123, 2146), (43247, 123, 2317), (43248, 123, 2746), (43249, 123, 2796), (43250, 123, 3025), (43251, 123, 3199), (43252, 123, 4013), (43253, 123, 4020), (43254, 123, 4341), (43255, 123, 4408), (43256, 123, 5060), (43257, 123, 5109), (43258, 123, 5159), (43259, 123, 5703), (43260, 123, 6136), (43261, 123, 6299), (43262, 123, 6358), (43263, 123, 6499), (43264, 123, 6631), (43265, 123, 6792), (43266, 123, 7078), (43267, 123, 7329), (43268, 123, 7356), (43269, 123, 7459), (43270, 123, 7569), (43271, 123, 7808), (43272, 123, 7858), (43273, 123, 8000), (43274, 123, 8423), (43275, 123, 8748), (43276, 123, 8783), (43277, 123, 8882), (43278, 123, 9243), (43279, 123, 9282), (43280, 123, 10175), (43281, 123, 10395), (43282, 123, 10468), (43283, 123, 10593), (43284, 123, 10933), (43285, 123, 11480), (43286, 123, 11582), (43287, 123, 11994), (43288, 123, 12249), (43289, 123, 12344), (43290, 123, 12414), (43291, 123, 13264), (43292, 123, 13330), (43293, 123, 13530), (43294, 123, 13629), (43295, 123, 13733), (43296, 123, 15454), (43297, 123, 15493), (43298, 123, 15578), (43299, 123, 15847), (43300, 123, 16124), (43301, 123, 16264), (43302, 123, 16296), (43303, 123, 16315), (43304, 123, 17206), (43305, 123, 17563), (43306, 123, 17643), (43307, 123, 17660), (43308, 123, 17903), (43309, 123, 17975), (43310, 123, 18849), (43311, 123, 18867), (43312, 123, 18930), (43313, 123, 19012), (43314, 123, 19078), (43315, 123, 19123), (43316, 123, 19165), (43317, 123, 19461), (43318, 123, 20894), (43319, 123, 21610), (43320, 123, 22060), (43321, 123, 23443), (43322, 123, 23471), (43323, 123, 23516), (43324, 123, 24158), (43325, 123, 24251), (43326, 123, 24607), (43327, 123, 24760), (43328, 123, 24761), (43329, 123, 24993), (43370, 124, 690), (43371, 124, 986), (43372, 124, 1569), (43373, 124, 1659), (43374, 124, 1889), (43375, 124, 1952), (43376, 124, 2210), (43377, 124, 2243), (43378, 124, 2787), (43379, 124, 2905), (43380, 124, 3332), (43381, 124, 3354), (43382, 124, 3480), (43383, 124, 3483), (43384, 124, 3723), (43385, 124, 3751), (43386, 124, 3918), (43387, 124, 4005), (43388, 124, 4022), (43389, 124, 4103), (43390, 124, 4451), (43391, 124, 4468), (43392, 124, 4470), (43393, 124, 4562), (43394, 124, 4936), (43395, 124, 5033), (43396, 124, 5059), (43397, 124, 5300), (43398, 124, 5516), (43399, 124, 5591), (43400, 124, 5592), (43401, 124, 5660), (43402, 124, 5958), (43403, 124, 6459), (43404, 124, 6677), (43405, 124, 6855), (43406, 124, 7135), (43407, 124, 7354), (43408, 124, 7541), (43409, 124, 7706), (43410, 124, 8069), (43411, 124, 8158), (43412, 124, 8357), (43413, 124, 8385), (43414, 124, 8548), (43415, 124, 8669), (43416, 124, 8752), (43417, 124, 8809), (43418, 124, 8948), (43419, 124, 9037), (43420, 124, 9038), (43421, 124, 9046), (43422, 124, 9218), (43423, 124, 9509), (43424, 124, 9691), (43425, 124, 10134), (43426, 124, 10281), (43427, 124, 10754), (43428, 124, 11270), (43429, 124, 11403), (43430, 124, 11458), (43431, 124, 11528), (43432, 124, 11589), (43433, 124, 11608), (43434, 124, 12028), (43435, 124, 12158), (43436, 124, 12163), (43437, 124, 12309), (43438, 124, 12345), (43439, 124, 12513), (43440, 124, 12596), (43441, 124, 12654), (43442, 124, 12776), (43443, 124, 12914), (43444, 124, 12931), (43445, 124, 13119), (43446, 124, 13210), (43447, 124, 13423), (43448, 124, 13682), (43449, 124, 13702), (43450, 124, 13755), (43451, 124, 13920), (43452, 124, 14017), (43453, 124, 14034), (43454, 124, 14086), (43455, 124, 14205), (43456, 124, 14280), (43457, 124, 14301), (43458, 124, 14480), (43459, 124, 14506), (43460, 124, 14516), (43461, 124, 14956), (43462, 124, 15084), (43463, 124, 15155), (43464, 124, 15198), (43465, 124, 15466), (43466, 124, 15532), (43467, 124, 15534), (43468, 124, 15586), (43469, 124, 15630), (43470, 124, 15652), (43471, 124, 15728), (43472, 124, 15771), (43473, 124, 15837), (43474, 124, 16624), (43475, 124, 16757), (43476, 124, 16858), (43477, 124, 17409), (43478, 124, 17447), (43479, 124, 17450), (43480, 124, 17513), (43481, 124, 17701), (43482, 124, 17726), (43483, 124, 17774), (43484, 124, 17854), (43485, 124, 17890), (43486, 124, 18052), (43487, 124, 18287), (43488, 124, 18525), (43489, 124, 19172), (43490, 124, 19359), (43491, 124, 19519), (43492, 124, 19531), (43493, 124, 19545), (43494, 124, 19682), (43495, 124, 19688), (43496, 124, 19750), (43497, 124, 19815), (43498, 124, 20029), (43499, 124, 20084), (43500, 124, 20167), (43501, 124, 20344), (43502, 124, 20426), (43503, 124, 20580), (43504, 124, 20722), (43505, 124, 21130), (43506, 124, 21189), (43507, 124, 21513), (43508, 124, 21869), (43509, 124, 22101), (43510, 124, 22232), (43511, 124, 23024), (43512, 124, 23135), (43513, 124, 23685), (43514, 124, 23953), (43515, 124, 23955), (43516, 124, 24162), (43517, 124, 24298), (43518, 124, 24426), (43519, 124, 25125), (43520, 124, 25183), (43625, 125, 506), (43626, 125, 598), (43627, 125, 1016), (43628, 125, 1549), (43629, 125, 2106), (43630, 125, 3876), (43631, 125, 4062), (43632, 125, 4078), (43633, 125, 4677), (43634, 125, 5181), (43635, 125, 5209), (43636, 125, 6131), (43637, 125, 6980), (43638, 125, 7065), (43639, 125, 7166), (43640, 125, 7177), (43641, 125, 7659), (43642, 125, 7924), (43643, 125, 8820), (43644, 125, 9155), (43645, 125, 10710), (43646, 125, 11442), (43647, 125, 11476), (43648, 125, 12657), (43649, 125, 12747), (43650, 125, 15607), (43651, 125, 16357), (43652, 125, 18486), (43653, 125, 19508), (43654, 125, 20132), (43655, 125, 23937), (43656, 126, 93), (43657, 126, 133), (43658, 126, 157), (43659, 126, 167), (43660, 126, 176), (43661, 126, 182), (43662, 126, 221), (43663, 126, 237), (43664, 126, 282), (43665, 126, 309), (43666, 126, 323), (43667, 126, 324), (43668, 126, 333), (43669, 126, 350), (43670, 126, 361), (43671, 126, 381), (43672, 126, 387), (43673, 126, 464), (43674, 126, 486), (43675, 126, 506), (43676, 126, 563), (43677, 126, 573), (43678, 126, 576), (43679, 126, 636), (43680, 126, 640), (43681, 126, 647), (43682, 126, 731), (43683, 126, 780), (43684, 126, 807), (43685, 126, 814), (43686, 126, 845), (43687, 126, 886), (43688, 126, 887), (43689, 126, 892), (43690, 126, 927), (43691, 126, 930), (43692, 126, 948), (43693, 126, 986), (43694, 126, 1006), (43695, 126, 1056), (43696, 126, 1057), (43697, 126, 1082), (43698, 126, 1103), (43699, 126, 1137), (43700, 126, 1144), (43701, 126, 1156), (43702, 126, 1184), (43703, 126, 1213), (43704, 126, 1224), (43705, 126, 1229), (43706, 126, 1236), (43707, 126, 1268), (43708, 126, 1282), (43709, 126, 1333), (43710, 126, 1342), (43711, 126, 1343), (43712, 126, 1373), (43713, 126, 1397), (43714, 126, 1461), (43715, 126, 1490), (43716, 126, 1499), (43717, 126, 1519), (43718, 126, 1529), (43719, 126, 1567), (43720, 126, 1603), (43721, 126, 1628), (43722, 126, 1683), (43723, 126, 1701), (43724, 126, 1735), (43725, 126, 1747), (43726, 126, 1761), (43727, 126, 1762), (43728, 126, 1766), (43729, 126, 1783), (43730, 126, 1822), (43731, 126, 1826), (43732, 126, 1854), (43733, 126, 1879), (43734, 126, 1891), (43735, 126, 1935), (43736, 126, 1954), (43737, 126, 1964), (43738, 126, 2036), (43739, 126, 2070), (43740, 126, 2096), (43741, 126, 2099), (43742, 126, 2149), (43743, 126, 2161), (43744, 126, 2165), (43745, 126, 2196), (43746, 126, 2226), (43747, 126, 2323), (43748, 126, 2415), (43749, 126, 2416), (43750, 126, 2438), (43751, 126, 2448), (43752, 126, 2495), (43753, 126, 2568), (43754, 126, 2579), (43755, 126, 2588), (43756, 126, 2598), (43757, 126, 2620), (43758, 126, 2625), (43759, 126, 2642), (43760, 126, 2653), (43761, 126, 2669), (43762, 126, 2712), (43763, 126, 2719), (43764, 126, 2726), (43765, 126, 2756), (43766, 126, 2768), (43767, 126, 2814), (43768, 126, 2830), (43769, 126, 2845), (43770, 126, 2856), (43771, 126, 2875), (43772, 126, 2882), (43773, 126, 2901), (43774, 126, 2976), (43775, 126, 2985), (43776, 126, 3001), (43777, 126, 3033), (43778, 126, 3037), (43779, 126, 3051), (43780, 126, 3089), (43781, 126, 3112), (43782, 126, 3159), (43783, 126, 3180), (43784, 126, 3186), (43785, 126, 3187), (43786, 126, 3197), (43787, 126, 3210), (43788, 126, 3211), (43789, 126, 3230), (43790, 126, 3232), (43791, 126, 3276), (43792, 126, 3292), (43793, 126, 3306), (43794, 126, 3319), (43795, 126, 3323), (43796, 126, 3328), (43797, 126, 3360), (43798, 126, 3367), (43799, 126, 3371), (43800, 126, 3380), (43801, 126, 3394), (43802, 126, 3403), (43803, 126, 3404), (43804, 126, 3411), (43805, 126, 3447), (43806, 126, 3463), (43807, 126, 3478), (43808, 126, 3500), (43809, 126, 3510), (43810, 126, 3519), (43811, 126, 3523), (43812, 126, 3533), (43813, 126, 3544), (43814, 126, 3569), (43815, 126, 3655), (43816, 126, 3692), (43817, 126, 3695), (43818, 126, 3712), (43819, 126, 3735), (43820, 126, 3741), (43821, 126, 3766), (43822, 126, 3790), (43823, 126, 3791), (43824, 126, 3794), (43825, 126, 3833), (43826, 126, 3838), (43827, 126, 3871), (43828, 126, 3915), (43829, 126, 3930), (43830, 126, 3947), (43831, 126, 4009), (43832, 126, 4047), (43833, 126, 4052), (43834, 126, 4062), (43835, 126, 4093), (43836, 126, 4109), (43837, 126, 4125), (43838, 126, 4169), (43839, 126, 4185), (43840, 126, 4196), (43841, 126, 4244), (43842, 126, 4252), (43843, 126, 4259), (43844, 126, 4260), (43845, 126, 4281), (43846, 126, 4286), (43847, 126, 4294), (43848, 126, 4303), (43849, 126, 4324), (43850, 126, 4334), (43851, 126, 4358), (43852, 126, 4377), (43853, 126, 4398), (43854, 126, 4436), (43855, 126, 4459), (43856, 126, 4461), (43857, 126, 4498), (43858, 126, 4505), (43859, 126, 4511), (43860, 126, 4518), (43861, 126, 4522), (43862, 126, 4572), (43863, 126, 4576), (43864, 126, 4579), (43865, 126, 4599), (43866, 126, 4618), (43867, 126, 4619), (43868, 126, 4666), (43869, 126, 4695), (43870, 126, 4730), (43871, 126, 4753), (43872, 126, 4755), (43873, 126, 4758), (43874, 126, 4759), (43875, 126, 4764), (43876, 126, 4775), (43877, 126, 4780), (43878, 126, 4793), (43879, 126, 4798), (43880, 126, 4805), (43881, 126, 4816), (43882, 126, 4817), (43883, 126, 4819), (43884, 126, 4835), (43885, 126, 4858), (43886, 126, 4864), (43887, 126, 4909), (43888, 126, 4911), (43889, 126, 4945), (43890, 126, 4955), (43891, 126, 4957), (43892, 126, 4971), (43893, 126, 4994), (43894, 126, 5031), (43895, 126, 5049), (43896, 126, 5050), (43897, 126, 5079), (43898, 126, 5092), (43899, 126, 5101), (43900, 126, 5143), (43901, 126, 5173), (43902, 126, 5174), (43903, 126, 5181), (43904, 126, 5214), (43905, 126, 5222), (43906, 126, 5239), (43907, 126, 5248), (43908, 126, 5249), (43909, 126, 5252), (43910, 126, 5271), (43911, 126, 5290), (43912, 126, 5294), (43913, 126, 5366), (43914, 126, 5367), (43915, 126, 5392), (43916, 126, 5399), (43917, 126, 5439), (43918, 126, 5446), (43919, 126, 5448), (43920, 126, 5450), (43921, 126, 5462), (43922, 126, 5496), (43923, 126, 5512), (43924, 126, 5539), (43925, 126, 5549), (43926, 126, 5589), (43927, 126, 5645), (43928, 126, 5646), (43929, 126, 5661), (43930, 126, 5677), (43931, 126, 5690), (43932, 126, 5713), (43933, 126, 5720), (43934, 126, 5726), (43935, 126, 5727), (43936, 126, 5735), (43937, 126, 5761), (43938, 126, 5784), (43939, 126, 5789), (43940, 126, 5827), (43941, 126, 5831), (43942, 126, 5850), (43943, 126, 5910), (43944, 126, 5912), (43945, 126, 5917), (43946, 126, 5923), (43947, 126, 5963), (43948, 126, 5964), (43949, 126, 5999), (43950, 126, 6023), (43951, 126, 6040), (43952, 126, 6054), (43953, 126, 6056), (43954, 126, 6062), (43955, 126, 6131), (43956, 126, 6162), (43957, 126, 6163), (43958, 126, 6190), (43959, 126, 6236), (43960, 126, 6240), (43961, 126, 6254), (43962, 126, 6257), (43963, 126, 6259), (43964, 126, 6286), (43965, 126, 6328), (43966, 126, 6330), (43967, 126, 6357), (43968, 126, 6389), (43969, 126, 6410), (43970, 126, 6454), (43971, 126, 6466), (43972, 126, 6503), (43973, 126, 6510), (43974, 126, 6517), (43975, 126, 6534), (43976, 126, 6536), (43977, 126, 6538), (43978, 126, 6565), (43979, 126, 6574), (43980, 126, 6614), (43981, 126, 6627), (43982, 126, 6675), (43983, 126, 6708), (43984, 126, 6712), (43985, 126, 6736), (43986, 126, 6741), (43987, 126, 6752), (43988, 126, 6765), (43989, 126, 6768), (43990, 126, 6773), (43991, 126, 6813), (43992, 126, 6923), (43993, 126, 6980), (43994, 126, 7005), (43995, 126, 7024), (43996, 126, 7029), (43997, 126, 7030), (43998, 126, 7033), (43999, 126, 7034), (44000, 126, 7046), (44001, 126, 7085), (44002, 126, 7088), (44003, 126, 7090), (44004, 126, 7124), (44005, 126, 7131), (44006, 126, 7166), (44007, 126, 7179), (44008, 126, 7198), (44009, 126, 7207), (44010, 126, 7210), (44011, 126, 7221), (44012, 126, 7260), (44013, 126, 7261), (44014, 126, 7263), (44015, 126, 7268), (44016, 126, 7292), (44017, 126, 7307), (44018, 126, 7314), (44019, 126, 7322), (44020, 126, 7336), (44021, 126, 7362), (44022, 126, 7366), (44023, 126, 7379), (44024, 126, 7383), (44025, 126, 7393), (44026, 126, 7394), (44027, 126, 7402), (44028, 126, 7455), (44029, 126, 7474), (44030, 126, 7483), (44031, 126, 7503), (44032, 126, 7506), (44033, 126, 7507), (44034, 126, 7522), (44035, 126, 7527), (44036, 126, 7536), (44037, 126, 7557), (44038, 126, 7565), (44039, 126, 7568), (44040, 126, 7571), (44041, 126, 7580), (44042, 126, 7633), (44043, 126, 7655), (44044, 126, 7656), (44045, 126, 7659), (44046, 126, 7677), (44047, 126, 7695), (44048, 126, 7720), (44049, 126, 7725), (44050, 126, 7737), (44051, 126, 7797), (44052, 126, 7807), (44053, 126, 7836), (44054, 126, 7840), (44055, 126, 7848), (44056, 126, 7896), (44057, 126, 7932), (44058, 126, 7939), (44059, 126, 7974), (44060, 126, 7979), (44061, 126, 7993), (44062, 126, 8016), (44063, 126, 8019), (44064, 126, 8041), (44065, 126, 8044), (44066, 126, 8053), (44067, 126, 8084), (44068, 126, 8098), (44069, 126, 8105), (44070, 126, 8106), (44071, 126, 8120), (44072, 126, 8170), (44073, 126, 8175), (44074, 126, 8237), (44075, 126, 8244), (44076, 126, 8246), (44077, 126, 8254), (44078, 126, 8256), (44079, 126, 8300), (44080, 126, 8302), (44081, 126, 8303), (44082, 126, 8354), (44083, 126, 8373), (44084, 126, 8389), (44085, 126, 8390), (44086, 126, 8422), (44087, 126, 8429), (44088, 126, 8433), (44089, 126, 8448), (44090, 126, 8453), (44091, 126, 8468), (44092, 126, 8481), (44093, 126, 8485), (44094, 126, 8522), (44095, 126, 8530), (44096, 126, 8562), (44097, 126, 8614), (44098, 126, 8628), (44099, 126, 8680), (44100, 126, 8687), (44101, 126, 8689), (44102, 126, 8702), (44103, 126, 8736), (44104, 126, 8738), (44105, 126, 8745), (44106, 126, 8747), (44107, 126, 8773), (44108, 126, 8812), (44109, 126, 8857), (44110, 126, 8870), (44111, 126, 8890), (44112, 126, 8945), (44113, 126, 9023), (44114, 126, 9027), (44115, 126, 9043), (44116, 126, 9057), (44117, 126, 9063), (44118, 126, 9075), (44119, 126, 9083), (44120, 126, 9151), (44121, 126, 9155), (44122, 126, 9174), (44123, 126, 9191), (44124, 126, 9198), (44125, 126, 9204), (44126, 126, 9206), (44127, 126, 9213), (44128, 126, 9259), (44129, 126, 9358), (44130, 126, 9360), (44131, 126, 9385), (44132, 126, 9394), (44133, 126, 9395), (44134, 126, 9421), (44135, 126, 9447), (44136, 126, 9451), (44137, 126, 9473), (44138, 126, 9510), (44139, 126, 9512), (44140, 126, 9534), (44141, 126, 9538), (44142, 126, 9591), (44143, 126, 9603), (44144, 126, 9612), (44145, 126, 9619), (44146, 126, 9643), (44147, 126, 9686), (44148, 126, 9701), (44149, 126, 9728), (44150, 126, 9745), (44151, 126, 9747), (44152, 126, 9764), (44153, 126, 9795), (44154, 126, 9799), (44155, 126, 9867), (44156, 126, 9877), (44157, 126, 9904), (44158, 126, 9905), (44159, 126, 9909), (44160, 126, 9934), (44161, 126, 9936), (44162, 126, 9971), (44163, 126, 9972), (44164, 126, 9992), (44165, 126, 9994), (44166, 126, 10024), (44167, 126, 10080), (44168, 126, 10089), (44169, 126, 10094), (44170, 126, 10116), (44171, 126, 10129), (44172, 126, 10173), (44173, 126, 10181), (44174, 126, 10184), (44175, 126, 10201), (44176, 126, 10210), (44177, 126, 10249), (44178, 126, 10292), (44179, 126, 10315), (44180, 126, 10323), (44181, 126, 10328), (44182, 126, 10330), (44183, 126, 10340), (44184, 126, 10345), (44185, 126, 10346), (44186, 126, 10348), (44187, 126, 10373), (44188, 126, 10381), (44189, 126, 10386), (44190, 126, 10393), (44191, 126, 10400), (44192, 126, 10418), (44193, 126, 10425), (44194, 126, 10437), (44195, 126, 10494), (44196, 126, 10517), (44197, 126, 10522), (44198, 126, 10559), (44199, 126, 10565), (44200, 126, 10573), (44201, 126, 10602), (44202, 126, 10605), (44203, 126, 10634), (44204, 126, 10635), (44205, 126, 10636), (44206, 126, 10648), (44207, 126, 10654), (44208, 126, 10669), (44209, 126, 10710), (44210, 126, 10738), (44211, 126, 10748), (44212, 126, 10789), (44213, 126, 10804), (44214, 126, 10825), (44215, 126, 10870), (44216, 126, 10879), (44217, 126, 10929), (44218, 126, 10931), (44219, 126, 10932), (44220, 126, 10943), (44221, 126, 10994), (44222, 126, 11033), (44223, 126, 11057), (44224, 126, 11060), (44225, 126, 11132), (44226, 126, 11151), (44227, 126, 11221), (44228, 126, 11262), (44229, 126, 11263), (44230, 126, 11264), (44231, 126, 11293), (44232, 126, 11319), (44233, 126, 11352), (44234, 126, 11381), (44235, 126, 11397), (44236, 126, 11398), (44237, 126, 11402), (44238, 126, 11417), (44239, 126, 11455), (44240, 126, 11466), (44241, 126, 11470), (44242, 126, 11476), (44243, 126, 11488), (44244, 126, 11513), (44245, 126, 11516), (44246, 126, 11546), (44247, 126, 11558), (44248, 126, 11604), (44249, 126, 11605), (44250, 126, 11607), (44251, 126, 11622), (44252, 126, 11634), (44253, 126, 11654), (44254, 126, 11655), (44255, 126, 11666), (44256, 126, 11708), (44257, 126, 11735), (44258, 126, 11740), (44259, 126, 11748), (44260, 126, 11769), (44261, 126, 11849), (44262, 126, 11904), (44263, 126, 11941), (44264, 126, 11943), (44265, 126, 11950), (44266, 126, 11970), (44267, 126, 11981), (44268, 126, 11987), (44269, 126, 12005), (44270, 126, 12061), (44271, 126, 12062), (44272, 126, 12082), (44273, 126, 12092), (44274, 126, 12111), (44275, 126, 12120), (44276, 126, 12200), (44277, 126, 12213), (44278, 126, 12250), (44279, 126, 12263), (44280, 126, 12274), (44281, 126, 12289), (44282, 126, 12386), (44283, 126, 12427), (44284, 126, 12448), (44285, 126, 12463), (44286, 126, 12491), (44287, 126, 12518), (44288, 126, 12536), (44289, 126, 12560), (44290, 126, 12563), (44291, 126, 12567), (44292, 126, 12573), (44293, 126, 12578), (44294, 126, 12600), (44295, 126, 12649), (44296, 126, 12650), (44297, 126, 12667), (44298, 126, 12671), (44299, 126, 12674), (44300, 126, 12683), (44301, 126, 12690), (44302, 126, 12707), (44303, 126, 12710), (44304, 126, 12717), (44305, 126, 12775), (44306, 126, 12808), (44307, 126, 12818), (44308, 126, 12830), (44309, 126, 12845), (44310, 126, 12867), (44311, 126, 12877), (44312, 126, 12887), (44313, 126, 12905), (44314, 126, 12918), (44315, 126, 12920), (44316, 126, 12923), (44317, 126, 12926), (44318, 126, 12966), (44319, 126, 13005), (44320, 126, 13140), (44321, 126, 13143), (44322, 126, 13151), (44323, 126, 13173), (44324, 126, 13174), (44325, 126, 13190), (44326, 126, 13200), (44327, 126, 13254), (44328, 126, 13270), (44329, 126, 13276), (44330, 126, 13288), (44331, 126, 13332), (44332, 126, 13334), (44333, 126, 13340), (44334, 126, 13341), (44335, 126, 13356), (44336, 126, 13359), (44337, 126, 13379), (44338, 126, 13407), (44339, 126, 13453), (44340, 126, 13477), (44341, 126, 13491), (44342, 126, 13608), (44343, 126, 13614), (44344, 126, 13651), (44345, 126, 13661), (44346, 126, 13685), (44347, 126, 13694), (44348, 126, 13717), (44349, 126, 13718), (44350, 126, 13730), (44351, 126, 13788), (44352, 126, 13922), (44353, 126, 13933), (44354, 126, 13941), (44355, 126, 13957), (44356, 126, 14010), (44357, 126, 14027), (44358, 126, 14044), (44359, 126, 14101), (44360, 126, 14103), (44361, 126, 14121), (44362, 126, 14184), (44363, 126, 14214), (44364, 126, 14220), (44365, 126, 14239), (44366, 126, 14269), (44367, 126, 14272), (44368, 126, 14372), (44369, 126, 14406), (44370, 126, 14416), (44371, 126, 14491), (44372, 126, 14503), (44373, 126, 14517), (44374, 126, 14545), (44375, 126, 14546), (44376, 126, 14563), (44377, 126, 14570), (44378, 126, 14588), (44379, 126, 14611), (44380, 126, 14616), (44381, 126, 14625), (44382, 126, 14626), (44383, 126, 14652), (44384, 126, 14677), (44385, 126, 14687), (44386, 126, 14721), (44387, 126, 14740), (44388, 126, 14742), (44389, 126, 14748), (44390, 126, 14782), (44391, 126, 14847), (44392, 126, 14869), (44393, 126, 14879), (44394, 126, 14887), (44395, 126, 14889), (44396, 126, 14897), (44397, 126, 14971), (44398, 126, 15003), (44399, 126, 15024), (44400, 126, 15041), (44401, 126, 15072), (44402, 126, 15091), (44403, 126, 15100), (44404, 126, 15101), (44405, 126, 15140), (44406, 126, 15181), (44407, 126, 15187), (44408, 126, 15191), (44409, 126, 15225), (44410, 126, 15252), (44411, 126, 15276), (44412, 126, 15309), (44413, 126, 15357), (44414, 126, 15368), (44415, 126, 15370), (44416, 126, 15414), (44417, 126, 15452), (44418, 126, 15460), (44419, 126, 15463), (44420, 126, 15465), (44421, 126, 15498), (44422, 126, 15522), (44423, 126, 15576), (44424, 126, 15587), (44425, 126, 15606), (44426, 126, 15607), (44427, 126, 15615), (44428, 126, 15632), (44429, 126, 15644), (44430, 126, 15649), (44431, 126, 15663), (44432, 126, 15707), (44433, 126, 15708), (44434, 126, 15741), (44435, 126, 15744), (44436, 126, 15773), (44437, 126, 15795), (44438, 126, 15803), (44439, 126, 15887), (44440, 126, 15905), (44441, 126, 15919), (44442, 126, 15922), (44443, 126, 15923), (44444, 126, 15957), (44445, 126, 15982), (44446, 126, 16002), (44447, 126, 16036), (44448, 126, 16041), (44449, 126, 16073), (44450, 126, 16087), (44451, 126, 16088), (44452, 126, 16102), (44453, 126, 16106), (44454, 126, 16121), (44455, 126, 16132), (44456, 126, 16223), (44457, 126, 16259), (44458, 126, 16278), (44459, 126, 16309), (44460, 126, 16340), (44461, 126, 16348), (44462, 126, 16357), (44463, 126, 16497), (44464, 126, 16548), (44465, 126, 16555), (44466, 126, 16556), (44467, 126, 16603), (44468, 126, 16605), (44469, 126, 16616), (44470, 126, 16635), (44471, 126, 16677), (44472, 126, 16710), (44473, 126, 16735), (44474, 126, 16942), (44475, 126, 16976), (44476, 126, 16995), (44477, 126, 17007), (44478, 126, 17057), (44479, 126, 17086), (44480, 126, 17100), (44481, 126, 17190), (44482, 126, 17222), (44483, 126, 17337), (44484, 126, 17352), (44485, 126, 17356), (44486, 126, 17363), (44487, 126, 17372), (44488, 126, 17399), (44489, 126, 17420), (44490, 126, 17448), (44491, 126, 17462), (44492, 126, 17464), (44493, 126, 17686), (44494, 126, 17696), (44495, 126, 17741), (44496, 126, 17773), (44497, 126, 17809), (44498, 126, 17812), (44499, 126, 17834), (44500, 126, 17867), (44501, 126, 17870), (44502, 126, 17969), (44503, 126, 17972), (44504, 126, 17996), (44505, 126, 18000), (44506, 126, 18042), (44507, 126, 18116), (44508, 126, 18164), (44509, 126, 18293), (44510, 126, 18341), (44511, 126, 18344), (44512, 126, 18348), (44513, 126, 18386), (44514, 126, 18451), (44515, 126, 18476), (44516, 126, 18488), (44517, 126, 18560), (44518, 126, 18645), (44519, 126, 18730), (44520, 126, 18735), (44521, 126, 18753), (44522, 126, 18757), (44523, 126, 18784), (44524, 126, 18838), (44525, 126, 18848), (44526, 126, 18882), (44527, 126, 18941), (44528, 126, 18944), (44529, 126, 18958), (44530, 126, 18962), (44531, 126, 18966), (44532, 126, 19036), (44533, 126, 19037), (44534, 126, 19052), (44535, 126, 19074), (44536, 126, 19117), (44537, 126, 19132), (44538, 126, 19143), (44539, 126, 19180), (44540, 126, 19229), (44541, 126, 19276), (44542, 126, 19282), (44543, 126, 19298), (44544, 126, 19329), (44545, 126, 19375), (44546, 126, 19392), (44547, 126, 19413), (44548, 126, 19442), (44549, 126, 19445), (44550, 126, 19456), (44551, 126, 19457), (44552, 126, 19669), (44553, 126, 19728), (44554, 126, 19737), (44555, 126, 19741), (44556, 126, 19776), (44557, 126, 19782), (44558, 126, 19861), (44559, 126, 19897), (44560, 126, 19909), (44561, 126, 19921), (44562, 126, 19978), (44563, 126, 19980), (44564, 126, 19996), (44565, 126, 20020), (44566, 126, 20023), (44567, 126, 20035), (44568, 126, 20044), (44569, 126, 20132), (44570, 126, 20142), (44571, 126, 20189), (44572, 126, 20233), (44573, 126, 20257), (44574, 126, 20312), (44575, 126, 20321), (44576, 126, 20354), (44577, 126, 20499), (44578, 126, 20533), (44579, 126, 20578), (44580, 126, 20579), (44581, 126, 20601), (44582, 126, 20621), (44583, 126, 20708), (44584, 126, 20735), (44585, 126, 20756), (44586, 126, 20771), (44587, 126, 20778), (44588, 126, 20794), (44589, 126, 20824), (44590, 126, 20829), (44591, 126, 20835), (44592, 126, 20891), (44593, 126, 20930), (44594, 126, 20958), (44595, 126, 21025), (44596, 126, 21032), (44597, 126, 21089), (44598, 126, 21171), (44599, 126, 21221), (44600, 126, 21256), (44601, 126, 21330), (44602, 126, 21405), (44603, 126, 21504), (44604, 126, 21507), (44605, 126, 21549), (44606, 126, 21561), (44607, 126, 21628), (44608, 126, 21677), (44609, 126, 21682), (44610, 126, 21775), (44611, 126, 21809), (44612, 126, 21974), (44613, 126, 21997), (44614, 126, 22038), (44615, 126, 22071), (44616, 126, 22111), (44617, 126, 22152), (44618, 126, 22170), (44619, 126, 22201), (44620, 126, 22213), (44621, 126, 22258), (44622, 126, 22484), (44623, 126, 22523), (44624, 126, 22555), (44625, 126, 22556), (44626, 126, 22579), (44627, 126, 22618), (44628, 126, 22667), (44629, 126, 22686), (44630, 126, 22693), (44631, 126, 22737), (44632, 126, 22849), (44633, 126, 22859), (44634, 126, 22884), (44635, 126, 22928), (44636, 126, 22988), (44637, 126, 23017), (44638, 126, 23047), (44639, 126, 23072), (44640, 126, 23125), (44641, 126, 23159), (44642, 126, 23235), (44643, 126, 23251), (44644, 126, 23252), (44645, 126, 23305), (44646, 126, 23325), (44647, 126, 23339), (44648, 126, 23474), (44649, 126, 23515), (44650, 126, 23520), (44651, 126, 23637), (44652, 126, 23729), (44653, 126, 23764), (44654, 126, 23773), (44655, 126, 23809), (44656, 126, 23815), (44657, 126, 23861), (44658, 126, 23869), (44659, 126, 23958), (44660, 126, 23992), (44661, 126, 24036), (44662, 126, 24043), (44663, 126, 24116), (44664, 126, 24132), (44665, 126, 24142), (44666, 126, 24429), (44667, 126, 24431), (44668, 126, 24811), (44669, 126, 24896), (44670, 126, 24913), (44671, 126, 24983), (44672, 126, 25000), (44673, 126, 25009), (44674, 126, 25025), (44675, 126, 25053), (44676, 126, 25119), (44677, 126, 25179), (44678, 126, 25186), (44679, 127, 33), (44680, 127, 161), (44681, 127, 361), (44682, 127, 570), (44683, 127, 619), (44684, 127, 682), (44685, 127, 786), (44686, 127, 874), (44687, 127, 881), (44688, 127, 892), (44689, 127, 949), (44690, 127, 1042), (44691, 127, 1086), (44692, 127, 1246), (44693, 127, 1319), (44694, 127, 1474), (44695, 127, 1540), (44696, 127, 1599), (44697, 127, 1654), (44698, 127, 1891), (44699, 127, 1913), (44700, 127, 1916), (44701, 127, 2060), (44702, 127, 2070), (44703, 127, 2484), (44704, 127, 2488), (44705, 127, 2510), (44706, 127, 2688), (44707, 127, 2762), (44708, 127, 2826), (44709, 127, 2949), (44710, 127, 3354), (44711, 127, 3410), (44712, 127, 3585), (44713, 127, 3708), (44714, 127, 3903), (44715, 127, 4191), (44716, 127, 4211), (44717, 127, 4235), (44718, 127, 4301), (44719, 127, 4963), (44720, 127, 5206), (44721, 127, 5276), (44722, 127, 5389), (44723, 127, 5416), (44724, 127, 5480), (44725, 127, 5509), (44726, 127, 5660), (44727, 127, 5736), (44728, 127, 6610), (44729, 127, 6647), (44730, 127, 6706), (44731, 127, 6781), (44732, 127, 6923), (44733, 127, 7196), (44734, 127, 7218), (44735, 127, 7417), (44736, 127, 7668), (44737, 127, 7730), (44738, 127, 7732), (44739, 127, 7876), (44740, 127, 7986), (44741, 127, 7997), (44742, 127, 8271), (44743, 127, 8597), (44744, 127, 8632), (44745, 127, 8688), (44746, 127, 8820), (44747, 127, 8899), (44748, 127, 9375), (44749, 127, 9594), (44750, 127, 9667), (44751, 127, 9751), (44752, 127, 9845), (44753, 127, 10010), (44754, 127, 10378), (44755, 127, 10426), (44756, 127, 10445), (44757, 127, 10462), (44758, 127, 10590), (44759, 127, 10656), (44760, 127, 10762), (44761, 127, 10827), (44762, 127, 10876), (44763, 127, 10964), (44764, 127, 11002), (44765, 127, 11110), (44766, 127, 11543), (44767, 127, 12267), (44768, 127, 12657), (44769, 127, 13338), (44770, 127, 14509), (44771, 127, 14632), (44772, 127, 14674), (44773, 127, 14743), (44774, 127, 15287), (44775, 127, 16915), (44776, 127, 17880), (44777, 127, 18296), (44778, 127, 18953), (44779, 127, 19167), (44780, 127, 19508), (44781, 127, 19592), (44782, 127, 20268), (44783, 127, 20764), (44784, 127, 20806), (44785, 127, 21330), (44786, 127, 21403), (44787, 127, 21775), (44788, 127, 21842), (44789, 127, 22910), (44790, 127, 23044), (44791, 127, 24162), (44806, 128, 598), (44807, 128, 900), (44808, 128, 1009), (44809, 128, 1246), (44810, 128, 1268), (44811, 128, 1549), (44812, 128, 1599), (44813, 128, 1700), (44814, 128, 1825), (44815, 128, 1916), (44816, 128, 2034), (44817, 128, 2083), (44818, 128, 2368), (44819, 128, 2555), (44820, 128, 2582), (44821, 128, 2746), (44822, 128, 2762), (44823, 128, 3009), (44824, 128, 3354), (44825, 128, 3736), (44826, 128, 3818), (44827, 128, 3876), (44828, 128, 3935), (44829, 128, 4005), (44830, 128, 4160), (44831, 128, 4191), (44832, 128, 4235), (44833, 128, 4524), (44834, 128, 4558), (44835, 128, 5128), (44836, 128, 5389), (44837, 128, 5416), (44838, 128, 5493), (44839, 128, 5509), (44840, 128, 5623), (44841, 128, 5660), (44842, 128, 6269), (44843, 128, 6574), (44844, 128, 6610), (44845, 128, 6781), (44846, 128, 6821), (44847, 128, 7218), (44848, 128, 7905), (44849, 128, 8000), (44850, 128, 8023), (44851, 128, 8265), (44852, 128, 8288), (44853, 128, 8412), (44854, 128, 8554), (44855, 128, 8594), (44856, 128, 8621), (44857, 128, 8688), (44858, 128, 8780), (44859, 128, 8789), (44860, 128, 8820), (44861, 128, 8984), (44862, 128, 9004), (44863, 128, 9335), (44864, 128, 9356), (44865, 128, 9524), (44866, 128, 9562), (44867, 128, 9594), (44868, 128, 9639), (44869, 128, 9778), (44870, 128, 9845), (44871, 128, 9866), (44872, 128, 10119), (44873, 128, 10314), (44874, 128, 10445), (44875, 128, 10523), (44876, 128, 10593), (44877, 128, 10643), (44878, 128, 10656), (44879, 128, 10715), (44880, 128, 10876), (44881, 128, 10878), (44882, 128, 10911), (44883, 128, 11551), (44884, 128, 11579), (44885, 128, 11745), (44886, 128, 11780), (44887, 128, 12190), (44888, 128, 12191), (44889, 128, 12266), (44890, 128, 12747), (44891, 128, 12859), (44892, 128, 13235), (44893, 128, 13666), (44894, 128, 14509), (44895, 128, 14592), (44896, 128, 14632), (44897, 128, 14987), (44898, 128, 15492), (44899, 128, 15527), (44900, 128, 15608), (44901, 128, 15644), (44902, 128, 15651), (44903, 128, 15800), (44904, 128, 15847), (44905, 128, 16139), (44906, 128, 16191), (44907, 128, 16517), (44908, 128, 16822), (44909, 128, 16864), (44910, 128, 16915), (44911, 128, 16951), (44912, 128, 17202), (44913, 128, 17644), (44914, 128, 17739), (44915, 128, 17833), (44916, 128, 17880), (44917, 128, 17980), (44918, 128, 18084), (44919, 128, 18671), (44920, 128, 18930), (44921, 128, 18984), (44922, 128, 19023), (44923, 128, 19077), (44924, 128, 19152), (44925, 128, 19508), (44926, 128, 19547), (44927, 128, 20194), (44928, 128, 20268), (44929, 128, 20399), (44930, 128, 20609), (44931, 128, 20676), (44932, 128, 20806), (44933, 128, 21330), (44934, 128, 21449), (44935, 128, 22204), (44936, 128, 22573), (44937, 128, 22910), (44938, 128, 23937), (44939, 128, 24162), (44940, 128, 24569), (44941, 128, 24986), (44942, 128, 25063), (44943, 128, 25073), (44944, 128, 25118), (44945, 128, 25123), (45061, 129, 172), (45062, 129, 307), (45063, 129, 361), (45064, 129, 620), (45065, 129, 785), (45066, 129, 796), (45067, 129, 837), (45068, 129, 881), (45069, 129, 969), (45070, 129, 976), (45071, 129, 992), (45072, 129, 1250), (45073, 129, 1252), (45074, 129, 1374), (45075, 129, 1392), (45076, 129, 1399), (45077, 129, 1470), (45078, 129, 1499), (45079, 129, 1521), (45080, 129, 1577), (45081, 129, 1581), (45082, 129, 1653), (45083, 129, 1692), (45084, 129, 1979), (45085, 129, 2041), (45086, 129, 2085), (45087, 129, 2106), (45088, 129, 2180), (45089, 129, 2232), (45090, 129, 2318), (45091, 129, 2488), (45092, 129, 2501), (45093, 129, 2539), (45094, 129, 2630), (45095, 129, 2762), (45096, 129, 2896), (45097, 129, 3116), (45098, 129, 3131), (45099, 129, 3247), (45100, 129, 3361), (45101, 129, 3365), (45102, 129, 3388), (45103, 129, 3429), (45104, 129, 3465), (45105, 129, 3502), (45106, 129, 3657), (45107, 129, 3662), (45108, 129, 3757), (45109, 129, 3948), (45110, 129, 4185), (45111, 129, 4540), (45112, 129, 4670), (45113, 129, 4716), (45114, 129, 4720), (45115, 129, 4836), (45116, 129, 5046), (45117, 129, 5068), (45118, 129, 5103), (45119, 129, 5116), (45120, 129, 5219), (45121, 129, 5279), (45122, 129, 5388), (45123, 129, 5389), (45124, 129, 5505), (45125, 129, 5540), (45126, 129, 5660), (45127, 129, 5764), (45128, 129, 5831), (45129, 129, 5862), (45130, 129, 6005), (45131, 129, 6050), (45132, 129, 6483), (45133, 129, 6677), (45134, 129, 6715), (45135, 129, 6923), (45136, 129, 6961), (45137, 129, 6972), (45138, 129, 7072), (45139, 129, 7196), (45140, 129, 7257), (45141, 129, 7338), (45142, 129, 7349), (45143, 129, 7452), (45144, 129, 7533), (45145, 129, 7599), (45146, 129, 7730), (45147, 129, 7748), (45148, 129, 7854), (45149, 129, 7882), (45150, 129, 7933), (45151, 129, 8000), (45152, 129, 8056), (45153, 129, 8148), (45154, 129, 8208), (45155, 129, 8271), (45156, 129, 8342), (45157, 129, 8400), (45158, 129, 8448), (45159, 129, 8493), (45160, 129, 8567), (45161, 129, 8632), (45162, 129, 8717), (45163, 129, 8732), (45164, 129, 8808), (45165, 129, 8899), (45166, 129, 8909), (45167, 129, 8970), (45168, 129, 9027), (45169, 129, 9057), (45170, 129, 9084), (45171, 129, 9153), (45172, 129, 9246), (45173, 129, 9667), (45174, 129, 9676), (45175, 129, 9737), (45176, 129, 9749), (45177, 129, 9866), (45178, 129, 9867), (45179, 129, 10225), (45180, 129, 10307), (45181, 129, 10316), (45182, 129, 10358), (45183, 129, 10378), (45184, 129, 10489), (45185, 129, 10500), (45186, 129, 10545), (45187, 129, 10546), (45188, 129, 10547), (45189, 129, 10590), (45190, 129, 10613), (45191, 129, 10654), (45192, 129, 10757), (45193, 129, 10827), (45194, 129, 10876), (45195, 129, 11013), (45196, 129, 11175), (45197, 129, 11313), (45198, 129, 11338), (45199, 129, 11340), (45200, 129, 11407), (45201, 129, 11441), (45202, 129, 11468), (45203, 129, 11577), (45204, 129, 11606), (45205, 129, 11629), (45206, 129, 11799), (45207, 129, 12023), (45208, 129, 12036), (45209, 129, 12267), (45210, 129, 12320), (45211, 129, 12358), (45212, 129, 12371), (45213, 129, 12465), (45214, 129, 12521), (45215, 129, 12537), (45216, 129, 12648), (45217, 129, 12739), (45218, 129, 12826), (45219, 129, 12878), (45220, 129, 12971), (45221, 129, 13029), (45222, 129, 13030), (45223, 129, 13047), (45224, 129, 13064), (45225, 129, 13068), (45226, 129, 13147), (45227, 129, 13376), (45228, 129, 13409), (45229, 129, 13413), (45230, 129, 13506), (45231, 129, 13510), (45232, 129, 13600), (45233, 129, 13677), (45234, 129, 13699), (45235, 129, 13730), (45236, 129, 13815), (45237, 129, 13858), (45238, 129, 13908), (45239, 129, 13913), (45240, 129, 14024), (45241, 129, 14402), (45242, 129, 14425), (45243, 129, 14436), (45244, 129, 14586), (45245, 129, 14623), (45246, 129, 14812), (45247, 129, 15064), (45248, 129, 15261), (45249, 129, 15371), (45250, 129, 15432), (45251, 129, 15494), (45252, 129, 15584), (45253, 129, 15608), (45254, 129, 15630), (45255, 129, 15664), (45256, 129, 15706), (45257, 129, 15789), (45258, 129, 15903), (45259, 129, 16072), (45260, 129, 16390), (45261, 129, 16501), (45262, 129, 16915), (45263, 129, 17092), (45264, 129, 17101), (45265, 129, 17301), (45266, 129, 17393), (45267, 129, 17397), (45268, 129, 17409), (45269, 129, 17481), (45270, 129, 17565), (45271, 129, 17695), (45272, 129, 17701), (45273, 129, 17791), (45274, 129, 17842), (45275, 129, 17880), (45276, 129, 17968), (45277, 129, 18413), (45278, 129, 18443), (45279, 129, 18479), (45280, 129, 18558), (45281, 129, 18682), (45282, 129, 18705), (45283, 129, 18809), (45284, 129, 18876), (45285, 129, 18889), (45286, 129, 19067), (45287, 129, 19211), (45288, 129, 19221), (45289, 129, 19290), (45290, 129, 19353), (45291, 129, 19456), (45292, 129, 19463), (45293, 129, 19508), (45294, 129, 19519), (45295, 129, 19521), (45296, 129, 19536), (45297, 129, 19643), (45298, 129, 19647), (45299, 129, 19743), (45300, 129, 19749), (45301, 129, 19834), (45302, 129, 19854), (45303, 129, 20041), (45304, 129, 20083), (45305, 129, 20116), (45306, 129, 20270), (45307, 129, 20288), (45308, 129, 20362), (45309, 129, 20642), (45310, 129, 20671), (45311, 129, 20701), (45312, 129, 20712), (45313, 129, 20831), (45314, 129, 20843), (45315, 129, 21277), (45316, 129, 21294), (45317, 129, 21363), (45318, 129, 21480), (45319, 129, 21641), (45320, 129, 21702), (45321, 129, 21809), (45322, 129, 22024), (45323, 129, 22174), (45324, 129, 22232), (45325, 129, 22396), (45326, 129, 22403), (45327, 129, 22686), (45328, 129, 22736), (45329, 129, 22743), (45330, 129, 23151), (45331, 129, 23158), (45332, 129, 23161), (45333, 129, 23184), (45334, 129, 23263), (45335, 129, 23308), (45336, 129, 23430), (45337, 129, 23720), (45338, 129, 23953), (45339, 129, 24065), (45340, 129, 24424), (45341, 129, 24606), (45342, 129, 24729), (45343, 129, 25047), (45344, 129, 25110), (45572, 130, 309), (45573, 130, 323), (45574, 130, 361), (45575, 130, 442), (45576, 130, 570), (45577, 130, 573), (45578, 130, 619), (45579, 130, 772), (45580, 130, 881), (45581, 130, 1185), (45582, 130, 1224), (45583, 130, 1253), (45584, 130, 1461), (45585, 130, 1516), (45586, 130, 1535), (45587, 130, 1653), (45588, 130, 1749), (45589, 130, 1854), (45590, 130, 1922), (45591, 130, 1931), (45592, 130, 2085), (45593, 130, 2092), (45594, 130, 2102), (45595, 130, 2116), (45596, 130, 2913), (45597, 130, 3186), (45598, 130, 3473), (45599, 130, 3517), (45600, 130, 3563), (45601, 130, 3695), (45602, 130, 3805), (45603, 130, 4220), (45604, 130, 4252), (45605, 130, 4324), (45606, 130, 5119), (45607, 130, 5143), (45608, 130, 5234), (45609, 130, 6454), (45610, 130, 6538), (45611, 130, 6627), (45612, 130, 7210), (45613, 130, 7439), (45614, 130, 7507), (45615, 130, 7668), (45616, 130, 7725), (45617, 130, 7748), (45618, 130, 7820), (45619, 130, 8177), (45620, 130, 8448), (45621, 130, 8479), (45622, 130, 8827), (45623, 130, 8920), (45624, 130, 9447), (45625, 130, 9701), (45626, 130, 9929), (45627, 130, 10314), (45628, 130, 10409), (45629, 130, 10545), (45630, 130, 10870), (45631, 130, 11217), (45632, 130, 11487), (45633, 130, 11587), (45634, 130, 11592), (45635, 130, 12923), (45636, 130, 13269), (45637, 130, 14239), (45638, 130, 15265), (45639, 130, 16576), (45640, 130, 17921), (45641, 130, 18440), (45642, 130, 18522), (45643, 130, 18794), (45644, 130, 18920), (45645, 130, 18966), (45646, 130, 19802), (45647, 130, 20431), (45648, 130, 22169), (45649, 130, 22839), (45650, 130, 23474), (45651, 130, 23815), (45652, 130, 25051), (45699, 131, 2), (45700, 131, 13), (45701, 131, 122), (45702, 131, 716), (45703, 131, 845), (45704, 131, 892), (45705, 131, 990), (45706, 131, 1066), (45707, 131, 1153), (45708, 131, 1238), (45709, 131, 1246), (45710, 131, 1654), (45711, 131, 1678), (45712, 131, 1769), (45713, 131, 1916), (45714, 131, 1921), (45715, 131, 2058), (45716, 131, 2203), (45717, 131, 2415), (45718, 131, 2542), (45719, 131, 2578), (45720, 131, 2777), (45721, 131, 2964), (45722, 131, 2970), (45723, 131, 3410), (45724, 131, 3708), (45725, 131, 4016), (45726, 131, 4043), (45727, 131, 4224), (45728, 131, 4288), (45729, 131, 4750), (45730, 131, 4829), (45731, 131, 5006), (45732, 131, 5119), (45733, 131, 5245), (45734, 131, 5259), (45735, 131, 5324), (45736, 131, 5476), (45737, 131, 5480), (45738, 131, 5496), (45739, 131, 5510), (45740, 131, 5651), (45741, 131, 5736), (45742, 131, 5795), (45743, 131, 6070), (45744, 131, 6259), (45745, 131, 6331), (45746, 131, 6343), (45747, 131, 6366), (45748, 131, 6415), (45749, 131, 6671), (45750, 131, 6710), (45751, 131, 6737), (45752, 131, 6809), (45753, 131, 6859), (45754, 131, 6895), (45755, 131, 7065), (45756, 131, 7413), (45757, 131, 7485), (45758, 131, 7647), (45759, 131, 7759), (45760, 131, 7782), (45761, 131, 8188), (45762, 131, 8373), (45763, 131, 8416), (45764, 131, 8505), (45765, 131, 8555), (45766, 131, 8602), (45767, 131, 8872), (45768, 131, 8931), (45769, 131, 9054), (45770, 131, 9089), (45771, 131, 9214), (45772, 131, 9362), (45773, 131, 9601), (45774, 131, 9614), (45775, 131, 9690), (45776, 131, 9746), (45777, 131, 9778), (45778, 131, 9920), (45779, 131, 9999), (45780, 131, 10385), (45781, 131, 10715), (45782, 131, 10890), (45783, 131, 10964), (45784, 131, 11110), (45785, 131, 11177), (45786, 131, 11413), (45787, 131, 11671), (45788, 131, 11942), (45789, 131, 12191), (45790, 131, 12245), (45791, 131, 12330), (45792, 131, 12521), (45793, 131, 12605), (45794, 131, 12747), (45795, 131, 12901), (45796, 131, 12937), (45797, 131, 13060), (45798, 131, 13338), (45799, 131, 13712), (45800, 131, 14134), (45801, 131, 14746), (45802, 131, 14841), (45803, 131, 15400), (45804, 131, 15651), (45805, 131, 15973), (45806, 131, 16259), (45807, 131, 17001), (45808, 131, 17156), (45809, 131, 17317), (45810, 131, 18229), (45811, 131, 18616), (45812, 131, 19298), (45813, 131, 20583), (45814, 131, 20609), (45815, 131, 20764), (45816, 131, 20930), (45817, 131, 21045), (45818, 131, 21092), (45819, 131, 21141), (45820, 131, 22158), (45821, 131, 22170), (45822, 131, 22204), (45823, 131, 22218), (45824, 131, 22331), (45825, 131, 23937), (45826, 132, 309), (45827, 132, 319), (45828, 132, 323), (45829, 132, 338), (45830, 132, 353), (45831, 132, 574), (45832, 132, 617), (45833, 132, 723), (45834, 132, 731), (45835, 132, 948), (45836, 132, 1167), (45837, 132, 1185), (45838, 132, 1190), (45839, 132, 1192), (45840, 132, 1224), (45841, 132, 1282), (45842, 132, 1352), (45843, 132, 1373), (45844, 132, 1380), (45845, 132, 1516), (45846, 132, 1635), (45847, 132, 1653), (45848, 132, 1676), (45849, 132, 1728), (45850, 132, 1769), (45851, 132, 1833), (45852, 132, 1854), (45853, 132, 1931), (45854, 132, 1964), (45855, 132, 2026), (45856, 132, 2092), (45857, 132, 2186), (45858, 132, 2353), (45859, 132, 2368), (45860, 132, 2371), (45861, 132, 2408), (45862, 132, 2421), (45863, 132, 2630), (45864, 132, 2669), (45865, 132, 2672), (45866, 132, 2863), (45867, 132, 2885), (45868, 132, 2902), (45869, 132, 2927), (45870, 132, 2942), (45871, 132, 3003), (45872, 132, 3090), (45873, 132, 3155), (45874, 132, 3174), (45875, 132, 3238), (45876, 132, 3306), (45877, 132, 3473), (45878, 132, 3517), (45879, 132, 3523), (45880, 132, 3548), (45881, 132, 3556), (45882, 132, 3585), (45883, 132, 3662), (45884, 132, 3735), (45885, 132, 3736), (45886, 132, 3771), (45887, 132, 3861), (45888, 132, 4001), (45889, 132, 4020), (45890, 132, 4043), (45891, 132, 4052), (45892, 132, 4148), (45893, 132, 4255), (45894, 132, 4259), (45895, 132, 4297), (45896, 132, 4366), (45897, 132, 4414), (45898, 132, 4448), (45899, 132, 4531), (45900, 132, 4576), (45901, 132, 4677), (45902, 132, 4838), (45903, 132, 4898), (45904, 132, 4906), (45905, 132, 5064), (45906, 132, 5068), (45907, 132, 5117), (45908, 132, 5119), (45909, 132, 5128), (45910, 132, 5134), (45911, 132, 5174), (45912, 132, 5234), (45913, 132, 5348), (45914, 132, 5374), (45915, 132, 5377), (45916, 132, 5418), (45917, 132, 5448), (45918, 132, 5452), (45919, 132, 5460), (45920, 132, 5609), (45921, 132, 5761), (45922, 132, 5795), (45923, 132, 5827), (45924, 132, 5844), (45925, 132, 5862), (45926, 132, 5909), (45927, 132, 5927), (45928, 132, 5928), (45929, 132, 5979), (45930, 132, 6323), (45931, 132, 6345), (45932, 132, 6366), (45933, 132, 6380), (45934, 132, 6398), (45935, 132, 6610), (45936, 132, 6627), (45937, 132, 6647), (45938, 132, 6737), (45939, 132, 6781), (45940, 132, 6784), (45941, 132, 6895), (45942, 132, 6952), (45943, 132, 7056), (45944, 132, 7148), (45945, 132, 7163), (45946, 132, 7218), (45947, 132, 7273), (45948, 132, 7338), (45949, 132, 7480), (45950, 132, 7517), (45951, 132, 7720), (45952, 132, 7738), (45953, 132, 7820), (45954, 132, 7901), (45955, 132, 7928), (45956, 132, 8056), (45957, 132, 8177), (45958, 132, 8239), (45959, 132, 8288), (45960, 132, 8317), (45961, 132, 8342), (45962, 132, 8389), (45963, 132, 8423), (45964, 132, 8433), (45965, 132, 8476), (45966, 132, 8554), (45967, 132, 8555), (45968, 132, 8613), (45969, 132, 8654), (45970, 132, 8665), (45971, 132, 8697), (45972, 132, 8702), (45973, 132, 8720), (45974, 132, 8784), (45975, 132, 8793), (45976, 132, 8827), (45977, 132, 8935), (45978, 132, 9039), (45979, 132, 9207), (45980, 132, 9229), (45981, 132, 9299), (45982, 132, 9349), (45983, 132, 9457), (45984, 132, 9481), (45985, 132, 9546), (45986, 132, 9562), (45987, 132, 9778), (45988, 132, 9826), (45989, 132, 9850), (45990, 132, 9904), (45991, 132, 10001), (45992, 132, 10009), (45993, 132, 10024), (45994, 132, 10040), (45995, 132, 10123), (45996, 132, 10124), (45997, 132, 10153), (45998, 132, 10249), (45999, 132, 10323), (46000, 132, 10326), (46001, 132, 10409), (46002, 132, 10573), (46003, 132, 10890), (46004, 132, 10911), (46005, 132, 11122), (46006, 132, 11148), (46007, 132, 11217), (46008, 132, 11516), (46009, 132, 11622), (46010, 132, 11629), (46011, 132, 11671), (46012, 132, 11755), (46013, 132, 11835), (46014, 132, 11868), (46015, 132, 11898), (46016, 132, 11937), (46017, 132, 11942), (46018, 132, 11965), (46019, 132, 12089), (46020, 132, 12122), (46021, 132, 12151), (46022, 132, 12323), (46023, 132, 12343), (46024, 132, 12414), (46025, 132, 12417), (46026, 132, 12901), (46027, 132, 12983), (46028, 132, 13047), (46029, 132, 13092), (46030, 132, 13172), (46031, 132, 13207), (46032, 132, 13218); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (46033, 132, 13609), (46034, 132, 13839), (46035, 132, 13933), (46036, 132, 14138), (46037, 132, 14142), (46038, 132, 14166), (46039, 132, 14336), (46040, 132, 14472), (46041, 132, 14519), (46042, 132, 14616), (46043, 132, 14677), (46044, 132, 14882), (46045, 132, 14886), (46046, 132, 14892), (46047, 132, 15024), (46048, 132, 15041), (46049, 132, 15091), (46050, 132, 15183), (46051, 132, 15265), (46052, 132, 15432), (46053, 132, 15527), (46054, 132, 15566), (46055, 132, 15576), (46056, 132, 15607), (46057, 132, 15644), (46058, 132, 15709), (46059, 132, 15734), (46060, 132, 15795), (46061, 132, 15873), (46062, 132, 15934), (46063, 132, 16030), (46064, 132, 16123), (46065, 132, 16402), (46066, 132, 16517), (46067, 132, 16555), (46068, 132, 16566), (46069, 132, 16605), (46070, 132, 16677), (46071, 132, 16790), (46072, 132, 16916), (46073, 132, 16969), (46074, 132, 16995), (46075, 132, 17100), (46076, 132, 17102), (46077, 132, 17154), (46078, 132, 17317), (46079, 132, 17323), (46080, 132, 17448), (46081, 132, 17529), (46082, 132, 17597), (46083, 132, 17652), (46084, 132, 17696), (46085, 132, 17795), (46086, 132, 17801), (46087, 132, 17812), (46088, 132, 17824), (46089, 132, 17826), (46090, 132, 17833), (46091, 132, 17912), (46092, 132, 18299), (46093, 132, 18311), (46094, 132, 18344), (46095, 132, 18348), (46096, 132, 18440), (46097, 132, 18443), (46098, 132, 18479), (46099, 132, 18522), (46100, 132, 18621), (46101, 132, 18743), (46102, 132, 18776), (46103, 132, 18836), (46104, 132, 18966), (46105, 132, 18973), (46106, 132, 19096), (46107, 132, 19223), (46108, 132, 19311), (46109, 132, 19472), (46110, 132, 19495), (46111, 132, 19497), (46112, 132, 19551), (46113, 132, 19628), (46114, 132, 19809), (46115, 132, 20014), (46116, 132, 20035), (46117, 132, 20072), (46118, 132, 20242), (46119, 132, 20257), (46120, 132, 20279), (46121, 132, 20335), (46122, 132, 20742), (46123, 132, 20809), (46124, 132, 20875), (46125, 132, 21336), (46126, 132, 21702), (46127, 132, 21795), (46128, 132, 22024), (46129, 132, 22218), (46130, 132, 22256), (46131, 132, 22583), (46132, 132, 22590), (46133, 132, 22686), (46134, 132, 22834), (46135, 132, 22915), (46136, 132, 22946), (46137, 132, 23003), (46138, 132, 23017), (46139, 132, 23052), (46140, 132, 23082), (46141, 132, 23430), (46142, 132, 23524), (46143, 132, 23757), (46144, 132, 23937), (46145, 132, 24001), (46146, 132, 25009), (46147, 132, 25041), (46148, 132, 25047), (46337, 133, 323), (46338, 133, 338), (46339, 133, 576), (46340, 133, 1082), (46341, 133, 1103), (46342, 133, 1373), (46343, 133, 1735), (46344, 133, 1769), (46345, 133, 1833), (46346, 133, 1854), (46347, 133, 1964), (46348, 133, 2125), (46349, 133, 2129), (46350, 133, 2814), (46351, 133, 2885), (46352, 133, 3180), (46353, 133, 3276), (46354, 133, 3371), (46355, 133, 3437), (46356, 133, 3544), (46357, 133, 3655), (46358, 133, 3735), (46359, 133, 3736), (46360, 133, 3805), (46361, 133, 4043), (46362, 133, 4052), (46363, 133, 4093), (46364, 133, 4244), (46365, 133, 4259), (46366, 133, 4286), (46367, 133, 4518), (46368, 133, 4618), (46369, 133, 4677), (46370, 133, 4695), (46371, 133, 4753), (46372, 133, 4759), (46373, 133, 4957), (46374, 133, 5117), (46375, 133, 5549), (46376, 133, 5720), (46377, 133, 5761), (46378, 133, 5910), (46379, 133, 6040), (46380, 133, 6223), (46381, 133, 6380), (46382, 133, 6398), (46383, 133, 6454), (46384, 133, 6460), (46385, 133, 6676), (46386, 133, 6712), (46387, 133, 6768), (46388, 133, 6980), (46389, 133, 7307), (46390, 133, 7336), (46391, 133, 7338), (46392, 133, 7654), (46393, 133, 7720), (46394, 133, 7898), (46395, 133, 7993), (46396, 133, 8063), (46397, 133, 8433), (46398, 133, 8517), (46399, 133, 8554), (46400, 133, 8611), (46401, 133, 8680), (46402, 133, 8687), (46403, 133, 8702), (46404, 133, 8920), (46405, 133, 9005), (46406, 133, 9229), (46407, 133, 9349), (46408, 133, 9538), (46409, 133, 9562), (46410, 133, 10249), (46411, 133, 10315), (46412, 133, 10328), (46413, 133, 10381), (46414, 133, 10393), (46415, 133, 10418), (46416, 133, 10573), (46417, 133, 10870), (46418, 133, 10929), (46419, 133, 10943), (46420, 133, 11402), (46421, 133, 11476), (46422, 133, 11622), (46423, 133, 11656), (46424, 133, 11893), (46425, 133, 11965), (46426, 133, 11987), (46427, 133, 12448), (46428, 133, 12649), (46429, 133, 12818), (46430, 133, 13027), (46431, 133, 13651), (46432, 133, 13933), (46433, 133, 14283), (46434, 133, 14545), (46435, 133, 14616), (46436, 133, 14626), (46437, 133, 14845), (46438, 133, 15024), (46439, 133, 15041), (46440, 133, 15091), (46441, 133, 15575), (46442, 133, 15576), (46443, 133, 16555), (46444, 133, 16566), (46445, 133, 16605), (46446, 133, 16769), (46447, 133, 16916), (46448, 133, 16942), (46449, 133, 16958), (46450, 133, 17100), (46451, 133, 17167), (46452, 133, 17222), (46453, 133, 17422), (46454, 133, 17600), (46455, 133, 17828), (46456, 133, 17858), (46457, 133, 18105), (46458, 133, 18381), (46459, 133, 18451), (46460, 133, 18718), (46461, 133, 18743), (46462, 133, 18784), (46463, 133, 18896), (46464, 133, 18918), (46465, 133, 18949), (46466, 133, 18966), (46467, 133, 19014), (46468, 133, 19096), (46469, 133, 19445), (46470, 133, 19472), (46471, 133, 19763), (46472, 133, 19921), (46473, 133, 20013), (46474, 133, 20020), (46475, 133, 20035), (46476, 133, 20042), (46477, 133, 20189), (46478, 133, 20257), (46479, 133, 20270), (46480, 133, 20323), (46481, 133, 20327), (46482, 133, 20742), (46483, 133, 20771), (46484, 133, 20963), (46485, 133, 21336), (46486, 133, 21561), (46487, 133, 21664), (46488, 133, 21979), (46489, 133, 22152), (46490, 133, 22470), (46491, 133, 22590), (46492, 133, 22706), (46493, 133, 22915), (46494, 133, 23017), (46495, 133, 23052), (46496, 133, 23082), (46497, 133, 23329), (46498, 133, 24181), (46499, 133, 24431), (46500, 133, 25009), (46592, 134, 33), (46593, 134, 598), (46594, 134, 892), (46595, 134, 1009), (46596, 134, 1016), (46597, 134, 1086), (46598, 134, 1153), (46599, 134, 1246), (46600, 134, 1599), (46601, 134, 1676), (46602, 134, 1916), (46603, 134, 2034), (46604, 134, 2058), (46605, 134, 2112), (46606, 134, 2578), (46607, 134, 2669), (46608, 134, 3039), (46609, 134, 3438), (46610, 134, 3861), (46611, 134, 3935), (46612, 134, 4043), (46613, 134, 4050), (46614, 134, 4148), (46615, 134, 4211), (46616, 134, 4380), (46617, 134, 4510), (46618, 134, 5059), (46619, 134, 5119), (46620, 134, 5128), (46621, 134, 5143), (46622, 134, 5206), (46623, 134, 5276), (46624, 134, 5460), (46625, 134, 5480), (46626, 134, 5509), (46627, 134, 5623), (46628, 134, 5651), (46629, 134, 5736), (46630, 134, 6269), (46631, 134, 6366), (46632, 134, 6415), (46633, 134, 6647), (46634, 134, 6821), (46635, 134, 6858), (46636, 134, 7065), (46637, 134, 7426), (46638, 134, 7635), (46639, 134, 7668), (46640, 134, 7690), (46641, 134, 7738), (46642, 134, 7905), (46643, 134, 7986), (46644, 134, 8342), (46645, 134, 8555), (46646, 134, 8820), (46647, 134, 9054), (46648, 134, 9690), (46649, 134, 9778), (46650, 134, 9904), (46651, 134, 9999), (46652, 134, 10072), (46653, 134, 10426), (46654, 134, 10462), (46655, 134, 10715), (46656, 134, 10749), (46657, 134, 10762), (46658, 134, 10911), (46659, 134, 11110), (46660, 134, 11372), (46661, 134, 11413), (46662, 134, 11442), (46663, 134, 11942), (46664, 134, 12245), (46665, 134, 12378), (46666, 134, 12657), (46667, 134, 12747), (46668, 134, 12763), (46669, 134, 12875), (46670, 134, 12928), (46671, 134, 13172), (46672, 134, 13338), (46673, 134, 14205), (46674, 134, 14362), (46675, 134, 14588), (46676, 134, 14746), (46677, 134, 15041), (46678, 134, 15493), (46679, 134, 15527), (46680, 134, 15566), (46681, 134, 15934), (46682, 134, 16259), (46683, 134, 16276), (46684, 134, 16517), (46685, 134, 16822), (46686, 134, 16916), (46687, 134, 17317), (46688, 134, 17921), (46689, 134, 18192), (46690, 134, 18296), (46691, 134, 18492), (46692, 134, 18621), (46693, 134, 18648), (46694, 134, 18743), (46695, 134, 18930), (46696, 134, 18973), (46697, 134, 19102), (46698, 134, 19376), (46699, 134, 19472), (46700, 134, 19782), (46701, 134, 20020), (46702, 134, 20181), (46703, 134, 20444), (46704, 134, 20621), (46705, 134, 20806), (46706, 134, 22258), (46707, 134, 22910), (46708, 134, 23476), (46709, 134, 24152), (46710, 134, 24773), (46711, 134, 24854), (46712, 134, 25147), (46713, 134, 25174), (46714, 134, 25196), (46719, 135, 598), (46720, 135, 892), (46721, 135, 900), (46722, 135, 916), (46723, 135, 1009), (46724, 135, 1016), (46725, 135, 1246), (46726, 135, 1583), (46727, 135, 1599), (46728, 135, 1676), (46729, 135, 2034), (46730, 135, 2155), (46731, 135, 2368), (46732, 135, 2574), (46733, 135, 2779), (46734, 135, 2902), (46735, 135, 3041), (46736, 135, 3090), (46737, 135, 3697), (46738, 135, 3861), (46739, 135, 3935), (46740, 135, 4069), (46741, 135, 4380), (46742, 135, 4510), (46743, 135, 4524), (46744, 135, 5033), (46745, 135, 5128), (46746, 135, 5300), (46747, 135, 5460), (46748, 135, 5623), (46749, 135, 5648), (46750, 135, 5736), (46751, 135, 6269), (46752, 135, 7392), (46753, 135, 7738), (46754, 135, 8023), (46755, 135, 8590), (46756, 135, 8654), (46757, 135, 9294), (46758, 135, 9375), (46759, 135, 9826), (46760, 135, 9866), (46761, 135, 10083), (46762, 135, 10109), (46763, 135, 10163), (46764, 135, 10271), (46765, 135, 10323), (46766, 135, 10462), (46767, 135, 10715), (46768, 135, 10992), (46769, 135, 11372), (46770, 135, 11579), (46771, 135, 11735), (46772, 135, 11937), (46773, 135, 12005), (46774, 135, 12657), (46775, 135, 12747), (46776, 135, 12825), (46777, 135, 12859), (46778, 135, 13288), (46779, 135, 14362), (46780, 135, 14472), (46781, 135, 14588), (46782, 135, 14632), (46783, 135, 15566), (46784, 135, 15771), (46785, 135, 16517), (46786, 135, 16822), (46787, 135, 16916), (46788, 135, 17016), (46789, 135, 17024), (46790, 135, 17202), (46791, 135, 17463), (46792, 135, 17597), (46793, 135, 17980), (46794, 135, 18192), (46795, 135, 18296), (46796, 135, 18356), (46797, 135, 18671), (46798, 135, 18930), (46799, 135, 18953), (46800, 135, 18973), (46801, 135, 20268), (46802, 135, 20806), (46803, 135, 21187), (46804, 135, 22258), (46805, 135, 22910), (46806, 135, 23276), (46807, 135, 24298), (46808, 135, 24773), (46809, 135, 24854), (46810, 135, 25118), (46846, 136, 175), (46847, 136, 598), (46848, 136, 842), (46849, 136, 892), (46850, 136, 948), (46851, 136, 1009), (46852, 136, 1016), (46853, 136, 1276), (46854, 136, 1494), (46855, 136, 1540), (46856, 136, 1600), (46857, 136, 1676), (46858, 136, 1791), (46859, 136, 2006), (46860, 136, 2039), (46861, 136, 2058), (46862, 136, 2085), (46863, 136, 2129), (46864, 136, 2251), (46865, 136, 2773), (46866, 136, 2902), (46867, 136, 2949), (46868, 136, 3147), (46869, 136, 3236), (46870, 136, 3237), (46871, 136, 3771), (46872, 136, 3818), (46873, 136, 3861), (46874, 136, 3935), (46875, 136, 3936), (46876, 136, 4005), (46877, 136, 4043), (46878, 136, 4235), (46879, 136, 4289), (46880, 136, 4572), (46881, 136, 4606), (46882, 136, 4689), (46883, 136, 4702), (46884, 136, 4898), (46885, 136, 4963), (46886, 136, 5033), (46887, 136, 5064), (46888, 136, 5119), (46889, 136, 5128), (46890, 136, 5173), (46891, 136, 5389), (46892, 136, 5460), (46893, 136, 5526), (46894, 136, 5623), (46895, 136, 5660), (46896, 136, 5861), (46897, 136, 5862), (46898, 136, 5898), (46899, 136, 6053), (46900, 136, 6223), (46901, 136, 6285), (46902, 136, 6289), (46903, 136, 6631), (46904, 136, 6675), (46905, 136, 6769), (46906, 136, 6881), (46907, 136, 6952), (46908, 136, 7074), (46909, 136, 7194), (46910, 136, 7196), (46911, 136, 7212), (46912, 136, 7218), (46913, 136, 7276), (46914, 136, 7303), (46915, 136, 7348), (46916, 136, 7480), (46917, 136, 7481), (46918, 136, 7668), (46919, 136, 7732), (46920, 136, 7831), (46921, 136, 7833), (46922, 136, 7858), (46923, 136, 7980), (46924, 136, 8000), (46925, 136, 8099), (46926, 136, 8246), (46927, 136, 8271), (46928, 136, 8281), (46929, 136, 8433), (46930, 136, 8590), (46931, 136, 8738), (46932, 136, 8820), (46933, 136, 8972), (46934, 136, 9039), (46935, 136, 9083), (46936, 136, 9338), (46937, 136, 9375), (46938, 136, 9537), (46939, 136, 9638), (46940, 136, 9778), (46941, 136, 9862), (46942, 136, 9866), (46943, 136, 9894), (46944, 136, 9931), (46945, 136, 10001), (46946, 136, 10009), (46947, 136, 10083), (46948, 136, 10153), (46949, 136, 10314), (46950, 136, 10353), (46951, 136, 10373), (46952, 136, 10395), (46953, 136, 10643), (46954, 136, 10715), (46955, 136, 10762), (46956, 136, 10878), (46957, 136, 10911), (46958, 136, 10921), (46959, 136, 10933), (46960, 136, 10989), (46961, 136, 11217), (46962, 136, 11350), (46963, 136, 11372), (46964, 136, 11487), (46965, 136, 11551), (46966, 136, 11937), (46967, 136, 12036), (46968, 136, 12190), (46969, 136, 12191), (46970, 136, 12213), (46971, 136, 12344), (46972, 136, 12414), (46973, 136, 12657), (46974, 136, 12747), (46975, 136, 12859), (46976, 136, 12861), (46977, 136, 12875), (46978, 136, 12928), (46979, 136, 12949), (46980, 136, 13062), (46981, 136, 13212), (46982, 136, 13264), (46983, 136, 13288), (46984, 136, 13440), (46985, 136, 13567), (46986, 136, 13578), (46987, 136, 13643), (46988, 136, 13667), (46989, 136, 13692), (46990, 136, 13839), (46991, 136, 13846), (46992, 136, 13929), (46993, 136, 14170), (46994, 136, 14362), (46995, 136, 14677), (46996, 136, 14736), (46997, 136, 14907), (46998, 136, 15438), (46999, 136, 15493), (47000, 136, 15649), (47001, 136, 15744), (47002, 136, 15810), (47003, 136, 15868), (47004, 136, 16040), (47005, 136, 16276), (47006, 136, 16302), (47007, 136, 16328), (47008, 136, 16735), (47009, 136, 16767), (47010, 136, 16799), (47011, 136, 16857), (47012, 136, 17163), (47013, 136, 17202), (47014, 136, 17247), (47015, 136, 17529), (47016, 136, 17563), (47017, 136, 18046), (47018, 136, 18065), (47019, 136, 18311), (47020, 136, 18386), (47021, 136, 18510), (47022, 136, 18542), (47023, 136, 18625), (47024, 136, 18971), (47025, 136, 19117), (47026, 136, 19165), (47027, 136, 19376), (47028, 136, 19414), (47029, 136, 19741), (47030, 136, 19830), (47031, 136, 20078), (47032, 136, 20444), (47033, 136, 20705), (47034, 136, 20708), (47035, 136, 20791), (47036, 136, 20806), (47037, 136, 20967), (47038, 136, 21228), (47039, 136, 21449), (47040, 136, 21533), (47041, 136, 21610), (47042, 136, 21775), (47043, 136, 22131), (47044, 136, 22213), (47045, 136, 22258), (47046, 136, 22429), (47047, 136, 23044), (47048, 136, 23514), (47049, 136, 23516), (47050, 136, 23635), (47051, 136, 23690), (47052, 136, 23844), (47053, 136, 24152), (47054, 136, 24167), (47055, 136, 24429), (47056, 136, 24607), (47057, 136, 24651), (47058, 136, 24993), (47059, 136, 25009), (47060, 136, 25118), (47061, 136, 25217), (47101, 137, 7844), (47102, 137, 8396), (47103, 137, 10697), (47104, 137, 12665), (47105, 137, 13835), (47106, 137, 14105), (47107, 137, 17294), (47108, 137, 17446), (47109, 137, 17898), (47116, 138, 8478), (47117, 138, 8637), (47118, 138, 9743), (47119, 138, 10338), (47120, 138, 11268), (47121, 138, 12724), (47122, 138, 13091), (47123, 138, 17715), (47124, 138, 17881), (47125, 138, 20808), (47126, 138, 23018), (47127, 138, 23357), (47128, 138, 23358), (47129, 138, 23823), (47131, 139, 11731), (47132, 139, 15712), (47133, 139, 18509), (47134, 139, 19136), (47135, 139, 20040), (47138, 140, 2), (47139, 140, 13), (47140, 140, 122), (47141, 140, 439), (47142, 140, 989), (47143, 140, 1346), (47144, 140, 2863), (47145, 140, 2866), (47146, 140, 4563), (47147, 140, 4617), (47148, 140, 5520), (47149, 140, 5666), (47150, 140, 5894), (47151, 140, 6099), (47152, 140, 7126), (47153, 140, 7136), (47154, 140, 7495), (47155, 140, 7923), (47156, 140, 8164), (47157, 140, 8267), (47158, 140, 9772), (47159, 140, 10657), (47160, 140, 11091), (47161, 140, 11465), (47162, 140, 12474), (47163, 140, 12485), (47164, 140, 13088), (47165, 140, 13927), (47166, 140, 14808), (47167, 140, 14961), (47168, 140, 17043), (47169, 140, 18631), (47170, 140, 18662), (47171, 140, 18959), (47172, 140, 22741), (47173, 140, 24449), (47201, 141, 1911), (47202, 141, 2508), (47203, 141, 2937), (47204, 141, 4323), (47205, 141, 5030), (47206, 141, 5413), (47207, 141, 5635), (47208, 141, 5839), (47209, 141, 6132), (47210, 141, 6218), (47211, 141, 6261), (47212, 141, 6633), (47213, 141, 6775), (47214, 141, 7374), (47215, 141, 8465), (47216, 141, 9040), (47217, 141, 11133), (47218, 141, 11139), (47219, 141, 11207), (47220, 141, 11478), (47221, 141, 11485), (47222, 141, 11750), (47223, 141, 14209), (47224, 141, 15342), (47225, 141, 15712), (47226, 141, 16256), (47227, 141, 16733), (47228, 141, 16970), (47229, 141, 17193), (47230, 141, 17560), (47231, 141, 19872), (47232, 141, 19881), (47233, 141, 23431), (47234, 141, 24536), (47235, 141, 24810), (47264, 142, 19636), (47265, 143, 1146), (47266, 143, 1604), (47267, 143, 3677), (47268, 143, 4443), (47269, 143, 5262), (47270, 143, 6761), (47271, 143, 6812), (47272, 143, 8693), (47273, 143, 9089), (47274, 143, 9179), (47275, 143, 9183), (47276, 143, 9954), (47277, 143, 11533), (47278, 143, 12196), (47279, 143, 12646), (47280, 143, 12831), (47281, 143, 12846), (47282, 143, 13904), (47283, 143, 14072), (47284, 143, 16130), (47285, 143, 18082), (47286, 143, 18090), (47287, 143, 18352), (47288, 143, 19430), (47289, 143, 19956), (47290, 143, 20391), (47291, 143, 21802), (47292, 143, 23677), (47293, 143, 24561), (47296, 144, 18137), (47297, 145, 4181), (47298, 145, 6217), (47299, 145, 7587), (47300, 145, 8263), (47301, 145, 10583), (47302, 145, 10662), (47303, 145, 11373), (47304, 145, 11572), (47305, 145, 11895), (47306, 145, 13775), (47307, 145, 13995), (47308, 145, 15273), (47309, 145, 16266), (47310, 145, 17035), (47311, 145, 17855), (47312, 145, 18014), (47313, 145, 18233), (47314, 145, 24620), (47315, 145, 25074), (47328, 146, 3484), (47329, 146, 4569), (47330, 146, 4638), (47331, 146, 5498), (47332, 146, 6102), (47333, 146, 9119), (47334, 146, 10479), (47335, 146, 18106), (47336, 146, 19973), (47337, 146, 25152), (47343, 147, 3598), (47344, 147, 5943), (47345, 147, 6030), (47346, 147, 6849), (47347, 147, 7498), (47348, 147, 7627), (47349, 147, 7777), (47350, 147, 8101), (47351, 147, 9137), (47352, 147, 10002), (47353, 147, 10310), (47354, 147, 11231), (47355, 147, 11526), (47356, 147, 13676), (47357, 147, 13770), (47358, 147, 15135), (47359, 147, 15764), (47360, 147, 16567), (47361, 147, 16777), (47362, 147, 17460), (47363, 147, 17605), (47364, 147, 17847), (47365, 147, 18663), (47366, 147, 19210), (47367, 147, 19679), (47368, 147, 20306), (47369, 147, 20934), (47370, 147, 21036), (47371, 147, 21247), (47372, 147, 21418), (47373, 147, 22649), (47374, 147, 22854), (47375, 147, 22872), (47376, 147, 23242), (47377, 147, 23883), (47378, 147, 25167), (47406, 148, 341), (47407, 148, 368), (47408, 148, 622), (47409, 148, 787), (47410, 148, 1047), (47411, 148, 1359), (47412, 148, 1718), (47413, 148, 1753), (47414, 148, 1759), (47415, 148, 1831), (47416, 148, 1948), (47417, 148, 2035), (47418, 148, 2054), (47419, 148, 2277), (47420, 148, 2384), (47421, 148, 2423), (47422, 148, 2524), (47423, 148, 2561), (47424, 148, 2599), (47425, 148, 2807), (47426, 148, 2890), (47427, 148, 2915), (47428, 148, 3023), (47429, 148, 3192), (47430, 148, 3209), (47431, 148, 3288), (47432, 148, 3467), (47433, 148, 3468), (47434, 148, 3529), (47435, 148, 3751), (47436, 148, 3813), (47437, 148, 4018), (47438, 148, 4228), (47439, 148, 4308), (47440, 148, 4340), (47441, 148, 4402), (47442, 148, 4542), (47443, 148, 4552), (47444, 148, 4641), (47445, 148, 4803), (47446, 148, 4924), (47447, 148, 4999), (47448, 148, 5093), (47449, 148, 5254), (47450, 148, 5338), (47451, 148, 5538), (47452, 148, 5544), (47453, 148, 5754), (47454, 148, 5777), (47455, 148, 5970), (47456, 148, 6091), (47457, 148, 6167), (47458, 148, 6217), (47459, 148, 6270), (47460, 148, 6275), (47461, 148, 6364), (47462, 148, 6373), (47463, 148, 6456), (47464, 148, 6493), (47465, 148, 6558), (47466, 148, 6566), (47467, 148, 6893), (47468, 148, 6900), (47469, 148, 6937), (47470, 148, 7138), (47471, 148, 7254), (47472, 148, 7532), (47473, 148, 7619), (47474, 148, 7844), (47475, 148, 7937), (47476, 148, 7965), (47477, 148, 7991), (47478, 148, 8064), (47479, 148, 8127), (47480, 148, 8166), (47481, 148, 8200), (47482, 148, 8247), (47483, 148, 8396), (47484, 148, 8673), (47485, 148, 9012), (47486, 148, 9139), (47487, 148, 9162), (47488, 148, 9279), (47489, 148, 9428), (47490, 148, 9440), (47491, 148, 9566), (47492, 148, 9656), (47493, 148, 9663), (47494, 148, 9698), (47495, 148, 9715), (47496, 148, 9859), (47497, 148, 10338), (47498, 148, 10536), (47499, 148, 10601), (47500, 148, 10624), (47501, 148, 10652), (47502, 148, 10711), (47503, 148, 10733), (47504, 148, 10814), (47505, 148, 11014), (47506, 148, 11150), (47507, 148, 11464), (47508, 148, 11888), (47509, 148, 11918), (47510, 148, 11931), (47511, 148, 11954), (47512, 148, 11972), (47513, 148, 12205), (47514, 148, 12257), (47515, 148, 12429), (47516, 148, 12503), (47517, 148, 12677), (47518, 148, 12682), (47519, 148, 12704), (47520, 148, 12834), (47521, 148, 12884), (47522, 148, 12952), (47523, 148, 13148), (47524, 148, 13302), (47525, 148, 13759), (47526, 148, 13975), (47527, 148, 13987), (47528, 148, 14097), (47529, 148, 14208), (47530, 148, 14296), (47531, 148, 14706), (47532, 148, 14734), (47533, 148, 14768), (47534, 148, 14791), (47535, 148, 14876), (47536, 148, 14929), (47537, 148, 15097), (47538, 148, 15260), (47539, 148, 15489), (47540, 148, 15756), (47541, 148, 15783), (47542, 148, 15956), (47543, 148, 16097), (47544, 148, 16215), (47545, 148, 16266), (47546, 148, 16450), (47547, 148, 16455), (47548, 148, 16470), (47549, 148, 16495), (47550, 148, 16874), (47551, 148, 16889), (47552, 148, 16964), (47553, 148, 17013), (47554, 148, 17061), (47555, 148, 17216), (47556, 148, 17218), (47557, 148, 17434), (47558, 148, 17478), (47559, 148, 17571), (47560, 148, 17596), (47561, 148, 17606), (47562, 148, 17671), (47563, 148, 17715), (47564, 148, 17759), (47565, 148, 17796), (47566, 148, 17855), (47567, 148, 17898), (47568, 148, 18133), (47569, 148, 18268), (47570, 148, 18415), (47571, 148, 18731), (47572, 148, 18858), (47573, 148, 18873), (47574, 148, 18985), (47575, 148, 18999), (47576, 148, 19046), (47577, 148, 19177), (47578, 148, 19300), (47579, 148, 19343), (47580, 148, 19379), (47581, 148, 19502), (47582, 148, 19831), (47583, 148, 19860), (47584, 148, 19885), (47585, 148, 19960), (47586, 148, 20036), (47587, 148, 20060), (47588, 148, 20111), (47589, 148, 20247), (47590, 148, 20882), (47591, 148, 21148), (47592, 148, 21351), (47593, 148, 21450), (47594, 148, 21558), (47595, 148, 21844), (47596, 148, 21967), (47597, 148, 22188), (47598, 148, 22436), (47599, 148, 22707), (47600, 148, 22770), (47601, 148, 22867), (47602, 148, 23020), (47603, 148, 23126), (47604, 148, 23232), (47605, 148, 23660), (47606, 148, 23769), (47607, 148, 24620), (47608, 148, 25008), (47609, 148, 25022), (47610, 148, 25023), (47611, 148, 25074), (47661, 149, 6597), (47662, 149, 8456), (47663, 149, 10217), (47664, 149, 10871), (47665, 149, 14195), (47666, 149, 18980), (47667, 149, 24876), (47668, 150, 563), (47669, 150, 665), (47670, 150, 855), (47671, 150, 1007), (47672, 150, 1273), (47673, 150, 2783), (47674, 150, 3479), (47675, 150, 3626), (47676, 150, 3966), (47677, 150, 4072), (47678, 150, 4096), (47679, 150, 4143), (47680, 150, 4197), (47681, 150, 5004), (47682, 150, 5040), (47683, 150, 5070), (47684, 150, 5097), (47685, 150, 5681), (47686, 150, 6823), (47687, 150, 7478), (47688, 150, 8006), (47689, 150, 8206), (47690, 150, 8420), (47691, 150, 8487), (47692, 150, 8576), (47693, 150, 8973), (47694, 150, 9315), (47695, 150, 9544), (47696, 150, 9555), (47697, 150, 10050), (47698, 150, 10241), (47699, 150, 11118), (47700, 150, 11701), (47701, 150, 11864), (47702, 150, 12312), (47703, 150, 12853), (47704, 150, 13095), (47705, 150, 13422), (47706, 150, 13969), (47707, 150, 14140), (47708, 150, 14438), (47709, 150, 15373), (47710, 150, 15865), (47711, 150, 17159), (47712, 150, 18410), (47713, 150, 18860), (47714, 150, 19480), (47715, 150, 20098), (47716, 150, 20546), (47717, 150, 21187), (47718, 150, 21424), (47719, 150, 21936), (47720, 150, 24073), (47721, 150, 24998), (47722, 150, 25026), (47723, 150, 25169), (47731, 152, 1947), (47732, 152, 2025), (47733, 152, 2138), (47734, 152, 3420), (47735, 152, 3458), (47736, 152, 3648), (47737, 152, 3682), (47738, 152, 3706), (47739, 152, 3734), (47740, 152, 4258), (47741, 152, 4327), (47742, 152, 4352), (47743, 152, 4565), (47744, 152, 5323), (47745, 152, 5606), (47746, 152, 5791), (47747, 152, 5959), (47748, 152, 5968), (47749, 152, 6043), (47750, 152, 6159), (47751, 152, 6276), (47752, 152, 6377), (47753, 152, 6819), (47754, 152, 7084), (47755, 152, 7814), (47756, 152, 8323), (47757, 152, 9270), (47758, 152, 9433), (47759, 152, 9475), (47760, 152, 9715), (47761, 152, 10680), (47762, 152, 11570), (47763, 152, 11659), (47764, 152, 12174), (47765, 152, 12271), (47766, 152, 12403), (47767, 152, 12938), (47768, 152, 13291), (47769, 152, 13322), (47770, 152, 13632), (47771, 152, 14176), (47772, 152, 14218), (47773, 152, 15193), (47774, 152, 16554), (47775, 152, 16943), (47776, 152, 17739), (47777, 152, 18209), (47778, 152, 18464), (47779, 152, 19213), (47780, 152, 19653), (47781, 152, 20466), (47782, 152, 20636), (47783, 152, 21485), (47784, 152, 22016), (47785, 152, 22286), (47786, 152, 22751), (47787, 152, 23427), (47788, 152, 23788), (47794, 153, 285), (47795, 153, 341), (47796, 153, 368), (47797, 153, 622), (47798, 153, 805), (47799, 153, 833), (47800, 153, 1047), (47801, 153, 1050), (47802, 153, 1359), (47803, 153, 1587), (47804, 153, 1591), (47805, 153, 1608), (47806, 153, 1718), (47807, 153, 1753), (47808, 153, 1759), (47809, 153, 1831), (47810, 153, 1859), (47811, 153, 2035), (47812, 153, 2054), (47813, 153, 2066), (47814, 153, 2088), (47815, 153, 2277), (47816, 153, 2459), (47817, 153, 2524), (47818, 153, 2599), (47819, 153, 2666), (47820, 153, 2807), (47821, 153, 2865), (47822, 153, 2890), (47823, 153, 2915), (47824, 153, 3017), (47825, 153, 3023), (47826, 153, 3152), (47827, 153, 3209), (47828, 153, 3288), (47829, 153, 3330), (47830, 153, 3445), (47831, 153, 3481), (47832, 153, 3597), (47833, 153, 3813), (47834, 153, 3994), (47835, 153, 4228), (47836, 153, 4229), (47837, 153, 4340), (47838, 153, 4402), (47839, 153, 4982), (47840, 153, 4999), (47841, 153, 5093), (47842, 153, 5144), (47843, 153, 5402), (47844, 153, 5409), (47845, 153, 5544), (47846, 153, 5667), (47847, 153, 5777), (47848, 153, 5970), (47849, 153, 5994), (47850, 153, 6091), (47851, 153, 6133), (47852, 153, 6167), (47853, 153, 6270), (47854, 153, 6275), (47855, 153, 6364), (47856, 153, 6383), (47857, 153, 6469), (47858, 153, 6558), (47859, 153, 6900), (47860, 153, 6937), (47861, 153, 7138), (47862, 153, 7216), (47863, 153, 7309), (47864, 153, 7427), (47865, 153, 7532), (47866, 153, 7619), (47867, 153, 7652), (47868, 153, 7965), (47869, 153, 7991), (47870, 153, 8127), (47871, 153, 8200), (47872, 153, 8474), (47873, 153, 9162), (47874, 153, 9279), (47875, 153, 9434), (47876, 153, 9530), (47877, 153, 9566), (47878, 153, 10769), (47879, 153, 11146), (47880, 153, 11242), (47881, 153, 11415), (47882, 153, 11575), (47883, 153, 11674), (47884, 153, 11732), (47885, 153, 11828), (47886, 153, 11954), (47887, 153, 12682), (47888, 153, 12884), (47889, 153, 13148), (47890, 153, 13302), (47891, 153, 14014), (47892, 153, 14590), (47893, 153, 14734), (47894, 153, 15250), (47895, 153, 15489), (47896, 153, 15783), (47897, 153, 16215), (47898, 153, 16495), (47899, 153, 16758), (47900, 153, 16812), (47901, 153, 16874), (47902, 153, 16964), (47903, 153, 17013), (47904, 153, 17171), (47905, 153, 17500), (47906, 153, 17596), (47907, 153, 17606), (47908, 153, 17671), (47909, 153, 19207), (47910, 153, 19892), (47911, 153, 20060), (47912, 153, 20481), (47913, 153, 21148), (47914, 153, 21967), (47915, 153, 22837), (47916, 153, 23660), (47921, 154, 31), (47922, 154, 147), (47923, 154, 580), (47924, 154, 713), (47925, 154, 1014), (47926, 154, 1109), (47927, 154, 1760), (47928, 154, 1879), (47929, 154, 1926), (47930, 154, 2034), (47931, 154, 2096), (47932, 154, 2371), (47933, 154, 2494), (47934, 154, 2579), (47935, 154, 2735), (47936, 154, 2842), (47937, 154, 2889), (47938, 154, 3061), (47939, 154, 3297), (47940, 154, 3495), (47941, 154, 3531), (47942, 154, 3851), (47943, 154, 4333), (47944, 154, 4497), (47945, 154, 4570), (47946, 154, 4758), (47947, 154, 4760), (47948, 154, 4835), (47949, 154, 4842), (47950, 154, 4859), (47951, 154, 5017), (47952, 154, 5032), (47953, 154, 5121), (47954, 154, 5372), (47955, 154, 5597), (47956, 154, 5772), (47957, 154, 5849), (47958, 154, 6303), (47959, 154, 6352), (47960, 154, 6455), (47961, 154, 6924), (47962, 154, 6976), (47963, 154, 6981), (47964, 154, 7081), (47965, 154, 7135), (47966, 154, 7303), (47967, 154, 7443), (47968, 154, 7567), (47969, 154, 7747), (47970, 154, 8161), (47971, 154, 8195), (47972, 154, 8268), (47973, 154, 8361), (47974, 154, 8365), (47975, 154, 8482), (47976, 154, 8504), (47977, 154, 8789), (47978, 154, 8957), (47979, 154, 9042), (47980, 154, 9488), (47981, 154, 9644), (47982, 154, 9729), (47983, 154, 9771), (47984, 154, 10183), (47985, 154, 10265), (47986, 154, 10308), (47987, 154, 10715), (47988, 154, 11534), (47989, 154, 11591), (47990, 154, 11687), (47991, 154, 11820), (47992, 154, 11937), (47993, 154, 12170), (47994, 154, 12604), (47995, 154, 12749), (47996, 154, 12780), (47997, 154, 13714), (47998, 154, 13758), (47999, 154, 13909), (48000, 154, 15240), (48001, 154, 15627), (48002, 154, 15640), (48003, 154, 15648), (48004, 154, 16618), (48005, 154, 16965), (48006, 154, 16991), (48007, 154, 17378), (48008, 154, 17937), (48009, 154, 18921), (48010, 154, 19102), (48011, 154, 19371), (48012, 154, 19659), (48013, 154, 19709), (48014, 154, 19766), (48015, 154, 19943), (48016, 154, 20034), (48017, 154, 20866), (48018, 154, 20906), (48019, 154, 21063), (48020, 154, 21105), (48021, 154, 21171), (48022, 154, 21499), (48023, 154, 22134), (48024, 154, 22690), (48025, 154, 22728), (48026, 154, 23201), (48027, 154, 23225), (48028, 154, 23442), (48029, 154, 24900), (48030, 154, 25046), (48048, 155, 11), (48049, 155, 21), (48050, 155, 37), (48051, 155, 56), (48052, 155, 87), (48053, 155, 91), (48054, 155, 100), (48055, 155, 107), (48056, 155, 123), (48057, 155, 140), (48058, 155, 147), (48059, 155, 168), (48060, 155, 184), (48061, 155, 186), (48062, 155, 188), (48063, 155, 215), (48064, 155, 239), (48065, 155, 244), (48066, 155, 276), (48067, 155, 283), (48068, 155, 299), (48069, 155, 364), (48070, 155, 365), (48071, 155, 398), (48072, 155, 418), (48073, 155, 431), (48074, 155, 460), (48075, 155, 526), (48076, 155, 544), (48077, 155, 603), (48078, 155, 613), (48079, 155, 664), (48080, 155, 735), (48081, 155, 761), (48082, 155, 763), (48083, 155, 791), (48084, 155, 811), (48085, 155, 816), (48086, 155, 820), (48087, 155, 856), (48088, 155, 887), (48089, 155, 888), (48090, 155, 902), (48091, 155, 908), (48092, 155, 963), (48093, 155, 992), (48094, 155, 1005), (48095, 155, 1008), (48096, 155, 1027), (48097, 155, 1028), (48098, 155, 1055), (48099, 155, 1089), (48100, 155, 1108), (48101, 155, 1125), (48102, 155, 1208), (48103, 155, 1209), (48104, 155, 1280), (48105, 155, 1326), (48106, 155, 1379), (48107, 155, 1386), (48108, 155, 1423), (48109, 155, 1424), (48110, 155, 1491), (48111, 155, 1498), (48112, 155, 1551), (48113, 155, 1564), (48114, 155, 1573), (48115, 155, 1576), (48116, 155, 1590), (48117, 155, 1607), (48118, 155, 1618), (48119, 155, 1693), (48120, 155, 1694), (48121, 155, 1709), (48122, 155, 1710), (48123, 155, 1858), (48124, 155, 1861), (48125, 155, 1872), (48126, 155, 1942), (48127, 155, 2011), (48128, 155, 2028), (48129, 155, 2088), (48130, 155, 2091), (48131, 155, 2101), (48132, 155, 2114), (48133, 155, 2124), (48134, 155, 2166), (48135, 155, 2214), (48136, 155, 2230), (48137, 155, 2258), (48138, 155, 2314), (48139, 155, 2323), (48140, 155, 2467), (48141, 155, 2510), (48142, 155, 2544), (48143, 155, 2594), (48144, 155, 2623), (48145, 155, 2637), (48146, 155, 2703), (48147, 155, 2765), (48148, 155, 2771), (48149, 155, 2852), (48150, 155, 2872), (48151, 155, 2952), (48152, 155, 3074), (48153, 155, 3078), (48154, 155, 3134), (48155, 155, 3146), (48156, 155, 3157), (48157, 155, 3271), (48158, 155, 3301), (48159, 155, 3327), (48160, 155, 3350), (48161, 155, 3406), (48162, 155, 3453), (48163, 155, 3454), (48164, 155, 3593), (48165, 155, 3605), (48166, 155, 3615), (48167, 155, 3624), (48168, 155, 3685), (48169, 155, 3716), (48170, 155, 3871), (48171, 155, 3872), (48172, 155, 3881), (48173, 155, 3938), (48174, 155, 3940), (48175, 155, 3979), (48176, 155, 3986), (48177, 155, 3990), (48178, 155, 4024), (48179, 155, 4031), (48180, 155, 4041), (48181, 155, 4051), (48182, 155, 4101), (48183, 155, 4113), (48184, 155, 4131), (48185, 155, 4217), (48186, 155, 4232), (48187, 155, 4277), (48188, 155, 4313), (48189, 155, 4315), (48190, 155, 4326), (48191, 155, 4371), (48192, 155, 4385), (48193, 155, 4393), (48194, 155, 4419), (48195, 155, 4432), (48196, 155, 4477), (48197, 155, 4560), (48198, 155, 4568), (48199, 155, 4592), (48200, 155, 4636), (48201, 155, 4656), (48202, 155, 4662), (48203, 155, 4691), (48204, 155, 4751), (48205, 155, 4794), (48206, 155, 4852), (48207, 155, 4882), (48208, 155, 4897), (48209, 155, 4968), (48210, 155, 4978), (48211, 155, 5076), (48212, 155, 5122), (48213, 155, 5251), (48214, 155, 5257), (48215, 155, 5327), (48216, 155, 5517), (48217, 155, 5604), (48218, 155, 5783), (48219, 155, 5800), (48220, 155, 5871), (48221, 155, 5915), (48222, 155, 5952), (48223, 155, 5996), (48224, 155, 6114), (48225, 155, 6125), (48226, 155, 6151), (48227, 155, 6153), (48228, 155, 6244), (48229, 155, 6256), (48230, 155, 6352), (48231, 155, 6388), (48232, 155, 6407), (48233, 155, 6475), (48234, 155, 6541), (48235, 155, 6550), (48236, 155, 6580), (48237, 155, 6652), (48238, 155, 6692), (48239, 155, 6893), (48240, 155, 6927), (48241, 155, 6941), (48242, 155, 6994), (48243, 155, 7095), (48244, 155, 7098), (48245, 155, 7164), (48246, 155, 7188), (48247, 155, 7262), (48248, 155, 7367), (48249, 155, 7372), (48250, 155, 7446), (48251, 155, 7509), (48252, 155, 7639), (48253, 155, 7747), (48254, 155, 7751), (48255, 155, 7780), (48256, 155, 7897), (48257, 155, 8061), (48258, 155, 8122), (48259, 155, 8258), (48260, 155, 8410), (48261, 155, 8488), (48262, 155, 8489), (48263, 155, 8547), (48264, 155, 8826), (48265, 155, 9084), (48266, 155, 9179), (48267, 155, 9291), (48268, 155, 9391), (48269, 155, 9496), (48270, 155, 9729), (48271, 155, 9755), (48272, 155, 10000), (48273, 155, 10057), (48274, 155, 10080), (48275, 155, 10165), (48276, 155, 10430), (48277, 155, 10491), (48278, 155, 10638), (48279, 155, 10663), (48280, 155, 10690), (48281, 155, 10852), (48282, 155, 11252), (48283, 155, 11272), (48284, 155, 11396), (48285, 155, 11410), (48286, 155, 11447), (48287, 155, 11552), (48288, 155, 11676), (48289, 155, 11696), (48290, 155, 11902), (48291, 155, 11958), (48292, 155, 12053), (48293, 155, 12196), (48294, 155, 12357), (48295, 155, 12612), (48296, 155, 12855), (48297, 155, 13179), (48298, 155, 13363), (48299, 155, 13778), (48300, 155, 14002), (48301, 155, 14072), (48302, 155, 14127), (48303, 155, 14154), (48304, 155, 14303), (48305, 155, 14501), (48306, 155, 14780), (48307, 155, 14869), (48308, 155, 15132), (48309, 155, 15200), (48310, 155, 15338), (48311, 155, 15553), (48312, 155, 15732), (48313, 155, 15967), (48314, 155, 15993), (48315, 155, 16085), (48316, 155, 16639), (48317, 155, 16681), (48318, 155, 16721), (48319, 155, 17081), (48320, 155, 17536), (48321, 155, 17614), (48322, 155, 17864), (48323, 155, 17928), (48324, 155, 17964), (48325, 155, 18423), (48326, 155, 18447), (48327, 155, 18563), (48328, 155, 18955), (48329, 155, 19136), (48330, 155, 19328), (48331, 155, 19466), (48332, 155, 19891), (48333, 155, 19899), (48334, 155, 20150), (48335, 155, 20187), (48336, 155, 20400), (48337, 155, 20532), (48338, 155, 20610), (48339, 155, 20617), (48340, 155, 20623), (48341, 155, 20837), (48342, 155, 20858), (48343, 155, 20866), (48344, 155, 21018), (48345, 155, 21137), (48346, 155, 21199), (48347, 155, 21230), (48348, 155, 21326), (48349, 155, 21407), (48350, 155, 21613), (48351, 155, 21652), (48352, 155, 21683), (48353, 155, 21728), (48354, 155, 21850), (48355, 155, 21901), (48356, 155, 22081), (48357, 155, 22099), (48358, 155, 22202), (48359, 155, 22389), (48360, 155, 22493), (48361, 155, 22777), (48362, 155, 22827), (48363, 155, 22871), (48364, 155, 22881), (48365, 155, 24048), (48366, 155, 24173), (48367, 155, 24688), (48368, 155, 25046), (48369, 155, 25110), (48370, 155, 25165), (48371, 155, 25232), (48559, 156, 56), (48560, 156, 87), (48561, 156, 123), (48562, 156, 140), (48563, 156, 184), (48564, 156, 215), (48565, 156, 364), (48566, 156, 887), (48567, 156, 1005), (48568, 156, 1027), (48569, 156, 1709), (48570, 156, 2011), (48571, 156, 2510), (48572, 156, 2544), (48573, 156, 2765), (48574, 156, 3146), (48575, 156, 3624), (48576, 156, 4041), (48577, 156, 4385), (48578, 156, 4393), (48579, 156, 5257), (48580, 156, 6151), (48581, 156, 6580), (48582, 156, 6652), (48583, 156, 7164), (48584, 156, 7509), (48585, 156, 8061), (48586, 156, 8122), (48587, 156, 8258), (48588, 156, 8489), (48589, 156, 9291), (48590, 156, 9729), (48591, 156, 9755), (48592, 156, 10080), (48593, 156, 10165), (48594, 156, 10430), (48595, 156, 10852), (48596, 156, 12053), (48597, 156, 14002), (48598, 156, 14127), (48599, 156, 15200), (48600, 156, 15967), (48601, 156, 15993), (48602, 156, 16085), (48603, 156, 16639), (48604, 156, 18955), (48605, 156, 19136), (48606, 156, 21137), (48607, 156, 21728), (48608, 156, 25110), (48622, 157, 31), (48623, 157, 56), (48624, 157, 87), (48625, 157, 123), (48626, 157, 129), (48627, 157, 140), (48628, 157, 147), (48629, 157, 184), (48630, 157, 212), (48631, 157, 215), (48632, 157, 258), (48633, 157, 325), (48634, 157, 333), (48635, 157, 364), (48636, 157, 431), (48637, 157, 438), (48638, 157, 467), (48639, 157, 502), (48640, 157, 542), (48641, 157, 580), (48642, 157, 647), (48643, 157, 655), (48644, 157, 667), (48645, 157, 713), (48646, 157, 816), (48647, 157, 866), (48648, 157, 887), (48649, 157, 903), (48650, 157, 907), (48651, 157, 908), (48652, 157, 987), (48653, 157, 992), (48654, 157, 1005), (48655, 157, 1014), (48656, 157, 1027), (48657, 157, 1080), (48658, 157, 1109), (48659, 157, 1166), (48660, 157, 1183), (48661, 157, 1259), (48662, 157, 1343), (48663, 157, 1357), (48664, 157, 1386), (48665, 157, 1504), (48666, 157, 1509), (48667, 157, 1573), (48668, 157, 1675), (48669, 157, 1709), (48670, 157, 1760), (48671, 157, 1762), (48672, 157, 1764), (48673, 157, 1795), (48674, 157, 1868), (48675, 157, 1872), (48676, 157, 1879), (48677, 157, 1926), (48678, 157, 2011), (48679, 157, 2034), (48680, 157, 2096), (48681, 157, 2124), (48682, 157, 2214), (48683, 157, 2220), (48684, 157, 2245), (48685, 157, 2269), (48686, 157, 2328), (48687, 157, 2334), (48688, 157, 2371), (48689, 157, 2494), (48690, 157, 2505), (48691, 157, 2510), (48692, 157, 2544), (48693, 157, 2579), (48694, 157, 2609), (48695, 157, 2714), (48696, 157, 2725), (48697, 157, 2735), (48698, 157, 2765), (48699, 157, 2787), (48700, 157, 2842), (48701, 157, 2889), (48702, 157, 2919), (48703, 157, 2954), (48704, 157, 3012), (48705, 157, 3053), (48706, 157, 3061), (48707, 157, 3099), (48708, 157, 3146), (48709, 157, 3193), (48710, 157, 3264), (48711, 157, 3297), (48712, 157, 3327), (48713, 157, 3440), (48714, 157, 3443), (48715, 157, 3495), (48716, 157, 3498), (48717, 157, 3504), (48718, 157, 3531), (48719, 157, 3624), (48720, 157, 3641), (48721, 157, 3672), (48722, 157, 3697), (48723, 157, 3716), (48724, 157, 3723), (48725, 157, 3794), (48726, 157, 3843), (48727, 157, 3851), (48728, 157, 3858), (48729, 157, 3864), (48730, 157, 3890), (48731, 157, 4041), (48732, 157, 4126), (48733, 157, 4129), (48734, 157, 4139), (48735, 157, 4151), (48736, 157, 4188), (48737, 157, 4315), (48738, 157, 4333), (48739, 157, 4385), (48740, 157, 4389), (48741, 157, 4393), (48742, 157, 4432), (48743, 157, 4497), (48744, 157, 4503), (48745, 157, 4543), (48746, 157, 4570), (48747, 157, 4592), (48748, 157, 4663), (48749, 157, 4758), (48750, 157, 4760), (48751, 157, 4785), (48752, 157, 4817), (48753, 157, 4835), (48754, 157, 4842), (48755, 157, 4845), (48756, 157, 4852), (48757, 157, 4859), (48758, 157, 4897), (48759, 157, 4966), (48760, 157, 4968), (48761, 157, 5017), (48762, 157, 5032), (48763, 157, 5045), (48764, 157, 5121), (48765, 157, 5122), (48766, 157, 5180), (48767, 157, 5257), (48768, 157, 5365), (48769, 157, 5372), (48770, 157, 5509), (48771, 157, 5542), (48772, 157, 5543), (48773, 157, 5545), (48774, 157, 5548), (48775, 157, 5577), (48776, 157, 5597), (48777, 157, 5684), (48778, 157, 5760), (48779, 157, 5772), (48780, 157, 5793), (48781, 157, 5849), (48782, 157, 5912), (48783, 157, 5936), (48784, 157, 6132), (48785, 157, 6149), (48786, 157, 6151), (48787, 157, 6213), (48788, 157, 6303), (48789, 157, 6352), (48790, 157, 6372), (48791, 157, 6417), (48792, 157, 6455), (48793, 157, 6580), (48794, 157, 6652), (48795, 157, 6924), (48796, 157, 6976), (48797, 157, 6981), (48798, 157, 6997), (48799, 157, 7081), (48800, 157, 7095), (48801, 157, 7135), (48802, 157, 7164), (48803, 157, 7270), (48804, 157, 7303), (48805, 157, 7367), (48806, 157, 7438), (48807, 157, 7443), (48808, 157, 7509), (48809, 157, 7563), (48810, 157, 7567), (48811, 157, 7632), (48812, 157, 7640), (48813, 157, 7747), (48814, 157, 7754), (48815, 157, 7829), (48816, 157, 8040), (48817, 157, 8061), (48818, 157, 8122), (48819, 157, 8161), (48820, 157, 8195), (48821, 157, 8223), (48822, 157, 8258), (48823, 157, 8268), (48824, 157, 8291), (48825, 157, 8361), (48826, 157, 8365), (48827, 157, 8413), (48828, 157, 8482), (48829, 157, 8489), (48830, 157, 8504), (48831, 157, 8511), (48832, 157, 8559), (48833, 157, 8632), (48834, 157, 8704), (48835, 157, 8789), (48836, 157, 8957), (48837, 157, 9042), (48838, 157, 9084), (48839, 157, 9157), (48840, 157, 9268), (48841, 157, 9291), (48842, 157, 9368), (48843, 157, 9414), (48844, 157, 9488), (48845, 157, 9517), (48846, 157, 9644), (48847, 157, 9729), (48848, 157, 9742), (48849, 157, 9755), (48850, 157, 9771), (48851, 157, 10080), (48852, 157, 10083), (48853, 157, 10165), (48854, 157, 10183), (48855, 157, 10265), (48856, 157, 10308), (48857, 157, 10430), (48858, 157, 10597), (48859, 157, 10690), (48860, 157, 10715), (48861, 157, 10852), (48862, 157, 11011), (48863, 157, 11048), (48864, 157, 11104), (48865, 157, 11187), (48866, 157, 11291), (48867, 157, 11472), (48868, 157, 11534), (48869, 157, 11591), (48870, 157, 11687), (48871, 157, 11796), (48872, 157, 11820), (48873, 157, 11937), (48874, 157, 12018), (48875, 157, 12053), (48876, 157, 12073), (48877, 157, 12100), (48878, 157, 12170), (48879, 157, 12250), (48880, 157, 12333), (48881, 157, 12353), (48882, 157, 12525), (48883, 157, 12604), (48884, 157, 12749), (48885, 157, 12780), (48886, 157, 13262), (48887, 157, 13431), (48888, 157, 13441), (48889, 157, 13448), (48890, 157, 13714), (48891, 157, 13758), (48892, 157, 13909), (48893, 157, 14002), (48894, 157, 14127), (48895, 157, 14597), (48896, 157, 14760), (48897, 157, 14846), (48898, 157, 14847), (48899, 157, 15200), (48900, 157, 15240), (48901, 157, 15627), (48902, 157, 15640), (48903, 157, 15648), (48904, 157, 15804), (48905, 157, 15818), (48906, 157, 15967), (48907, 157, 15993), (48908, 157, 16085), (48909, 157, 16618), (48910, 157, 16639), (48911, 157, 16782), (48912, 157, 16902), (48913, 157, 16921), (48914, 157, 16965), (48915, 157, 16991), (48916, 157, 17151), (48917, 157, 17378), (48918, 157, 17937), (48919, 157, 18129), (48920, 157, 18447), (48921, 157, 18579), (48922, 157, 18818), (48923, 157, 18900), (48924, 157, 18921), (48925, 157, 18937), (48926, 157, 18941), (48927, 157, 18955), (48928, 157, 19033), (48929, 157, 19102), (48930, 157, 19126), (48931, 157, 19136), (48932, 157, 19306), (48933, 157, 19328), (48934, 157, 19371), (48935, 157, 19659), (48936, 157, 19709), (48937, 157, 19766), (48938, 157, 19943), (48939, 157, 20034), (48940, 157, 20150), (48941, 157, 20154), (48942, 157, 20532), (48943, 157, 20866), (48944, 157, 20906), (48945, 157, 21063), (48946, 157, 21105), (48947, 157, 21137), (48948, 157, 21171), (48949, 157, 21376), (48950, 157, 21499), (48951, 157, 21728), (48952, 157, 21850), (48953, 157, 22046), (48954, 157, 22099), (48955, 157, 22134), (48956, 157, 22218), (48957, 157, 22388), (48958, 157, 22398), (48959, 157, 22413), (48960, 157, 22690), (48961, 157, 22728), (48962, 157, 22908), (48963, 157, 23146), (48964, 157, 23201), (48965, 157, 23225), (48966, 157, 23442), (48967, 157, 23694), (48968, 157, 23709), (48969, 157, 24177), (48970, 157, 24900), (48971, 157, 25046), (48972, 157, 25096), (48973, 157, 25110), (48974, 157, 25165), (48975, 157, 25232), (49133, 158, 123), (49134, 158, 431), (49135, 158, 531), (49136, 158, 908), (49137, 158, 1076), (49138, 158, 1259), (49139, 158, 1386), (49140, 158, 1726), (49141, 158, 2214), (49142, 158, 2276), (49143, 158, 2482), (49144, 158, 3061), (49145, 158, 3099), (49146, 158, 3449), (49147, 158, 3843), (49148, 158, 3875), (49149, 158, 3960), (49150, 158, 4125), (49151, 158, 4139), (49152, 158, 4210), (49153, 158, 4481), (49154, 158, 4615), (49155, 158, 4616), (49156, 158, 4663), (49157, 158, 5282), (49158, 158, 5284), (49159, 158, 5415), (49160, 158, 5475), (49161, 158, 5739), (49162, 158, 5793), (49163, 158, 5952), (49164, 158, 6417), (49165, 158, 6685), (49166, 158, 6776), (49167, 158, 6789), (49168, 158, 7558), (49169, 158, 7853), (49170, 158, 8291), (49171, 158, 8410), (49172, 158, 8466), (49173, 158, 8730), (49174, 158, 8861), (49175, 158, 9632), (49176, 158, 9742), (49177, 158, 9913), (49178, 158, 10056), (49179, 158, 10167), (49180, 158, 10275), (49181, 158, 10340), (49182, 158, 10469), (49183, 158, 11104), (49184, 158, 11171), (49185, 158, 11291), (49186, 158, 11707), (49187, 158, 12153), (49188, 158, 12621), (49189, 158, 13448), (49190, 158, 14877), (49191, 158, 16036), (49192, 158, 18513), (49193, 158, 18900), (49194, 158, 18941), (49195, 158, 21144), (49196, 158, 21613), (49197, 158, 21886), (49198, 158, 22223), (49260, 159, 123), (49261, 159, 231), (49262, 159, 244), (49263, 159, 325), (49264, 159, 431), (49265, 159, 467), (49266, 159, 720), (49267, 159, 816), (49268, 159, 831), (49269, 159, 908), (49270, 159, 1080), (49271, 159, 1154), (49272, 159, 1164), (49273, 159, 1219), (49274, 159, 1225), (49275, 159, 1259), (49276, 159, 1424), (49277, 159, 1550), (49278, 159, 1921), (49279, 159, 2104), (49280, 159, 2124), (49281, 159, 2404), (49282, 159, 2551), (49283, 159, 2701), (49284, 159, 2709), (49285, 159, 3193), (49286, 159, 3348), (49287, 159, 3701), (49288, 159, 3797), (49289, 159, 3979), (49290, 159, 4101), (49291, 159, 4113), (49292, 159, 4139), (49293, 159, 4210), (49294, 159, 4326), (49295, 159, 4575), (49296, 159, 4672), (49297, 159, 4742), (49298, 159, 4866), (49299, 159, 5267), (49300, 159, 5365), (49301, 159, 5545), (49302, 159, 5793), (49303, 159, 5808), (49304, 159, 6031), (49305, 159, 6077), (49306, 159, 6114), (49307, 159, 6244), (49308, 159, 6356), (49309, 159, 6901), (49310, 159, 7367), (49311, 159, 7660), (49312, 159, 7671), (49313, 159, 8291), (49314, 159, 8753), (49315, 159, 8942), (49316, 159, 10431), (49317, 159, 10491), (49318, 159, 11401), (49319, 159, 12230), (49320, 159, 13448), (49321, 159, 18447), (49322, 159, 18579), (49323, 159, 19022), (49324, 159, 19845), (49325, 159, 21751), (49326, 159, 21850), (49327, 159, 22099), (49328, 159, 24145), (49387, 160, 5), (49388, 160, 203), (49389, 160, 415), (49390, 160, 558), (49391, 160, 675), (49392, 160, 1001), (49393, 160, 1032), (49394, 160, 1123), (49395, 160, 1361), (49396, 160, 1645), (49397, 160, 1784), (49398, 160, 1863), (49399, 160, 1971), (49400, 160, 2021), (49401, 160, 2140), (49402, 160, 2183), (49403, 160, 2336), (49404, 160, 2386), (49405, 160, 3047), (49406, 160, 3060), (49407, 160, 3386), (49408, 160, 3448), (49409, 160, 3697), (49410, 160, 3709), (49411, 160, 3723), (49412, 160, 3798), (49413, 160, 3809), (49414, 160, 3896), (49415, 160, 4230), (49416, 160, 4523), (49417, 160, 4536), (49418, 160, 4647), (49419, 160, 4830), (49420, 160, 4861), (49421, 160, 4872), (49422, 160, 5058), (49423, 160, 5132), (49424, 160, 5364), (49425, 160, 5444), (49426, 160, 5584), (49427, 160, 5608), (49428, 160, 6004), (49429, 160, 6245), (49430, 160, 6446), (49431, 160, 6670), (49432, 160, 7132), (49433, 160, 7350), (49434, 160, 7469), (49435, 160, 7626), (49436, 160, 7665), (49437, 160, 7773), (49438, 160, 8111), (49439, 160, 8206), (49440, 160, 8541), (49441, 160, 8563), (49442, 160, 8608), (49443, 160, 8631), (49444, 160, 8646), (49445, 160, 8824), (49446, 160, 8865), (49447, 160, 9010), (49448, 160, 9230), (49449, 160, 9497), (49450, 160, 9825), (49451, 160, 9834), (49452, 160, 10481), (49453, 160, 10698), (49454, 160, 10828), (49455, 160, 10846), (49456, 160, 11354), (49457, 160, 11367), (49458, 160, 11599), (49459, 160, 11742), (49460, 160, 12038), (49461, 160, 12052), (49462, 160, 12278), (49463, 160, 12507), (49464, 160, 12520), (49465, 160, 12707), (49466, 160, 13175), (49467, 160, 14243), (49468, 160, 14456), (49469, 160, 14610), (49470, 160, 14680), (49471, 160, 15512), (49472, 160, 15631), (49473, 160, 17267), (49474, 160, 17425), (49475, 160, 17495), (49476, 160, 18028), (49477, 160, 18181), (49478, 160, 19025), (49479, 160, 20646), (49480, 160, 21141), (49481, 160, 21403), (49482, 160, 21657), (49483, 160, 22432), (49514, 161, 208), (49515, 161, 536), (49516, 161, 558), (49517, 161, 1106), (49518, 161, 1274), (49519, 161, 1460), (49520, 161, 1537), (49521, 161, 1688), (49522, 161, 1702), (49523, 161, 1789), (49524, 161, 1920), (49525, 161, 1971), (49526, 161, 2136), (49527, 161, 3041), (49528, 161, 3227), (49529, 161, 3492), (49530, 161, 3622), (49531, 161, 3824), (49532, 161, 4100), (49533, 161, 4724), (49534, 161, 4769), (49535, 161, 4932), (49536, 161, 5041), (49537, 161, 5058), (49538, 161, 5334), (49539, 161, 5444), (49540, 161, 5608), (49541, 161, 6252), (49542, 161, 6695), (49543, 161, 7083), (49544, 161, 7205), (49545, 161, 7547), (49546, 161, 7731), (49547, 161, 7934), (49548, 161, 8100), (49549, 161, 8355), (49550, 161, 8529), (49551, 161, 8631), (49552, 161, 8762), (49553, 161, 8781), (49554, 161, 8995), (49555, 161, 9108), (49556, 161, 9260), (49557, 161, 9318), (49558, 161, 9985), (49559, 161, 10075), (49560, 161, 10429), (49561, 161, 10596), (49562, 161, 10689), (49563, 161, 10698), (49564, 161, 11184), (49565, 161, 11185), (49566, 161, 11416), (49567, 161, 11599), (49568, 161, 11668), (49569, 161, 12040), (49570, 161, 12114), (49571, 161, 12126), (49572, 161, 12151), (49573, 161, 12507), (49574, 161, 12731), (49575, 161, 13052), (49576, 161, 13224), (49577, 161, 13348), (49578, 161, 13402), (49579, 161, 13787), (49580, 161, 13940), (49581, 161, 14067), (49582, 161, 14076), (49583, 161, 14370), (49584, 161, 14427), (49585, 161, 14522), (49586, 161, 14559), (49587, 161, 14627), (49588, 161, 15039), (49589, 161, 15264), (49590, 161, 15697), (49591, 161, 15770), (49592, 161, 16218), (49593, 161, 16243), (49594, 161, 16492), (49595, 161, 16570), (49596, 161, 17342), (49597, 161, 17375), (49598, 161, 17395), (49599, 161, 18011), (49600, 161, 18181), (49601, 161, 18256), (49602, 161, 18717), (49603, 161, 20027), (49604, 161, 20069), (49605, 161, 20588), (49606, 161, 20952), (49607, 161, 21671), (49608, 161, 22189), (49609, 161, 22397), (49610, 161, 23696), (49641, 162, 5), (49642, 162, 15), (49643, 162, 39), (49644, 162, 82), (49645, 162, 201), (49646, 162, 203), (49647, 162, 272), (49648, 162, 416), (49649, 162, 455), (49650, 162, 494), (49651, 162, 536), (49652, 162, 663), (49653, 162, 675), (49654, 162, 681), (49655, 162, 737), (49656, 162, 746), (49657, 162, 819), (49658, 162, 864), (49659, 162, 1036), (49660, 162, 1069), (49661, 162, 1194), (49662, 162, 1215), (49663, 162, 1532), (49664, 162, 1534), (49665, 162, 1537), (49666, 162, 1624), (49667, 162, 1774), (49668, 162, 1789), (49669, 162, 1977), (49670, 162, 2140), (49671, 162, 2183), (49672, 162, 2498), (49673, 162, 2572), (49674, 162, 2680), (49675, 162, 2879), (49676, 162, 2991), (49677, 162, 3107), (49678, 162, 3492), (49679, 162, 3501), (49680, 162, 3824), (49681, 162, 4159), (49682, 162, 4724), (49683, 162, 4781), (49684, 162, 4821), (49685, 162, 4861), (49686, 162, 4885), (49687, 162, 5058), (49688, 162, 5132), (49689, 162, 5375), (49690, 162, 5605), (49691, 162, 5636), (49692, 162, 5644), (49693, 162, 5820), (49694, 162, 5892), (49695, 162, 5895), (49696, 162, 5925), (49697, 162, 6181), (49698, 162, 6252), (49699, 162, 6397), (49700, 162, 6513), (49701, 162, 6594), (49702, 162, 6695), (49703, 162, 6830), (49704, 162, 6968), (49705, 162, 7066), (49706, 162, 7267), (49707, 162, 7352), (49708, 162, 7525), (49709, 162, 7547), (49710, 162, 7721), (49711, 162, 7842), (49712, 162, 7880), (49713, 162, 7934), (49714, 162, 7946), (49715, 162, 7983), (49716, 162, 8146), (49717, 162, 8233), (49718, 162, 8321), (49719, 162, 8450), (49720, 162, 8472), (49721, 162, 8514), (49722, 162, 8710), (49723, 162, 8892), (49724, 162, 8895), (49725, 162, 8904), (49726, 162, 8925), (49727, 162, 8950), (49728, 162, 9028), (49729, 162, 9053), (49730, 162, 9078), (49731, 162, 9134), (49732, 162, 9197), (49733, 162, 9247), (49734, 162, 9399), (49735, 162, 9416), (49736, 162, 9635), (49737, 162, 9853), (49738, 162, 9893), (49739, 162, 9979), (49740, 162, 9989), (49741, 162, 10035), (49742, 162, 10075), (49743, 162, 10087), (49744, 162, 10107), (49745, 162, 10157), (49746, 162, 10335), (49747, 162, 10372), (49748, 162, 10538), (49749, 162, 10639), (49750, 162, 10689), (49751, 162, 10698), (49752, 162, 10754), (49753, 162, 11062), (49754, 162, 11076), (49755, 162, 11155), (49756, 162, 11183), (49757, 162, 11211), (49758, 162, 11280), (49759, 162, 11284), (49760, 162, 11416), (49761, 162, 11557), (49762, 162, 11599), (49763, 162, 11773), (49764, 162, 11813), (49765, 162, 11821), (49766, 162, 11841), (49767, 162, 11964), (49768, 162, 11967), (49769, 162, 11995), (49770, 162, 12028), (49771, 162, 12052), (49772, 162, 12126), (49773, 162, 12151), (49774, 162, 12185), (49775, 162, 12293), (49776, 162, 12420), (49777, 162, 12471), (49778, 162, 12530), (49779, 162, 12570), (49780, 162, 12892), (49781, 162, 13010), (49782, 162, 13080), (49783, 162, 13208), (49784, 162, 13336), (49785, 162, 13415), (49786, 162, 13420), (49787, 162, 13564), (49788, 162, 13580), (49789, 162, 13921), (49790, 162, 13931), (49791, 162, 14100), (49792, 162, 14187), (49793, 162, 14192), (49794, 162, 14348), (49795, 162, 14367), (49796, 162, 14428), (49797, 162, 14453), (49798, 162, 14522), (49799, 162, 14534), (49800, 162, 14704), (49801, 162, 14708), (49802, 162, 14928), (49803, 162, 15114), (49804, 162, 15264), (49805, 162, 15495), (49806, 162, 15512), (49807, 162, 15735), (49808, 162, 15811), (49809, 162, 15942), (49810, 162, 15976), (49811, 162, 16057), (49812, 162, 16105), (49813, 162, 16216), (49814, 162, 16279), (49815, 162, 16432), (49816, 162, 16544), (49817, 162, 16820), (49818, 162, 16852), (49819, 162, 16926), (49820, 162, 16934), (49821, 162, 17176), (49822, 162, 17257), (49823, 162, 17267), (49824, 162, 17335), (49825, 162, 17340), (49826, 162, 17470), (49827, 162, 17533), (49828, 162, 17541); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (49829, 162, 17543), (49830, 162, 17626), (49831, 162, 17838), (49832, 162, 18032), (49833, 162, 18195), (49834, 162, 18197), (49835, 162, 18232), (49836, 162, 18273), (49837, 162, 18301), (49838, 162, 18321), (49839, 162, 18328), (49840, 162, 18457), (49841, 162, 18484), (49842, 162, 18852), (49843, 162, 19075), (49844, 162, 19406), (49845, 162, 19474), (49846, 162, 19537), (49847, 162, 19549), (49848, 162, 20047), (49849, 162, 20172), (49850, 162, 20668), (49851, 162, 20952), (49852, 162, 21191), (49853, 162, 21356), (49854, 162, 21458), (49855, 162, 21654), (49856, 162, 21900), (49857, 162, 21910), (49858, 162, 22793), (49859, 162, 24042), (49896, 163, 5), (49897, 163, 103), (49898, 163, 161), (49899, 163, 208), (49900, 163, 265), (49901, 163, 270), (49902, 163, 420), (49903, 163, 428), (49904, 163, 455), (49905, 163, 675), (49906, 163, 1194), (49907, 163, 1288), (49908, 163, 1319), (49909, 163, 1321), (49910, 163, 1431), (49911, 163, 1503), (49912, 163, 1537), (49913, 163, 1543), (49914, 163, 1688), (49915, 163, 1784), (49916, 163, 1900), (49917, 163, 1956), (49918, 163, 1977), (49919, 163, 2183), (49920, 163, 2572), (49921, 163, 2644), (49922, 163, 2991), (49923, 163, 3107), (49924, 163, 3223), (49925, 163, 3227), (49926, 163, 3492), (49927, 163, 3546), (49928, 163, 3622), (49929, 163, 3652), (49930, 163, 4100), (49931, 163, 4647), (49932, 163, 4703), (49933, 163, 4724), (49934, 163, 4769), (49935, 163, 4781), (49936, 163, 4822), (49937, 163, 4830), (49938, 163, 4877), (49939, 163, 4933), (49940, 163, 4990), (49941, 163, 5016), (49942, 163, 5041), (49943, 163, 5132), (49944, 163, 5135), (49945, 163, 5309), (49946, 163, 5334), (49947, 163, 5532), (49948, 163, 5840), (49949, 163, 6202), (49950, 163, 6242), (49951, 163, 6252), (49952, 163, 6346), (49953, 163, 6457), (49954, 163, 6531), (49955, 163, 6695), (49956, 163, 6830), (49957, 163, 6940), (49958, 163, 7008), (49959, 163, 7032), (49960, 163, 7112), (49961, 163, 7205), (49962, 163, 7267), (49963, 163, 7417), (49964, 163, 7487), (49965, 163, 7525), (49966, 163, 7543), (49967, 163, 7545), (49968, 163, 7547), (49969, 163, 7766), (49970, 163, 7787), (49971, 163, 7934), (49972, 163, 7988), (49973, 163, 8020), (49974, 163, 8100), (49975, 163, 8146), (49976, 163, 8169), (49977, 163, 8228), (49978, 163, 8270), (49979, 163, 8322), (49980, 163, 8529), (49981, 163, 8557), (49982, 163, 8621), (49983, 163, 8638), (49984, 163, 8751), (49985, 163, 8802), (49986, 163, 8995), (49987, 163, 9053), (49988, 163, 9197), (49989, 163, 9247), (49990, 163, 9371), (49991, 163, 9399), (49992, 163, 9432), (49993, 163, 9471), (49994, 163, 9577), (49995, 163, 9590), (49996, 163, 9739), (49997, 163, 9750), (49998, 163, 9774), (49999, 163, 9782), (50000, 163, 9860), (50001, 163, 9946), (50002, 163, 9969), (50003, 163, 9985), (50004, 163, 10010), (50005, 163, 10041), (50006, 163, 10052), (50007, 163, 10107), (50008, 163, 10202), (50009, 163, 10248), (50010, 163, 10538), (50011, 163, 10596), (50012, 163, 10607), (50013, 163, 10689), (50014, 163, 10698), (50015, 163, 10701), (50016, 163, 10846), (50017, 163, 10892), (50018, 163, 10905), (50019, 163, 10927), (50020, 163, 11061), (50021, 163, 11062), (50022, 163, 11069), (50023, 163, 11183), (50024, 163, 11235), (50025, 163, 11253), (50026, 163, 11280), (50027, 163, 11366), (50028, 163, 11425), (50029, 163, 11453), (50030, 163, 11506), (50031, 163, 11512), (50032, 163, 11543), (50033, 163, 11568), (50034, 163, 11668), (50035, 163, 11670), (50036, 163, 11767), (50037, 163, 11813), (50038, 163, 12040), (50039, 163, 12067), (50040, 163, 12114), (50041, 163, 12340), (50042, 163, 12554), (50043, 163, 12669), (50044, 163, 12731), (50045, 163, 12763), (50046, 163, 12924), (50047, 163, 13045), (50048, 163, 13052), (50049, 163, 13094), (50050, 163, 13145), (50051, 163, 13224), (50052, 163, 13281), (50053, 163, 13304), (50054, 163, 13460), (50055, 163, 13482), (50056, 163, 13708), (50057, 163, 13787), (50058, 163, 13895), (50059, 163, 13902), (50060, 163, 13903), (50061, 163, 13928), (50062, 163, 13940), (50063, 163, 13962), (50064, 163, 14067), (50065, 163, 14076), (50066, 163, 14197), (50067, 163, 14202), (50068, 163, 14370), (50069, 163, 14422), (50070, 163, 14427), (50071, 163, 14462), (50072, 163, 14627), (50073, 163, 14674), (50074, 163, 14750), (50075, 163, 14813), (50076, 163, 14868), (50077, 163, 14894), (50078, 163, 14922), (50079, 163, 14926), (50080, 163, 15023), (50081, 163, 15184), (50082, 163, 15188), (50083, 163, 15264), (50084, 163, 15303), (50085, 163, 15501), (50086, 163, 15520), (50087, 163, 15697), (50088, 163, 15841), (50089, 163, 15875), (50090, 163, 15879), (50091, 163, 15895), (50092, 163, 15920), (50093, 163, 16050), (50094, 163, 16116), (50095, 163, 16243), (50096, 163, 16300), (50097, 163, 16305), (50098, 163, 16371), (50099, 163, 16544), (50100, 163, 16570), (50101, 163, 16663), (50102, 163, 16765), (50103, 163, 16878), (50104, 163, 16934), (50105, 163, 16952), (50106, 163, 17049), (50107, 163, 17141), (50108, 163, 17267), (50109, 163, 17297), (50110, 163, 17334), (50111, 163, 17342), (50112, 163, 17569), (50113, 163, 17578), (50114, 163, 17724), (50115, 163, 17871), (50116, 163, 17949), (50117, 163, 18036), (50118, 163, 18197), (50119, 163, 18256), (50120, 163, 18321), (50121, 163, 18371), (50122, 163, 18636), (50123, 163, 18712), (50124, 163, 18717), (50125, 163, 18785), (50126, 163, 19167), (50127, 163, 19267), (50128, 163, 19396), (50129, 163, 19773), (50130, 163, 19808), (50131, 163, 20027), (50132, 163, 20069), (50133, 163, 20356), (50134, 163, 20474), (50135, 163, 20588), (50136, 163, 20605), (50137, 163, 20893), (50138, 163, 21002), (50139, 163, 21111), (50140, 163, 21160), (50141, 163, 21356), (50142, 163, 21381), (50143, 163, 21671), (50144, 163, 21842), (50145, 163, 22039), (50146, 163, 22116), (50147, 163, 22189), (50148, 163, 22329), (50149, 163, 22349), (50150, 163, 22713), (50151, 163, 22773), (50152, 163, 22793), (50153, 163, 22836), (50154, 163, 23193), (50155, 163, 23298), (50156, 163, 23435), (50157, 163, 23495), (50158, 163, 23653), (50159, 163, 24168), (50160, 163, 24300), (50161, 163, 25184), (50162, 163, 25224), (50407, 164, 34), (50408, 164, 65), (50409, 164, 74), (50410, 164, 88), (50411, 164, 111), (50412, 164, 112), (50413, 164, 119), (50414, 164, 203), (50415, 164, 224), (50416, 164, 232), (50417, 164, 236), (50418, 164, 250), (50419, 164, 262), (50420, 164, 295), (50421, 164, 308), (50422, 164, 312), (50423, 164, 342), (50424, 164, 363), (50425, 164, 389), (50426, 164, 405), (50427, 164, 415), (50428, 164, 441), (50429, 164, 452), (50430, 164, 490), (50431, 164, 602), (50432, 164, 628), (50433, 164, 630), (50434, 164, 652), (50435, 164, 661), (50436, 164, 668), (50437, 164, 673), (50438, 164, 689), (50439, 164, 739), (50440, 164, 749), (50441, 164, 755), (50442, 164, 813), (50443, 164, 852), (50444, 164, 868), (50445, 164, 869), (50446, 164, 920), (50447, 164, 949), (50448, 164, 1034), (50449, 164, 1070), (50450, 164, 1110), (50451, 164, 1188), (50452, 164, 1237), (50453, 164, 1255), (50454, 164, 1381), (50455, 164, 1416), (50456, 164, 1470), (50457, 164, 1503), (50458, 164, 1522), (50459, 164, 1524), (50460, 164, 1585), (50461, 164, 1600), (50462, 164, 1641), (50463, 164, 1779), (50464, 164, 1829), (50465, 164, 1846), (50466, 164, 1887), (50467, 164, 1983), (50468, 164, 2037), (50469, 164, 2044), (50470, 164, 2115), (50471, 164, 2229), (50472, 164, 2343), (50473, 164, 2378), (50474, 164, 2426), (50475, 164, 2439), (50476, 164, 2641), (50477, 164, 2681), (50478, 164, 2699), (50479, 164, 2731), (50480, 164, 2763), (50481, 164, 2779), (50482, 164, 2796), (50483, 164, 2837), (50484, 164, 2956), (50485, 164, 2972), (50486, 164, 2987), (50487, 164, 3086), (50488, 164, 3109), (50489, 164, 3114), (50490, 164, 3122), (50491, 164, 3158), (50492, 164, 3182), (50493, 164, 3265), (50494, 164, 3281), (50495, 164, 3316), (50496, 164, 3471), (50497, 164, 3483), (50498, 164, 3609), (50499, 164, 3686), (50500, 164, 3725), (50501, 164, 3763), (50502, 164, 3768), (50503, 164, 3827), (50504, 164, 3856), (50505, 164, 4022), (50506, 164, 4039), (50507, 164, 4218), (50508, 164, 4269), (50509, 164, 4367), (50510, 164, 4464), (50511, 164, 4502), (50512, 164, 4562), (50513, 164, 4650), (50514, 164, 4651), (50515, 164, 4700), (50516, 164, 4707), (50517, 164, 4806), (50518, 164, 4875), (50519, 164, 4892), (50520, 164, 4947), (50521, 164, 4980), (50522, 164, 4997), (50523, 164, 5034), (50524, 164, 5058), (50525, 164, 5061), (50526, 164, 5136), (50527, 164, 5195), (50528, 164, 5200), (50529, 164, 5202), (50530, 164, 5203), (50531, 164, 5206), (50532, 164, 5236), (50533, 164, 5255), (50534, 164, 5311), (50535, 164, 5333), (50536, 164, 5345), (50537, 164, 5346), (50538, 164, 5416), (50539, 164, 5430), (50540, 164, 5437), (50541, 164, 5460), (50542, 164, 5499), (50543, 164, 5534), (50544, 164, 5569), (50545, 164, 5792), (50546, 164, 5799), (50547, 164, 5821), (50548, 164, 5945), (50549, 164, 5951), (50550, 164, 6008), (50551, 164, 6034), (50552, 164, 6127), (50553, 164, 6253), (50554, 164, 6297), (50555, 164, 6324), (50556, 164, 6335), (50557, 164, 6371), (50558, 164, 6390), (50559, 164, 6400), (50560, 164, 6422), (50561, 164, 6448), (50562, 164, 6478), (50563, 164, 6495), (50564, 164, 6533), (50565, 164, 6572), (50566, 164, 6599), (50567, 164, 6643), (50568, 164, 6704), (50569, 164, 6719), (50570, 164, 6724), (50571, 164, 6854), (50572, 164, 6904), (50573, 164, 7011), (50574, 164, 7014), (50575, 164, 7028), (50576, 164, 7031), (50577, 164, 7100), (50578, 164, 7117), (50579, 164, 7120), (50580, 164, 7159), (50581, 164, 7173), (50582, 164, 7204), (50583, 164, 7264), (50584, 164, 7265), (50585, 164, 7285), (50586, 164, 7295), (50587, 164, 7454), (50588, 164, 7469), (50589, 164, 7501), (50590, 164, 7596), (50591, 164, 7753), (50592, 164, 7773), (50593, 164, 7809), (50594, 164, 7890), (50595, 164, 8020), (50596, 164, 8128), (50597, 164, 8229), (50598, 164, 8384), (50599, 164, 8438), (50600, 164, 8492), (50601, 164, 8545), (50602, 164, 8561), (50603, 164, 8623), (50604, 164, 8639), (50605, 164, 8640), (50606, 164, 8654), (50607, 164, 8714), (50608, 164, 8768), (50609, 164, 8798), (50610, 164, 8885), (50611, 164, 9008), (50612, 164, 9046), (50613, 164, 9124), (50614, 164, 9131), (50615, 164, 9216), (50616, 164, 9307), (50617, 164, 9333), (50618, 164, 9344), (50619, 164, 9350), (50620, 164, 9442), (50621, 164, 9458), (50622, 164, 9518), (50623, 164, 9617), (50624, 164, 9823), (50625, 164, 9858), (50626, 164, 9918), (50627, 164, 9964), (50628, 164, 9991), (50629, 164, 10025), (50630, 164, 10069), (50631, 164, 10100), (50632, 164, 10121), (50633, 164, 10149), (50634, 164, 10170), (50635, 164, 10180), (50636, 164, 10211), (50637, 164, 10257), (50638, 164, 10282), (50639, 164, 10347), (50640, 164, 10356), (50641, 164, 10361), (50642, 164, 10419), (50643, 164, 10426), (50644, 164, 10520), (50645, 164, 10553), (50646, 164, 10584), (50647, 164, 10608), (50648, 164, 10609), (50649, 164, 10612), (50650, 164, 10670), (50651, 164, 10716), (50652, 164, 10752), (50653, 164, 10791), (50654, 164, 10805), (50655, 164, 10810), (50656, 164, 10849), (50657, 164, 10937), (50658, 164, 11038), (50659, 164, 11119), (50660, 164, 11124), (50661, 164, 11230), (50662, 164, 11302), (50663, 164, 11330), (50664, 164, 11441), (50665, 164, 11453), (50666, 164, 11459), (50667, 164, 11494), (50668, 164, 11514), (50669, 164, 11537), (50670, 164, 11565), (50671, 164, 11586), (50672, 164, 11803), (50673, 164, 11813), (50674, 164, 11914), (50675, 164, 11935), (50676, 164, 11992), (50677, 164, 11994), (50678, 164, 12037), (50679, 164, 12050), (50680, 164, 12093), (50681, 164, 12147), (50682, 164, 12175), (50683, 164, 12181), (50684, 164, 12321), (50685, 164, 12326), (50686, 164, 12358), (50687, 164, 12381), (50688, 164, 12390), (50689, 164, 12408), (50690, 164, 12455), (50691, 164, 12460), (50692, 164, 12534), (50693, 164, 12634), (50694, 164, 12647), (50695, 164, 12666), (50696, 164, 12712), (50697, 164, 12715), (50698, 164, 12777), (50699, 164, 12863), (50700, 164, 12936), (50701, 164, 12954), (50702, 164, 12997), (50703, 164, 13040), (50704, 164, 13055), (50705, 164, 13127), (50706, 164, 13160), (50707, 164, 13169), (50708, 164, 13261), (50709, 164, 13305), (50710, 164, 13336), (50711, 164, 13376), (50712, 164, 13401), (50713, 164, 13421), (50714, 164, 13499), (50715, 164, 13568), (50716, 164, 13583), (50717, 164, 13605), (50718, 164, 13706), (50719, 164, 13805), (50720, 164, 13913), (50721, 164, 13946), (50722, 164, 13967), (50723, 164, 13978), (50724, 164, 14019), (50725, 164, 14035), (50726, 164, 14075), (50727, 164, 14080), (50728, 164, 14128), (50729, 164, 14196), (50730, 164, 14219), (50731, 164, 14238), (50732, 164, 14254), (50733, 164, 14278), (50734, 164, 14291), (50735, 164, 14318), (50736, 164, 14345), (50737, 164, 14399), (50738, 164, 14442), (50739, 164, 14459), (50740, 164, 14482), (50741, 164, 14483), (50742, 164, 14527), (50743, 164, 14538), (50744, 164, 14586), (50745, 164, 14602), (50746, 164, 14606), (50747, 164, 14648), (50748, 164, 14793), (50749, 164, 14814), (50750, 164, 14843), (50751, 164, 14882), (50752, 164, 14946), (50753, 164, 14992), (50754, 164, 15045), (50755, 164, 15098), (50756, 164, 15124), (50757, 164, 15146), (50758, 164, 15157), (50759, 164, 15161), (50760, 164, 15182), (50761, 164, 15202), (50762, 164, 15239), (50763, 164, 15304), (50764, 164, 15310), (50765, 164, 15328), (50766, 164, 15345), (50767, 164, 15384), (50768, 164, 15391), (50769, 164, 15395), (50770, 164, 15444), (50771, 164, 15487), (50772, 164, 15542), (50773, 164, 15543), (50774, 164, 15643), (50775, 164, 15728), (50776, 164, 15733), (50777, 164, 15765), (50778, 164, 15789), (50779, 164, 15800), (50780, 164, 15837), (50781, 164, 15859), (50782, 164, 15938), (50783, 164, 16013), (50784, 164, 16023), (50785, 164, 16044), (50786, 164, 16081), (50787, 164, 16224), (50788, 164, 16337), (50789, 164, 16359), (50790, 164, 16425), (50791, 164, 16447), (50792, 164, 16491), (50793, 164, 16519), (50794, 164, 16678), (50795, 164, 16700), (50796, 164, 16724), (50797, 164, 16746), (50798, 164, 16807), (50799, 164, 16827), (50800, 164, 16849), (50801, 164, 16851), (50802, 164, 16877), (50803, 164, 16952), (50804, 164, 17047), (50805, 164, 17103), (50806, 164, 17127), (50807, 164, 17166), (50808, 164, 17185), (50809, 164, 17207), (50810, 164, 17209), (50811, 164, 17267), (50812, 164, 17315), (50813, 164, 17340), (50814, 164, 17350), (50815, 164, 17463), (50816, 164, 17492), (50817, 164, 17515), (50818, 164, 17621), (50819, 164, 17629), (50820, 164, 17710), (50821, 164, 17711), (50822, 164, 17742), (50823, 164, 17760), (50824, 164, 17784), (50825, 164, 18207), (50826, 164, 18332), (50827, 164, 18383), (50828, 164, 18384), (50829, 164, 18389), (50830, 164, 18421), (50831, 164, 18463), (50832, 164, 18477), (50833, 164, 18541), (50834, 164, 18554), (50835, 164, 18623), (50836, 164, 18819), (50837, 164, 18844), (50838, 164, 18939), (50839, 164, 18947), (50840, 164, 18992), (50841, 164, 19077), (50842, 164, 19101), (50843, 164, 19129), (50844, 164, 19202), (50845, 164, 19238), (50846, 164, 19260), (50847, 164, 19372), (50848, 164, 19547), (50849, 164, 19584), (50850, 164, 19696), (50851, 164, 19698), (50852, 164, 19707), (50853, 164, 19714), (50854, 164, 19756), (50855, 164, 19794), (50856, 164, 19952), (50857, 164, 20087), (50858, 164, 20155), (50859, 164, 20167), (50860, 164, 20276), (50861, 164, 20580), (50862, 164, 20644), (50863, 164, 20661), (50864, 164, 20804), (50865, 164, 20933), (50866, 164, 20952), (50867, 164, 21113), (50868, 164, 21190), (50869, 164, 21212), (50870, 164, 21277), (50871, 164, 21437), (50872, 164, 21487), (50873, 164, 21568), (50874, 164, 22013), (50875, 164, 22046), (50876, 164, 22061), (50877, 164, 22295), (50878, 164, 22406), (50879, 164, 22454), (50880, 164, 22588), (50881, 164, 22688), (50882, 164, 22832), (50883, 164, 22952), (50884, 164, 23156), (50885, 164, 23173), (50886, 164, 23185), (50887, 164, 23224), (50888, 164, 23273), (50889, 164, 23283), (50890, 164, 23289), (50891, 164, 23422), (50892, 164, 23441), (50893, 164, 23451), (50894, 164, 23803), (50895, 164, 24164), (50896, 164, 24457), (50897, 164, 24704), (50898, 164, 24729), (50899, 164, 24809), (50900, 164, 24936), (50901, 164, 24959), (50902, 164, 25029), (50903, 164, 25036), (50904, 164, 25054), (50905, 164, 25126), (50906, 164, 25170), (50907, 164, 25184), (50908, 164, 25191), (50918, 165, 420), (50919, 165, 455), (50920, 165, 536), (50921, 165, 1163), (50922, 165, 1255), (50923, 165, 1537), (50924, 165, 1688), (50925, 165, 1702), (50926, 165, 1774), (50927, 165, 1977), (50928, 165, 2379), (50929, 165, 3546), (50930, 165, 3652), (50931, 165, 4011), (50932, 165, 4100), (50933, 165, 4230), (50934, 165, 4598), (50935, 165, 4703), (50936, 165, 4769), (50937, 165, 5325), (50938, 165, 5444), (50939, 165, 5532), (50940, 165, 5608), (50941, 165, 6346), (50942, 165, 6457), (50943, 165, 6968), (50944, 165, 7267), (50945, 165, 7487), (50946, 165, 7543), (50947, 165, 7665), (50948, 165, 7766), (50949, 165, 7789), (50950, 165, 8146), (50951, 165, 8169), (50952, 165, 8277), (50953, 165, 8619), (50954, 165, 8639), (50955, 165, 8762), (50956, 165, 8802), (50957, 165, 8970), (50958, 165, 8995), (50959, 165, 9053), (50960, 165, 9318), (50961, 165, 9371), (50962, 165, 9750), (50963, 165, 9985), (50964, 165, 10010), (50965, 165, 10075), (50966, 165, 10202), (50967, 165, 10596), (50968, 165, 10796), (50969, 165, 10927), (50970, 165, 11235), (50971, 165, 11425), (50972, 165, 11453), (50973, 165, 11506), (50974, 165, 11599), (50975, 165, 11763), (50976, 165, 11767), (50977, 165, 12052), (50978, 165, 12098), (50979, 165, 12426), (50980, 165, 12459), (50981, 165, 12913), (50982, 165, 13045), (50983, 165, 13145), (50984, 165, 13224), (50985, 165, 13281), (50986, 165, 13336), (50987, 165, 13401), (50988, 165, 13482), (50989, 165, 13494), (50990, 165, 13705), (50991, 165, 13787), (50992, 165, 13895), (50993, 165, 13928), (50994, 165, 14035), (50995, 165, 14086), (50996, 165, 14178), (50997, 165, 14263), (50998, 165, 14422), (50999, 165, 14522), (51000, 165, 14678), (51001, 165, 14704), (51002, 165, 14708), (51003, 165, 14750), (51004, 165, 14759), (51005, 165, 14816), (51006, 165, 14893), (51007, 165, 14908), (51008, 165, 14922), (51009, 165, 14926), (51010, 165, 15160), (51011, 165, 15218), (51012, 165, 15257), (51013, 165, 15458), (51014, 165, 15483), (51015, 165, 15501), (51016, 165, 15520), (51017, 165, 15770), (51018, 165, 16206), (51019, 165, 16300), (51020, 165, 16380), (51021, 165, 16492), (51022, 165, 16544), (51023, 165, 16570), (51024, 165, 16663), (51025, 165, 16765), (51026, 165, 16834), (51027, 165, 16927), (51028, 165, 17049), (51029, 165, 17297), (51030, 165, 17334), (51031, 165, 17569), (51032, 165, 17578), (51033, 165, 17586), (51034, 165, 17724), (51035, 165, 17871), (51036, 165, 17949), (51037, 165, 18181), (51038, 165, 18256), (51039, 165, 18712), (51040, 165, 18785), (51041, 165, 18952), (51042, 165, 19267), (51043, 165, 19271), (51044, 165, 19549), (51045, 165, 19683), (51046, 165, 20193), (51047, 165, 20474), (51048, 165, 21381), (51049, 165, 21671), (51050, 165, 21835), (51051, 165, 22116), (51052, 165, 22349), (51053, 165, 22713), (51054, 165, 22793), (51055, 165, 22836), (51056, 165, 23193), (51057, 165, 23298), (51058, 165, 23435), (51059, 165, 24300), (51060, 165, 25224), (51173, 166, 65), (51174, 166, 232), (51175, 166, 236), (51176, 166, 295), (51177, 166, 494), (51178, 166, 558), (51179, 166, 852), (51180, 166, 862), (51181, 166, 868), (51182, 166, 869), (51183, 166, 1120), (51184, 166, 1218), (51185, 166, 1237), (51186, 166, 1255), (51187, 166, 1926), (51188, 166, 2037), (51189, 166, 2498), (51190, 166, 3047), (51191, 166, 3346), (51192, 166, 3691), (51193, 166, 3827), (51194, 166, 3989), (51195, 166, 4650), (51196, 166, 5255), (51197, 166, 6724), (51198, 166, 7753), (51199, 166, 7798), (51200, 166, 7825), (51201, 166, 8472), (51202, 166, 8571), (51203, 166, 8798), (51204, 166, 9370), (51205, 166, 9399), (51206, 166, 9893), (51207, 166, 10356), (51208, 166, 10419), (51209, 166, 11192), (51210, 166, 11638), (51211, 166, 11995), (51212, 166, 12187), (51213, 166, 12420), (51214, 166, 12534), (51215, 166, 12666), (51216, 166, 13420), (51217, 166, 13421), (51218, 166, 14459), (51219, 166, 14471), (51220, 166, 14602), (51221, 166, 14606), (51222, 166, 15328), (51223, 166, 15443), (51224, 166, 15476), (51225, 166, 15543), (51226, 166, 16058), (51227, 166, 16197), (51228, 166, 16324), (51229, 166, 17209), (51230, 166, 18442), (51231, 166, 19025), (51232, 166, 19129), (51233, 166, 19808), (51234, 166, 21568), (51235, 166, 22432), (51236, 166, 23173), (51300, 167, 208), (51301, 167, 536), (51302, 167, 1288), (51303, 167, 1321), (51304, 167, 1688), (51305, 167, 1784), (51306, 167, 1900), (51307, 167, 2015), (51308, 167, 2183), (51309, 167, 2491), (51310, 167, 2644), (51311, 167, 3622), (51312, 167, 3723), (51313, 167, 4637), (51314, 167, 4822), (51315, 167, 4830), (51316, 167, 4872), (51317, 167, 4933), (51318, 167, 4990), (51319, 167, 5135), (51320, 167, 5746), (51321, 167, 5877), (51322, 167, 6179), (51323, 167, 6202), (51324, 167, 6242), (51325, 167, 7008), (51326, 167, 7185), (51327, 167, 7205), (51328, 167, 7417), (51329, 167, 7545), (51330, 167, 7634), (51331, 167, 7988), (51332, 167, 8074), (51333, 167, 8322), (51334, 167, 8529), (51335, 167, 8557), (51336, 167, 8621), (51337, 167, 8638), (51338, 167, 8646), (51339, 167, 9318), (51340, 167, 9406), (51341, 167, 9432), (51342, 167, 9518), (51343, 167, 9570), (51344, 167, 9739), (51345, 167, 9782), (51346, 167, 9946), (51347, 167, 9969), (51348, 167, 9985), (51349, 167, 10063), (51350, 167, 10075), (51351, 167, 10248), (51352, 167, 10347), (51353, 167, 10413), (51354, 167, 10607), (51355, 167, 10752), (51356, 167, 10763), (51357, 167, 10791), (51358, 167, 10846), (51359, 167, 10905), (51360, 167, 10945), (51361, 167, 11050), (51362, 167, 11158), (51363, 167, 11366), (51364, 167, 11568), (51365, 167, 11599), (51366, 167, 11695), (51367, 167, 11879), (51368, 167, 11984), (51369, 167, 12040), (51370, 167, 12052), (51371, 167, 12067), (51372, 167, 12307), (51373, 167, 12339), (51374, 167, 12340), (51375, 167, 12507), (51376, 167, 12602), (51377, 167, 12669), (51378, 167, 12763), (51379, 167, 12894), (51380, 167, 13052), (51381, 167, 13094), (51382, 167, 13304), (51383, 167, 13903), (51384, 167, 13967), (51385, 167, 14197), (51386, 167, 14202), (51387, 167, 14370), (51388, 167, 14462), (51389, 167, 14586), (51390, 167, 14813), (51391, 167, 14893), (51392, 167, 15023), (51393, 167, 15184), (51394, 167, 15303), (51395, 167, 15445), (51396, 167, 15512), (51397, 167, 15697), (51398, 167, 15789), (51399, 167, 15879), (51400, 167, 15920), (51401, 167, 16046), (51402, 167, 16305), (51403, 167, 16492), (51404, 167, 16746), (51405, 167, 16878), (51406, 167, 16952), (51407, 167, 17141), (51408, 167, 17342), (51409, 167, 17350), (51410, 167, 17548), (51411, 167, 18181), (51412, 167, 18241), (51413, 167, 18371), (51414, 167, 19773), (51415, 167, 20248), (51416, 167, 20356), (51417, 167, 21061), (51418, 167, 21141), (51419, 167, 21203), (51420, 167, 21277), (51421, 167, 21305), (51422, 167, 21350), (51423, 167, 21929), (51424, 167, 22332), (51425, 167, 22396), (51426, 167, 22773), (51427, 167, 23273), (51428, 167, 23495), (51429, 167, 23640), (51430, 167, 24334), (51431, 167, 24729), (51432, 167, 24937), (51433, 167, 25172), (51555, 168, 5), (51556, 168, 494), (51557, 168, 795), (51558, 168, 1532), (51559, 168, 1774), (51560, 168, 2140), (51561, 168, 2498), (51562, 168, 2499), (51563, 168, 2854), (51564, 168, 3151), (51565, 168, 3223), (51566, 168, 3492), (51567, 168, 4349), (51568, 168, 4724), (51569, 168, 4877), (51570, 168, 5016), (51571, 168, 5309), (51572, 168, 5375), (51573, 168, 5608), (51574, 168, 6397), (51575, 168, 6531), (51576, 168, 6537), (51577, 168, 6831), (51578, 168, 6940), (51579, 168, 6968), (51580, 168, 7112), (51581, 168, 7694), (51582, 168, 7787), (51583, 168, 8320), (51584, 168, 8355), (51585, 168, 8447), (51586, 168, 8557), (51587, 168, 8751), (51588, 168, 9053), (51589, 168, 9471), (51590, 168, 9582), (51591, 168, 9774), (51592, 168, 9828), (51593, 168, 9834), (51594, 168, 10010), (51595, 168, 10041), (51596, 168, 10088), (51597, 168, 10226), (51598, 168, 10372), (51599, 168, 10689), (51600, 168, 10701), (51601, 168, 10754), (51602, 168, 11062), (51603, 168, 11354), (51604, 168, 11512), (51605, 168, 11568), (51606, 168, 11613), (51607, 168, 11670), (51608, 168, 12052), (51609, 168, 12151), (51610, 168, 12307), (51611, 168, 12530), (51612, 168, 12575), (51613, 168, 12815), (51614, 168, 12963), (51615, 168, 13224), (51616, 168, 13281), (51617, 168, 13355), (51618, 168, 13679), (51619, 168, 13741), (51620, 168, 13903), (51621, 168, 14178), (51622, 168, 14263), (51623, 168, 14281), (51624, 168, 14365), (51625, 168, 14704), (51626, 168, 15146), (51627, 168, 15188), (51628, 168, 15386), (51629, 168, 15483), (51630, 168, 15512), (51631, 168, 15841), (51632, 168, 15896), (51633, 168, 16058), (51634, 168, 16237), (51635, 168, 16324), (51636, 168, 16987), (51637, 168, 17267), (51638, 168, 17342), (51639, 168, 17541), (51640, 168, 17871), (51641, 168, 18036), (51642, 168, 18732), (51643, 168, 19753), (51644, 168, 20127), (51645, 168, 20646), (51646, 168, 20893), (51647, 168, 20952), (51648, 168, 21002), (51649, 168, 21381), (51650, 168, 21835), (51651, 168, 21960), (51652, 168, 22039), (51653, 168, 22793), (51654, 168, 23298), (51655, 168, 23435), (51656, 168, 24261), (51657, 168, 24787), (51658, 168, 25184), (51659, 168, 25224), (51682, 169, 317), (51683, 169, 714), (51684, 169, 871), (51685, 169, 1349), (51686, 169, 1561), (51687, 169, 1909), (51688, 169, 1955), (51689, 169, 2073), (51690, 169, 2288), (51691, 169, 2729), (51692, 169, 3335), (51693, 169, 3426), (51694, 169, 3428), (51695, 169, 3446), (51696, 169, 3487), (51697, 169, 3616), (51698, 169, 3849), (51699, 169, 3984), (51700, 169, 4075), (51701, 169, 4182), (51702, 169, 4613), (51703, 169, 4893), (51704, 169, 5043), (51705, 169, 5207), (51706, 169, 5507), (51707, 169, 5551), (51708, 169, 5694), (51709, 169, 5787), (51710, 169, 5807), (51711, 169, 6484), (51712, 169, 6625), (51713, 169, 6705), (51714, 169, 7027), (51715, 169, 7091), (51716, 169, 7125), (51717, 169, 7176), (51718, 169, 7249), (51719, 169, 7279), (51720, 169, 7312), (51721, 169, 7378), (51722, 169, 7456), (51723, 169, 7585), (51724, 169, 7688), (51725, 169, 7764), (51726, 169, 7984), (51727, 169, 8183), (51728, 169, 8186), (51729, 169, 8230), (51730, 169, 8264), (51731, 169, 8491), (51732, 169, 8537), (51733, 169, 8788), (51734, 169, 8906), (51735, 169, 9271), (51736, 169, 9301), (51737, 169, 9459), (51738, 169, 9469), (51739, 169, 9527), (51740, 169, 9539), (51741, 169, 9585), (51742, 169, 10139), (51743, 169, 10145), (51744, 169, 10182), (51745, 169, 10380), (51746, 169, 10542), (51747, 169, 10709), (51748, 169, 10775), (51749, 169, 10787), (51750, 169, 11387), (51751, 169, 11640), (51752, 169, 11722), (51753, 169, 12051), (51754, 169, 12529), (51755, 169, 12661), (51756, 169, 12737), (51757, 169, 12813), (51758, 169, 13282), (51759, 169, 13283), (51760, 169, 13310), (51761, 169, 13700), (51762, 169, 13710), (51763, 169, 13721), (51764, 169, 13949), (51765, 169, 14311), (51766, 169, 14543), (51767, 169, 14835), (51768, 169, 14947), (51769, 169, 15173), (51770, 169, 15721), (51771, 169, 16742), (51772, 169, 16854), (51773, 169, 17048), (51774, 169, 17165), (51775, 169, 20089), (51776, 169, 20596), (51777, 169, 20755), (51778, 169, 20790), (51779, 169, 21179), (51780, 169, 22047), (51781, 169, 23041), (51782, 169, 25033), (51809, 170, 317), (51810, 170, 382), (51811, 170, 564), (51812, 170, 588), (51813, 170, 590), (51814, 170, 646), (51815, 170, 651), (51816, 170, 707), (51817, 170, 846), (51818, 170, 871), (51819, 170, 937), (51820, 170, 1000), (51821, 170, 1193), (51822, 170, 1196), (51823, 170, 1267), (51824, 170, 1467), (51825, 170, 1469), (51826, 170, 1812), (51827, 170, 1852), (51828, 170, 1856), (51829, 170, 1909), (51830, 170, 2053), (51831, 170, 2111), (51832, 170, 2158), (51833, 170, 2225), (51834, 170, 2341), (51835, 170, 2358), (51836, 170, 2398), (51837, 170, 2431), (51838, 170, 2518), (51839, 170, 2596), (51840, 170, 2667), (51841, 170, 2797), (51842, 170, 2818), (51843, 170, 2881), (51844, 170, 2897), (51845, 170, 2957), (51846, 170, 3031), (51847, 170, 3073), (51848, 170, 3164), (51849, 170, 3284), (51850, 170, 3415), (51851, 170, 3464), (51852, 170, 3616), (51853, 170, 3738), (51854, 170, 3823), (51855, 170, 3839), (51856, 170, 3884), (51857, 170, 4021), (51858, 170, 4369), (51859, 170, 4433), (51860, 170, 4545), (51861, 170, 4612), (51862, 170, 4613), (51863, 170, 4812), (51864, 170, 4851), (51865, 170, 4946), (51866, 170, 5035), (51867, 170, 5043), (51868, 170, 5053), (51869, 170, 5212), (51870, 170, 5487), (51871, 170, 5551), (51872, 170, 6115), (51873, 170, 6177), (51874, 170, 6255), (51875, 170, 6321), (51876, 170, 6559), (51877, 170, 6575), (51878, 170, 6655), (51879, 170, 6793), (51880, 170, 6991), (51881, 170, 7060), (51882, 170, 7125), (51883, 170, 7279), (51884, 170, 7312), (51885, 170, 7414), (51886, 170, 7456), (51887, 170, 7821), (51888, 170, 7851), (51889, 170, 7909), (51890, 170, 7927), (51891, 170, 7938), (51892, 170, 7984), (51893, 170, 8220), (51894, 170, 8264), (51895, 170, 8269), (51896, 170, 8417), (51897, 170, 8491), (51898, 170, 8496), (51899, 170, 8525), (51900, 170, 8534), (51901, 170, 8668), (51902, 170, 8690), (51903, 170, 8746), (51904, 170, 8844), (51905, 170, 8915), (51906, 170, 8994), (51907, 170, 9074), (51908, 170, 9099), (51909, 170, 9243), (51910, 170, 9419), (51911, 170, 9459), (51912, 170, 9673), (51913, 170, 9674), (51914, 170, 9947), (51915, 170, 9963), (51916, 170, 10060), (51917, 170, 10097), (51918, 170, 10111), (51919, 170, 10137), (51920, 170, 10139), (51921, 170, 10169), (51922, 170, 10182), (51923, 170, 10435), (51924, 170, 10519), (51925, 170, 10542), (51926, 170, 10614), (51927, 170, 10775), (51928, 170, 10787), (51929, 170, 11215), (51930, 170, 11385), (51931, 170, 11387), (51932, 170, 11471), (51933, 170, 11640), (51934, 170, 11844), (51935, 170, 11976), (51936, 170, 12107), (51937, 170, 12275), (51938, 170, 12661), (51939, 170, 12665), (51940, 170, 12676), (51941, 170, 12732), (51942, 170, 12872), (51943, 170, 12873), (51944, 170, 13282), (51945, 170, 13283), (51946, 170, 13310), (51947, 170, 13392), (51948, 170, 13400), (51949, 170, 13566), (51950, 170, 13686), (51951, 170, 13698), (51952, 170, 13700), (51953, 170, 13710), (51954, 170, 13984), (51955, 170, 14099), (51956, 170, 14375), (51957, 170, 14654), (51958, 170, 14667), (51959, 170, 14910), (51960, 170, 15173), (51961, 170, 15226), (51962, 170, 15687), (51963, 170, 15721), (51964, 170, 16015), (51965, 170, 16110), (51966, 170, 16310), (51967, 170, 16317), (51968, 170, 16318), (51969, 170, 16391), (51970, 170, 16474), (51971, 170, 16610), (51972, 170, 16827), (51973, 170, 16927), (51974, 170, 17104), (51975, 170, 17165), (51976, 170, 17195), (51977, 170, 17704), (51978, 170, 17916), (51979, 170, 17938), (51980, 170, 18003), (51981, 170, 18466), (51982, 170, 18615), (51983, 170, 18680), (51984, 170, 18742), (51985, 170, 18790), (51986, 170, 18853), (51987, 170, 18976), (51988, 170, 18983), (51989, 170, 19255), (51990, 170, 19447), (51991, 170, 19792), (51992, 170, 20156), (51993, 170, 20665), (51994, 170, 20755), (51995, 170, 20790), (51996, 170, 21510), (51997, 170, 21698), (51998, 170, 22075), (51999, 170, 22084), (52000, 170, 22346), (52001, 170, 23449), (52002, 170, 25033), (52064, 171, 105), (52065, 171, 106), (52066, 171, 306), (52067, 171, 410), (52068, 171, 417), (52069, 171, 470), (52070, 171, 521), (52071, 171, 540), (52072, 171, 586), (52073, 171, 590), (52074, 171, 618), (52075, 171, 666), (52076, 171, 707), (52077, 171, 766), (52078, 171, 839), (52079, 171, 854), (52080, 171, 876), (52081, 171, 937), (52082, 171, 1000), (52083, 171, 1027), (52084, 171, 1075), (52085, 171, 1090), (52086, 171, 1162), (52087, 171, 1196), (52088, 171, 1221), (52089, 171, 1267), (52090, 171, 1269), (52091, 171, 1308), (52092, 171, 1349), (52093, 171, 1467), (52094, 171, 1469), (52095, 171, 1563), (52096, 171, 1596), (52097, 171, 1610), (52098, 171, 1659), (52099, 171, 1670), (52100, 171, 1804), (52101, 171, 1812), (52102, 171, 1813), (52103, 171, 1819), (52104, 171, 1852), (52105, 171, 1890), (52106, 171, 1930), (52107, 171, 1970), (52108, 171, 2030), (52109, 171, 2031), (52110, 171, 2038), (52111, 171, 2045), (52112, 171, 2047), (52113, 171, 2053), (52114, 171, 2062), (52115, 171, 2158), (52116, 171, 2196), (52117, 171, 2225), (52118, 171, 2265), (52119, 171, 2286), (52120, 171, 2317), (52121, 171, 2322), (52122, 171, 2341), (52123, 171, 2358), (52124, 171, 2374), (52125, 171, 2431), (52126, 171, 2446), (52127, 171, 2517), (52128, 171, 2518), (52129, 171, 2596), (52130, 171, 2605), (52131, 171, 2667), (52132, 171, 2691), (52133, 171, 2700), (52134, 171, 2729), (52135, 171, 2744), (52136, 171, 2776), (52137, 171, 2867), (52138, 171, 2881), (52139, 171, 2935), (52140, 171, 2994), (52141, 171, 3025), (52142, 171, 3031), (52143, 171, 3073), (52144, 171, 3114), (52145, 171, 3317), (52146, 171, 3347), (52147, 171, 3397), (52148, 171, 3412), (52149, 171, 3415), (52150, 171, 3464), (52151, 171, 3482), (52152, 171, 3667), (52153, 171, 3678), (52154, 171, 3738), (52155, 171, 3749), (52156, 171, 3752), (52157, 171, 3823), (52158, 171, 3839), (52159, 171, 3984), (52160, 171, 4021), (52161, 171, 4030), (52162, 171, 4063), (52163, 171, 4122), (52164, 171, 4165), (52165, 171, 4182), (52166, 171, 4207), (52167, 171, 4231), (52168, 171, 4239), (52169, 171, 4265), (52170, 171, 4269), (52171, 171, 4272), (52172, 171, 4276), (52173, 171, 4278), (52174, 171, 4339), (52175, 171, 4365), (52176, 171, 4407), (52177, 171, 4433), (52178, 171, 4434), (52179, 171, 4463), (52180, 171, 4474), (52181, 171, 4490), (52182, 171, 4545), (52183, 171, 4594), (52184, 171, 4612), (52185, 171, 4622), (52186, 171, 4639), (52187, 171, 4669), (52188, 171, 4710), (52189, 171, 4788), (52190, 171, 4812), (52191, 171, 4923), (52192, 171, 4998), (52193, 171, 5007), (52194, 171, 5035), (52195, 171, 5053), (52196, 171, 5055), (52197, 171, 5103), (52198, 171, 5154), (52199, 171, 5213), (52200, 171, 5228), (52201, 171, 5236), (52202, 171, 5247), (52203, 171, 5293), (52204, 171, 5296), (52205, 171, 5303), (52206, 171, 5332), (52207, 171, 5359), (52208, 171, 5382), (52209, 171, 5433), (52210, 171, 5487), (52211, 171, 5531), (52212, 171, 5551), (52213, 171, 5555), (52214, 171, 5632), (52215, 171, 5652), (52216, 171, 5664), (52217, 171, 5774), (52218, 171, 5879), (52219, 171, 5901), (52220, 171, 6001), (52221, 171, 6131), (52222, 171, 6160), (52223, 171, 6177), (52224, 171, 6204), (52225, 171, 6255), (52226, 171, 6273), (52227, 171, 6431), (52228, 171, 6434), (52229, 171, 6462), (52230, 171, 6485), (52231, 171, 6489), (52232, 171, 6559), (52233, 171, 6575), (52234, 171, 6600), (52235, 171, 6608), (52236, 171, 6774), (52237, 171, 6793), (52238, 171, 6795), (52239, 171, 6796), (52240, 171, 6798), (52241, 171, 6878), (52242, 171, 6914), (52243, 171, 6954), (52244, 171, 7000), (52245, 171, 7058), (52246, 171, 7060), (52247, 171, 7102), (52248, 171, 7125), (52249, 171, 7217), (52250, 171, 7253), (52251, 171, 7279), (52252, 171, 7312), (52253, 171, 7346), (52254, 171, 7407), (52255, 171, 7414), (52256, 171, 7432), (52257, 171, 7447), (52258, 171, 7456), (52259, 171, 7465), (52260, 171, 7477), (52261, 171, 7569), (52262, 171, 7574), (52263, 171, 7630), (52264, 171, 7688), (52265, 171, 7692), (52266, 171, 7793), (52267, 171, 7851), (52268, 171, 7865), (52269, 171, 7909), (52270, 171, 7921), (52271, 171, 7933), (52272, 171, 8024), (52273, 171, 8059), (52274, 171, 8125), (52275, 171, 8143), (52276, 171, 8168), (52277, 171, 8186), (52278, 171, 8191), (52279, 171, 8220), (52280, 171, 8259), (52281, 171, 8470), (52282, 171, 8534), (52283, 171, 8546), (52284, 171, 8593), (52285, 171, 8668), (52286, 171, 8690), (52287, 171, 8715), (52288, 171, 8746), (52289, 171, 8788), (52290, 171, 8823), (52291, 171, 8859), (52292, 171, 8989), (52293, 171, 9077), (52294, 171, 9084), (52295, 171, 9099), (52296, 171, 9140), (52297, 171, 9199), (52298, 171, 9209), (52299, 171, 9243), (52300, 171, 9258), (52301, 171, 9392), (52302, 171, 9404), (52303, 171, 9408), (52304, 171, 9486), (52305, 171, 9492), (52306, 171, 9610), (52307, 171, 9673), (52308, 171, 9674), (52309, 171, 9694), (52310, 171, 9712), (52311, 171, 9716), (52312, 171, 9783), (52313, 171, 9796), (52314, 171, 9822), (52315, 171, 9855), (52316, 171, 9963), (52317, 171, 10045), (52318, 171, 10073), (52319, 171, 10097), (52320, 171, 10122), (52321, 171, 10135), (52322, 171, 10187), (52323, 171, 10285), (52324, 171, 10296), (52325, 171, 10304), (52326, 171, 10422), (52327, 171, 10430), (52328, 171, 10435), (52329, 171, 10457), (52330, 171, 10484), (52331, 171, 10511), (52332, 171, 10519), (52333, 171, 10646), (52334, 171, 10660), (52335, 171, 10685), (52336, 171, 10737), (52337, 171, 10770), (52338, 171, 10775), (52339, 171, 10781), (52340, 171, 10835), (52341, 171, 10922), (52342, 171, 10941), (52343, 171, 11025), (52344, 171, 11096), (52345, 171, 11115), (52346, 171, 11120), (52347, 171, 11142), (52348, 171, 11147), (52349, 171, 11167), (52350, 171, 11198), (52351, 171, 11206), (52352, 171, 11213), (52353, 171, 11215), (52354, 171, 11323), (52355, 171, 11385), (52356, 171, 11490), (52357, 171, 11518), (52358, 171, 11529), (52359, 171, 11563), (52360, 171, 11748), (52361, 171, 11768), (52362, 171, 11787), (52363, 171, 11844), (52364, 171, 11896), (52365, 171, 11912), (52366, 171, 11955), (52367, 171, 11976), (52368, 171, 12007), (52369, 171, 12077), (52370, 171, 12220), (52371, 171, 12266), (52372, 171, 12275), (52373, 171, 12348), (52374, 171, 12424), (52375, 171, 12471), (52376, 171, 12552), (52377, 171, 12559), (52378, 171, 12588), (52379, 171, 12641), (52380, 171, 12644), (52381, 171, 12732), (52382, 171, 12737), (52383, 171, 12757), (52384, 171, 12781), (52385, 171, 12873), (52386, 171, 12918), (52387, 171, 12969), (52388, 171, 12974), (52389, 171, 13015), (52390, 171, 13098), (52391, 171, 13187), (52392, 171, 13216), (52393, 171, 13221), (52394, 171, 13260), (52395, 171, 13283), (52396, 171, 13310), (52397, 171, 13325), (52398, 171, 13339), (52399, 171, 13373), (52400, 171, 13392), (52401, 171, 13401), (52402, 171, 13444), (52403, 171, 13495), (52404, 171, 13544), (52405, 171, 13601), (52406, 171, 13698), (52407, 171, 13748), (52408, 171, 13751), (52409, 171, 13763), (52410, 171, 13834), (52411, 171, 13949), (52412, 171, 13971), (52413, 171, 13984), (52414, 171, 14008), (52415, 171, 14099), (52416, 171, 14172), (52417, 171, 14238), (52418, 171, 14249), (52419, 171, 14306), (52420, 171, 14317), (52421, 171, 14350), (52422, 171, 14375), (52423, 171, 14415), (52424, 171, 14421), (52425, 171, 14437), (52426, 171, 14460), (52427, 171, 14508), (52428, 171, 14617), (52429, 171, 14650), (52430, 171, 14654), (52431, 171, 14696), (52432, 171, 14739), (52433, 171, 14838), (52434, 171, 14859), (52435, 171, 14890), (52436, 171, 14915), (52437, 171, 14940), (52438, 171, 14979), (52439, 171, 15014), (52440, 171, 15111), (52441, 171, 15173), (52442, 171, 15214), (52443, 171, 15226), (52444, 171, 15228), (52445, 171, 15259), (52446, 171, 15320), (52447, 171, 15365), (52448, 171, 15397), (52449, 171, 15461), (52450, 171, 15497), (52451, 171, 15503), (52452, 171, 15506), (52453, 171, 15586), (52454, 171, 15610), (52455, 171, 15653), (52456, 171, 15684), (52457, 171, 15687), (52458, 171, 15721), (52459, 171, 15727), (52460, 171, 15845), (52461, 171, 15852), (52462, 171, 15886), (52463, 171, 15929), (52464, 171, 15938), (52465, 171, 16000), (52466, 171, 16007), (52467, 171, 16110), (52468, 171, 16111), (52469, 171, 16117), (52470, 171, 16165), (52471, 171, 16225), (52472, 171, 16317), (52473, 171, 16318), (52474, 171, 16367), (52475, 171, 16391), (52476, 171, 16403), (52477, 171, 16474), (52478, 171, 16571), (52479, 171, 16592), (52480, 171, 16599), (52481, 171, 16610), (52482, 171, 16623), (52483, 171, 16654), (52484, 171, 16664), (52485, 171, 16694), (52486, 171, 16751), (52487, 171, 16835), (52488, 171, 16883), (52489, 171, 16918), (52490, 171, 16980), (52491, 171, 17021), (52492, 171, 17048), (52493, 171, 17104), (52494, 171, 17165), (52495, 171, 17195), (52496, 171, 17203), (52497, 171, 17241), (52498, 171, 17277), (52499, 171, 17539), (52500, 171, 17655), (52501, 171, 17704), (52502, 171, 17709), (52503, 171, 17743), (52504, 171, 17755), (52505, 171, 17884), (52506, 171, 17916), (52507, 171, 17932), (52508, 171, 17938), (52509, 171, 17977), (52510, 171, 17988), (52511, 171, 18003), (52512, 171, 18023), (52513, 171, 18075), (52514, 171, 18196), (52515, 171, 18240), (52516, 171, 18289), (52517, 171, 18441), (52518, 171, 18466), (52519, 171, 18471), (52520, 171, 18499), (52521, 171, 18529), (52522, 171, 18556), (52523, 171, 18562), (52524, 171, 18629), (52525, 171, 18680), (52526, 171, 18742), (52527, 171, 18837), (52528, 171, 18933), (52529, 171, 18976), (52530, 171, 18980), (52531, 171, 19150), (52532, 171, 19213), (52533, 171, 19222), (52534, 171, 19255), (52535, 171, 19338), (52536, 171, 19417), (52537, 171, 19447), (52538, 171, 19491), (52539, 171, 19641), (52540, 171, 19792), (52541, 171, 19871), (52542, 171, 19947), (52543, 171, 19979), (52544, 171, 20089), (52545, 171, 20156), (52546, 171, 20253), (52547, 171, 20277), (52548, 171, 20291), (52549, 171, 20342), (52550, 171, 20542), (52551, 171, 20665), (52552, 171, 20755), (52553, 171, 20847), (52554, 171, 20927), (52555, 171, 21179), (52556, 171, 21284), (52557, 171, 21397), (52558, 171, 21510), (52559, 171, 21698), (52560, 171, 21713), (52561, 171, 22047), (52562, 171, 22075), (52563, 171, 22084), (52564, 171, 22233), (52565, 171, 22345), (52566, 171, 22346), (52567, 171, 22842), (52568, 171, 23041), (52569, 171, 23352), (52570, 171, 23449), (52571, 171, 25069), (52572, 171, 25150), (52575, 172, 270), (52576, 172, 306), (52577, 172, 459), (52578, 172, 589), (52579, 172, 707), (52580, 172, 1090), (52581, 172, 1142), (52582, 172, 1349), (52583, 172, 1467), (52584, 172, 1469), (52585, 172, 1813), (52586, 172, 1819), (52587, 172, 1909), (52588, 172, 2158), (52589, 172, 2225), (52590, 172, 2317), (52591, 172, 2341), (52592, 172, 2365), (52593, 172, 2667), (52594, 172, 2797), (52595, 172, 2994), (52596, 172, 3539), (52597, 172, 3683), (52598, 172, 3738), (52599, 172, 3752), (52600, 172, 3822), (52601, 172, 3823), (52602, 172, 4122), (52603, 172, 4199), (52604, 172, 4245), (52605, 172, 4272), (52606, 172, 4276), (52607, 172, 4457), (52608, 172, 4463), (52609, 172, 4623), (52610, 172, 4812), (52611, 172, 4851), (52612, 172, 4901), (52613, 172, 4908), (52614, 172, 4989), (52615, 172, 5007), (52616, 172, 5035), (52617, 172, 5053), (52618, 172, 5207), (52619, 172, 5213), (52620, 172, 5228), (52621, 172, 5551), (52622, 172, 6255), (52623, 172, 6591), (52624, 172, 6795), (52625, 172, 6798), (52626, 172, 6990), (52627, 172, 7093), (52628, 172, 7692), (52629, 172, 8143), (52630, 172, 8230), (52631, 172, 8285), (52632, 172, 8415), (52633, 172, 8782), (52634, 172, 8796), (52635, 172, 8823), (52636, 172, 8859), (52637, 172, 9258), (52638, 172, 9355), (52639, 172, 9472), (52640, 172, 9492), (52641, 172, 9712), (52642, 172, 9888), (52643, 172, 10060), (52644, 172, 10519), (52645, 172, 10586), (52646, 172, 10646), (52647, 172, 10660), (52648, 172, 11115), (52649, 172, 11320), (52650, 172, 11471), (52651, 172, 11515), (52652, 172, 11563), (52653, 172, 12008), (52654, 172, 12112), (52655, 172, 12113), (52656, 172, 12160), (52657, 172, 12220), (52658, 172, 12421), (52659, 172, 12662), (52660, 172, 12716), (52661, 172, 12757), (52662, 172, 12872), (52663, 172, 13065), (52664, 172, 13272), (52665, 172, 13283), (52666, 172, 13319), (52667, 172, 13325), (52668, 172, 13686), (52669, 172, 13855), (52670, 172, 14099), (52671, 172, 14172), (52672, 172, 14316), (52673, 172, 14617), (52674, 172, 14838), (52675, 172, 15294), (52676, 172, 15469), (52677, 172, 15610), (52678, 172, 15620), (52679, 172, 15653), (52680, 172, 15684), (52681, 172, 15716), (52682, 172, 15961), (52683, 172, 16110), (52684, 172, 16374), (52685, 172, 16388), (52686, 172, 16506), (52687, 172, 16599), (52688, 172, 16617), (52689, 172, 16694), (52690, 172, 16745), (52691, 172, 16761), (52692, 172, 16828), (52693, 172, 16918), (52694, 172, 17048), (52695, 172, 17195), (52696, 172, 17277), (52697, 172, 17932), (52698, 172, 18441), (52699, 172, 18471), (52700, 172, 18562), (52701, 172, 19419), (52702, 172, 19447), (52703, 172, 19471), (52704, 172, 19491), (52705, 172, 20070), (52706, 172, 20089), (52707, 172, 20291), (52708, 172, 20513), (52709, 172, 21035), (52710, 172, 21307), (52711, 172, 21487), (52712, 172, 21698), (52713, 172, 22011), (52714, 172, 22084), (52715, 172, 22346), (52716, 172, 23405), (52717, 172, 25150), (52830, 173, 229), (52831, 173, 991), (52832, 173, 1336), (52833, 173, 2265), (52834, 173, 2493), (52835, 173, 3317), (52836, 173, 3444), (52837, 173, 3539), (52838, 173, 3607), (52839, 173, 3667), (52840, 173, 3943), (52841, 173, 4122), (52842, 173, 4199), (52843, 173, 4246), (52844, 173, 4298), (52845, 173, 4623), (52846, 173, 4923), (52847, 173, 4998), (52848, 173, 5332), (52849, 173, 5382), (52850, 173, 5417), (52851, 173, 5679), (52852, 173, 6001), (52853, 173, 6321), (52854, 173, 6697), (52855, 173, 6986), (52856, 173, 7108), (52857, 173, 7346), (52858, 173, 7363), (52859, 173, 7432), (52860, 173, 7456), (52861, 173, 7692), (52862, 173, 8191), (52863, 173, 8226), (52864, 173, 8859), (52865, 173, 8910), (52866, 173, 9067), (52867, 173, 9140), (52868, 173, 9430), (52869, 173, 9459), (52870, 173, 9610), (52871, 173, 10137), (52872, 173, 10182), (52873, 173, 10351), (52874, 173, 10435), (52875, 173, 10457), (52876, 173, 10511), (52877, 173, 10702), (52878, 173, 10787), (52879, 173, 10815), (52880, 173, 10897), (52881, 173, 11197), (52882, 173, 11824), (52883, 173, 11901), (52884, 173, 11913), (52885, 173, 12007), (52886, 173, 12043), (52887, 173, 12112), (52888, 173, 12662), (52889, 173, 12732), (52890, 173, 12906), (52891, 173, 13373), (52892, 173, 13686), (52893, 173, 13710), (52894, 173, 13736), (52895, 173, 13949), (52896, 173, 14148), (52897, 173, 14259), (52898, 173, 14415), (52899, 173, 14460), (52900, 173, 14981), (52901, 173, 15491), (52902, 173, 15561), (52903, 173, 15666), (52904, 173, 15687), (52905, 173, 15861), (52906, 173, 16146), (52907, 173, 16165), (52908, 173, 16391), (52909, 173, 16604), (52910, 173, 17048), (52911, 173, 17405), (52912, 173, 17788), (52913, 173, 17916), (52914, 173, 18529), (52915, 173, 18690), (52916, 173, 18790), (52917, 173, 18922), (52918, 173, 19066), (52919, 173, 19309), (52920, 173, 19419), (52921, 173, 19447), (52922, 173, 20165), (52923, 173, 20286), (52924, 173, 20643), (52925, 173, 22167), (52957, 174, 871), (52958, 174, 936), (52959, 174, 1788), (52960, 174, 1909), (52961, 174, 2881), (52962, 174, 3293), (52963, 174, 3335), (52964, 174, 3393), (52965, 174, 3683), (52966, 174, 3749), (52967, 174, 3995), (52968, 174, 4613), (52969, 174, 5044), (52970, 174, 5055), (52971, 174, 5303), (52972, 174, 5507), (52973, 174, 5694), (52974, 174, 6038), (52975, 174, 6321), (52976, 174, 6559), (52977, 174, 6914), (52978, 174, 6954), (52979, 174, 7060), (52980, 174, 7230), (52981, 174, 7249), (52982, 174, 7363), (52983, 174, 7610), (52984, 174, 7883), (52985, 174, 7973), (52986, 174, 8186), (52987, 174, 8343), (52988, 174, 8715), (52989, 174, 9140), (52990, 174, 9585), (52991, 174, 9816), (52992, 174, 10097), (52993, 174, 10187), (52994, 174, 10304), (52995, 174, 10329), (52996, 174, 10781), (52997, 174, 10787), (52998, 174, 11228), (52999, 174, 11722), (53000, 174, 11969), (53001, 174, 12814), (53002, 174, 12871), (53003, 174, 13283), (53004, 174, 13368), (53005, 174, 13566), (53006, 174, 13829), (53007, 174, 14099), (53008, 174, 14132), (53009, 174, 14408), (53010, 174, 14543), (53011, 174, 14835), (53012, 174, 15070), (53013, 174, 15226), (53014, 174, 15397), (53015, 174, 15503), (53016, 174, 15586), (53017, 174, 16283), (53018, 174, 16571), (53019, 174, 16592), (53020, 174, 16742), (53021, 174, 16854), (53022, 174, 17048), (53023, 174, 17195), (53024, 174, 19066), (53025, 174, 19309), (53026, 174, 19447), (53027, 174, 19817), (53028, 174, 20089), (53029, 174, 20277), (53030, 174, 20596), (53031, 174, 20659), (53032, 174, 23041), (53084, 175, 317), (53085, 175, 382), (53086, 175, 445), (53087, 175, 871), (53088, 175, 928), (53089, 175, 1561), (53090, 175, 1657), (53091, 175, 1909), (53092, 175, 1955), (53093, 175, 2073), (53094, 175, 2398), (53095, 175, 2411), (53096, 175, 3335), (53097, 175, 3393), (53098, 175, 3428), (53099, 175, 3436), (53100, 175, 3464), (53101, 175, 3678), (53102, 175, 3913), (53103, 175, 3984), (53104, 175, 3995), (53105, 175, 4075), (53106, 175, 4433), (53107, 175, 4613), (53108, 175, 4713), (53109, 175, 5044), (53110, 175, 5551), (53111, 175, 5664), (53112, 175, 5694), (53113, 175, 6115), (53114, 175, 6425), (53115, 175, 6914), (53116, 175, 7249), (53117, 175, 7458), (53118, 175, 7477), (53119, 175, 7585), (53120, 175, 7610), (53121, 175, 7704), (53122, 175, 7867), (53123, 175, 7984), (53124, 175, 8273), (53125, 175, 8525), (53126, 175, 8537), (53127, 175, 8551), (53128, 175, 8844), (53129, 175, 8915), (53130, 175, 9203), (53131, 175, 9610), (53132, 175, 9716), (53133, 175, 9783), (53134, 175, 9848), (53135, 175, 10145), (53136, 175, 10169), (53137, 175, 10380), (53138, 175, 10435), (53139, 175, 10484), (53140, 175, 10775), (53141, 175, 11387), (53142, 175, 11800), (53143, 175, 11971), (53144, 175, 12661), (53145, 175, 12662), (53146, 175, 12813), (53147, 175, 13282), (53148, 175, 13700), (53149, 175, 13710), (53150, 175, 14547), (53151, 175, 15070), (53152, 175, 15721), (53153, 175, 16310), (53154, 175, 16400), (53155, 175, 16549), (53156, 175, 16599), (53157, 175, 16606), (53158, 175, 16645), (53159, 175, 16742), (53160, 175, 17165), (53161, 175, 17916), (53162, 175, 18837), (53163, 175, 18853), (53164, 175, 18892), (53165, 175, 20243), (53166, 175, 20755), (53167, 175, 20790), (53168, 175, 21510), (53169, 175, 21713), (53170, 175, 25033), (53211, 176, 106), (53212, 176, 143), (53213, 176, 166), (53214, 176, 198), (53215, 176, 255), (53216, 176, 279), (53217, 176, 364), (53218, 176, 381), (53219, 176, 408), (53220, 176, 411), (53221, 176, 461), (53222, 176, 506), (53223, 176, 540), (53224, 176, 563), (53225, 176, 598), (53226, 176, 645), (53227, 176, 665), (53228, 176, 696), (53229, 176, 724), (53230, 176, 729), (53231, 176, 789), (53232, 176, 855), (53233, 176, 883), (53234, 176, 932), (53235, 176, 992), (53236, 176, 1007), (53237, 176, 1016), (53238, 176, 1027), (53239, 176, 1037), (53240, 176, 1084), (53241, 176, 1092), (53242, 176, 1170), (53243, 176, 1178), (53244, 176, 1224), (53245, 176, 1273), (53246, 176, 1340), (53247, 176, 1350), (53248, 176, 1390), (53249, 176, 1479), (53250, 176, 1529), (53251, 176, 1549), (53252, 176, 1609), (53253, 176, 1613), (53254, 176, 1628), (53255, 176, 1645), (53256, 176, 1648), (53257, 176, 1701), (53258, 176, 1709), (53259, 176, 1729), (53260, 176, 1974), (53261, 176, 1987), (53262, 176, 2036), (53263, 176, 2057), (53264, 176, 2106), (53265, 176, 2196), (53266, 176, 2218), (53267, 176, 2257), (53268, 176, 2473), (53269, 176, 2502), (53270, 176, 2607), (53271, 176, 2730), (53272, 176, 2783), (53273, 176, 2901), (53274, 176, 2978), (53275, 176, 3038), (53276, 176, 3045), (53277, 176, 3051), (53278, 176, 3081), (53279, 176, 3112), (53280, 176, 3121), (53281, 176, 3137), (53282, 176, 3198), (53283, 176, 3235), (53284, 176, 3305), (53285, 176, 3368), (53286, 176, 3431), (53287, 176, 3458), (53288, 176, 3479), (53289, 176, 3502), (53290, 176, 3505), (53291, 176, 3566), (53292, 176, 3569), (53293, 176, 3579), (53294, 176, 3586), (53295, 176, 3591), (53296, 176, 3626), (53297, 176, 3763), (53298, 176, 3784), (53299, 176, 3876), (53300, 176, 3966), (53301, 176, 3978), (53302, 176, 4062), (53303, 176, 4072), (53304, 176, 4078), (53305, 176, 4096), (53306, 176, 4127), (53307, 176, 4143), (53308, 176, 4163), (53309, 176, 4197), (53310, 176, 4335), (53311, 176, 4355), (53312, 176, 4561), (53313, 176, 4571), (53314, 176, 4615), (53315, 176, 4671), (53316, 176, 4677), (53317, 176, 4709), (53318, 176, 4723), (53319, 176, 4788), (53320, 176, 4796), (53321, 176, 4854), (53322, 176, 4969), (53323, 176, 5004), (53324, 176, 5023), (53325, 176, 5040), (53326, 176, 5043), (53327, 176, 5066), (53328, 176, 5070), (53329, 176, 5097), (53330, 176, 5181), (53331, 176, 5209), (53332, 176, 5225), (53333, 176, 5351), (53334, 176, 5435), (53335, 176, 5616), (53336, 176, 5681), (53337, 176, 5725), (53338, 176, 5802), (53339, 176, 5848), (53340, 176, 6058), (53341, 176, 6131), (53342, 176, 6258), (53343, 176, 6414), (53344, 176, 6472), (53345, 176, 6492), (53346, 176, 6552), (53347, 176, 6553), (53348, 176, 6596), (53349, 176, 6721), (53350, 176, 6800), (53351, 176, 6823), (53352, 176, 6845), (53353, 176, 6850), (53354, 176, 6960), (53355, 176, 6980), (53356, 176, 7022), (53357, 176, 7039), (53358, 176, 7041), (53359, 176, 7055), (53360, 176, 7065), (53361, 176, 7133), (53362, 176, 7145), (53363, 176, 7161), (53364, 176, 7166), (53365, 176, 7177), (53366, 176, 7257), (53367, 176, 7293), (53368, 176, 7319), (53369, 176, 7408), (53370, 176, 7447), (53371, 176, 7451), (53372, 176, 7478), (53373, 176, 7528), (53374, 176, 7593), (53375, 176, 7630), (53376, 176, 7659), (53377, 176, 7665), (53378, 176, 7891), (53379, 176, 7917), (53380, 176, 7924), (53381, 176, 7933), (53382, 176, 7967), (53383, 176, 8006), (53384, 176, 8034), (53385, 176, 8057), (53386, 176, 8092), (53387, 176, 8099), (53388, 176, 8117), (53389, 176, 8155), (53390, 176, 8206), (53391, 176, 8285), (53392, 176, 8311), (53393, 176, 8373), (53394, 176, 8406), (53395, 176, 8420), (53396, 176, 8487), (53397, 176, 8550), (53398, 176, 8576), (53399, 176, 8634), (53400, 176, 8808), (53401, 176, 8820), (53402, 176, 8846), (53403, 176, 8909), (53404, 176, 8914), (53405, 176, 8973), (53406, 176, 9081), (53407, 176, 9155), (53408, 176, 9262), (53409, 176, 9291), (53410, 176, 9294), (53411, 176, 9315), (53412, 176, 9316), (53413, 176, 9338), (53414, 176, 9527), (53415, 176, 9544), (53416, 176, 9555), (53417, 176, 9583), (53418, 176, 9594), (53419, 176, 9684), (53420, 176, 9708), (53421, 176, 9882), (53422, 176, 9997), (53423, 176, 10050), (53424, 176, 10204), (53425, 176, 10225), (53426, 176, 10240), (53427, 176, 10241), (53428, 176, 10246), (53429, 176, 10445), (53430, 176, 10483), (53431, 176, 10541), (53432, 176, 10550), (53433, 176, 10610), (53434, 176, 10646), (53435, 176, 10670), (53436, 176, 10710), (53437, 176, 10722), (53438, 176, 10752), (53439, 176, 10786), (53440, 176, 10827), (53441, 176, 10853), (53442, 176, 10879), (53443, 176, 10928), (53444, 176, 11092), (53445, 176, 11118), (53446, 176, 11339), (53447, 176, 11441), (53448, 176, 11442), (53449, 176, 11476), (53450, 176, 11648), (53451, 176, 11659), (53452, 176, 11701), (53453, 176, 11748), (53454, 176, 11864), (53455, 176, 12077), (53456, 176, 12138), (53457, 176, 12164), (53458, 176, 12190), (53459, 176, 12247), (53460, 176, 12310), (53461, 176, 12312); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (53462, 176, 12320), (53463, 176, 12322), (53464, 176, 12359), (53465, 176, 12376), (53466, 176, 12467), (53467, 176, 12537), (53468, 176, 12657), (53469, 176, 12661), (53470, 176, 12696), (53471, 176, 12747), (53472, 176, 12818), (53473, 176, 12826), (53474, 176, 12853), (53475, 176, 13095), (53476, 176, 13147), (53477, 176, 13216), (53478, 176, 13271), (53479, 176, 13323), (53480, 176, 13422), (53481, 176, 13431), (53482, 176, 13504), (53483, 176, 13510), (53484, 176, 13515), (53485, 176, 13517), (53486, 176, 13590), (53487, 176, 13595), (53488, 176, 13682), (53489, 176, 13688), (53490, 176, 13798), (53491, 176, 13860), (53492, 176, 13882), (53493, 176, 13883), (53494, 176, 13897), (53495, 176, 13908), (53496, 176, 13969), (53497, 176, 13980), (53498, 176, 13994), (53499, 176, 14002), (53500, 176, 14117), (53501, 176, 14140), (53502, 176, 14146), (53503, 176, 14161), (53504, 176, 14266), (53505, 176, 14359), (53506, 176, 14377), (53507, 176, 14425), (53508, 176, 14438), (53509, 176, 14475), (53510, 176, 14528), (53511, 176, 14571), (53512, 176, 14619), (53513, 176, 14667), (53514, 176, 14682), (53515, 176, 14716), (53516, 176, 14845), (53517, 176, 14853), (53518, 176, 14856), (53519, 176, 14927), (53520, 176, 14933), (53521, 176, 14970), (53522, 176, 14974), (53523, 176, 15191), (53524, 176, 15200), (53525, 176, 15220), (53526, 176, 15307), (53527, 176, 15320), (53528, 176, 15368), (53529, 176, 15373), (53530, 176, 15400), (53531, 176, 15461), (53532, 176, 15587), (53533, 176, 15593), (53534, 176, 15607), (53535, 176, 15709), (53536, 176, 15736), (53537, 176, 15865), (53538, 176, 15869), (53539, 176, 15885), (53540, 176, 15908), (53541, 176, 15971), (53542, 176, 15993), (53543, 176, 16039), (53544, 176, 16149), (53545, 176, 16189), (53546, 176, 16210), (53547, 176, 16320), (53548, 176, 16357), (53549, 176, 16390), (53550, 176, 16429), (53551, 176, 16458), (53552, 176, 16501), (53553, 176, 16511), (53554, 176, 16550), (53555, 176, 16552), (53556, 176, 16563), (53557, 176, 16638), (53558, 176, 16670), (53559, 176, 16737), (53560, 176, 16751), (53561, 176, 16766), (53562, 176, 16767), (53563, 176, 16771), (53564, 176, 16832), (53565, 176, 16837), (53566, 176, 16840), (53567, 176, 16988), (53568, 176, 16989), (53569, 176, 16996), (53570, 176, 17066), (53571, 176, 17158), (53572, 176, 17159), (53573, 176, 17227), (53574, 176, 17241), (53575, 176, 17295), (53576, 176, 17359), (53577, 176, 17367), (53578, 176, 17477), (53579, 176, 17523), (53580, 176, 17555), (53581, 176, 17557), (53582, 176, 17565), (53583, 176, 17602), (53584, 176, 17691), (53585, 176, 17743), (53586, 176, 17767), (53587, 176, 17791), (53588, 176, 17842), (53589, 176, 17906), (53590, 176, 18047), (53591, 176, 18198), (53592, 176, 18247), (53593, 176, 18250), (53594, 176, 18276), (53595, 176, 18300), (53596, 176, 18410), (53597, 176, 18416), (53598, 176, 18455), (53599, 176, 18486), (53600, 176, 18492), (53601, 176, 18552), (53602, 176, 18592), (53603, 176, 18682), (53604, 176, 18694), (53605, 176, 18705), (53606, 176, 18790), (53607, 176, 18823), (53608, 176, 18833), (53609, 176, 18860), (53610, 176, 18876), (53611, 176, 18888), (53612, 176, 18889), (53613, 176, 18961), (53614, 176, 19000), (53615, 176, 19006), (53616, 176, 19008), (53617, 176, 19028), (53618, 176, 19143), (53619, 176, 19211), (53620, 176, 19258), (53621, 176, 19288), (53622, 176, 19375), (53623, 176, 19418), (53624, 176, 19456), (53625, 176, 19463), (53626, 176, 19480), (53627, 176, 19508), (53628, 176, 19560), (53629, 176, 19699), (53630, 176, 19739), (53631, 176, 19763), (53632, 176, 19769), (53633, 176, 19771), (53634, 176, 19834), (53635, 176, 19882), (53636, 176, 19936), (53637, 176, 19949), (53638, 176, 19975), (53639, 176, 20032), (53640, 176, 20034), (53641, 176, 20076), (53642, 176, 20098), (53643, 176, 20116), (53644, 176, 20132), (53645, 176, 20270), (53646, 176, 20274), (53647, 176, 20283), (53648, 176, 20376), (53649, 176, 20382), (53650, 176, 20399), (53651, 176, 20484), (53652, 176, 20546), (53653, 176, 20686), (53654, 176, 20712), (53655, 176, 20831), (53656, 176, 20839), (53657, 176, 20843), (53658, 176, 20863), (53659, 176, 20907), (53660, 176, 20918), (53661, 176, 21167), (53662, 176, 21187), (53663, 176, 21294), (53664, 176, 21424), (53665, 176, 21516), (53666, 176, 21610), (53667, 176, 21902), (53668, 176, 21936), (53669, 176, 22023), (53670, 176, 22125), (53671, 176, 22174), (53672, 176, 22386), (53673, 176, 22431), (53674, 176, 22844), (53675, 176, 22850), (53676, 176, 22876), (53677, 176, 22983), (53678, 176, 23001), (53679, 176, 23099), (53680, 176, 23214), (53681, 176, 23476), (53682, 176, 23514), (53683, 176, 23620), (53684, 176, 23720), (53685, 176, 23759), (53686, 176, 23937), (53687, 176, 24073), (53688, 176, 24313), (53689, 176, 24540), (53690, 176, 24995), (53691, 176, 24998), (53692, 176, 25019), (53693, 176, 25026), (53694, 176, 25033), (53695, 176, 25095), (53696, 176, 25110), (53697, 176, 25169), (53698, 176, 25207), (53722, 177, 871), (53723, 177, 937), (53724, 177, 1657), (53725, 177, 1845), (53726, 177, 1909), (53727, 177, 2047), (53728, 177, 3182), (53729, 177, 3487), (53730, 177, 3618), (53731, 177, 3913), (53732, 177, 4033), (53733, 177, 4075), (53734, 177, 4207), (53735, 177, 4272), (53736, 177, 4278), (53737, 177, 4474), (53738, 177, 4765), (53739, 177, 4910), (53740, 177, 5733), (53741, 177, 6019), (53742, 177, 6335), (53743, 177, 6494), (53744, 177, 6669), (53745, 177, 6795), (53746, 177, 6844), (53747, 177, 6865), (53748, 177, 7458), (53749, 177, 7944), (53750, 177, 8129), (53751, 177, 8273), (53752, 177, 8844), (53753, 177, 9050), (53754, 177, 9077), (53755, 177, 9722), (53756, 177, 10169), (53757, 177, 10313), (53758, 177, 10542), (53759, 177, 10586), (53760, 177, 11335), (53761, 177, 11349), (53762, 177, 11951), (53763, 177, 12220), (53764, 177, 12552), (53765, 177, 12661), (53766, 177, 13282), (53767, 177, 13751), (53768, 177, 13984), (53769, 177, 14111), (53770, 177, 14347), (53771, 177, 14379), (53772, 177, 16111), (53773, 177, 16233), (53774, 177, 16327), (53775, 177, 17021), (53776, 177, 18680), (53777, 177, 18837), (53778, 177, 18853), (53779, 177, 18892), (53780, 177, 19447), (53781, 177, 20661), (53785, 178, 105), (53786, 178, 113), (53787, 178, 238), (53788, 178, 355), (53789, 178, 393), (53790, 178, 409), (53791, 178, 470), (53792, 178, 540), (53793, 178, 586), (53794, 178, 588), (53795, 178, 618), (53796, 178, 646), (53797, 178, 758), (53798, 178, 801), (53799, 178, 854), (53800, 178, 876), (53801, 178, 904), (53802, 178, 958), (53803, 178, 982), (53804, 178, 1044), (53805, 178, 1077), (53806, 178, 1099), (53807, 178, 1337), (53808, 178, 1406), (53809, 178, 1435), (53810, 178, 1514), (53811, 178, 1596), (53812, 178, 1666), (53813, 178, 1717), (53814, 178, 1819), (53815, 178, 1830), (53816, 178, 1938), (53817, 178, 1940), (53818, 178, 1973), (53819, 178, 2045), (53820, 178, 2056), (53821, 178, 2078), (53822, 178, 2079), (53823, 178, 2152), (53824, 178, 2321), (53825, 178, 2330), (53826, 178, 2360), (53827, 178, 2370), (53828, 178, 2468), (53829, 178, 2517), (53830, 178, 2569), (53831, 178, 2757), (53832, 178, 2776), (53833, 178, 2784), (53834, 178, 3004), (53835, 178, 3021), (53836, 178, 3260), (53837, 178, 3284), (53838, 178, 3341), (53839, 178, 3375), (53840, 178, 3377), (53841, 178, 3426), (53842, 178, 3726), (53843, 178, 3750), (53844, 178, 3759), (53845, 178, 3853), (53846, 178, 3855), (53847, 178, 3949), (53848, 178, 4014), (53849, 178, 4030), (53850, 178, 4119), (53851, 178, 4346), (53852, 178, 4365), (53853, 178, 4454), (53854, 178, 4457), (53855, 178, 4473), (53856, 178, 4485), (53857, 178, 4490), (53858, 178, 4499), (53859, 178, 4550), (53860, 178, 4587), (53861, 178, 4596), (53862, 178, 4600), (53863, 178, 4669), (53864, 178, 4705), (53865, 178, 4846), (53866, 178, 4851), (53867, 178, 4934), (53868, 178, 5106), (53869, 178, 5154), (53870, 178, 5186), (53871, 178, 5288), (53872, 178, 5295), (53873, 178, 5296), (53874, 178, 5304), (53875, 178, 5487), (53876, 178, 5508), (53877, 178, 5682), (53878, 178, 5719), (53879, 178, 5744), (53880, 178, 5767), (53881, 178, 5788), (53882, 178, 5803), (53883, 178, 5825), (53884, 178, 5846), (53885, 178, 5891), (53886, 178, 6035), (53887, 178, 6088), (53888, 178, 6156), (53889, 178, 6235), (53890, 178, 6262), (53891, 178, 6361), (53892, 178, 6462), (53893, 178, 6485), (53894, 178, 6578), (53895, 178, 6599), (53896, 178, 6655), (53897, 178, 6658), (53898, 178, 6673), (53899, 178, 6709), (53900, 178, 6753), (53901, 178, 6755), (53902, 178, 6796), (53903, 178, 6931), (53904, 178, 7000), (53905, 178, 7001), (53906, 178, 7101), (53907, 178, 7161), (53908, 178, 7265), (53909, 178, 7277), (53910, 178, 7288), (53911, 178, 7310), (53912, 178, 7342), (53913, 178, 7444), (53914, 178, 7456), (53915, 178, 7795), (53916, 178, 7813), (53917, 178, 7821), (53918, 178, 7824), (53919, 178, 7911), (53920, 178, 7938), (53921, 178, 8130), (53922, 178, 8136), (53923, 178, 8137), (53924, 178, 8143), (53925, 178, 8220), (53926, 178, 8290), (53927, 178, 8304), (53928, 178, 8374), (53929, 178, 8411), (53930, 178, 8437), (53931, 178, 8518), (53932, 178, 8536), (53933, 178, 8660), (53934, 178, 8715), (53935, 178, 8771), (53936, 178, 8876), (53937, 178, 8891), (53938, 178, 8930), (53939, 178, 8956), (53940, 178, 9074), (53941, 178, 9091), (53942, 178, 9169), (53943, 178, 9310), (53944, 178, 9314), (53945, 178, 9353), (53946, 178, 9367), (53947, 178, 9393), (53948, 178, 9398), (53949, 178, 9408), (53950, 178, 9425), (53951, 178, 9486), (53952, 178, 9581), (53953, 178, 9855), (53954, 178, 9876), (53955, 178, 10076), (53956, 178, 10077), (53957, 178, 10084), (53958, 178, 10103), (53959, 178, 10105), (53960, 178, 10111), (53961, 178, 10125), (53962, 178, 10192), (53963, 178, 10284), (53964, 178, 10288), (53965, 178, 10324), (53966, 178, 10325), (53967, 178, 10362), (53968, 178, 10439), (53969, 178, 10451), (53970, 178, 10475), (53971, 178, 10518), (53972, 178, 10598), (53973, 178, 10632), (53974, 178, 10676), (53975, 178, 10753), (53976, 178, 10797), (53977, 178, 10819), (53978, 178, 10854), (53979, 178, 10953), (53980, 178, 10983), (53981, 178, 11035), (53982, 178, 11051), (53983, 178, 11096), (53984, 178, 11130), (53985, 178, 11159), (53986, 178, 11168), (53987, 178, 11179), (53988, 178, 11307), (53989, 178, 11377), (53990, 178, 11389), (53991, 178, 11424), (53992, 178, 11439), (53993, 178, 11615), (53994, 178, 11758), (53995, 178, 11786), (53996, 178, 11806), (53997, 178, 11863), (53998, 178, 11890), (53999, 178, 11912), (54000, 178, 12019), (54001, 178, 12110), (54002, 178, 12145), (54003, 178, 12176), (54004, 178, 12251), (54005, 178, 12252), (54006, 178, 12269), (54007, 178, 12470), (54008, 178, 12507), (54009, 178, 12519), (54010, 178, 12543), (54011, 178, 12556), (54012, 178, 12681), (54013, 178, 12708), (54014, 178, 12714), (54015, 178, 12751), (54016, 178, 12786), (54017, 178, 12793), (54018, 178, 12848), (54019, 178, 12889), (54020, 178, 13003), (54021, 178, 13008), (54022, 178, 13016), (54023, 178, 13038), (54024, 178, 13084), (54025, 178, 13093), (54026, 178, 13101), (54027, 178, 13109), (54028, 178, 13122), (54029, 178, 13204), (54030, 178, 13206), (54031, 178, 13260), (54032, 178, 13266), (54033, 178, 13268), (54034, 178, 13300), (54035, 178, 13312), (54036, 178, 13382), (54037, 178, 13385), (54038, 178, 13390), (54039, 178, 13399), (54040, 178, 13401), (54041, 178, 13439), (54042, 178, 13659), (54043, 178, 13672), (54044, 178, 13847), (54045, 178, 13963), (54046, 178, 13971), (54047, 178, 14020), (54048, 178, 14059), (54049, 178, 14155), (54050, 178, 14181), (54051, 178, 14198), (54052, 178, 14211), (54053, 178, 14229), (54054, 178, 14236), (54055, 178, 14376), (54056, 178, 14421), (54057, 178, 14434), (54058, 178, 14437), (54059, 178, 14690), (54060, 178, 14692), (54061, 178, 14696), (54062, 178, 14708), (54063, 178, 14719), (54064, 178, 14799), (54065, 178, 14826), (54066, 178, 14932), (54067, 178, 14942), (54068, 178, 14948), (54069, 178, 14959), (54070, 178, 15150), (54071, 178, 15154), (54072, 178, 15283), (54073, 178, 15290), (54074, 178, 15336), (54075, 178, 15375), (54076, 178, 15417), (54077, 178, 15473), (54078, 178, 15511), (54079, 178, 15530), (54080, 178, 15695), (54081, 178, 15698), (54082, 178, 15704), (54083, 178, 15755), (54084, 178, 15954), (54085, 178, 16000), (54086, 178, 16013), (54087, 178, 16025), (54088, 178, 16059), (54089, 178, 16061), (54090, 178, 16064), (54091, 178, 16067), (54092, 178, 16176), (54093, 178, 16326), (54094, 178, 16347), (54095, 178, 16418), (54096, 178, 16508), (54097, 178, 16512), (54098, 178, 16546), (54099, 178, 16585), (54100, 178, 16664), (54101, 178, 16668), (54102, 178, 16745), (54103, 178, 16761), (54104, 178, 16792), (54105, 178, 16833), (54106, 178, 16847), (54107, 178, 16979), (54108, 178, 17021), (54109, 178, 17070), (54110, 178, 17137), (54111, 178, 17214), (54112, 178, 17275), (54113, 178, 17321), (54114, 178, 17357), (54115, 178, 17454), (54116, 178, 17635), (54117, 178, 17752), (54118, 178, 17976), (54119, 178, 18006), (54120, 178, 18088), (54121, 178, 18101), (54122, 178, 18114), (54123, 178, 18196), (54124, 178, 18244), (54125, 178, 18337), (54126, 178, 18364), (54127, 178, 18551), (54128, 178, 18585), (54129, 178, 18611), (54130, 178, 18690), (54131, 178, 18815), (54132, 178, 18816), (54133, 178, 18828), (54134, 178, 18899), (54135, 178, 19032), (54136, 178, 19101), (54137, 178, 19138), (54138, 178, 19323), (54139, 178, 19582), (54140, 178, 19616), (54141, 178, 19619), (54142, 178, 19723), (54143, 178, 19757), (54144, 178, 19783), (54145, 178, 19876), (54146, 178, 19887), (54147, 178, 19896), (54148, 178, 20175), (54149, 178, 20253), (54150, 178, 20259), (54151, 178, 20296), (54152, 178, 20318), (54153, 178, 20359), (54154, 178, 20376), (54155, 178, 20515), (54156, 178, 20669), (54157, 178, 20723), (54158, 178, 20847), (54159, 178, 20948), (54160, 178, 21066), (54161, 178, 21173), (54162, 178, 21238), (54163, 178, 21302), (54164, 178, 21397), (54165, 178, 21621), (54166, 178, 21790), (54167, 178, 22641), (54168, 178, 22760), (54169, 178, 22852), (54170, 178, 23121), (54171, 178, 23452), (54172, 178, 23542), (54173, 178, 23575), (54174, 178, 24202), (54175, 178, 24203), (54176, 178, 24436), (54177, 178, 24982), (54178, 178, 24984), (54179, 178, 25098), (54296, 179, 372), (54297, 179, 490), (54298, 179, 554), (54299, 179, 602), (54300, 179, 647), (54301, 179, 807), (54302, 179, 839), (54303, 179, 1132), (54304, 179, 1467), (54305, 179, 1610), (54306, 179, 1670), (54307, 179, 1702), (54308, 179, 1713), (54309, 179, 1809), (54310, 179, 1829), (54311, 179, 1890), (54312, 179, 1930), (54313, 179, 1970), (54314, 179, 2030), (54315, 179, 2156), (54316, 179, 2185), (54317, 179, 2222), (54318, 179, 2286), (54319, 179, 2322), (54320, 179, 2343), (54321, 179, 2391), (54322, 179, 2646), (54323, 179, 2667), (54324, 179, 2717), (54325, 179, 3050), (54326, 179, 3114), (54327, 179, 3150), (54328, 179, 3164), (54329, 179, 3415), (54330, 179, 3678), (54331, 179, 3702), (54332, 179, 3749), (54333, 179, 3822), (54334, 179, 3884), (54335, 179, 4078), (54336, 179, 4231), (54337, 179, 4239), (54338, 179, 4341), (54339, 179, 4369), (54340, 179, 4434), (54341, 179, 4460), (54342, 179, 4467), (54343, 179, 4514), (54344, 179, 4623), (54345, 179, 4779), (54346, 179, 4788), (54347, 179, 4908), (54348, 179, 5297), (54349, 179, 5417), (54350, 179, 5484), (54351, 179, 5555), (54352, 179, 6004), (54353, 179, 6019), (54354, 179, 6065), (54355, 179, 6131), (54356, 179, 6176), (54357, 179, 6231), (54358, 179, 6250), (54359, 179, 6273), (54360, 179, 6317), (54361, 179, 6319), (54362, 179, 6321), (54363, 179, 6347), (54364, 179, 6489), (54365, 179, 6795), (54366, 179, 6878), (54367, 179, 6905), (54368, 179, 6984), (54369, 179, 7053), (54370, 179, 7100), (54371, 179, 7128), (54372, 179, 7230), (54373, 179, 7305), (54374, 179, 7346), (54375, 179, 7356), (54376, 179, 7363), (54377, 179, 7421), (54378, 179, 7465), (54379, 179, 7477), (54380, 179, 7541), (54381, 179, 7685), (54382, 179, 7692), (54383, 179, 7818), (54384, 179, 7865), (54385, 179, 7895), (54386, 179, 8133), (54387, 179, 8165), (54388, 179, 8259), (54389, 179, 8415), (54390, 179, 8450), (54391, 179, 8470), (54392, 179, 8519), (54393, 179, 8701), (54394, 179, 8880), (54395, 179, 8994), (54396, 179, 9061), (54397, 179, 9084), (54398, 179, 9099), (54399, 179, 9138), (54400, 179, 9209), (54401, 179, 9224), (54402, 179, 9258), (54403, 179, 9283), (54404, 179, 9346), (54405, 179, 9419), (54406, 179, 9435), (54407, 179, 9484), (54408, 179, 9673), (54409, 179, 9716), (54410, 179, 9896), (54411, 179, 9942), (54412, 179, 9947), (54413, 179, 10045), (54414, 179, 10060), (54415, 179, 10073), (54416, 179, 10079), (54417, 179, 10234), (54418, 179, 10243), (54419, 179, 10430), (54420, 179, 10490), (54421, 179, 10523), (54422, 179, 10576), (54423, 179, 10586), (54424, 179, 10608), (54425, 179, 10609), (54426, 179, 10621), (54427, 179, 10646), (54428, 179, 10776), (54429, 179, 10933), (54430, 179, 11014), (54431, 179, 11078), (54432, 179, 11114), (54433, 179, 11115), (54434, 179, 11142), (54435, 179, 11147), (54436, 179, 11152), (54437, 179, 11206), (54438, 179, 11224), (54439, 179, 11321), (54440, 179, 11379), (54441, 179, 11529), (54442, 179, 11563), (54443, 179, 11859), (54444, 179, 11952), (54445, 179, 11992), (54446, 179, 12109), (54447, 179, 12160), (54448, 179, 12220), (54449, 179, 12398), (54450, 179, 12647), (54451, 179, 12693), (54452, 179, 12700), (54453, 179, 12906), (54454, 179, 12988), (54455, 179, 13021), (54456, 179, 13065), (54457, 179, 13208), (54458, 179, 13339), (54459, 179, 13361), (54460, 179, 13367), (54461, 179, 13444), (54462, 179, 13484), (54463, 179, 13495), (54464, 179, 13496), (54465, 179, 13720), (54466, 179, 13984), (54467, 179, 14008), (54468, 179, 14020), (54469, 179, 14099), (54470, 179, 14226), (54471, 179, 14249), (54472, 179, 14257), (54473, 179, 14259), (54474, 179, 14270), (54475, 179, 14275), (54476, 179, 14306), (54477, 179, 14316), (54478, 179, 14386), (54479, 179, 14457), (54480, 179, 14623), (54481, 179, 14657), (54482, 179, 14667), (54483, 179, 14704), (54484, 179, 14729), (54485, 179, 14751), (54486, 179, 14859), (54487, 179, 14915), (54488, 179, 14988), (54489, 179, 15070), (54490, 179, 15078), (54491, 179, 15093), (54492, 179, 15214), (54493, 179, 15310), (54494, 179, 15513), (54495, 179, 15561), (54496, 179, 15570), (54497, 179, 15571), (54498, 179, 15653), (54499, 179, 15925), (54500, 179, 16015), (54501, 179, 16033), (54502, 179, 16096), (54503, 179, 16124), (54504, 179, 16186), (54505, 179, 16190), (54506, 179, 16209), (54507, 179, 16225), (54508, 179, 16527), (54509, 179, 16623), (54510, 179, 16645), (54511, 179, 16654), (54512, 179, 16747), (54513, 179, 16757), (54514, 179, 16800), (54515, 179, 16827), (54516, 179, 16835), (54517, 179, 16918), (54518, 179, 17160), (54519, 179, 17161), (54520, 179, 17203), (54521, 179, 17494), (54522, 179, 17539), (54523, 179, 17704), (54524, 179, 17755), (54525, 179, 17788), (54526, 179, 17916), (54527, 179, 17932), (54528, 179, 17938), (54529, 179, 17988), (54530, 179, 18045), (54531, 179, 18240), (54532, 179, 18499), (54533, 179, 18529), (54534, 179, 18691), (54535, 179, 18750), (54536, 179, 18796), (54537, 179, 18841), (54538, 179, 18933), (54539, 179, 19202), (54540, 179, 19310), (54541, 179, 19515), (54542, 179, 19806), (54543, 179, 19990), (54544, 179, 20112), (54545, 179, 20243), (54546, 179, 20468), (54547, 179, 20644), (54548, 179, 20936), (54549, 179, 22075), (54550, 179, 22233), (54551, 179, 23108), (54552, 179, 25129), (54553, 179, 25210), (54807, 180, 588), (54808, 180, 590), (54809, 180, 707), (54810, 180, 846), (54811, 180, 1467), (54812, 180, 1852), (54813, 180, 2158), (54814, 180, 2431), (54815, 180, 2667), (54816, 180, 2797), (54817, 180, 2897), (54818, 180, 3031), (54819, 180, 3415), (54820, 180, 3464), (54821, 180, 3738), (54822, 180, 3884), (54823, 180, 4369), (54824, 180, 4613), (54825, 180, 4946), (54826, 180, 5035), (54827, 180, 5053), (54828, 180, 5212), (54829, 180, 7414), (54830, 180, 7456), (54831, 180, 8220), (54832, 180, 8668), (54833, 180, 8994), (54834, 180, 9099), (54835, 180, 9243), (54836, 180, 9419), (54837, 180, 9459), (54838, 180, 10060), (54839, 180, 10519), (54840, 180, 10787), (54841, 180, 11215), (54842, 180, 11471), (54843, 180, 12732), (54844, 180, 12872), (54845, 180, 12873), (54846, 180, 13400), (54847, 180, 13566), (54848, 180, 13710), (54849, 180, 14099), (54850, 180, 15721), (54851, 180, 16015), (54852, 180, 16110), (54853, 180, 16318), (54854, 180, 16827), (54855, 180, 16927), (54856, 180, 17704), (54857, 180, 18466), (54858, 180, 18615), (54859, 180, 18790), (54860, 180, 18976), (54861, 180, 19447), (54862, 180, 21698), (54863, 180, 22084), (54864, 180, 22346), (54870, 181, 121), (54871, 181, 136), (54872, 181, 180), (54873, 181, 217), (54874, 181, 274), (54875, 181, 284), (54876, 181, 439), (54877, 181, 459), (54878, 181, 466), (54879, 181, 487), (54880, 181, 540), (54881, 181, 550), (54882, 181, 564), (54883, 181, 568), (54884, 181, 575), (54885, 181, 766), (54886, 181, 846), (54887, 181, 848), (54888, 181, 871), (54889, 181, 936), (54890, 181, 1099), (54891, 181, 1168), (54892, 181, 1271), (54893, 181, 1284), (54894, 181, 1346), (54895, 181, 1351), (54896, 181, 1475), (54897, 181, 1571), (54898, 181, 1809), (54899, 181, 1838), (54900, 181, 1852), (54901, 181, 1890), (54902, 181, 1963), (54903, 181, 2031), (54904, 181, 2078), (54905, 181, 2259), (54906, 181, 2273), (54907, 181, 2286), (54908, 181, 2322), (54909, 181, 2398), (54910, 181, 2432), (54911, 181, 2618), (54912, 181, 2622), (54913, 181, 2867), (54914, 181, 2897), (54915, 181, 3067), (54916, 181, 3069), (54917, 181, 3075), (54918, 181, 3092), (54919, 181, 3098), (54920, 181, 3110), (54921, 181, 3220), (54922, 181, 3464), (54923, 181, 3520), (54924, 181, 3568), (54925, 181, 3671), (54926, 181, 3700), (54927, 181, 3749), (54928, 181, 3752), (54929, 181, 3806), (54930, 181, 3884), (54931, 181, 3934), (54932, 181, 3988), (54933, 181, 4639), (54934, 181, 4643), (54935, 181, 4729), (54936, 181, 5075), (54937, 181, 5134), (54938, 181, 5228), (54939, 181, 5422), (54940, 181, 5555), (54941, 181, 5694), (54942, 181, 5882), (54943, 181, 6019), (54944, 181, 6160), (54945, 181, 6561), (54946, 181, 6600), (54947, 181, 6608), (54948, 181, 6645), (54949, 181, 6711), (54950, 181, 6774), (54951, 181, 6804), (54952, 181, 6986), (54953, 181, 7035), (54954, 181, 7058), (54955, 181, 7082), (54956, 181, 7150), (54957, 181, 7177), (54958, 181, 7230), (54959, 181, 7277), (54960, 181, 7310), (54961, 181, 7318), (54962, 181, 7363), (54963, 181, 7382), (54964, 181, 7397), (54965, 181, 7456), (54966, 181, 7535), (54967, 181, 7693), (54968, 181, 7865), (54969, 181, 7921), (54970, 181, 7933), (54971, 181, 8075), (54972, 181, 8137), (54973, 181, 8139), (54974, 181, 8269), (54975, 181, 8337), (54976, 181, 8338), (54977, 181, 8549), (54978, 181, 8641), (54979, 181, 8675), (54980, 181, 8814), (54981, 181, 9077), (54982, 181, 9145), (54983, 181, 9147), (54984, 181, 9199), (54985, 181, 9346), (54986, 181, 9351), (54987, 181, 9435), (54988, 181, 9470), (54989, 181, 9472), (54990, 181, 9585), (54991, 181, 9649), (54992, 181, 9673), (54993, 181, 9694), (54994, 181, 9716), (54995, 181, 9888), (54996, 181, 10073), (54997, 181, 10103), (54998, 181, 10280), (54999, 181, 10287), (55000, 181, 10451), (55001, 181, 10513), (55002, 181, 10576), (55003, 181, 10820), (55004, 181, 10860), (55005, 181, 10959), (55006, 181, 11083), (55007, 181, 11114), (55008, 181, 11126), (55009, 181, 11142), (55010, 181, 11143), (55011, 181, 11167), (55012, 181, 11236), (55013, 181, 11473), (55014, 181, 11548), (55015, 181, 11694), (55016, 181, 11845), (55017, 181, 11955), (55018, 181, 12346), (55019, 181, 12588), (55020, 181, 12676), (55021, 181, 12679), (55022, 181, 12700), (55023, 181, 12744), (55024, 181, 12918), (55025, 181, 12969), (55026, 181, 13015), (55027, 181, 13029), (55028, 181, 13221), (55029, 181, 13240), (55030, 181, 13260), (55031, 181, 13339), (55032, 181, 13700), (55033, 181, 13720), (55034, 181, 13748), (55035, 181, 13848), (55036, 181, 14008), (55037, 181, 14114), (55038, 181, 14132), (55039, 181, 14144), (55040, 181, 14199), (55041, 181, 14252), (55042, 181, 14350), (55043, 181, 14375), (55044, 181, 14617), (55045, 181, 14859), (55046, 181, 15007), (55047, 181, 15352), (55048, 181, 15586), (55049, 181, 15721), (55050, 181, 15822), (55051, 181, 15961), (55052, 181, 16096), (55053, 181, 16117), (55054, 181, 16119), (55055, 181, 16454), (55056, 181, 16477), (55057, 181, 16747), (55058, 181, 16794), (55059, 181, 17655), (55060, 181, 17743), (55061, 181, 17753), (55062, 181, 17868), (55063, 181, 17938), (55064, 181, 18045), (55065, 181, 18240), (55066, 181, 18471), (55067, 181, 18499), (55068, 181, 18556), (55069, 181, 18893), (55070, 181, 18910), (55071, 181, 18976), (55072, 181, 19009), (55073, 181, 19338), (55074, 181, 19605), (55075, 181, 19792), (55076, 181, 19903), (55077, 181, 19946), (55078, 181, 20253), (55079, 181, 20290), (55080, 181, 20513), (55081, 181, 20984), (55082, 181, 21206), (55083, 181, 21603), (55084, 181, 22284), (55085, 181, 22486), (55086, 181, 22780), (55087, 181, 22842), (55088, 181, 24272), (55089, 181, 25132), (55125, 182, 306), (55126, 182, 498), (55127, 182, 1205), (55128, 182, 1216), (55129, 182, 1271), (55130, 182, 1542), (55131, 182, 1588), (55132, 182, 1594), (55133, 182, 1788), (55134, 182, 1880), (55135, 182, 2176), (55136, 182, 2185), (55137, 182, 2360), (55138, 182, 2729), (55139, 182, 2870), (55140, 182, 2936), (55141, 182, 3293), (55142, 182, 3532), (55143, 182, 3789), (55144, 182, 4063), (55145, 182, 4278), (55146, 182, 4453), (55147, 182, 4457), (55148, 182, 4639), (55149, 182, 4912), (55150, 182, 5044), (55151, 182, 5055), (55152, 182, 5293), (55153, 182, 5908), (55154, 182, 6038), (55155, 182, 6618), (55156, 182, 6872), (55157, 182, 6905), (55158, 182, 6914), (55159, 182, 7129), (55160, 182, 7190), (55161, 182, 7249), (55162, 182, 7610), (55163, 182, 7710), (55164, 182, 7867), (55165, 182, 7938), (55166, 182, 8143), (55167, 182, 8285), (55168, 182, 8328), (55169, 182, 8343), (55170, 182, 8450), (55171, 182, 8583), (55172, 182, 8593), (55173, 182, 9099), (55174, 182, 9200), (55175, 182, 9539), (55176, 182, 9560), (55177, 182, 9722), (55178, 182, 9816), (55179, 182, 9891), (55180, 182, 10053), (55181, 182, 10079), (55182, 182, 10141), (55183, 182, 10204), (55184, 182, 10403), (55185, 182, 10620), (55186, 182, 10750), (55187, 182, 11344), (55188, 182, 11428), (55189, 182, 11471), (55190, 182, 11538), (55191, 182, 11925), (55192, 182, 11969), (55193, 182, 11971), (55194, 182, 12057), (55195, 182, 12265), (55196, 182, 12304), (55197, 182, 12418), (55198, 182, 12443), (55199, 182, 12872), (55200, 182, 13161), (55201, 182, 13296), (55202, 182, 13297), (55203, 182, 13495), (55204, 182, 13566), (55205, 182, 13721), (55206, 182, 13768), (55207, 182, 13977), (55208, 182, 14502), (55209, 182, 14514), (55210, 182, 14710), (55211, 182, 14729), (55212, 182, 14852), (55213, 182, 15036), (55214, 182, 15372), (55215, 182, 15721), (55216, 182, 15824), (55217, 182, 16221), (55218, 182, 16571), (55219, 182, 16599), (55220, 182, 16736), (55221, 182, 16748), (55222, 182, 16996), (55223, 182, 17829), (55224, 182, 17922), (55225, 182, 17999), (55226, 182, 18441), (55227, 182, 18749), (55228, 182, 19695), (55229, 182, 19748), (55230, 182, 20028), (55231, 182, 22013), (55252, 183, 808), (55253, 183, 1273), (55254, 183, 1330), (55255, 183, 1875), (55256, 183, 1965), (55257, 183, 3479), (55258, 183, 3486), (55259, 183, 3596), (55260, 183, 4476), (55261, 183, 4764), (55262, 183, 7198), (55263, 183, 7320), (55264, 183, 7386), (55265, 183, 7870), (55266, 183, 8773), (55267, 183, 9183), (55268, 183, 9776), (55269, 183, 10733), (55270, 183, 11129), (55271, 183, 12412), (55272, 183, 12640), (55273, 183, 13183), (55274, 183, 13545), (55275, 183, 13779), (55276, 183, 15199), (55277, 183, 15781), (55278, 183, 16142), (55279, 183, 17522), (55280, 183, 17852), (55281, 183, 18082), (55282, 183, 19198), (55283, 183, 19224), (55284, 183, 19656), (55285, 183, 19940), (55286, 183, 21275), (55287, 183, 21631), (55288, 183, 21755), (55289, 183, 22657), (55290, 183, 23677), (55315, 184, 321), (55316, 184, 832), (55317, 184, 877), (55318, 184, 1297), (55319, 184, 1315), (55320, 184, 1341), (55321, 184, 1480), (55322, 184, 1531), (55323, 184, 1933), (55324, 184, 2084), (55325, 184, 2359), (55326, 184, 2380), (55327, 184, 2480), (55328, 184, 2639), (55329, 184, 2791), (55330, 184, 2810), (55331, 184, 2850), (55332, 184, 3649), (55333, 184, 3661), (55334, 184, 3816), (55335, 184, 3841), (55336, 184, 4332), (55337, 184, 4374), (55338, 184, 4676), (55339, 184, 5051), (55340, 184, 5095), (55341, 184, 5129), (55342, 184, 5246), (55343, 184, 6526), (55344, 184, 6528), (55345, 184, 6581), (55346, 184, 6907), (55347, 184, 6912), (55348, 184, 6932), (55349, 184, 6950), (55350, 184, 7187), (55351, 184, 7193), (55352, 184, 7202), (55353, 184, 7260), (55354, 184, 7325), (55355, 184, 7484), (55356, 184, 7611), (55357, 184, 7649), (55358, 184, 8219), (55359, 184, 8250), (55360, 184, 8330), (55361, 184, 8805), (55362, 184, 8997), (55363, 184, 9342), (55364, 184, 9465), (55365, 184, 9685), (55366, 184, 9879), (55367, 184, 10209), (55368, 184, 10354), (55369, 184, 10374), (55370, 184, 10705), (55371, 184, 10868), (55372, 184, 11226), (55373, 184, 11334), (55374, 184, 11635), (55375, 184, 12241), (55376, 184, 12295), (55377, 184, 12401), (55378, 184, 12945), (55379, 184, 13106), (55380, 184, 13242), (55381, 184, 13430), (55382, 184, 13465), (55383, 184, 13723), (55384, 184, 13845), (55385, 184, 13926), (55386, 184, 14025), (55387, 184, 14461), (55388, 184, 14629), (55389, 184, 14918), (55390, 184, 15358), (55391, 184, 15746), (55392, 184, 15821), (55393, 184, 16247), (55394, 184, 16759), (55395, 184, 16985), (55396, 184, 17271), (55397, 184, 17856), (55398, 184, 17861), (55399, 184, 17948), (55400, 184, 18111), (55401, 184, 18639), (55402, 184, 18826), (55403, 184, 18870), (55404, 184, 19166), (55405, 184, 19261), (55406, 184, 19819), (55407, 184, 19907), (55408, 184, 20144), (55409, 184, 20171), (55410, 184, 20536), (55411, 184, 20732), (55412, 184, 20796), (55413, 184, 21012), (55414, 184, 21165), (55415, 184, 21253), (55416, 184, 21413), (55417, 184, 21414), (55418, 184, 21506), (55419, 184, 21721), (55420, 184, 21757), (55421, 184, 21945), (55422, 184, 22031), (55423, 184, 22306), (55424, 184, 22995), (55425, 184, 23021), (55426, 184, 23182), (55427, 184, 23656), (55428, 184, 23765), (55429, 184, 23853), (55430, 184, 23983), (55431, 184, 24499), (55432, 184, 24705), (55433, 184, 24711), (55434, 184, 25007), (55435, 184, 25164), (55442, 185, 161), (55443, 185, 1097), (55444, 185, 1112), (55445, 185, 1113), (55446, 185, 1651), (55447, 185, 1754), (55448, 185, 1914), (55449, 185, 1956), (55450, 185, 2134), (55451, 185, 2455), (55452, 185, 2752), (55453, 185, 3337), (55454, 185, 3503), (55455, 185, 3687), (55456, 185, 3845), (55457, 185, 3933), (55458, 185, 4006), (55459, 185, 4430), (55460, 185, 4826), (55461, 185, 4941), (55462, 185, 5471), (55463, 185, 6044), (55464, 185, 6245), (55465, 185, 6247), (55466, 185, 6267), (55467, 185, 6659), (55468, 185, 6897), (55469, 185, 7061), (55470, 185, 7172), (55471, 185, 7505), (55472, 185, 7552), (55473, 185, 8515), (55474, 185, 8552), (55475, 185, 9179), (55476, 185, 9482), (55477, 185, 10343), (55478, 185, 10690), (55479, 185, 11212), (55480, 185, 12276), (55481, 185, 12769), (55482, 185, 13026), (55483, 185, 13214), (55484, 185, 13964), (55485, 185, 14029), (55486, 185, 16743), (55487, 185, 18230), (55488, 185, 19405), (55489, 185, 19430), (55490, 185, 19564), (55491, 185, 19817), (55492, 185, 19956), (55493, 185, 20062), (55494, 185, 20391), (55495, 185, 21309), (55496, 185, 21802), (55497, 185, 22777), (55498, 185, 24561), (55505, 186, 71), (55506, 186, 131), (55507, 186, 199), (55508, 186, 200), (55509, 186, 223), (55510, 186, 242), (55511, 186, 266), (55512, 186, 290), (55513, 186, 340), (55514, 186, 469), (55515, 186, 515), (55516, 186, 529), (55517, 186, 593), (55518, 186, 625), (55519, 186, 642), (55520, 186, 650), (55521, 186, 701), (55522, 186, 711), (55523, 186, 719), (55524, 186, 760), (55525, 186, 769), (55526, 186, 790), (55527, 186, 812), (55528, 186, 835), (55529, 186, 841), (55530, 186, 855), (55531, 186, 861), (55532, 186, 875), (55533, 186, 896), (55534, 186, 929), (55535, 186, 977), (55536, 186, 984), (55537, 186, 1046), (55538, 186, 1111), (55539, 186, 1128), (55540, 186, 1173), (55541, 186, 1371), (55542, 186, 1383), (55543, 186, 1440), (55544, 186, 1463), (55545, 186, 1533), (55546, 186, 1548), (55547, 186, 1650), (55548, 186, 1720), (55549, 186, 1738), (55550, 186, 1773), (55551, 186, 1811), (55552, 186, 1828), (55553, 186, 1847), (55554, 186, 1882), (55555, 186, 1982), (55556, 186, 1986), (55557, 186, 1996), (55558, 186, 2095), (55559, 186, 2108), (55560, 186, 2134), (55561, 186, 2156), (55562, 186, 2172), (55563, 186, 2324), (55564, 186, 2434), (55565, 186, 2461), (55566, 186, 2474), (55567, 186, 2528), (55568, 186, 2533), (55569, 186, 2567), (55570, 186, 2633), (55571, 186, 2708), (55572, 186, 2817), (55573, 186, 2969), (55574, 186, 3035), (55575, 186, 3149), (55576, 186, 3268), (55577, 186, 3398), (55578, 186, 3571), (55579, 186, 3594), (55580, 186, 3635), (55581, 186, 3673), (55582, 186, 3804), (55583, 186, 3879), (55584, 186, 3910), (55585, 186, 3946), (55586, 186, 4000), (55587, 186, 4082), (55588, 186, 4123), (55589, 186, 4167), (55590, 186, 4212), (55591, 186, 4226), (55592, 186, 4250), (55593, 186, 4360), (55594, 186, 4415), (55595, 186, 4422), (55596, 186, 4509), (55597, 186, 4629), (55598, 186, 4633), (55599, 186, 4684), (55600, 186, 4917), (55601, 186, 4972), (55602, 186, 5008), (55603, 186, 5062), (55604, 186, 5102), (55605, 186, 5193), (55606, 186, 5306), (55607, 186, 5552), (55608, 186, 5607), (55609, 186, 5620), (55610, 186, 5643), (55611, 186, 5663), (55612, 186, 5724), (55613, 186, 5730), (55614, 186, 5731), (55615, 186, 5770), (55616, 186, 5797), (55617, 186, 5815), (55618, 186, 5830), (55619, 186, 5836), (55620, 186, 5858), (55621, 186, 5867), (55622, 186, 5957), (55623, 186, 5969), (55624, 186, 5981), (55625, 186, 6014), (55626, 186, 6016), (55627, 186, 6046), (55628, 186, 6173), (55629, 186, 6192), (55630, 186, 6211), (55631, 186, 6239), (55632, 186, 6251), (55633, 186, 6268), (55634, 186, 6333), (55635, 186, 6382), (55636, 186, 6420), (55637, 186, 6453), (55638, 186, 6501), (55639, 186, 6665), (55640, 186, 6687), (55641, 186, 6703), (55642, 186, 6869), (55643, 186, 6957), (55644, 186, 6965), (55645, 186, 7104), (55646, 186, 7115), (55647, 186, 7202), (55648, 186, 7359), (55649, 186, 7395), (55650, 186, 7499), (55651, 186, 7510), (55652, 186, 7539), (55653, 186, 7597), (55654, 186, 7600), (55655, 186, 7637), (55656, 186, 7645), (55657, 186, 7696), (55658, 186, 7745), (55659, 186, 7755), (55660, 186, 7757), (55661, 186, 7885), (55662, 186, 7886), (55663, 186, 7918), (55664, 186, 7992), (55665, 186, 7998), (55666, 186, 8193), (55667, 186, 8224), (55668, 186, 8329), (55669, 186, 8483), (55670, 186, 8516), (55671, 186, 8573), (55672, 186, 8586), (55673, 186, 8856), (55674, 186, 8863), (55675, 186, 8912), (55676, 186, 8940), (55677, 186, 8962), (55678, 186, 8979), (55679, 186, 9000), (55680, 186, 9007), (55681, 186, 9044), (55682, 186, 9090), (55683, 186, 9201), (55684, 186, 9341), (55685, 186, 9354), (55686, 186, 9379), (55687, 186, 9389), (55688, 186, 9431), (55689, 186, 9573), (55690, 186, 9713), (55691, 186, 9765), (55692, 186, 9780), (55693, 186, 9813), (55694, 186, 9880), (55695, 186, 9898), (55696, 186, 10185), (55697, 186, 10188), (55698, 186, 10336), (55699, 186, 10365), (55700, 186, 10406), (55701, 186, 10417), (55702, 186, 10473), (55703, 186, 10506), (55704, 186, 10514), (55705, 186, 10552), (55706, 186, 10577), (55707, 186, 10651), (55708, 186, 10712), (55709, 186, 10725), (55710, 186, 10828), (55711, 186, 10886), (55712, 186, 10963), (55713, 186, 11055), (55714, 186, 11079), (55715, 186, 11226), (55716, 186, 11289), (55717, 186, 11342), (55718, 186, 11430), (55719, 186, 11485), (55720, 186, 11585), (55721, 186, 11657), (55722, 186, 11850), (55723, 186, 11920), (55724, 186, 11979), (55725, 186, 12148), (55726, 186, 12238), (55727, 186, 12270), (55728, 186, 12281), (55729, 186, 12438), (55730, 186, 12464), (55731, 186, 12492), (55732, 186, 12795), (55733, 186, 12823), (55734, 186, 12939), (55735, 186, 13389), (55736, 186, 13451), (55737, 186, 13617), (55738, 186, 13976), (55739, 186, 14094), (55740, 186, 14247), (55741, 186, 14268), (55742, 186, 14335), (55743, 186, 14454), (55744, 186, 14786), (55745, 186, 15029), (55746, 186, 15241), (55747, 186, 15332), (55748, 186, 15369), (55749, 186, 15377), (55750, 186, 15660), (55751, 186, 15855), (55752, 186, 15989), (55753, 186, 16484), (55754, 186, 16639), (55755, 186, 16759), (55756, 186, 16922), (55757, 186, 16954), (55758, 186, 16992), (55759, 186, 17094), (55760, 186, 17110), (55761, 186, 17153), (55762, 186, 17355), (55763, 186, 17507), (55764, 186, 17517), (55765, 186, 17522), (55766, 186, 17630), (55767, 186, 17672), (55768, 186, 17723), (55769, 186, 17744), (55770, 186, 17971), (55771, 186, 18117), (55772, 186, 18257), (55773, 186, 18297), (55774, 186, 18314), (55775, 186, 18515), (55776, 186, 18775), (55777, 186, 18913), (55778, 186, 19110), (55779, 186, 19148), (55780, 186, 19275), (55781, 186, 19369), (55782, 186, 19403), (55783, 186, 19532), (55784, 186, 19534), (55785, 186, 19578), (55786, 186, 19599), (55787, 186, 19625), (55788, 186, 19685), (55789, 186, 19798), (55790, 186, 19812), (55791, 186, 19906), (55792, 186, 19910), (55793, 186, 19965), (55794, 186, 20011), (55795, 186, 20012), (55796, 186, 20184), (55797, 186, 20267), (55798, 186, 20298), (55799, 186, 20375), (55800, 186, 20448), (55801, 186, 20582), (55802, 186, 20654), (55803, 186, 20662), (55804, 186, 20754), (55805, 186, 21156), (55806, 186, 21159), (55807, 186, 21234), (55808, 186, 21313), (55809, 186, 21401), (55810, 186, 21428), (55811, 186, 21523), (55812, 186, 21633), (55813, 186, 21934), (55814, 186, 21959), (55815, 186, 22141), (55816, 186, 22191), (55817, 186, 22250), (55818, 186, 22276), (55819, 186, 22393), (55820, 186, 22400), (55821, 186, 22446), (55822, 186, 22456), (55823, 186, 22467), (55824, 186, 22496), (55825, 186, 22689), (55826, 186, 22887), (55827, 186, 22954), (55828, 186, 23006), (55829, 186, 23010), (55830, 186, 23054), (55831, 186, 23167), (55832, 186, 23186), (55833, 186, 23204), (55834, 186, 23336), (55835, 186, 23382), (55836, 186, 23450), (55837, 186, 23549), (55838, 186, 23639), (55839, 186, 23652), (55840, 186, 24078), (55841, 186, 24338), (55842, 186, 24518), (55843, 186, 24597), (55844, 186, 24690), (55845, 186, 24718), (55846, 186, 24810), (55847, 186, 25038), (55848, 186, 25111), (55849, 186, 25222), (56016, 187, 1463), (56017, 187, 2888), (56018, 187, 3434), (56019, 187, 4023), (56020, 187, 4144), (56021, 187, 4440), (56022, 187, 4465), (56023, 187, 4754), (56024, 187, 4820), (56025, 187, 5790), (56026, 187, 6246), (56027, 187, 6492), (56028, 187, 6616), (56029, 187, 6933), (56030, 187, 7360), (56031, 187, 7940), (56032, 187, 7950), (56033, 187, 8396), (56034, 187, 8478), (56035, 187, 8578), (56036, 187, 8724), (56037, 187, 8900), (56038, 187, 8922), (56039, 187, 8929), (56040, 187, 9014), (56041, 187, 9598), (56042, 187, 9743), (56043, 187, 10068), (56044, 187, 10338), (56045, 187, 10389), (56046, 187, 11189), (56047, 187, 11560), (56048, 187, 11673), (56049, 187, 11847), (56050, 187, 11862), (56051, 187, 12226), (56052, 187, 12241), (56053, 187, 12411), (56054, 187, 12482), (56055, 187, 12591), (56056, 187, 12665), (56057, 187, 12909), (56058, 187, 13485), (56059, 187, 13528), (56060, 187, 14583), (56061, 187, 14600), (56062, 187, 14769), (56063, 187, 15355), (56064, 187, 15869), (56065, 187, 15970), (56066, 187, 16170), (56067, 187, 16334), (56068, 187, 16619), (56069, 187, 16718), (56070, 187, 17251), (56071, 187, 17300), (56072, 187, 17411), (56073, 187, 17446), (56074, 187, 17715), (56075, 187, 17881), (56076, 187, 17882), (56077, 187, 17898), (56078, 187, 18148), (56079, 187, 18417), (56080, 187, 18770), (56081, 187, 18882), (56082, 187, 18931), (56083, 187, 18946), (56084, 187, 19449), (56085, 187, 19705), (56086, 187, 19926), (56087, 187, 20179), (56088, 187, 20302), (56089, 187, 20396), (56090, 187, 20740), (56091, 187, 20801), (56092, 187, 20833), (56093, 187, 20855), (56094, 187, 21051), (56095, 187, 21227), (56096, 187, 21623), (56097, 187, 21757), (56098, 187, 21851), (56099, 187, 21859), (56100, 187, 23089), (56101, 187, 23241), (56102, 187, 23647), (56103, 187, 23676), (56104, 187, 23733), (56105, 187, 23823), (56106, 187, 24328), (56107, 187, 24371), (56108, 187, 24708), (56143, 188, 193), (56144, 188, 444), (56145, 188, 626), (56146, 188, 728), (56147, 188, 771), (56148, 188, 790), (56149, 188, 1045), (56150, 188, 1403), (56151, 188, 2434), (56152, 188, 2833), (56153, 188, 2907), (56154, 188, 3032), (56155, 188, 3188), (56156, 188, 3339), (56157, 188, 3472), (56158, 188, 3743), (56159, 188, 4332), (56160, 188, 4593), (56161, 188, 4676), (56162, 188, 4983), (56163, 188, 5028), (56164, 188, 5281), (56165, 188, 5301), (56166, 188, 5659), (56167, 188, 6374), (56168, 188, 6722), (56169, 188, 6862), (56170, 188, 7248), (56171, 188, 7409), (56172, 188, 7669), (56173, 188, 7972), (56174, 188, 7994), (56175, 188, 8193), (56176, 188, 8330), (56177, 188, 8445), (56178, 188, 8695), (56179, 188, 8921), (56180, 188, 9235), (56181, 188, 9786), (56182, 188, 9879), (56183, 188, 11028), (56184, 188, 12295), (56185, 188, 12900), (56186, 188, 12945), (56187, 188, 13106), (56188, 188, 13123), (56189, 188, 13430), (56190, 188, 13574), (56191, 188, 14025), (56192, 188, 14461), (56193, 188, 14578), (56194, 188, 14783), (56195, 188, 14888), (56196, 188, 15936), (56197, 188, 16422), (56198, 188, 16453), (56199, 188, 16639), (56200, 188, 16940), (56201, 188, 16985), (56202, 188, 17084), (56203, 188, 17271), (56204, 188, 17771), (56205, 188, 17902), (56206, 188, 18283), (56207, 188, 18624), (56208, 188, 18826), (56209, 188, 18870), (56210, 188, 19506), (56211, 188, 19907), (56212, 188, 20016), (56213, 188, 20144), (56214, 188, 20215), (56215, 188, 20377), (56216, 188, 20385), (56217, 188, 20746), (56218, 188, 20793), (56219, 188, 21084), (56220, 188, 21165), (56221, 188, 22436), (56222, 188, 22865), (56223, 188, 23272), (56224, 188, 23663), (56225, 188, 24499), (56226, 188, 24690), (56227, 188, 24703), (56228, 188, 24705), (56229, 188, 25117), (56270, 189, 1023), (56271, 189, 1161), (56272, 189, 1258), (56273, 189, 1323), (56274, 189, 1348), (56275, 189, 1446), (56276, 189, 1862), (56277, 189, 1945), (56278, 189, 2220), (56279, 189, 2287), (56280, 189, 2448), (56281, 189, 3136), (56282, 189, 3314), (56283, 189, 3326), (56284, 189, 3578), (56285, 189, 3674), (56286, 189, 3869), (56287, 189, 3900), (56288, 189, 3915), (56289, 189, 4395), (56290, 189, 5039), (56291, 189, 5130), (56292, 189, 5270), (56293, 189, 5373), (56294, 189, 5465), (56295, 189, 5790), (56296, 189, 5800), (56297, 189, 5832), (56298, 189, 5855), (56299, 189, 5890), (56300, 189, 6116), (56301, 189, 6147), (56302, 189, 6153), (56303, 189, 6183), (56304, 189, 6200), (56305, 189, 6216), (56306, 189, 6307), (56307, 189, 6356), (56308, 189, 6388), (56309, 189, 6416), (56310, 189, 6550), (56311, 189, 6611), (56312, 189, 6732), (56313, 189, 6922), (56314, 189, 6945), (56315, 189, 7215), (56316, 189, 7252), (56317, 189, 7281), (56318, 189, 7418), (56319, 189, 7420), (56320, 189, 7455), (56321, 189, 7864), (56322, 189, 8149), (56323, 189, 8209), (56324, 189, 8240), (56325, 189, 8266), (56326, 189, 8296), (56327, 189, 8380), (56328, 189, 8699), (56329, 189, 8742), (56330, 189, 9086), (56331, 189, 9154), (56332, 189, 9238), (56333, 189, 9391), (56334, 189, 9450), (56335, 189, 9558), (56336, 189, 9890), (56337, 189, 9921), (56338, 189, 10115), (56339, 189, 10239), (56340, 189, 10416), (56341, 189, 10444), (56342, 189, 10453), (56343, 189, 10543), (56344, 189, 10581), (56345, 189, 10672), (56346, 189, 10784), (56347, 189, 10847), (56348, 189, 10902), (56349, 189, 11111), (56350, 189, 11396), (56351, 189, 11794), (56352, 189, 12002), (56353, 189, 12195), (56354, 189, 12546), (56355, 189, 13067), (56356, 189, 13203), (56357, 189, 13648), (56358, 189, 13776), (56359, 189, 13934), (56360, 189, 13986), (56361, 189, 13996), (56362, 189, 14358), (56363, 189, 14444), (56364, 189, 14824), (56365, 189, 15057), (56366, 189, 16099), (56367, 189, 16597), (56368, 189, 16607), (56369, 189, 17862), (56370, 189, 18251), (56371, 189, 18423), (56372, 189, 18570), (56373, 189, 18995), (56374, 189, 19115), (56375, 189, 19368), (56376, 189, 19673), (56377, 189, 19712), (56378, 189, 19899), (56379, 189, 20103), (56380, 189, 20169), (56381, 189, 20789), (56382, 189, 20793), (56383, 189, 21059), (56384, 189, 21199), (56385, 189, 21299), (56386, 189, 21395), (56387, 189, 21402), (56388, 189, 21648), (56389, 189, 22234), (56390, 189, 22335), (56391, 189, 22382), (56392, 189, 22402), (56393, 189, 22623), (56394, 189, 22790), (56395, 189, 22838), (56396, 189, 22874), (56397, 189, 22926), (56398, 189, 23123), (56399, 189, 23271), (56400, 189, 23311), (56401, 189, 23457), (56402, 189, 24027), (56403, 189, 24668), (56404, 189, 24781), (56405, 189, 24906), (56406, 189, 25013), (56407, 189, 25115), (56525, 190, 9462), (56526, 190, 16777), (56528, 191, 3210), (56529, 191, 3500), (56530, 191, 3596), (56531, 191, 4436), (56532, 191, 5111), (56533, 191, 5476), (56534, 191, 5556), (56535, 191, 8612), (56536, 191, 9328), (56537, 191, 9466), (56538, 191, 14082), (56539, 191, 21504), (56540, 191, 21755), (56541, 191, 22111), (56542, 191, 22657), (56543, 192, 977), (56544, 192, 2109), (56545, 192, 3057), (56546, 192, 3148), (56547, 192, 3743), (56548, 192, 4082), (56549, 192, 4332), (56550, 192, 4417), (56551, 192, 4494), (56552, 192, 4593), (56553, 192, 5028), (56554, 192, 5104), (56555, 192, 5301), (56556, 192, 5818), (56557, 192, 6232), (56558, 192, 6672), (56559, 192, 6745), (56560, 192, 6782), (56561, 192, 6862), (56562, 192, 6895), (56563, 192, 7051), (56564, 192, 7191), (56565, 192, 7409), (56566, 192, 7669), (56567, 192, 7994), (56568, 192, 8176), (56569, 192, 8377), (56570, 192, 8445), (56571, 192, 8540), (56572, 192, 9266), (56573, 192, 9768), (56574, 192, 9953), (56575, 192, 10027), (56576, 192, 10042), (56577, 192, 10228), (56578, 192, 10369), (56579, 192, 10683), (56580, 192, 10978), (56581, 192, 11242), (56582, 192, 11318), (56583, 192, 11508), (56584, 192, 12295), (56585, 192, 12914), (56586, 192, 13231), (56587, 192, 13465), (56588, 192, 13684), (56589, 192, 14180), (56590, 192, 14467), (56591, 192, 14629), (56592, 192, 14783), (56593, 192, 14865), (56594, 192, 14888), (56595, 192, 15628), (56596, 192, 15758), (56597, 192, 16453), (56598, 192, 17303), (56599, 192, 17353), (56600, 192, 17771), (56601, 192, 18283), (56602, 192, 18427), (56603, 192, 18509), (56604, 192, 18870), (56605, 192, 19136), (56606, 192, 20040), (56607, 192, 20152), (56608, 192, 20215), (56609, 192, 20218), (56610, 192, 20377), (56611, 192, 20378), (56612, 192, 20385), (56613, 192, 20730), (56614, 192, 22383), (56615, 192, 22817), (56616, 192, 22998), (56617, 192, 23070), (56618, 192, 23124), (56619, 192, 23172), (56620, 192, 23182), (56621, 192, 23663), (56622, 192, 23853), (56623, 192, 24644), (56624, 192, 24703), (56625, 192, 24965), (56626, 192, 25117), (56670, 193, 104), (56671, 193, 134), (56672, 193, 177), (56673, 193, 185), (56674, 193, 297), (56675, 193, 479), (56676, 193, 496), (56677, 193, 543), (56678, 193, 555), (56679, 193, 685), (56680, 193, 875), (56681, 193, 931), (56682, 193, 1089), (56683, 193, 1097), (56684, 193, 1112), (56685, 193, 1116), (56686, 193, 1146), (56687, 193, 1340), (56688, 193, 1398), (56689, 193, 1402), (56690, 193, 1436), (56691, 193, 1448), (56692, 193, 1466), (56693, 193, 1801), (56694, 193, 1843), (56695, 193, 1968), (56696, 193, 2029), (56697, 193, 2189), (56698, 193, 2195), (56699, 193, 2217), (56700, 193, 2237), (56701, 193, 2253), (56702, 193, 2278), (56703, 193, 2283), (56704, 193, 2289), (56705, 193, 2290), (56706, 193, 2295), (56707, 193, 2352), (56708, 193, 2381), (56709, 193, 2461), (56710, 193, 2489), (56711, 193, 2559), (56712, 193, 2645), (56713, 193, 2647), (56714, 193, 2708), (56715, 193, 2711), (56716, 193, 2803), (56717, 193, 2910), (56718, 193, 2950), (56719, 193, 3084), (56720, 193, 3094), (56721, 193, 3104), (56722, 193, 3113), (56723, 193, 3249), (56724, 193, 3451), (56725, 193, 3509), (56726, 193, 3594), (56727, 193, 3659), (56728, 193, 3668), (56729, 193, 3774), (56730, 193, 3830), (56731, 193, 3915), (56732, 193, 3922), (56733, 193, 3932), (56734, 193, 3958), (56735, 193, 3961), (56736, 193, 4006), (56737, 193, 4019), (56738, 193, 4064), (56739, 193, 4091), (56740, 193, 4092), (56741, 193, 4170), (56742, 193, 4280), (56743, 193, 4283), (56744, 193, 4342), (56745, 193, 4404), (56746, 193, 4509), (56747, 193, 4581), (56748, 193, 4632), (56749, 193, 4646), (56750, 193, 4654), (56751, 193, 4685), (56752, 193, 4768), (56753, 193, 4773), (56754, 193, 4819), (56755, 193, 4874), (56756, 193, 4926), (56757, 193, 4972), (56758, 193, 4987), (56759, 193, 4995), (56760, 193, 5037), (56761, 193, 5102), (56762, 193, 5124), (56763, 193, 5208), (56764, 193, 5220), (56765, 193, 5338), (56766, 193, 5515), (56767, 193, 5635), (56768, 193, 5734), (56769, 193, 5755), (56770, 193, 5854), (56771, 193, 5994), (56772, 193, 6000), (56773, 193, 6267), (56774, 193, 6315), (56775, 193, 6396), (56776, 193, 6447), (56777, 193, 6465), (56778, 193, 6473), (56779, 193, 6568), (56780, 193, 6728), (56781, 193, 6744), (56782, 193, 6780), (56783, 193, 6949), (56784, 193, 7134), (56785, 193, 7223), (56786, 193, 7292), (56787, 193, 7399), (56788, 193, 7419), (56789, 193, 7440), (56790, 193, 7486), (56791, 193, 7513), (56792, 193, 7552), (56793, 193, 7682), (56794, 193, 7783), (56795, 193, 7792), (56796, 193, 7826), (56797, 193, 7875), (56798, 193, 7949), (56799, 193, 7958), (56800, 193, 8203), (56801, 193, 8232), (56802, 193, 8303), (56803, 193, 8429), (56804, 193, 8452), (56805, 193, 8698), (56806, 193, 9154), (56807, 193, 9254), (56808, 193, 9328), (56809, 193, 9332), (56810, 193, 9407), (56811, 193, 9496), (56812, 193, 9753), (56813, 193, 9813), (56814, 193, 9990), (56815, 193, 10322), (56816, 193, 10446), (56817, 193, 10526), (56818, 193, 10544), (56819, 193, 10548), (56820, 193, 10627), (56821, 193, 10687), (56822, 193, 11196), (56823, 193, 11216), (56824, 193, 11384), (56825, 193, 11426), (56826, 193, 11626), (56827, 193, 11991), (56828, 193, 12782), (56829, 193, 13118), (56830, 193, 13165), (56831, 193, 13362), (56832, 193, 13644), (56833, 193, 13830), (56834, 193, 14295), (56835, 193, 14501), (56836, 193, 15076), (56837, 193, 15095), (56838, 193, 15105), (56839, 193, 15197), (56840, 193, 15348), (56841, 193, 15558), (56842, 193, 16343), (56843, 193, 17289), (56844, 193, 17305), (56845, 193, 17333), (56846, 193, 17971), (56847, 193, 18222), (56848, 193, 18369), (56849, 193, 18465), (56850, 193, 19160), (56851, 193, 19351), (56852, 193, 19466), (56853, 193, 19565), (56854, 193, 19625), (56855, 193, 19646), (56856, 193, 19692), (56857, 193, 19732), (56858, 193, 20370), (56859, 193, 20613), (56860, 193, 20797), (56861, 193, 20824), (56862, 193, 20845), (56863, 193, 20900), (56864, 193, 21056), (56865, 193, 21221), (56866, 193, 21343), (56867, 193, 21383), (56868, 193, 21401), (56869, 193, 21509), (56870, 193, 21677), (56871, 193, 21969), (56872, 193, 21984), (56873, 193, 22001), (56874, 193, 22124), (56875, 193, 22163), (56876, 193, 22393), (56877, 193, 22400), (56878, 193, 22523), (56879, 193, 22611), (56880, 193, 22662), (56881, 193, 22777), (56882, 193, 22859), (56883, 193, 22901), (56884, 193, 22928), (56885, 193, 23040), (56886, 193, 23072), (56887, 193, 23159), (56888, 193, 23375), (56889, 193, 23639), (56890, 193, 23816), (56891, 193, 23938), (56892, 193, 23959), (56893, 193, 24243), (56894, 193, 24256), (56895, 193, 25014), (56896, 193, 25017), (56897, 193, 25040), (56925, 194, 2), (56926, 194, 13), (56927, 194, 87), (56928, 194, 122), (56929, 194, 173), (56930, 194, 244), (56931, 194, 406), (56932, 194, 511), (56933, 194, 553), (56934, 194, 629), (56935, 194, 720), (56936, 194, 728), (56937, 194, 866), (56938, 194, 907), (56939, 194, 908), (56940, 194, 997), (56941, 194, 1033), (56942, 194, 1078), (56943, 194, 1259), (56944, 194, 1284), (56945, 194, 1346), (56946, 194, 1425), (56947, 194, 1487), (56948, 194, 1493), (56949, 194, 1562), (56950, 194, 1687), (56951, 194, 1724), (56952, 194, 1780), (56953, 194, 1797), (56954, 194, 1828), (56955, 194, 1836), (56956, 194, 1885), (56957, 194, 1921), (56958, 194, 1927), (56959, 194, 2201), (56960, 194, 2736), (56961, 194, 2825), (56962, 194, 3053), (56963, 194, 3169), (56964, 194, 3433), (56965, 194, 3438), (56966, 194, 3449), (56967, 194, 3663), (56968, 194, 3979), (56969, 194, 4162), (56970, 194, 4186), (56971, 194, 4226), (56972, 194, 4270), (56973, 194, 4288), (56974, 194, 4294), (56975, 194, 4330), (56976, 194, 4435), (56977, 194, 4622), (56978, 194, 5257), (56979, 194, 5284), (56980, 194, 5338), (56981, 194, 6050), (56982, 194, 6066), (56983, 194, 6134), (56984, 194, 6137), (56985, 194, 6212), (56986, 194, 6300), (56987, 194, 6356), (56988, 194, 6646), (56989, 194, 6668), (56990, 194, 6671), (56991, 194, 7010), (56992, 194, 7040), (56993, 194, 7103), (56994, 194, 7128), (56995, 194, 7351), (56996, 194, 7509), (56997, 194, 8559), (56998, 194, 9588), (56999, 194, 10058), (57000, 194, 10704), (57001, 194, 10833), (57002, 194, 11968), (57003, 194, 12525), (57004, 194, 12605), (57005, 194, 13579), (57006, 194, 13911), (57007, 194, 14360), (57008, 194, 15652), (57009, 194, 18309), (57010, 194, 18616), (57011, 194, 19022), (57012, 194, 19328), (57013, 194, 19526), (57014, 194, 20102), (57015, 194, 20150), (57016, 194, 20777), (57017, 194, 22293), (57018, 194, 22690), (57019, 194, 23146), (57020, 194, 25083), (57052, 195, 855), (57053, 195, 1394), (57054, 195, 2659), (57055, 195, 3688), (57056, 195, 3829), (57057, 195, 4076), (57058, 195, 4221), (57059, 195, 4582), (57060, 195, 6642), (57061, 195, 7330), (57062, 195, 7473), (57063, 195, 8553), (57064, 195, 8572), (57065, 195, 9231), (57066, 195, 10043), (57067, 195, 10112), (57068, 195, 10560), (57069, 195, 10780), (57070, 195, 11193), (57071, 195, 11283), (57072, 195, 14052), (57073, 195, 14066), (57074, 195, 14285), (57075, 195, 14798), (57076, 195, 14935), (57077, 195, 15137), (57078, 195, 16473), (57079, 195, 17208), (57080, 195, 18258), (57081, 195, 18847), (57082, 195, 18909), (57083, 195, 19063), (57084, 195, 20904), (57085, 195, 21885), (57086, 195, 22870), (57087, 195, 23738), (57088, 195, 23880), (57089, 195, 23940), (57090, 195, 23948), (57091, 195, 24061), (57092, 195, 24247), (57093, 195, 24688), (57094, 195, 24896), (57115, 196, 101), (57116, 196, 110), (57117, 196, 128), (57118, 196, 292), (57119, 196, 508), (57120, 196, 539), (57121, 196, 542), (57122, 196, 548), (57123, 196, 656), (57124, 196, 692), (57125, 196, 803), (57126, 196, 978), (57127, 196, 999), (57128, 196, 1379), (57129, 196, 1621), (57130, 196, 1814); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (57131, 196, 1837), (57132, 196, 1884), (57133, 196, 2027), (57134, 196, 2033), (57135, 196, 2098), (57136, 196, 2231), (57137, 196, 2261), (57138, 196, 2282), (57139, 196, 2406), (57140, 196, 2417), (57141, 196, 2492), (57142, 196, 2657), (57143, 196, 2693), (57144, 196, 2798), (57145, 196, 2921), (57146, 196, 2950), (57147, 196, 3064), (57148, 196, 3178), (57149, 196, 3217), (57150, 196, 3218), (57151, 196, 3233), (57152, 196, 3378), (57153, 196, 3389), (57154, 196, 3452), (57155, 196, 3511), (57156, 196, 3512), (57157, 196, 3636), (57158, 196, 3647), (57159, 196, 3801), (57160, 196, 4035), (57161, 196, 4118), (57162, 196, 4139), (57163, 196, 4175), (57164, 196, 4352), (57165, 196, 4636), (57166, 196, 4728), (57167, 196, 4733), (57168, 196, 4746), (57169, 196, 4833), (57170, 196, 4849), (57171, 196, 4870), (57172, 196, 4953), (57173, 196, 5027), (57174, 196, 5142), (57175, 196, 5155), (57176, 196, 5162), (57177, 196, 5168), (57178, 196, 5175), (57179, 196, 5183), (57180, 196, 5188), (57181, 196, 5397), (57182, 196, 5468), (57183, 196, 5613), (57184, 196, 5681), (57185, 196, 5765), (57186, 196, 5863), (57187, 196, 6266), (57188, 196, 6352), (57189, 196, 6674), (57190, 196, 7037), (57191, 196, 7139), (57192, 196, 7211), (57193, 196, 7673), (57194, 196, 7915), (57195, 196, 8026), (57196, 196, 8048), (57197, 196, 8102), (57198, 196, 8234), (57199, 196, 8795), (57200, 196, 9009), (57201, 196, 10237), (57202, 196, 10322), (57203, 196, 10406), (57204, 196, 10693), (57205, 196, 10850), (57206, 196, 11359), (57207, 196, 11598), (57208, 196, 11654), (57209, 196, 11916), (57210, 196, 11956), (57211, 196, 11959), (57212, 196, 12260), (57213, 196, 12752), (57214, 196, 13248), (57215, 196, 13357), (57216, 196, 13476), (57217, 196, 13619), (57218, 196, 14409), (57219, 196, 14902), (57220, 196, 15529), (57221, 196, 15633), (57222, 196, 16672), (57223, 196, 16871), (57224, 196, 17423), (57225, 196, 17646), (57226, 196, 18722), (57227, 196, 18982), (57228, 196, 20109), (57229, 196, 20266), (57230, 196, 20338), (57231, 196, 20453), (57232, 196, 20524), (57233, 196, 20695), (57234, 196, 21344), (57235, 196, 21690), (57236, 196, 21824), (57237, 196, 21993), (57238, 196, 22290), (57239, 196, 22296), (57240, 196, 22334), (57241, 196, 22819), (57242, 196, 22846), (57243, 196, 22927), (57244, 196, 23011), (57245, 196, 23139), (57246, 196, 23228), (57247, 196, 23324), (57248, 196, 23391), (57249, 196, 23632), (57250, 196, 23657), (57251, 196, 23998), (57252, 196, 24033), (57253, 196, 24034), (57254, 196, 24126), (57255, 196, 24660), (57256, 196, 24701), (57257, 196, 25015), (57258, 196, 25018), (57370, 197, 8), (57371, 197, 83), (57372, 197, 174), (57373, 197, 227), (57374, 197, 234), (57375, 197, 464), (57376, 197, 480), (57377, 197, 697), (57378, 197, 701), (57379, 197, 797), (57380, 197, 935), (57381, 197, 985), (57382, 197, 1306), (57383, 197, 1358), (57384, 197, 1484), (57385, 197, 1520), (57386, 197, 1742), (57387, 197, 1860), (57388, 197, 1950), (57389, 197, 2005), (57390, 197, 2123), (57391, 197, 2303), (57392, 197, 2315), (57393, 197, 2367), (57394, 197, 2437), (57395, 197, 2457), (57396, 197, 2479), (57397, 197, 2537), (57398, 197, 2637), (57399, 197, 2678), (57400, 197, 2825), (57401, 197, 2898), (57402, 197, 2933), (57403, 197, 2975), (57404, 197, 3183), (57405, 197, 3271), (57406, 197, 3646), (57407, 197, 3905), (57408, 197, 3967), (57409, 197, 4081), (57410, 197, 4123), (57411, 197, 4288), (57412, 197, 4344), (57413, 197, 4351), (57414, 197, 4505), (57415, 197, 4578), (57416, 197, 4579), (57417, 197, 4655), (57418, 197, 4749), (57419, 197, 4859), (57420, 197, 4993), (57421, 197, 5069), (57422, 197, 5187), (57423, 197, 5272), (57424, 197, 5290), (57425, 197, 5369), (57426, 197, 5380), (57427, 197, 5685), (57428, 197, 5996), (57429, 197, 6137), (57430, 197, 6241), (57431, 197, 6710), (57432, 197, 6903), (57433, 197, 6948), (57434, 197, 7076), (57435, 197, 7294), (57436, 197, 7408), (57437, 197, 8055), (57438, 197, 8089), (57439, 197, 8422), (57440, 197, 8500), (57441, 197, 8515), (57442, 197, 8616), (57443, 197, 9149), (57444, 197, 11063), (57445, 197, 11163), (57446, 197, 11447), (57447, 197, 11559), (57448, 197, 11843), (57449, 197, 12667), (57450, 197, 12762), (57451, 197, 13545), (57452, 197, 14029), (57453, 197, 15077), (57454, 197, 15434), (57455, 197, 16355), (57456, 197, 17540), (57457, 197, 18112), (57458, 197, 19980), (57459, 197, 20395), (57460, 197, 21309), (57461, 197, 21383), (57462, 197, 25083), (57497, 198, 173), (57498, 198, 1157), (57499, 198, 1198), (57500, 198, 1201), (57501, 198, 1266), (57502, 198, 1291), (57503, 198, 1368), (57504, 198, 1463), (57505, 198, 1530), (57506, 198, 1579), (57507, 198, 1802), (57508, 198, 2024), (57509, 198, 2094), (57510, 198, 2148), (57511, 198, 2175), (57512, 198, 2306), (57513, 198, 2452), (57514, 198, 2472), (57515, 198, 2519), (57516, 198, 2908), (57517, 198, 2982), (57518, 198, 3123), (57519, 198, 3181), (57520, 198, 3299), (57521, 198, 3302), (57522, 198, 3369), (57523, 198, 4018), (57524, 198, 4045), (57525, 198, 4105), (57526, 198, 4138), (57527, 198, 4153), (57528, 198, 4368), (57529, 198, 4375), (57530, 198, 4506), (57531, 198, 4580), (57532, 198, 4633), (57533, 198, 4863), (57534, 198, 4948), (57535, 198, 4996), (57536, 198, 5099), (57537, 198, 5244), (57538, 198, 5371), (57539, 198, 5688), (57540, 198, 6021), (57541, 198, 6098), (57542, 198, 6171), (57543, 198, 6955), (57544, 198, 7094), (57545, 198, 7138), (57546, 198, 7155), (57547, 198, 7492), (57548, 198, 7584), (57549, 198, 7811), (57550, 198, 8092), (57551, 198, 8314), (57552, 198, 8718), (57553, 198, 8722), (57554, 198, 8811), (57555, 198, 8998), (57556, 198, 9051), (57557, 198, 9112), (57558, 198, 9135), (57559, 198, 9863), (57560, 198, 10200), (57561, 198, 11303), (57562, 198, 11500), (57563, 198, 11530), (57564, 198, 12071), (57565, 198, 12539), (57566, 198, 12989), (57567, 198, 13864), (57568, 198, 13867), (57569, 198, 13990), (57570, 198, 14139), (57571, 198, 14152), (57572, 198, 14209), (57573, 198, 14475), (57574, 198, 14499), (57575, 198, 14574), (57576, 198, 15546), (57577, 198, 16194), (57578, 198, 17260), (57579, 198, 17750), (57580, 198, 17853), (57581, 198, 18233), (57582, 198, 18267), (57583, 198, 18434), (57584, 198, 18589), (57585, 198, 18597), (57586, 198, 18747), (57587, 198, 18771), (57588, 198, 18880), (57589, 198, 18999), (57590, 198, 19194), (57591, 198, 20065), (57592, 198, 21166), (57593, 198, 21432), (57594, 198, 21485), (57595, 198, 22153), (57596, 198, 22314), (57597, 198, 22497), (57598, 198, 22939), (57599, 198, 25049), (57600, 198, 25050), (57601, 198, 25062), (57624, 199, 571), (57625, 199, 644), (57626, 199, 665), (57627, 199, 989), (57628, 199, 1562), (57629, 199, 1951), (57630, 199, 2355), (57631, 199, 2626), (57632, 199, 3273), (57633, 199, 3287), (57634, 199, 3602), (57635, 199, 3703), (57636, 199, 3733), (57637, 199, 3745), (57638, 199, 3950), (57639, 199, 4096), (57640, 199, 4248), (57641, 199, 4299), (57642, 199, 4563), (57643, 199, 4617), (57644, 199, 4827), (57645, 199, 5156), (57646, 199, 5520), (57647, 199, 5894), (57648, 199, 5971), (57649, 199, 6099), (57650, 199, 6108), (57651, 199, 6209), (57652, 199, 6317), (57653, 199, 6942), (57654, 199, 7126), (57655, 199, 7136), (57656, 199, 7334), (57657, 199, 7495), (57658, 199, 7923), (57659, 199, 8164), (57660, 199, 8178), (57661, 199, 8267), (57662, 199, 8330), (57663, 199, 8719), (57664, 199, 8836), (57665, 199, 8870), (57666, 199, 8980), (57667, 199, 9651), (57668, 199, 9772), (57669, 199, 10657), (57670, 199, 10704), (57671, 199, 10844), (57672, 199, 11043), (57673, 199, 11091), (57674, 199, 11465), (57675, 199, 11644), (57676, 199, 12485), (57677, 199, 12705), (57678, 199, 13088), (57679, 199, 13095), (57680, 199, 13175), (57681, 199, 13927), (57682, 199, 13998), (57683, 199, 14270), (57684, 199, 14544), (57685, 199, 14610), (57686, 199, 14808), (57687, 199, 14961), (57688, 199, 15244), (57689, 199, 16299), (57690, 199, 16408), (57691, 199, 16466), (57692, 199, 17043), (57693, 199, 17364), (57694, 199, 17720), (57695, 199, 17925), (57696, 199, 18137), (57697, 199, 18662), (57698, 199, 19018), (57699, 199, 19789), (57700, 199, 19807), (57701, 199, 20700), (57702, 199, 21362), (57703, 199, 21657), (57704, 199, 22741), (57705, 199, 25116), (57706, 199, 25133), (57751, 200, 173), (57752, 200, 403), (57753, 200, 472), (57754, 200, 571), (57755, 200, 775), (57756, 200, 872), (57757, 200, 1177), (57758, 200, 1451), (57759, 200, 1501), (57760, 200, 1530), (57761, 200, 1578), (57762, 200, 1650), (57763, 200, 1750), (57764, 200, 1873), (57765, 200, 1962), (57766, 200, 2018), (57767, 200, 2076), (57768, 200, 2093), (57769, 200, 2103), (57770, 200, 2157), (57771, 200, 2296), (57772, 200, 2393), (57773, 200, 2419), (57774, 200, 2535), (57775, 200, 2540), (57776, 200, 2597), (57777, 200, 2691), (57778, 200, 2692), (57779, 200, 2827), (57780, 200, 2863), (57781, 200, 2904), (57782, 200, 2946), (57783, 200, 3129), (57784, 200, 3172), (57785, 200, 3177), (57786, 200, 3269), (57787, 200, 3337), (57788, 200, 3366), (57789, 200, 3424), (57790, 200, 3489), (57791, 200, 3547), (57792, 200, 3576), (57793, 200, 3588), (57794, 200, 3598), (57795, 200, 3632), (57796, 200, 3714), (57797, 200, 3720), (57798, 200, 3793), (57799, 200, 3807), (57800, 200, 3846), (57801, 200, 3881), (57802, 200, 4026), (57803, 200, 4186), (57804, 200, 4193), (57805, 200, 4270), (57806, 200, 4309), (57807, 200, 4383), (57808, 200, 4483), (57809, 200, 4896), (57810, 200, 4967), (57811, 200, 5059), (57812, 200, 5147), (57813, 200, 5150), (57814, 200, 5152), (57815, 200, 5338), (57816, 200, 5649), (57817, 200, 5666), (57818, 200, 5974), (57819, 200, 6028), (57820, 200, 6107), (57821, 200, 6108), (57822, 200, 6168), (57823, 200, 6188), (57824, 200, 6201), (57825, 200, 6243), (57826, 200, 6356), (57827, 200, 6387), (57828, 200, 6444), (57829, 200, 6520), (57830, 200, 6543), (57831, 200, 6560), (57832, 200, 6623), (57833, 200, 6702), (57834, 200, 6735), (57835, 200, 6785), (57836, 200, 6816), (57837, 200, 6842), (57838, 200, 6886), (57839, 200, 6926), (57840, 200, 7258), (57841, 200, 7259), (57842, 200, 7284), (57843, 200, 7394), (57844, 200, 7620), (57845, 200, 7624), (57846, 200, 7627), (57847, 200, 7629), (57848, 200, 7699), (57849, 200, 7705), (57850, 200, 7726), (57851, 200, 7926), (57852, 200, 8072), (57853, 200, 8164), (57854, 200, 8267), (57855, 200, 8308), (57856, 200, 8326), (57857, 200, 8441), (57858, 200, 8494), (57859, 200, 8683), (57860, 200, 8735), (57861, 200, 8793), (57862, 200, 8840), (57863, 200, 9026), (57864, 200, 9048), (57865, 200, 9051), (57866, 200, 9158), (57867, 200, 9178), (57868, 200, 9263), (57869, 200, 9308), (57870, 200, 9386), (57871, 200, 9522), (57872, 200, 9542), (57873, 200, 9551), (57874, 200, 9552), (57875, 200, 9818), (57876, 200, 9884), (57877, 200, 9962), (57878, 200, 10002), (57879, 200, 10118), (57880, 200, 10260), (57881, 200, 10367), (57882, 200, 10376), (57883, 200, 10454), (57884, 200, 10488), (57885, 200, 10914), (57886, 200, 10930), (57887, 200, 10965), (57888, 200, 11026), (57889, 200, 11039), (57890, 200, 11172), (57891, 200, 11205), (57892, 200, 11231), (57893, 200, 11277), (57894, 200, 11348), (57895, 200, 11364), (57896, 200, 11495), (57897, 200, 11497), (57898, 200, 11498), (57899, 200, 11576), (57900, 200, 11641), (57901, 200, 11649), (57902, 200, 11651), (57903, 200, 11714), (57904, 200, 11795), (57905, 200, 11808), (57906, 200, 11840), (57907, 200, 11843), (57908, 200, 11876), (57909, 200, 12141), (57910, 200, 12242), (57911, 200, 12453), (57912, 200, 12571), (57913, 200, 12589), (57914, 200, 12995), (57915, 200, 13026), (57916, 200, 13058), (57917, 200, 13088), (57918, 200, 13166), (57919, 200, 13353), (57920, 200, 13461), (57921, 200, 13579), (57922, 200, 13831), (57923, 200, 13859), (57924, 200, 13911), (57925, 200, 14371), (57926, 200, 15108), (57927, 200, 15137), (57928, 200, 15231), (57929, 200, 15269), (57930, 200, 15323), (57931, 200, 15334), (57932, 200, 15562), (57933, 200, 15577), (57934, 200, 15641), (57935, 200, 15807), (57936, 200, 16010), (57937, 200, 16135), (57938, 200, 16537), (57939, 200, 16560), (57940, 200, 16562), (57941, 200, 16594), (57942, 200, 16945), (57943, 200, 16966), (57944, 200, 17364), (57945, 200, 17401), (57946, 200, 17665), (57947, 200, 18051), (57948, 200, 18136), (57949, 200, 18288), (57950, 200, 18450), (57951, 200, 18520), (57952, 200, 18631), (57953, 200, 18672), (57954, 200, 18703), (57955, 200, 18727), (57956, 200, 18959), (57957, 200, 19027), (57958, 200, 19081), (57959, 200, 19137), (57960, 200, 19147), (57961, 200, 19156), (57962, 200, 19218), (57963, 200, 19318), (57964, 200, 19324), (57965, 200, 19337), (57966, 200, 19561), (57967, 200, 19613), (57968, 200, 19689), (57969, 200, 19760), (57970, 200, 19983), (57971, 200, 19995), (57972, 200, 20102), (57973, 200, 20369), (57974, 200, 20498), (57975, 200, 20547), (57976, 200, 20709), (57977, 200, 20719), (57978, 200, 20783), (57979, 200, 21147), (57980, 200, 21267), (57981, 200, 21362), (57982, 200, 21370), (57983, 200, 21375), (57984, 200, 22239), (57985, 200, 22351), (57986, 200, 22361), (57987, 200, 22442), (57988, 200, 22669), (57989, 200, 22951), (57990, 200, 22964), (57991, 200, 23396), (57992, 200, 23414), (57993, 200, 23423), (57994, 200, 23744), (57995, 200, 23932), (57996, 200, 24138), (57997, 200, 24211), (57998, 200, 24449), (57999, 200, 24813), (58000, 200, 25042), (58001, 200, 25103), (58002, 200, 25133), (58003, 200, 25198), (58006, 201, 1), (58007, 201, 125), (58008, 201, 239), (58009, 201, 253), (58010, 201, 321), (58011, 201, 343), (58012, 201, 457), (58013, 201, 705), (58014, 201, 767), (58015, 201, 779), (58016, 201, 923), (58017, 201, 1025), (58018, 201, 1198), (58019, 201, 1318), (58020, 201, 1355), (58021, 201, 1419), (58022, 201, 1424), (58023, 201, 1450), (58024, 201, 1574), (58025, 201, 1906), (58026, 201, 1958), (58027, 201, 2560), (58028, 201, 2743), (58029, 201, 2831), (58030, 201, 2855), (58031, 201, 3144), (58032, 201, 3183), (58033, 201, 3307), (58034, 201, 3349), (58035, 201, 3503), (58036, 201, 3605), (58037, 201, 3633), (58038, 201, 3635), (58039, 201, 3821), (58040, 201, 3874), (58041, 201, 3939), (58042, 201, 4024), (58043, 201, 4077), (58044, 201, 4275), (58045, 201, 4348), (58046, 201, 4477), (58047, 201, 4541), (58048, 201, 4568), (58049, 201, 4656), (58050, 201, 4690), (58051, 201, 4704), (58052, 201, 4847), (58053, 201, 4881), (58054, 201, 4918), (58055, 201, 5011), (58056, 201, 5102), (58057, 201, 5208), (58058, 201, 5410), (58059, 201, 5494), (58060, 201, 5565), (58061, 201, 5955), (58062, 201, 6256), (58063, 201, 6869), (58064, 201, 6897), (58065, 201, 6925), (58066, 201, 6982), (58067, 201, 7105), (58068, 201, 7160), (58069, 201, 7183), (58070, 201, 7213), (58071, 201, 7226), (58072, 201, 7333), (58073, 201, 7430), (58074, 201, 7641), (58075, 201, 8565), (58076, 201, 8893), (58077, 201, 9000), (58078, 201, 9095), (58079, 201, 9179), (58080, 201, 9237), (58081, 201, 9808), (58082, 201, 9898), (58083, 201, 10277), (58084, 201, 10665), (58085, 201, 10923), (58086, 201, 11174), (58087, 201, 11342), (58088, 201, 11351), (58089, 201, 11358), (58090, 201, 11410), (58091, 201, 11556), (58092, 201, 11860), (58093, 201, 11948), (58094, 201, 12196), (58095, 201, 12199), (58096, 201, 12297), (58097, 201, 12362), (58098, 201, 12438), (58099, 201, 12769), (58100, 201, 12770), (58101, 201, 12874), (58102, 201, 13701), (58103, 201, 14029), (58104, 201, 15132), (58105, 201, 15940), (58106, 201, 16955), (58107, 201, 17081), (58108, 201, 17532), (58109, 201, 17928), (58110, 201, 18393), (58111, 201, 18617), (58112, 201, 20554), (58113, 201, 20639), (58114, 201, 20736), (58115, 201, 20754), (58116, 201, 21192), (58117, 201, 21255), (58118, 201, 21415), (58119, 201, 21695), (58120, 201, 21750), (58121, 201, 21938), (58122, 201, 22069), (58123, 201, 22090), (58124, 201, 22482), (58125, 201, 22754), (58126, 201, 22871), (58127, 201, 22881), (58128, 201, 22944), (58129, 201, 23217), (58130, 201, 23768), (58131, 201, 24048), (58132, 201, 24894), (58133, 201, 25055), (58134, 201, 25099), (58261, 202, 101), (58262, 202, 128), (58263, 202, 159), (58264, 202, 243), (58265, 202, 292), (58266, 202, 508), (58267, 202, 539), (58268, 202, 656), (58269, 202, 803), (58270, 202, 1401), (58271, 202, 1482), (58272, 202, 1483), (58273, 202, 1572), (58274, 202, 1884), (58275, 202, 1923), (58276, 202, 2027), (58277, 202, 2433), (58278, 202, 2693), (58279, 202, 2709), (58280, 202, 2813), (58281, 202, 2950), (58282, 202, 3052), (58283, 202, 3178), (58284, 202, 3452), (58285, 202, 3606), (58286, 202, 3932), (58287, 202, 4035), (58288, 202, 4037), (58289, 202, 4175), (58290, 202, 4728), (58291, 202, 4849), (58292, 202, 4870), (58293, 202, 4937), (58294, 202, 5027), (58295, 202, 5162), (58296, 202, 5175), (58297, 202, 5468), (58298, 202, 5874), (58299, 202, 6570), (58300, 202, 6674), (58301, 202, 6892), (58302, 202, 7915), (58303, 202, 8026), (58304, 202, 8754), (58305, 202, 9009), (58306, 202, 10693), (58307, 202, 10850), (58308, 202, 11194), (58309, 202, 11812), (58310, 202, 15080), (58311, 202, 15529), (58312, 202, 20109), (58313, 202, 20338), (58314, 202, 20524), (58315, 202, 20695), (58316, 202, 21382), (58317, 202, 21839), (58318, 202, 22846), (58319, 202, 23238), (58320, 202, 23324), (58321, 202, 23391), (58322, 202, 23632), (58323, 202, 24126), (58324, 202, 24701), (58325, 202, 25018), (58388, 203, 135), (58389, 203, 209), (58390, 203, 543), (58391, 203, 867), (58392, 203, 1422), (58393, 203, 1875), (58394, 203, 1897), (58395, 203, 1928), (58396, 203, 2647), (58397, 203, 2704), (58398, 203, 2760), (58399, 203, 3596), (58400, 203, 3677), (58401, 203, 3814), (58402, 203, 4476), (58403, 203, 4764), (58404, 203, 4855), (58405, 203, 4993), (58406, 203, 5262), (58407, 203, 5287), (58408, 203, 5873), (58409, 203, 6334), (58410, 203, 6761), (58411, 203, 7142), (58412, 203, 7198), (58413, 203, 7320), (58414, 203, 7353), (58415, 203, 7386), (58416, 203, 7592), (58417, 203, 7606), (58418, 203, 7837), (58419, 203, 8240), (58420, 203, 8650), (58421, 203, 9183), (58422, 203, 9569), (58423, 203, 9592), (58424, 203, 10733), (58425, 203, 11075), (58426, 203, 11173), (58427, 203, 11300), (58428, 203, 12026), (58429, 203, 12412), (58430, 203, 12780), (58431, 203, 12846), (58432, 203, 13183), (58433, 203, 14488), (58434, 203, 14824), (58435, 203, 14994), (58436, 203, 15730), (58437, 203, 15818), (58438, 203, 18082), (58439, 203, 18112), (58440, 203, 18617), (58441, 203, 18917), (58442, 203, 19675), (58443, 203, 19940), (58444, 203, 21023), (58445, 203, 21670), (58446, 203, 21755), (58447, 203, 21758), (58448, 203, 22797), (58451, 204, 11), (58452, 204, 21), (58453, 204, 37), (58454, 204, 91), (58455, 204, 100), (58456, 204, 107), (58457, 204, 168), (58458, 204, 186), (58459, 204, 188), (58460, 204, 276), (58461, 204, 299), (58462, 204, 365), (58463, 204, 398), (58464, 204, 418), (58465, 204, 460), (58466, 204, 526), (58467, 204, 544), (58468, 204, 613), (58469, 204, 664), (58470, 204, 735), (58471, 204, 763), (58472, 204, 791), (58473, 204, 811), (58474, 204, 888), (58475, 204, 963), (58476, 204, 1008), (58477, 204, 1028), (58478, 204, 1055), (58479, 204, 1089), (58480, 204, 1108), (58481, 204, 1125), (58482, 204, 1208), (58483, 204, 1209), (58484, 204, 1280), (58485, 204, 1326), (58486, 204, 1379), (58487, 204, 1498), (58488, 204, 1551), (58489, 204, 1564), (58490, 204, 1576), (58491, 204, 1590), (58492, 204, 1607), (58493, 204, 1618), (58494, 204, 1693), (58495, 204, 1694), (58496, 204, 1710), (58497, 204, 1858), (58498, 204, 1861), (58499, 204, 1872), (58500, 204, 2028), (58501, 204, 2101), (58502, 204, 2166), (58503, 204, 2230), (58504, 204, 2258), (58505, 204, 2314), (58506, 204, 2323), (58507, 204, 2623), (58508, 204, 2703), (58509, 204, 2771), (58510, 204, 2952), (58511, 204, 3074), (58512, 204, 3078), (58513, 204, 3146), (58514, 204, 3157), (58515, 204, 3271), (58516, 204, 3301), (58517, 204, 3350), (58518, 204, 3406), (58519, 204, 3453), (58520, 204, 3454), (58521, 204, 3593), (58522, 204, 3605), (58523, 204, 3685), (58524, 204, 3871), (58525, 204, 3872), (58526, 204, 3938), (58527, 204, 3940), (58528, 204, 3990), (58529, 204, 4024), (58530, 204, 4031), (58531, 204, 4051), (58532, 204, 4131), (58533, 204, 4217), (58534, 204, 4232), (58535, 204, 4313), (58536, 204, 4371), (58537, 204, 4385), (58538, 204, 4393), (58539, 204, 4419), (58540, 204, 4477), (58541, 204, 4560), (58542, 204, 4568), (58543, 204, 4592), (58544, 204, 4636), (58545, 204, 4656), (58546, 204, 4691), (58547, 204, 4882), (58548, 204, 4897), (58549, 204, 4968), (58550, 204, 4978), (58551, 204, 5076), (58552, 204, 5251), (58553, 204, 5327), (58554, 204, 5604), (58555, 204, 5871), (58556, 204, 5996), (58557, 204, 6125), (58558, 204, 6153), (58559, 204, 6256), (58560, 204, 6388), (58561, 204, 6407), (58562, 204, 6475), (58563, 204, 6550), (58564, 204, 6692), (58565, 204, 6893), (58566, 204, 6941), (58567, 204, 6994), (58568, 204, 7095), (58569, 204, 7098), (58570, 204, 7164), (58571, 204, 7188), (58572, 204, 7372), (58573, 204, 7446), (58574, 204, 7639), (58575, 204, 7897), (58576, 204, 8488), (58577, 204, 8547), (58578, 204, 8826), (58579, 204, 9179), (58580, 204, 9391), (58581, 204, 9496), (58582, 204, 10000), (58583, 204, 10057), (58584, 204, 10638), (58585, 204, 10663), (58586, 204, 10690), (58587, 204, 11252), (58588, 204, 11272), (58589, 204, 11396), (58590, 204, 11410), (58591, 204, 11552), (58592, 204, 11676), (58593, 204, 11902), (58594, 204, 11958), (58595, 204, 12196), (58596, 204, 12357), (58597, 204, 12612), (58598, 204, 12855), (58599, 204, 13179), (58600, 204, 13778), (58601, 204, 14072), (58602, 204, 14154), (58603, 204, 14303), (58604, 204, 14501), (58605, 204, 14780), (58606, 204, 15132), (58607, 204, 15338), (58608, 204, 15553), (58609, 204, 15732), (58610, 204, 16681), (58611, 204, 16721), (58612, 204, 17081), (58613, 204, 17536), (58614, 204, 17614), (58615, 204, 17864), (58616, 204, 17928), (58617, 204, 17964), (58618, 204, 18423), (58619, 204, 19466), (58620, 204, 19891), (58621, 204, 19899), (58622, 204, 20150), (58623, 204, 20187), (58624, 204, 20400), (58625, 204, 20532), (58626, 204, 20610), (58627, 204, 20617), (58628, 204, 20623), (58629, 204, 20837), (58630, 204, 21018), (58631, 204, 21199), (58632, 204, 21326), (58633, 204, 21683), (58634, 204, 21901), (58635, 204, 22081), (58636, 204, 22202), (58637, 204, 22389), (58638, 204, 22493), (58639, 204, 22777), (58640, 204, 22827), (58641, 204, 22871), (58642, 204, 22881), (58643, 204, 24048), (58644, 204, 24173), (58645, 204, 24688), (58646, 204, 25165), (58706, 205, 37), (58707, 205, 56), (58708, 205, 87), (58709, 205, 141), (58710, 205, 184), (58711, 205, 212), (58712, 205, 244), (58713, 205, 325), (58714, 205, 375), (58715, 205, 438), (58716, 205, 502), (58717, 205, 542), (58718, 205, 667), (58719, 205, 743), (58720, 205, 761), (58721, 205, 763), (58722, 205, 866), (58723, 205, 885), (58724, 205, 887), (58725, 205, 888), (58726, 205, 908), (58727, 205, 1076), (58728, 205, 1108), (58729, 205, 1130), (58730, 205, 1154), (58731, 205, 1164), (58732, 205, 1166), (58733, 205, 1212), (58734, 205, 1219), (58735, 205, 1259), (58736, 205, 1286), (58737, 205, 1293), (58738, 205, 1302), (58739, 205, 1357), (58740, 205, 1386), (58741, 205, 1424), (58742, 205, 1446), (58743, 205, 1509), (58744, 205, 1550), (58745, 205, 1573), (58746, 205, 1687), (58747, 205, 1726), (58748, 205, 1795), (58749, 205, 1862), (58750, 205, 2011), (58751, 205, 2157), (58752, 205, 2166), (58753, 205, 2214), (58754, 205, 2220), (58755, 205, 2269), (58756, 205, 2276), (58757, 205, 2311), (58758, 205, 2328), (58759, 205, 2334), (58760, 205, 2377), (58761, 205, 2404), (58762, 205, 2482), (58763, 205, 2505), (58764, 205, 2691), (58765, 205, 2701), (58766, 205, 2709), (58767, 205, 2725), (58768, 205, 2728), (58769, 205, 2765), (58770, 205, 2792), (58771, 205, 2852), (58772, 205, 2918), (58773, 205, 2919), (58774, 205, 2948), (58775, 205, 2954), (58776, 205, 3053), (58777, 205, 3099), (58778, 205, 3146), (58779, 205, 3193), (58780, 205, 3205), (58781, 205, 3217), (58782, 205, 3219), (58783, 205, 3264), (58784, 205, 3348), (58785, 205, 3443), (58786, 205, 3504), (58787, 205, 3578), (58788, 205, 3606), (58789, 205, 3629), (58790, 205, 3698), (58791, 205, 3794), (58792, 205, 3797), (58793, 205, 3864), (58794, 205, 3875), (58795, 205, 3960), (58796, 205, 3979), (58797, 205, 4041), (58798, 205, 4097), (58799, 205, 4126), (58800, 205, 4129), (58801, 205, 4139), (58802, 205, 4210), (58803, 205, 4270), (58804, 205, 4273), (58805, 205, 4315), (58806, 205, 4326), (58807, 205, 4330), (58808, 205, 4385), (58809, 205, 4389), (58810, 205, 4390), (58811, 205, 4393), (58812, 205, 4432), (58813, 205, 4459), (58814, 205, 4481), (58815, 205, 4543), (58816, 205, 4560), (58817, 205, 4575), (58818, 205, 4615), (58819, 205, 4616), (58820, 205, 4663), (58821, 205, 4742), (58822, 205, 4823), (58823, 205, 4852), (58824, 205, 5257), (58825, 205, 5282), (58826, 205, 5284), (58827, 205, 5358), (58828, 205, 5415), (58829, 205, 5545), (58830, 205, 5548), (58831, 205, 5560), (58832, 205, 5631), (58833, 205, 5684), (58834, 205, 5709), (58835, 205, 5800), (58836, 205, 5808), (58837, 205, 6077), (58838, 205, 6134), (58839, 205, 6149), (58840, 205, 6244), (58841, 205, 6356), (58842, 205, 6388), (58843, 205, 6408), (58844, 205, 6475), (58845, 205, 6651), (58846, 205, 6652), (58847, 205, 6668), (58848, 205, 6671), (58849, 205, 6685), (58850, 205, 6689), (58851, 205, 6690), (58852, 205, 6776), (58853, 205, 6789), (58854, 205, 7073), (58855, 205, 7095), (58856, 205, 7160), (58857, 205, 7252), (58858, 205, 7270), (58859, 205, 7438), (58860, 205, 7455), (58861, 205, 7509), (58862, 205, 7632), (58863, 205, 7671), (58864, 205, 7754), (58865, 205, 7881), (58866, 205, 8134), (58867, 205, 8152), (58868, 205, 8223), (58869, 205, 8280), (58870, 205, 8291), (58871, 205, 8410), (58872, 205, 8413), (58873, 205, 8466), (58874, 205, 8559), (58875, 205, 8598), (58876, 205, 8753), (58877, 205, 8803), (58878, 205, 8861), (58879, 205, 8942), (58880, 205, 9120), (58881, 205, 9268), (58882, 205, 9368), (58883, 205, 9517), (58884, 205, 9521), (58885, 205, 9549), (58886, 205, 9558), (58887, 205, 9632), (58888, 205, 9742), (58889, 205, 9913), (58890, 205, 10006), (58891, 205, 10083), (58892, 205, 10167), (58893, 205, 10397), (58894, 205, 10469), (58895, 205, 10491), (58896, 205, 10597), (58897, 205, 10690), (58898, 205, 10896), (58899, 205, 10902), (58900, 205, 11039), (58901, 205, 11187), (58902, 205, 11291), (58903, 205, 11382), (58904, 205, 11401), (58905, 205, 11796), (58906, 205, 11977), (58907, 205, 12018), (58908, 205, 12195), (58909, 205, 12206), (58910, 205, 12230), (58911, 205, 12353), (58912, 205, 12354), (58913, 205, 12525), (58914, 205, 12629), (58915, 205, 13011), (58916, 205, 13179), (58917, 205, 13262), (58918, 205, 13448), (58919, 205, 13526), (58920, 205, 13986), (58921, 205, 13996), (58922, 205, 14444), (58923, 205, 14597), (58924, 205, 14760), (58925, 205, 14847), (58926, 205, 14877), (58927, 205, 15018), (58928, 205, 15080), (58929, 205, 15423), (58930, 205, 16085), (58931, 205, 16423), (58932, 205, 16562), (58933, 205, 16580), (58934, 205, 16639), (58935, 205, 16716), (58936, 205, 16902), (58937, 205, 16921), (58938, 205, 16936), (58939, 205, 17151), (58940, 205, 18180), (58941, 205, 18404), (58942, 205, 18474), (58943, 205, 18497), (58944, 205, 18513), (58945, 205, 18563), (58946, 205, 18579), (58947, 205, 18818), (58948, 205, 18900), (58949, 205, 18941), (58950, 205, 19022), (58951, 205, 19033), (58952, 205, 19124), (58953, 205, 19126), (58954, 205, 19306), (58955, 205, 19328), (58956, 205, 19371), (58957, 205, 19526), (58958, 205, 19814), (58959, 205, 19845), (58960, 205, 20103), (58961, 205, 20150), (58962, 205, 20154), (58963, 205, 20617), (58964, 205, 20789), (58965, 205, 20823), (58966, 205, 20834), (58967, 205, 20858), (58968, 205, 21137), (58969, 205, 21144), (58970, 205, 21613), (58971, 205, 21634), (58972, 205, 21728), (58973, 205, 21751), (58974, 205, 21886), (58975, 205, 22223), (58976, 205, 22335), (58977, 205, 22388), (58978, 205, 22398), (58979, 205, 22413), (58980, 205, 22690), (58981, 205, 22865), (58982, 205, 23146), (58983, 205, 23694), (58984, 205, 24027), (58985, 205, 24067), (58986, 205, 24145), (58987, 205, 24175), (58988, 205, 24177), (58989, 205, 24674), (58990, 205, 24701), (58991, 205, 24906), (58992, 205, 25013), (58993, 205, 25096), (58994, 205, 25165), (58995, 205, 25212), (59217, 206, 104), (59218, 206, 177), (59219, 206, 268), (59220, 206, 297), (59221, 206, 402), (59222, 206, 496), (59223, 206, 555), (59224, 206, 633), (59225, 206, 809), (59226, 206, 875), (59227, 206, 931), (59228, 206, 1496), (59229, 206, 1681), (59230, 206, 1801), (59231, 206, 1968), (59232, 206, 2029), (59233, 206, 2134), (59234, 206, 2278), (59235, 206, 2289), (59236, 206, 2388), (59237, 206, 2489), (59238, 206, 2708), (59239, 206, 2803), (59240, 206, 3035), (59241, 206, 3249), (59242, 206, 3379), (59243, 206, 3422), (59244, 206, 3509), (59245, 206, 3588), (59246, 206, 3692), (59247, 206, 3756), (59248, 206, 3774), (59249, 206, 3932), (59250, 206, 4064), (59251, 206, 4167), (59252, 206, 4170), (59253, 206, 4242), (59254, 206, 4415), (59255, 206, 4509), (59256, 206, 4581), (59257, 206, 4685), (59258, 206, 4768), (59259, 206, 4972), (59260, 206, 4987), (59261, 206, 5037), (59262, 206, 5085), (59263, 206, 5208), (59264, 206, 5394), (59265, 206, 5407), (59266, 206, 5830), (59267, 206, 5836), (59268, 206, 6357), (59269, 206, 6451), (59270, 206, 6473), (59271, 206, 6544), (59272, 206, 6780), (59273, 206, 6949), (59274, 206, 7051), (59275, 206, 7104), (59276, 206, 7134), (59277, 206, 7448), (59278, 206, 7510), (59279, 206, 7783), (59280, 206, 7886), (59281, 206, 7958), (59282, 206, 8232), (59283, 206, 8255), (59284, 206, 8848), (59285, 206, 9223), (59286, 206, 9332), (59287, 206, 9765), (59288, 206, 10018), (59289, 206, 10279), (59290, 206, 10290), (59291, 206, 10322), (59292, 206, 10528), (59293, 206, 10627), (59294, 206, 10725), (59295, 206, 10871), (59296, 206, 10934), (59297, 206, 11426), (59298, 206, 11877), (59299, 206, 11916), (59300, 206, 13644), (59301, 206, 13830), (59302, 206, 14047), (59303, 206, 14531), (59304, 206, 15348), (59305, 206, 15553), (59306, 206, 16083), (59307, 206, 16453), (59308, 206, 16819), (59309, 206, 16954), (59310, 206, 17094), (59311, 206, 17289), (59312, 206, 17305), (59313, 206, 17646), (59314, 206, 17744), (59315, 206, 17971), (59316, 206, 18369), (59317, 206, 18429), (59318, 206, 18465), (59319, 206, 19565), (59320, 206, 19646), (59321, 206, 19732), (59322, 206, 19798), (59323, 206, 20012), (59324, 206, 20385), (59325, 206, 20613), (59326, 206, 21056), (59327, 206, 21234), (59328, 206, 21349), (59329, 206, 21401), (59330, 206, 21984), (59331, 206, 22018), (59332, 206, 22393), (59333, 206, 22611), (59334, 206, 22662), (59335, 206, 22752), (59336, 206, 23064), (59337, 206, 23228), (59338, 206, 23266), (59339, 206, 23375), (59340, 206, 23651), (59341, 206, 23654), (59342, 206, 23668), (59343, 206, 23959), (59344, 206, 25014), (59472, 207, 2), (59473, 207, 11), (59474, 207, 14), (59475, 207, 17), (59476, 207, 38), (59477, 207, 42), (59478, 207, 64), (59479, 207, 66), (59480, 207, 76), (59481, 207, 85), (59482, 207, 98), (59483, 207, 107), (59484, 207, 108), (59485, 207, 114), (59486, 207, 122), (59487, 207, 124), (59488, 207, 125), (59489, 207, 129), (59490, 207, 137), (59491, 207, 138), (59492, 207, 140), (59493, 207, 169), (59494, 207, 191), (59495, 207, 195), (59496, 207, 197), (59497, 207, 204), (59498, 207, 207), (59499, 207, 212), (59500, 207, 215), (59501, 207, 232), (59502, 207, 243), (59503, 207, 249), (59504, 207, 267), (59505, 207, 296), (59506, 207, 303), (59507, 207, 320), (59508, 207, 329), (59509, 207, 341), (59510, 207, 348), (59511, 207, 351), (59512, 207, 362), (59513, 207, 367), (59514, 207, 368), (59515, 207, 373), (59516, 207, 378), (59517, 207, 397), (59518, 207, 400), (59519, 207, 402), (59520, 207, 403), (59521, 207, 415), (59522, 207, 432), (59523, 207, 439), (59524, 207, 466), (59525, 207, 472), (59526, 207, 474), (59527, 207, 480), (59528, 207, 487), (59529, 207, 488), (59530, 207, 497), (59531, 207, 511), (59532, 207, 515), (59533, 207, 528), (59534, 207, 529), (59535, 207, 531), (59536, 207, 546), (59537, 207, 548), (59538, 207, 553), (59539, 207, 560), (59540, 207, 563), (59541, 207, 571), (59542, 207, 575), (59543, 207, 589), (59544, 207, 593), (59545, 207, 594), (59546, 207, 622), (59547, 207, 624), (59548, 207, 637), (59549, 207, 667), (59550, 207, 682), (59551, 207, 692), (59552, 207, 696), (59553, 207, 697), (59554, 207, 720), (59555, 207, 722), (59556, 207, 725), (59557, 207, 752), (59558, 207, 760), (59559, 207, 764), (59560, 207, 769), (59561, 207, 787), (59562, 207, 788), (59563, 207, 805), (59564, 207, 826), (59565, 207, 829), (59566, 207, 833), (59567, 207, 834), (59568, 207, 835), (59569, 207, 841), (59570, 207, 850), (59571, 207, 862), (59572, 207, 869), (59573, 207, 870), (59574, 207, 872), (59575, 207, 878), (59576, 207, 888), (59577, 207, 898), (59578, 207, 900), (59579, 207, 902), (59580, 207, 908), (59581, 207, 919), (59582, 207, 940), (59583, 207, 963), (59584, 207, 979), (59585, 207, 989), (59586, 207, 996), (59587, 207, 998), (59588, 207, 1001), (59589, 207, 1005), (59590, 207, 1013), (59591, 207, 1019), (59592, 207, 1023), (59593, 207, 1048), (59594, 207, 1049), (59595, 207, 1062), (59596, 207, 1063), (59597, 207, 1074), (59598, 207, 1078), (59599, 207, 1081), (59600, 207, 1097), (59601, 207, 1103), (59602, 207, 1109), (59603, 207, 1112), (59604, 207, 1113), (59605, 207, 1118), (59606, 207, 1120), (59607, 207, 1135), (59608, 207, 1138), (59609, 207, 1146), (59610, 207, 1153), (59611, 207, 1161), (59612, 207, 1165), (59613, 207, 1197), (59614, 207, 1244), (59615, 207, 1251), (59616, 207, 1258), (59617, 207, 1266), (59618, 207, 1278), (59619, 207, 1281), (59620, 207, 1297), (59621, 207, 1302), (59622, 207, 1312), (59623, 207, 1332), (59624, 207, 1333), (59625, 207, 1338), (59626, 207, 1355), (59627, 207, 1361), (59628, 207, 1377), (59629, 207, 1391), (59630, 207, 1396), (59631, 207, 1398), (59632, 207, 1405), (59633, 207, 1407), (59634, 207, 1410), (59635, 207, 1427), (59636, 207, 1436), (59637, 207, 1489), (59638, 207, 1492), (59639, 207, 1496), (59640, 207, 1498), (59641, 207, 1501), (59642, 207, 1530), (59643, 207, 1533), (59644, 207, 1546), (59645, 207, 1555), (59646, 207, 1556), (59647, 207, 1566), (59648, 207, 1573), (59649, 207, 1575), (59650, 207, 1576), (59651, 207, 1597), (59652, 207, 1604), (59653, 207, 1608), (59654, 207, 1619), (59655, 207, 1631), (59656, 207, 1636), (59657, 207, 1640), (59658, 207, 1648), (59659, 207, 1678), (59660, 207, 1703), (59661, 207, 1714), (59662, 207, 1719), (59663, 207, 1720), (59664, 207, 1740), (59665, 207, 1755), (59666, 207, 1760), (59667, 207, 1763), (59668, 207, 1772), (59669, 207, 1782), (59670, 207, 1785), (59671, 207, 1797), (59672, 207, 1802), (59673, 207, 1803), (59674, 207, 1804), (59675, 207, 1841), (59676, 207, 1843), (59677, 207, 1849), (59678, 207, 1864), (59679, 207, 1872), (59680, 207, 1873), (59681, 207, 1876), (59682, 207, 1877), (59683, 207, 1902), (59684, 207, 1916), (59685, 207, 1926), (59686, 207, 1928), (59687, 207, 1933), (59688, 207, 1935), (59689, 207, 1942), (59690, 207, 1956), (59691, 207, 1960), (59692, 207, 1966), (59693, 207, 1968), (59694, 207, 1971), (59695, 207, 1981), (59696, 207, 1996), (59697, 207, 2016), (59698, 207, 2024), (59699, 207, 2032), (59700, 207, 2033), (59701, 207, 2046), (59702, 207, 2050), (59703, 207, 2054), (59704, 207, 2069), (59705, 207, 2070), (59706, 207, 2074), (59707, 207, 2082), (59708, 207, 2084), (59709, 207, 2110), (59710, 207, 2114), (59711, 207, 2121), (59712, 207, 2122), (59713, 207, 2137), (59714, 207, 2144), (59715, 207, 2150), (59716, 207, 2163), (59717, 207, 2168), (59718, 207, 2175), (59719, 207, 2184), (59720, 207, 2194), (59721, 207, 2197), (59722, 207, 2198), (59723, 207, 2200), (59724, 207, 2205), (59725, 207, 2206), (59726, 207, 2215), (59727, 207, 2218), (59728, 207, 2225), (59729, 207, 2249), (59730, 207, 2258), (59731, 207, 2278), (59732, 207, 2280), (59733, 207, 2293), (59734, 207, 2303), (59735, 207, 2305), (59736, 207, 2311), (59737, 207, 2313), (59738, 207, 2331), (59739, 207, 2334), (59740, 207, 2346), (59741, 207, 2349), (59742, 207, 2350), (59743, 207, 2354), (59744, 207, 2357), (59745, 207, 2366), (59746, 207, 2368), (59747, 207, 2369), (59748, 207, 2381), (59749, 207, 2386), (59750, 207, 2393), (59751, 207, 2415), (59752, 207, 2417), (59753, 207, 2419), (59754, 207, 2433), (59755, 207, 2434), (59756, 207, 2443), (59757, 207, 2445), (59758, 207, 2450), (59759, 207, 2462), (59760, 207, 2463), (59761, 207, 2466), (59762, 207, 2473), (59763, 207, 2495), (59764, 207, 2497), (59765, 207, 2510), (59766, 207, 2524), (59767, 207, 2529), (59768, 207, 2535), (59769, 207, 2544), (59770, 207, 2545), (59771, 207, 2552), (59772, 207, 2562), (59773, 207, 2578), (59774, 207, 2584), (59775, 207, 2585), (59776, 207, 2591), (59777, 207, 2598), (59778, 207, 2599), (59779, 207, 2600), (59780, 207, 2612), (59781, 207, 2620), (59782, 207, 2625), (59783, 207, 2627), (59784, 207, 2631), (59785, 207, 2636), (59786, 207, 2659), (59787, 207, 2676), (59788, 207, 2687), (59789, 207, 2689), (59790, 207, 2697), (59791, 207, 2704), (59792, 207, 2714), (59793, 207, 2716), (59794, 207, 2725), (59795, 207, 2730), (59796, 207, 2734), (59797, 207, 2741), (59798, 207, 2742), (59799, 207, 2747), (59800, 207, 2750), (59801, 207, 2753), (59802, 207, 2755), (59803, 207, 2762), (59804, 207, 2763), (59805, 207, 2766), (59806, 207, 2770), (59807, 207, 2771), (59808, 207, 2787), (59809, 207, 2790), (59810, 207, 2792), (59811, 207, 2799), (59812, 207, 2801), (59813, 207, 2802), (59814, 207, 2810), (59815, 207, 2816), (59816, 207, 2817), (59817, 207, 2821), (59818, 207, 2828), (59819, 207, 2841), (59820, 207, 2846), (59821, 207, 2850), (59822, 207, 2851), (59823, 207, 2859), (59824, 207, 2873), (59825, 207, 2895), (59826, 207, 2898), (59827, 207, 2907), (59828, 207, 2909), (59829, 207, 2910), (59830, 207, 2919), (59831, 207, 2930), (59832, 207, 2933), (59833, 207, 2934), (59834, 207, 2940), (59835, 207, 2945), (59836, 207, 2946), (59837, 207, 2948), (59838, 207, 2958), (59839, 207, 2960), (59840, 207, 2964), (59841, 207, 2969), (59842, 207, 2970), (59843, 207, 2972), (59844, 207, 3000), (59845, 207, 3002), (59846, 207, 3007), (59847, 207, 3011), (59848, 207, 3017), (59849, 207, 3023), (59850, 207, 3038), (59851, 207, 3046), (59852, 207, 3047), (59853, 207, 3056), (59854, 207, 3065), (59855, 207, 3083), (59856, 207, 3087), (59857, 207, 3091), (59858, 207, 3127), (59859, 207, 3130), (59860, 207, 3146), (59861, 207, 3148), (59862, 207, 3149), (59863, 207, 3152), (59864, 207, 3153), (59865, 207, 3154), (59866, 207, 3175), (59867, 207, 3183), (59868, 207, 3198), (59869, 207, 3200), (59870, 207, 3212), (59871, 207, 3217), (59872, 207, 3225), (59873, 207, 3233), (59874, 207, 3243), (59875, 207, 3244), (59876, 207, 3249), (59877, 207, 3250), (59878, 207, 3254), (59879, 207, 3262), (59880, 207, 3264), (59881, 207, 3275), (59882, 207, 3283), (59883, 207, 3288), (59884, 207, 3302), (59885, 207, 3330), (59886, 207, 3338), (59887, 207, 3349), (59888, 207, 3351), (59889, 207, 3368), (59890, 207, 3385), (59891, 207, 3392), (59892, 207, 3399), (59893, 207, 3401), (59894, 207, 3419), (59895, 207, 3425), (59896, 207, 3427), (59897, 207, 3439), (59898, 207, 3440), (59899, 207, 3443), (59900, 207, 3445), (59901, 207, 3460), (59902, 207, 3461), (59903, 207, 3466), (59904, 207, 3470), (59905, 207, 3477), (59906, 207, 3485), (59907, 207, 3493), (59908, 207, 3495), (59909, 207, 3504), (59910, 207, 3509), (59911, 207, 3515), (59912, 207, 3518), (59913, 207, 3552), (59914, 207, 3553), (59915, 207, 3562), (59916, 207, 3567), (59917, 207, 3578), (59918, 207, 3583), (59919, 207, 3585), (59920, 207, 3588), (59921, 207, 3591), (59922, 207, 3594), (59923, 207, 3596), (59924, 207, 3600), (59925, 207, 3604), (59926, 207, 3614), (59927, 207, 3617), (59928, 207, 3624), (59929, 207, 3627), (59930, 207, 3631), (59931, 207, 3633), (59932, 207, 3636), (59933, 207, 3651), (59934, 207, 3659), (59935, 207, 3664), (59936, 207, 3671), (59937, 207, 3673), (59938, 207, 3681), (59939, 207, 3682), (59940, 207, 3696), (59941, 207, 3698), (59942, 207, 3703), (59943, 207, 3704), (59944, 207, 3705), (59945, 207, 3711), (59946, 207, 3714), (59947, 207, 3716), (59948, 207, 3721), (59949, 207, 3729), (59950, 207, 3730), (59951, 207, 3741), (59952, 207, 3746), (59953, 207, 3754), (59954, 207, 3756), (59955, 207, 3763), (59956, 207, 3774), (59957, 207, 3786), (59958, 207, 3788), (59959, 207, 3798), (59960, 207, 3800), (59961, 207, 3817), (59962, 207, 3821), (59963, 207, 3851), (59964, 207, 3859), (59965, 207, 3870), (59966, 207, 3877), (59967, 207, 3881), (59968, 207, 3888), (59969, 207, 3894), (59970, 207, 3896), (59971, 207, 3910), (59972, 207, 3914), (59973, 207, 3921), (59974, 207, 3933), (59975, 207, 3939), (59976, 207, 3947), (59977, 207, 3952), (59978, 207, 3971), (59979, 207, 3983), (59980, 207, 3985), (59981, 207, 3992), (59982, 207, 3994), (59983, 207, 4008), (59984, 207, 4009), (59985, 207, 4018), (59986, 207, 4029), (59987, 207, 4031), (59988, 207, 4032), (59989, 207, 4039), (59990, 207, 4050), (59991, 207, 4072), (59992, 207, 4077), (59993, 207, 4108), (59994, 207, 4110), (59995, 207, 4113), (59996, 207, 4128), (59997, 207, 4129), (59998, 207, 4137), (59999, 207, 4144), (60000, 207, 4147), (60001, 207, 4151), (60002, 207, 4154), (60003, 207, 4177), (60004, 207, 4194), (60005, 207, 4196), (60006, 207, 4197), (60007, 207, 4210), (60008, 207, 4216), (60009, 207, 4219), (60010, 207, 4221), (60011, 207, 4225), (60012, 207, 4232), (60013, 207, 4236), (60014, 207, 4249), (60015, 207, 4254), (60016, 207, 4257), (60017, 207, 4258), (60018, 207, 4273), (60019, 207, 4285), (60020, 207, 4287), (60021, 207, 4293), (60022, 207, 4295), (60023, 207, 4303), (60024, 207, 4311), (60025, 207, 4318), (60026, 207, 4321), (60027, 207, 4327), (60028, 207, 4331), (60029, 207, 4333), (60030, 207, 4342), (60031, 207, 4351), (60032, 207, 4355), (60033, 207, 4360), (60034, 207, 4368), (60035, 207, 4370), (60036, 207, 4371), (60037, 207, 4374), (60038, 207, 4389), (60039, 207, 4390), (60040, 207, 4393), (60041, 207, 4395), (60042, 207, 4410), (60043, 207, 4411), (60044, 207, 4422), (60045, 207, 4430), (60046, 207, 4436), (60047, 207, 4443), (60048, 207, 4444), (60049, 207, 4450), (60050, 207, 4474), (60051, 207, 4491), (60052, 207, 4493), (60053, 207, 4497), (60054, 207, 4498), (60055, 207, 4504), (60056, 207, 4505), (60057, 207, 4521), (60058, 207, 4536), (60059, 207, 4548), (60060, 207, 4553), (60061, 207, 4561), (60062, 207, 4564), (60063, 207, 4565), (60064, 207, 4567), (60065, 207, 4568), (60066, 207, 4569), (60067, 207, 4589), (60068, 207, 4592), (60069, 207, 4597), (60070, 207, 4603), (60071, 207, 4609), (60072, 207, 4611), (60073, 207, 4614), (60074, 207, 4617), (60075, 207, 4629), (60076, 207, 4650), (60077, 207, 4663), (60078, 207, 4672), (60079, 207, 4674), (60080, 207, 4676), (60081, 207, 4688), (60082, 207, 4693), (60083, 207, 4699), (60084, 207, 4704), (60085, 207, 4718), (60086, 207, 4722), (60087, 207, 4727), (60088, 207, 4732), (60089, 207, 4733), (60090, 207, 4735), (60091, 207, 4740), (60092, 207, 4747), (60093, 207, 4750), (60094, 207, 4751), (60095, 207, 4752), (60096, 207, 4756), (60097, 207, 4761), (60098, 207, 4773), (60099, 207, 4777), (60100, 207, 4784), (60101, 207, 4786), (60102, 207, 4787), (60103, 207, 4796), (60104, 207, 4801), (60105, 207, 4802), (60106, 207, 4817), (60107, 207, 4826), (60108, 207, 4829), (60109, 207, 4831), (60110, 207, 4834), (60111, 207, 4842), (60112, 207, 4843), (60113, 207, 4849), (60114, 207, 4856), (60115, 207, 4865), (60116, 207, 4866), (60117, 207, 4881), (60118, 207, 4900), (60119, 207, 4903), (60120, 207, 4905), (60121, 207, 4911), (60122, 207, 4915), (60123, 207, 4917), (60124, 207, 4928), (60125, 207, 4929), (60126, 207, 4935), (60127, 207, 4941), (60128, 207, 4944), (60129, 207, 4952), (60130, 207, 4956), (60131, 207, 4966), (60132, 207, 4968), (60133, 207, 4969), (60134, 207, 4978), (60135, 207, 4999), (60136, 207, 5002), (60137, 207, 5009), (60138, 207, 5011), (60139, 207, 5013), (60140, 207, 5014), (60141, 207, 5022), (60142, 207, 5024), (60143, 207, 5028), (60144, 207, 5030), (60145, 207, 5032), (60146, 207, 5037), (60147, 207, 5039), (60148, 207, 5062), (60149, 207, 5066), (60150, 207, 5069), (60151, 207, 5070), (60152, 207, 5078), (60153, 207, 5079), (60154, 207, 5089), (60155, 207, 5091), (60156, 207, 5093), (60157, 207, 5094), (60158, 207, 5095), (60159, 207, 5096), (60160, 207, 5102), (60161, 207, 5104), (60162, 207, 5108), (60163, 207, 5112), (60164, 207, 5118), (60165, 207, 5121), (60166, 207, 5122), (60167, 207, 5123), (60168, 207, 5150), (60169, 207, 5152), (60170, 207, 5165), (60171, 207, 5166), (60172, 207, 5169), (60173, 207, 5188), (60174, 207, 5190), (60175, 207, 5193), (60176, 207, 5198), (60177, 207, 5230), (60178, 207, 5246), (60179, 207, 5249), (60180, 207, 5253), (60181, 207, 5258), (60182, 207, 5277), (60183, 207, 5283), (60184, 207, 5286), (60185, 207, 5302), (60186, 207, 5309), (60187, 207, 5310), (60188, 207, 5321), (60189, 207, 5327), (60190, 207, 5330), (60191, 207, 5339), (60192, 207, 5349), (60193, 207, 5351), (60194, 207, 5352), (60195, 207, 5354), (60196, 207, 5360), (60197, 207, 5368), (60198, 207, 5373), (60199, 207, 5378), (60200, 207, 5389), (60201, 207, 5392), (60202, 207, 5395), (60203, 207, 5408), (60204, 207, 5420), (60205, 207, 5421), (60206, 207, 5442), (60207, 207, 5458), (60208, 207, 5464), (60209, 207, 5473), (60210, 207, 5475), (60211, 207, 5478), (60212, 207, 5480), (60213, 207, 5481), (60214, 207, 5485), (60215, 207, 5500), (60216, 207, 5522), (60217, 207, 5525), (60218, 207, 5541), (60219, 207, 5542), (60220, 207, 5552), (60221, 207, 5558), (60222, 207, 5571), (60223, 207, 5576), (60224, 207, 5577), (60225, 207, 5584), (60226, 207, 5587), (60227, 207, 5593), (60228, 207, 5626), (60229, 207, 5627), (60230, 207, 5628), (60231, 207, 5643), (60232, 207, 5651), (60233, 207, 5669), (60234, 207, 5674), (60235, 207, 5688), (60236, 207, 5692), (60237, 207, 5704), (60238, 207, 5711), (60239, 207, 5714), (60240, 207, 5718), (60241, 207, 5731), (60242, 207, 5735), (60243, 207, 5736), (60244, 207, 5741), (60245, 207, 5770), (60246, 207, 5793), (60247, 207, 5794), (60248, 207, 5795), (60249, 207, 5801), (60250, 207, 5816), (60251, 207, 5818), (60252, 207, 5828), (60253, 207, 5830), (60254, 207, 5847), (60255, 207, 5864), (60256, 207, 5872), (60257, 207, 5873), (60258, 207, 5880), (60259, 207, 5888), (60260, 207, 5895), (60261, 207, 5896), (60262, 207, 5912), (60263, 207, 5942), (60264, 207, 5943), (60265, 207, 5955), (60266, 207, 5957), (60267, 207, 5964), (60268, 207, 5965), (60269, 207, 5970), (60270, 207, 5985), (60271, 207, 5989), (60272, 207, 5991), (60273, 207, 5994), (60274, 207, 6023), (60275, 207, 6027), (60276, 207, 6033), (60277, 207, 6044), (60278, 207, 6045), (60279, 207, 6046), (60280, 207, 6056), (60281, 207, 6062), (60282, 207, 6074), (60283, 207, 6079), (60284, 207, 6084), (60285, 207, 6097), (60286, 207, 6105), (60287, 207, 6116), (60288, 207, 6120), (60289, 207, 6128), (60290, 207, 6133), (60291, 207, 6150), (60292, 207, 6151), (60293, 207, 6155), (60294, 207, 6165), (60295, 207, 6183), (60296, 207, 6184), (60297, 207, 6188), (60298, 207, 6192), (60299, 207, 6195), (60300, 207, 6197), (60301, 207, 6212), (60302, 207, 6213), (60303, 207, 6216), (60304, 207, 6217), (60305, 207, 6267), (60306, 207, 6303), (60307, 207, 6309), (60308, 207, 6311), (60309, 207, 6313), (60310, 207, 6316), (60311, 207, 6317), (60312, 207, 6320), (60313, 207, 6334), (60314, 207, 6336), (60315, 207, 6342), (60316, 207, 6343), (60317, 207, 6353), (60318, 207, 6362), (60319, 207, 6372), (60320, 207, 6374), (60321, 207, 6375), (60322, 207, 6378), (60323, 207, 6381), (60324, 207, 6382), (60325, 207, 6401), (60326, 207, 6406), (60327, 207, 6409), (60328, 207, 6410), (60329, 207, 6417), (60330, 207, 6420), (60331, 207, 6427), (60332, 207, 6441), (60333, 207, 6442), (60334, 207, 6444), (60335, 207, 6447), (60336, 207, 6452), (60337, 207, 6461), (60338, 207, 6467), (60339, 207, 6470), (60340, 207, 6476), (60341, 207, 6500), (60342, 207, 6508), (60343, 207, 6510), (60344, 207, 6515), (60345, 207, 6524), (60346, 207, 6526), (60347, 207, 6527), (60348, 207, 6541), (60349, 207, 6545), (60350, 207, 6550), (60351, 207, 6551), (60352, 207, 6553), (60353, 207, 6554), (60354, 207, 6565), (60355, 207, 6568), (60356, 207, 6582), (60357, 207, 6587), (60358, 207, 6609), (60359, 207, 6613), (60360, 207, 6622), (60361, 207, 6629), (60362, 207, 6636), (60363, 207, 6648), (60364, 207, 6652), (60365, 207, 6672), (60366, 207, 6680), (60367, 207, 6684), (60368, 207, 6685), (60369, 207, 6699), (60370, 207, 6713), (60371, 207, 6716), (60372, 207, 6718), (60373, 207, 6728), (60374, 207, 6737), (60375, 207, 6759), (60376, 207, 6760), (60377, 207, 6761), (60378, 207, 6775), (60379, 207, 6779), (60380, 207, 6789), (60381, 207, 6794), (60382, 207, 6805), (60383, 207, 6806), (60384, 207, 6819), (60385, 207, 6822), (60386, 207, 6825), (60387, 207, 6840), (60388, 207, 6848), (60389, 207, 6860), (60390, 207, 6862), (60391, 207, 6868), (60392, 207, 6884), (60393, 207, 6886), (60394, 207, 6888), (60395, 207, 6892), (60396, 207, 6897), (60397, 207, 6902), (60398, 207, 6910), (60399, 207, 6913), (60400, 207, 6922), (60401, 207, 6926), (60402, 207, 6933), (60403, 207, 6936), (60404, 207, 6938), (60405, 207, 6941), (60406, 207, 6945), (60407, 207, 6947), (60408, 207, 6949), (60409, 207, 6956), (60410, 207, 6973), (60411, 207, 6982), (60412, 207, 6994), (60413, 207, 6995), (60414, 207, 7007), (60415, 207, 7016), (60416, 207, 7036), (60417, 207, 7037), (60418, 207, 7075), (60419, 207, 7077), (60420, 207, 7080), (60421, 207, 7086), (60422, 207, 7092), (60423, 207, 7094), (60424, 207, 7095), (60425, 207, 7098), (60426, 207, 7099), (60427, 207, 7104), (60428, 207, 7105), (60429, 207, 7115), (60430, 207, 7126), (60431, 207, 7128), (60432, 207, 7130), (60433, 207, 7132), (60434, 207, 7134), (60435, 207, 7178), (60436, 207, 7180), (60437, 207, 7183), (60438, 207, 7186), (60439, 207, 7187), (60440, 207, 7191), (60441, 207, 7192), (60442, 207, 7199), (60443, 207, 7222), (60444, 207, 7228), (60445, 207, 7232), (60446, 207, 7233), (60447, 207, 7236), (60448, 207, 7243), (60449, 207, 7248), (60450, 207, 7250), (60451, 207, 7258), (60452, 207, 7278), (60453, 207, 7280), (60454, 207, 7281), (60455, 207, 7284), (60456, 207, 7289), (60457, 207, 7320), (60458, 207, 7333), (60459, 207, 7339), (60460, 207, 7349), (60461, 207, 7353), (60462, 207, 7355), (60463, 207, 7359), (60464, 207, 7360), (60465, 207, 7361), (60466, 207, 7362), (60467, 207, 7394), (60468, 207, 7399), (60469, 207, 7418), (60470, 207, 7420), (60471, 207, 7423), (60472, 207, 7428), (60473, 207, 7429), (60474, 207, 7431), (60475, 207, 7445), (60476, 207, 7447), (60477, 207, 7448), (60478, 207, 7461), (60479, 207, 7469), (60480, 207, 7471), (60481, 207, 7473), (60482, 207, 7475), (60483, 207, 7476), (60484, 207, 7488), (60485, 207, 7494), (60486, 207, 7499), (60487, 207, 7503), (60488, 207, 7534), (60489, 207, 7544), (60490, 207, 7549), (60491, 207, 7551), (60492, 207, 7552), (60493, 207, 7558), (60494, 207, 7560), (60495, 207, 7561), (60496, 207, 7563), (60497, 207, 7564), (60498, 207, 7568), (60499, 207, 7570), (60500, 207, 7575), (60501, 207, 7583), (60502, 207, 7587), (60503, 207, 7601), (60504, 207, 7606), (60505, 207, 7607), (60506, 207, 7608), (60507, 207, 7609), (60508, 207, 7612), (60509, 207, 7630), (60510, 207, 7631), (60511, 207, 7639), (60512, 207, 7641), (60513, 207, 7650), (60514, 207, 7660), (60515, 207, 7673), (60516, 207, 7681), (60517, 207, 7705), (60518, 207, 7718), (60519, 207, 7740), (60520, 207, 7741), (60521, 207, 7744), (60522, 207, 7745), (60523, 207, 7746), (60524, 207, 7747), (60525, 207, 7757), (60526, 207, 7759), (60527, 207, 7771), (60528, 207, 7775), (60529, 207, 7782), (60530, 207, 7783), (60531, 207, 7786), (60532, 207, 7796), (60533, 207, 7801), (60534, 207, 7811), (60535, 207, 7812), (60536, 207, 7814), (60537, 207, 7816), (60538, 207, 7819), (60539, 207, 7826), (60540, 207, 7834), (60541, 207, 7846), (60542, 207, 7857), (60543, 207, 7859), (60544, 207, 7870), (60545, 207, 7879), (60546, 207, 7884), (60547, 207, 7889), (60548, 207, 7902), (60549, 207, 7904), (60550, 207, 7908), (60551, 207, 7936), (60552, 207, 7937), (60553, 207, 7940), (60554, 207, 7943), (60555, 207, 7945), (60556, 207, 7947), (60557, 207, 7956), (60558, 207, 7968), (60559, 207, 7969), (60560, 207, 7974), (60561, 207, 7987), (60562, 207, 7991), (60563, 207, 7992), (60564, 207, 7996), (60565, 207, 8010), (60566, 207, 8013), (60567, 207, 8027), (60568, 207, 8037), (60569, 207, 8046), (60570, 207, 8048), (60571, 207, 8072), (60572, 207, 8076), (60573, 207, 8077), (60574, 207, 8078), (60575, 207, 8080), (60576, 207, 8091), (60577, 207, 8094), (60578, 207, 8095), (60579, 207, 8103), (60580, 207, 8117), (60581, 207, 8122), (60582, 207, 8132), (60583, 207, 8134), (60584, 207, 8136), (60585, 207, 8144), (60586, 207, 8146), (60587, 207, 8157), (60588, 207, 8160), (60589, 207, 8162), (60590, 207, 8167), (60591, 207, 8173), (60592, 207, 8174), (60593, 207, 8176), (60594, 207, 8195), (60595, 207, 8204), (60596, 207, 8206), (60597, 207, 8221), (60598, 207, 8227), (60599, 207, 8243), (60600, 207, 8244), (60601, 207, 8250), (60602, 207, 8266), (60603, 207, 8274), (60604, 207, 8280), (60605, 207, 8286), (60606, 207, 8307), (60607, 207, 8311), (60608, 207, 8313), (60609, 207, 8315), (60610, 207, 8331), (60611, 207, 8342), (60612, 207, 8345), (60613, 207, 8347), (60614, 207, 8349), (60615, 207, 8364), (60616, 207, 8366), (60617, 207, 8381), (60618, 207, 8382), (60619, 207, 8394), (60620, 207, 8399), (60621, 207, 8404), (60622, 207, 8410), (60623, 207, 8416), (60624, 207, 8421), (60625, 207, 8436), (60626, 207, 8456), (60627, 207, 8460), (60628, 207, 8464), (60629, 207, 8466), (60630, 207, 8471), (60631, 207, 8473), (60632, 207, 8477), (60633, 207, 8482), (60634, 207, 8487), (60635, 207, 8504), (60636, 207, 8509), (60637, 207, 8526), (60638, 207, 8532), (60639, 207, 8533), (60640, 207, 8535), (60641, 207, 8543), (60642, 207, 8547), (60643, 207, 8553), (60644, 207, 8556), (60645, 207, 8563), (60646, 207, 8565), (60647, 207, 8576), (60648, 207, 8577), (60649, 207, 8578), (60650, 207, 8584), (60651, 207, 8586), (60652, 207, 8596), (60653, 207, 8599), (60654, 207, 8602), (60655, 207, 8637), (60656, 207, 8649), (60657, 207, 8670), (60658, 207, 8674), (60659, 207, 8678), (60660, 207, 8693), (60661, 207, 8695), (60662, 207, 8699), (60663, 207, 8707), (60664, 207, 8727), (60665, 207, 8737), (60666, 207, 8739), (60667, 207, 8740), (60668, 207, 8757), (60669, 207, 8775), (60670, 207, 8777), (60671, 207, 8789), (60672, 207, 8798), (60673, 207, 8824), (60674, 207, 8848), (60675, 207, 8856), (60676, 207, 8863), (60677, 207, 8908), (60678, 207, 8919), (60679, 207, 8924), (60680, 207, 8940), (60681, 207, 8942), (60682, 207, 8957), (60683, 207, 8965), (60684, 207, 8967), (60685, 207, 8976), (60686, 207, 8980), (60687, 207, 8985), (60688, 207, 8991), (60689, 207, 8997), (60690, 207, 9020), (60691, 207, 9025); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (60692, 207, 9026), (60693, 207, 9031), (60694, 207, 9044), (60695, 207, 9054), (60696, 207, 9059), (60697, 207, 9063), (60698, 207, 9068), (60699, 207, 9075), (60700, 207, 9082), (60701, 207, 9095), (60702, 207, 9096), (60703, 207, 9120), (60704, 207, 9128), (60705, 207, 9143), (60706, 207, 9152), (60707, 207, 9157), (60708, 207, 9161), (60709, 207, 9167), (60710, 207, 9171), (60711, 207, 9195), (60712, 207, 9196), (60713, 207, 9201), (60714, 207, 9231), (60715, 207, 9234), (60716, 207, 9245), (60717, 207, 9250), (60718, 207, 9273), (60719, 207, 9281), (60720, 207, 9285), (60721, 207, 9289), (60722, 207, 9312), (60723, 207, 9325), (60724, 207, 9326), (60725, 207, 9343), (60726, 207, 9347), (60727, 207, 9362), (60728, 207, 9375), (60729, 207, 9389), (60730, 207, 9407), (60731, 207, 9424), (60732, 207, 9431), (60733, 207, 9450), (60734, 207, 9463), (60735, 207, 9467), (60736, 207, 9473), (60737, 207, 9488), (60738, 207, 9493), (60739, 207, 9504), (60740, 207, 9506), (60741, 207, 9517), (60742, 207, 9530), (60743, 207, 9549), (60744, 207, 9550), (60745, 207, 9551), (60746, 207, 9556), (60747, 207, 9568), (60748, 207, 9569), (60749, 207, 9592), (60750, 207, 9598), (60751, 207, 9618), (60752, 207, 9625), (60753, 207, 9634), (60754, 207, 9644), (60755, 207, 9655), (60756, 207, 9657), (60757, 207, 9690), (60758, 207, 9703), (60759, 207, 9707), (60760, 207, 9713), (60761, 207, 9727), (60762, 207, 9729), (60763, 207, 9762), (60764, 207, 9765), (60765, 207, 9776), (60766, 207, 9781), (60767, 207, 9792), (60768, 207, 9794), (60769, 207, 9797), (60770, 207, 9812), (60771, 207, 9821), (60772, 207, 9843), (60773, 207, 9877), (60774, 207, 9880), (60775, 207, 9881), (60776, 207, 9902), (60777, 207, 9908), (60778, 207, 9937), (60779, 207, 9950), (60780, 207, 9956), (60781, 207, 9967), (60782, 207, 9975), (60783, 207, 9982), (60784, 207, 9983), (60785, 207, 9995), (60786, 207, 9999), (60787, 207, 10002), (60788, 207, 10014), (60789, 207, 10030), (60790, 207, 10057), (60791, 207, 10073), (60792, 207, 10085), (60793, 207, 10119), (60794, 207, 10128), (60795, 207, 10144), (60796, 207, 10165), (60797, 207, 10174), (60798, 207, 10185), (60799, 207, 10188), (60800, 207, 10203), (60801, 207, 10205), (60802, 207, 10206), (60803, 207, 10214), (60804, 207, 10217), (60805, 207, 10251), (60806, 207, 10271), (60807, 207, 10282), (60808, 207, 10298), (60809, 207, 10300), (60810, 207, 10308), (60811, 207, 10336), (60812, 207, 10340), (60813, 207, 10343), (60814, 207, 10355), (60815, 207, 10368), (60816, 207, 10382), (60817, 207, 10384), (60818, 207, 10385), (60819, 207, 10389), (60820, 207, 10397), (60821, 207, 10406), (60822, 207, 10428), (60823, 207, 10430), (60824, 207, 10432), (60825, 207, 10438), (60826, 207, 10460), (60827, 207, 10461), (60828, 207, 10473), (60829, 207, 10476), (60830, 207, 10481), (60831, 207, 10483), (60832, 207, 10492), (60833, 207, 10493), (60834, 207, 10504), (60835, 207, 10506), (60836, 207, 10527), (60837, 207, 10532), (60838, 207, 10552), (60839, 207, 10562), (60840, 207, 10581), (60841, 207, 10603), (60842, 207, 10605), (60843, 207, 10613), (60844, 207, 10615), (60845, 207, 10624), (60846, 207, 10627), (60847, 207, 10630), (60848, 207, 10646), (60849, 207, 10651), (60850, 207, 10653), (60851, 207, 10655), (60852, 207, 10664), (60853, 207, 10674), (60854, 207, 10683), (60855, 207, 10696), (60856, 207, 10725), (60857, 207, 10749), (60858, 207, 10756), (60859, 207, 10803), (60860, 207, 10812), (60861, 207, 10828), (60862, 207, 10831), (60863, 207, 10852), (60864, 207, 10861), (60865, 207, 10902), (60866, 207, 10907), (60867, 207, 10917), (60868, 207, 10918), (60869, 207, 10939), (60870, 207, 10963), (60871, 207, 10965), (60872, 207, 10973), (60873, 207, 10977), (60874, 207, 10981), (60875, 207, 11010), (60876, 207, 11011), (60877, 207, 11028), (60878, 207, 11042), (60879, 207, 11045), (60880, 207, 11048), (60881, 207, 11065), (60882, 207, 11080), (60883, 207, 11086), (60884, 207, 11093), (60885, 207, 11108), (60886, 207, 11112), (60887, 207, 11123), (60888, 207, 11136), (60889, 207, 11146), (60890, 207, 11151), (60891, 207, 11166), (60892, 207, 11172), (60893, 207, 11177), (60894, 207, 11207), (60895, 207, 11211), (60896, 207, 11212), (60897, 207, 11226), (60898, 207, 11227), (60899, 207, 11231), (60900, 207, 11237), (60901, 207, 11246), (60902, 207, 11255), (60903, 207, 11261), (60904, 207, 11274), (60905, 207, 11276), (60906, 207, 11300), (60907, 207, 11305), (60908, 207, 11322), (60909, 207, 11326), (60910, 207, 11342), (60911, 207, 11348), (60912, 207, 11358), (60913, 207, 11359), (60914, 207, 11365), (60915, 207, 11367), (60916, 207, 11369), (60917, 207, 11371), (60918, 207, 11373), (60919, 207, 11375), (60920, 207, 11401), (60921, 207, 11438), (60922, 207, 11447), (60923, 207, 11457), (60924, 207, 11464), (60925, 207, 11465), (60926, 207, 11485), (60927, 207, 11492), (60928, 207, 11504), (60929, 207, 11524), (60930, 207, 11552), (60931, 207, 11553), (60932, 207, 11559), (60933, 207, 11564), (60934, 207, 11569), (60935, 207, 11576), (60936, 207, 11584), (60937, 207, 11585), (60938, 207, 11632), (60939, 207, 11639), (60940, 207, 11649), (60941, 207, 11658), (60942, 207, 11671), (60943, 207, 11673), (60944, 207, 11694), (60945, 207, 11696), (60946, 207, 11711), (60947, 207, 11713), (60948, 207, 11731), (60949, 207, 11732), (60950, 207, 11734), (60951, 207, 11736), (60952, 207, 11743), (60953, 207, 11804), (60954, 207, 11814), (60955, 207, 11820), (60956, 207, 11822), (60957, 207, 11826), (60958, 207, 11827), (60959, 207, 11831), (60960, 207, 11847), (60961, 207, 11864), (60962, 207, 11870), (60963, 207, 11871), (60964, 207, 11872), (60965, 207, 11877), (60966, 207, 11891), (60967, 207, 11894), (60968, 207, 11911), (60969, 207, 11916), (60970, 207, 11922), (60971, 207, 11923), (60972, 207, 11932), (60973, 207, 11933), (60974, 207, 11939), (60975, 207, 11961), (60976, 207, 11962), (60977, 207, 11968), (60978, 207, 11979), (60979, 207, 12010), (60980, 207, 12015), (60981, 207, 12016), (60982, 207, 12026), (60983, 207, 12047), (60984, 207, 12064), (60985, 207, 12087), (60986, 207, 12092), (60987, 207, 12096), (60988, 207, 12097), (60989, 207, 12130), (60990, 207, 12148), (60991, 207, 12157), (60992, 207, 12189), (60993, 207, 12195), (60994, 207, 12196), (60995, 207, 12199), (60996, 207, 12204), (60997, 207, 12241), (60998, 207, 12255), (60999, 207, 12270), (61000, 207, 12277), (61001, 207, 12278), (61002, 207, 12292), (61003, 207, 12327), (61004, 207, 12357), (61005, 207, 12365), (61006, 207, 12385), (61007, 207, 12388), (61008, 207, 12403), (61009, 207, 12405), (61010, 207, 12411), (61011, 207, 12421), (61012, 207, 12430), (61013, 207, 12433), (61014, 207, 12438), (61015, 207, 12467), (61016, 207, 12482), (61017, 207, 12485), (61018, 207, 12487), (61019, 207, 12495), (61020, 207, 12501), (61021, 207, 12546), (61022, 207, 12555), (61023, 207, 12565), (61024, 207, 12574), (61025, 207, 12579), (61026, 207, 12591), (61027, 207, 12606), (61028, 207, 12626), (61029, 207, 12632), (61030, 207, 12638), (61031, 207, 12642), (61032, 207, 12665), (61033, 207, 12677), (61034, 207, 12685), (61035, 207, 12686), (61036, 207, 12697), (61037, 207, 12728), (61038, 207, 12769), (61039, 207, 12772), (61040, 207, 12782), (61041, 207, 12788), (61042, 207, 12791), (61043, 207, 12802), (61044, 207, 12823), (61045, 207, 12824), (61046, 207, 12846), (61047, 207, 12874), (61048, 207, 12914), (61049, 207, 12916), (61050, 207, 12942), (61051, 207, 12945), (61052, 207, 12950), (61053, 207, 12955), (61054, 207, 12965), (61055, 207, 12972), (61056, 207, 12980), (61057, 207, 12982), (61058, 207, 13011), (61059, 207, 13026), (61060, 207, 13028), (61061, 207, 13034), (61062, 207, 13035), (61063, 207, 13072), (61064, 207, 13073), (61065, 207, 13087), (61066, 207, 13118), (61067, 207, 13121), (61068, 207, 13151), (61069, 207, 13166), (61070, 207, 13189), (61071, 207, 13191), (61072, 207, 13201), (61073, 207, 13203), (61074, 207, 13223), (61075, 207, 13227), (61076, 207, 13230), (61077, 207, 13238), (61078, 207, 13242), (61079, 207, 13248), (61080, 207, 13278), (61081, 207, 13279), (61082, 207, 13303), (61083, 207, 13307), (61084, 207, 13329), (61085, 207, 13335), (61086, 207, 13347), (61087, 207, 13352), (61088, 207, 13360), (61089, 207, 13363), (61090, 207, 13389), (61091, 207, 13422), (61092, 207, 13433), (61093, 207, 13441), (61094, 207, 13448), (61095, 207, 13469), (61096, 207, 13481), (61097, 207, 13528), (61098, 207, 13539), (61099, 207, 13545), (61100, 207, 13560), (61101, 207, 13592), (61102, 207, 13593), (61103, 207, 13612), (61104, 207, 13619), (61105, 207, 13621), (61106, 207, 13624), (61107, 207, 13627), (61108, 207, 13645), (61109, 207, 13688), (61110, 207, 13693), (61111, 207, 13714), (61112, 207, 13722), (61113, 207, 13743), (61114, 207, 13756), (61115, 207, 13764), (61116, 207, 13797), (61117, 207, 13827), (61118, 207, 13831), (61119, 207, 13838), (61120, 207, 13840), (61121, 207, 13841), (61122, 207, 13856), (61123, 207, 13859), (61124, 207, 13889), (61125, 207, 13901), (61126, 207, 13902), (61127, 207, 13904), (61128, 207, 13907), (61129, 207, 13926), (61130, 207, 13960), (61131, 207, 13979), (61132, 207, 13986), (61133, 207, 13993), (61134, 207, 14015), (61135, 207, 14039), (61136, 207, 14040), (61137, 207, 14047), (61138, 207, 14056), (61139, 207, 14060), (61140, 207, 14064), (61141, 207, 14082), (61142, 207, 14130), (61143, 207, 14154), (61144, 207, 14158), (61145, 207, 14184), (61146, 207, 14188), (61147, 207, 14195), (61148, 207, 14221), (61149, 207, 14231), (61150, 207, 14233), (61151, 207, 14271), (61152, 207, 14274), (61153, 207, 14294), (61154, 207, 14295), (61155, 207, 14322), (61156, 207, 14341), (61157, 207, 14358), (61158, 207, 14383), (61159, 207, 14389), (61160, 207, 14400), (61161, 207, 14417), (61162, 207, 14423), (61163, 207, 14450), (61164, 207, 14451), (61165, 207, 14466), (61166, 207, 14467), (61167, 207, 14468), (61168, 207, 14471), (61169, 207, 14475), (61170, 207, 14492), (61171, 207, 14533), (61172, 207, 14542), (61173, 207, 14566), (61174, 207, 14567), (61175, 207, 14599), (61176, 207, 14601), (61177, 207, 14604), (61178, 207, 14610), (61179, 207, 14633), (61180, 207, 14670), (61181, 207, 14693), (61182, 207, 14695), (61183, 207, 14712), (61184, 207, 14717), (61185, 207, 14744), (61186, 207, 14745), (61187, 207, 14746), (61188, 207, 14758), (61189, 207, 14760), (61190, 207, 14767), (61191, 207, 14769), (61192, 207, 14780), (61193, 207, 14781), (61194, 207, 14789), (61195, 207, 14797), (61196, 207, 14798), (61197, 207, 14891), (61198, 207, 14898), (61199, 207, 14905), (61200, 207, 14906), (61201, 207, 14916), (61202, 207, 14920), (61203, 207, 14925), (61204, 207, 14961), (61205, 207, 14973), (61206, 207, 14977), (61207, 207, 14985), (61208, 207, 15000), (61209, 207, 15016), (61210, 207, 15017), (61211, 207, 15018), (61212, 207, 15026), (61213, 207, 15042), (61214, 207, 15054), (61215, 207, 15056), (61216, 207, 15058), (61217, 207, 15088), (61218, 207, 15095), (61219, 207, 15099), (61220, 207, 15104), (61221, 207, 15106), (61222, 207, 15137), (61223, 207, 15179), (61224, 207, 15186), (61225, 207, 15192), (61226, 207, 15196), (61227, 207, 15199), (61228, 207, 15200), (61229, 207, 15203), (61230, 207, 15273), (61231, 207, 15278), (61232, 207, 15305), (61233, 207, 15316), (61234, 207, 15324), (61235, 207, 15329), (61236, 207, 15334), (61237, 207, 15335), (61238, 207, 15362), (61239, 207, 15366), (61240, 207, 15394), (61241, 207, 15403), (61242, 207, 15421), (61243, 207, 15429), (61244, 207, 15436), (61245, 207, 15450), (61246, 207, 15517), (61247, 207, 15519), (61248, 207, 15553), (61249, 207, 15565), (61250, 207, 15568), (61251, 207, 15589), (61252, 207, 15616), (61253, 207, 15626), (61254, 207, 15662), (61255, 207, 15668), (61256, 207, 15693), (61257, 207, 15722), (61258, 207, 15730), (61259, 207, 15746), (61260, 207, 15747), (61261, 207, 15774), (61262, 207, 15777), (61263, 207, 15821), (61264, 207, 15832), (61265, 207, 15833), (61266, 207, 15836), (61267, 207, 15870), (61268, 207, 15871), (61269, 207, 15876), (61270, 207, 15904), (61271, 207, 15914), (61272, 207, 15916), (61273, 207, 15924), (61274, 207, 15928), (61275, 207, 15975), (61276, 207, 15986), (61277, 207, 16055), (61278, 207, 16056), (61279, 207, 16085), (61280, 207, 16115), (61281, 207, 16125), (61282, 207, 16127), (61283, 207, 16130), (61284, 207, 16141), (61285, 207, 16207), (61286, 207, 16211), (61287, 207, 16240), (61288, 207, 16298), (61289, 207, 16311), (61290, 207, 16334), (61291, 207, 16336), (61292, 207, 16342), (61293, 207, 16343), (61294, 207, 16346), (61295, 207, 16369), (61296, 207, 16383), (61297, 207, 16384), (61298, 207, 16389), (61299, 207, 16452), (61300, 207, 16502), (61301, 207, 16514), (61302, 207, 16528), (61303, 207, 16542), (61304, 207, 16551), (61305, 207, 16589), (61306, 207, 16597), (61307, 207, 16608), (61308, 207, 16619), (61309, 207, 16676), (61310, 207, 16704), (61311, 207, 16706), (61312, 207, 16714), (61313, 207, 16755), (61314, 207, 16762), (61315, 207, 16782), (61316, 207, 16796), (61317, 207, 16806), (61318, 207, 16842), (61319, 207, 16850), (61320, 207, 16853), (61321, 207, 16855), (61322, 207, 16868), (61323, 207, 16871), (61324, 207, 16886), (61325, 207, 16894), (61326, 207, 16923), (61327, 207, 16930), (61328, 207, 16936), (61329, 207, 16940), (61330, 207, 16945), (61331, 207, 16950), (61332, 207, 16966), (61333, 207, 16968), (61334, 207, 17043), (61335, 207, 17058), (61336, 207, 17065), (61337, 207, 17072), (61338, 207, 17084), (61339, 207, 17089), (61340, 207, 17090), (61341, 207, 17112), (61342, 207, 17113), (61343, 207, 17147), (61344, 207, 17153), (61345, 207, 17219), (61346, 207, 17223), (61347, 207, 17234), (61348, 207, 17260), (61349, 207, 17278), (61350, 207, 17287), (61351, 207, 17308), (61352, 207, 17318), (61353, 207, 17322), (61354, 207, 17331), (61355, 207, 17332), (61356, 207, 17339), (61357, 207, 17355), (61358, 207, 17361), (61359, 207, 17379), (61360, 207, 17381), (61361, 207, 17391), (61362, 207, 17402), (61363, 207, 17403), (61364, 207, 17432), (61365, 207, 17434), (61366, 207, 17456), (61367, 207, 17467), (61368, 207, 17469), (61369, 207, 17479), (61370, 207, 17500), (61371, 207, 17502), (61372, 207, 17518), (61373, 207, 17531), (61374, 207, 17535), (61375, 207, 17545), (61376, 207, 17564), (61377, 207, 17577), (61378, 207, 17592), (61379, 207, 17612), (61380, 207, 17653), (61381, 207, 17667), (61382, 207, 17706), (61383, 207, 17707), (61384, 207, 17727), (61385, 207, 17738), (61386, 207, 17757), (61387, 207, 17763), (61388, 207, 17806), (61389, 207, 17807), (61390, 207, 17816), (61391, 207, 17820), (61392, 207, 17827), (61393, 207, 17843), (61394, 207, 17852), (61395, 207, 17856), (61396, 207, 17861), (61397, 207, 17889), (61398, 207, 17899), (61399, 207, 17914), (61400, 207, 17928), (61401, 207, 17939), (61402, 207, 17946), (61403, 207, 17956), (61404, 207, 17965), (61405, 207, 17997), (61406, 207, 18002), (61407, 207, 18021), (61408, 207, 18022), (61409, 207, 18028), (61410, 207, 18061), (61411, 207, 18080), (61412, 207, 18098), (61413, 207, 18109), (61414, 207, 18137), (61415, 207, 18144), (61416, 207, 18182), (61417, 207, 18230), (61418, 207, 18266), (61419, 207, 18276), (61420, 207, 18292), (61421, 207, 18346), (61422, 207, 18378), (61423, 207, 18396), (61424, 207, 18401), (61425, 207, 18475), (61426, 207, 18493), (61427, 207, 18498), (61428, 207, 18511), (61429, 207, 18513), (61430, 207, 18530), (61431, 207, 18534), (61432, 207, 18549), (61433, 207, 18552), (61434, 207, 18570), (61435, 207, 18572), (61436, 207, 18574), (61437, 207, 18576), (61438, 207, 18581), (61439, 207, 18595), (61440, 207, 18603), (61441, 207, 18645), (61442, 207, 18654), (61443, 207, 18657), (61444, 207, 18677), (61445, 207, 18688), (61446, 207, 18713), (61447, 207, 18766), (61448, 207, 18773), (61449, 207, 18777), (61450, 207, 18783), (61451, 207, 18804), (61452, 207, 18811), (61453, 207, 18812), (61454, 207, 18820), (61455, 207, 18821), (61456, 207, 18829), (61457, 207, 18839), (61458, 207, 18847), (61459, 207, 18854), (61460, 207, 18870), (61461, 207, 18879), (61462, 207, 18913), (61463, 207, 18926), (61464, 207, 18932), (61465, 207, 18951), (61466, 207, 18955), (61467, 207, 19027), (61468, 207, 19031), (61469, 207, 19033), (61470, 207, 19043), (61471, 207, 19063), (61472, 207, 19068), (61473, 207, 19070), (61474, 207, 19081), (61475, 207, 19128), (61476, 207, 19144), (61477, 207, 19156), (61478, 207, 19166), (61479, 207, 19174), (61480, 207, 19192), (61481, 207, 19226), (61482, 207, 19246), (61483, 207, 19283), (61484, 207, 19286), (61485, 207, 19287), (61486, 207, 19305), (61487, 207, 19324), (61488, 207, 19325), (61489, 207, 19327), (61490, 207, 19334), (61491, 207, 19367), (61492, 207, 19384), (61493, 207, 19391), (61494, 207, 19395), (61495, 207, 19411), (61496, 207, 19438), (61497, 207, 19446), (61498, 207, 19448), (61499, 207, 19452), (61500, 207, 19484), (61501, 207, 19485), (61502, 207, 19490), (61503, 207, 19509), (61504, 207, 19560), (61505, 207, 19587), (61506, 207, 19598), (61507, 207, 19610), (61508, 207, 19613), (61509, 207, 19636), (61510, 207, 19678), (61511, 207, 19690), (61512, 207, 19702), (61513, 207, 19719), (61514, 207, 19729), (61515, 207, 19760), (61516, 207, 19765), (61517, 207, 19777), (61518, 207, 19786), (61519, 207, 19789), (61520, 207, 19797), (61521, 207, 19813), (61522, 207, 19819), (61523, 207, 19844), (61524, 207, 19845), (61525, 207, 19847), (61526, 207, 19872), (61527, 207, 19879), (61528, 207, 19884), (61529, 207, 19886), (61530, 207, 19899), (61531, 207, 19929), (61532, 207, 19972), (61533, 207, 19999), (61534, 207, 20001), (61535, 207, 20019), (61536, 207, 20037), (61537, 207, 20043), (61538, 207, 20056), (61539, 207, 20059), (61540, 207, 20120), (61541, 207, 20121), (61542, 207, 20136), (61543, 207, 20139), (61544, 207, 20150), (61545, 207, 20164), (61546, 207, 20179), (61547, 207, 20195), (61548, 207, 20205), (61549, 207, 20210), (61550, 207, 20211), (61551, 207, 20217), (61552, 207, 20227), (61553, 207, 20261), (61554, 207, 20311), (61555, 207, 20317), (61556, 207, 20325), (61557, 207, 20328), (61558, 207, 20330), (61559, 207, 20341), (61560, 207, 20351), (61561, 207, 20361), (61562, 207, 20374), (61563, 207, 20385), (61564, 207, 20392), (61565, 207, 20395), (61566, 207, 20423), (61567, 207, 20435), (61568, 207, 20446), (61569, 207, 20471), (61570, 207, 20477), (61571, 207, 20488), (61572, 207, 20489), (61573, 207, 20498), (61574, 207, 20530), (61575, 207, 20542), (61576, 207, 20552), (61577, 207, 20558), (61578, 207, 20572), (61579, 207, 20578), (61580, 207, 20587), (61581, 207, 20618), (61582, 207, 20626), (61583, 207, 20628), (61584, 207, 20629), (61585, 207, 20675), (61586, 207, 20679), (61587, 207, 20712), (61588, 207, 20727), (61589, 207, 20738), (61590, 207, 20747), (61591, 207, 20763), (61592, 207, 20772), (61593, 207, 20775), (61594, 207, 20786), (61595, 207, 20793), (61596, 207, 20794), (61597, 207, 20796), (61598, 207, 20797), (61599, 207, 20832), (61600, 207, 20834), (61601, 207, 20840), (61602, 207, 20842), (61603, 207, 20859), (61604, 207, 20860), (61605, 207, 20887), (61606, 207, 20898), (61607, 207, 20904), (61608, 207, 20917), (61609, 207, 20930), (61610, 207, 20934), (61611, 207, 20949), (61612, 207, 20962), (61613, 207, 20971), (61614, 207, 20998), (61615, 207, 21004), (61616, 207, 21012), (61617, 207, 21022), (61618, 207, 21023), (61619, 207, 21027), (61620, 207, 21037), (61621, 207, 21046), (61622, 207, 21070), (61623, 207, 21072), (61624, 207, 21074), (61625, 207, 21082), (61626, 207, 21095), (61627, 207, 21139), (61628, 207, 21196), (61629, 207, 21229), (61630, 207, 21256), (61631, 207, 21267), (61632, 207, 21280), (61633, 207, 21291), (61634, 207, 21294), (61635, 207, 21308), (61636, 207, 21309), (61637, 207, 21331), (61638, 207, 21369), (61639, 207, 21370), (61640, 207, 21375), (61641, 207, 21379), (61642, 207, 21390), (61643, 207, 21406), (61644, 207, 21420), (61645, 207, 21425), (61646, 207, 21436), (61647, 207, 21438), (61648, 207, 21440), (61649, 207, 21445), (61650, 207, 21452), (61651, 207, 21454), (61652, 207, 21486), (61653, 207, 21493), (61654, 207, 21497), (61655, 207, 21519), (61656, 207, 21551), (61657, 207, 21562), (61658, 207, 21581), (61659, 207, 21589), (61660, 207, 21591), (61661, 207, 21605), (61662, 207, 21618), (61663, 207, 21631), (61664, 207, 21632), (61665, 207, 21657), (61666, 207, 21680), (61667, 207, 21686), (61668, 207, 21696), (61669, 207, 21703), (61670, 207, 21710), (61671, 207, 21719), (61672, 207, 21720), (61673, 207, 21723), (61674, 207, 21727), (61675, 207, 21736), (61676, 207, 21756), (61677, 207, 21764), (61678, 207, 21791), (61679, 207, 21802), (61680, 207, 21818), (61681, 207, 21840), (61682, 207, 21852), (61683, 207, 21874), (61684, 207, 21875), (61685, 207, 21881), (61686, 207, 21892), (61687, 207, 21896), (61688, 207, 21899), (61689, 207, 21916), (61690, 207, 21948), (61691, 207, 21949), (61692, 207, 21951), (61693, 207, 21958), (61694, 207, 21966), (61695, 207, 21976), (61696, 207, 21981), (61697, 207, 22014), (61698, 207, 22027), (61699, 207, 22042), (61700, 207, 22049), (61701, 207, 22053), (61702, 207, 22080), (61703, 207, 22085), (61704, 207, 22091), (61705, 207, 22098), (61706, 207, 22119), (61707, 207, 22123), (61708, 207, 22132), (61709, 207, 22154), (61710, 207, 22166), (61711, 207, 22184), (61712, 207, 22217), (61713, 207, 22224), (61714, 207, 22229), (61715, 207, 22231), (61716, 207, 22243), (61717, 207, 22269), (61718, 207, 22282), (61719, 207, 22291), (61720, 207, 22311), (61721, 207, 22324), (61722, 207, 22326), (61723, 207, 22334), (61724, 207, 22335), (61725, 207, 22338), (61726, 207, 22350), (61727, 207, 22371), (61728, 207, 22380), (61729, 207, 22382), (61730, 207, 22388), (61731, 207, 22401), (61732, 207, 22411), (61733, 207, 22412), (61734, 207, 22423), (61735, 207, 22433), (61736, 207, 22441), (61737, 207, 22448), (61738, 207, 22451), (61739, 207, 22457), (61740, 207, 22463), (61741, 207, 22487), (61742, 207, 22488), (61743, 207, 22503), (61744, 207, 22541), (61745, 207, 22612), (61746, 207, 22614), (61747, 207, 22619), (61748, 207, 22621), (61749, 207, 22645), (61750, 207, 22668), (61751, 207, 22680), (61752, 207, 22741), (61753, 207, 22749), (61754, 207, 22758), (61755, 207, 22761), (61756, 207, 22777), (61757, 207, 22779), (61758, 207, 22782), (61759, 207, 22792), (61760, 207, 22809), (61761, 207, 22819), (61762, 207, 22824), (61763, 207, 22826), (61764, 207, 22847), (61765, 207, 22856), (61766, 207, 22860), (61767, 207, 22864), (61768, 207, 22920), (61769, 207, 22929), (61770, 207, 22934), (61771, 207, 22951), (61772, 207, 22983), (61773, 207, 22986), (61774, 207, 23002), (61775, 207, 23050), (61776, 207, 23053), (61777, 207, 23057), (61778, 207, 23058), (61779, 207, 23078), (61780, 207, 23089), (61781, 207, 23106), (61782, 207, 23160), (61783, 207, 23174), (61784, 207, 23198), (61785, 207, 23203), (61786, 207, 23206), (61787, 207, 23248), (61788, 207, 23285), (61789, 207, 23286), (61790, 207, 23295), (61791, 207, 23335), (61792, 207, 23396), (61793, 207, 23414), (61794, 207, 23421), (61795, 207, 23455), (61796, 207, 23482), (61797, 207, 23496), (61798, 207, 23522), (61799, 207, 23528), (61800, 207, 23529), (61801, 207, 23541), (61802, 207, 23592), (61803, 207, 23609), (61804, 207, 23631), (61805, 207, 23656), (61806, 207, 23662), (61807, 207, 23687), (61808, 207, 23693), (61809, 207, 23705), (61810, 207, 23706), (61811, 207, 23752), (61812, 207, 23777), (61813, 207, 23799), (61814, 207, 23821), (61815, 207, 23948), (61816, 207, 23956), (61817, 207, 23974), (61818, 207, 23985), (61819, 207, 24002), (61820, 207, 24050), (61821, 207, 24105), (61822, 207, 24117), (61823, 207, 24122), (61824, 207, 24151), (61825, 207, 24184), (61826, 207, 24190), (61827, 207, 24206), (61828, 207, 24207), (61829, 207, 24246), (61830, 207, 24254), (61831, 207, 24269), (61832, 207, 24281), (61833, 207, 24337), (61834, 207, 24368), (61835, 207, 24450), (61836, 207, 24473), (61837, 207, 24515), (61838, 207, 24536), (61839, 207, 24691), (61840, 207, 24707), (61841, 207, 24721), (61842, 207, 24723), (61843, 207, 24741), (61844, 207, 24752), (61845, 207, 24763), (61846, 207, 24764), (61847, 207, 24810), (61848, 207, 24932), (61849, 207, 24992), (61850, 207, 24994), (61851, 207, 24999), (61852, 207, 25003), (61853, 207, 25062), (61854, 207, 25066), (61855, 207, 25068), (61856, 207, 25112), (61857, 207, 25113), (61858, 207, 25151), (61859, 207, 25155), (61860, 207, 25157), (61861, 207, 25166), (61862, 207, 25173), (61863, 207, 25181), (61864, 207, 25185), (61865, 207, 25190), (61866, 207, 25195), (61867, 207, 25202), (61868, 207, 25221), (61869, 207, 25225), (61870, 207, 25226), (61871, 207, 25227), (61872, 207, 25228), (61873, 207, 25229), (61874, 207, 25230), (61875, 207, 25231), (61876, 207, 25232), (63567, 208, 87), (63568, 208, 147), (63569, 208, 258), (63570, 208, 325), (63571, 208, 438), (63572, 208, 502), (63573, 208, 542), (63574, 208, 667), (63575, 208, 866), (63576, 208, 887), (63577, 208, 987), (63578, 208, 1166), (63579, 208, 1357), (63580, 208, 1386), (63581, 208, 1509), (63582, 208, 1573), (63583, 208, 1762), (63584, 208, 1764), (63585, 208, 1795), (63586, 208, 1872), (63587, 208, 2220), (63588, 208, 2269), (63589, 208, 2328), (63590, 208, 2334), (63591, 208, 2505), (63592, 208, 2725), (63593, 208, 2919), (63594, 208, 2954), (63595, 208, 3053), (63596, 208, 3146), (63597, 208, 3193), (63598, 208, 3264), (63599, 208, 3327), (63600, 208, 3443), (63601, 208, 3504), (63602, 208, 3641), (63603, 208, 3672), (63604, 208, 3723), (63605, 208, 3794), (63606, 208, 4126), (63607, 208, 4129), (63608, 208, 4385), (63609, 208, 4389), (63610, 208, 4393), (63611, 208, 4432), (63612, 208, 4543), (63613, 208, 4592), (63614, 208, 4897), (63615, 208, 4966), (63616, 208, 4968), (63617, 208, 5122), (63618, 208, 5365), (63619, 208, 5542), (63620, 208, 5548), (63621, 208, 5577), (63622, 208, 5936), (63623, 208, 6149), (63624, 208, 6372), (63625, 208, 6652), (63626, 208, 6997), (63627, 208, 7270), (63628, 208, 7438), (63629, 208, 7509), (63630, 208, 7754), (63631, 208, 7829), (63632, 208, 8291), (63633, 208, 8413), (63634, 208, 8511), (63635, 208, 8559), (63636, 208, 8704), (63637, 208, 9268), (63638, 208, 9517), (63639, 208, 9742), (63640, 208, 10083), (63641, 208, 10690), (63642, 208, 11011), (63643, 208, 11048), (63644, 208, 11472), (63645, 208, 11796), (63646, 208, 12073), (63647, 208, 12333), (63648, 208, 12525), (63649, 208, 13441), (63650, 208, 13714), (63651, 208, 14597), (63652, 208, 14760), (63653, 208, 14846), (63654, 208, 15804), (63655, 208, 15818), (63656, 208, 16085), (63657, 208, 16618), (63658, 208, 16782), (63659, 208, 16902), (63660, 208, 16921), (63661, 208, 17151), (63662, 208, 18818), (63663, 208, 18941), (63664, 208, 19033), (63665, 208, 19126), (63666, 208, 19306), (63667, 208, 19328), (63668, 208, 19371), (63669, 208, 20150), (63670, 208, 20154), (63671, 208, 20532), (63672, 208, 21376), (63673, 208, 21728), (63674, 208, 22046), (63675, 208, 22099), (63676, 208, 22388), (63677, 208, 22398), (63678, 208, 22413), (63679, 208, 22908), (63680, 208, 23146), (63681, 208, 23694), (63682, 208, 24177), (63683, 208, 25096), (63684, 208, 25165), (63685, 208, 25232), (63694, 209, 230), (63695, 209, 329), (63696, 209, 484), (63697, 209, 680), (63698, 209, 728), (63699, 209, 773), (63700, 209, 1864), (63701, 209, 1934), (63702, 209, 2534), (63703, 209, 2668), (63704, 209, 2995), (63705, 209, 3132), (63706, 209, 3422), (63707, 209, 3457), (63708, 209, 4027), (63709, 209, 4095), (63710, 209, 4614), (63711, 209, 4865), (63712, 209, 5052), (63713, 209, 5457), (63714, 209, 5470), (63715, 209, 5617), (63716, 209, 5867), (63717, 209, 5970), (63718, 209, 5991), (63719, 209, 6233), (63720, 209, 6362), (63721, 209, 6480), (63722, 209, 7105), (63723, 209, 7248), (63724, 209, 7430), (63725, 209, 7957), (63726, 209, 8918), (63727, 209, 8923), (63728, 209, 9126), (63729, 209, 9945), (63730, 209, 10784), (63731, 209, 11239), (63732, 209, 11351), (63733, 209, 11394), (63734, 209, 12102), (63735, 209, 13031), (63736, 209, 13533), (63737, 209, 13575), (63738, 209, 13645), (63739, 209, 14655), (63740, 209, 14836), (63741, 209, 14969), (63742, 209, 14997), (63743, 209, 16083), (63744, 209, 16410), (63745, 209, 17843), (63746, 209, 17877), (63747, 209, 18218), (63748, 209, 19678), (63749, 209, 20494), (63750, 209, 21412), (63751, 209, 22692), (63752, 209, 22900), (63753, 209, 22956), (63754, 209, 22957), (63755, 209, 22958), (63756, 209, 23061), (63757, 209, 23929), (63758, 209, 24117), (63759, 209, 25130), (63821, 210, 46), (63822, 210, 149), (63823, 210, 152), (63824, 210, 173), (63825, 210, 233), (63826, 210, 257), (63827, 210, 267), (63828, 210, 300), (63829, 210, 349), (63830, 210, 376), (63831, 210, 378), (63832, 210, 515), (63833, 210, 518), (63834, 210, 530), (63835, 210, 585), (63836, 210, 623), (63837, 210, 654), (63838, 210, 700), (63839, 210, 765), (63840, 210, 768), (63841, 210, 788), (63842, 210, 849), (63843, 210, 867), (63844, 210, 877), (63845, 210, 883), (63846, 210, 891), (63847, 210, 895), (63848, 210, 899), (63849, 210, 929), (63850, 210, 984), (63851, 210, 1003), (63852, 210, 1085), (63853, 210, 1128), (63854, 210, 1201), (63855, 210, 1273), (63856, 210, 1300), (63857, 210, 1315), (63858, 210, 1338), (63859, 210, 1365), (63860, 210, 1471), (63861, 210, 1545), (63862, 210, 1548), (63863, 210, 1559), (63864, 210, 1579), (63865, 210, 1609), (63866, 210, 1637), (63867, 210, 1667), (63868, 210, 1679), (63869, 210, 1707), (63870, 210, 1711), (63871, 210, 1719), (63872, 210, 1792), (63873, 210, 1855), (63874, 210, 1859), (63875, 210, 1860), (63876, 210, 1866), (63877, 210, 1870), (63878, 210, 1960), (63879, 210, 1974), (63880, 210, 2050), (63881, 210, 2067), (63882, 210, 2072), (63883, 210, 2084), (63884, 210, 2108), (63885, 210, 2118), (63886, 210, 2130), (63887, 210, 2148), (63888, 210, 2160), (63889, 210, 2266), (63890, 210, 2285), (63891, 210, 2332), (63892, 210, 2342), (63893, 210, 2369), (63894, 210, 2380), (63895, 210, 2400), (63896, 210, 2443), (63897, 210, 2462), (63898, 210, 2470), (63899, 210, 2479), (63900, 210, 2503), (63901, 210, 2511), (63902, 210, 2530), (63903, 210, 2545), (63904, 210, 2603), (63905, 210, 2639), (63906, 210, 2657), (63907, 210, 2821), (63908, 210, 2832), (63909, 210, 2849), (63910, 210, 2850), (63911, 210, 2886), (63912, 210, 2975), (63913, 210, 2997), (63914, 210, 3040), (63915, 210, 3046), (63916, 210, 3105), (63917, 210, 3149), (63918, 210, 3169), (63919, 210, 3208), (63920, 210, 3291), (63921, 210, 3427), (63922, 210, 3479), (63923, 210, 3485), (63924, 210, 3505), (63925, 210, 3513), (63926, 210, 3580), (63927, 210, 3623), (63928, 210, 3661), (63929, 210, 3815), (63930, 210, 3832), (63931, 210, 3854), (63932, 210, 3879), (63933, 210, 3914), (63934, 210, 3940), (63935, 210, 4010), (63936, 210, 4018), (63937, 210, 4059), (63938, 210, 4070), (63939, 210, 4084), (63940, 210, 4102), (63941, 210, 4149), (63942, 210, 4177), (63943, 210, 4212), (63944, 210, 4293), (63945, 210, 4329), (63946, 210, 4331), (63947, 210, 4351), (63948, 210, 4355), (63949, 210, 4403), (63950, 210, 4416), (63951, 210, 4491), (63952, 210, 4506), (63953, 210, 4521), (63954, 210, 4528), (63955, 210, 4554), (63956, 210, 4626), (63957, 210, 4641), (63958, 210, 4687), (63959, 210, 4706), (63960, 210, 4777), (63961, 210, 4887), (63962, 210, 4914), (63963, 210, 4935), (63964, 210, 4983), (63965, 210, 4992), (63966, 210, 5004), (63967, 210, 5008), (63968, 210, 5026), (63969, 210, 5095), (63970, 210, 5166), (63971, 210, 5169), (63972, 210, 5253), (63973, 210, 5267), (63974, 210, 5317), (63975, 210, 5339), (63976, 210, 5351), (63977, 210, 5352), (63978, 210, 5353), (63979, 210, 5427), (63980, 210, 5477), (63981, 210, 5704), (63982, 210, 5815), (63983, 210, 5930), (63984, 210, 5973), (63985, 210, 5982), (63986, 210, 6011), (63987, 210, 6095), (63988, 210, 6203), (63989, 210, 6206), (63990, 210, 6216), (63991, 210, 6239), (63992, 210, 6338), (63993, 210, 6402), (63994, 210, 6469), (63995, 210, 6479), (63996, 210, 6500), (63997, 210, 6545), (63998, 210, 6553), (63999, 210, 6577), (64000, 210, 6587), (64001, 210, 6615), (64002, 210, 6777), (64003, 210, 6944), (64004, 210, 6947), (64005, 210, 6950), (64006, 210, 7187), (64007, 210, 7243), (64008, 210, 7244), (64009, 210, 7250), (64010, 210, 7325), (64011, 210, 7376), (64012, 210, 7401), (64013, 210, 7442), (64014, 210, 7445), (64015, 210, 7461), (64016, 210, 7577), (64017, 210, 7778), (64018, 210, 7812), (64019, 210, 7857), (64020, 210, 7940), (64021, 210, 7945), (64022, 210, 7991), (64023, 210, 8064), (64024, 210, 8153), (64025, 210, 8247), (64026, 210, 8274), (64027, 210, 8316), (64028, 210, 8381), (64029, 210, 8382), (64030, 210, 8399), (64031, 210, 8573), (64032, 210, 8589), (64033, 210, 9112), (64034, 210, 9176), (64035, 210, 9277), (64036, 210, 9369), (64037, 210, 9380), (64038, 210, 9424), (64039, 210, 9554), (64040, 210, 9566), (64041, 210, 9703), (64042, 210, 9967), (64043, 210, 9995), (64044, 210, 9996), (64045, 210, 10017), (64046, 210, 10054), (64047, 210, 10209), (64048, 210, 10214), (64049, 210, 10355), (64050, 210, 10374), (64051, 210, 10402), (64052, 210, 10450), (64053, 210, 10461), (64054, 210, 10476), (64055, 210, 10480), (64056, 210, 10991), (64057, 210, 11045), (64058, 210, 11090), (64059, 210, 11249), (64060, 210, 11339), (64061, 210, 11343), (64062, 210, 11411), (64063, 210, 11659), (64064, 210, 11713), (64065, 210, 11715), (64066, 210, 11777), (64067, 210, 11908), (64068, 210, 11960), (64069, 210, 12016), (64070, 210, 12129), (64071, 210, 12311), (64072, 210, 12363), (64073, 210, 12369), (64074, 210, 12454), (64075, 210, 12477), (64076, 210, 12899), (64077, 210, 13056), (64078, 210, 13241), (64079, 210, 13280), (64080, 210, 13781), (64081, 210, 13926), (64082, 210, 14049), (64083, 210, 14127), (64084, 210, 14475), (64085, 210, 14574), (64086, 210, 14744), (64087, 210, 14848), (64088, 210, 14895), (64089, 210, 14965), (64090, 210, 15095), (64091, 210, 15243), (64092, 210, 15308), (64093, 210, 15374), (64094, 210, 15477), (64095, 210, 15546), (64096, 210, 15568), (64097, 210, 15616), (64098, 210, 15732), (64099, 210, 15960), (64100, 210, 15992), (64101, 210, 16086), (64102, 210, 16149), (64103, 210, 16180), (64104, 210, 16490), (64105, 210, 16774), (64106, 210, 17147), (64107, 210, 17194), (64108, 210, 17253), (64109, 210, 17279), (64110, 210, 17283), (64111, 210, 17406), (64112, 210, 17580), (64113, 210, 17768), (64114, 210, 17954), (64115, 210, 18090), (64116, 210, 18526), (64117, 210, 18884), (64118, 210, 18885), (64119, 210, 19230), (64120, 210, 19246), (64121, 210, 19407), (64122, 210, 19452), (64123, 210, 19488), (64124, 210, 19563), (64125, 210, 19672), (64126, 210, 19768), (64127, 210, 19769), (64128, 210, 20015), (64129, 210, 20049), (64130, 210, 20074), (64131, 210, 20075), (64132, 210, 20091), (64133, 210, 20230), (64134, 210, 20316), (64135, 210, 20485), (64136, 210, 20504), (64137, 210, 20553), (64138, 210, 20560), (64139, 210, 20616), (64140, 210, 20707), (64141, 210, 20752), (64142, 210, 20898), (64143, 210, 20918), (64144, 210, 20966), (64145, 210, 21037), (64146, 210, 21169), (64147, 210, 21253), (64148, 210, 21272), (64149, 210, 21310), (64150, 210, 21320), (64151, 210, 21322), (64152, 210, 21329), (64153, 210, 21404), (64154, 210, 21407), (64155, 210, 21408), (64156, 210, 21409), (64157, 210, 21799), (64158, 210, 21863), (64159, 210, 21885), (64160, 210, 21903), (64161, 210, 22052), (64162, 210, 22182), (64163, 210, 22414), (64164, 210, 22571), (64165, 210, 22594), (64166, 210, 22638), (64167, 210, 22672), (64168, 210, 23010), (64169, 210, 23099), (64170, 210, 23295), (64171, 210, 23303), (64172, 210, 23317), (64173, 210, 23551), (64174, 210, 23722), (64175, 210, 23759), (64176, 210, 23929), (64177, 210, 24127), (64178, 210, 24176), (64179, 210, 24240), (64180, 210, 24386), (64181, 210, 25019), (64182, 210, 25020), (64183, 210, 25164), (64332, 211, 282), (64333, 211, 486), (64334, 211, 563), (64335, 211, 780), (64336, 211, 930), (64337, 211, 1056), (64338, 211, 1137), (64339, 211, 1184), (64340, 211, 1236), (64341, 211, 1333), (64342, 211, 1567), (64343, 211, 1935), (64344, 211, 2161), (64345, 211, 2226), (64346, 211, 2323), (64347, 211, 2448), (64348, 211, 2495), (64349, 211, 2620), (64350, 211, 2653), (64351, 211, 2726), (64352, 211, 2830), (64353, 211, 2985), (64354, 211, 3089), (64355, 211, 3187), (64356, 211, 3210), (64357, 211, 3211), (64358, 211, 3319), (64359, 211, 3323), (64360, 211, 3328), (64361, 211, 3367), (64362, 211, 3394), (64363, 211, 3447), (64364, 211, 3500), (64365, 211, 3533), (64366, 211, 3692), (64367, 211, 3790), (64368, 211, 3791), (64369, 211, 3871), (64370, 211, 3915), (64371, 211, 3947), (64372, 211, 4196), (64373, 211, 4294), (64374, 211, 4436), (64375, 211, 4498), (64376, 211, 4505), (64377, 211, 4579), (64378, 211, 4755), (64379, 211, 4780), (64380, 211, 4793), (64381, 211, 4798), (64382, 211, 4816), (64383, 211, 4819), (64384, 211, 4945), (64385, 211, 5031), (64386, 211, 5050), (64387, 211, 5079), (64388, 211, 5512), (64389, 211, 5646), (64390, 211, 5963), (64391, 211, 5964), (64392, 211, 5999), (64393, 211, 6023), (64394, 211, 6056), (64395, 211, 6328), (64396, 211, 6357), (64397, 211, 6410), (64398, 211, 6510), (64399, 211, 6565), (64400, 211, 6773), (64401, 211, 7046), (64402, 211, 7088), (64403, 211, 7207), (64404, 211, 7260), (64405, 211, 7292), (64406, 211, 7362), (64407, 211, 7383), (64408, 211, 7394), (64409, 211, 7455), (64410, 211, 7568), (64411, 211, 7571), (64412, 211, 7580), (64413, 211, 7797), (64414, 211, 7974), (64415, 211, 8084), (64416, 211, 8244), (64417, 211, 8256), (64418, 211, 8303), (64419, 211, 8390), (64420, 211, 8422), (64421, 211, 8429), (64422, 211, 8481), (64423, 211, 8812), (64424, 211, 8857), (64425, 211, 9063), (64426, 211, 9198), (64427, 211, 9510), (64428, 211, 10080), (64429, 211, 10116), (64430, 211, 10559), (64431, 211, 10605), (64432, 211, 10669), (64433, 211, 10748), (64434, 211, 10825), (64435, 211, 11398), (64436, 211, 11466), (64437, 211, 11546), (64438, 211, 11604), (64439, 211, 11654), (64440, 211, 11666), (64441, 211, 11849), (64442, 211, 11904), (64443, 211, 12808), (64444, 211, 12887), (64445, 211, 13453), (64446, 211, 13685), (64447, 211, 14121), (64448, 211, 14887), (64449, 211, 14889), (64450, 211, 15140), (64451, 211, 15225), (64452, 211, 15615), (64453, 211, 15663), (64454, 211, 15919), (64455, 211, 17086), (64456, 211, 17352), (64457, 211, 17834), (64458, 211, 17972), (64459, 211, 18341), (64460, 211, 18488), (64461, 211, 18645), (64462, 211, 18958), (64463, 211, 19132), (64464, 211, 19276), (64465, 211, 19442), (64466, 211, 19457), (64467, 211, 19861), (64468, 211, 20142), (64469, 211, 20321), (64470, 211, 20499), (64471, 211, 20578), (64472, 211, 20778), (64473, 211, 20824), (64474, 211, 20829), (64475, 211, 20891), (64476, 211, 20958), (64477, 211, 21221), (64478, 211, 21256), (64479, 211, 21504), (64480, 211, 21549), (64481, 211, 21677), (64482, 211, 21682), (64483, 211, 21997), (64484, 211, 22038), (64485, 211, 22111), (64486, 211, 22523), (64487, 211, 22556), (64488, 211, 22667), (64489, 211, 22693), (64490, 211, 22849), (64491, 211, 22859), (64492, 211, 22928), (64493, 211, 23072), (64494, 211, 23125), (64495, 211, 23159), (64496, 211, 23251), (64497, 211, 23252), (64498, 211, 23305), (64499, 211, 23520), (64500, 211, 23637), (64501, 211, 23729), (64502, 211, 23764), (64503, 211, 23809), (64504, 211, 23869), (64505, 211, 23958), (64506, 211, 24036), (64507, 211, 24043), (64508, 211, 24811), (64509, 211, 24896), (64510, 211, 25000), (64511, 211, 25025), (64512, 211, 25053), (64587, 212, 1), (64588, 212, 16), (64589, 212, 40), (64590, 212, 43), (64591, 212, 50), (64592, 212, 66), (64593, 212, 99), (64594, 212, 125), (64595, 212, 148), (64596, 212, 170), (64597, 212, 222), (64598, 212, 248), (64599, 212, 276), (64600, 212, 320), (64601, 212, 321), (64602, 212, 343), (64603, 212, 348), (64604, 212, 356), (64605, 212, 366), (64606, 212, 375), (64607, 212, 376), (64608, 212, 432), (64609, 212, 457), (64610, 212, 504), (64611, 212, 527), (64612, 212, 594), (64613, 212, 612), (64614, 212, 613), (64615, 212, 688), (64616, 212, 692), (64617, 212, 716), (64618, 212, 730), (64619, 212, 732), (64620, 212, 745), (64621, 212, 779), (64622, 212, 858), (64623, 212, 909), (64624, 212, 912), (64625, 212, 950), (64626, 212, 955), (64627, 212, 963), (64628, 212, 968), (64629, 212, 996), (64630, 212, 1054), (64631, 212, 1059), (64632, 212, 1078), (64633, 212, 1118), (64634, 212, 1172), (64635, 212, 1176), (64636, 212, 1184), (64637, 212, 1198), (64638, 212, 1244), (64639, 212, 1279), (64640, 212, 1296), (64641, 212, 1401), (64642, 212, 1414), (64643, 212, 1424), (64644, 212, 1448), (64645, 212, 1450), (64646, 212, 1541), (64647, 212, 1554), (64648, 212, 1565), (64649, 212, 1574), (64650, 212, 1652), (64651, 212, 1660), (64652, 212, 1772), (64653, 212, 1775), (64654, 212, 1832), (64655, 212, 1837), (64656, 212, 1907), (64657, 212, 1932), (64658, 212, 1945), (64659, 212, 1990), (64660, 212, 2049), (64661, 212, 2074), (64662, 212, 2093), (64663, 212, 2118), (64664, 212, 2177), (64665, 212, 2191), (64666, 212, 2221), (64667, 212, 2291), (64668, 212, 2326), (64669, 212, 2392), (64670, 212, 2424), (64671, 212, 2464), (64672, 212, 2478), (64673, 212, 2485), (64674, 212, 2492), (64675, 212, 2529), (64676, 212, 2587), (64677, 212, 2619), (64678, 212, 2620), (64679, 212, 2656), (64680, 212, 2662), (64681, 212, 2676), (64682, 212, 2683), (64683, 212, 2738), (64684, 212, 2831), (64685, 212, 2843), (64686, 212, 2858), (64687, 212, 2877), (64688, 212, 2895), (64689, 212, 2941), (64690, 212, 2945), (64691, 212, 2960), (64692, 212, 2997), (64693, 212, 3010), (64694, 212, 3111), (64695, 212, 3120), (64696, 212, 3144), (64697, 212, 3173), (64698, 212, 3203), (64699, 212, 3243), (64700, 212, 3271), (64701, 212, 3278), (64702, 212, 3280), (64703, 212, 3287), (64704, 212, 3340), (64705, 212, 3349), (64706, 212, 3382), (64707, 212, 3433), (64708, 212, 3447), (64709, 212, 3469), (64710, 212, 3488), (64711, 212, 3507), (64712, 212, 3533), (64713, 212, 3551), (64714, 212, 3562), (64715, 212, 3572), (64716, 212, 3593), (64717, 212, 3633), (64718, 212, 3650), (64719, 212, 3746), (64720, 212, 3758), (64721, 212, 3801), (64722, 212, 3831), (64723, 212, 3860), (64724, 212, 3869), (64725, 212, 3874), (64726, 212, 3939), (64727, 212, 3973), (64728, 212, 3977), (64729, 212, 4071), (64730, 212, 4077), (64731, 212, 4105), (64732, 212, 4152), (64733, 212, 4197), (64734, 212, 4213), (64735, 212, 4219), (64736, 212, 4282), (64737, 212, 4290), (64738, 212, 4350), (64739, 212, 4356), (64740, 212, 4370), (64741, 212, 4404), (64742, 212, 4435), (64743, 212, 4466), (64744, 212, 4541), (64745, 212, 4553), (64746, 212, 4636), (64747, 212, 4655), (64748, 212, 4682), (64749, 212, 4690), (64750, 212, 4833), (64751, 212, 4881), (64752, 212, 5022), (64753, 212, 5031), (64754, 212, 5065), (64755, 212, 5115), (64756, 212, 5264), (64757, 212, 5339), (64758, 212, 5368), (64759, 212, 5369), (64760, 212, 5410), (64761, 212, 5443), (64762, 212, 5472), (64763, 212, 5692), (64764, 212, 5863), (64765, 212, 5907), (64766, 212, 5911), (64767, 212, 5955), (64768, 212, 5986), (64769, 212, 6089), (64770, 212, 6097), (64771, 212, 6111), (64772, 212, 6134), (64773, 212, 6197), (64774, 212, 6210), (64775, 212, 6226), (64776, 212, 6228), (64777, 212, 6307), (64778, 212, 6308), (64779, 212, 6320), (64780, 212, 6342), (64781, 212, 6441), (64782, 212, 6468), (64783, 212, 6486), (64784, 212, 6554), (64785, 212, 6582), (64786, 212, 6609), (64787, 212, 6616), (64788, 212, 6657), (64789, 212, 6779), (64790, 212, 6848), (64791, 212, 6861), (64792, 212, 6879), (64793, 212, 6995), (64794, 212, 7080), (64795, 212, 7086), (64796, 212, 7297), (64797, 212, 7333), (64798, 212, 7339), (64799, 212, 7433), (64800, 212, 7521), (64801, 212, 7546), (64802, 212, 7845), (64803, 212, 7861), (64804, 212, 8026), (64805, 212, 8118), (64806, 212, 8189), (64807, 212, 8260), (64808, 212, 8495), (64809, 212, 8695), (64810, 212, 8735), (64811, 212, 8812), (64812, 212, 8893), (64813, 212, 8903), (64814, 212, 8965), (64815, 212, 8973), (64816, 212, 9071), (64817, 212, 9085), (64818, 212, 9095), (64819, 212, 9120), (64820, 212, 9223), (64821, 212, 9284), (64822, 212, 9549), (64823, 212, 9588), (64824, 212, 9808), (64825, 212, 10171), (64826, 212, 10186), (64827, 212, 10203), (64828, 212, 10237), (64829, 212, 10270), (64830, 212, 10332), (64831, 212, 10477), (64832, 212, 10615), (64833, 212, 10813), (64834, 212, 10923), (64835, 212, 11000), (64836, 212, 11358), (64837, 212, 11719), (64838, 212, 11860), (64839, 212, 11948), (64840, 212, 12194), (64841, 212, 12218), (64842, 212, 12362), (64843, 212, 12406), (64844, 212, 12439), (64845, 212, 12607), (64846, 212, 12874), (64847, 212, 13752), (64848, 212, 13776), (64849, 212, 13827), (64850, 212, 14296), (64851, 212, 14385), (64852, 212, 14488), (64853, 212, 14501), (64854, 212, 14584), (64855, 212, 14884), (64856, 212, 15163), (64857, 212, 15422), (64858, 212, 15502), (64859, 212, 15747), (64860, 212, 16220), (64861, 212, 16286), (64862, 212, 16376), (64863, 212, 17309), (64864, 212, 17330), (64865, 212, 17532), (64866, 212, 17948), (64867, 212, 17994), (64868, 212, 18110), (64869, 212, 18144), (64870, 212, 18696), (64871, 212, 19365), (64872, 212, 19774), (64873, 212, 19861), (64874, 212, 20424), (64875, 212, 20554), (64876, 212, 20639), (64877, 212, 20736), (64878, 212, 20923), (64879, 212, 21039), (64880, 212, 21114), (64881, 212, 21192), (64882, 212, 21332), (64883, 212, 21410), (64884, 212, 21411), (64885, 212, 21412), (64886, 212, 21611), (64887, 212, 21682), (64888, 212, 21695), (64889, 212, 21710), (64890, 212, 21750), (64891, 212, 21774), (64892, 212, 21881), (64893, 212, 21938), (64894, 212, 21990), (64895, 212, 21997), (64896, 212, 22069), (64897, 212, 22090), (64898, 212, 22183), (64899, 212, 22193), (64900, 212, 22230), (64901, 212, 22290), (64902, 212, 22293), (64903, 212, 22312), (64904, 212, 22402), (64905, 212, 22523), (64906, 212, 22627), (64907, 212, 22754), (64908, 212, 22871), (64909, 212, 22877), (64910, 212, 22903), (64911, 212, 22976), (64912, 212, 23029), (64913, 212, 23093), (64914, 212, 23133), (64915, 212, 23192), (64916, 212, 23217), (64917, 212, 23221), (64918, 212, 23251), (64919, 212, 23299), (64920, 212, 23391), (64921, 212, 23415), (64922, 212, 23433), (64923, 212, 23587), (64924, 212, 23629), (64925, 212, 23654), (64926, 212, 23658), (64927, 212, 23732), (64928, 212, 23768), (64929, 212, 24033), (64930, 212, 24088), (64931, 212, 24253), (64932, 212, 24254), (64933, 212, 24857), (64934, 212, 25012), (64935, 212, 25044), (64936, 212, 25099), (64937, 212, 25102), (64938, 212, 25103), (64939, 212, 25128), (64940, 212, 25161), (64941, 212, 25223), (65098, 213, 151), (65099, 213, 277), (65100, 213, 378), (65101, 213, 482), (65102, 213, 750), (65103, 213, 1074), (65104, 213, 1104), (65105, 213, 1158), (65106, 213, 1265), (65107, 213, 1376), (65108, 213, 1800), (65109, 213, 1902), (65110, 213, 1946), (65111, 213, 2144), (65112, 213, 2193), (65113, 213, 2216), (65114, 213, 2354), (65115, 213, 2362), (65116, 213, 2591), (65117, 213, 2828), (65118, 213, 2931), (65119, 213, 3168), (65120, 213, 3257), (65121, 213, 3285), (65122, 213, 3399), (65123, 213, 3484), (65124, 213, 3595), (65125, 213, 3599), (65126, 213, 3651), (65127, 213, 3658), (65128, 213, 4145), (65129, 213, 4200), (65130, 213, 4397), (65131, 213, 4569), (65132, 213, 4638), (65133, 213, 4747), (65134, 213, 5094), (65135, 213, 5105), (65136, 213, 5198), (65137, 213, 5562), (65138, 213, 5709), (65139, 213, 5738), (65140, 213, 5989), (65141, 213, 6047), (65142, 213, 6084), (65143, 213, 6102), (65144, 213, 6125), (65145, 213, 6551), (65146, 213, 6646), (65147, 213, 6654), (65148, 213, 6656), (65149, 213, 6713), (65150, 213, 6786), (65151, 213, 7228), (65152, 213, 7290), (65153, 213, 7324), (65154, 213, 7490), (65155, 213, 7686), (65156, 213, 7761), (65157, 213, 7962), (65158, 213, 8046), (65159, 213, 8055), (65160, 213, 8160), (65161, 213, 8359), (65162, 213, 8399), (65163, 213, 8817), (65164, 213, 9076), (65165, 213, 9119), (65166, 213, 9325), (65167, 213, 9446), (65168, 213, 9485), (65169, 213, 10479), (65170, 213, 10864), (65171, 213, 10993), (65172, 213, 11021), (65173, 213, 11086), (65174, 213, 11195), (65175, 213, 11326), (65176, 213, 12258), (65177, 213, 12385), (65178, 213, 12551), (65179, 213, 12582), (65180, 213, 12624), (65181, 213, 12626), (65182, 213, 12829), (65183, 213, 12843), (65184, 213, 13781), (65185, 213, 13870), (65186, 213, 14062), (65187, 213, 14233), (65188, 213, 15467), (65189, 213, 15535), (65190, 213, 15778), (65191, 213, 16079), (65192, 213, 16115), (65193, 213, 17738), (65194, 213, 17846), (65195, 213, 18106), (65196, 213, 18478), (65197, 213, 18820), (65198, 213, 19543), (65199, 213, 19973), (65200, 213, 20305), (65201, 213, 20476), (65202, 213, 20841), (65203, 213, 20965), (65204, 213, 21079), (65205, 213, 21469), (65206, 213, 21689), (65207, 213, 21723), (65208, 213, 21788), (65209, 213, 22367), (65210, 213, 22502), (65211, 213, 22672), (65212, 213, 22687), (65213, 213, 22829), (65214, 213, 22868), (65215, 213, 24024), (65216, 213, 24115), (65217, 213, 25021), (65218, 213, 25152), (65219, 213, 25163), (65220, 213, 25193), (65225, 214, 2025), (65226, 214, 2046), (65227, 214, 2138), (65228, 214, 2230), (65229, 214, 2236), (65230, 214, 2930), (65231, 214, 3097), (65232, 214, 3318), (65233, 214, 3485), (65234, 214, 3543), (65235, 214, 3623), (65236, 214, 3682), (65237, 214, 4180), (65238, 214, 4227), (65239, 214, 4327), (65240, 214, 4352), (65241, 214, 4530), (65242, 214, 4602), (65243, 214, 4714), (65244, 214, 4789), (65245, 214, 4915), (65246, 214, 4992), (65247, 214, 5125), (65248, 214, 5139), (65249, 214, 5327), (65250, 214, 5442), (65251, 214, 5478), (65252, 214, 5791), (65253, 214, 5801), (65254, 214, 5907), (65255, 214, 5966), (65256, 214, 6159), (65257, 214, 6206), (65258, 214, 6276), (65259, 214, 6359), (65260, 214, 6603), (65261, 214, 6775), (65262, 214, 6805), (65263, 214, 6902), (65264, 214, 7186), (65265, 214, 7369), (65266, 214, 7534), (65267, 214, 7631), (65268, 214, 7667), (65269, 214, 7703), (65270, 214, 7801), (65271, 214, 7945), (65272, 214, 8077), (65273, 214, 8181), (65274, 214, 8402), (65275, 214, 8404), (65276, 214, 8757), (65277, 214, 9021), (65278, 214, 9270), (65279, 214, 9504), (65280, 214, 9550), (65281, 214, 9986), (65282, 214, 10055), (65283, 214, 10106), (65284, 214, 10317), (65285, 214, 10571), (65286, 214, 10594), (65287, 214, 10680), (65288, 214, 10872), (65289, 214, 11502), (65290, 214, 12069), (65291, 214, 12174), (65292, 214, 12938), (65293, 214, 13560), (65294, 214, 13632), (65295, 214, 14251), (65296, 214, 14302), (65297, 214, 15121), (65298, 214, 15329), (65299, 214, 15349), (65300, 214, 15572), (65301, 214, 15801), (65302, 214, 16287), (65303, 214, 16943), (65304, 214, 17676), (65305, 214, 17819), (65306, 214, 18086), (65307, 214, 18209), (65308, 214, 18378), (65309, 214, 18619), (65310, 214, 18669), (65311, 214, 18821), (65312, 214, 20074), (65313, 214, 20363), (65314, 214, 20424), (65315, 214, 20922), (65316, 214, 21289), (65317, 214, 21845), (65318, 214, 21940), (65319, 214, 22747), (65320, 214, 22756), (65321, 214, 22814), (65322, 214, 22961), (65323, 214, 23078), (65324, 214, 23178), (65325, 214, 23658), (65326, 214, 23788), (65327, 214, 24795), (65328, 214, 24796), (65329, 214, 24824), (65330, 214, 24825), (65331, 214, 25144), (65352, 215, 85), (65353, 215, 135), (65354, 215, 152), (65355, 215, 495), (65356, 215, 585), (65357, 215, 638), (65358, 215, 808), (65359, 215, 830), (65360, 215, 867), (65361, 215, 942), (65362, 215, 974), (65363, 215, 1139), (65364, 215, 1300), (65365, 215, 1513), (65366, 215, 1579), (65367, 215, 1604), (65368, 215, 1897), (65369, 215, 1928), (65370, 215, 1965), (65371, 215, 2003), (65372, 215, 2009), (65373, 215, 2126), (65374, 215, 2274), (65375, 215, 2369), (65376, 215, 2399), (65377, 215, 2400), (65378, 215, 2481), (65379, 215, 2686), (65380, 215, 2702), (65381, 215, 2704), (65382, 215, 2760), (65383, 215, 2836), (65384, 215, 3082), (65385, 215, 3130), (65386, 215, 3184), (65387, 215, 3202), (65388, 215, 3334), (65389, 215, 3496), (65390, 215, 3619), (65391, 215, 3687), (65392, 215, 3711), (65393, 215, 4248), (65394, 215, 4342), (65395, 215, 4519), (65396, 215, 4527), (65397, 215, 4688), (65398, 215, 4816), (65399, 215, 4943), (65400, 215, 4968), (65401, 215, 5139), (65402, 215, 5262), (65403, 215, 5349), (65404, 215, 5429), (65405, 215, 5751), (65406, 215, 5840), (65407, 215, 5855), (65408, 215, 5873), (65409, 215, 5878), (65410, 215, 5907), (65411, 215, 5980), (65412, 215, 6020), (65413, 215, 6302), (65414, 215, 6391), (65415, 215, 6441), (65416, 215, 6557), (65417, 215, 6622), (65418, 215, 6626), (65419, 215, 6799), (65420, 215, 6847), (65421, 215, 6947), (65422, 215, 6995), (65423, 215, 7142), (65424, 215, 7275), (65425, 215, 7368), (65426, 215, 7384), (65427, 215, 7548), (65428, 215, 7549), (65429, 215, 7575), (65430, 215, 7592), (65431, 215, 7816), (65432, 215, 7837), (65433, 215, 7849), (65434, 215, 7960), (65435, 215, 8045), (65436, 215, 8162), (65437, 215, 8240), (65438, 215, 8327), (65439, 215, 8331), (65440, 215, 8416), (65441, 215, 8444), (65442, 215, 8533), (65443, 215, 8649), (65444, 215, 8650), (65445, 215, 8832), (65446, 215, 9025), (65447, 215, 9044), (65448, 215, 9128), (65449, 215, 9553), (65450, 215, 9569), (65451, 215, 9592), (65452, 215, 9602), (65453, 215, 10099), (65454, 215, 10174), (65455, 215, 10189), (65456, 215, 10421), (65457, 215, 10480), (65458, 215, 10571), (65459, 215, 10581), (65460, 215, 10744), (65461, 215, 10837), (65462, 215, 11075), (65463, 215, 11117), (65464, 215, 11129), (65465, 215, 11173), (65466, 215, 11300), (65467, 215, 11443), (65468, 215, 11504), (65469, 215, 11713), (65470, 215, 11725), (65471, 215, 11805), (65472, 215, 12026), (65473, 215, 12196), (65474, 215, 12302), (65475, 215, 12341), (65476, 215, 12365), (65477, 215, 12433), (65478, 215, 12475), (65479, 215, 12640), (65480, 215, 12831), (65481, 215, 12933), (65482, 215, 13541), (65483, 215, 13545), (65484, 215, 13712), (65485, 215, 13889), (65486, 215, 13900), (65487, 215, 14082), (65488, 215, 14167), (65489, 215, 14245), (65490, 215, 14755), (65491, 215, 14824), (65492, 215, 14994), (65493, 215, 14999), (65494, 215, 15042), (65495, 215, 15319), (65496, 215, 15730), (65497, 215, 15763), (65498, 215, 15775), (65499, 215, 15781), (65500, 215, 15802), (65501, 215, 15818), (65502, 215, 15972), (65503, 215, 16122), (65504, 215, 16595), (65505, 215, 16782), (65506, 215, 16846), (65507, 215, 17577), (65508, 215, 17747), (65509, 215, 17852), (65510, 215, 18352), (65511, 215, 18617), (65512, 215, 18619), (65513, 215, 18659), (65514, 215, 18664), (65515, 215, 18863), (65516, 215, 18917), (65517, 215, 19510), (65518, 215, 19512), (65519, 215, 20330), (65520, 215, 20370), (65521, 215, 20879), (65522, 215, 20886), (65523, 215, 21013), (65524, 215, 21023), (65525, 215, 21077), (65526, 215, 21275), (65527, 215, 21670), (65528, 215, 21758), (65529, 215, 21898), (65530, 215, 21949), (65531, 215, 22008), (65532, 215, 22158), (65533, 215, 22260), (65534, 215, 22313), (65535, 215, 22974), (65536, 215, 23048); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (65537, 215, 23111), (65538, 215, 23198), (65539, 215, 23234), (65540, 215, 23539), (65541, 215, 23677), (65542, 215, 23685), (65543, 215, 23966), (65544, 215, 24123), (65545, 215, 24240), (65546, 215, 24561), (65547, 215, 24680), (65548, 215, 25081), (65549, 215, 25087), (65550, 215, 25153), (65607, 216, 375), (65608, 216, 499), (65609, 216, 539), (65610, 216, 664), (65611, 216, 732), (65612, 216, 761), (65613, 216, 895), (65614, 216, 1060), (65615, 216, 1112), (65616, 216, 1130), (65617, 216, 1166), (65618, 216, 1212), (65619, 216, 1260), (65620, 216, 1334), (65621, 216, 1338), (65622, 216, 1364), (65623, 216, 1396), (65624, 216, 1437), (65625, 216, 1440), (65626, 216, 1615), (65627, 216, 1648), (65628, 216, 1775), (65629, 216, 1974), (65630, 216, 2067), (65631, 216, 2105), (65632, 216, 2156), (65633, 216, 2157), (65634, 216, 2198), (65635, 216, 2218), (65636, 216, 2326), (65637, 216, 2328), (65638, 216, 2334), (65639, 216, 2424), (65640, 216, 2432), (65641, 216, 2463), (65642, 216, 2486), (65643, 216, 2563), (65644, 216, 2577), (65645, 216, 2689), (65646, 216, 2750), (65647, 216, 2852), (65648, 216, 2933), (65649, 216, 2966), (65650, 216, 3010), (65651, 216, 3126), (65652, 216, 3171), (65653, 216, 3203), (65654, 216, 3259), (65655, 216, 3291), (65656, 216, 3351), (65657, 216, 3379), (65658, 216, 3395), (65659, 216, 3398), (65660, 216, 3434), (65661, 216, 3562), (65662, 216, 3650), (65663, 216, 3673), (65664, 216, 3701), (65665, 216, 3730), (65666, 216, 3788), (65667, 216, 3875), (65668, 216, 3888), (65669, 216, 3894), (65670, 216, 3897), (65671, 216, 3910), (65672, 216, 3933), (65673, 216, 3973), (65674, 216, 4097), (65675, 216, 4153), (65676, 216, 4158), (65677, 216, 4162), (65678, 216, 4172), (65679, 216, 4216), (65680, 216, 4446), (65681, 216, 4543), (65682, 216, 4636), (65683, 216, 4662), (65684, 216, 4739), (65685, 216, 4742), (65686, 216, 4802), (65687, 216, 4811), (65688, 216, 4862), (65689, 216, 5096), (65690, 216, 5102), (65691, 216, 5230), (65692, 216, 5481), (65693, 216, 5548), (65694, 216, 5570), (65695, 216, 5693), (65696, 216, 5731), (65697, 216, 5779), (65698, 216, 6016), (65699, 216, 6026), (65700, 216, 6172), (65701, 216, 6195), (65702, 216, 6307), (65703, 216, 6385), (65704, 216, 6408), (65705, 216, 6433), (65706, 216, 6515), (65707, 216, 6555), (65708, 216, 6651), (65709, 216, 6656), (65710, 216, 6689), (65711, 216, 6759), (65712, 216, 6835), (65713, 216, 6842), (65714, 216, 6848), (65715, 216, 7121), (65716, 216, 7200), (65717, 216, 7252), (65718, 216, 7284), (65719, 216, 7362), (65720, 216, 7405), (65721, 216, 7463), (65722, 216, 7521), (65723, 216, 7562), (65724, 216, 7658), (65725, 216, 7726), (65726, 216, 7919), (65727, 216, 7968), (65728, 216, 8134), (65729, 216, 8588), (65730, 216, 8659), (65731, 216, 8707), (65732, 216, 8779), (65733, 216, 8814), (65734, 216, 8860), (65735, 216, 8903), (65736, 216, 8965), (65737, 216, 8975), (65738, 216, 8979), (65739, 216, 9120), (65740, 216, 9137), (65741, 216, 9363), (65742, 216, 9549), (65743, 216, 10017), (65744, 216, 10354), (65745, 216, 10389), (65746, 216, 10450), (65747, 216, 10554), (65748, 216, 10675), (65749, 216, 11031), (65750, 216, 11246), (65751, 216, 11276), (65752, 216, 11526), (65753, 216, 11584), (65754, 216, 11620), (65755, 216, 11975), (65756, 216, 12334), (65757, 216, 12401), (65758, 216, 12484), (65759, 216, 12802), (65760, 216, 12876), (65761, 216, 13011), (65762, 216, 13157), (65763, 216, 13242), (65764, 216, 13764), (65765, 216, 13770), (65766, 216, 13964), (65767, 216, 14003), (65768, 216, 14094), (65769, 216, 14130), (65770, 216, 14145), (65771, 216, 14443), (65772, 216, 14450), (65773, 216, 14470), (65774, 216, 14486), (65775, 216, 14531), (65776, 216, 15135), (65777, 216, 15502), (65778, 216, 15693), (65779, 216, 15997), (65780, 216, 16010), (65781, 216, 16155), (65782, 216, 16207), (65783, 216, 16460), (65784, 216, 16533), (65785, 216, 16567), (65786, 216, 16904), (65787, 216, 16920), (65788, 216, 17144), (65789, 216, 17150), (65790, 216, 17460), (65791, 216, 18141), (65792, 216, 18526), (65793, 216, 18658), (65794, 216, 18663), (65795, 216, 18770), (65796, 216, 19001), (65797, 216, 19027), (65798, 216, 19051), (65799, 216, 19261), (65800, 216, 19275), (65801, 216, 19306), (65802, 216, 19583), (65803, 216, 19679), (65804, 216, 19697), (65805, 216, 20019), (65806, 216, 20219), (65807, 216, 20396), (65808, 216, 20424), (65809, 216, 20628), (65810, 216, 20685), (65811, 216, 20811), (65812, 216, 20823), (65813, 216, 20908), (65814, 216, 20934), (65815, 216, 21030), (65816, 216, 21036), (65817, 216, 21115), (65818, 216, 21180), (65819, 216, 21185), (65820, 216, 21195), (65821, 216, 21247), (65822, 216, 21309), (65823, 216, 21388), (65824, 216, 21418), (65825, 216, 21618), (65826, 216, 21658), (65827, 216, 21712), (65828, 216, 21942), (65829, 216, 22147), (65830, 216, 22264), (65831, 216, 22312), (65832, 216, 22398), (65833, 216, 22435), (65834, 216, 22513), (65835, 216, 22627), (65836, 216, 22649), (65837, 216, 22811), (65838, 216, 23068), (65839, 216, 23115), (65840, 216, 23157), (65841, 216, 23735), (65842, 216, 23835), (65843, 216, 23883), (65844, 216, 24118), (65845, 216, 24145), (65846, 216, 24271), (65847, 216, 24568), (65848, 216, 24706), (65849, 216, 24814), (65850, 216, 24815), (65851, 216, 24987), (65852, 216, 25130), (65853, 216, 25212), (65862, 217, 38), (65863, 217, 131), (65864, 217, 297), (65865, 217, 349), (65866, 217, 560), (65867, 217, 699), (65868, 217, 711), (65869, 217, 719), (65870, 217, 769), (65871, 217, 867), (65872, 217, 1046), (65873, 217, 1085), (65874, 217, 1113), (65875, 217, 1173), (65876, 217, 1409), (65877, 217, 1447), (65878, 217, 1884), (65879, 217, 1986), (65880, 217, 2172), (65881, 217, 2217), (65882, 217, 2268), (65883, 217, 2285), (65884, 217, 2413), (65885, 217, 2486), (65886, 217, 2513), (65887, 217, 2748), (65888, 217, 2915), (65889, 217, 2961), (65890, 217, 3017), (65891, 217, 3038), (65892, 217, 3082), (65893, 217, 3268), (65894, 217, 3778), (65895, 217, 3994), (65896, 217, 4082), (65897, 217, 4149), (65898, 217, 4250), (65899, 217, 4335), (65900, 217, 4409), (65901, 217, 4470), (65902, 217, 4478), (65903, 217, 4554), (65904, 217, 4614), (65905, 217, 4777), (65906, 217, 4813), (65907, 217, 4888), (65908, 217, 5070), (65909, 217, 5381), (65910, 217, 5969), (65911, 217, 5994), (65912, 217, 6047), (65913, 217, 6233), (65914, 217, 6302), (65915, 217, 6353), (65916, 217, 6355), (65917, 217, 6382), (65918, 217, 6558), (65919, 217, 6696), (65920, 217, 7246), (65921, 217, 7292), (65922, 217, 7445), (65923, 217, 7857), (65924, 217, 8095), (65925, 217, 8777), (65926, 217, 9000), (65927, 217, 9011), (65928, 217, 9354), (65929, 217, 9566), (65930, 217, 9730), (65931, 217, 9880), (65932, 217, 10428), (65933, 217, 11311), (65934, 217, 11764), (65935, 217, 12322), (65936, 217, 14065), (65937, 217, 14335), (65938, 217, 14501), (65939, 217, 15105), (65940, 217, 15460), (65941, 217, 16239), (65942, 217, 17153), (65943, 217, 17522), (65944, 217, 17645), (65945, 217, 17768), (65946, 217, 18365), (65947, 217, 18401), (65948, 217, 18668), (65949, 217, 19391), (65950, 217, 19572), (65951, 217, 19625), (65952, 217, 19892), (65953, 217, 20138), (65954, 217, 20348), (65955, 217, 20707), (65956, 217, 21013), (65957, 217, 21313), (65958, 217, 23928), (65959, 217, 24240), (65960, 217, 25087), (65989, 218, 30), (65990, 218, 114), (65991, 218, 137), (65992, 218, 143), (65993, 218, 228), (65994, 218, 245), (65995, 218, 273), (65996, 218, 407), (65997, 218, 411), (65998, 218, 446), (65999, 218, 447), (66000, 218, 474), (66001, 218, 518), (66002, 218, 557), (66003, 218, 679), (66004, 218, 683), (66005, 218, 751), (66006, 218, 789), (66007, 218, 800), (66008, 218, 804), (66009, 218, 838), (66010, 218, 850), (66011, 218, 884), (66012, 218, 891), (66013, 218, 899), (66014, 218, 940), (66015, 218, 1002), (66016, 218, 1037), (66017, 218, 1043), (66018, 218, 1062), (66019, 218, 1092), (66020, 218, 1094), (66021, 218, 1117), (66022, 218, 1122), (66023, 218, 1171), (66024, 218, 1178), (66025, 218, 1179), (66026, 218, 1329), (66027, 218, 1338), (66028, 218, 1340), (66029, 218, 1390), (66030, 218, 1437), (66031, 218, 1449), (66032, 218, 1479), (66033, 218, 1492), (66034, 218, 1493), (66035, 218, 1500), (66036, 218, 1528), (66037, 218, 1544), (66038, 218, 1566), (66039, 218, 1597), (66040, 218, 1611), (66041, 218, 1615), (66042, 218, 1648), (66043, 218, 1658), (66044, 218, 1707), (66045, 218, 1724), (66046, 218, 1751), (66047, 218, 1763), (66048, 218, 1794), (66049, 218, 1802), (66050, 218, 1803), (66051, 218, 1849), (66052, 218, 1850), (66053, 218, 1865), (66054, 218, 1939), (66055, 218, 1960), (66056, 218, 1974), (66057, 218, 2009), (66058, 218, 2057), (66059, 218, 2067), (66060, 218, 2094), (66061, 218, 2097), (66062, 218, 2110), (66063, 218, 2121), (66064, 218, 2184), (66065, 218, 2194), (66066, 218, 2207), (66067, 218, 2218), (66068, 218, 2219), (66069, 218, 2305), (66070, 218, 2357), (66071, 218, 2382), (66072, 218, 2397), (66073, 218, 2448), (66074, 218, 2450), (66075, 218, 2464), (66076, 218, 2486), (66077, 218, 2527), (66078, 218, 2530), (66079, 218, 2537), (66080, 218, 2585), (66081, 218, 2610), (66082, 218, 2689), (66083, 218, 2755), (66084, 218, 2777), (66085, 218, 2809), (66086, 218, 2812), (66087, 218, 2853), (66088, 218, 2873), (66089, 218, 2903), (66090, 218, 2908), (66091, 218, 2928), (66092, 218, 2938), (66093, 218, 2958), (66094, 218, 2966), (66095, 218, 2982), (66096, 218, 2983), (66097, 218, 2984), (66098, 218, 3055), (66099, 218, 3070), (66100, 218, 3108), (66101, 218, 3137), (66102, 218, 3181), (66103, 218, 3185), (66104, 218, 3194), (66105, 218, 3212), (66106, 218, 3269), (66107, 218, 3304), (66108, 218, 3328), (66109, 218, 3351), (66110, 218, 3368), (66111, 218, 3369), (66112, 218, 3455), (66113, 218, 3505), (66114, 218, 3518), (66115, 218, 3547), (66116, 218, 3566), (66117, 218, 3580), (66118, 218, 3584), (66119, 218, 3586), (66120, 218, 3694), (66121, 218, 3705), (66122, 218, 3765), (66123, 218, 3784), (66124, 218, 3787), (66125, 218, 3850), (66126, 218, 3854), (66127, 218, 3897), (66128, 218, 3921), (66129, 218, 3952), (66130, 218, 4012), (66131, 218, 4015), (66132, 218, 4034), (66133, 218, 4046), (66134, 218, 4056), (66135, 218, 4116), (66136, 218, 4127), (66137, 218, 4135), (66138, 218, 4136), (66139, 218, 4138), (66140, 218, 4141), (66141, 218, 4249), (66142, 218, 4251), (66143, 218, 4274), (66144, 218, 4311), (66145, 218, 4355), (66146, 218, 4362), (66147, 218, 4506), (66148, 218, 4521), (66149, 218, 4551), (66150, 218, 4589), (66151, 218, 4597), (66152, 218, 4687), (66153, 218, 4711), (66154, 218, 4739), (66155, 218, 4772), (66156, 218, 4819), (66157, 218, 4939), (66158, 218, 4952), (66159, 218, 4967), (66160, 218, 4969), (66161, 218, 4970), (66162, 218, 5008), (66163, 218, 5067), (66164, 218, 5086), (66165, 218, 5108), (66166, 218, 5240), (66167, 218, 5258), (66168, 218, 5269), (66169, 218, 5275), (66170, 218, 5321), (66171, 218, 5353), (66172, 218, 5362), (66173, 218, 5384), (66174, 218, 5458), (66175, 218, 5500), (66176, 218, 5639), (66177, 218, 5725), (66178, 218, 5785), (66179, 218, 5845), (66180, 218, 5848), (66181, 218, 5953), (66182, 218, 5965), (66183, 218, 5992), (66184, 218, 6013), (66185, 218, 6026), (66186, 218, 6033), (66187, 218, 6058), (66188, 218, 6128), (66189, 218, 6152), (66190, 218, 6172), (66191, 218, 6174), (66192, 218, 6216), (66193, 218, 6218), (66194, 218, 6225), (66195, 218, 6261), (66196, 218, 6363), (66197, 218, 6387), (66198, 218, 6395), (66199, 218, 6402), (66200, 218, 6406), (66201, 218, 6442), (66202, 218, 6529), (66203, 218, 6557), (66204, 218, 6585), (66205, 218, 6615), (66206, 218, 6716), (66207, 218, 6773), (66208, 218, 6834), (66209, 218, 6836), (66210, 218, 6841), (66211, 218, 6842), (66212, 218, 6845), (66213, 218, 6908), (66214, 218, 6909), (66215, 218, 6910), (66216, 218, 6917), (66217, 218, 6930), (66218, 218, 7025), (66219, 218, 7040), (66220, 218, 7050), (66221, 218, 7140), (66222, 218, 7238), (66223, 218, 7254), (66224, 218, 7326), (66225, 218, 7405), (66226, 218, 7408), (66227, 218, 7475), (66228, 218, 7476), (66229, 218, 7492), (66230, 218, 7546), (66231, 218, 7551), (66232, 218, 7584), (66233, 218, 7607), (66234, 218, 7623), (66235, 218, 7657), (66236, 218, 7697), (66237, 218, 7816), (66238, 218, 8044), (66239, 218, 8092), (66240, 218, 8097), (66241, 218, 8104), (66242, 218, 8135), (66243, 218, 8327), (66244, 218, 8364), (66245, 218, 8458), (66246, 218, 8465), (66247, 218, 8764), (66248, 218, 8765), (66249, 218, 8779), (66250, 218, 8807), (66251, 218, 8832), (66252, 218, 8914), (66253, 218, 9001), (66254, 218, 9002), (66255, 218, 9040), (66256, 218, 9056), (66257, 218, 9065), (66258, 218, 9176), (66259, 218, 9308), (66260, 218, 9467), (66261, 218, 9589), (66262, 218, 9658), (66263, 218, 9670), (66264, 218, 9735), (66265, 218, 9743), (66266, 218, 9775), (66267, 218, 9837), (66268, 218, 9940), (66269, 218, 10029), (66270, 218, 10032), (66271, 218, 10402), (66272, 218, 10442), (66273, 218, 10450), (66274, 218, 10501), (66275, 218, 10504), (66276, 218, 10671), (66277, 218, 10724), (66278, 218, 10746), (66279, 218, 10761), (66280, 218, 10798), (66281, 218, 10807), (66282, 218, 10836), (66283, 218, 10883), (66284, 218, 10926), (66285, 218, 11141), (66286, 218, 11161), (66287, 218, 11234), (66288, 218, 11294), (66289, 218, 11310), (66290, 218, 11316), (66291, 218, 11355), (66292, 218, 11375), (66293, 218, 11388), (66294, 218, 11504), (66295, 218, 11510), (66296, 218, 11523), (66297, 218, 11571), (66298, 218, 11618), (66299, 218, 11702), (66300, 218, 11785), (66301, 218, 11801), (66302, 218, 11805), (66303, 218, 11827), (66304, 218, 11883), (66305, 218, 12042), (66306, 218, 12047), (66307, 218, 12066), (66308, 218, 12118), (66309, 218, 12169), (66310, 218, 12240), (66311, 218, 12369), (66312, 218, 12411), (66313, 218, 12425), (66314, 218, 12446), (66315, 218, 12450), (66316, 218, 12452), (66317, 218, 12467), (66318, 218, 12475), (66319, 218, 12480), (66320, 218, 12571), (66321, 218, 12574), (66322, 218, 12589), (66323, 218, 12675), (66324, 218, 12883), (66325, 218, 12968), (66326, 218, 12978), (66327, 218, 12999), (66328, 218, 13044), (66329, 218, 13073), (66330, 218, 13086), (66331, 218, 13156), (66332, 218, 13209), (66333, 218, 13230), (66334, 218, 13238), (66335, 218, 13280), (66336, 218, 13458), (66337, 218, 13504), (66338, 218, 13538), (66339, 218, 13725), (66340, 218, 13883), (66341, 218, 13889), (66342, 218, 13892), (66343, 218, 14015), (66344, 218, 14045), (66345, 218, 14049), (66346, 218, 14081), (66347, 218, 14145), (66348, 218, 14364), (66349, 218, 14380), (66350, 218, 14486), (66351, 218, 14542), (66352, 218, 14560), (66353, 218, 14619), (66354, 218, 14683), (66355, 218, 14744), (66356, 218, 14906), (66357, 218, 14931), (66358, 218, 14944), (66359, 218, 14985), (66360, 218, 15010), (66361, 218, 15017), (66362, 218, 15037), (66363, 218, 15095), (66364, 218, 15189), (66365, 218, 15243), (66366, 218, 15269), (66367, 218, 15285), (66368, 218, 15312), (66369, 218, 15475), (66370, 218, 15480), (66371, 218, 15541), (66372, 218, 15546), (66373, 218, 15597), (66374, 218, 15763), (66375, 218, 15786), (66376, 218, 15803), (66377, 218, 15839), (66378, 218, 15914), (66379, 218, 15953), (66380, 218, 16021), (66381, 218, 16027), (66382, 218, 16086), (66383, 218, 16094), (66384, 218, 16136), (66385, 218, 16180), (66386, 218, 16217), (66387, 218, 16384), (66388, 218, 16461), (66389, 218, 16622), (66390, 218, 16665), (66391, 218, 16709), (66392, 218, 16762), (66393, 218, 16881), (66394, 218, 16894), (66395, 218, 16909), (66396, 218, 16950), (66397, 218, 17053), (66398, 218, 17213), (66399, 218, 17253), (66400, 218, 17283), (66401, 218, 17391), (66402, 218, 17429), (66403, 218, 17449), (66404, 218, 17560), (66405, 218, 17768), (66406, 218, 17879), (66407, 218, 17954), (66408, 218, 18009), (66409, 218, 18095), (66410, 218, 18119), (66411, 218, 18146), (66412, 218, 18268), (66413, 218, 18288), (66414, 218, 18438), (66415, 218, 18500), (66416, 218, 18678), (66417, 218, 18727), (66418, 218, 18760), (66419, 218, 18823), (66420, 218, 18831), (66421, 218, 18859), (66422, 218, 18906), (66423, 218, 18945), (66424, 218, 19057), (66425, 218, 19069), (66426, 218, 19153), (66427, 218, 19175), (66428, 218, 19230), (66429, 218, 19246), (66430, 218, 19274), (66431, 218, 19316), (66432, 218, 19384), (66433, 218, 19435), (66434, 218, 19462), (66435, 218, 19488), (66436, 218, 19655), (66437, 218, 19795), (66438, 218, 19882), (66439, 218, 19954), (66440, 218, 20032), (66441, 218, 20040), (66442, 218, 20049), (66443, 218, 20050), (66444, 218, 20134), (66445, 218, 20226), (66446, 218, 20287), (66447, 218, 20294), (66448, 218, 20372), (66449, 218, 20430), (66450, 218, 20484), (66451, 218, 20528), (66452, 218, 20548), (66453, 218, 20561), (66454, 218, 20566), (66455, 218, 20616), (66456, 218, 20715), (66457, 218, 20739), (66458, 218, 20784), (66459, 218, 20839), (66460, 218, 20848), (66461, 218, 20918), (66462, 218, 20929), (66463, 218, 20966), (66464, 218, 21204), (66465, 218, 21215), (66466, 218, 21226), (66467, 218, 21270), (66468, 218, 21485), (66469, 218, 21525), (66470, 218, 21583), (66471, 218, 21599), (66472, 218, 21797), (66473, 218, 21819), (66474, 218, 21837), (66475, 218, 21942), (66476, 218, 21966), (66477, 218, 21970), (66478, 218, 22027), (66479, 218, 22052), (66480, 218, 22159), (66481, 218, 22275), (66482, 218, 22286), (66483, 218, 22447), (66484, 218, 22462), (66485, 218, 22636), (66486, 218, 22643), (66487, 218, 22830), (66488, 218, 22876), (66489, 218, 22877), (66490, 218, 22977), (66491, 218, 23014), (66492, 218, 23099), (66493, 218, 23183), (66494, 218, 23317), (66495, 218, 23333), (66496, 218, 23369), (66497, 218, 23423), (66498, 218, 23489), (66499, 218, 23513), (66500, 218, 23722), (66501, 218, 23759), (66502, 218, 24014), (66503, 218, 24118), (66504, 218, 24127), (66505, 218, 24289), (66506, 218, 24581), (66507, 218, 24636), (66508, 218, 24641), (66509, 218, 24725), (66510, 218, 24895), (66511, 218, 24960), (66512, 218, 25019), (66513, 218, 25088), (66514, 218, 25142), (66515, 218, 25182), (67012, 219, 87), (67013, 219, 150), (67014, 219, 195), (67015, 219, 322), (67016, 219, 472), (67017, 219, 571), (67018, 219, 572), (67019, 219, 685), (67020, 219, 720), (67021, 219, 743), (67022, 219, 748), (67023, 219, 775), (67024, 219, 885), (67025, 219, 922), (67026, 219, 962), (67027, 219, 976), (67028, 219, 990), (67029, 219, 1033), (67030, 219, 1040), (67031, 219, 1066), (67032, 219, 1113), (67033, 219, 1129), (67034, 219, 1155), (67035, 219, 1171), (67036, 219, 1177), (67037, 219, 1259), (67038, 219, 1286), (67039, 219, 1293), (67040, 219, 1302), (67041, 219, 1430), (67042, 219, 1451), (67043, 219, 1501), (67044, 219, 1567), (67045, 219, 1569), (67046, 219, 1578), (67047, 219, 1614), (67048, 219, 1654), (67049, 219, 1687), (67050, 219, 1724), (67051, 219, 1769), (67052, 219, 1780), (67053, 219, 1781), (67054, 219, 1865), (67055, 219, 1874), (67056, 219, 1917), (67057, 219, 1927), (67058, 219, 1937), (67059, 219, 2011), (67060, 219, 2018), (67061, 219, 2058), (67062, 219, 2076), (67063, 219, 2121), (67064, 219, 2170), (67065, 219, 2220), (67066, 219, 2296), (67067, 219, 2311), (67068, 219, 2325), (67069, 219, 2328), (67070, 219, 2375), (67071, 219, 2377), (67072, 219, 2448), (67073, 219, 2508), (67074, 219, 2525), (67075, 219, 2535), (67076, 219, 2555), (67077, 219, 2578), (67078, 219, 2585), (67079, 219, 2597), (67080, 219, 2665), (67081, 219, 2677), (67082, 219, 2692), (67083, 219, 2726), (67084, 219, 2736), (67085, 219, 2765), (67086, 219, 2774), (67087, 219, 2792), (67088, 219, 2819), (67089, 219, 2827), (67090, 219, 2912), (67091, 219, 2970), (67092, 219, 3102), (67093, 219, 3129), (67094, 219, 3196), (67095, 219, 3204), (67096, 219, 3205), (67097, 219, 3242), (67098, 219, 3319), (67099, 219, 3332), (67100, 219, 3366), (67101, 219, 3385), (67102, 219, 3438), (67103, 219, 3489), (67104, 219, 3547), (67105, 219, 3585), (67106, 219, 3629), (67107, 219, 3630), (67108, 219, 3643), (67109, 219, 3663), (67110, 219, 3688), (67111, 219, 3770), (67112, 219, 3793), (67113, 219, 3800), (67114, 219, 3840), (67115, 219, 3881), (67116, 219, 3927), (67117, 219, 3954), (67118, 219, 3960), (67119, 219, 3979), (67120, 219, 3987), (67121, 219, 3994), (67122, 219, 4022), (67123, 219, 4041), (67124, 219, 4044), (67125, 219, 4074), (67126, 219, 4076), (67127, 219, 4186), (67128, 219, 4217), (67129, 219, 4270), (67130, 219, 4294), (67131, 219, 4299), (67132, 219, 4309), (67133, 219, 4383), (67134, 219, 4390), (67135, 219, 4435), (67136, 219, 4486), (67137, 219, 4493), (67138, 219, 4525), (67139, 219, 4560), (67140, 219, 4563), (67141, 219, 4603), (67142, 219, 4653), (67143, 219, 4663), (67144, 219, 4823), (67145, 219, 4828), (67146, 219, 4905), (67147, 219, 4913), (67148, 219, 4967), (67149, 219, 4977), (67150, 219, 5019), (67151, 219, 5036), (67152, 219, 5059), (67153, 219, 5081), (67154, 219, 5126), (67155, 219, 5172), (67156, 219, 5257), (67157, 219, 5259), (67158, 219, 5324), (67159, 219, 5338), (67160, 219, 5378), (67161, 219, 5425), (67162, 219, 5519), (67163, 219, 5587), (67164, 219, 5598), (67165, 219, 5603), (67166, 219, 5631), (67167, 219, 5649), (67168, 219, 5666), (67169, 219, 5669), (67170, 219, 5701), (67171, 219, 5794), (67172, 219, 5805), (67173, 219, 5808), (67174, 219, 5832), (67175, 219, 5937), (67176, 219, 5953), (67177, 219, 6028), (67178, 219, 6066), (67179, 219, 6123), (67180, 219, 6135), (67181, 219, 6137), (67182, 219, 6167), (67183, 219, 6168), (67184, 219, 6171), (67185, 219, 6188), (67186, 219, 6243), (67187, 219, 6248), (67188, 219, 6300), (67189, 219, 6388), (67190, 219, 6415), (67191, 219, 6427), (67192, 219, 6435), (67193, 219, 6456), (67194, 219, 6467), (67195, 219, 6475), (67196, 219, 6488), (67197, 219, 6520), (67198, 219, 6543), (67199, 219, 6685), (67200, 219, 6690), (67201, 219, 6696), (67202, 219, 6735), (67203, 219, 6785), (67204, 219, 6816), (67205, 219, 6823), (67206, 219, 6829), (67207, 219, 6842), (67208, 219, 6894), (67209, 219, 6898), (67210, 219, 6910), (67211, 219, 6918), (67212, 219, 6926), (67213, 219, 6948), (67214, 219, 6953), (67215, 219, 7010), (67216, 219, 7103), (67217, 219, 7206), (67218, 219, 7252), (67219, 219, 7315), (67220, 219, 7330), (67221, 219, 7365), (67222, 219, 7388), (67223, 219, 7473), (67224, 219, 7509), (67225, 219, 7517), (67226, 219, 7629), (67227, 219, 7635), (67228, 219, 7681), (67229, 219, 7691), (67230, 219, 7697), (67231, 219, 7708), (67232, 219, 7759), (67233, 219, 7775), (67234, 219, 7799), (67235, 219, 7826), (67236, 219, 7941), (67237, 219, 7972), (67238, 219, 8188), (67239, 219, 8192), (67240, 219, 8196), (67241, 219, 8319), (67242, 219, 8324), (67243, 219, 8352), (67244, 219, 8495), (67245, 219, 8499), (67246, 219, 8548), (67247, 219, 8555), (67248, 219, 8564), (67249, 219, 8598), (67250, 219, 8599), (67251, 219, 8603), (67252, 219, 8617), (67253, 219, 8635), (67254, 219, 8659), (67255, 219, 8661), (67256, 219, 8853), (67257, 219, 8872), (67258, 219, 8896), (67259, 219, 8932), (67260, 219, 8942), (67261, 219, 9013), (67262, 219, 9121), (67263, 219, 9178), (67264, 219, 9179), (67265, 219, 9194), (67266, 219, 9232), (67267, 219, 9320), (67268, 219, 9386), (67269, 219, 9521), (67270, 219, 9530), (67271, 219, 9543), (67272, 219, 9552), (67273, 219, 9588), (67274, 219, 9599), (67275, 219, 9601), (67276, 219, 9611), (67277, 219, 9615), (67278, 219, 9655), (67279, 219, 9690), (67280, 219, 9736), (67281, 219, 9737), (67282, 219, 9746), (67283, 219, 9772), (67284, 219, 9792), (67285, 219, 9801), (67286, 219, 9824), (67287, 219, 9850), (67288, 219, 9925), (67289, 219, 9954), (67290, 219, 9999), (67291, 219, 10030), (67292, 219, 10058), (67293, 219, 10067), (67294, 219, 10083), (67295, 219, 10112), (67296, 219, 10118), (67297, 219, 10228), (67298, 219, 10271), (67299, 219, 10274), (67300, 219, 10376), (67301, 219, 10391), (67302, 219, 10559), (67303, 219, 10579), (67304, 219, 10625), (67305, 219, 10688), (67306, 219, 10758), (67307, 219, 10765), (67308, 219, 10780), (67309, 219, 10812), (67310, 219, 10833), (67311, 219, 10858), (67312, 219, 10901), (67313, 219, 10914), (67314, 219, 11039), (67315, 219, 11105), (67316, 219, 11146), (67317, 219, 11151), (67318, 219, 11177), (67319, 219, 11202), (67320, 219, 11231), (67321, 219, 11242), (67322, 219, 11255), (67323, 219, 11274), (67324, 219, 11306), (67325, 219, 11372), (67326, 219, 11413), (67327, 219, 11475), (67328, 219, 11495), (67329, 219, 11519), (67330, 219, 11534), (67331, 219, 11576), (67332, 219, 11608), (67333, 219, 11618), (67334, 219, 11671), (67335, 219, 11731), (67336, 219, 11733), (67337, 219, 11735), (67338, 219, 11762), (67339, 219, 11795), (67340, 219, 11864), (67341, 219, 11876), (67342, 219, 11919), (67343, 219, 11968), (67344, 219, 11972), (67345, 219, 12034), (67346, 219, 12141), (67347, 219, 12168), (67348, 219, 12169), (67349, 219, 12205), (67350, 219, 12222), (67351, 219, 12223), (67352, 219, 12237), (67353, 219, 12242), (67354, 219, 12245), (67355, 219, 12330), (67356, 219, 12354), (67357, 219, 12450), (67358, 219, 12474), (67359, 219, 12494), (67360, 219, 12521), (67361, 219, 12525), (67362, 219, 12571), (67363, 219, 12574), (67364, 219, 12589), (67365, 219, 12595), (67366, 219, 12629), (67367, 219, 12880), (67368, 219, 12901), (67369, 219, 12937), (67370, 219, 12938), (67371, 219, 12995), (67372, 219, 13026), (67373, 219, 13058), (67374, 219, 13073), (67375, 219, 13285), (67376, 219, 13324), (67377, 219, 13360), (67378, 219, 13396), (67379, 219, 13455), (67380, 219, 13458), (67381, 219, 13461), (67382, 219, 13553), (67383, 219, 13579), (67384, 219, 13621), (67385, 219, 13681), (67386, 219, 13682), (67387, 219, 13702), (67388, 219, 13712), (67389, 219, 13801), (67390, 219, 13831), (67391, 219, 13859), (67392, 219, 13892), (67393, 219, 13911), (67394, 219, 13960), (67395, 219, 14017), (67396, 219, 14037), (67397, 219, 14052), (67398, 219, 14066), (67399, 219, 14104), (67400, 219, 14158), (67401, 219, 14285), (67402, 219, 14290), (67403, 219, 14360), (67404, 219, 14362), (67405, 219, 14444), (67406, 219, 14468), (67407, 219, 14506), (67408, 219, 14670), (67409, 219, 14712), (67410, 219, 14746), (67411, 219, 14783), (67412, 219, 14844), (67413, 219, 14846), (67414, 219, 14876), (67415, 219, 14891), (67416, 219, 14906), (67417, 219, 14925), (67418, 219, 15010), (67419, 219, 15018), (67420, 219, 15064), (67421, 219, 15068), (67422, 219, 15108), (67423, 219, 15139), (67424, 219, 15186), (67425, 219, 15348), (67426, 219, 15423), (67427, 219, 15428), (67428, 219, 15489), (67429, 219, 15519), (67430, 219, 15566), (67431, 219, 15615), (67432, 219, 15641), (67433, 219, 15807), (67434, 219, 15904), (67435, 219, 15914), (67436, 219, 15948), (67437, 219, 15973), (67438, 219, 15986), (67439, 219, 16204), (67440, 219, 16232), (67441, 219, 16299), (67442, 219, 16349), (67443, 219, 16473), (67444, 219, 16537), (67445, 219, 16562), (67446, 219, 16580), (67447, 219, 16590), (67448, 219, 16618), (67449, 219, 16626), (67450, 219, 16652), (67451, 219, 16755), (67452, 219, 16896), (67453, 219, 16936), (67454, 219, 17035), (67455, 219, 17364), (67456, 219, 17417), (67457, 219, 17510), (67458, 219, 17665), (67459, 219, 17667), (67460, 219, 17725), (67461, 219, 17739), (67462, 219, 17855), (67463, 219, 17894), (67464, 219, 17937), (67465, 219, 18288), (67466, 219, 18312), (67467, 219, 18397), (67468, 219, 18497), (67469, 219, 18520), (67470, 219, 18563), (67471, 219, 18591), (67472, 219, 18672), (67473, 219, 18745), (67474, 219, 18783), (67475, 219, 18818), (67476, 219, 18880), (67477, 219, 18909), (67478, 219, 18926), (67479, 219, 18959), (67480, 219, 18988), (67481, 219, 19001), (67482, 219, 19044), (67483, 219, 19063), (67484, 219, 19069), (67485, 219, 19137), (67486, 219, 19218), (67487, 219, 19298), (67488, 219, 19322), (67489, 219, 19330), (67490, 219, 19337), (67491, 219, 19387), (67492, 219, 19493), (67493, 219, 19646), (67494, 219, 19673), (67495, 219, 19760), (67496, 219, 19831), (67497, 219, 19885), (67498, 219, 19924), (67499, 219, 20040), (67500, 219, 20102), (67501, 219, 20115), (67502, 219, 20138), (67503, 219, 20195), (67504, 219, 20369), (67505, 219, 20435), (67506, 219, 20436), (67507, 219, 20709), (67508, 219, 20719), (67509, 219, 20730), (67510, 219, 20764), (67511, 219, 20905), (67512, 219, 20930), (67513, 219, 21022), (67514, 219, 21045), (67515, 219, 21137), (67516, 219, 21151), (67517, 219, 21207), (67518, 219, 21338), (67519, 219, 21363), (67520, 219, 21370), (67521, 219, 21422), (67522, 219, 21567), (67523, 219, 21635), (67524, 219, 21796), (67525, 219, 22002), (67526, 219, 22074), (67527, 219, 22170), (67528, 219, 22214), (67529, 219, 22219), (67530, 219, 22223), (67531, 219, 22331), (67532, 219, 22770), (67533, 219, 22867), (67534, 219, 22951), (67535, 219, 23377), (67536, 219, 23389), (67537, 219, 23423), (67538, 219, 23932), (67539, 219, 24067), (67540, 219, 24243), (67541, 219, 24333), (67542, 219, 24930), (67543, 219, 24992), (67544, 219, 25060), (67545, 219, 25133), (67546, 219, 25147), (67547, 219, 25198), (67548, 219, 25232), (68035, 220, 92), (68036, 220, 193), (68037, 220, 320), (68038, 220, 349), (68039, 220, 373), (68040, 220, 469), (68041, 220, 601), (68042, 220, 790), (68043, 220, 847), (68044, 220, 914), (68045, 220, 1228), (68046, 220, 1243), (68047, 220, 1296), (68048, 220, 1447), (68049, 220, 1505), (68050, 220, 1518), (68051, 220, 1687), (68052, 220, 2017), (68053, 220, 2160), (68054, 220, 2221), (68055, 220, 2324), (68056, 220, 2470), (68057, 220, 2535), (68058, 220, 2623), (68059, 220, 2764), (68060, 220, 2817), (68061, 220, 2968), (68062, 220, 3103), (68063, 220, 3173), (68064, 220, 3350), (68065, 220, 3406), (68066, 220, 3571), (68067, 220, 3688), (68068, 220, 3698), (68069, 220, 3872), (68070, 220, 3933), (68071, 220, 4042), (68072, 220, 4051), (68073, 220, 4060), (68074, 220, 4172), (68075, 220, 4217), (68076, 220, 4316), (68077, 220, 4419), (68078, 220, 4495), (68079, 220, 4715), (68080, 220, 4778), (68081, 220, 4843), (68082, 220, 5192), (68083, 220, 5285), (68084, 220, 5560), (68085, 220, 5568), (68086, 220, 5659), (68087, 220, 5670), (68088, 220, 5692), (68089, 220, 5762), (68090, 220, 5983), (68091, 220, 5996), (68092, 220, 6173), (68093, 220, 6360), (68094, 220, 6374), (68095, 220, 6407), (68096, 220, 6420), (68097, 220, 6743), (68098, 220, 6957), (68099, 220, 7098), (68100, 220, 7158), (68101, 220, 7200), (68102, 220, 7209), (68103, 220, 7233), (68104, 220, 7570), (68105, 220, 7577), (68106, 220, 7639), (68107, 220, 7696), (68108, 220, 7830), (68109, 220, 8082), (68110, 220, 8193), (68111, 220, 8413), (68112, 220, 9007), (68113, 220, 9326), (68114, 220, 9337), (68115, 220, 9478), (68116, 220, 10057), (68117, 220, 10188), (68118, 220, 10276), (68119, 220, 10336), (68120, 220, 10406), (68121, 220, 10514), (68122, 220, 10529), (68123, 220, 10963), (68124, 220, 11055), (68125, 220, 11079), (68126, 220, 11240), (68127, 220, 11676), (68128, 220, 13006), (68129, 220, 13924), (68130, 220, 13961), (68131, 220, 14381), (68132, 220, 14567), (68133, 220, 14578), (68134, 220, 15318), (68135, 220, 15553), (68136, 220, 15599), (68137, 220, 15660), (68138, 220, 15989), (68139, 220, 16422), (68140, 220, 16423), (68141, 220, 16494), (68142, 220, 17193), (68143, 220, 17355), (68144, 220, 17672), (68145, 220, 17682), (68146, 220, 17768), (68147, 220, 18110), (68148, 220, 18203), (68149, 220, 18462), (68150, 220, 18902), (68151, 220, 19391), (68152, 220, 19506), (68153, 220, 19965), (68154, 220, 20016), (68155, 220, 20110), (68156, 220, 20834), (68157, 220, 21077), (68158, 220, 21282), (68159, 220, 21313), (68160, 220, 21338), (68161, 220, 21420), (68162, 220, 21959), (68163, 220, 22250), (68164, 220, 22493), (68165, 220, 23066), (68166, 220, 23204), (68167, 220, 23415), (68168, 220, 23561), (68169, 220, 23766), (68170, 220, 24413), (68171, 220, 24862), (68172, 220, 24863), (68290, 221, 223), (68291, 221, 348), (68292, 221, 563), (68293, 221, 587), (68294, 221, 594), (68295, 221, 642), (68296, 221, 732), (68297, 221, 806), (68298, 221, 835), (68299, 221, 841), (68300, 221, 855), (68301, 221, 883), (68302, 221, 978), (68303, 221, 998), (68304, 221, 1013), (68305, 221, 1019), (68306, 221, 1176), (68307, 221, 1273), (68308, 221, 1378), (68309, 221, 1450), (68310, 221, 1489), (68311, 221, 1637), (68312, 221, 1660), (68313, 221, 1720), (68314, 221, 1776), (68315, 221, 1913), (68316, 221, 1966), (68317, 221, 2075), (68318, 221, 2231), (68319, 221, 2293), (68320, 221, 2477), (68321, 221, 2485), (68322, 221, 2545), (68323, 221, 2567), (68324, 221, 2683), (68325, 221, 2783), (68326, 221, 2859), (68327, 221, 2920), (68328, 221, 3070), (68329, 221, 3349), (68330, 221, 3479), (68331, 221, 3507), (68332, 221, 3562), (68333, 221, 3600), (68334, 221, 3626), (68335, 221, 3737), (68336, 221, 3758), (68337, 221, 3819), (68338, 221, 3857), (68339, 221, 3966), (68340, 221, 4071), (68341, 221, 4072), (68342, 221, 4116), (68343, 221, 4143), (68344, 221, 4147), (68345, 221, 4171), (68346, 221, 4197), (68347, 221, 4350), (68348, 221, 4360), (68349, 221, 4363), (68350, 221, 4372), (68351, 221, 4386), (68352, 221, 4422), (68353, 221, 4436), (68354, 221, 4880), (68355, 221, 4890), (68356, 221, 5004), (68357, 221, 5040), (68358, 221, 5097), (68359, 221, 5162), (68360, 221, 5165), (68361, 221, 5264), (68362, 221, 5472), (68363, 221, 5478), (68364, 221, 5536), (68365, 221, 5568), (68366, 221, 5626), (68367, 221, 5643), (68368, 221, 5681), (68369, 221, 5704), (68370, 221, 5778), (68371, 221, 5815), (68372, 221, 5854), (68373, 221, 5911), (68374, 221, 5973), (68375, 221, 5981), (68376, 221, 6074), (68377, 221, 6089), (68378, 221, 6100), (68379, 221, 6105), (68380, 221, 6111), (68381, 221, 6113), (68382, 221, 6197), (68383, 221, 6211), (68384, 221, 6227), (68385, 221, 6228), (68386, 221, 6251), (68387, 221, 6333), (68388, 221, 6403), (68389, 221, 6550), (68390, 221, 6586), (68391, 221, 6587), (68392, 221, 6665), (68393, 221, 6699), (68394, 221, 6707), (68395, 221, 6779), (68396, 221, 6806), (68397, 221, 6823), (68398, 221, 6879), (68399, 221, 6913), (68400, 221, 6934), (68401, 221, 6965), (68402, 221, 7018), (68403, 221, 7220), (68404, 221, 7280), (68405, 221, 7297), (68406, 221, 7301), (68407, 221, 7359), (68408, 221, 7368), (68409, 221, 7448), (68410, 221, 7478), (68411, 221, 7499), (68412, 221, 7647), (68413, 221, 7718), (68414, 221, 7863), (68415, 221, 8001), (68416, 221, 8006), (68417, 221, 8036), (68418, 221, 8048), (68419, 221, 8119), (68420, 221, 8206), (68421, 221, 8292), (68422, 221, 8397), (68423, 221, 8420), (68424, 221, 8471), (68425, 221, 8473), (68426, 221, 8477), (68427, 221, 8487), (68428, 221, 8573), (68429, 221, 8576), (68430, 221, 8624), (68431, 221, 8877), (68432, 221, 8973), (68433, 221, 8996), (68434, 221, 9033), (68435, 221, 9095), (68436, 221, 9142), (68437, 221, 9170), (68438, 221, 9201), (68439, 221, 9219), (68440, 221, 9272), (68441, 221, 9278), (68442, 221, 9284), (68443, 221, 9315), (68444, 221, 9389), (68445, 221, 9544), (68446, 221, 9555), (68447, 221, 9740), (68448, 221, 9950), (68449, 221, 9960), (68450, 221, 9967), (68451, 221, 9982), (68452, 221, 10050), (68453, 221, 10203), (68454, 221, 10241), (68455, 221, 10369), (68456, 221, 10552), (68457, 221, 10561), (68458, 221, 10647), (68459, 221, 10707), (68460, 221, 10829), (68461, 221, 10939), (68462, 221, 10954), (68463, 221, 10974), (68464, 221, 11004), (68465, 221, 11027), (68466, 221, 11117), (68467, 221, 11118), (68468, 221, 11129), (68469, 221, 11223), (68470, 221, 11289), (68471, 221, 11376), (68472, 221, 11464), (68473, 221, 11585), (68474, 221, 11841), (68475, 221, 11864), (68476, 221, 11956), (68477, 221, 12312), (68478, 221, 12406), (68479, 221, 12510), (68480, 221, 12605), (68481, 221, 12623), (68482, 221, 12687), (68483, 221, 12795), (68484, 221, 12853), (68485, 221, 12874), (68486, 221, 13034), (68487, 221, 13095), (68488, 221, 13175), (68489, 221, 13267), (68490, 221, 13278), (68491, 221, 13293), (68492, 221, 13403), (68493, 221, 13422), (68494, 221, 13535), (68495, 221, 13732), (68496, 221, 13752), (68497, 221, 13969), (68498, 221, 14140), (68499, 221, 14287), (68500, 221, 14292), (68501, 221, 14307), (68502, 221, 14385), (68503, 221, 14401), (68504, 221, 14438), (68505, 221, 14643), (68506, 221, 14834), (68507, 221, 14916), (68508, 221, 15167), (68509, 221, 15354), (68510, 221, 15373), (68511, 221, 15377), (68512, 221, 15419), (68513, 221, 15422), (68514, 221, 15451), (68515, 221, 15477), (68516, 221, 15502), (68517, 221, 15865), (68518, 221, 16193), (68519, 221, 16349), (68520, 221, 16629), (68521, 221, 16669), (68522, 221, 16672), (68523, 221, 16706), (68524, 221, 16850), (68525, 221, 17016), (68526, 221, 17159), (68527, 221, 17282), (68528, 221, 17306), (68529, 221, 17546), (68530, 221, 17756), (68531, 221, 17924), (68532, 221, 17957), (68533, 221, 17960), (68534, 221, 18410), (68535, 221, 18429), (68536, 221, 18616), (68537, 221, 18860), (68538, 221, 19194), (68539, 221, 19365), (68540, 221, 19410), (68541, 221, 19534), (68542, 221, 19637), (68543, 221, 20098), (68544, 221, 20373), (68545, 221, 20424), (68546, 221, 20546), (68547, 221, 20797), (68548, 221, 21110), (68549, 221, 21131), (68550, 221, 21187), (68551, 221, 21276), (68552, 221, 21306), (68553, 221, 21344), (68554, 221, 21380), (68555, 221, 21412), (68556, 221, 21424), (68557, 221, 21682), (68558, 221, 21783), (68559, 221, 21936), (68560, 221, 22212), (68561, 221, 22277), (68562, 221, 22927), (68563, 221, 23010), (68564, 221, 23258), (68565, 221, 23527), (68566, 221, 23669), (68567, 221, 23693), (68568, 221, 23816), (68569, 221, 23927), (68570, 221, 23928), (68571, 221, 23998), (68572, 221, 24034), (68573, 221, 24073), (68574, 221, 24253), (68575, 221, 24660), (68576, 221, 24851), (68577, 221, 24998), (68578, 221, 25026), (68579, 221, 25169), (68801, 222, 341), (68802, 222, 368), (68803, 222, 622), (68804, 222, 787), (68805, 222, 930), (68806, 222, 1047), (68807, 222, 1287), (68808, 222, 1359), (68809, 222, 1718), (68810, 222, 1753), (68811, 222, 1759), (68812, 222, 1831), (68813, 222, 1870), (68814, 222, 1948), (68815, 222, 2035), (68816, 222, 2054), (68817, 222, 2277), (68818, 222, 2384), (68819, 222, 2423), (68820, 222, 2524), (68821, 222, 2561), (68822, 222, 2599), (68823, 222, 2807), (68824, 222, 2890), (68825, 222, 2915), (68826, 222, 3023), (68827, 222, 3192), (68828, 222, 3209), (68829, 222, 3288), (68830, 222, 3299), (68831, 222, 3467), (68832, 222, 3468), (68833, 222, 3529), (68834, 222, 3745), (68835, 222, 3751), (68836, 222, 3756), (68837, 222, 3813), (68838, 222, 4018), (68839, 222, 4181), (68840, 222, 4228), (68841, 222, 4258), (68842, 222, 4308), (68843, 222, 4340), (68844, 222, 4402), (68845, 222, 4529), (68846, 222, 4542), (68847, 222, 4552), (68848, 222, 4641), (68849, 222, 4687), (68850, 222, 4803), (68851, 222, 4924), (68852, 222, 4999), (68853, 222, 5093), (68854, 222, 5166), (68855, 222, 5254), (68856, 222, 5338), (68857, 222, 5402), (68858, 222, 5434), (68859, 222, 5538), (68860, 222, 5544), (68861, 222, 5667), (68862, 222, 5754), (68863, 222, 5777), (68864, 222, 5970), (68865, 222, 6091), (68866, 222, 6095), (68867, 222, 6167), (68868, 222, 6194), (68869, 222, 6217), (68870, 222, 6218), (68871, 222, 6239), (68872, 222, 6248), (68873, 222, 6270), (68874, 222, 6275), (68875, 222, 6364), (68876, 222, 6373), (68877, 222, 6456), (68878, 222, 6493), (68879, 222, 6558), (68880, 222, 6566), (68881, 222, 6633), (68882, 222, 6721), (68883, 222, 6893), (68884, 222, 6900), (68885, 222, 6937), (68886, 222, 6957), (68887, 222, 7138), (68888, 222, 7191), (68889, 222, 7216), (68890, 222, 7254), (68891, 222, 7441), (68892, 222, 7512), (68893, 222, 7532), (68894, 222, 7619), (68895, 222, 7844), (68896, 222, 7937), (68897, 222, 7965), (68898, 222, 7991), (68899, 222, 8027), (68900, 222, 8064), (68901, 222, 8127), (68902, 222, 8166), (68903, 222, 8200), (68904, 222, 8247), (68905, 222, 8396), (68906, 222, 8673), (68907, 222, 9012), (68908, 222, 9139), (68909, 222, 9162), (68910, 222, 9279), (68911, 222, 9428), (68912, 222, 9440), (68913, 222, 9566), (68914, 222, 9587), (68915, 222, 9599), (68916, 222, 9656), (68917, 222, 9663), (68918, 222, 9698), (68919, 222, 9715), (68920, 222, 9792), (68921, 222, 9859), (68922, 222, 10338), (68923, 222, 10420), (68924, 222, 10536), (68925, 222, 10601), (68926, 222, 10624), (68927, 222, 10652), (68928, 222, 10662), (68929, 222, 10711), (68930, 222, 10733), (68931, 222, 10814), (68932, 222, 11014), (68933, 222, 11150), (68934, 222, 11464), (68935, 222, 11753), (68936, 222, 11785), (68937, 222, 11888), (68938, 222, 11918), (68939, 222, 11931), (68940, 222, 11954), (68941, 222, 11972), (68942, 222, 12205), (68943, 222, 12257), (68944, 222, 12429), (68945, 222, 12450), (68946, 222, 12503), (68947, 222, 12551), (68948, 222, 12677), (68949, 222, 12682), (68950, 222, 12704), (68951, 222, 12834), (68952, 222, 12884), (68953, 222, 12952), (68954, 222, 13148), (68955, 222, 13302), (68956, 222, 13759), (68957, 222, 13975), (68958, 222, 13987), (68959, 222, 14097), (68960, 222, 14208), (68961, 222, 14296), (68962, 222, 14342), (68963, 222, 14548), (68964, 222, 14562), (68965, 222, 14706), (68966, 222, 14734), (68967, 222, 14768), (68968, 222, 14791), (68969, 222, 14808), (68970, 222, 14876), (68971, 222, 14929), (68972, 222, 14965), (68973, 222, 15097), (68974, 222, 15260), (68975, 222, 15489), (68976, 222, 15696), (68977, 222, 15756), (68978, 222, 15783), (68979, 222, 15856), (68980, 222, 15956), (68981, 222, 16097), (68982, 222, 16215), (68983, 222, 16266), (68984, 222, 16368), (68985, 222, 16450), (68986, 222, 16455), (68987, 222, 16466), (68988, 222, 16470), (68989, 222, 16495), (68990, 222, 16691), (68991, 222, 16829), (68992, 222, 16874), (68993, 222, 16889), (68994, 222, 16964), (68995, 222, 17013), (68996, 222, 17051), (68997, 222, 17061), (68998, 222, 17216), (68999, 222, 17218), (69000, 222, 17235), (69001, 222, 17434), (69002, 222, 17478), (69003, 222, 17571), (69004, 222, 17596), (69005, 222, 17606), (69006, 222, 17671), (69007, 222, 17715), (69008, 222, 17759), (69009, 222, 17796), (69010, 222, 17855), (69011, 222, 17898), (69012, 222, 18133), (69013, 222, 18233), (69014, 222, 18268), (69015, 222, 18298), (69016, 222, 18415), (69017, 222, 18731), (69018, 222, 18801), (69019, 222, 18858), (69020, 222, 18873), (69021, 222, 18985), (69022, 222, 18999), (69023, 222, 19046), (69024, 222, 19177), (69025, 222, 19300), (69026, 222, 19343), (69027, 222, 19379), (69028, 222, 19502), (69029, 222, 19831), (69030, 222, 19860), (69031, 222, 19885), (69032, 222, 19960), (69033, 222, 20036), (69034, 222, 20060), (69035, 222, 20111), (69036, 222, 20247), (69037, 222, 20428), (69038, 222, 20636), (69039, 222, 20882), (69040, 222, 21148), (69041, 222, 21351), (69042, 222, 21450), (69043, 222, 21485), (69044, 222, 21558), (69045, 222, 21844), (69046, 222, 21967), (69047, 222, 22182), (69048, 222, 22188), (69049, 222, 22436), (69050, 222, 22571), (69051, 222, 22707), (69052, 222, 22770), (69053, 222, 22837), (69054, 222, 22867), (69055, 222, 22880), (69056, 222, 23012), (69057, 222, 23020), (69058, 222, 23126), (69059, 222, 23232), (69060, 222, 23487), (69061, 222, 23660), (69062, 222, 23769), (69063, 222, 24620), (69064, 222, 25008), (69065, 222, 25022), (69066, 222, 25023), (69067, 222, 25049), (69068, 222, 25074), (69069, 222, 25104), (69312, 223, 282), (69313, 223, 563), (69314, 223, 930), (69315, 223, 1056), (69316, 223, 1236), (69317, 223, 2226), (69318, 223, 2323), (69319, 223, 2600), (69320, 223, 2985), (69321, 223, 3210), (69322, 223, 3211), (69323, 223, 3367), (69324, 223, 3500), (69325, 223, 3871), (69326, 223, 3915), (69327, 223, 4196), (69328, 223, 4267), (69329, 223, 4505), (69330, 223, 4646), (69331, 223, 4819), (69332, 223, 5512), (69333, 223, 5832), (69334, 223, 6220), (69335, 223, 6328), (69336, 223, 6734), (69337, 223, 6773), (69338, 223, 6842), (69339, 223, 7232), (69340, 223, 7292), (69341, 223, 7362), (69342, 223, 7383), (69343, 223, 7797), (69344, 223, 8084), (69345, 223, 8090), (69346, 223, 8490), (69347, 223, 8742), (69348, 223, 8857), (69349, 223, 8999), (69350, 223, 9741), (69351, 223, 9873), (69352, 223, 10049), (69353, 223, 10186), (69354, 223, 10559), (69355, 223, 10605), (69356, 223, 10669), (69357, 223, 10748), (69358, 223, 11604), (69359, 223, 11843), (69360, 223, 11849), (69361, 223, 12808), (69362, 223, 13453), (69363, 223, 14887), (69364, 223, 15140), (69365, 223, 15424), (69366, 223, 17086), (69367, 223, 17810), (69368, 223, 17837), (69369, 223, 18958), (69370, 223, 19276), (69371, 223, 19457), (69372, 223, 20523), (69373, 223, 20824), (69374, 223, 20891), (69375, 223, 21504), (69376, 223, 21677), (69377, 223, 22111), (69378, 223, 22859), (69379, 223, 22928), (69380, 223, 23072), (69381, 223, 23125), (69382, 223, 23159), (69383, 223, 23650), (69384, 223, 23764), (69385, 223, 25025), (69439, 225, 188), (69440, 225, 365), (69441, 225, 770), (69442, 225, 1248), (69443, 225, 1314), (69444, 225, 1334), (69445, 225, 1341), (69446, 225, 1607), (69447, 225, 1618), (69448, 225, 1694), (69449, 225, 1858), (69450, 225, 2028), (69451, 225, 2339), (69452, 225, 2346), (69453, 225, 2538), (69454, 225, 2558), (69455, 225, 3301), (69456, 225, 3522), (69457, 225, 3883), (69458, 225, 3900), (69459, 225, 3990), (69460, 225, 4371), (69461, 225, 4636), (69462, 225, 4792), (69463, 225, 4844), (69464, 225, 5123), (69465, 225, 5406), (69466, 225, 5554), (69467, 225, 5576), (69468, 225, 5783), (69469, 225, 5871), (69470, 225, 5915), (69471, 225, 5948), (69472, 225, 7823), (69473, 225, 7844), (69474, 225, 8013), (69475, 225, 9125), (69476, 225, 9384), (69477, 225, 9924), (69478, 225, 10239), (69479, 225, 10663), (69480, 225, 10733), (69481, 225, 11272), (69482, 225, 11734), (69483, 225, 11737), (69484, 225, 12587), (69485, 225, 12819), (69486, 225, 13432), (69487, 225, 14235), (69488, 225, 14870), (69489, 225, 14977), (69490, 225, 19573), (69491, 225, 20610), (69492, 225, 21143), (69493, 225, 22280), (69494, 225, 22795), (69495, 225, 23190), (69496, 225, 24867), (69502, 226, 359), (69503, 226, 421), (69504, 226, 469), (69505, 226, 518), (69506, 226, 594), (69507, 226, 788), (69508, 226, 805), (69509, 226, 808), (69510, 226, 833), (69511, 226, 952), (69512, 226, 1022), (69513, 226, 1100), (69514, 226, 1371), (69515, 226, 1468), (69516, 226, 1527), (69517, 226, 1545), (69518, 226, 1572), (69519, 226, 1575), (69520, 226, 1587), (69521, 226, 1608), (69522, 226, 1652), (69523, 226, 1708), (69524, 226, 1719), (69525, 226, 1720), (69526, 226, 1773), (69527, 226, 1800), (69528, 226, 1899), (69529, 226, 1923), (69530, 226, 1932), (69531, 226, 1972), (69532, 226, 2004), (69533, 226, 2046), (69534, 226, 2072), (69535, 226, 2074), (69536, 226, 2109), (69537, 226, 2154), (69538, 226, 2163), (69539, 226, 2266), (69540, 226, 2290), (69541, 226, 2324), (69542, 226, 2327), (69543, 226, 2332), (69544, 226, 2348), (69545, 226, 2362), (69546, 226, 2462), (69547, 226, 2511), (69548, 226, 2529), (69549, 226, 2660), (69550, 226, 2673), (69551, 226, 2679), (69552, 226, 2697), (69553, 226, 2770), (69554, 226, 2798), (69555, 226, 2817), (69556, 226, 2934), (69557, 226, 2979), (69558, 226, 3032), (69559, 226, 3079), (69560, 226, 3091), (69561, 226, 3097), (69562, 226, 3125), (69563, 226, 3152), (69564, 226, 3243), (69565, 226, 3330), (69566, 226, 3378), (69567, 226, 3543), (69568, 226, 3571), (69569, 226, 3604), (69570, 226, 3640), (69571, 226, 3664), (69572, 226, 3690), (69573, 226, 3786), (69574, 226, 3804), (69575, 226, 3879), (69576, 226, 3914), (69577, 226, 3939), (69578, 226, 4028), (69579, 226, 4049), (69580, 226, 4084), (69581, 226, 4114), (69582, 226, 4180), (69583, 226, 4206), (69584, 226, 4279), (69585, 226, 4331), (69586, 226, 4356), (69587, 226, 4384), (69588, 226, 4450), (69589, 226, 4494), (69590, 226, 4530), (69591, 226, 4567), (69592, 226, 4682), (69593, 226, 4714), (69594, 226, 4718), (69595, 226, 4745), (69596, 226, 4766), (69597, 226, 4789), (69598, 226, 4935), (69599, 226, 5028), (69600, 226, 5130), (69601, 226, 5139), (69602, 226, 5155), (69603, 226, 5270), (69604, 226, 5313), (69605, 226, 5391), (69606, 226, 5393), (69607, 226, 5423), (69608, 226, 5434), (69609, 226, 5456), (69610, 226, 5465), (69611, 226, 5477), (69612, 226, 5581), (69613, 226, 5595), (69614, 226, 5643), (69615, 226, 5710), (69616, 226, 5756), (69617, 226, 5765), (69618, 226, 5776), (69619, 226, 5790), (69620, 226, 5834), (69621, 226, 5878), (69622, 226, 5930), (69623, 226, 5957), (69624, 226, 5966), (69625, 226, 5982), (69626, 226, 6011), (69627, 226, 6025), (69628, 226, 6092), (69629, 226, 6140), (69630, 226, 6149), (69631, 226, 6164), (69632, 226, 6210), (69633, 226, 6239), (69634, 226, 6266), (69635, 226, 6294), (69636, 226, 6308), (69637, 226, 6359), (69638, 226, 6420), (69639, 226, 6453), (69640, 226, 6479), (69641, 226, 6481), (69642, 226, 6508), (69643, 226, 6576), (69644, 226, 6577), (69645, 226, 6603), (69646, 226, 6666), (69647, 226, 6717), (69648, 226, 6722), (69649, 226, 6732), (69650, 226, 6775), (69651, 226, 6805), (69652, 226, 6956), (69653, 226, 7021), (69654, 226, 7037), (69655, 226, 7047), (69656, 226, 7107), (69657, 226, 7111), (69658, 226, 7186), (69659, 226, 7191), (69660, 226, 7228), (69661, 226, 7325), (69662, 226, 7341), (69663, 226, 7368), (69664, 226, 7369), (69665, 226, 7370), (69666, 226, 7418), (69667, 226, 7420), (69668, 226, 7423), (69669, 226, 7429), (69670, 226, 7441), (69671, 226, 7471), (69672, 226, 7497), (69673, 226, 7568), (69674, 226, 7608), (69675, 226, 7631), (69676, 226, 7637), (69677, 226, 7643), (69678, 226, 7667), (69679, 226, 7669), (69680, 226, 7676), (69681, 226, 7696), (69682, 226, 7729), (69683, 226, 7745), (69684, 226, 7857), (69685, 226, 7887), (69686, 226, 7902), (69687, 226, 7975), (69688, 226, 8010), (69689, 226, 8080), (69690, 226, 8153), (69691, 226, 8224), (69692, 226, 8234), (69693, 226, 8261), (69694, 226, 8296), (69695, 226, 8370), (69696, 226, 8382), (69697, 226, 8394), (69698, 226, 8402), (69699, 226, 8456), (69700, 226, 8481), (69701, 226, 8629), (69702, 226, 8699), (69703, 226, 8754), (69704, 226, 8774), (69705, 226, 8833), (69706, 226, 8835), (69707, 226, 8836), (69708, 226, 8881), (69709, 226, 8883), (69710, 226, 8974), (69711, 226, 9007), (69712, 226, 9122), (69713, 226, 9136), (69714, 226, 9201), (69715, 226, 9223), (69716, 226, 9305), (69717, 226, 9325), (69718, 226, 9331), (69719, 226, 9369), (69720, 226, 9380), (69721, 226, 9487), (69722, 226, 9528), (69723, 226, 9550), (69724, 226, 9642), (69725, 226, 9651), (69726, 226, 9685), (69727, 226, 9698), (69728, 226, 9789), (69729, 226, 9902), (69730, 226, 9907), (69731, 226, 9945), (69732, 226, 9995), (69733, 226, 10051), (69734, 226, 10054), (69735, 226, 10055), (69736, 226, 10065), (69737, 226, 10188), (69738, 226, 10276), (69739, 226, 10336), (69740, 226, 10366), (69741, 226, 10406), (69742, 226, 10473), (69743, 226, 10476), (69744, 226, 10514), (69745, 226, 10525), (69746, 226, 10557), (69747, 226, 10651), (69748, 226, 10672), (69749, 226, 10784), (69750, 226, 10800), (69751, 226, 10847), (69752, 226, 10942), (69753, 226, 10963), (69754, 226, 10991), (69755, 226, 11000), (69756, 226, 11022), (69757, 226, 11079), (69758, 226, 11112), (69759, 226, 11129), (69760, 226, 11237), (69761, 226, 11258), (69762, 226, 11305), (69763, 226, 11502), (69764, 226, 11574), (69765, 226, 11614), (69766, 226, 11653), (69767, 226, 11654), (69768, 226, 11726), (69769, 226, 11777), (69770, 226, 11871), (69771, 226, 11894), (69772, 226, 11959), (69773, 226, 11993), (69774, 226, 12016), (69775, 226, 12101), (69776, 226, 12117), (69777, 226, 12129), (69778, 226, 12140), (69779, 226, 12142), (69780, 226, 12272), (69781, 226, 12298), (69782, 226, 12311), (69783, 226, 12312), (69784, 226, 12436), (69785, 226, 12477), (69786, 226, 12493), (69787, 226, 12592), (69788, 226, 12640), (69789, 226, 12773), (69790, 226, 12824), (69791, 226, 12899), (69792, 226, 13012), (69793, 226, 13075), (69794, 226, 13125), (69795, 226, 13227), (69796, 226, 13231), (69797, 226, 13233), (69798, 226, 13389), (69799, 226, 13425), (69800, 226, 13467), (69801, 226, 13560), (69802, 226, 13617), (69803, 226, 13862), (69804, 226, 13934), (69805, 226, 14068), (69806, 226, 14251), (69807, 226, 14255), (69808, 226, 14319), (69809, 226, 14355), (69810, 226, 14461), (69811, 226, 14629), (69812, 226, 14738), (69813, 226, 14786), (69814, 226, 14790), (69815, 226, 14825), (69816, 226, 14865), (69817, 226, 14935), (69818, 226, 14977), (69819, 226, 15054), (69820, 226, 15057), (69821, 226, 15300), (69822, 226, 15369), (69823, 226, 15393), (69824, 226, 15425), (69825, 226, 15502), (69826, 226, 15594), (69827, 226, 15660), (69828, 226, 15856), (69829, 226, 15989), (69830, 226, 15992), (69831, 226, 16127), (69832, 226, 16129), (69833, 226, 16180), (69834, 226, 16188), (69835, 226, 16220), (69836, 226, 16287), (69837, 226, 16322), (69838, 226, 16346), (69839, 226, 16451), (69840, 226, 16682), (69841, 226, 16732), (69842, 226, 16774), (69843, 226, 16806), (69844, 226, 16862), (69845, 226, 16922), (69846, 226, 16973), (69847, 226, 16990), (69848, 226, 17098), (69849, 226, 17110), (69850, 226, 17171), (69851, 226, 17223), (69852, 226, 17235), (69853, 226, 17355), (69854, 226, 17406), (69855, 226, 17423), (69856, 226, 17433), (69857, 226, 17465), (69858, 226, 17518), (69859, 226, 17545), (69860, 226, 17656), (69861, 226, 17676), (69862, 226, 17730), (69863, 226, 17732), (69864, 226, 17757), (69865, 226, 17771), (69866, 226, 17819), (69867, 226, 17835), (69868, 226, 17889), (69869, 226, 17943), (69870, 226, 17970), (69871, 226, 18022), (69872, 226, 18074), (69873, 226, 18078), (69874, 226, 18117), (69875, 226, 18259), (69876, 226, 18491), (69877, 226, 18619), (69878, 226, 18803), (69879, 226, 19139), (69880, 226, 19354), (69881, 226, 19489), (69882, 226, 19501), (69883, 226, 19506), (69884, 226, 19540), (69885, 226, 19544), (69886, 226, 19563), (69887, 226, 19672), (69888, 226, 19685), (69889, 226, 19712), (69890, 226, 19819), (69891, 226, 19839), (69892, 226, 19965), (69893, 226, 20198), (69894, 226, 20225), (69895, 226, 20266), (69896, 226, 20305), (69897, 226, 20337), (69898, 226, 20363), (69899, 226, 20418), (69900, 226, 20419), (69901, 226, 20424), (69902, 226, 20451), (69903, 226, 20453), (69904, 226, 20476), (69905, 226, 20523), (69906, 226, 20524), (69907, 226, 20536), (69908, 226, 20616), (69909, 226, 20675), (69910, 226, 20694), (69911, 226, 20829), (69912, 226, 20856), (69913, 226, 20883), (69914, 226, 20896), (69915, 226, 20898), (69916, 226, 20922), (69917, 226, 20990), (69918, 226, 21289), (69919, 226, 21322), (69920, 226, 21344), (69921, 226, 21382), (69922, 226, 21387), (69923, 226, 21392), (69924, 226, 21402), (69925, 226, 21412), (69926, 226, 21413), (69927, 226, 21545), (69928, 226, 21633), (69929, 226, 21682), (69930, 226, 21769), (69931, 226, 21863), (69932, 226, 21874), (69933, 226, 21959), (69934, 226, 22041), (69935, 226, 22083), (69936, 226, 22171), (69937, 226, 22186), (69938, 226, 22211), (69939, 226, 22250), (69940, 226, 22290), (69941, 226, 22360), (69942, 226, 22382), (69943, 226, 22465), (69944, 226, 22468), (69945, 226, 22503), (69946, 226, 22639), (69947, 226, 22786), (69948, 226, 22789), (69949, 226, 22814), (69950, 226, 22837), (69951, 226, 22900), (69952, 226, 22905), (69953, 226, 22995), (69954, 226, 23054), (69955, 226, 23178); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (69956, 226, 23204), (69957, 226, 23226), (69958, 226, 23260), (69959, 226, 23454), (69960, 226, 23487), (69961, 226, 23654), (69962, 226, 23657), (69963, 226, 23794), (69964, 226, 23795), (69965, 226, 23816), (69966, 226, 23820), (69967, 226, 23931), (69968, 226, 24059), (69969, 226, 24127), (69970, 226, 24564), (69971, 226, 24697), (69972, 226, 24795), (69973, 226, 25015), (69974, 226, 25018), (69975, 226, 25020), (69976, 226, 25022), (69977, 226, 25023), (69978, 226, 25024), (69979, 226, 25038), (69980, 226, 25049), (69981, 226, 25104), (69982, 226, 25115), (69983, 226, 25140), (69984, 226, 25144), (69985, 226, 25163), (70013, 227, 469), (70014, 227, 664), (70015, 227, 728), (70016, 227, 1025), (70017, 227, 1572), (70018, 227, 1864), (70019, 227, 1958), (70020, 227, 2345), (70021, 227, 3271), (70022, 227, 3508), (70023, 227, 3986), (70024, 227, 4029), (70025, 227, 4095), (70026, 227, 4310), (70027, 227, 4879), (70028, 227, 5604), (70029, 227, 7073), (70030, 227, 7573), (70031, 227, 9466), (70032, 227, 9881), (70033, 227, 10000), (70034, 227, 10533), (70035, 227, 10923), (70036, 227, 11239), (70037, 227, 11678), (70038, 227, 11742), (70039, 227, 12272), (70040, 227, 13474), (70041, 227, 14969), (70042, 227, 15296), (70043, 227, 16721), (70044, 227, 17310), (70045, 227, 19354), (70046, 227, 20623), (70047, 227, 21244), (70048, 227, 21413), (70049, 227, 22041), (70050, 227, 22692), (70051, 227, 22757), (70052, 227, 22900), (70053, 227, 22958), (70054, 227, 25061), (70076, 228, 46), (70077, 228, 78), (70078, 228, 149), (70079, 228, 152), (70080, 228, 173), (70081, 228, 233), (70082, 228, 257), (70083, 228, 267), (70084, 228, 300), (70085, 228, 349), (70086, 228, 376), (70087, 228, 378), (70088, 228, 476), (70089, 228, 515), (70090, 228, 518), (70091, 228, 530), (70092, 228, 552), (70093, 228, 585), (70094, 228, 594), (70095, 228, 623), (70096, 228, 641), (70097, 228, 654), (70098, 228, 700), (70099, 228, 765), (70100, 228, 768), (70101, 228, 788), (70102, 228, 820), (70103, 228, 849), (70104, 228, 867), (70105, 228, 877), (70106, 228, 883), (70107, 228, 891), (70108, 228, 895), (70109, 228, 899), (70110, 228, 929), (70111, 228, 956), (70112, 228, 972), (70113, 228, 984), (70114, 228, 1003), (70115, 228, 1085), (70116, 228, 1098), (70117, 228, 1128), (70118, 228, 1160), (70119, 228, 1201), (70120, 228, 1273), (70121, 228, 1279), (70122, 228, 1300), (70123, 228, 1315), (70124, 228, 1316), (70125, 228, 1338), (70126, 228, 1365), (70127, 228, 1471), (70128, 228, 1545), (70129, 228, 1548), (70130, 228, 1559), (70131, 228, 1579), (70132, 228, 1609), (70133, 228, 1625), (70134, 228, 1633), (70135, 228, 1637), (70136, 228, 1667), (70137, 228, 1679), (70138, 228, 1707), (70139, 228, 1711), (70140, 228, 1719), (70141, 228, 1792), (70142, 228, 1848), (70143, 228, 1855), (70144, 228, 1859), (70145, 228, 1860), (70146, 228, 1866), (70147, 228, 1870), (70148, 228, 1960), (70149, 228, 1974), (70150, 228, 2016), (70151, 228, 2050), (70152, 228, 2055), (70153, 228, 2067), (70154, 228, 2072), (70155, 228, 2084), (70156, 228, 2100), (70157, 228, 2108), (70158, 228, 2118), (70159, 228, 2130), (70160, 228, 2148), (70161, 228, 2160), (70162, 228, 2266), (70163, 228, 2285), (70164, 228, 2332), (70165, 228, 2342), (70166, 228, 2369), (70167, 228, 2380), (70168, 228, 2400), (70169, 228, 2443), (70170, 228, 2448), (70171, 228, 2462), (70172, 228, 2470), (70173, 228, 2479), (70174, 228, 2503), (70175, 228, 2511), (70176, 228, 2530), (70177, 228, 2545), (70178, 228, 2603), (70179, 228, 2639), (70180, 228, 2657), (70181, 228, 2668), (70182, 228, 2685), (70183, 228, 2769), (70184, 228, 2821), (70185, 228, 2832), (70186, 228, 2849), (70187, 228, 2850), (70188, 228, 2858), (70189, 228, 2886), (70190, 228, 2941), (70191, 228, 2975), (70192, 228, 2997), (70193, 228, 3040), (70194, 228, 3046), (70195, 228, 3070), (70196, 228, 3105), (70197, 228, 3111), (70198, 228, 3149), (70199, 228, 3169), (70200, 228, 3208), (70201, 228, 3291), (70202, 228, 3323), (70203, 228, 3357), (70204, 228, 3427), (70205, 228, 3457), (70206, 228, 3469), (70207, 228, 3479), (70208, 228, 3485), (70209, 228, 3505), (70210, 228, 3513), (70211, 228, 3580), (70212, 228, 3586), (70213, 228, 3617), (70214, 228, 3623), (70215, 228, 3639), (70216, 228, 3661), (70217, 228, 3727), (70218, 228, 3815), (70219, 228, 3832), (70220, 228, 3854), (70221, 228, 3879), (70222, 228, 3914), (70223, 228, 3915), (70224, 228, 3940), (70225, 228, 4010), (70226, 228, 4018), (70227, 228, 4059), (70228, 228, 4070), (70229, 228, 4084), (70230, 228, 4102), (70231, 228, 4149), (70232, 228, 4177), (70233, 228, 4212), (70234, 228, 4285), (70235, 228, 4293), (70236, 228, 4329), (70237, 228, 4331), (70238, 228, 4351), (70239, 228, 4355), (70240, 228, 4403), (70241, 228, 4416), (70242, 228, 4449), (70243, 228, 4491), (70244, 228, 4506), (70245, 228, 4521), (70246, 228, 4528), (70247, 228, 4554), (70248, 228, 4614), (70249, 228, 4626), (70250, 228, 4641), (70251, 228, 4646), (70252, 228, 4687), (70253, 228, 4706), (70254, 228, 4755), (70255, 228, 4777), (70256, 228, 4819), (70257, 228, 4887), (70258, 228, 4914), (70259, 228, 4935), (70260, 228, 4983), (70261, 228, 4992), (70262, 228, 5004), (70263, 228, 5008), (70264, 228, 5026), (70265, 228, 5090), (70266, 228, 5095), (70267, 228, 5166), (70268, 228, 5169), (70269, 228, 5199), (70270, 228, 5253), (70271, 228, 5267), (70272, 228, 5317), (70273, 228, 5336), (70274, 228, 5339), (70275, 228, 5351), (70276, 228, 5352), (70277, 228, 5353), (70278, 228, 5427), (70279, 228, 5477), (70280, 228, 5618), (70281, 228, 5628), (70282, 228, 5681), (70283, 228, 5704), (70284, 228, 5782), (70285, 228, 5815), (70286, 228, 5922), (70287, 228, 5930), (70288, 228, 5973), (70289, 228, 5982), (70290, 228, 6011), (70291, 228, 6095), (70292, 228, 6170), (70293, 228, 6203), (70294, 228, 6206), (70295, 228, 6216), (70296, 228, 6220), (70297, 228, 6239), (70298, 228, 6325), (70299, 228, 6338), (70300, 228, 6375), (70301, 228, 6402), (70302, 228, 6404), (70303, 228, 6469), (70304, 228, 6479), (70305, 228, 6500), (70306, 228, 6545), (70307, 228, 6553), (70308, 228, 6577), (70309, 228, 6587), (70310, 228, 6615), (70311, 228, 6720), (70312, 228, 6734), (70313, 228, 6777), (70314, 228, 6842), (70315, 228, 6932), (70316, 228, 6938), (70317, 228, 6944), (70318, 228, 6947), (70319, 228, 6950), (70320, 228, 7156), (70321, 228, 7187), (70322, 228, 7232), (70323, 228, 7243), (70324, 228, 7244), (70325, 228, 7250), (70326, 228, 7325), (70327, 228, 7339), (70328, 228, 7376), (70329, 228, 7395), (70330, 228, 7401), (70331, 228, 7442), (70332, 228, 7445), (70333, 228, 7461), (70334, 228, 7496), (70335, 228, 7568), (70336, 228, 7577), (70337, 228, 7743), (70338, 228, 7751), (70339, 228, 7771), (70340, 228, 7778), (70341, 228, 7812), (70342, 228, 7857), (70343, 228, 7940), (70344, 228, 7945), (70345, 228, 7957), (70346, 228, 7991), (70347, 228, 8064), (70348, 228, 8153), (70349, 228, 8205), (70350, 228, 8247), (70351, 228, 8274), (70352, 228, 8312), (70353, 228, 8316), (70354, 228, 8381), (70355, 228, 8382), (70356, 228, 8399), (70357, 228, 8490), (70358, 228, 8573), (70359, 228, 8589), (70360, 228, 8630), (70361, 228, 8742), (70362, 228, 9112), (70363, 228, 9126), (70364, 228, 9176), (70365, 228, 9277), (70366, 228, 9308), (70367, 228, 9369), (70368, 228, 9380), (70369, 228, 9424), (70370, 228, 9554), (70371, 228, 9566), (70372, 228, 9661), (70373, 228, 9697), (70374, 228, 9703), (70375, 228, 9967), (70376, 228, 9995), (70377, 228, 9996), (70378, 228, 10017), (70379, 228, 10054), (70380, 228, 10171), (70381, 228, 10186), (70382, 228, 10209), (70383, 228, 10214), (70384, 228, 10251), (70385, 228, 10259), (70386, 228, 10355), (70387, 228, 10374), (70388, 228, 10402), (70389, 228, 10443), (70390, 228, 10450), (70391, 228, 10461), (70392, 228, 10476), (70393, 228, 10480), (70394, 228, 10645), (70395, 228, 10784), (70396, 228, 10991), (70397, 228, 11045), (70398, 228, 11054), (70399, 228, 11090), (70400, 228, 11201), (70401, 228, 11239), (70402, 228, 11249), (70403, 228, 11339), (70404, 228, 11343), (70405, 228, 11411), (70406, 228, 11553), (70407, 228, 11601), (70408, 228, 11654), (70409, 228, 11659), (70410, 228, 11713), (70411, 228, 11715), (70412, 228, 11777), (70413, 228, 11781), (70414, 228, 11908), (70415, 228, 11960), (70416, 228, 12016), (70417, 228, 12129), (70418, 228, 12194), (70419, 228, 12311), (70420, 228, 12322), (70421, 228, 12363), (70422, 228, 12369), (70423, 228, 12454), (70424, 228, 12477), (70425, 228, 12585), (70426, 228, 12680), (70427, 228, 12869), (70428, 228, 12899), (70429, 228, 13056), (70430, 228, 13185), (70431, 228, 13241), (70432, 228, 13280), (70433, 228, 13743), (70434, 228, 13781), (70435, 228, 13926), (70436, 228, 14049), (70437, 228, 14127), (70438, 228, 14475), (70439, 228, 14574), (70440, 228, 14744), (70441, 228, 14848), (70442, 228, 14895), (70443, 228, 14900), (70444, 228, 14965), (70445, 228, 15095), (70446, 228, 15243), (70447, 228, 15308), (70448, 228, 15374), (70449, 228, 15477), (70450, 228, 15546), (70451, 228, 15568), (70452, 228, 15616), (70453, 228, 15732), (70454, 228, 15742), (70455, 228, 15960), (70456, 228, 15992), (70457, 228, 16086), (70458, 228, 16149), (70459, 228, 16180), (70460, 228, 16410), (70461, 228, 16490), (70462, 228, 16774), (70463, 228, 17147), (70464, 228, 17194), (70465, 228, 17253), (70466, 228, 17279), (70467, 228, 17283), (70468, 228, 17406), (70469, 228, 17435), (70470, 228, 17580), (70471, 228, 17768), (70472, 228, 17810), (70473, 228, 17835), (70474, 228, 17877), (70475, 228, 17954), (70476, 228, 18089), (70477, 228, 18090), (70478, 228, 18218), (70479, 228, 18526), (70480, 228, 18647), (70481, 228, 18884), (70482, 228, 18885), (70483, 228, 18932), (70484, 228, 19230), (70485, 228, 19246), (70486, 228, 19407), (70487, 228, 19452), (70488, 228, 19488), (70489, 228, 19554), (70490, 228, 19563), (70491, 228, 19606), (70492, 228, 19672), (70493, 228, 19768), (70494, 228, 19769), (70495, 228, 19883), (70496, 228, 20015), (70497, 228, 20049), (70498, 228, 20074), (70499, 228, 20075), (70500, 228, 20091), (70501, 228, 20230), (70502, 228, 20316), (70503, 228, 20485), (70504, 228, 20494), (70505, 228, 20504), (70506, 228, 20523), (70507, 228, 20553), (70508, 228, 20560), (70509, 228, 20616), (70510, 228, 20624), (70511, 228, 20707), (70512, 228, 20752), (70513, 228, 20898), (70514, 228, 20918), (70515, 228, 20966), (70516, 228, 21037), (70517, 228, 21080), (70518, 228, 21155), (70519, 228, 21169), (70520, 228, 21187), (70521, 228, 21221), (70522, 228, 21253), (70523, 228, 21272), (70524, 228, 21310), (70525, 228, 21320), (70526, 228, 21322), (70527, 228, 21329), (70528, 228, 21404), (70529, 228, 21407), (70530, 228, 21408), (70531, 228, 21409), (70532, 228, 21412), (70533, 228, 21572), (70534, 228, 21799), (70535, 228, 21840), (70536, 228, 21863), (70537, 228, 21885), (70538, 228, 21903), (70539, 228, 22025), (70540, 228, 22052), (70541, 228, 22182), (70542, 228, 22199), (70543, 228, 22414), (70544, 228, 22556), (70545, 228, 22571), (70546, 228, 22594), (70547, 228, 22638), (70548, 228, 22672), (70549, 228, 22789), (70550, 228, 22940), (70551, 228, 23010), (70552, 228, 23061), (70553, 228, 23096), (70554, 228, 23099), (70555, 228, 23295), (70556, 228, 23303), (70557, 228, 23317), (70558, 228, 23520), (70559, 228, 23551), (70560, 228, 23722), (70561, 228, 23759), (70562, 228, 23929), (70563, 228, 24127), (70564, 228, 24176), (70565, 228, 24240), (70566, 228, 24386), (70567, 228, 24456), (70568, 228, 24696), (70569, 228, 24782), (70570, 228, 25019), (70571, 228, 25020), (70572, 228, 25164), (70587, 229, 27), (70588, 229, 48), (70589, 229, 211), (70590, 229, 278), (70591, 229, 938), (70592, 229, 1304), (70593, 229, 1589), (70594, 229, 1593), (70595, 229, 1853), (70596, 229, 3068), (70597, 229, 3198), (70598, 229, 3884), (70599, 229, 4345), (70600, 229, 5311), (70601, 229, 5390), (70602, 229, 5533), (70603, 229, 6273), (70604, 229, 6282), (70605, 229, 7235), (70606, 229, 7477), (70607, 229, 7866), (70608, 229, 8575), (70609, 229, 9628), (70610, 229, 9906), (70611, 229, 9981), (70612, 229, 10566), (70613, 229, 10706), (70614, 229, 10845), (70615, 229, 11067), (70616, 229, 11088), (70617, 229, 11515), (70618, 229, 11858), (70619, 229, 11978), (70620, 229, 12541), (70621, 229, 12917), (70622, 229, 13126), (70623, 229, 13387), (70624, 229, 13510), (70625, 229, 13760), (70626, 229, 13820), (70627, 229, 13828), (70628, 229, 14115), (70629, 229, 14464), (70630, 229, 14582), (70631, 229, 14675), (70632, 229, 14679), (70633, 229, 14731), (70634, 229, 14968), (70635, 229, 15043), (70636, 229, 15149), (70637, 229, 15307), (70638, 229, 15337), (70639, 229, 15518), (70640, 229, 15540), (70641, 229, 15751), (70642, 229, 15862), (70643, 229, 16042), (70644, 229, 16255), (70645, 229, 16274), (70646, 229, 16673), (70647, 229, 16697), (70648, 229, 16737), (70649, 229, 16797), (70650, 229, 16810), (70651, 229, 16840), (70652, 229, 16861), (70653, 229, 17066), (70654, 229, 17157), (70655, 229, 17191), (70656, 229, 17220), (70657, 229, 17224), (70658, 229, 17443), (70659, 229, 17562), (70660, 229, 17821), (70661, 229, 18034), (70662, 229, 18055), (70663, 229, 18151), (70664, 229, 18225), (70665, 229, 18281), (70666, 229, 18543), (70667, 229, 18583), (70668, 229, 18637), (70669, 229, 18697), (70670, 229, 18728), (70671, 229, 18789), (70672, 229, 18943), (70673, 229, 19054), (70674, 229, 19411), (70675, 229, 19570), (70676, 229, 19588), (70677, 229, 19603), (70678, 229, 19638), (70679, 229, 19823), (70680, 229, 19881), (70681, 229, 19949), (70682, 229, 20131), (70683, 229, 20182), (70684, 229, 20203), (70685, 229, 20376), (70686, 229, 20571), (70687, 229, 20575), (70688, 229, 20938), (70689, 229, 20947), (70690, 229, 20974), (70691, 229, 21019), (70692, 229, 21062), (70693, 229, 21068), (70694, 229, 21224), (70695, 229, 21242), (70696, 229, 21371), (70697, 229, 21430), (70698, 229, 21444), (70699, 229, 21505), (70700, 229, 21512), (70701, 229, 21521), (70702, 229, 21637), (70703, 229, 21763), (70704, 229, 22179), (70705, 229, 22475), (70706, 229, 22771), (70707, 229, 22788), (70708, 229, 22919), (70709, 229, 23237), (70710, 229, 23294), (70711, 229, 23320), (70712, 229, 23437), (70713, 229, 23512), (70714, 229, 23933), (70715, 229, 24297), (70716, 229, 24319), (70717, 229, 24391), (70718, 229, 24853), (70719, 229, 25167), (70842, 230, 461), (70843, 230, 505), (70844, 230, 856), (70845, 230, 1092), (70846, 230, 1117), (70847, 230, 1731), (70848, 230, 1782), (70849, 230, 2257), (70850, 230, 2260), (70851, 230, 2376), (70852, 230, 2470), (70853, 230, 2663), (70854, 230, 2769), (70855, 230, 2812), (70856, 230, 2846), (70857, 230, 2978), (70858, 230, 3008), (70859, 230, 3070), (70860, 230, 3221), (70861, 230, 3305), (70862, 230, 3586), (70863, 230, 3645), (70864, 230, 3765), (70865, 230, 3963), (70866, 230, 3991), (70867, 230, 4058), (70868, 230, 4127), (70869, 230, 4260), (70870, 230, 4323), (70871, 230, 4329), (70872, 230, 4549), (70873, 230, 4595), (70874, 230, 4878), (70875, 230, 4907), (70876, 230, 5066), (70877, 230, 5118), (70878, 230, 5381), (70879, 230, 5384), (70880, 230, 5435), (70881, 230, 5729), (70882, 230, 5732), (70883, 230, 5802), (70884, 230, 5917), (70885, 230, 6045), (70886, 230, 6061), (70887, 230, 6172), (70888, 230, 6205), (70889, 230, 6375), (70890, 230, 6384), (70891, 230, 6539), (70892, 230, 7442), (70893, 230, 7680), (70894, 230, 8017), (70895, 230, 8453), (70896, 230, 8460), (70897, 230, 8742), (70898, 230, 8767), (70899, 230, 10424), (70900, 230, 11659), (70901, 230, 11715), (70902, 230, 12376), (70903, 230, 13117), (70904, 230, 13434), (70905, 230, 14049), (70906, 230, 14430), (70907, 230, 14619), (70908, 230, 14757), (70909, 230, 14844), (70910, 230, 15012), (70911, 230, 15904), (70912, 230, 16149), (70913, 230, 18459), (70914, 230, 18500), (70915, 230, 20055), (70916, 230, 20839), (70917, 230, 20918), (70969, 231, 143), (70970, 231, 255), (70971, 231, 411), (70972, 231, 789), (70973, 231, 883), (70974, 231, 1037), (70975, 231, 1092), (70976, 231, 1178), (70977, 231, 1340), (70978, 231, 1390), (70979, 231, 1479), (70980, 231, 1648), (70981, 231, 1729), (70982, 231, 1974), (70983, 231, 2057), (70984, 231, 2218), (70985, 231, 3137), (70986, 231, 3305), (70987, 231, 3368), (70988, 231, 3505), (70989, 231, 3566), (70990, 231, 3586), (70991, 231, 3784), (70992, 231, 5066), (70993, 231, 5725), (70994, 231, 5848), (70995, 231, 6058), (70996, 231, 6472), (70997, 231, 6596), (70998, 231, 6845), (70999, 231, 7408), (71000, 231, 8914), (71001, 231, 11339), (71002, 231, 13504), (71003, 231, 14475), (71004, 231, 14619), (71005, 231, 16149), (71006, 231, 20484), (71007, 231, 20918), (71008, 231, 22876), (71009, 231, 23099), (71032, 232, 149), (71033, 232, 152), (71034, 232, 173), (71035, 232, 233), (71036, 232, 273), (71037, 232, 585), (71038, 232, 623), (71039, 232, 641), (71040, 232, 648), (71041, 232, 757), (71042, 232, 789), (71043, 232, 807), (71044, 232, 820), (71045, 232, 849), (71046, 232, 902), (71047, 232, 905), (71048, 232, 1239), (71049, 232, 1265), (71050, 232, 1295), (71051, 232, 1330), (71052, 232, 1376), (71053, 232, 1476), (71054, 232, 1486), (71055, 232, 1662), (71056, 232, 1672), (71057, 232, 1677), (71058, 232, 1679), (71059, 232, 1723), (71060, 232, 1727), (71061, 232, 1871), (71062, 232, 1992), (71063, 232, 2016), (71064, 232, 2055), (71065, 232, 2091), (71066, 232, 2187), (71067, 232, 2253), (71068, 232, 2369), (71069, 232, 2537), (71070, 232, 2832), (71071, 232, 3000), (71072, 232, 3062), (71073, 232, 3070), (71074, 232, 3121), (71075, 232, 3168), (71076, 232, 3175), (71077, 232, 3257), (71078, 232, 3282), (71079, 232, 3376), (71080, 232, 3704), (71081, 232, 3727), (71082, 232, 3815), (71083, 232, 3816), (71084, 232, 3907), (71085, 232, 3922), (71086, 232, 4087), (71087, 232, 4149), (71088, 232, 4200), (71089, 232, 4403), (71090, 232, 4652), (71091, 232, 4727), (71092, 232, 4749), (71093, 232, 5094), (71094, 232, 5267), (71095, 232, 5308), (71096, 232, 5427), (71097, 232, 5562), (71098, 232, 5628), (71099, 232, 5740), (71100, 232, 5838), (71101, 232, 5956), (71102, 232, 6325), (71103, 232, 6472), (71104, 232, 7335), (71105, 232, 7442), (71106, 232, 7881), (71107, 232, 8312), (71108, 232, 9613), (71109, 232, 11411), (71110, 232, 11555), (71111, 232, 11960), (71112, 232, 12182), (71113, 232, 12412), (71114, 232, 17602), (71115, 232, 20543), (71116, 232, 24386), (71159, 233, 166), (71160, 233, 461), (71161, 233, 552), (71162, 233, 700), (71163, 233, 703), (71164, 233, 757), (71165, 233, 781), (71166, 233, 849), (71167, 233, 883), (71168, 233, 1081), (71169, 233, 1117), (71170, 233, 1203), (71171, 233, 1239), (71172, 233, 1552), (71173, 233, 1609), (71174, 233, 1637), (71175, 233, 1647), (71176, 233, 1848), (71177, 233, 1871), (71178, 233, 1985), (71179, 233, 2235), (71180, 233, 2260), (71181, 233, 2376), (71182, 233, 2400), (71183, 233, 2526), (71184, 233, 2530), (71185, 233, 2812), (71186, 233, 2846), (71187, 233, 2978), (71188, 233, 3070), (71189, 233, 3080), (71190, 233, 3121), (71191, 233, 3221), (71192, 233, 3277), (71193, 233, 3370), (71194, 233, 3383), (71195, 233, 3419), (71196, 233, 3420), (71197, 233, 3590), (71198, 233, 3648), (71199, 233, 3796), (71200, 233, 4015), (71201, 233, 4058), (71202, 233, 4087), (71203, 233, 4138), (71204, 233, 4782), (71205, 233, 4964), (71206, 233, 5066), (71207, 233, 5199), (71208, 233, 5340), (71209, 233, 5384), (71210, 233, 5435), (71211, 233, 5621), (71212, 233, 5941), (71213, 233, 5968), (71214, 233, 6013), (71215, 233, 6152), (71216, 233, 6472), (71217, 233, 6846), (71218, 233, 7055), (71219, 233, 7133), (71220, 233, 7335), (71221, 233, 7442), (71222, 233, 7878), (71223, 233, 7892), (71224, 233, 8767), (71225, 233, 9112), (71226, 233, 9119), (71227, 233, 9446), (71228, 233, 9454), (71229, 233, 9625), (71230, 233, 10221), (71231, 233, 10424), (71232, 233, 10530), (71233, 233, 11415), (71234, 233, 11659), (71235, 233, 12044), (71236, 233, 12262), (71237, 233, 12369), (71238, 233, 12467), (71239, 233, 13439), (71240, 233, 13504), (71241, 233, 13828), (71242, 233, 14049), (71243, 233, 14176), (71244, 233, 14757), (71245, 233, 16925), (71246, 233, 17739), (71247, 233, 18057), (71248, 233, 18683), (71249, 233, 18823), (71250, 233, 20005), (71251, 233, 20636), (71252, 233, 20918), (71253, 233, 22479), (71254, 233, 22841), (71286, 234, 173), (71287, 234, 800), (71288, 234, 878), (71289, 234, 1434), (71290, 234, 1625), (71291, 234, 1727), (71292, 234, 1848), (71293, 234, 1855), (71294, 234, 1871), (71295, 234, 2016), (71296, 234, 3917), (71297, 234, 3963), (71298, 234, 3991), (71299, 234, 4343), (71300, 234, 4652), (71301, 234, 4776), (71302, 234, 5026), (71303, 234, 5090), (71304, 234, 5384), (71305, 234, 6203), (71306, 234, 6274), (71307, 234, 6325), (71308, 234, 6472), (71309, 234, 7812), (71310, 234, 8027), (71311, 234, 8097), (71312, 234, 8312), (71313, 234, 9292), (71314, 234, 9944), (71315, 234, 10424), (71316, 234, 12182), (71317, 234, 14965), (71318, 234, 16925), (71319, 234, 19016), (71320, 234, 23096), (71321, 234, 23128), (71349, 235, 694), (71350, 235, 856), (71351, 235, 905), (71352, 235, 1340), (71353, 235, 1848), (71354, 235, 2253), (71355, 235, 2261), (71356, 235, 3008), (71357, 235, 3046), (71358, 235, 3922), (71359, 235, 4127), (71360, 235, 4403), (71361, 235, 4404), (71362, 235, 5220), (71363, 235, 5628), (71364, 235, 7672), (71365, 235, 7751), (71366, 235, 8203), (71367, 235, 9990), (71368, 235, 12311), (71369, 235, 12782), (71370, 235, 15095), (71371, 235, 15558), (71372, 235, 21230), (71380, 236, 46), (71381, 236, 149), (71382, 236, 152), (71383, 236, 173), (71384, 236, 233), (71385, 236, 257), (71386, 236, 267), (71387, 236, 300), (71388, 236, 349), (71389, 236, 376), (71390, 236, 378), (71391, 236, 476), (71392, 236, 515), (71393, 236, 518), (71394, 236, 530), (71395, 236, 552), (71396, 236, 585), (71397, 236, 623), (71398, 236, 641), (71399, 236, 654), (71400, 236, 700), (71401, 236, 765), (71402, 236, 768), (71403, 236, 788), (71404, 236, 820), (71405, 236, 849), (71406, 236, 867), (71407, 236, 877), (71408, 236, 883), (71409, 236, 891), (71410, 236, 895), (71411, 236, 899), (71412, 236, 929), (71413, 236, 972), (71414, 236, 984), (71415, 236, 1003), (71416, 236, 1085), (71417, 236, 1098), (71418, 236, 1128), (71419, 236, 1201), (71420, 236, 1273), (71421, 236, 1300), (71422, 236, 1315), (71423, 236, 1338), (71424, 236, 1365), (71425, 236, 1471), (71426, 236, 1545), (71427, 236, 1548), (71428, 236, 1559), (71429, 236, 1579), (71430, 236, 1609), (71431, 236, 1625), (71432, 236, 1637), (71433, 236, 1667), (71434, 236, 1679), (71435, 236, 1707), (71436, 236, 1711), (71437, 236, 1719), (71438, 236, 1792), (71439, 236, 1848), (71440, 236, 1855), (71441, 236, 1859), (71442, 236, 1860), (71443, 236, 1866), (71444, 236, 1870), (71445, 236, 1960), (71446, 236, 1974), (71447, 236, 2016), (71448, 236, 2050), (71449, 236, 2055), (71450, 236, 2067), (71451, 236, 2072), (71452, 236, 2084), (71453, 236, 2108), (71454, 236, 2118), (71455, 236, 2130), (71456, 236, 2148), (71457, 236, 2160), (71458, 236, 2266), (71459, 236, 2285), (71460, 236, 2332), (71461, 236, 2342), (71462, 236, 2369), (71463, 236, 2380), (71464, 236, 2400), (71465, 236, 2443), (71466, 236, 2462), (71467, 236, 2470), (71468, 236, 2479), (71469, 236, 2503), (71470, 236, 2511), (71471, 236, 2530), (71472, 236, 2545), (71473, 236, 2603), (71474, 236, 2639), (71475, 236, 2657), (71476, 236, 2769), (71477, 236, 2821), (71478, 236, 2832), (71479, 236, 2849), (71480, 236, 2850), (71481, 236, 2886), (71482, 236, 2975), (71483, 236, 2997), (71484, 236, 3040), (71485, 236, 3046), (71486, 236, 3070), (71487, 236, 3105), (71488, 236, 3149), (71489, 236, 3169), (71490, 236, 3208), (71491, 236, 3291), (71492, 236, 3427), (71493, 236, 3479), (71494, 236, 3485), (71495, 236, 3505), (71496, 236, 3513), (71497, 236, 3580), (71498, 236, 3586), (71499, 236, 3623), (71500, 236, 3661), (71501, 236, 3727), (71502, 236, 3815), (71503, 236, 3832), (71504, 236, 3854), (71505, 236, 3879), (71506, 236, 3914), (71507, 236, 3940), (71508, 236, 4010), (71509, 236, 4018), (71510, 236, 4059), (71511, 236, 4070), (71512, 236, 4084), (71513, 236, 4102), (71514, 236, 4149), (71515, 236, 4177), (71516, 236, 4212), (71517, 236, 4293), (71518, 236, 4329), (71519, 236, 4331), (71520, 236, 4351), (71521, 236, 4355), (71522, 236, 4403), (71523, 236, 4416), (71524, 236, 4449), (71525, 236, 4491), (71526, 236, 4506), (71527, 236, 4521), (71528, 236, 4528), (71529, 236, 4554), (71530, 236, 4626), (71531, 236, 4641), (71532, 236, 4687), (71533, 236, 4706), (71534, 236, 4777), (71535, 236, 4887), (71536, 236, 4914), (71537, 236, 4935), (71538, 236, 4983), (71539, 236, 4992), (71540, 236, 5004), (71541, 236, 5008), (71542, 236, 5026), (71543, 236, 5090), (71544, 236, 5095), (71545, 236, 5166), (71546, 236, 5169), (71547, 236, 5199), (71548, 236, 5253), (71549, 236, 5267), (71550, 236, 5317), (71551, 236, 5339), (71552, 236, 5351), (71553, 236, 5352), (71554, 236, 5353), (71555, 236, 5427), (71556, 236, 5477), (71557, 236, 5628), (71558, 236, 5704), (71559, 236, 5815), (71560, 236, 5930), (71561, 236, 5973), (71562, 236, 5982), (71563, 236, 6011), (71564, 236, 6095), (71565, 236, 6203), (71566, 236, 6206), (71567, 236, 6216), (71568, 236, 6239), (71569, 236, 6325), (71570, 236, 6338), (71571, 236, 6375), (71572, 236, 6402), (71573, 236, 6469), (71574, 236, 6479), (71575, 236, 6500), (71576, 236, 6545), (71577, 236, 6553), (71578, 236, 6577), (71579, 236, 6587), (71580, 236, 6615), (71581, 236, 6777), (71582, 236, 6932), (71583, 236, 6944), (71584, 236, 6947), (71585, 236, 6950), (71586, 236, 7187), (71587, 236, 7243), (71588, 236, 7244), (71589, 236, 7250), (71590, 236, 7325), (71591, 236, 7339), (71592, 236, 7376), (71593, 236, 7401), (71594, 236, 7442), (71595, 236, 7445), (71596, 236, 7461), (71597, 236, 7577), (71598, 236, 7751), (71599, 236, 7778), (71600, 236, 7812), (71601, 236, 7857), (71602, 236, 7940), (71603, 236, 7945), (71604, 236, 7991), (71605, 236, 8064), (71606, 236, 8153), (71607, 236, 8247), (71608, 236, 8274), (71609, 236, 8312), (71610, 236, 8316), (71611, 236, 8381), (71612, 236, 8382), (71613, 236, 8399), (71614, 236, 8573), (71615, 236, 8589), (71616, 236, 8630), (71617, 236, 9112), (71618, 236, 9176), (71619, 236, 9277), (71620, 236, 9308), (71621, 236, 9369), (71622, 236, 9380), (71623, 236, 9424), (71624, 236, 9554), (71625, 236, 9566), (71626, 236, 9703), (71627, 236, 9967), (71628, 236, 9995), (71629, 236, 9996), (71630, 236, 10017), (71631, 236, 10054), (71632, 236, 10209), (71633, 236, 10214), (71634, 236, 10355), (71635, 236, 10374), (71636, 236, 10402), (71637, 236, 10450), (71638, 236, 10461), (71639, 236, 10476), (71640, 236, 10480), (71641, 236, 10645), (71642, 236, 10991), (71643, 236, 11045), (71644, 236, 11090), (71645, 236, 11249), (71646, 236, 11339), (71647, 236, 11343), (71648, 236, 11411), (71649, 236, 11659), (71650, 236, 11713), (71651, 236, 11715), (71652, 236, 11777), (71653, 236, 11908), (71654, 236, 11960), (71655, 236, 12016), (71656, 236, 12129), (71657, 236, 12311), (71658, 236, 12322), (71659, 236, 12363), (71660, 236, 12369), (71661, 236, 12454), (71662, 236, 12477), (71663, 236, 12899), (71664, 236, 13056), (71665, 236, 13241), (71666, 236, 13280), (71667, 236, 13781), (71668, 236, 13926), (71669, 236, 14049), (71670, 236, 14127), (71671, 236, 14475), (71672, 236, 14574), (71673, 236, 14744), (71674, 236, 14848), (71675, 236, 14895), (71676, 236, 14965), (71677, 236, 15095), (71678, 236, 15243), (71679, 236, 15308), (71680, 236, 15374), (71681, 236, 15477), (71682, 236, 15546), (71683, 236, 15568), (71684, 236, 15616), (71685, 236, 15732), (71686, 236, 15960), (71687, 236, 15992), (71688, 236, 16086), (71689, 236, 16149), (71690, 236, 16180), (71691, 236, 16490), (71692, 236, 16774), (71693, 236, 17147), (71694, 236, 17194), (71695, 236, 17253), (71696, 236, 17279), (71697, 236, 17283), (71698, 236, 17406), (71699, 236, 17580), (71700, 236, 17768), (71701, 236, 17954), (71702, 236, 18090), (71703, 236, 18526), (71704, 236, 18884), (71705, 236, 18885), (71706, 236, 19230), (71707, 236, 19246), (71708, 236, 19407), (71709, 236, 19452), (71710, 236, 19488), (71711, 236, 19563), (71712, 236, 19672), (71713, 236, 19768), (71714, 236, 19769), (71715, 236, 20015), (71716, 236, 20049), (71717, 236, 20074), (71718, 236, 20075), (71719, 236, 20091), (71720, 236, 20230), (71721, 236, 20316), (71722, 236, 20485), (71723, 236, 20504), (71724, 236, 20553), (71725, 236, 20560), (71726, 236, 20616), (71727, 236, 20707), (71728, 236, 20752), (71729, 236, 20898), (71730, 236, 20918), (71731, 236, 20966), (71732, 236, 21037), (71733, 236, 21169), (71734, 236, 21187), (71735, 236, 21253), (71736, 236, 21272), (71737, 236, 21310), (71738, 236, 21320), (71739, 236, 21322), (71740, 236, 21329), (71741, 236, 21404), (71742, 236, 21407), (71743, 236, 21408), (71744, 236, 21409), (71745, 236, 21799), (71746, 236, 21863), (71747, 236, 21885), (71748, 236, 21903), (71749, 236, 22052), (71750, 236, 22182), (71751, 236, 22414), (71752, 236, 22571), (71753, 236, 22594), (71754, 236, 22638), (71755, 236, 22672), (71756, 236, 23010), (71757, 236, 23096), (71758, 236, 23099), (71759, 236, 23295), (71760, 236, 23303), (71761, 236, 23317), (71762, 236, 23551), (71763, 236, 23722), (71764, 236, 23759), (71765, 236, 23929), (71766, 236, 24127), (71767, 236, 24176), (71768, 236, 24240), (71769, 236, 24386), (71770, 236, 25019), (71771, 236, 25020), (71772, 236, 25164), (71891, 237, 41), (71892, 237, 54), (71893, 237, 72), (71894, 237, 81), (71895, 237, 215), (71896, 237, 302), (71897, 237, 352), (71898, 237, 388), (71899, 237, 408), (71900, 237, 492), (71901, 237, 515), (71902, 237, 603), (71903, 237, 768), (71904, 237, 820), (71905, 237, 1003), (71906, 237, 1005), (71907, 237, 1162), (71908, 237, 1201), (71909, 237, 1239), (71910, 237, 1278), (71911, 237, 1300), (71912, 237, 1330), (71913, 237, 1508), (71914, 237, 1559), (71915, 237, 1667), (71916, 237, 1737), (71917, 237, 1802), (71918, 237, 1860), (71919, 237, 1871), (71920, 237, 1875), (71921, 237, 1960), (71922, 237, 2055), (71923, 237, 2108), (71924, 237, 2137), (71925, 237, 2168), (71926, 237, 2233), (71927, 237, 2607), (71928, 237, 2639), (71929, 237, 2649), (71930, 237, 2802), (71931, 237, 2808), (71932, 237, 2816), (71933, 237, 2823), (71934, 237, 2847), (71935, 237, 3087), (71936, 237, 3117), (71937, 237, 3157), (71938, 237, 3291), (71939, 237, 3362), (71940, 237, 3376), (71941, 237, 3497), (71942, 237, 3623), (71943, 237, 3626), (71944, 237, 3732), (71945, 237, 3756), (71946, 237, 3854), (71947, 237, 3921), (71948, 237, 3942), (71949, 237, 4058), (71950, 237, 4059), (71951, 237, 4070), (71952, 237, 4116), (71953, 237, 4177), (71954, 237, 4293), (71955, 237, 4335), (71956, 237, 4406), (71957, 237, 4668), (71958, 237, 4783), (71959, 237, 4796), (71960, 237, 4834), (71961, 237, 4840), (71962, 237, 4848), (71963, 237, 5283), (71964, 237, 5318), (71965, 237, 5956), (71966, 237, 6075), (71967, 237, 6402), (71968, 237, 6469), (71969, 237, 6563), (71970, 237, 7376), (71971, 237, 7492), (71972, 237, 7830), (71973, 237, 8037), (71974, 237, 8103), (71975, 237, 8114), (71976, 237, 8136), (71977, 237, 8153), (71978, 237, 8155), (71979, 237, 8258), (71980, 237, 8460), (71981, 237, 8464), (71982, 237, 9018), (71983, 237, 9068), (71984, 237, 9382), (71985, 237, 9465), (71986, 237, 9670), (71987, 237, 9703), (71988, 237, 10423), (71989, 237, 10786), (71990, 237, 10990), (71991, 237, 11092), (71992, 237, 11310), (71993, 237, 11469), (71994, 237, 12139), (71995, 237, 13121), (71996, 237, 13241), (71997, 237, 14127), (71998, 237, 14474), (71999, 237, 14732), (72000, 237, 15243), (72001, 237, 15282), (72002, 237, 15568), (72003, 237, 15654), (72004, 237, 16180), (72005, 237, 16458), (72006, 237, 16490), (72007, 237, 16621), (72008, 237, 17051), (72009, 237, 17302), (72010, 237, 17977), (72011, 237, 19769), (72012, 237, 20317), (72013, 237, 20347), (72014, 237, 20422), (72015, 237, 20611), (72016, 237, 21096), (72017, 237, 21320), (72018, 237, 21506), (72019, 237, 21757), (72020, 237, 22052), (72021, 237, 23183), (72146, 238, 151), (72147, 238, 1239), (72148, 238, 1265), (72149, 238, 1335), (72150, 238, 1376), (72151, 238, 1800), (72152, 238, 1902), (72153, 238, 2236), (72154, 238, 2285), (72155, 238, 2354), (72156, 238, 2549), (72157, 238, 3168), (72158, 238, 3257), (72159, 238, 3459), (72160, 238, 3484), (72161, 238, 3485), (72162, 238, 3595), (72163, 238, 3599), (72164, 238, 3623), (72165, 238, 3682), (72166, 238, 4087), (72167, 238, 4200), (72168, 238, 5094), (72169, 238, 5381), (72170, 238, 5562), (72171, 238, 6047), (72172, 238, 7335), (72173, 238, 7686), (72174, 238, 7962), (72175, 238, 8070), (72176, 238, 9112), (72177, 238, 9119), (72178, 238, 9270), (72179, 238, 9446), (72180, 238, 9846), (72181, 238, 10680), (72182, 238, 11195), (72183, 238, 11555), (72184, 238, 15535), (72185, 238, 17739), (72186, 238, 21485), (72209, 239, 177), (72210, 239, 515), (72211, 239, 2200), (72212, 239, 3540), (72213, 239, 4917), (72214, 239, 7499), (72215, 239, 7739), (72216, 239, 7750), (72217, 239, 7918), (72218, 239, 7923), (72219, 239, 8316), (72220, 239, 8478), (72221, 239, 8818), (72222, 239, 8997), (72223, 239, 10524), (72224, 239, 10725), (72225, 239, 11039), (72226, 239, 11111), (72227, 239, 11137), (72228, 239, 11482), (72229, 239, 11916), (72230, 239, 12102), (72231, 239, 12383), (72232, 239, 12422), (72233, 239, 12482), (72234, 239, 12738), (72235, 239, 12853), (72236, 239, 15175), (72237, 239, 15490), (72238, 239, 15672), (72239, 239, 15936), (72240, 239, 16019), (72241, 239, 16108), (72242, 239, 16342), (72243, 239, 16809), (72244, 239, 16871), (72245, 239, 17545), (72246, 239, 17843), (72247, 239, 17856), (72248, 239, 17877), (72249, 239, 18091), (72250, 239, 19005), (72251, 239, 19086), (72252, 239, 19160), (72253, 239, 19480), (72254, 239, 19885), (72255, 239, 20282), (72256, 239, 20795), (72257, 239, 21202), (72258, 239, 21358), (72259, 239, 21485), (72260, 239, 21797), (72261, 239, 22711), (72262, 239, 22770), (72263, 239, 22867), (72264, 239, 23186), (72265, 239, 23823), (72266, 239, 23958), (72267, 239, 24456), (72268, 239, 24674), (72269, 239, 25190), (72272, 240, 3588), (72273, 240, 10725), (72274, 240, 11482), (72275, 240, 14371), (72276, 240, 15672), (72277, 240, 18091), (72278, 240, 23297), (72279, 241, 3588), (72280, 241, 8896), (72281, 241, 11651), (72282, 241, 13487), (72283, 241, 14371), (72284, 241, 15334), (72286, 242, 1781), (72287, 242, 4045), (72288, 242, 4226), (72289, 242, 6095), (72290, 242, 6642), (72291, 242, 7623), (72292, 242, 7811), (72293, 242, 8572), (72294, 242, 8932), (72295, 242, 8998), (72296, 242, 9543), (72297, 242, 9736), (72298, 242, 10442), (72299, 242, 10524), (72300, 242, 11495), (72301, 242, 13112), (72302, 242, 13285), (72303, 242, 13487), (72304, 242, 13819), (72305, 242, 13911), (72306, 242, 14037), (72307, 242, 14776), (72308, 242, 15046), (72309, 242, 15104), (72310, 242, 15139), (72311, 242, 16108), (72312, 242, 16299), (72313, 242, 16551), (72314, 242, 16626), (72315, 242, 16898), (72316, 242, 17208), (72317, 242, 18312), (72318, 242, 19687), (72319, 242, 21422), (72320, 242, 21993), (72321, 242, 23948), (72349, 243, 5947), (72350, 243, 6589), (72351, 243, 7079), (72352, 243, 8307), (72353, 243, 8543), (72354, 243, 8921), (72355, 243, 10294), (72356, 243, 11318), (72357, 243, 12189), (72358, 243, 12383), (72359, 243, 12900), (72360, 243, 12972), (72361, 243, 13497), (72362, 243, 14467), (72363, 243, 15899), (72364, 243, 15936), (72365, 243, 17084), (72366, 243, 18091), (72367, 243, 21733), (72380, 244, 977), (72381, 244, 4417), (72382, 244, 6589), (72383, 244, 6745), (72384, 244, 7214), (72385, 244, 7994), (72386, 244, 9953), (72387, 244, 10294), (72388, 244, 10938), (72389, 244, 10978), (72390, 244, 11318), (72391, 244, 11508), (72392, 244, 12383), (72393, 244, 13370), (72394, 244, 14180), (72395, 244, 16453), (72396, 244, 17353), (72397, 244, 18091), (72398, 244, 18509), (72399, 244, 20190), (72400, 244, 20218), (72401, 244, 23070), (72402, 244, 23124), (72403, 244, 23172), (72404, 244, 23182), (72405, 244, 24644), (72406, 244, 25117), (72411, 245, 3588), (72412, 245, 7316), (72413, 245, 7406), (72414, 245, 8494), (72415, 245, 9029), (72416, 245, 9464), (72417, 245, 9926), (72418, 245, 11923), (72419, 245, 15936), (72420, 245, 16019), (72421, 245, 16392), (72422, 245, 16898), (72423, 245, 19872), (72424, 245, 20877), (72425, 245, 23297), (72426, 245, 23621), (72427, 245, 25190), (72442, 246, 173), (72443, 246, 1157), (72444, 246, 1198), (72445, 246, 1201), (72446, 246, 1266), (72447, 246, 1291), (72448, 246, 1368), (72449, 246, 1463), (72450, 246, 1530), (72451, 246, 1579), (72452, 246, 1802), (72453, 246, 2024), (72454, 246, 2094), (72455, 246, 2148), (72456, 246, 2175), (72457, 246, 2306), (72458, 246, 2452), (72459, 246, 2472), (72460, 246, 2519), (72461, 246, 2908), (72462, 246, 2982), (72463, 246, 3123), (72464, 246, 3181), (72465, 246, 3299), (72466, 246, 3302), (72467, 246, 3369), (72468, 246, 4018), (72469, 246, 4045), (72470, 246, 4105), (72471, 246, 4138), (72472, 246, 4153), (72473, 246, 4368), (72474, 246, 4375), (72475, 246, 4506), (72476, 246, 4580), (72477, 246, 4633), (72478, 246, 4863), (72479, 246, 4948), (72480, 246, 4996), (72481, 246, 5099), (72482, 246, 5244), (72483, 246, 5371), (72484, 246, 5688), (72485, 246, 6021), (72486, 246, 6098), (72487, 246, 6171), (72488, 246, 6874), (72489, 246, 6955), (72490, 246, 7094), (72491, 246, 7138), (72492, 246, 7155), (72493, 246, 7492), (72494, 246, 7584), (72495, 246, 7811), (72496, 246, 8092), (72497, 246, 8227), (72498, 246, 8314), (72499, 246, 8494), (72500, 246, 8718), (72501, 246, 8722), (72502, 246, 8811), (72503, 246, 8998), (72504, 246, 9051), (72505, 246, 9112), (72506, 246, 9135), (72507, 246, 9863), (72508, 246, 10200), (72509, 246, 10659), (72510, 246, 11303), (72511, 246, 11318), (72512, 246, 11500), (72513, 246, 11530), (72514, 246, 11884), (72515, 246, 12071), (72516, 246, 12539), (72517, 246, 12989), (72518, 246, 13487), (72519, 246, 13819), (72520, 246, 13864), (72521, 246, 13867), (72522, 246, 13990), (72523, 246, 14139), (72524, 246, 14152), (72525, 246, 14209), (72526, 246, 14455), (72527, 246, 14475), (72528, 246, 14499), (72529, 246, 14574), (72530, 246, 15490), (72531, 246, 15546), (72532, 246, 16194), (72533, 246, 17260), (72534, 246, 17750), (72535, 246, 17853), (72536, 246, 18186), (72537, 246, 18233), (72538, 246, 18267), (72539, 246, 18434), (72540, 246, 18589), (72541, 246, 18597), (72542, 246, 18747), (72543, 246, 18771), (72544, 246, 18880), (72545, 246, 18999), (72546, 246, 19194), (72547, 246, 20059), (72548, 246, 20065), (72549, 246, 21166), (72550, 246, 21432), (72551, 246, 21485), (72552, 246, 22153), (72553, 246, 22314), (72554, 246, 22497), (72555, 246, 22939), (72556, 246, 25049), (72557, 246, 25050), (72558, 246, 25062), (72569, 247, 3846), (72570, 247, 4026), (72571, 247, 5438), (72572, 247, 6201), (72573, 247, 6623), (72574, 247, 6886), (72575, 247, 7219), (72576, 247, 8072), (72577, 247, 8494), (72578, 247, 8840), (72579, 247, 9158), (72580, 247, 9542), (72581, 247, 9551), (72582, 247, 9553), (72583, 247, 10260), (72584, 247, 10367), (72585, 247, 10382), (72586, 247, 10488), (72587, 247, 10531), (72588, 247, 10965), (72589, 247, 11348), (72590, 247, 11482), (72591, 247, 11649), (72592, 247, 11714), (72593, 247, 11843), (72594, 247, 12405), (72595, 247, 12430), (72596, 247, 12453), (72597, 247, 12539), (72598, 247, 13303), (72599, 247, 15394), (72600, 247, 16966), (72601, 247, 19081), (72602, 247, 19156), (72603, 247, 19324), (72604, 247, 19983), (72605, 247, 23234), (72606, 247, 24211), (72607, 247, 25042), (72608, 247, 25198), (72632, 248, 2863), (72633, 248, 3424), (72634, 248, 3588), (72635, 248, 4309), (72636, 248, 4818), (72637, 248, 5547), (72638, 248, 7099), (72639, 248, 7316), (72640, 248, 8164), (72641, 248, 8349), (72642, 248, 8577), (72643, 248, 9013), (72644, 248, 10382), (72645, 248, 10914), (72646, 248, 11497), (72647, 248, 11651), (72648, 248, 11923), (72649, 248, 12034), (72650, 248, 13166), (72651, 248, 14371), (72652, 248, 14962), (72653, 248, 15096), (72654, 248, 15139), (72655, 248, 15323), (72656, 248, 15334), (72657, 248, 15672), (72658, 248, 16560), (72659, 248, 18991), (72660, 248, 19561), (72661, 248, 19760), (72662, 248, 20700), (72663, 248, 24674), (72664, 248, 24700), (72695, 249, 3648), (72696, 249, 5968), (72697, 249, 6159), (72698, 249, 6206), (72699, 249, 6276), (72700, 249, 7406), (72701, 249, 9433), (72702, 249, 12403), (72703, 249, 13322), (72704, 249, 15672), (72705, 249, 16019), (72706, 249, 18091), (72707, 249, 18464), (72708, 249, 22442), (72709, 249, 22751), (72710, 249, 23297), (72711, 249, 23603), (72726, 250, 2726), (72727, 250, 3533), (72728, 250, 3947), (72729, 250, 5050), (72730, 250, 7207), (72731, 250, 7394), (72732, 250, 8543), (72733, 250, 8572), (72734, 250, 9063), (72735, 250, 10116), (72736, 250, 11482), (72737, 250, 12189), (72738, 250, 13346), (72739, 250, 14041), (72740, 250, 15569), (72741, 250, 16815), (72742, 250, 18040), (72743, 250, 18488), (72744, 250, 18645), (72745, 250, 19005), (72746, 250, 19086), (72747, 250, 20578), (72748, 250, 20877), (72749, 250, 21818), (72750, 250, 22667), (72751, 250, 23958), (72752, 250, 24489), (72757, 251, 4917), (72758, 251, 6097), (72759, 251, 7750), (72760, 251, 8881), (72761, 251, 11916), (72762, 251, 12311), (72763, 251, 13734), (72764, 251, 14168), (72765, 251, 14461), (72766, 251, 15057), (72767, 251, 15175), (72768, 251, 16129), (72769, 251, 16547), (72770, 251, 16809), (72771, 251, 17545), (72772, 251, 17757), (72773, 251, 17856), (72774, 251, 19819), (72775, 251, 20282), (72776, 251, 20795), (72777, 251, 21387), (72778, 251, 21990), (72779, 251, 22995), (72780, 251, 23795), (72781, 251, 24456), (72782, 251, 24683), (72788, 252, 15913), (72789, 252, 23297), (72791, 253, 1008), (72792, 253, 1530), (72793, 253, 1953), (72794, 253, 2380), (72795, 253, 2504), (72796, 253, 2951), (72797, 253, 3150), (72798, 253, 3862), (72799, 253, 3985), (72800, 253, 4247), (72801, 253, 4374), (72802, 253, 4537), (72803, 253, 4548), (72804, 253, 4601), (72805, 253, 4640), (72806, 253, 4693), (72807, 253, 4831), (72808, 253, 4958), (72809, 253, 5226), (72810, 253, 5529), (72811, 253, 5572), (72812, 253, 6033), (72813, 253, 6690), (72814, 253, 6916), (72815, 253, 6958), (72816, 253, 7219), (72817, 253, 7236), (72818, 253, 7373), (72819, 253, 7406), (72820, 253, 7416), (72821, 253, 7495), (72822, 253, 7544), (72823, 253, 7844), (72824, 253, 7948), (72825, 253, 7977), (72826, 253, 7990), (72827, 253, 8157), (72828, 253, 8526), (72829, 253, 8566), (72830, 253, 8739), (72831, 253, 8838), (72832, 253, 8874), (72833, 253, 8911), (72834, 253, 8937), (72835, 253, 8967), (72836, 253, 8980), (72837, 253, 9051), (72838, 253, 9161), (72839, 253, 9242), (72840, 253, 9251), (72841, 253, 9464), (72842, 253, 9541), (72843, 253, 9830), (72844, 253, 9856), (72845, 253, 10067), (72846, 253, 10228), (72847, 253, 10274), (72848, 253, 10777), (72849, 253, 10783), (72850, 253, 11347), (72851, 253, 11371), (72852, 253, 11482), (72853, 253, 11564), (72854, 253, 11733), (72855, 253, 11818), (72856, 253, 11884), (72857, 253, 11916), (72858, 253, 11974), (72859, 253, 11996), (72860, 253, 12074), (72861, 253, 12292), (72862, 253, 12665), (72863, 253, 12677), (72864, 253, 12738), (72865, 253, 12788), (72866, 253, 12801), (72867, 253, 13374), (72868, 253, 13863), (72869, 253, 13889), (72870, 253, 13907), (72871, 253, 14091), (72872, 253, 14628), (72873, 253, 14777), (72874, 253, 14779), (72875, 253, 14789), (72876, 253, 14912), (72877, 253, 15412), (72878, 253, 15441), (72879, 253, 15569), (72880, 253, 15738), (72881, 253, 16093), (72882, 253, 16240), (72883, 253, 16341), (72884, 253, 16392), (72885, 253, 16452), (72886, 253, 16528), (72887, 253, 17119), (72888, 253, 17339), (72889, 253, 17432), (72890, 253, 17505), (72891, 253, 17613), (72892, 253, 17720), (72893, 253, 17855), (72894, 253, 17877), (72895, 253, 18218), (72896, 253, 18312), (72897, 253, 18380), (72898, 253, 18657), (72899, 253, 18862), (72900, 253, 18988), (72901, 253, 19166), (72902, 253, 19266), (72903, 253, 19374), (72904, 253, 19492), (72905, 253, 19738), (72906, 253, 19799), (72907, 253, 19884), (72908, 253, 19917), (72909, 253, 19999), (72910, 253, 20045), (72911, 253, 20115), (72912, 253, 20143), (72913, 253, 20162), (72914, 253, 20217), (72915, 253, 20311), (72916, 253, 20501), (72917, 253, 20547), (72918, 253, 20564), (72919, 253, 20574), (72920, 253, 21017), (72921, 253, 21425), (72922, 253, 21527), (72923, 253, 22354), (72924, 253, 22441), (72925, 253, 22674), (72926, 253, 22968), (72927, 253, 23470), (72928, 253, 23727), (72929, 253, 24249), (72930, 253, 24816), (72931, 253, 24996), (72932, 253, 25101), (72933, 253, 25159), (73046, 254, 351), (73047, 254, 787), (73048, 254, 826), (73049, 254, 979), (73050, 254, 1332), (73051, 254, 1377), (73052, 254, 1403), (73053, 254, 1703), (73054, 254, 1843), (73055, 254, 2290), (73056, 254, 2313), (73057, 254, 2352), (73058, 254, 2381), (73059, 254, 2444), (73060, 254, 2445), (73061, 254, 2461), (73062, 254, 2666), (73063, 254, 2708), (73064, 254, 2742), (73065, 254, 2780), (73066, 254, 3113), (73067, 254, 3129), (73068, 254, 3200), (73069, 254, 3244), (73070, 254, 3249), (73071, 254, 3319), (73072, 254, 3385), (73073, 254, 3445), (73074, 254, 3538), (73075, 254, 3560), (73076, 254, 3594), (73077, 254, 3659), (73078, 254, 3765), (73079, 254, 3859), (73080, 254, 4032), (73081, 254, 4044), (73082, 254, 4154), (73083, 254, 4283), (73084, 254, 4321), (73085, 254, 4368), (73086, 254, 4611), (73087, 254, 4740), (73088, 254, 4756), (73089, 254, 4801), (73090, 254, 4813), (73091, 254, 4865), (73092, 254, 4926), (73093, 254, 5009), (73094, 254, 5024), (73095, 254, 5283), (73096, 254, 5515), (73097, 254, 5558), (73098, 254, 5994), (73099, 254, 6000), (73100, 254, 6078), (73101, 254, 6396), (73102, 254, 6401), (73103, 254, 6473), (73104, 254, 6684), (73105, 254, 6744), (73106, 254, 7080), (73107, 254, 7419), (73108, 254, 7486), (73109, 254, 7555), (73110, 254, 7826), (73111, 254, 8243), (73112, 254, 8348), (73113, 254, 8926), (73114, 254, 9194), (73115, 254, 9343), (73116, 254, 9363), (73117, 254, 9696), (73118, 254, 9720), (73119, 254, 9797), (73120, 254, 9831), (73121, 254, 10138), (73122, 254, 10322), (73123, 254, 11065), (73124, 254, 11457), (73125, 254, 11626), (73126, 254, 11991), (73127, 254, 13118), (73128, 254, 13362), (73129, 254, 13561), (73130, 254, 13709), (73131, 254, 13756), (73132, 254, 13782), (73133, 254, 13864), (73134, 254, 14745), (73135, 254, 15302), (73136, 254, 15324), (73137, 254, 15421), (73138, 254, 15777), (73139, 254, 15986), (73140, 254, 16129), (73141, 254, 16590), (73142, 254, 17234), (73143, 254, 17333), (73144, 254, 17381), (73145, 254, 17840), (73146, 254, 17937), (73147, 254, 17965), (73148, 254, 18322), (73149, 254, 18323), (73150, 254, 18511), (73151, 254, 18526), (73152, 254, 19285), (73153, 254, 19646), (73154, 254, 19842), (73155, 254, 20130), (73156, 254, 20351), (73157, 254, 20502), (73158, 254, 20613), (73159, 254, 20900), (73160, 254, 20971), (73161, 254, 21046), (73162, 254, 21401), (73163, 254, 22053), (73164, 254, 22163), (73165, 254, 22371), (73166, 254, 23365), (73167, 254, 23728), (73168, 254, 23751), (73169, 254, 24621), (73173, 255, 1424), (73174, 255, 2093), (73175, 255, 2177), (73176, 255, 5986), (73177, 255, 6097), (73178, 255, 6320), (73179, 255, 7433), (73180, 255, 8260), (73181, 255, 8695), (73182, 255, 9071), (73183, 255, 10270), (73184, 255, 12218), (73185, 255, 14296), (73186, 255, 17948), (73187, 255, 20923), (73188, 255, 21990), (73189, 255, 22877), (73190, 255, 25103), (73204, 256, 377), (73205, 256, 446), (73206, 256, 447), (73207, 256, 596), (73208, 256, 627), (73209, 256, 756), (73210, 256, 823), (73211, 256, 1179), (73212, 256, 1182), (73213, 256, 1228), (73214, 256, 1333), (73215, 256, 1597), (73216, 256, 1801), (73217, 256, 1836), (73218, 256, 1855), (73219, 256, 1865), (73220, 256, 2097), (73221, 256, 2161), (73222, 256, 2400), (73223, 256, 2479), (73224, 256, 2483), (73225, 256, 2507), (73226, 256, 2530), (73227, 256, 2615), (73228, 256, 2727), (73229, 256, 2753), (73230, 256, 2833), (73231, 256, 2853), (73232, 256, 2948), (73233, 256, 2952), (73234, 256, 2983), (73235, 256, 3124), (73236, 256, 3129), (73237, 256, 3187), (73238, 256, 3218), (73239, 256, 3298), (73240, 256, 3319), (73241, 256, 3633), (73242, 256, 3787), (73243, 256, 3790), (73244, 256, 3957), (73245, 256, 3972), (73246, 256, 3990), (73247, 256, 4034), (73248, 256, 4068), (73249, 256, 4126), (73250, 256, 4294), (73251, 256, 4316), (73252, 256, 4331), (73253, 256, 4382), (73254, 256, 4436), (73255, 256, 4546), (73256, 256, 4709), (73257, 256, 4718), (73258, 256, 4739), (73259, 256, 4926), (73260, 256, 4939), (73261, 256, 4945), (73262, 256, 5026), (73263, 256, 5169), (73264, 256, 5285), (73265, 256, 5412), (73266, 256, 5456), (73267, 256, 5476), (73268, 256, 5544), (73269, 256, 5603), (73270, 256, 5617), (73271, 256, 5643), (73272, 256, 5708), (73273, 256, 5749), (73274, 256, 5755), (73275, 256, 5785), (73276, 256, 5857), (73277, 256, 5963), (73278, 256, 5999), (73279, 256, 6150), (73280, 256, 6155), (73281, 256, 6174), (73282, 256, 6205), (73283, 256, 6217), (73284, 256, 6385), (73285, 256, 6403), (73286, 256, 6468), (73287, 256, 6510), (73288, 256, 6548), (73289, 256, 6557), (73290, 256, 6720), (73291, 256, 6907), (73292, 256, 6935), (73293, 256, 6973), (73294, 256, 7025), (73295, 256, 7046), (73296, 256, 7052), (73297, 256, 7088), (73298, 256, 7098), (73299, 256, 7238), (73300, 256, 7324), (73301, 256, 7383), (73302, 256, 7394), (73303, 256, 7401), (73304, 256, 7423), (73305, 256, 7461), (73306, 256, 7476), (73307, 256, 7600), (73308, 256, 7604), (73309, 256, 7613), (73310, 256, 7623), (73311, 256, 7709), (73312, 256, 7714), (73313, 256, 7774), (73314, 256, 7801), (73315, 256, 7804), (73316, 256, 7812), (73317, 256, 7937), (73318, 256, 8027), (73319, 256, 8055), (73320, 256, 8085), (73321, 256, 8194), (73322, 256, 8224), (73323, 256, 8422), (73324, 256, 8543), (73325, 256, 8643), (73326, 256, 8653), (73327, 256, 8672), (73328, 256, 8698), (73329, 256, 8830), (73330, 256, 8924), (73331, 256, 8938), (73332, 256, 8976), (73333, 256, 9086), (73334, 256, 9343), (73335, 256, 9528), (73336, 256, 9554), (73337, 256, 9709), (73338, 256, 9753), (73339, 256, 9803), (73340, 256, 9808), (73341, 256, 9968), (73342, 256, 10080), (73343, 256, 10174), (73344, 256, 10199), (73345, 256, 10256), (73346, 256, 10270), (73347, 256, 10397), (73348, 256, 10446), (73349, 256, 10461), (73350, 256, 10533), (73351, 256, 10540), (73352, 256, 10554), (73353, 256, 10651), (73354, 256, 10683), (73355, 256, 10687), (73356, 256, 10774), (73357, 256, 10850), (73358, 256, 10926), (73359, 256, 11005), (73360, 256, 11080), (73361, 256, 11326), (73362, 256, 11388), (73363, 256, 11462), (73364, 256, 11523), (73365, 256, 11562), (73366, 256, 11676), (73367, 256, 11685), (73368, 256, 11948), (73369, 256, 11963), (73370, 256, 11979), (73371, 256, 12016), (73372, 256, 12030), (73373, 256, 12169), (73374, 256, 12189), (73375, 256, 12692), (73376, 256, 12782), (73377, 256, 12896), (73378, 256, 12978), (73379, 256, 13078), (73380, 256, 13112), (73381, 256, 13125), (73382, 256, 13202), (73383, 256, 13238), (73384, 256, 13545), (73385, 256, 13553), (73386, 256, 13795), (73387, 256, 13862), (73388, 256, 13873), (73389, 256, 13894), (73390, 256, 14015), (73391, 256, 14041), (73392, 256, 14121), (73393, 256, 14143), (73394, 256, 14268), (73395, 256, 14295), (73396, 256, 14432), (73397, 256, 14604), (73398, 256, 14706), (73399, 256, 14784), (73400, 256, 15027), (73401, 256, 15042), (73402, 256, 15046), (73403, 256, 15374), (73404, 256, 15475), (73405, 256, 15615), (73406, 256, 15654), (73407, 256, 15782), (73408, 256, 15883), (73409, 256, 16032), (73410, 256, 16034), (73411, 256, 16286), (73412, 256, 16336), (73413, 256, 16343), (73414, 256, 16385), (73415, 256, 16704), (73416, 256, 16716), (73417, 256, 16894), (73418, 256, 17084), (73419, 256, 17304), (73420, 256, 17352), (73421, 256, 17723), (73422, 256, 17970), (73423, 256, 18103), (73424, 256, 18188), (73425, 256, 18326), (73426, 256, 18340), (73427, 256, 18404), (73428, 256, 18427), (73429, 256, 18458), (73430, 256, 18604), (73431, 256, 18645), (73432, 256, 18654), (73433, 256, 18675), (73434, 256, 18760), (73435, 256, 18869), (73436, 256, 18925), (73437, 256, 19060), (73438, 256, 19124), (73439, 256, 19139), (73440, 256, 19294), (73441, 256, 19408), (73442, 256, 19425), (73443, 256, 19489), (73444, 256, 19540), (73445, 256, 19633), (73446, 256, 19660), (73447, 256, 19710), (73448, 256, 19772), (73449, 256, 19893), (73450, 256, 20107), (73451, 256, 20130), (73452, 256, 20142), (73453, 256, 20173), (73454, 256, 20222), (73455, 256, 20316), (73456, 256, 20366), (73457, 256, 20393), (73458, 256, 20418), (73459, 256, 20503), (73460, 256, 20504), (73461, 256, 20663), (73462, 256, 20999), (73463, 256, 21029), (73464, 256, 21071), (73465, 256, 21215), (73466, 256, 21257), (73467, 256, 21270), (73468, 256, 21272), (73469, 256, 21360), (73470, 256, 21383), (73471, 256, 21387), (73472, 256, 21545), (73473, 256, 21634), (73474, 256, 21674), (73475, 256, 21794), (73476, 256, 21833), (73477, 256, 22026), (73478, 256, 22083), (73479, 256, 22155), (73480, 256, 22268), (73481, 256, 22458), (73482, 256, 22510), (73483, 256, 22621), (73484, 256, 22661), (73485, 256, 22678), (73486, 256, 22747), (73487, 256, 22794), (73488, 256, 22869), (73489, 256, 22870), (73490, 256, 22871), (73491, 256, 22926), (73492, 256, 22928), (73493, 256, 23128), (73494, 256, 23197), (73495, 256, 23268), (73496, 256, 23295), (73497, 256, 23299), (73498, 256, 23337), (73499, 256, 23456), (73500, 256, 23768), (73501, 256, 23941), (73502, 256, 24043), (73503, 256, 24076), (73504, 256, 24336), (73505, 256, 24357), (73506, 256, 24702), (73507, 256, 24799), (73508, 256, 24806), (73509, 256, 24811), (73510, 256, 25011), (73511, 256, 25024), (73512, 256, 25025), (73513, 256, 25099), (73514, 256, 25142), (73715, 257, 6167), (73716, 257, 7498), (73717, 257, 13346), (73718, 257, 20801), (73719, 257, 20934), (73720, 257, 21388), (73721, 257, 23068), (73722, 257, 23115), (73723, 257, 24766), (73730, 258, 30), (73731, 258, 2305), (73732, 258, 3269), (73733, 258, 3369), (73734, 258, 3547), (73735, 258, 3784), (73736, 258, 4951), (73737, 258, 4967), (73738, 258, 7070), (73739, 258, 7774), (73740, 258, 8079), (73741, 258, 8832), (73742, 258, 9015), (73743, 258, 9143), (73744, 258, 10807), (73745, 258, 11355), (73746, 258, 11646), (73747, 258, 12042), (73748, 258, 12475), (73749, 258, 13238), (73750, 258, 13485), (73751, 258, 13889), (73752, 258, 14045), (73753, 258, 14364), (73754, 258, 14931), (73755, 258, 15037), (73756, 258, 15269), (73757, 258, 15412), (73758, 258, 15924), (73759, 258, 16180), (73760, 258, 17429), (73761, 258, 17560), (73762, 258, 17954), (73763, 258, 19069), (73764, 258, 19384), (73765, 258, 20372), (73766, 258, 21797), (73767, 258, 25088), (73793, 259, 6276), (73794, 259, 7316), (73795, 259, 7375), (73796, 259, 9029), (73797, 259, 12405), (73798, 259, 12451), (73799, 259, 12487), (73800, 259, 13279), (73801, 259, 16392); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (73802, 259, 16898), (73803, 259, 18766), (73804, 259, 19872), (73808, 260, 7406), (73809, 260, 9856), (73810, 260, 11923), (73811, 260, 12685), (73815, 261, 76), (73816, 261, 397), (73817, 261, 525), (73818, 261, 637), (73819, 261, 676), (73820, 261, 754), (73821, 261, 908), (73822, 261, 1068), (73823, 261, 1095), (73824, 261, 1270), (73825, 261, 1325), (73826, 261, 1488), (73827, 261, 1491), (73828, 261, 1626), (73829, 261, 1670), (73830, 261, 1742), (73831, 261, 1806), (73832, 261, 2030), (73833, 261, 2453), (73834, 261, 2761), (73835, 261, 2852), (73836, 261, 2857), (73837, 261, 3047), (73838, 261, 3337), (73839, 261, 3338), (73840, 261, 3395), (73841, 261, 3577), (73842, 261, 3614), (73843, 261, 3779), (73844, 261, 3901), (73845, 261, 4023), (73846, 261, 4429), (73847, 261, 4440), (73848, 261, 4466), (73849, 261, 4517), (73850, 261, 4743), (73851, 261, 4866), (73852, 261, 4903), (73853, 261, 4988), (73854, 261, 5149), (73855, 261, 5386), (73856, 261, 5453), (73857, 261, 5662), (73858, 261, 5748), (73859, 261, 5804), (73860, 261, 5889), (73861, 261, 6030), (73862, 261, 6079), (73863, 261, 6110), (73864, 261, 6341), (73865, 261, 6393), (73866, 261, 6506), (73867, 261, 6725), (73868, 261, 6770), (73869, 261, 6848), (73870, 261, 6863), (73871, 261, 6884), (73872, 261, 6903), (73873, 261, 6933), (73874, 261, 7062), (73875, 261, 7076), (73876, 261, 7360), (73877, 261, 7503), (73878, 261, 7505), (73879, 261, 7609), (73880, 261, 7835), (73881, 261, 7884), (73882, 261, 7981), (73883, 261, 8061), (73884, 261, 8167), (73885, 261, 8341), (73886, 261, 8455), (73887, 261, 8475), (73888, 261, 8547), (73889, 261, 8578), (73890, 261, 8763), (73891, 261, 8834), (73892, 261, 9105), (73893, 261, 9120), (73894, 261, 9238), (73895, 261, 9598), (73896, 261, 9731), (73897, 261, 10104), (73898, 261, 10206), (73899, 261, 10265), (73900, 261, 10306), (73901, 261, 10308), (73902, 261, 10664), (73903, 261, 10981), (73904, 261, 11004), (73905, 261, 11030), (73906, 261, 11047), (73907, 261, 11189), (73908, 261, 11369), (73909, 261, 11623), (73910, 261, 11658), (73911, 261, 11831), (73912, 261, 11966), (73913, 261, 12015), (73914, 261, 12078), (73915, 261, 12226), (73916, 261, 12591), (73917, 261, 13000), (73918, 261, 13011), (73919, 261, 13454), (73920, 261, 13521), (73921, 261, 13808), (73922, 261, 13918), (73923, 261, 14232), (73924, 261, 14271), (73925, 261, 14938), (73926, 261, 14964), (73927, 261, 15662), (73928, 261, 15869), (73929, 261, 16113), (73930, 261, 16389), (73931, 261, 16531), (73932, 261, 16619), (73933, 261, 16718), (73934, 261, 16974), (73935, 261, 17300), (73936, 261, 17325), (73937, 261, 17847), (73938, 261, 17904), (73939, 261, 17964), (73940, 261, 19162), (73941, 261, 19460), (73942, 261, 19920), (73943, 261, 20295), (73944, 261, 20396), (73945, 261, 20483), (73946, 261, 20836), (73947, 261, 21140), (73948, 261, 21227), (73949, 261, 21281), (73950, 261, 21550), (73951, 261, 21705), (73952, 261, 21890), (73953, 261, 22389), (73954, 261, 22777), (73955, 261, 22935), (73956, 261, 23733), (73957, 261, 25034), (73958, 261, 25035), (73959, 261, 25192), (74070, 262, 232), (74071, 262, 493), (74072, 262, 1032), (74073, 262, 1174), (74074, 262, 2752), (74075, 262, 2857), (74076, 262, 2914), (74077, 262, 2972), (74078, 262, 3047), (74079, 262, 3283), (74080, 262, 3379), (74081, 262, 3450), (74082, 262, 3577), (74083, 262, 3598), (74084, 262, 3660), (74085, 262, 3696), (74086, 262, 3799), (74087, 262, 3903), (74088, 262, 3974), (74089, 262, 3989), (74090, 262, 4023), (74091, 262, 4123), (74092, 262, 4146), (74093, 262, 4174), (74094, 262, 4440), (74095, 262, 4517), (74096, 262, 4732), (74097, 262, 5110), (74098, 262, 5115), (74099, 262, 5524), (74100, 262, 5779), (74101, 262, 6030), (74102, 262, 6079), (74103, 262, 6110), (74104, 262, 6118), (74105, 262, 6143), (74106, 262, 6167), (74107, 262, 6341), (74108, 262, 6433), (74109, 262, 6436), (74110, 262, 6437), (74111, 262, 6461), (74112, 262, 6590), (74113, 262, 6613), (74114, 262, 6647), (74115, 262, 6693), (74116, 262, 6725), (74117, 262, 6804), (74118, 262, 6835), (74119, 262, 6849), (74120, 262, 6890), (74121, 262, 6896), (74122, 262, 6933), (74123, 262, 7200), (74124, 262, 7381), (74125, 262, 7503), (74126, 262, 7746), (74127, 262, 7835), (74128, 262, 7964), (74129, 262, 7981), (74130, 262, 8101), (74131, 262, 8299), (74132, 262, 8498), (74133, 262, 8798), (74134, 262, 8849), (74135, 262, 9137), (74136, 262, 9238), (74137, 262, 9520), (74138, 262, 9598), (74139, 262, 9600), (74140, 262, 9618), (74141, 262, 9843), (74142, 262, 10023), (74143, 262, 10306), (74144, 262, 10310), (74145, 262, 10672), (74146, 262, 10673), (74147, 262, 11189), (74148, 262, 11231), (74149, 262, 11246), (74150, 262, 11395), (74151, 262, 11639), (74152, 262, 12078), (74153, 262, 12591), (74154, 262, 12756), (74155, 262, 12982), (74156, 262, 13366), (74157, 262, 13964), (74158, 262, 14001), (74159, 262, 14095), (74160, 262, 14232), (74161, 262, 14471), (74162, 262, 14796), (74163, 262, 15662), (74164, 262, 15725), (74165, 262, 15893), (74166, 262, 15979), (74167, 262, 16051), (74168, 262, 16113), (74169, 262, 16531), (74170, 262, 16534), (74171, 262, 16865), (74172, 262, 16974), (74173, 262, 17059), (74174, 262, 17144), (74175, 262, 17278), (74176, 262, 17325), (74177, 262, 17460), (74178, 262, 17598), (74179, 262, 17605), (74180, 262, 17847), (74181, 262, 18334), (74182, 262, 18594), (74183, 262, 18661), (74184, 262, 18663), (74185, 262, 18799), (74186, 262, 18824), (74187, 262, 18998), (74188, 262, 19210), (74189, 262, 19349), (74190, 262, 19679), (74191, 262, 19862), (74192, 262, 19916), (74193, 262, 19920), (74194, 262, 20176), (74195, 262, 20306), (74196, 262, 20384), (74197, 262, 20396), (74198, 262, 20414), (74199, 262, 20462), (74200, 262, 20483), (74201, 262, 20544), (74202, 262, 20774), (74203, 262, 20817), (74204, 262, 20836), (74205, 262, 20934), (74206, 262, 21227), (74207, 262, 21309), (74208, 262, 21369), (74209, 262, 21705), (74210, 262, 21717), (74211, 262, 21941), (74212, 262, 22630), (74213, 262, 22854), (74214, 262, 22872), (74215, 262, 22890), (74216, 262, 23022), (74217, 262, 23225), (74218, 262, 23242), (74219, 262, 23428), (74220, 262, 23503), (74221, 262, 23580), (74222, 262, 23742), (74223, 262, 23743), (74224, 262, 23745), (74225, 262, 23984), (74226, 262, 24270), (74227, 262, 24320), (74228, 262, 24608), (74229, 262, 24813), (74230, 262, 24834), (74231, 262, 25002), (74232, 262, 25034), (74233, 262, 25084), (74234, 262, 25085), (74235, 262, 25120), (74236, 262, 25131), (74237, 262, 25173), (74238, 262, 25209), (74325, 263, 76), (74326, 263, 116), (74327, 263, 276), (74328, 263, 286), (74329, 263, 375), (74330, 263, 396), (74331, 263, 397), (74332, 263, 499), (74333, 263, 525), (74334, 263, 539), (74335, 263, 648), (74336, 263, 664), (74337, 263, 676), (74338, 263, 732), (74339, 263, 751), (74340, 263, 761), (74341, 263, 764), (74342, 263, 877), (74343, 263, 895), (74344, 263, 939), (74345, 263, 1060), (74346, 263, 1112), (74347, 263, 1130), (74348, 263, 1166), (74349, 263, 1212), (74350, 263, 1225), (74351, 263, 1260), (74352, 263, 1293), (74353, 263, 1325), (74354, 263, 1334), (74355, 263, 1338), (74356, 263, 1364), (74357, 263, 1396), (74358, 263, 1408), (74359, 263, 1437), (74360, 263, 1440), (74361, 263, 1488), (74362, 263, 1491), (74363, 263, 1512), (74364, 263, 1578), (74365, 263, 1590), (74366, 263, 1615), (74367, 263, 1626), (74368, 263, 1648), (74369, 263, 1662), (74370, 263, 1729), (74371, 263, 1775), (74372, 263, 1792), (74373, 263, 1969), (74374, 263, 1974), (74375, 263, 1989), (74376, 263, 2067), (74377, 263, 2082), (74378, 263, 2105), (74379, 263, 2156), (74380, 263, 2157), (74381, 263, 2198), (74382, 263, 2218), (74383, 263, 2284), (74384, 263, 2302), (74385, 263, 2326), (74386, 263, 2328), (74387, 263, 2334), (74388, 263, 2357), (74389, 263, 2424), (74390, 263, 2432), (74391, 263, 2463), (74392, 263, 2486), (74393, 263, 2563), (74394, 263, 2576), (74395, 263, 2577), (74396, 263, 2689), (74397, 263, 2734), (74398, 263, 2741), (74399, 263, 2750), (74400, 263, 2752), (74401, 263, 2790), (74402, 263, 2816), (74403, 263, 2852), (74404, 263, 2891), (74405, 263, 2914), (74406, 263, 2924), (74407, 263, 2933), (74408, 263, 2966), (74409, 263, 2973), (74410, 263, 3010), (74411, 263, 3126), (74412, 263, 3157), (74413, 263, 3171), (74414, 263, 3203), (74415, 263, 3259), (74416, 263, 3291), (74417, 263, 3305), (74418, 263, 3338), (74419, 263, 3351), (74420, 263, 3379), (74421, 263, 3382), (74422, 263, 3395), (74423, 263, 3398), (74424, 263, 3434), (74425, 263, 3454), (74426, 263, 3562), (74427, 263, 3567), (74428, 263, 3614), (74429, 263, 3615), (74430, 263, 3650), (74431, 263, 3673), (74432, 263, 3701), (74433, 263, 3716), (74434, 263, 3730), (74435, 263, 3779), (74436, 263, 3788), (74437, 263, 3845), (74438, 263, 3875), (74439, 263, 3888), (74440, 263, 3894), (74441, 263, 3897), (74442, 263, 3910), (74443, 263, 3933), (74444, 263, 3973), (74445, 263, 4017), (74446, 263, 4023), (74447, 263, 4031), (74448, 263, 4097), (74449, 263, 4110), (74450, 263, 4146), (74451, 263, 4153), (74452, 263, 4158), (74453, 263, 4162), (74454, 263, 4172), (74455, 263, 4174), (74456, 263, 4189), (74457, 263, 4202), (74458, 263, 4216), (74459, 263, 4376), (74460, 263, 4429), (74461, 263, 4440), (74462, 263, 4443), (74463, 263, 4446), (74464, 263, 4449), (74465, 263, 4465), (74466, 263, 4466), (74467, 263, 4517), (74468, 263, 4543), (74469, 263, 4560), (74470, 263, 4636), (74471, 263, 4662), (74472, 263, 4739), (74473, 263, 4742), (74474, 263, 4743), (74475, 263, 4802), (74476, 263, 4811), (74477, 263, 4829), (74478, 263, 4834), (74479, 263, 4859), (74480, 263, 4862), (74481, 263, 4866), (74482, 263, 4903), (74483, 263, 4988), (74484, 263, 5089), (74485, 263, 5096), (74486, 263, 5102), (74487, 263, 5122), (74488, 263, 5149), (74489, 263, 5152), (74490, 263, 5229), (74491, 263, 5230), (74492, 263, 5407), (74493, 263, 5481), (74494, 263, 5490), (74495, 263, 5500), (74496, 263, 5541), (74497, 263, 5548), (74498, 263, 5570), (74499, 263, 5637), (74500, 263, 5654), (74501, 263, 5662), (74502, 263, 5693), (74503, 263, 5731), (74504, 263, 5748), (74505, 263, 5779), (74506, 263, 5804), (74507, 263, 5824), (74508, 263, 5858), (74509, 263, 5872), (74510, 263, 5887), (74511, 263, 5943), (74512, 263, 6016), (74513, 263, 6026), (74514, 263, 6143), (74515, 263, 6167), (74516, 263, 6172), (74517, 263, 6195), (74518, 263, 6268), (74519, 263, 6307), (74520, 263, 6341), (74521, 263, 6355), (74522, 263, 6385), (74523, 263, 6408), (74524, 263, 6433), (74525, 263, 6436), (74526, 263, 6437), (74527, 263, 6515), (74528, 263, 6555), (74529, 263, 6613), (74530, 263, 6651), (74531, 263, 6656), (74532, 263, 6689), (74533, 263, 6692), (74534, 263, 6759), (74535, 263, 6770), (74536, 263, 6779), (74537, 263, 6834), (74538, 263, 6835), (74539, 263, 6842), (74540, 263, 6848), (74541, 263, 6863), (74542, 263, 6888), (74543, 263, 6890), (74544, 263, 6922), (74545, 263, 6933), (74546, 263, 6941), (74547, 263, 7062), (74548, 263, 7121), (74549, 263, 7127), (74550, 263, 7199), (74551, 263, 7200), (74552, 263, 7252), (74553, 263, 7284), (74554, 263, 7289), (74555, 263, 7321), (74556, 263, 7362), (74557, 263, 7405), (74558, 263, 7463), (74559, 263, 7498), (74560, 263, 7521), (74561, 263, 7562), (74562, 263, 7609), (74563, 263, 7627), (74564, 263, 7658), (74565, 263, 7726), (74566, 263, 7746), (74567, 263, 7777), (74568, 263, 7779), (74569, 263, 7835), (74570, 263, 7884), (74571, 263, 7889), (74572, 263, 7919), (74573, 263, 7968), (74574, 263, 8037), (74575, 263, 8103), (74576, 263, 8134), (74577, 263, 8167), (74578, 263, 8341), (74579, 263, 8397), (74580, 263, 8500), (74581, 263, 8588), (74582, 263, 8659), (74583, 263, 8693), (74584, 263, 8707), (74585, 263, 8763), (74586, 263, 8777), (74587, 263, 8779), (74588, 263, 8814), (74589, 263, 8860), (74590, 263, 8903), (74591, 263, 8965), (74592, 263, 8975), (74593, 263, 8979), (74594, 263, 9014), (74595, 263, 9031), (74596, 263, 9102), (74597, 263, 9120), (74598, 263, 9137), (74599, 263, 9263), (74600, 263, 9340), (74601, 263, 9363), (74602, 263, 9549), (74603, 263, 9565), (74604, 263, 9634), (74605, 263, 9657), (74606, 263, 9659), (74607, 263, 9679), (74608, 263, 9729), (74609, 263, 9731), (74610, 263, 9843), (74611, 263, 9983), (74612, 263, 10002), (74613, 263, 10017), (74614, 263, 10206), (74615, 263, 10265), (74616, 263, 10305), (74617, 263, 10354), (74618, 263, 10385), (74619, 263, 10389), (74620, 263, 10450), (74621, 263, 10554), (74622, 263, 10675), (74623, 263, 10839), (74624, 263, 11002), (74625, 263, 11012), (74626, 263, 11030), (74627, 263, 11031), (74628, 263, 11047), (74629, 263, 11048), (74630, 263, 11177), (74631, 263, 11189), (74632, 263, 11246), (74633, 263, 11276), (74634, 263, 11342), (74635, 263, 11369), (74636, 263, 11526), (74637, 263, 11584), (74638, 263, 11620), (74639, 263, 11639), (74640, 263, 11658), (74641, 263, 11696), (74642, 263, 11808), (74643, 263, 11966), (74644, 263, 11975), (74645, 263, 12004), (74646, 263, 12334), (74647, 263, 12401), (74648, 263, 12438), (74649, 263, 12484), (74650, 263, 12591), (74651, 263, 12729), (74652, 263, 12748), (74653, 263, 12802), (74654, 263, 12876), (74655, 263, 13011), (74656, 263, 13157), (74657, 263, 13242), (74658, 263, 13346), (74659, 263, 13441), (74660, 263, 13712), (74661, 263, 13764), (74662, 263, 13770), (74663, 263, 13860), (74664, 263, 13964), (74665, 263, 14003), (74666, 263, 14040), (74667, 263, 14094), (74668, 263, 14130), (74669, 263, 14134), (74670, 263, 14145), (74671, 263, 14154), (74672, 263, 14232), (74673, 263, 14443), (74674, 263, 14450), (74675, 263, 14470), (74676, 263, 14486), (74677, 263, 14531), (74678, 263, 14605), (74679, 263, 14662), (74680, 263, 14796), (74681, 263, 14863), (74682, 263, 14881), (74683, 263, 14913), (74684, 263, 14957), (74685, 263, 14964), (74686, 263, 15077), (74687, 263, 15135), (74688, 263, 15339), (74689, 263, 15502), (74690, 263, 15693), (74691, 263, 15764), (74692, 263, 15827), (74693, 263, 15869), (74694, 263, 15975), (74695, 263, 15996), (74696, 263, 15997), (74697, 263, 16010), (74698, 263, 16113), (74699, 263, 16155), (74700, 263, 16207), (74701, 263, 16335), (74702, 263, 16460), (74703, 263, 16533), (74704, 263, 16567), (74705, 263, 16619), (74706, 263, 16718), (74707, 263, 16904), (74708, 263, 16920), (74709, 263, 17000), (74710, 263, 17144), (74711, 263, 17150), (74712, 263, 17251), (74713, 263, 17278), (74714, 263, 17325), (74715, 263, 17442), (74716, 263, 17460), (74717, 263, 17508), (74718, 263, 17847), (74719, 263, 17866), (74720, 263, 17904), (74721, 263, 17918), (74722, 263, 18064), (74723, 263, 18141), (74724, 263, 18474), (74725, 263, 18520), (74726, 263, 18526), (74727, 263, 18658), (74728, 263, 18661), (74729, 263, 18663), (74730, 263, 18770), (74731, 263, 18783), (74732, 263, 18824), (74733, 263, 18875), (74734, 263, 18882), (74735, 263, 18931), (74736, 263, 18998), (74737, 263, 19001), (74738, 263, 19027), (74739, 263, 19051), (74740, 263, 19136), (74741, 263, 19162), (74742, 263, 19261), (74743, 263, 19275), (74744, 263, 19306), (74745, 263, 19466), (74746, 263, 19572), (74747, 263, 19583), (74748, 263, 19635), (74749, 263, 19659), (74750, 263, 19679), (74751, 263, 19697), (74752, 263, 19769), (74753, 263, 19784), (74754, 263, 19800), (74755, 263, 19867), (74756, 263, 19916), (74757, 263, 20019), (74758, 263, 20176), (74759, 263, 20219), (74760, 263, 20302), (74761, 263, 20306), (74762, 263, 20351), (74763, 263, 20384), (74764, 263, 20396), (74765, 263, 20424), (74766, 263, 20462), (74767, 263, 20483), (74768, 263, 20628), (74769, 263, 20685), (74770, 263, 20686), (74771, 263, 20738), (74772, 263, 20747), (74773, 263, 20801), (74774, 263, 20811), (74775, 263, 20823), (74776, 263, 20908), (74777, 263, 20934), (74778, 263, 21030), (74779, 263, 21036), (74780, 263, 21115), (74781, 263, 21123), (74782, 263, 21180), (74783, 263, 21185), (74784, 263, 21195), (74785, 263, 21227), (74786, 263, 21247), (74787, 263, 21281), (74788, 263, 21309), (74789, 263, 21388), (74790, 263, 21418), (74791, 263, 21559), (74792, 263, 21618), (74793, 263, 21623), (74794, 263, 21658), (74795, 263, 21705), (74796, 263, 21712), (74797, 263, 21717), (74798, 263, 21842), (74799, 263, 21890), (74800, 263, 21942), (74801, 263, 22059), (74802, 263, 22147), (74803, 263, 22252), (74804, 263, 22264), (74805, 263, 22310), (74806, 263, 22312), (74807, 263, 22361), (74808, 263, 22398), (74809, 263, 22412), (74810, 263, 22435), (74811, 263, 22513), (74812, 263, 22627), (74813, 263, 22630), (74814, 263, 22649), (74815, 263, 22811), (74816, 263, 22847), (74817, 263, 22854), (74818, 263, 22872), (74819, 263, 22964), (74820, 263, 22965), (74821, 263, 23009), (74822, 263, 23031), (74823, 263, 23068), (74824, 263, 23115), (74825, 263, 23133), (74826, 263, 23157), (74827, 263, 23162), (74828, 263, 23580), (74829, 263, 23735), (74830, 263, 23744), (74831, 263, 23835), (74832, 263, 23883), (74833, 263, 23984), (74834, 263, 24118), (74835, 263, 24145), (74836, 263, 24270), (74837, 263, 24271), (74838, 263, 24568), (74839, 263, 24706), (74840, 263, 24766), (74841, 263, 24814), (74842, 263, 24815), (74843, 263, 24834), (74844, 263, 24987), (74845, 263, 25084), (74846, 263, 25086), (74847, 263, 25090), (74848, 263, 25114), (74849, 263, 25130), (74850, 263, 25173), (74851, 263, 25212), (75348, 264, 764), (75349, 264, 1293), (75350, 264, 1408), (75351, 264, 1969), (75352, 264, 2790), (75353, 264, 2816), (75354, 264, 3567), (75355, 264, 3716), (75356, 264, 4158), (75357, 264, 4216), (75358, 264, 4449), (75359, 264, 4543), (75360, 264, 5152), (75361, 264, 5693), (75362, 264, 5748), (75363, 264, 5943), (75364, 264, 6143), (75365, 264, 6436), (75366, 264, 6759), (75367, 264, 7127), (75368, 264, 7627), (75369, 264, 7777), (75370, 264, 7889), (75371, 264, 8037), (75372, 264, 8103), (75373, 264, 8500), (75374, 264, 8659), (75375, 264, 8693), (75376, 264, 8707), (75377, 264, 10354), (75378, 264, 11012), (75379, 264, 11584), (75380, 264, 11696), (75381, 264, 11808), (75382, 264, 12334), (75383, 264, 12748), (75384, 264, 12876), (75385, 264, 13712), (75386, 264, 13764), (75387, 264, 13860), (75388, 264, 14040), (75389, 264, 14130), (75390, 264, 14450), (75391, 264, 14605), (75392, 264, 14662), (75393, 264, 14881), (75394, 264, 14913), (75395, 264, 14957), (75396, 264, 15764), (75397, 264, 15996), (75398, 264, 16010), (75399, 264, 16335), (75400, 264, 16460), (75401, 264, 16533), (75402, 264, 16920), (75403, 264, 17000), (75404, 264, 17442), (75405, 264, 17918), (75406, 264, 18064), (75407, 264, 18658), (75408, 264, 18661), (75409, 264, 18770), (75410, 264, 19136), (75411, 264, 19583), (75412, 264, 19659), (75413, 264, 19769), (75414, 264, 19784), (75415, 264, 19800), (75416, 264, 19867), (75417, 264, 20219), (75418, 264, 20351), (75419, 264, 20686), (75420, 264, 20738), (75421, 264, 21036), (75422, 264, 21123), (75423, 264, 21658), (75424, 264, 22252), (75425, 264, 22310), (75426, 264, 22361), (75427, 264, 22513), (75428, 264, 22847), (75429, 264, 22964), (75430, 264, 22965), (75431, 264, 23031), (75432, 264, 23115), (75433, 264, 23744), (75434, 264, 25084), (75435, 264, 25090), (75436, 264, 25114), (75475, 265, 2), (75476, 265, 13), (75477, 265, 122), (75478, 265, 286), (75479, 265, 396), (75480, 265, 716), (75481, 265, 764), (75482, 265, 845), (75483, 265, 892), (75484, 265, 990), (75485, 265, 1066), (75486, 265, 1153), (75487, 265, 1238), (75488, 265, 1246), (75489, 265, 1293), (75490, 265, 1408), (75491, 265, 1615), (75492, 265, 1654), (75493, 265, 1678), (75494, 265, 1769), (75495, 265, 1916), (75496, 265, 1921), (75497, 265, 1969), (75498, 265, 2058), (75499, 265, 2184), (75500, 265, 2203), (75501, 265, 2415), (75502, 265, 2542), (75503, 265, 2577), (75504, 265, 2578), (75505, 265, 2635), (75506, 265, 2777), (75507, 265, 2790), (75508, 265, 2816), (75509, 265, 2958), (75510, 265, 2964), (75511, 265, 2970), (75512, 265, 3305), (75513, 265, 3346), (75514, 265, 3410), (75515, 265, 3438), (75516, 265, 3567), (75517, 265, 3650), (75518, 265, 3687), (75519, 265, 3708), (75520, 265, 3716), (75521, 265, 3760), (75522, 265, 3893), (75523, 265, 3942), (75524, 265, 4016), (75525, 265, 4043), (75526, 265, 4108), (75527, 265, 4110), (75528, 265, 4141), (75529, 265, 4158), (75530, 265, 4202), (75531, 265, 4216), (75532, 265, 4224), (75533, 265, 4257), (75534, 265, 4288), (75535, 265, 4449), (75536, 265, 4543), (75537, 265, 4609), (75538, 265, 4652), (75539, 265, 4674), (75540, 265, 4750), (75541, 265, 4762), (75542, 265, 4829), (75543, 265, 4840), (75544, 265, 5006), (75545, 265, 5112), (75546, 265, 5119), (75547, 265, 5152), (75548, 265, 5245), (75549, 265, 5259), (75550, 265, 5324), (75551, 265, 5476), (75552, 265, 5480), (75553, 265, 5492), (75554, 265, 5496), (75555, 265, 5510), (75556, 265, 5522), (75557, 265, 5543), (75558, 265, 5593), (75559, 265, 5637), (75560, 265, 5651), (75561, 265, 5693), (75562, 265, 5736), (75563, 265, 5748), (75564, 265, 5795), (75565, 265, 5872), (75566, 265, 5943), (75567, 265, 6051), (75568, 265, 6070), (75569, 265, 6143), (75570, 265, 6259), (75571, 265, 6331), (75572, 265, 6343), (75573, 265, 6366), (75574, 265, 6375), (75575, 265, 6406), (75576, 265, 6415), (75577, 265, 6436), (75578, 265, 6488), (75579, 265, 6671), (75580, 265, 6703), (75581, 265, 6710), (75582, 265, 6737), (75583, 265, 6759), (75584, 265, 6809), (75585, 265, 6859), (75586, 265, 6895), (75587, 265, 6941), (75588, 265, 7065), (75589, 265, 7127), (75590, 265, 7262), (75591, 265, 7413), (75592, 265, 7485), (75593, 265, 7627), (75594, 265, 7647), (75595, 265, 7759), (75596, 265, 7777), (75597, 265, 7779), (75598, 265, 7782), (75599, 265, 7889), (75600, 265, 7960), (75601, 265, 8037), (75602, 265, 8045), (75603, 265, 8103), (75604, 265, 8188), (75605, 265, 8196), (75606, 265, 8373), (75607, 265, 8416), (75608, 265, 8500), (75609, 265, 8505), (75610, 265, 8555), (75611, 265, 8602), (75612, 265, 8659), (75613, 265, 8661), (75614, 265, 8693), (75615, 265, 8707), (75616, 265, 8737), (75617, 265, 8760), (75618, 265, 8872), (75619, 265, 8931), (75620, 265, 9025), (75621, 265, 9054), (75622, 265, 9089), (75623, 265, 9137), (75624, 265, 9214), (75625, 265, 9362), (75626, 265, 9601), (75627, 265, 9614), (75628, 265, 9632), (75629, 265, 9690), (75630, 265, 9746), (75631, 265, 9778), (75632, 265, 9920), (75633, 265, 9999), (75634, 265, 10354), (75635, 265, 10385), (75636, 265, 10674), (75637, 265, 10688), (75638, 265, 10715), (75639, 265, 10890), (75640, 265, 10964), (75641, 265, 11001), (75642, 265, 11012), (75643, 265, 11110), (75644, 265, 11175), (75645, 265, 11177), (75646, 265, 11413), (75647, 265, 11584), (75648, 265, 11597), (75649, 265, 11636), (75650, 265, 11671), (75651, 265, 11696), (75652, 265, 11808), (75653, 265, 11942), (75654, 265, 12191), (75655, 265, 12245), (75656, 265, 12330), (75657, 265, 12334), (75658, 265, 12495), (75659, 265, 12521), (75660, 265, 12605), (75661, 265, 12729), (75662, 265, 12747), (75663, 265, 12748), (75664, 265, 12876), (75665, 265, 12901), (75666, 265, 12937), (75667, 265, 13060), (75668, 265, 13157), (75669, 265, 13338), (75670, 265, 13712), (75671, 265, 13764), (75672, 265, 13860), (75673, 265, 13904), (75674, 265, 14040), (75675, 265, 14130), (75676, 265, 14134), (75677, 265, 14450), (75678, 265, 14605), (75679, 265, 14662), (75680, 265, 14746), (75681, 265, 14841), (75682, 265, 14881), (75683, 265, 14913), (75684, 265, 14957), (75685, 265, 15400), (75686, 265, 15651), (75687, 265, 15764), (75688, 265, 15869), (75689, 265, 15967), (75690, 265, 15973), (75691, 265, 15996), (75692, 265, 16010), (75693, 265, 16259), (75694, 265, 16335), (75695, 265, 16460), (75696, 265, 16533), (75697, 265, 16920), (75698, 265, 17000), (75699, 265, 17001), (75700, 265, 17156), (75701, 265, 17317), (75702, 265, 17442), (75703, 265, 17695), (75704, 265, 17747), (75705, 265, 17918), (75706, 265, 18064), (75707, 265, 18229), (75708, 265, 18616), (75709, 265, 18658), (75710, 265, 18661), (75711, 265, 18770), (75712, 265, 19136), (75713, 265, 19298), (75714, 265, 19583), (75715, 265, 19659), (75716, 265, 19769), (75717, 265, 19784), (75718, 265, 19800), (75719, 265, 19867), (75720, 265, 20219), (75721, 265, 20351), (75722, 265, 20435), (75723, 265, 20583), (75724, 265, 20609), (75725, 265, 20686), (75726, 265, 20738), (75727, 265, 20764), (75728, 265, 20930), (75729, 265, 21036), (75730, 265, 21045), (75731, 265, 21092), (75732, 265, 21123), (75733, 265, 21141), (75734, 265, 21658), (75735, 265, 22059), (75736, 265, 22158), (75737, 265, 22170), (75738, 265, 22204), (75739, 265, 22218), (75740, 265, 22252), (75741, 265, 22310), (75742, 265, 22331), (75743, 265, 22361), (75744, 265, 22412), (75745, 265, 22513), (75746, 265, 22847), (75747, 265, 22964), (75748, 265, 22965), (75749, 265, 23031), (75750, 265, 23048), (75751, 265, 23115), (75752, 265, 23539), (75753, 265, 23744), (75754, 265, 23937), (75755, 265, 25081), (75756, 265, 25084), (75757, 265, 25090), (75758, 265, 25114), (75759, 265, 25187), (75986, 266, 1913), (75987, 266, 2772), (75988, 266, 3417), (75989, 266, 4901), (75990, 266, 5097), (75991, 266, 5375), (75992, 266, 5826), (75993, 266, 6207), (75994, 266, 7959), (75995, 266, 8140), (75996, 266, 8336), (75997, 266, 8847), (75998, 266, 10123), (75999, 266, 10135), (76000, 266, 10241), (76001, 266, 11203), (76002, 266, 11259), (76003, 266, 13354), (76004, 266, 13386), (76005, 266, 13930), (76006, 266, 14397), (76007, 266, 14493), (76008, 266, 14507), (76009, 266, 14541), (76010, 266, 15227), (76011, 266, 15488), (76012, 266, 16004), (76013, 266, 16013), (76014, 266, 16183), (76015, 266, 16464), (76016, 266, 17457), (76017, 266, 18197), (76018, 266, 18550), (76019, 266, 19061), (76020, 266, 19183), (76021, 266, 19213), (76022, 266, 19372), (76023, 266, 21292), (76024, 266, 23212), (76025, 266, 25147), (76049, 267, 62), (76050, 267, 165), (76051, 267, 450), (76052, 267, 471), (76053, 267, 600), (76054, 267, 824), (76055, 267, 910), (76056, 267, 970), (76057, 267, 1031), (76058, 267, 1152), (76059, 267, 1214), (76060, 267, 1222), (76061, 267, 1294), (76062, 267, 1612), (76063, 267, 2169), (76064, 267, 2267), (76065, 267, 2442), (76066, 267, 2664), (76067, 267, 3213), (76068, 267, 3430), (76069, 267, 3575), (76070, 267, 3582), (76071, 267, 3610), (76072, 267, 3718), (76073, 267, 3724), (76074, 267, 3820), (76075, 267, 4142), (76076, 267, 5235), (76077, 267, 5733), (76078, 267, 6006), (76079, 267, 6284), (76080, 267, 6795), (76081, 267, 7003), (76082, 267, 7038), (76083, 267, 7152), (76084, 267, 7594), (76085, 267, 7802), (76086, 267, 8060), (76087, 267, 8373), (76088, 267, 8463), (76089, 267, 8671), (76090, 267, 8904), (76091, 267, 9218), (76092, 267, 9422), (76093, 267, 9536), (76094, 267, 9798), (76095, 267, 9965), (76096, 267, 10855), (76097, 267, 10951), (76098, 267, 11689), (76099, 267, 11710), (76100, 267, 11810), (76101, 267, 11875), (76102, 267, 11938), (76103, 267, 12462), (76104, 267, 12663), (76105, 267, 13564), (76106, 267, 13589), (76107, 267, 13783), (76108, 267, 15223), (76109, 267, 15322), (76110, 267, 15815), (76111, 267, 16321), (76112, 267, 16662), (76113, 267, 16811), (76114, 267, 17683), (76115, 267, 18237), (76116, 267, 18303), (76117, 267, 18915), (76118, 267, 19130), (76119, 267, 20865), (76120, 267, 21008), (76121, 267, 22220), (76122, 267, 22572), (76123, 267, 23063), (76124, 267, 23417), (76176, 268, 36), (76177, 268, 39), (76178, 268, 175), (76179, 268, 201), (76180, 268, 272), (76181, 268, 416), (76182, 268, 639), (76183, 268, 663), (76184, 268, 678), (76185, 268, 737), (76186, 268, 746), (76187, 268, 819), (76188, 268, 864), (76189, 268, 868), (76190, 268, 1188), (76191, 268, 1189), (76192, 268, 1215), (76193, 268, 1378), (76194, 268, 1789), (76195, 268, 1888), (76196, 268, 1929), (76197, 268, 2178), (76198, 268, 2536), (76199, 268, 2543), (76200, 268, 2548), (76201, 268, 2613), (76202, 268, 2652), (76203, 268, 2706), (76204, 268, 2879), (76205, 268, 3107), (76206, 268, 3501), (76207, 268, 3565), (76208, 268, 3670), (76209, 268, 3686), (76210, 268, 4203), (76211, 268, 4261), (76212, 268, 4533), (76213, 268, 4651), (76214, 268, 4781), (76215, 268, 4861), (76216, 268, 4885), (76217, 268, 5061), (76218, 268, 5569), (76219, 268, 5636), (76220, 268, 5820), (76221, 268, 5821), (76222, 268, 5822), (76223, 268, 5895), (76224, 268, 5925), (76225, 268, 5951), (76226, 268, 5972), (76227, 268, 6397), (76228, 268, 6496), (76229, 268, 6513), (76230, 268, 6669), (76231, 268, 6678), (76232, 268, 6682), (76233, 268, 7301), (76234, 268, 7302), (76235, 268, 7400), (76236, 268, 7464), (76237, 268, 7515), (76238, 268, 7744), (76239, 268, 7842), (76240, 268, 7880), (76241, 268, 7983), (76242, 268, 8066), (76243, 268, 8131), (76244, 268, 8146), (76245, 268, 8229), (76246, 268, 8233), (76247, 268, 8292), (76248, 268, 8321), (76249, 268, 8438), (76250, 268, 8463), (76251, 268, 8472), (76252, 268, 8514), (76253, 268, 8710), (76254, 268, 8725), (76255, 268, 8892), (76256, 268, 8895), (76257, 268, 8950), (76258, 268, 9078), (76259, 268, 9104), (76260, 268, 9938), (76261, 268, 9979), (76262, 268, 10047), (76263, 268, 10087), (76264, 268, 10148), (76265, 268, 10157), (76266, 268, 10608), (76267, 268, 10972), (76268, 268, 11119), (76269, 268, 11211), (76270, 268, 11278), (76271, 268, 11284), (76272, 268, 11349), (76273, 268, 11392), (76274, 268, 11422), (76275, 268, 11773), (76276, 268, 11774), (76277, 268, 11821), (76278, 268, 11967), (76279, 268, 12136), (76280, 268, 12188), (76281, 268, 12192), (76282, 268, 12568), (76283, 268, 12583), (76284, 268, 12622), (76285, 268, 12628), (76286, 268, 12666), (76287, 268, 12778), (76288, 268, 12832), (76289, 268, 13080), (76290, 268, 13113), (76291, 268, 13208), (76292, 268, 13415), (76293, 268, 13424), (76294, 268, 13557), (76295, 268, 13844), (76296, 268, 13921), (76297, 268, 13931), (76298, 268, 13983), (76299, 268, 14064), (76300, 268, 14318), (76301, 268, 14348), (76302, 268, 14367), (76303, 268, 14401), (76304, 268, 14428), (76305, 268, 14534), (76306, 268, 15081), (76307, 268, 15114), (76308, 268, 15129), (76309, 268, 15239), (76310, 268, 15328), (76311, 268, 15495), (76312, 268, 15547), (76313, 268, 15689), (76314, 268, 15753), (76315, 268, 15984), (76316, 268, 16057), (76317, 268, 16224), (76318, 268, 16272), (76319, 268, 16290), (76320, 268, 16694), (76321, 268, 16925), (76322, 268, 16926), (76323, 268, 17064), (76324, 268, 17124), (76325, 268, 17225), (76326, 268, 17240), (76327, 268, 17335), (76328, 268, 17497), (76329, 268, 17541), (76330, 268, 17634), (76331, 268, 17713), (76332, 268, 17754), (76333, 268, 18032), (76334, 268, 18081), (76335, 268, 18195), (76336, 268, 18328), (76337, 268, 18457), (76338, 268, 18569), (76339, 268, 18807), (76340, 268, 18852), (76341, 268, 19464), (76342, 268, 19474), (76343, 268, 19596), (76344, 268, 20047), (76345, 268, 20420), (76346, 268, 21458), (76347, 268, 21893), (76348, 268, 22432), (76349, 268, 24187), (76431, 269, 34), (76432, 269, 36), (76433, 269, 111), (76434, 269, 112), (76435, 269, 119), (76436, 269, 203), (76437, 269, 264), (76438, 269, 295), (76439, 269, 389), (76440, 269, 416), (76441, 269, 455), (76442, 269, 602), (76443, 269, 675), (76444, 269, 681), (76445, 269, 689), (76446, 269, 755), (76447, 269, 795), (76448, 269, 868), (76449, 269, 1036), (76450, 269, 1245), (76451, 269, 1255), (76452, 269, 1416), (76453, 269, 1502), (76454, 269, 1534), (76455, 269, 1624), (76456, 269, 1632), (76457, 269, 1721), (76458, 269, 1736), (76459, 269, 1867), (76460, 269, 1929), (76461, 269, 1977), (76462, 269, 2037), (76463, 269, 2451), (76464, 269, 2543), (76465, 269, 2590), (76466, 269, 2699), (76467, 269, 2706), (76468, 269, 2718), (76469, 269, 2722), (76470, 269, 2772), (76471, 269, 2837), (76472, 269, 2854), (76473, 269, 2956), (76474, 269, 2991), (76475, 269, 3086), (76476, 269, 3107), (76477, 269, 3109), (76478, 269, 3114), (76479, 269, 3158), (76480, 269, 3190), (76481, 269, 3207), (76482, 269, 3223), (76483, 269, 3265), (76484, 269, 3281), (76485, 269, 3289), (76486, 269, 3725), (76487, 269, 3827), (76488, 269, 3856), (76489, 269, 4039), (76490, 269, 4100), (76491, 269, 4159), (76492, 269, 4207), (76493, 269, 4269), (76494, 269, 4272), (76495, 269, 4347), (76496, 269, 4502), (76497, 269, 4532), (76498, 269, 4607), (76499, 269, 4651), (76500, 269, 4692), (76501, 269, 4707), (76502, 269, 4781), (76503, 269, 4822), (76504, 269, 4946), (76505, 269, 4980), (76506, 269, 5016), (76507, 269, 5042), (76508, 269, 5061), (76509, 269, 5075), (76510, 269, 5132), (76511, 269, 5159), (76512, 269, 5176), (76513, 269, 5203), (76514, 269, 5236), (76515, 269, 5255), (76516, 269, 5325), (76517, 269, 5333), (76518, 269, 5375), (76519, 269, 5437), (76520, 269, 5499), (76521, 269, 5532), (76522, 269, 5534), (76523, 269, 5569), (76524, 269, 5752), (76525, 269, 5778), (76526, 269, 5792), (76527, 269, 6008), (76528, 269, 6034), (76529, 269, 6109), (76530, 269, 6127), (76531, 269, 6158), (76532, 269, 6160), (76533, 269, 6176), (76534, 269, 6252), (76535, 269, 6253), (76536, 269, 6324), (76537, 269, 6386), (76538, 269, 6397), (76539, 269, 6457), (76540, 269, 6478), (76541, 269, 6495), (76542, 269, 6537), (76543, 269, 6549), (76544, 269, 6594), (76545, 269, 6682), (76546, 269, 6695), (76547, 269, 6719), (76548, 269, 6830), (76549, 269, 6831), (76550, 269, 6885), (76551, 269, 6968), (76552, 269, 7014), (76553, 269, 7068), (76554, 269, 7100), (76555, 269, 7112), (76556, 269, 7159), (76557, 269, 7173), (76558, 269, 7253), (76559, 269, 7267), (76560, 269, 7352), (76561, 269, 7400), (76562, 269, 7464), (76563, 269, 7501), (76564, 269, 7515), (76565, 269, 7545), (76566, 269, 7547), (76567, 269, 7634), (76568, 269, 7693), (76569, 269, 7753), (76570, 269, 7766), (76571, 269, 7842), (76572, 269, 7934), (76573, 269, 8015), (76574, 269, 8066), (76575, 269, 8116), (76576, 269, 8128), (76577, 269, 8169), (76578, 269, 8229), (76579, 269, 8335), (76580, 269, 8369), (76581, 269, 8374), (76582, 269, 8447), (76583, 269, 8472), (76584, 269, 8527), (76585, 269, 8545), (76586, 269, 8561), (76587, 269, 8596), (76588, 269, 8638), (76589, 269, 8714), (76590, 269, 8751), (76591, 269, 8768), (76592, 269, 8802), (76593, 269, 8892), (76594, 269, 8895), (76595, 269, 8916), (76596, 269, 8971), (76597, 269, 8994), (76598, 269, 8995), (76599, 269, 9078), (76600, 269, 9115), (76601, 269, 9131), (76602, 269, 9163), (76603, 269, 9244), (76604, 269, 9247), (76605, 269, 9252), (76606, 269, 9298), (76607, 269, 9371), (76608, 269, 9399), (76609, 269, 9444), (76610, 269, 9471), (76611, 269, 9577), (76612, 269, 9582), (76613, 269, 9607), (76614, 269, 9635), (76615, 269, 9716), (76616, 269, 9774), (76617, 269, 9918), (76618, 269, 9979), (76619, 269, 10035), (76620, 269, 10047), (76621, 269, 10071), (76622, 269, 10107), (76623, 269, 10121), (76624, 269, 10226), (76625, 269, 10299), (76626, 269, 10335), (76627, 269, 10361), (76628, 269, 10372), (76629, 269, 10464), (76630, 269, 10523), (76631, 269, 10538), (76632, 269, 10595), (76633, 269, 10596), (76634, 269, 10608), (76635, 269, 10609), (76636, 269, 10639), (76637, 269, 10661), (76638, 269, 10698), (76639, 269, 10767), (76640, 269, 10905), (76641, 269, 10906), (76642, 269, 10952), (76643, 269, 10972), (76644, 269, 10984), (76645, 269, 11062), (76646, 269, 11069), (76647, 269, 11183), (76648, 269, 11185), (76649, 269, 11280), (76650, 269, 11286), (76651, 269, 11349), (76652, 269, 11445), (76653, 269, 11459), (76654, 269, 11506), (76655, 269, 11536), (76656, 269, 11557), (76657, 269, 11565), (76658, 269, 11667), (76659, 269, 11668), (76660, 269, 11693), (76661, 269, 11813), (76662, 269, 11821), (76663, 269, 11830), (76664, 269, 11889), (76665, 269, 11935), (76666, 269, 11953), (76667, 269, 11964), (76668, 269, 11992), (76669, 269, 11995), (76670, 269, 12037), (76671, 269, 12126), (76672, 269, 12175), (76673, 269, 12192), (76674, 269, 12293), (76675, 269, 12319), (76676, 269, 12321), (76677, 269, 12340), (76678, 269, 12381), (76679, 269, 12408), (76680, 269, 12447), (76681, 269, 12460), (76682, 269, 12507), (76683, 269, 12534), (76684, 269, 12553), (76685, 269, 12554), (76686, 269, 12568), (76687, 269, 12623), (76688, 269, 12694), (76689, 269, 12731), (76690, 269, 12798), (76691, 269, 12892), (76692, 269, 12960), (76693, 269, 13040), (76694, 269, 13160), (76695, 269, 13162), (76696, 269, 13169), (76697, 269, 13194), (76698, 269, 13224), (76699, 269, 13336), (76700, 269, 13420), (76701, 269, 13501), (76702, 269, 13568), (76703, 269, 13580), (76704, 269, 13583), (76705, 269, 13636), (76706, 269, 13731), (76707, 269, 13787), (76708, 269, 13902), (76709, 269, 13921), (76710, 269, 13928), (76711, 269, 13984), (76712, 269, 14067), (76713, 269, 14192), (76714, 269, 14219), (76715, 269, 14254), (76716, 269, 14256), (76717, 269, 14263), (76718, 269, 14291), (76719, 269, 14367), (76720, 269, 14428), (76721, 269, 14482), (76722, 269, 14483), (76723, 269, 14515), (76724, 269, 14522), (76725, 269, 14527), (76726, 269, 14581), (76727, 269, 14602), (76728, 269, 14606), (76729, 269, 14648), (76730, 269, 14708), (76731, 269, 14750), (76732, 269, 14813), (76733, 269, 14816), (76734, 269, 14890), (76735, 269, 14926), (76736, 269, 15005), (76737, 269, 15020), (76738, 269, 15045), (76739, 269, 15098), (76740, 269, 15188), (76741, 269, 15303), (76742, 269, 15304), (76743, 269, 15328), (76744, 269, 15395), (76745, 269, 15444), (76746, 269, 15513), (76747, 269, 15543), (76748, 269, 15689), (76749, 269, 15771), (76750, 269, 15793), (76751, 269, 15910), (76752, 269, 15942), (76753, 269, 15976), (76754, 269, 16040), (76755, 269, 16116), (76756, 269, 16216), (76757, 269, 16218), (76758, 269, 16324), (76759, 269, 16359), (76760, 269, 16382), (76761, 269, 16425), (76762, 269, 16447), (76763, 269, 16570), (76764, 269, 16700), (76765, 269, 16703), (76766, 269, 16765), (76767, 269, 16820), (76768, 269, 16849), (76769, 269, 16852), (76770, 269, 16917), (76771, 269, 16934), (76772, 269, 16987), (76773, 269, 17049), (76774, 269, 17087), (76775, 269, 17176), (76776, 269, 17185), (76777, 269, 17209), (76778, 269, 17297), (76779, 269, 17299), (76780, 269, 17334), (76781, 269, 17341), (76782, 269, 17374), (76783, 269, 17484), (76784, 269, 17533), (76785, 269, 17541), (76786, 269, 17621), (76787, 269, 17629), (76788, 269, 17724), (76789, 269, 17760), (76790, 269, 17786), (76791, 269, 17949), (76792, 269, 18032), (76793, 269, 18081), (76794, 269, 18096), (76795, 269, 18197), (76796, 269, 18273), (76797, 269, 18321), (76798, 269, 18332), (76799, 269, 18383), (76800, 269, 18457), (76801, 269, 18484), (76802, 269, 19372), (76803, 269, 19406), (76804, 269, 19549), (76805, 269, 19698), (76806, 269, 19808), (76807, 269, 20112), (76808, 269, 20254), (76809, 269, 21356), (76810, 269, 21367), (76811, 269, 21487), (76812, 269, 21568), (76813, 269, 21671), (76814, 269, 22116), (76815, 269, 22189), (76816, 269, 22688), (76817, 269, 22793), (76818, 269, 23173), (76819, 269, 23193), (76820, 269, 23249), (76821, 269, 24042), (76822, 269, 24168), (76823, 269, 25170), (76942, 270, 82), (76943, 270, 1223), (76944, 270, 1977), (76945, 270, 2451), (76946, 270, 2879), (76947, 270, 3213), (76948, 270, 3359), (76949, 270, 3417), (76950, 270, 3482), (76951, 270, 4363), (76952, 270, 4379), (76953, 270, 4731), (76954, 270, 4901), (76955, 270, 5346), (76956, 270, 5626), (76957, 270, 5712), (76958, 270, 5951), (76959, 270, 5972), (76960, 270, 6103), (76961, 270, 6160), (76962, 270, 6284), (76963, 270, 6306), (76964, 270, 6418), (76965, 270, 6494), (76966, 270, 6537), (76967, 270, 6920), (76968, 270, 6934), (76969, 270, 6968), (76970, 270, 7018), (76971, 270, 7168), (76972, 270, 7225), (76973, 270, 7301), (76974, 270, 7715), (76975, 270, 7744), (76976, 270, 7818), (76977, 270, 8015), (76978, 270, 8116), (76979, 270, 8131), (76980, 270, 8144), (76981, 270, 8346), (76982, 270, 8710), (76983, 270, 8904), (76984, 270, 8950), (76985, 270, 9033), (76986, 270, 9183), (76987, 270, 9322), (76988, 270, 9323), (76989, 270, 9430), (76990, 270, 9445), (76991, 270, 9607), (76992, 270, 10122), (76993, 270, 10459), (76994, 270, 10937), (76995, 270, 10951), (76996, 270, 10971), (76997, 270, 11062), (76998, 270, 11064), (76999, 270, 11337), (77000, 270, 11512), (77001, 270, 11522), (77002, 270, 11543), (77003, 270, 11699), (77004, 270, 11859), (77005, 270, 11938), (77006, 270, 12072), (77007, 270, 12187), (77008, 270, 12192), (77009, 270, 12583), (77010, 270, 12623), (77011, 270, 13040), (77012, 270, 13365), (77013, 270, 13931), (77014, 270, 14004), (77015, 270, 14007), (77016, 270, 14053), (77017, 270, 14080), (77018, 270, 14238), (77019, 270, 14259), (77020, 270, 14300), (77021, 270, 14323), (77022, 270, 14460), (77023, 270, 14487), (77024, 270, 14541), (77025, 270, 15239), (77026, 270, 15295), (77027, 270, 15371), (77028, 270, 15384), (77029, 270, 15771), (77030, 270, 16013), (77031, 270, 16197), (77032, 270, 16249), (77033, 270, 16279), (77034, 270, 16703), (77035, 270, 16708), (77036, 270, 16770), (77037, 270, 16820), (77038, 270, 16913), (77039, 270, 16926), (77040, 270, 17526), (77041, 270, 17774), (77042, 270, 18273), (77043, 270, 18303), (77044, 270, 18327), (77045, 270, 18470), (77046, 270, 18567), (77047, 270, 18793), (77048, 270, 19075), (77049, 270, 19213), (77050, 270, 19252), (77051, 270, 19260), (77052, 270, 19539), (77053, 270, 19947), (77054, 270, 20008), (77055, 270, 20420), (77056, 270, 20592), (77057, 270, 20809), (77058, 270, 21670), (77059, 270, 22046), (77060, 270, 22220), (77061, 270, 22713), (77062, 270, 22734), (77063, 270, 22952), (77064, 270, 25126), (77065, 270, 25169), (77069, 271, 154), (77070, 271, 597), (77071, 271, 628), (77072, 271, 1191), (77073, 271, 1632), (77074, 271, 1798), (77075, 271, 2553), (77076, 271, 2731), (77077, 271, 3095), (77078, 271, 3213), (77079, 271, 3359), (77080, 271, 3432), (77081, 271, 3483), (77082, 271, 3609), (77083, 271, 3618), (77084, 271, 3670), (77085, 271, 3724), (77086, 271, 4261), (77087, 271, 4307), (77088, 271, 5629), (77089, 271, 5636), (77090, 271, 6080), (77091, 271, 6103), (77092, 271, 6109), (77093, 271, 6390), (77094, 271, 6418), (77095, 271, 6549), (77096, 271, 7313), (77097, 271, 8066), (77098, 271, 8182), (77099, 271, 8340), (77100, 271, 8463), (77101, 271, 9104), (77102, 271, 9159), (77103, 271, 9722), (77104, 271, 9857), (77105, 271, 9965), (77106, 271, 10243), (77107, 271, 10464), (77108, 271, 10987), (77109, 271, 11064), (77110, 271, 11162), (77111, 271, 11859), (77112, 271, 12161), (77113, 271, 12216), (77114, 271, 12557), (77115, 271, 12568), (77116, 271, 12960), (77117, 271, 13564), (77118, 271, 13884), (77119, 271, 14401), (77120, 271, 14648), (77121, 271, 15547), (77122, 271, 15837), (77123, 271, 15840), (77124, 271, 16349), (77125, 271, 16851), (77126, 271, 17016), (77127, 271, 17039), (77128, 271, 17170), (77129, 271, 18081), (77130, 271, 18807), (77131, 271, 18852), (77132, 271, 21357), (77133, 271, 21697), (77134, 271, 21918), (77135, 271, 22734), (77136, 271, 23276), (77196, 272, 9), (77197, 272, 55), (77198, 272, 73), (77199, 272, 89), (77200, 272, 126), (77201, 272, 138), (77202, 272, 164), (77203, 272, 235), (77204, 272, 236), (77205, 272, 271), (77206, 272, 434), (77207, 272, 673), (77208, 272, 678), (77209, 272, 865), (77210, 272, 873), (77211, 272, 971), (77212, 272, 1188), (77213, 272, 1372), (77214, 272, 1444), (77215, 272, 1452), (77216, 272, 1458), (77217, 272, 1465), (77218, 272, 1467), (77219, 272, 1613), (77220, 272, 1938), (77221, 272, 2013), (77222, 272, 2047), (77223, 272, 2164), (77224, 272, 2227), (77225, 272, 2252), (77226, 272, 2301), (77227, 272, 2378), (77228, 272, 2751), (77229, 272, 2854), (77230, 272, 3106), (77231, 272, 3165), (77232, 272, 3182), (77233, 272, 3198), (77234, 272, 3311), (77235, 272, 3356), (77236, 272, 3487), (77237, 272, 3521), (77238, 272, 3718), (77239, 272, 3763), (77240, 272, 3855), (77241, 272, 3877), (77242, 272, 3919), (77243, 272, 3980), (77244, 272, 4030), (77245, 272, 4078), (77246, 272, 4240), (77247, 272, 4243), (77248, 272, 4365), (77249, 272, 4381), (77250, 272, 4454), (77251, 272, 4474), (77252, 272, 4562), (77253, 272, 4628), (77254, 272, 4700), (77255, 272, 4949), (77256, 272, 5135), (77257, 272, 5140), (77258, 272, 5165), (77259, 272, 5200), (77260, 272, 5202), (77261, 272, 5430), (77262, 272, 5482), (77263, 272, 5629), (77264, 272, 5650), (77265, 272, 5699), (77266, 272, 5747), (77267, 272, 5763), (77268, 272, 5788), (77269, 272, 5809), (77270, 272, 6019), (77271, 272, 6196), (77272, 272, 6287), (77273, 272, 6335), (77274, 272, 6474), (77275, 272, 6518), (77276, 272, 6724), (77277, 272, 6808), (77278, 272, 6831), (77279, 272, 6964), (77280, 272, 7229), (77281, 272, 7295), (77282, 272, 7458), (77283, 272, 7538), (77284, 272, 7636), (77285, 272, 7773), (77286, 272, 7874), (77287, 272, 7944), (77288, 272, 8032), (77289, 272, 8217), (77290, 272, 8283), (77291, 272, 8325), (77292, 272, 8346), (77293, 272, 8355), (77294, 272, 8379), (77295, 272, 8437), (77296, 272, 8470), (77297, 272, 8492), (77298, 272, 8574), (77299, 272, 8700), (77300, 272, 8868), (77301, 272, 8885), (77302, 272, 9088), (77303, 272, 9244), (77304, 272, 9258), (77305, 272, 9364), (77306, 272, 9394), (77307, 272, 9458), (77308, 272, 9584), (77309, 272, 9617), (77310, 272, 9645), (77311, 272, 9722), (77312, 272, 9809), (77313, 272, 9885), (77314, 272, 9965), (77315, 272, 10008), (77316, 272, 10160), (77317, 272, 10311), (77318, 272, 10313), (77319, 272, 10349), (77320, 272, 10467), (77321, 272, 10586), (77322, 272, 10987), (77323, 272, 11103), (77324, 272, 11192), (77325, 272, 11200), (77326, 272, 11206), (77327, 272, 11349), (77328, 272, 11368), (77329, 272, 11435), (77330, 272, 11527), (77331, 272, 11586), (77332, 272, 11803), (77333, 272, 11863), (77334, 272, 12019), (77335, 272, 12393), (77336, 272, 12395), (77337, 272, 12530), (77338, 272, 12559), (77339, 272, 12645), (77340, 272, 12719), (77341, 272, 12828), (77342, 272, 12917), (77343, 272, 12958), (77344, 272, 12970), (77345, 272, 13082), (77346, 272, 13084), (77347, 272, 13090), (77348, 272, 13093), (77349, 272, 13154), (77350, 272, 13181), (77351, 272, 13194), (77352, 272, 13226), (77353, 272, 13267), (77354, 272, 13421), (77355, 272, 13588), (77356, 272, 13640), (77357, 272, 13751), (77358, 272, 13807), (77359, 272, 13811), (77360, 272, 13939), (77361, 272, 14125), (77362, 272, 14149), (77363, 272, 14228), (77364, 272, 14331), (77365, 272, 14347), (77366, 272, 14453), (77367, 272, 14508), (77368, 272, 14526), (77369, 272, 14529), (77370, 272, 14581), (77371, 272, 14709), (77372, 272, 14809), (77373, 272, 14923), (77374, 272, 14942), (77375, 272, 14953), (77376, 272, 14959), (77377, 272, 14981), (77378, 272, 15053), (77379, 272, 15182), (77380, 272, 15224), (77381, 272, 15406), (77382, 272, 15409), (77383, 272, 15514), (77384, 272, 15530), (77385, 272, 15749), (77386, 272, 15765), (77387, 272, 15938), (77388, 272, 16057), (77389, 272, 16105), (77390, 272, 16124), (77391, 272, 16327), (77392, 272, 16344), (77393, 272, 16387), (77394, 272, 16403), (77395, 272, 16530), (77396, 272, 16655), (77397, 272, 16768), (77398, 272, 16884), (77399, 272, 16986), (77400, 272, 17003), (77401, 272, 17079), (77402, 272, 17175), (77403, 272, 17188), (77404, 272, 17203), (77405, 272, 17273), (77406, 272, 17443), (77407, 272, 17461), (77408, 272, 17542), (77409, 272, 17568), (77410, 272, 17625), (77411, 272, 17742), (77412, 272, 18178), (77413, 272, 18243), (77414, 272, 18280), (77415, 272, 18366), (77416, 272, 18406), (77417, 272, 18477), (77418, 272, 18503), (77419, 272, 18519), (77420, 272, 18911), (77421, 272, 18947), (77422, 272, 19130), (77423, 272, 19157), (77424, 272, 19186), (77425, 272, 19314), (77426, 272, 19478), (77427, 272, 19523), (77428, 272, 19569), (77429, 272, 19952), (77430, 272, 19979), (77431, 272, 20252), (77432, 272, 20388), (77433, 272, 20661), (77434, 272, 20664), (77435, 272, 20723), (77436, 272, 20927), (77437, 272, 20969), (77438, 272, 21173), (77439, 272, 21212), (77440, 272, 21264), (77441, 272, 21526), (77442, 272, 21889), (77443, 272, 21986), (77444, 272, 22428), (77445, 272, 22445), (77446, 272, 23417), (77447, 272, 23479), (77448, 272, 24101), (77449, 272, 24275), (77450, 272, 24985), (77451, 272, 25036), (77452, 272, 25201), (77707, 273, 1176), (77708, 273, 2451), (77709, 273, 2590), (77710, 273, 3359), (77711, 273, 3785), (77712, 273, 4363), (77713, 273, 4890), (77714, 273, 5040), (77715, 273, 5626), (77716, 273, 5741), (77717, 273, 5822), (77718, 273, 6103), (77719, 273, 6111), (77720, 273, 6920), (77721, 273, 7018), (77722, 273, 7647), (77723, 273, 7842), (77724, 273, 8015), (77725, 273, 8373), (77726, 273, 8471), (77727, 273, 9311), (77728, 273, 9323), (77729, 273, 9950), (77730, 273, 10059), (77731, 273, 10243), (77732, 273, 10489), (77733, 273, 10612), (77734, 273, 10767), (77735, 273, 10906), (77736, 273, 11162), (77737, 273, 11464), (77738, 273, 11864), (77739, 273, 12623), (77740, 273, 13040), (77741, 273, 13884), (77742, 273, 14192), (77743, 273, 14401), (77744, 273, 14648), (77745, 273, 14668), (77746, 273, 15395), (77747, 273, 15811), (77748, 273, 15837), (77749, 273, 16349), (77750, 273, 16432), (77751, 273, 16447), (77752, 273, 16851), (77753, 273, 17016), (77754, 273, 19406), (77755, 273, 21152), (77756, 273, 21367), (77757, 273, 22734), (77770, 274, 514), (77771, 274, 819), (77772, 274, 1845), (77773, 274, 2047), (77774, 274, 2784), (77775, 274, 3618), (77776, 274, 3913), (77777, 274, 4030), (77778, 274, 4033), (77779, 274, 4207), (77780, 274, 4474), (77781, 274, 4765), (77782, 274, 4910), (77783, 274, 5075), (77784, 274, 5694), (77785, 274, 6019), (77786, 274, 6496), (77787, 274, 6844), (77788, 274, 6865), (77789, 274, 8156), (77790, 274, 8269), (77791, 274, 9050), (77792, 274, 9077), (77793, 274, 11083), (77794, 274, 11284), (77795, 274, 11335), (77796, 274, 13564), (77797, 274, 13751), (77798, 274, 14111), (77799, 274, 14256), (77800, 274, 15275), (77801, 274, 15910), (77802, 274, 16233), (77803, 274, 16327), (77804, 274, 16403), (77805, 274, 16926), (77806, 274, 17753), (77807, 274, 19066), (77808, 274, 19903), (77833, 275, 208), (77834, 275, 455), (77835, 275, 795), (77836, 275, 1052), (77837, 275, 2015), (77838, 275, 2499), (77839, 275, 2854), (77840, 275, 3223), (77841, 275, 4039), (77842, 275, 4349), (77843, 275, 4520), (77844, 275, 4699), (77845, 275, 5016), (77846, 275, 5629), (77847, 275, 5842), (77848, 275, 6265), (77849, 275, 6531), (77850, 275, 6831), (77851, 275, 7151), (77852, 275, 7501), (77853, 275, 7694), (77854, 275, 8447), (77855, 275, 8751), (77856, 275, 9053), (77857, 275, 9247), (77858, 275, 9471), (77859, 275, 9774), (77860, 275, 9828), (77861, 275, 10041), (77862, 275, 10088), (77863, 275, 10226), (77864, 275, 10282), (77865, 275, 11532), (77866, 275, 11613), (77867, 275, 11670), (77868, 275, 11988), (77869, 275, 13741), (77870, 275, 14263), (77871, 275, 14281), (77872, 275, 15136), (77873, 275, 15188), (77874, 275, 15386), (77875, 275, 15513), (77876, 275, 15716), (77877, 275, 16324), (77878, 275, 18732), (77879, 275, 19753), (77880, 275, 20127), (77881, 275, 20893), (77882, 275, 21002), (77883, 275, 22039), (77884, 275, 22952), (77896, 276, 77), (77897, 276, 181), (77898, 276, 202), (77899, 276, 280), (77900, 276, 285), (77901, 276, 322), (77902, 276, 332), (77903, 276, 384), (77904, 276, 412), (77905, 276, 474), (77906, 276, 679), (77907, 276, 753), (77908, 276, 776), (77909, 276, 815), (77910, 276, 827), (77911, 276, 860), (77912, 276, 918), (77913, 276, 1067), (77914, 276, 1083), (77915, 276, 1129), (77916, 276, 1182), (77917, 276, 1262), (77918, 276, 1400), (77919, 276, 1412), (77920, 276, 1456), (77921, 276, 1563), (77922, 276, 1617), (77923, 276, 1674), (77924, 276, 1731), (77925, 276, 1892), (77926, 276, 1895), (77927, 276, 1904), (77928, 276, 1939), (77929, 276, 2000), (77930, 276, 2110), (77931, 276, 2211), (77932, 276, 2238), (77933, 276, 2254), (77934, 276, 2356), (77935, 276, 2459), (77936, 276, 2654), (77937, 276, 2700), (77938, 276, 2745), (77939, 276, 2916), (77940, 276, 2925), (77941, 276, 3101), (77942, 276, 3204), (77943, 276, 3250), (77944, 276, 3418), (77945, 276, 3529), (77946, 276, 3534), (77947, 276, 3642), (77948, 276, 3643), (77949, 276, 3710), (77950, 276, 3880), (77951, 276, 3920), (77952, 276, 3982), (77953, 276, 3992), (77954, 276, 4089), (77955, 276, 4249), (77956, 276, 4260), (77957, 276, 4266), (77958, 276, 4274), (77959, 276, 4378), (77960, 276, 4566), (77961, 276, 4701), (77962, 276, 4786), (77963, 276, 4795), (77964, 276, 4982), (77965, 276, 5067), (77966, 276, 5138), (77967, 276, 5144), (77968, 276, 5179), (77969, 276, 5196), (77970, 276, 5312), (77971, 276, 5398), (77972, 276, 5409), (77973, 276, 5429), (77974, 276, 5455), (77975, 276, 5467), (77976, 276, 5528), (77977, 276, 5588), (77978, 276, 5596), (77979, 276, 5668), (77980, 276, 5729), (77981, 276, 5732), (77982, 276, 5806), (77983, 276, 5813), (77984, 276, 5875), (77985, 276, 5919), (77986, 276, 6068), (77987, 276, 6123), (77988, 276, 6199), (77989, 276, 6329), (77990, 276, 6391), (77991, 276, 6445), (77992, 276, 6519), (77993, 276, 6614), (77994, 276, 6721), (77995, 276, 6788), (77996, 276, 6841), (77997, 276, 6966), (77998, 276, 7055), (77999, 276, 7286), (78000, 276, 7451), (78001, 276, 7546), (78002, 276, 7548), (78003, 276, 7581), (78004, 276, 8002), (78005, 276, 8042), (78006, 276, 8071), (78007, 276, 8184), (78008, 276, 8279), (78009, 276, 8344), (78010, 276, 8391), (78011, 276, 8458), (78012, 276, 8474), (78013, 276, 8764), (78014, 276, 9030), (78015, 276, 9032), (78016, 276, 9056), (78017, 276, 9065), (78018, 276, 9180), (78019, 276, 9215), (78020, 276, 9253), (78021, 276, 9257), (78022, 276, 9262), (78023, 276, 9359), (78024, 276, 9495), (78025, 276, 9500), (78026, 276, 9599), (78027, 276, 9608), (78028, 276, 9653), (78029, 276, 9670), (78030, 276, 9810), (78031, 276, 9940), (78032, 276, 10032), (78033, 276, 10102), (78034, 276, 10133), (78035, 276, 10757), (78036, 276, 10837), (78037, 276, 10838), (78038, 276, 10881), (78039, 276, 10883), (78040, 276, 10901), (78041, 276, 11575), (78042, 276, 11612), (78043, 276, 11705), (78044, 276, 11739), (78045, 276, 11771), (78046, 276, 11862), (78047, 276, 12118), (78048, 276, 12240), (78049, 276, 12376), (78050, 276, 12675), (78051, 276, 12727), (78052, 276, 12766), (78053, 276, 12940), (78054, 276, 12961), (78055, 276, 12968), (78056, 276, 13046), (78057, 276, 13202), (78058, 276, 13246), (78059, 276, 13351), (78060, 276, 13364), (78061, 276, 13458), (78062, 276, 13478), (78063, 276, 13552), (78064, 276, 14008), (78065, 276, 14074), (78066, 276, 14175), (78067, 276, 14496), (78068, 276, 14697), (78069, 276, 14707), (78070, 276, 14749), (78071, 276, 14755), (78072, 276, 14757), (78073, 276, 14762), (78074, 276, 15250), (78075, 276, 15281), (78076, 276, 15470), (78077, 276, 15723), (78078, 276, 15763), (78079, 276, 15780), (78080, 276, 15974), (78081, 276, 15980), (78082, 276, 16076), (78083, 276, 16089), (78084, 276, 16104), (78085, 276, 16149), (78086, 276, 16217), (78087, 276, 16257), (78088, 276, 16370), (78089, 276, 16989), (78090, 276, 17162), (78091, 276, 17248), (78092, 276, 17253), (78093, 276, 17280), (78094, 276, 17391), (78095, 276, 17596), (78096, 276, 17912), (78097, 276, 18026), (78098, 276, 18234), (78099, 276, 18415), (78100, 276, 18431), (78101, 276, 18539), (78102, 276, 18904), (78103, 276, 19343), (78104, 276, 19505), (78105, 276, 19810); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (78106, 276, 19846), (78107, 276, 20566), (78108, 276, 20609), (78109, 276, 21318), (78110, 276, 21334), (78111, 276, 21393), (78112, 276, 21673), (78113, 276, 21713), (78114, 276, 22109), (78115, 276, 22286), (78116, 276, 22486), (78117, 276, 22738), (78118, 276, 22820), (78119, 276, 22821), (78120, 276, 22830), (78121, 276, 23111), (78122, 276, 23164), (78123, 276, 23304), (78124, 276, 23369), (78125, 276, 23389), (78126, 276, 23410), (78127, 276, 23772), (78128, 276, 24461), (78129, 276, 24581), (78130, 276, 24636), (78131, 276, 25093), (78151, 277, 114), (78152, 277, 228), (78153, 277, 411), (78154, 277, 474), (78155, 277, 549), (78156, 277, 734), (78157, 277, 804), (78158, 277, 838), (78159, 277, 884), (78160, 277, 944), (78161, 277, 1002), (78162, 277, 1038), (78163, 277, 1062), (78164, 277, 1092), (78165, 277, 1179), (78166, 277, 1240), (78167, 277, 1313), (78168, 277, 1329), (78169, 277, 1331), (78170, 277, 1445), (78171, 277, 1449), (78172, 277, 1492), (78173, 277, 1500), (78174, 277, 1544), (78175, 277, 1566), (78176, 277, 1802), (78177, 277, 2000), (78178, 277, 2009), (78179, 277, 2022), (78180, 277, 2024), (78181, 277, 2057), (78182, 277, 2121), (78183, 277, 2131), (78184, 277, 2184), (78185, 277, 2207), (78186, 277, 2254), (78187, 277, 2280), (78188, 277, 2305), (78189, 277, 2450), (78190, 277, 2527), (78191, 277, 2732), (78192, 277, 2739), (78193, 277, 2755), (78194, 277, 2766), (78195, 277, 2777), (78196, 277, 2809), (78197, 277, 2812), (78198, 277, 2873), (78199, 277, 2982), (78200, 277, 2984), (78201, 277, 3108), (78202, 277, 3181), (78203, 277, 3212), (78204, 277, 3274), (78205, 277, 3455), (78206, 277, 3580), (78207, 277, 3584), (78208, 277, 3603), (78209, 277, 3612), (78210, 277, 3705), (78211, 277, 3844), (78212, 277, 3854), (78213, 277, 3945), (78214, 277, 4012), (78215, 277, 4056), (78216, 277, 4156), (78217, 277, 4234), (78218, 277, 4249), (78219, 277, 4251), (78220, 277, 4311), (78221, 277, 4355), (78222, 277, 4362), (78223, 277, 4561), (78224, 277, 4757), (78225, 277, 4927), (78226, 277, 4952), (78227, 277, 4969), (78228, 277, 4970), (78229, 277, 5086), (78230, 277, 5138), (78231, 277, 5240), (78232, 277, 5266), (78233, 277, 5269), (78234, 277, 5275), (78235, 277, 5362), (78236, 277, 5398), (78237, 277, 5420), (78238, 277, 5458), (78239, 277, 5723), (78240, 277, 5758), (78241, 277, 6033), (78242, 277, 6098), (78243, 277, 6337), (78244, 277, 6377), (78245, 277, 6442), (78246, 277, 6504), (78247, 277, 6529), (78248, 277, 6557), (78249, 277, 6767), (78250, 277, 6773), (78251, 277, 6836), (78252, 277, 6841), (78253, 277, 6883), (78254, 277, 6917), (78255, 277, 6944), (78256, 277, 7050), (78257, 277, 7157), (78258, 277, 7247), (78259, 277, 7254), (78260, 277, 7326), (78261, 277, 7405), (78262, 277, 7476), (78263, 277, 7492), (78264, 277, 7512), (78265, 277, 7551), (78266, 277, 7805), (78267, 277, 7906), (78268, 277, 8034), (78269, 277, 8096), (78270, 277, 8135), (78271, 277, 8465), (78272, 277, 8764), (78273, 277, 8765), (78274, 277, 8807), (78275, 277, 8810), (78276, 277, 8850), (78277, 277, 9002), (78278, 277, 9030), (78279, 277, 9040), (78280, 277, 9056), (78281, 277, 9210), (78282, 277, 9253), (78283, 277, 9302), (78284, 277, 9460), (78285, 277, 9467), (78286, 277, 9670), (78287, 277, 9674), (78288, 277, 9709), (78289, 277, 9743), (78290, 277, 9837), (78291, 277, 10032), (78292, 277, 10339), (78293, 277, 10504), (78294, 277, 10671), (78295, 277, 10695), (78296, 277, 10746), (78297, 277, 10798), (78298, 277, 10802), (78299, 277, 10877), (78300, 277, 10926), (78301, 277, 11074), (78302, 277, 11161), (78303, 277, 11234), (78304, 277, 11268), (78305, 277, 11304), (78306, 277, 11316), (78307, 277, 11355), (78308, 277, 11523), (78309, 277, 11571), (78310, 277, 11663), (78311, 277, 11664), (78312, 277, 11696), (78313, 277, 11727), (78314, 277, 11883), (78315, 277, 12066), (78316, 277, 12118), (78317, 277, 12291), (78318, 277, 12450), (78319, 277, 12475), (78320, 277, 12675), (78321, 277, 12688), (78322, 277, 12724), (78323, 277, 12883), (78324, 277, 12999), (78325, 277, 13091), (78326, 277, 13202), (78327, 277, 13209), (78328, 277, 13289), (78329, 277, 13311), (78330, 277, 13537), (78331, 277, 13538), (78332, 277, 13795), (78333, 277, 14081), (78334, 277, 14463), (78335, 277, 14478), (78336, 277, 14492), (78337, 277, 14560), (78338, 277, 14612), (78339, 277, 14683), (78340, 277, 14688), (78341, 277, 14700), (78342, 277, 14762), (78343, 277, 14931), (78344, 277, 14944), (78345, 277, 15017), (78346, 277, 15189), (78347, 277, 15285), (78348, 277, 15312), (78349, 277, 15355), (78350, 277, 15646), (78351, 277, 15791), (78352, 277, 15839), (78353, 277, 16021), (78354, 277, 16094), (78355, 277, 16368), (78356, 277, 16461), (78357, 277, 16622), (78358, 277, 16709), (78359, 277, 16804), (78360, 277, 16881), (78361, 277, 16894), (78362, 277, 16909), (78363, 277, 16950), (78364, 277, 17053), (78365, 277, 17292), (78366, 277, 17316), (78367, 277, 17391), (78368, 277, 17449), (78369, 277, 17552), (78370, 277, 17560), (78371, 277, 17679), (78372, 277, 17848), (78373, 277, 17879), (78374, 277, 18095), (78375, 277, 18438), (78376, 277, 18460), (78377, 277, 18628), (78378, 277, 18678), (78379, 277, 18698), (78380, 277, 18739), (78381, 277, 18859), (78382, 277, 18906), (78383, 277, 19175), (78384, 277, 19274), (78385, 277, 19384), (78386, 277, 19462), (78387, 277, 19488), (78388, 277, 19774), (78389, 277, 19775), (78390, 277, 19954), (78391, 277, 20032), (78392, 277, 20040), (78393, 277, 20049), (78394, 277, 20221), (78395, 277, 20239), (78396, 277, 20287), (78397, 277, 20430), (78398, 277, 20548), (78399, 277, 20561), (78400, 277, 20715), (78401, 277, 20744), (78402, 277, 20784), (78403, 277, 20848), (78404, 277, 20929), (78405, 277, 20966), (78406, 277, 21215), (78407, 277, 21226), (78408, 277, 21241), (78409, 277, 21599), (78410, 277, 21837), (78411, 277, 21866), (78412, 277, 21966), (78413, 277, 21970), (78414, 277, 22447), (78415, 277, 22462), (78416, 277, 22636), (78417, 277, 22738), (78418, 277, 22877), (78419, 277, 22977), (78420, 277, 23014), (78421, 277, 23018), (78422, 277, 23333), (78423, 277, 23357), (78424, 277, 23358), (78425, 277, 23369), (78426, 277, 23381), (78427, 277, 23513), (78428, 277, 23722), (78429, 277, 24118), (78430, 277, 24333), (78431, 277, 24581), (78432, 277, 24636), (78433, 277, 24641), (78434, 277, 24658), (78435, 277, 24678), (78436, 277, 24725), (78437, 277, 24895), (78438, 277, 24960), (78439, 277, 25088), (78440, 277, 25182), (78662, 278, 218), (78663, 278, 371), (78664, 278, 411), (78665, 278, 446), (78666, 278, 447), (78667, 278, 451), (78668, 278, 462), (78669, 278, 557), (78670, 278, 596), (78671, 278, 605), (78672, 278, 615), (78673, 278, 627), (78674, 278, 703), (78675, 278, 756), (78676, 278, 859), (78677, 278, 882), (78678, 278, 884), (78679, 278, 901), (78680, 278, 906), (78681, 278, 1011), (78682, 278, 1015), (78683, 278, 1084), (78684, 278, 1131), (78685, 278, 1179), (78686, 278, 1182), (78687, 278, 1203), (78688, 278, 1240), (78689, 278, 1264), (78690, 278, 1275), (78691, 278, 1285), (78692, 278, 1299), (78693, 278, 1400), (78694, 278, 1428), (78695, 278, 1464), (78696, 278, 1563), (78697, 278, 1597), (78698, 278, 1601), (78699, 278, 1609), (78700, 278, 1658), (78701, 278, 1686), (78702, 278, 1751), (78703, 278, 1816), (78704, 278, 1848), (78705, 278, 1939), (78706, 278, 2071), (78707, 278, 2087), (78708, 278, 2097), (78709, 278, 2131), (78710, 278, 2139), (78711, 278, 2190), (78712, 278, 2211), (78713, 278, 2213), (78714, 278, 2238), (78715, 278, 2320), (78716, 278, 2449), (78717, 278, 2460), (78718, 278, 2521), (78719, 278, 2532), (78720, 278, 2586), (78721, 278, 2615), (78722, 278, 2663), (78723, 278, 2755), (78724, 278, 2853), (78725, 278, 2916), (78726, 278, 2983), (78727, 278, 3030), (78728, 278, 3045), (78729, 278, 3077), (78730, 278, 3096), (78731, 278, 3139), (78732, 278, 3142), (78733, 278, 3226), (78734, 278, 3274), (78735, 278, 3298), (78736, 278, 3321), (78737, 278, 3418), (78738, 278, 3518), (78739, 278, 3536), (78740, 278, 3608), (78741, 278, 3627), (78742, 278, 3634), (78743, 278, 3653), (78744, 278, 3705), (78745, 278, 3726), (78746, 278, 3795), (78747, 278, 3837), (78748, 278, 3842), (78749, 278, 3844), (78750, 278, 3912), (78751, 278, 3917), (78752, 278, 3956), (78753, 278, 3963), (78754, 278, 3972), (78755, 278, 4012), (78756, 278, 4034), (78757, 278, 4046), (78758, 278, 4056), (78759, 278, 4083), (78760, 278, 4156), (78761, 278, 4183), (78762, 278, 4327), (78763, 278, 4343), (78764, 278, 4378), (78765, 278, 4501), (78766, 278, 4551), (78767, 278, 4561), (78768, 278, 4709), (78769, 278, 4791), (78770, 278, 4964), (78771, 278, 5073), (78772, 278, 5182), (78773, 278, 5189), (78774, 278, 5210), (78775, 278, 5211), (78776, 278, 5250), (78777, 278, 5286), (78778, 278, 5298), (78779, 278, 5322), (78780, 278, 5362), (78781, 278, 5461), (78782, 278, 5603), (78783, 278, 5625), (78784, 278, 5753), (78785, 278, 5781), (78786, 278, 5785), (78787, 278, 5812), (78788, 278, 5823), (78789, 278, 5839), (78790, 278, 5883), (78791, 278, 5903), (78792, 278, 6068), (78793, 278, 6154), (78794, 278, 6174), (78795, 278, 6205), (78796, 278, 6206), (78797, 278, 6377), (78798, 278, 6476), (78799, 278, 6509), (78800, 278, 6535), (78801, 278, 6553), (78802, 278, 6738), (78803, 278, 6740), (78804, 278, 6747), (78805, 278, 6909), (78806, 278, 7016), (78807, 278, 7025), (78808, 278, 7042), (78809, 278, 7133), (78810, 278, 7174), (78811, 278, 7374), (78812, 278, 7376), (78813, 278, 7387), (78814, 278, 7504), (78815, 278, 7553), (78816, 278, 7591), (78817, 278, 7593), (78818, 278, 7623), (78819, 278, 7663), (78820, 278, 7846), (78821, 278, 7892), (78822, 278, 7976), (78823, 278, 8096), (78824, 278, 8097), (78825, 278, 8107), (78826, 278, 8135), (78827, 278, 8147), (78828, 278, 8297), (78829, 278, 8314), (78830, 278, 8428), (78831, 278, 8458), (78832, 278, 8486), (78833, 278, 8601), (78834, 278, 8810), (78835, 278, 8850), (78836, 278, 8875), (78837, 278, 8888), (78838, 278, 8953), (78839, 278, 9127), (78840, 278, 9210), (78841, 278, 9239), (78842, 278, 9292), (78843, 278, 9428), (78844, 278, 9449), (78845, 278, 9622), (78846, 278, 9668), (78847, 278, 9882), (78848, 278, 9944), (78849, 278, 9997), (78850, 278, 10046), (78851, 278, 10199), (78852, 278, 10221), (78853, 278, 10339), (78854, 278, 10539), (78855, 278, 10569), (78856, 278, 10600), (78857, 278, 10631), (78858, 278, 10703), (78859, 278, 10722), (78860, 278, 10746), (78861, 278, 10898), (78862, 278, 10926), (78863, 278, 10948), (78864, 278, 11017), (78865, 278, 11273), (78866, 278, 11388), (78867, 278, 11478), (78868, 278, 11600), (78869, 278, 11688), (78870, 278, 11721), (78871, 278, 11888), (78872, 278, 11924), (78873, 278, 11989), (78874, 278, 12103), (78875, 278, 12128), (78876, 278, 12169), (78877, 278, 12369), (78878, 278, 12397), (78879, 278, 12508), (78880, 278, 12540), (78881, 278, 12580), (78882, 278, 12608), (78883, 278, 12725), (78884, 278, 12765), (78885, 278, 12804), (78886, 278, 12822), (78887, 278, 13112), (78888, 278, 13202), (78889, 278, 13225), (78890, 278, 13237), (78891, 278, 13306), (78892, 278, 13410), (78893, 278, 13434), (78894, 278, 13683), (78895, 278, 13725), (78896, 278, 13795), (78897, 278, 13861), (78898, 278, 13865), (78899, 278, 13883), (78900, 278, 14015), (78901, 278, 14144), (78902, 278, 14159), (78903, 278, 14351), (78904, 278, 14476), (78905, 278, 14485), (78906, 278, 14498), (78907, 278, 14523), (78908, 278, 14700), (78909, 278, 14707), (78910, 278, 14924), (78911, 278, 14931), (78912, 278, 15059), (78913, 278, 15156), (78914, 278, 15193), (78915, 278, 15232), (78916, 278, 15330), (78917, 278, 15449), (78918, 278, 15475), (78919, 278, 15678), (78920, 278, 15723), (78921, 278, 15754), (78922, 278, 15839), (78923, 278, 16394), (78924, 278, 16450), (78925, 278, 16493), (78926, 278, 16516), (78927, 278, 16573), (78928, 278, 16574), (78929, 278, 16763), (78930, 278, 16888), (78931, 278, 17056), (78932, 278, 17074), (78933, 278, 17253), (78934, 278, 17311), (78935, 278, 17781), (78936, 278, 17790), (78937, 278, 17811), (78938, 278, 17848), (78939, 278, 17896), (78940, 278, 18133), (78941, 278, 18161), (78942, 278, 18184), (78943, 278, 18215), (78944, 278, 18298), (78945, 278, 18361), (78946, 278, 18414), (78947, 278, 18424), (78948, 278, 18448), (78949, 278, 18604), (78950, 278, 18646), (78951, 278, 18760), (78952, 278, 18850), (78953, 278, 19435), (78954, 278, 19483), (78955, 278, 19634), (78956, 278, 19731), (78957, 278, 19846), (78958, 278, 19902), (78959, 278, 19975), (78960, 278, 20055), (78961, 278, 20201), (78962, 278, 20294), (78963, 278, 20364), (78964, 278, 20394), (78965, 278, 20609), (78966, 278, 20909), (78967, 278, 21083), (78968, 278, 21215), (78969, 278, 21226), (78970, 278, 21268), (78971, 278, 21602), (78972, 278, 21711), (78973, 278, 21933), (78974, 278, 21970), (78975, 278, 22139), (78976, 278, 22237), (78977, 278, 22285), (78978, 278, 22461), (78979, 278, 22472), (78980, 278, 22738), (78981, 278, 22746), (78982, 278, 22869), (78983, 278, 22984), (78984, 278, 23128), (78985, 278, 23788), (78986, 278, 24092), (78987, 278, 24353), (78988, 278, 24397), (78989, 278, 24766), (79173, 279, 166), (79174, 279, 379), (79175, 279, 447), (79176, 279, 466), (79177, 279, 505), (79178, 279, 615), (79179, 279, 859), (79180, 279, 878), (79181, 279, 882), (79182, 279, 884), (79183, 279, 932), (79184, 279, 944), (79185, 279, 1081), (79186, 279, 1084), (79187, 279, 1203), (79188, 279, 1229), (79189, 279, 1595), (79190, 279, 1609), (79191, 279, 1663), (79192, 279, 1782), (79193, 279, 1816), (79194, 279, 1848), (79195, 279, 2139), (79196, 279, 2211), (79197, 279, 2235), (79198, 279, 2254), (79199, 279, 2320), (79200, 279, 2376), (79201, 279, 2460), (79202, 279, 2464), (79203, 279, 2471), (79204, 279, 2730), (79205, 279, 2739), (79206, 279, 2875), (79207, 279, 3038), (79208, 279, 3045), (79209, 279, 3077), (79210, 279, 3142), (79211, 279, 3221), (79212, 279, 3277), (79213, 279, 3370), (79214, 279, 3420), (79215, 279, 3455), (79216, 279, 3459), (79217, 279, 3580), (79218, 279, 3590), (79219, 279, 3627), (79220, 279, 3648), (79221, 279, 3783), (79222, 279, 3912), (79223, 279, 4046), (79224, 279, 4047), (79225, 279, 4271), (79226, 279, 4359), (79227, 279, 4427), (79228, 279, 4549), (79229, 279, 4586), (79230, 279, 4757), (79231, 279, 4782), (79232, 279, 4930), (79233, 279, 4964), (79234, 279, 5286), (79235, 279, 5376), (79236, 279, 5923), (79237, 279, 5941), (79238, 279, 5968), (79239, 279, 6041), (79240, 279, 6061), (79241, 279, 6106), (79242, 279, 6133), (79243, 279, 6384), (79244, 279, 6747), (79245, 279, 6825), (79246, 279, 7016), (79247, 279, 7055), (79248, 279, 7625), (79249, 279, 7686), (79250, 279, 7796), (79251, 279, 7878), (79252, 279, 7892), (79253, 279, 7962), (79254, 279, 8034), (79255, 279, 8092), (79256, 279, 8142), (79257, 279, 8150), (79258, 279, 8570), (79259, 279, 8601), (79260, 279, 8767), (79261, 279, 9302), (79262, 279, 9446), (79263, 279, 9454), (79264, 279, 9484), (79265, 279, 9625), (79266, 279, 9670), (79267, 279, 9674), (79268, 279, 9695), (79269, 279, 9718), (79270, 279, 9846), (79271, 279, 9997), (79272, 279, 10152), (79273, 279, 10695), (79274, 279, 10727), (79275, 279, 10757), (79276, 279, 10948), (79277, 279, 10949), (79278, 279, 11074), (79279, 279, 11215), (79280, 279, 11415), (79281, 279, 11772), (79282, 279, 12044), (79283, 279, 12262), (79284, 279, 12540), (79285, 279, 13504), (79286, 279, 13537), (79287, 279, 14144), (79288, 279, 14176), (79289, 279, 14430), (79290, 279, 14520), (79291, 279, 14688), (79292, 279, 14700), (79293, 279, 15036), (79294, 279, 16149), (79295, 279, 16573), (79296, 279, 16816), (79297, 279, 17074), (79298, 279, 17292), (79299, 279, 17790), (79300, 279, 18073), (79301, 279, 18094), (79302, 279, 18560), (79303, 279, 18678), (79304, 279, 20005), (79305, 279, 20055), (79306, 279, 21033), (79307, 279, 21215), (79308, 279, 21346), (79309, 279, 22006), (79310, 279, 22109), (79311, 279, 22315), (79312, 279, 22841), (79313, 279, 22978), (79314, 279, 25054), (79428, 280, 166), (79429, 280, 461), (79430, 280, 645), (79431, 280, 932), (79432, 280, 1084), (79433, 280, 2257), (79434, 280, 2607), (79435, 280, 2730), (79436, 280, 2978), (79437, 280, 3038), (79438, 280, 3045), (79439, 280, 3121), (79440, 280, 3458), (79441, 280, 3579), (79442, 280, 3586), (79443, 280, 4127), (79444, 280, 4335), (79445, 280, 4355), (79446, 280, 4561), (79447, 280, 4709), (79448, 280, 4969), (79449, 280, 5351), (79450, 280, 5435), (79451, 280, 5802), (79452, 280, 6553), (79453, 280, 6721), (79454, 280, 6845), (79455, 280, 7055), (79456, 280, 7133), (79457, 280, 7451), (79458, 280, 7593), (79459, 280, 8034), (79460, 280, 8092), (79461, 280, 8155), (79462, 280, 9262), (79463, 280, 9882), (79464, 280, 9997), (79465, 280, 10722), (79466, 280, 10786), (79467, 280, 11092), (79468, 280, 11659), (79469, 280, 12322), (79470, 280, 12376), (79471, 280, 12467), (79472, 280, 13504), (79473, 280, 13883), (79474, 280, 14475), (79475, 280, 16149), (79476, 280, 16458), (79477, 280, 16989), (79478, 280, 17602), (79479, 280, 18823), (79480, 280, 19769), (79481, 280, 19882), (79482, 280, 19949), (79483, 280, 19975), (79484, 280, 20032), (79485, 280, 20839), (79486, 280, 23759), (79487, 280, 25019), (79491, 281, 63), (79492, 281, 69), (79493, 281, 162), (79494, 281, 261), (79495, 281, 304), (79496, 281, 354), (79497, 281, 384), (79498, 281, 449), (79499, 281, 451), (79500, 281, 521), (79501, 281, 575), (79502, 281, 615), (79503, 281, 740), (79504, 281, 753), (79505, 281, 859), (79506, 281, 878), (79507, 281, 960), (79508, 281, 1063), (79509, 281, 1165), (79510, 281, 1180), (79511, 281, 1199), (79512, 281, 1311), (79513, 281, 1400), (79514, 281, 1563), (79515, 281, 1617), (79516, 281, 1763), (79517, 281, 1807), (79518, 281, 1980), (79519, 281, 2043), (79520, 281, 2107), (79521, 281, 2141), (79522, 281, 2168), (79523, 281, 2188), (79524, 281, 2270), (79525, 281, 2361), (79526, 281, 2397), (79527, 281, 2449), (79528, 281, 2471), (79529, 281, 2476), (79530, 281, 2720), (79531, 281, 2800), (79532, 281, 2836), (79533, 281, 2884), (79534, 281, 2935), (79535, 281, 2938), (79536, 281, 3038), (79537, 281, 3139), (79538, 281, 3185), (79539, 281, 3300), (79540, 281, 3372), (79541, 281, 3525), (79542, 281, 3560), (79543, 281, 3628), (79544, 281, 3842), (79545, 281, 3880), (79546, 281, 3912), (79547, 281, 3955), (79548, 281, 4066), (79549, 281, 4080), (79550, 281, 4177), (79551, 281, 4359), (79552, 281, 4394), (79553, 281, 4418), (79554, 281, 4519), (79555, 281, 4551), (79556, 281, 4644), (79557, 281, 4649), (79558, 281, 4701), (79559, 281, 4786), (79560, 281, 5161), (79561, 281, 5227), (79562, 281, 5248), (79563, 281, 5431), (79564, 281, 5467), (79565, 281, 5627), (79566, 281, 5806), (79567, 281, 5843), (79568, 281, 5880), (79569, 281, 5965), (79570, 281, 5998), (79571, 281, 6068), (79572, 281, 6381), (79573, 281, 6476), (79574, 281, 6596), (79575, 281, 6680), (79576, 281, 6721), (79577, 281, 6740), (79578, 281, 6847), (79579, 281, 6908), (79580, 281, 7042), (79581, 281, 7077), (79582, 281, 7116), (79583, 281, 7124), (79584, 281, 7298), (79585, 281, 7355), (79586, 281, 7383), (79587, 281, 7437), (79588, 281, 7444), (79589, 281, 7489), (79590, 281, 7523), (79591, 281, 7617), (79592, 281, 7675), (79593, 281, 7683), (79594, 281, 7728), (79595, 281, 7796), (79596, 281, 7805), (79597, 281, 7816), (79598, 281, 7910), (79599, 281, 8012), (79600, 281, 8043), (79601, 281, 8087), (79602, 281, 8147), (79603, 281, 8353), (79604, 281, 8453), (79605, 281, 8501), (79606, 281, 8914), (79607, 281, 9079), (79608, 281, 9456), (79609, 281, 9500), (79610, 281, 9523), (79611, 281, 9589), (79612, 281, 9620), (79613, 281, 9670), (79614, 281, 9787), (79615, 281, 9814), (79616, 281, 9847), (79617, 281, 9949), (79618, 281, 10114), (79619, 281, 10152), (79620, 281, 10200), (79621, 281, 10273), (79622, 281, 10587), (79623, 281, 10792), (79624, 281, 10795), (79625, 281, 10836), (79626, 281, 10885), (79627, 281, 11034), (79628, 281, 11139), (79629, 281, 11306), (79630, 281, 11312), (79631, 281, 11705), (79632, 281, 11723), (79633, 281, 11772), (79634, 281, 11805), (79635, 281, 11836), (79636, 281, 11855), (79637, 281, 12014), (79638, 281, 12032), (79639, 281, 12042), (79640, 281, 12248), (79641, 281, 12372), (79642, 281, 12581), (79643, 281, 12706), (79644, 281, 12711), (79645, 281, 12799), (79646, 281, 13018), (79647, 281, 13046), (79648, 281, 13076), (79649, 281, 13117), (79650, 281, 13383), (79651, 281, 13411), (79652, 281, 13435), (79653, 281, 13585), (79654, 281, 13616), (79655, 281, 13649), (79656, 281, 14124), (79657, 281, 14144), (79658, 281, 14203), (79659, 281, 14222), (79660, 281, 14289), (79661, 281, 15164), (79662, 281, 15263), (79663, 281, 15313), (79664, 281, 15342), (79665, 281, 15346), (79666, 281, 15399), (79667, 281, 15424), (79668, 281, 15470), (79669, 281, 15484), (79670, 281, 15623), (79671, 281, 15663), (79672, 281, 15719), (79673, 281, 15806), (79674, 281, 16254), (79675, 281, 16257), (79676, 281, 16457), (79677, 281, 16572), (79678, 281, 16632), (79679, 281, 16674), (79680, 281, 16734), (79681, 281, 16764), (79682, 281, 16844), (79683, 281, 16853), (79684, 281, 17004), (79685, 281, 17051), (79686, 281, 17210), (79687, 281, 17413), (79688, 281, 17544), (79689, 281, 17551), (79690, 281, 17571), (79691, 281, 17574), (79692, 281, 17677), (79693, 281, 17764), (79694, 281, 17800), (79695, 281, 18009), (79696, 281, 18016), (79697, 281, 18033), (79698, 281, 18155), (79699, 281, 18184), (79700, 281, 18325), (79701, 281, 18336), (79702, 281, 18363), (79703, 281, 18500), (79704, 281, 18582), (79705, 281, 18683), (79706, 281, 18723), (79707, 281, 18810), (79708, 281, 19056), (79709, 281, 19057), (79710, 281, 19059), (79711, 281, 19069), (79712, 281, 19280), (79713, 281, 19409), (79714, 281, 19439), (79715, 281, 19444), (79716, 281, 19505), (79717, 281, 19525), (79718, 281, 19595), (79719, 281, 19652), (79720, 281, 19661), (79721, 281, 19881), (79722, 281, 19898), (79723, 281, 20199), (79724, 281, 20263), (79725, 281, 20299), (79726, 281, 20303), (79727, 281, 20315), (79728, 281, 20505), (79729, 281, 20739), (79730, 281, 20781), (79731, 281, 20932), (79732, 281, 20972), (79733, 281, 21016), (79734, 281, 21434), (79735, 281, 21563), (79736, 281, 21793), (79737, 281, 21820), (79738, 281, 21825), (79739, 281, 21887), (79740, 281, 22078), (79741, 281, 22461), (79742, 281, 22603), (79743, 281, 22682), (79744, 281, 22683), (79745, 281, 22925), (79746, 281, 23057), (79747, 281, 23148), (79748, 281, 24013), (79749, 281, 24902), (79750, 281, 25058), (80002, 282, 77), (80003, 282, 79), (80004, 282, 328), (80005, 282, 379), (80006, 282, 412), (80007, 282, 505), (80008, 282, 549), (80009, 282, 687), (80010, 282, 742), (80011, 282, 836), (80012, 282, 918), (80013, 282, 944), (80014, 282, 957), (80015, 282, 1200), (80016, 282, 1286), (80017, 282, 1382), (80018, 282, 1464), (80019, 282, 1493), (80020, 282, 1507), (80021, 282, 1566), (80022, 282, 1595), (80023, 282, 1617), (80024, 282, 1664), (80025, 282, 1674), (80026, 282, 1771), (80027, 282, 1807), (80028, 282, 1874), (80029, 282, 1904), (80030, 282, 1959), (80031, 282, 2024), (80032, 282, 2143), (80033, 282, 2211), (80034, 282, 2213), (80035, 282, 2277), (80036, 282, 2306), (80037, 282, 2335), (80038, 282, 2356), (80039, 282, 2481), (80040, 282, 2508), (80041, 282, 2521), (80042, 282, 2611), (80043, 282, 2654), (80044, 282, 2983), (80045, 282, 3029), (80046, 282, 3030), (80047, 282, 3214), (80048, 282, 3250), (80049, 282, 3300), (80050, 282, 3321), (80051, 282, 3390), (80052, 282, 3400), (80053, 282, 3418), (80054, 282, 3529), (80055, 282, 3536), (80056, 282, 3630), (80057, 282, 3783), (80058, 282, 3945), (80059, 282, 4002), (80060, 282, 4038), (80061, 282, 4079), (80062, 282, 4234), (80063, 282, 4266), (80064, 282, 4314), (80065, 282, 4343), (80066, 282, 4354), (80067, 282, 4391), (80068, 282, 4515), (80069, 282, 4595), (80070, 282, 4757), (80071, 282, 4791), (80072, 282, 4884), (80073, 282, 5118), (80074, 282, 5179), (80075, 282, 5196), (80076, 282, 5226), (80077, 282, 5266), (80078, 282, 5312), (80079, 282, 5376), (80080, 282, 5409), (80081, 282, 5484), (80082, 282, 5627), (80083, 282, 5634), (80084, 282, 5689), (80085, 282, 5700), (80086, 282, 5723), (80087, 282, 5743), (80088, 282, 5812), (80089, 282, 5813), (80090, 282, 5823), (80091, 282, 5832), (80092, 282, 5833), (80093, 282, 5852), (80094, 282, 5865), (80095, 282, 5923), (80096, 282, 6021), (80097, 282, 6098), (80098, 282, 6106), (80099, 282, 6171), (80100, 282, 6222), (80101, 282, 6329), (80102, 282, 6354), (80103, 282, 6445), (80104, 282, 6504), (80105, 282, 6837), (80106, 282, 6969), (80107, 282, 6988), (80108, 282, 7180), (80109, 282, 7451), (80110, 282, 7504), (80111, 282, 7581), (80112, 282, 7666), (80113, 282, 7846), (80114, 282, 7849), (80115, 282, 7854), (80116, 282, 7925), (80117, 282, 8002), (80118, 282, 8012), (80119, 282, 8034), (80120, 282, 8054), (80121, 282, 8071), (80122, 282, 8150), (80123, 282, 8324), (80124, 282, 8391), (80125, 282, 8414), (80126, 282, 8728), (80127, 282, 8843), (80128, 282, 8853), (80129, 282, 8914), (80130, 282, 8926), (80131, 282, 8966), (80132, 282, 9030), (80133, 282, 9114), (80134, 282, 9180), (80135, 282, 9253), (80136, 282, 9257), (80137, 282, 9292), (80138, 282, 9359), (80139, 282, 9410), (80140, 282, 9443), (80141, 282, 9449), (80142, 282, 9453), (80143, 282, 9460), (80144, 282, 9495), (80145, 282, 9621), (80146, 282, 9646), (80147, 282, 9653), (80148, 282, 9709), (80149, 282, 9718), (80150, 282, 9775), (80151, 282, 9777), (80152, 282, 10102), (80153, 282, 10114), (80154, 282, 10133), (80155, 282, 10159), (80156, 282, 10199), (80157, 282, 10221), (80158, 282, 10520), (80159, 282, 10572), (80160, 282, 10734), (80161, 282, 10807), (80162, 282, 10881), (80163, 282, 10949), (80164, 282, 11205), (80165, 282, 11273), (80166, 282, 11306), (80167, 282, 11491), (80168, 282, 11501), (80169, 282, 11663), (80170, 282, 11664), (80171, 282, 11705), (80172, 282, 11924), (80173, 282, 11947), (80174, 282, 12012), (80175, 282, 12042), (80176, 282, 12103), (80177, 282, 12154), (80178, 282, 12285), (80179, 282, 12366), (80180, 282, 12376), (80181, 282, 12446), (80182, 282, 12514), (80183, 282, 12688), (80184, 282, 12689), (80185, 282, 12727), (80186, 282, 12821), (80187, 282, 12955), (80188, 282, 12961), (80189, 282, 12968), (80190, 282, 13146), (80191, 282, 13237), (80192, 282, 13246), (80193, 282, 13364), (80194, 282, 13486), (80195, 282, 13552), (80196, 282, 13683), (80197, 282, 13775), (80198, 282, 13792), (80199, 282, 13865), (80200, 282, 13916), (80201, 282, 14074), (80202, 282, 14139), (80203, 282, 14159), (80204, 282, 14485), (80205, 282, 14598), (80206, 282, 14612), (80207, 282, 14762), (80208, 282, 14924), (80209, 282, 14931), (80210, 282, 14944), (80211, 282, 15008), (80212, 282, 15056), (80213, 282, 15087), (80214, 282, 15143), (80215, 282, 15164), (80216, 282, 15232), (80217, 282, 15250), (80218, 282, 15333), (80219, 282, 15490), (80220, 282, 15617), (80221, 282, 15646), (80222, 282, 15723), (80223, 282, 16076), (80224, 282, 16089), (80225, 282, 16179), (80226, 282, 16258), (80227, 282, 16265), (80228, 282, 16370), (80229, 282, 16513), (80230, 282, 16674), (80231, 282, 16780), (80232, 282, 16804), (80233, 282, 16888), (80234, 282, 16929), (80235, 282, 17056), (80236, 282, 17248), (80237, 282, 17336), (80238, 282, 17396), (80239, 282, 17512), (80240, 282, 17525), (80241, 282, 17609), (80242, 282, 17633), (80243, 282, 17765), (80244, 282, 18026), (80245, 282, 18384), (80246, 282, 18415), (80247, 282, 18435), (80248, 282, 18460), (80249, 282, 18560), (80250, 282, 19104), (80251, 282, 19262), (80252, 282, 19860), (80253, 282, 19938), (80254, 282, 20239), (80255, 282, 20273), (80256, 282, 20292), (80257, 282, 20364), (80258, 282, 20470), (80259, 282, 20684), (80260, 282, 20914), (80261, 282, 21076), (80262, 282, 21208), (80263, 282, 21241), (80264, 282, 21318), (80265, 282, 21673), (80266, 282, 21822), (80267, 282, 21866), (80268, 282, 21980), (80269, 282, 22107), (80270, 282, 22151), (80271, 282, 22319), (80272, 282, 22738), (80273, 282, 22776), (80274, 282, 22974), (80275, 282, 22978), (80276, 282, 23129), (80277, 282, 23155), (80278, 282, 23484), (80279, 282, 23525), (80280, 282, 23608), (80281, 282, 23638), (80282, 282, 23997), (80283, 282, 24088), (80284, 282, 24636), (80285, 282, 25093), (80513, 283, 96), (80514, 283, 591), (80515, 283, 1275), (80516, 283, 1345), (80517, 283, 1671), (80518, 283, 1747), (80519, 283, 1827), (80520, 283, 1922), (80521, 283, 1980), (80522, 283, 2023), (80523, 283, 2497), (80524, 283, 2611), (80525, 283, 2860), (80526, 283, 3005), (80527, 283, 3442), (80528, 283, 3486), (80529, 283, 3748), (80530, 283, 3805), (80531, 283, 4504), (80532, 283, 4526), (80533, 283, 4599), (80534, 283, 4810), (80535, 283, 5000), (80536, 283, 5215), (80537, 283, 5395), (80538, 283, 5599), (80539, 283, 5619), (80540, 283, 5634), (80541, 283, 5668), (80542, 283, 5823), (80543, 283, 5833), (80544, 283, 5837), (80545, 283, 5998), (80546, 283, 6010), (80547, 283, 6063), (80548, 283, 6222), (80549, 283, 6344), (80550, 283, 6519), (80551, 283, 6530), (80552, 283, 6614), (80553, 283, 6626), (80554, 283, 6662), (80555, 283, 6696), (80556, 283, 6716), (80557, 283, 6815), (80558, 283, 6891), (80559, 283, 6971), (80560, 283, 7054), (80561, 283, 7311), (80562, 283, 7380), (80563, 283, 7579), (80564, 283, 7618), (80565, 283, 7629), (80566, 283, 7752), (80567, 283, 7888), (80568, 283, 7951), (80569, 283, 8216), (80570, 283, 8318), (80571, 283, 8383), (80572, 283, 8448), (80573, 283, 8595), (80574, 283, 8692), (80575, 283, 8756), (80576, 283, 8770), (80577, 283, 8773), (80578, 283, 8886), (80579, 283, 8926), (80580, 283, 8983), (80581, 283, 9027), (80582, 283, 9114), (80583, 283, 9151), (80584, 283, 9177), (80585, 283, 9249), (80586, 283, 9253), (80587, 283, 9309), (80588, 283, 9357), (80589, 283, 9437), (80590, 283, 9480), (80591, 283, 9623), (80592, 283, 9646), (80593, 283, 9744), (80594, 283, 9763), (80595, 283, 9779), (80596, 283, 9864), (80597, 283, 9981), (80598, 283, 10127), (80599, 283, 10221), (80600, 283, 10252), (80601, 283, 10312), (80602, 283, 10315), (80603, 283, 10604), (80604, 283, 10631), (80605, 283, 10732), (80606, 283, 10782), (80607, 283, 10836), (80608, 283, 10859), (80609, 283, 10916), (80610, 283, 11214), (80611, 283, 11244), (80612, 283, 11256), (80613, 283, 11308), (80614, 283, 11414), (80615, 283, 11483), (80616, 283, 11566), (80617, 283, 11570), (80618, 283, 11580), (80619, 283, 11587), (80620, 283, 11692), (80621, 283, 11709), (80622, 283, 11867), (80623, 283, 11885), (80624, 283, 12049), (80625, 283, 12115), (80626, 283, 12201), (80627, 283, 12212), (80628, 283, 12283), (80629, 283, 12285), (80630, 283, 12376), (80631, 283, 12483), (80632, 283, 12489), (80633, 283, 12537), (80634, 283, 12563), (80635, 283, 12651), (80636, 283, 12660), (80637, 283, 12750), (80638, 283, 12765), (80639, 283, 12898), (80640, 283, 13036), (80641, 283, 13071), (80642, 283, 13151), (80643, 283, 13178), (80644, 283, 13213), (80645, 283, 13243), (80646, 283, 13244), (80647, 283, 13301), (80648, 283, 13313), (80649, 283, 13315), (80650, 283, 13384), (80651, 283, 13475), (80652, 283, 13477), (80653, 283, 13485), (80654, 283, 13520), (80655, 283, 13737), (80656, 283, 13740), (80657, 283, 13746), (80658, 283, 13762), (80659, 283, 13798), (80660, 283, 13814), (80661, 283, 13832), (80662, 283, 13851), (80663, 283, 13880), (80664, 283, 13951), (80665, 283, 14046), (80666, 283, 14055), (80667, 283, 14087), (80668, 283, 14109), (80669, 283, 14113), (80670, 283, 14116), (80671, 283, 14153), (80672, 283, 14162), (80673, 283, 14169), (80674, 283, 14174), (80675, 283, 14260), (80676, 283, 14304), (80677, 283, 14468), (80678, 283, 14569), (80679, 283, 14663), (80680, 283, 14684), (80681, 283, 14741), (80682, 283, 14822), (80683, 283, 14849), (80684, 283, 14864), (80685, 283, 15013), (80686, 283, 15021), (80687, 283, 15087), (80688, 283, 15131), (80689, 283, 15210), (80690, 283, 15232), (80691, 283, 15251), (80692, 283, 15289), (80693, 283, 15326), (80694, 283, 15389), (80695, 283, 15403), (80696, 283, 15544), (80697, 283, 15557), (80698, 283, 15701), (80699, 283, 15711), (80700, 283, 15720), (80701, 283, 15814), (80702, 283, 15835), (80703, 283, 15843), (80704, 283, 15888), (80705, 283, 15933), (80706, 283, 15937), (80707, 283, 15988), (80708, 283, 16071), (80709, 283, 16120), (80710, 283, 16196), (80711, 283, 16393), (80712, 283, 16504), (80713, 283, 16557), (80714, 283, 16566), (80715, 283, 16653), (80716, 283, 16783), (80717, 283, 16805), (80718, 283, 16845), (80719, 283, 16935), (80720, 283, 16982), (80721, 283, 17071), (80722, 283, 17099), (80723, 283, 17125), (80724, 283, 17148), (80725, 283, 17183), (80726, 283, 17217), (80727, 283, 17298), (80728, 283, 17345), (80729, 283, 17373), (80730, 283, 17389), (80731, 283, 17407), (80732, 283, 17438), (80733, 283, 17471), (80734, 283, 17504), (80735, 283, 17613), (80736, 283, 17640), (80737, 283, 17673), (80738, 283, 17734), (80739, 283, 17823), (80740, 283, 17878), (80741, 283, 17891), (80742, 283, 18013), (80743, 283, 18015), (80744, 283, 18041), (80745, 283, 18146), (80746, 283, 18160), (80747, 283, 18286), (80748, 283, 18373), (80749, 283, 18469), (80750, 283, 18557), (80751, 283, 18560), (80752, 283, 18568), (80753, 283, 18605), (80754, 283, 18635), (80755, 283, 18687), (80756, 283, 18798), (80757, 283, 18827), (80758, 283, 18891), (80759, 283, 18940), (80760, 283, 18956), (80761, 283, 18957), (80762, 283, 19045), (80763, 283, 19082), (80764, 283, 19095), (80765, 283, 19099), (80766, 283, 19203), (80767, 283, 19241), (80768, 283, 19245), (80769, 283, 19262), (80770, 283, 19344), (80771, 283, 19362), (80772, 283, 19404), (80773, 283, 19487), (80774, 283, 19541), (80775, 283, 19558), (80776, 283, 19559), (80777, 283, 19615), (80778, 283, 19666), (80779, 283, 19762), (80780, 283, 19787), (80781, 283, 19859), (80782, 283, 19908), (80783, 283, 19922), (80784, 283, 19985), (80785, 283, 20099), (80786, 283, 20140), (80787, 283, 20206), (80788, 283, 20273), (80789, 283, 20281), (80790, 283, 20379), (80791, 283, 20470), (80792, 283, 20487), (80793, 283, 20530), (80794, 283, 20540), (80795, 283, 20725), (80796, 283, 20729), (80797, 283, 20733), (80798, 283, 20798), (80799, 283, 20807), (80800, 283, 20822), (80801, 283, 20846), (80802, 283, 20861), (80803, 283, 20871), (80804, 283, 20916), (80805, 283, 20925), (80806, 283, 21033), (80807, 283, 21034), (80808, 283, 21142), (80809, 283, 21166), (80810, 283, 21167), (80811, 283, 21254), (80812, 283, 21286), (80813, 283, 21300), (80814, 283, 21391), (80815, 283, 21400), (80816, 283, 21421), (80817, 283, 21539), (80818, 283, 21555), (80819, 283, 21556), (80820, 283, 21575), (80821, 283, 21601), (80822, 283, 21619), (80823, 283, 21638), (80824, 283, 21647), (80825, 283, 21650), (80826, 283, 21675), (80827, 283, 21709), (80828, 283, 21715), (80829, 283, 21782), (80830, 283, 21786), (80831, 283, 21887), (80832, 283, 21904), (80833, 283, 21915), (80834, 283, 21962), (80835, 283, 21988), (80836, 283, 22004), (80837, 283, 22005), (80838, 283, 22020), (80839, 283, 22034), (80840, 283, 22067), (80841, 283, 22068), (80842, 283, 22082), (80843, 283, 22135), (80844, 283, 22195), (80845, 283, 22255), (80846, 283, 22327), (80847, 283, 22336), (80848, 283, 22358), (80849, 283, 22416), (80850, 283, 22453), (80851, 283, 22466), (80852, 283, 22476), (80853, 283, 22533), (80854, 283, 22540), (80855, 283, 22601), (80856, 283, 22629), (80857, 283, 22644), (80858, 283, 22938), (80859, 283, 22942), (80860, 283, 22973), (80861, 283, 23049), (80862, 283, 23089), (80863, 283, 23098), (80864, 283, 23100), (80865, 283, 23103), (80866, 283, 23114), (80867, 283, 23129), (80868, 283, 23155), (80869, 283, 23293), (80870, 283, 23323), (80871, 283, 23348), (80872, 283, 23380), (80873, 283, 23469), (80874, 283, 23490), (80875, 283, 23568), (80876, 283, 23571), (80877, 283, 23586), (80878, 283, 23607), (80879, 283, 23666), (80880, 283, 23686), (80881, 283, 23689), (80882, 283, 23770), (80883, 283, 23957), (80884, 283, 24025), (80885, 283, 24068), (80886, 283, 24091), (80887, 283, 24147), (80888, 283, 24178), (80889, 283, 24237), (80890, 283, 24245), (80891, 283, 24325), (80892, 283, 24326), (80893, 283, 24352), (80894, 283, 24380), (80895, 283, 24391), (80896, 283, 24409), (80897, 283, 24420), (80898, 283, 24480), (80899, 283, 24495), (80900, 283, 24505), (80901, 283, 24627), (80902, 283, 24731), (80903, 283, 24754), (80904, 283, 24852), (80905, 283, 25138), (80906, 283, 25220), (81024, 284, 1457), (81025, 284, 1461), (81026, 284, 1673), (81027, 284, 1922), (81028, 284, 1988), (81029, 284, 2042), (81030, 284, 2333), (81031, 284, 2496), (81032, 284, 2860), (81033, 284, 3024), (81034, 284, 3852), (81035, 284, 4192), (81036, 284, 4252), (81037, 284, 4535), (81038, 284, 4619), (81039, 284, 4809), (81040, 284, 4810), (81041, 284, 4864), (81042, 284, 5171), (81043, 284, 5241), (81044, 284, 5419), (81045, 284, 5449), (81046, 284, 5530), (81047, 284, 5590), (81048, 284, 5619), (81049, 284, 5837), (81050, 284, 6037), (81051, 284, 6296), (81052, 284, 6304), (81053, 284, 6405), (81054, 284, 6530), (81055, 284, 6601), (81056, 284, 6778), (81057, 284, 6972), (81058, 284, 6992), (81059, 284, 7059), (81060, 284, 7153), (81061, 284, 7380), (81062, 284, 7772), (81063, 284, 7806), (81064, 284, 8003), (81065, 284, 8141), (81066, 284, 8294), (81067, 284, 8383), (81068, 284, 8431), (81069, 284, 8444), (81070, 284, 8448), (81071, 284, 8595), (81072, 284, 8663), (81073, 284, 8871), (81074, 284, 8886), (81075, 284, 8894), (81076, 284, 8960), (81077, 284, 9357), (81078, 284, 9401), (81079, 284, 9547), (81080, 284, 9763), (81081, 284, 10015), (81082, 284, 10127), (81083, 284, 10289), (81084, 284, 10312), (81085, 284, 10360), (81086, 284, 10498), (81087, 284, 10666), (81088, 284, 10764), (81089, 284, 10956), (81090, 284, 11131), (81091, 284, 11295), (81092, 284, 11341), (81093, 284, 11414), (81094, 284, 11578), (81095, 284, 11580), (81096, 284, 11867), (81097, 284, 12022), (81098, 284, 12081), (81099, 284, 12086), (81100, 284, 12221), (81101, 284, 12253), (81102, 284, 12283), (81103, 284, 12325), (81104, 284, 12478), (81105, 284, 12511), (81106, 284, 12558), (81107, 284, 12563), (81108, 284, 12599), (81109, 284, 12611), (81110, 284, 12615), (81111, 284, 12827), (81112, 284, 12857), (81113, 284, 12860), (81114, 284, 12882), (81115, 284, 13155), (81116, 284, 13244), (81117, 284, 13253), (81118, 284, 13457), (81119, 284, 13477), (81120, 284, 13543), (81121, 284, 13874), (81122, 284, 13915), (81123, 284, 13951), (81124, 284, 14016), (81125, 284, 14046), (81126, 284, 14087), (81127, 284, 14113), (81128, 284, 14139), (81129, 284, 14169), (81130, 284, 14241), (81131, 284, 14260), (81132, 284, 14304), (81133, 284, 14537), (81134, 284, 14635), (81135, 284, 14685), (81136, 284, 14795), (81137, 284, 14899), (81138, 284, 15117), (81139, 284, 15162), (81140, 284, 15210), (81141, 284, 15327), (81142, 284, 15390), (81143, 284, 15426), (81144, 284, 15457), (81145, 284, 15710), (81146, 284, 15743), (81147, 284, 15835), (81148, 284, 15918), (81149, 284, 15937), (81150, 284, 16062), (81151, 284, 16154), (81152, 284, 16169), (81153, 284, 16182), (81154, 284, 16275), (81155, 284, 16329), (81156, 284, 16393), (81157, 284, 16446), (81158, 284, 16472), (81159, 284, 16545), (81160, 284, 16620), (81161, 284, 16633), (81162, 284, 16640), (81163, 284, 16702), (81164, 284, 16705), (81165, 284, 16717), (81166, 284, 16845), (81167, 284, 16935), (81168, 284, 17014), (81169, 284, 17095), (81170, 284, 17211), (81171, 284, 17398), (81172, 284, 17458), (81173, 284, 17471), (81174, 284, 17504), (81175, 284, 17607), (81176, 284, 17610), (81177, 284, 17967), (81178, 284, 17991), (81179, 284, 18359), (81180, 284, 18370), (81181, 284, 18409), (81182, 284, 18453), (81183, 284, 18473), (81184, 284, 18537), (81185, 284, 18546), (81186, 284, 18571), (81187, 284, 18627), (81188, 284, 18640), (81189, 284, 18693), (81190, 284, 18721), (81191, 284, 18827), (81192, 284, 18845), (81193, 284, 18851), (81194, 284, 18871), (81195, 284, 18896), (81196, 284, 18907), (81197, 284, 19141), (81198, 284, 19161), (81199, 284, 19171), (81200, 284, 19185), (81201, 284, 19201), (81202, 284, 19208), (81203, 284, 19335), (81204, 284, 19344), (81205, 284, 19347), (81206, 284, 19594), (81207, 284, 19849), (81208, 284, 19864), (81209, 284, 19914), (81210, 284, 19957), (81211, 284, 20108), (81212, 284, 20118), (81213, 284, 20123), (81214, 284, 20135), (81215, 284, 20178), (81216, 284, 20202), (81217, 284, 20245), (81218, 284, 20271), (81219, 284, 20322), (81220, 284, 20349), (81221, 284, 20443), (81222, 284, 20480), (81223, 284, 20509), (81224, 284, 20520), (81225, 284, 20625), (81226, 284, 20800), (81227, 284, 20861), (81228, 284, 20919), (81229, 284, 20953), (81230, 284, 20978), (81231, 284, 21043), (81232, 284, 21065), (81233, 284, 21099), (81234, 284, 21121), (81235, 284, 21142), (81236, 284, 21243), (81237, 284, 21273), (81238, 284, 21311), (81239, 284, 21325), (81240, 284, 21490), (81241, 284, 21518), (81242, 284, 21524), (81243, 284, 21530), (81244, 284, 21584), (81245, 284, 21735), (81246, 284, 21741), (81247, 284, 21753), (81248, 284, 21760), (81249, 284, 21771), (81250, 284, 21836), (81251, 284, 21888), (81252, 284, 21963), (81253, 284, 22050), (81254, 284, 22113), (81255, 284, 22114), (81256, 284, 22175), (81257, 284, 22192), (81258, 284, 22195), (81259, 284, 22215), (81260, 284, 22270), (81261, 284, 22342), (81262, 284, 22352), (81263, 284, 22437), (81264, 284, 22460), (81265, 284, 22477), (81266, 284, 22499), (81267, 284, 22501), (81268, 284, 22504), (81269, 284, 22587), (81270, 284, 22592), (81271, 284, 22804), (81272, 284, 22918), (81273, 284, 22932), (81274, 284, 22987), (81275, 284, 23100), (81276, 284, 23101), (81277, 284, 23103), (81278, 284, 23113), (81279, 284, 23188), (81280, 284, 23189), (81281, 284, 23216), (81282, 284, 23314), (81283, 284, 23343), (81284, 284, 23348), (81285, 284, 23371), (81286, 284, 23429), (81287, 284, 23440), (81288, 284, 23464), (81289, 284, 23465), (81290, 284, 23492), (81291, 284, 23502), (81292, 284, 23504), (81293, 284, 23554), (81294, 284, 23564), (81295, 284, 23569), (81296, 284, 23571), (81297, 284, 23574), (81298, 284, 23581), (81299, 284, 23601), (81300, 284, 23776), (81301, 284, 23808), (81302, 284, 23828), (81303, 284, 23839), (81304, 284, 23858), (81305, 284, 23865), (81306, 284, 23873), (81307, 284, 23888), (81308, 284, 23916), (81309, 284, 23924), (81310, 284, 23995), (81311, 284, 24049), (81312, 284, 24063), (81313, 284, 24181), (81314, 284, 24208), (81315, 284, 24226), (81316, 284, 24268), (81317, 284, 24318), (81318, 284, 24416), (81319, 284, 24421), (81320, 284, 24474), (81321, 284, 24505), (81322, 284, 24565), (81323, 284, 24618), (81324, 284, 24629), (81325, 284, 24671), (81326, 284, 24737), (81327, 284, 24765), (81328, 284, 24830), (81329, 284, 24852), (81330, 284, 24872), (81331, 284, 24912), (81332, 284, 24952), (81333, 284, 24970), (81334, 284, 25059), (81335, 284, 25220), (81535, 285, 293), (81536, 285, 360), (81537, 285, 383), (81538, 285, 424), (81539, 285, 437), (81540, 285, 481), (81541, 285, 483), (81542, 285, 485), (81543, 285, 512), (81544, 285, 514), (81545, 285, 579), (81546, 285, 599), (81547, 285, 610), (81548, 285, 631), (81549, 285, 634), (81550, 285, 669), (81551, 285, 693), (81552, 285, 698), (81553, 285, 717), (81554, 285, 802), (81555, 285, 863), (81556, 285, 1071), (81557, 285, 1075), (81558, 285, 1150), (81559, 285, 1189), (81560, 285, 1210), (81561, 285, 1226), (81562, 285, 1263), (81563, 285, 1275), (81564, 285, 1328), (81565, 285, 1336), (81566, 285, 1366), (81567, 285, 1384), (81568, 285, 1393), (81569, 285, 1404), (81570, 285, 1526), (81571, 285, 1664), (81572, 285, 1817), (81573, 285, 1824), (81574, 285, 1952), (81575, 285, 2048), (81576, 285, 2064), (81577, 285, 2068), (81578, 285, 2143), (81579, 285, 2210), (81580, 285, 2356), (81581, 285, 2394), (81582, 285, 2429), (81583, 285, 2566), (81584, 285, 2584), (81585, 285, 2605), (81586, 285, 2782), (81587, 285, 2840), (81588, 285, 2926), (81589, 285, 2974), (81590, 285, 3030), (81591, 285, 3166), (81592, 285, 3216), (81593, 285, 3250), (81594, 285, 3272), (81595, 285, 3303), (81596, 285, 3313), (81597, 285, 3325), (81598, 285, 3344), (81599, 285, 3421), (81600, 285, 3435), (81601, 285, 3494), (81602, 285, 3634), (81603, 285, 3666), (81604, 285, 3755), (81605, 285, 3782), (81606, 285, 3789), (81607, 285, 3810), (81608, 285, 3848), (81609, 285, 3882), (81610, 285, 3909), (81611, 285, 3941), (81612, 285, 3969), (81613, 285, 4112), (81614, 285, 4121), (81615, 285, 4140), (81616, 285, 4168), (81617, 285, 4265), (81618, 285, 4291), (81619, 285, 4314), (81620, 285, 4392), (81621, 285, 4426), (81622, 285, 4431), (81623, 285, 4445), (81624, 285, 4556), (81625, 285, 4648), (81626, 285, 4661), (81627, 285, 4731), (81628, 285, 4771), (81629, 285, 4884), (81630, 285, 4950), (81631, 285, 4959), (81632, 285, 4965), (81633, 285, 5007), (81634, 285, 5019), (81635, 285, 5020), (81636, 285, 5056), (81637, 285, 5057), (81638, 285, 5179), (81639, 285, 5224), (81640, 285, 5226), (81641, 285, 5233), (81642, 285, 5247), (81643, 285, 5298), (81644, 285, 5307), (81645, 285, 5326), (81646, 285, 5342), (81647, 285, 5376), (81648, 285, 5431), (81649, 285, 5455), (81650, 285, 5491), (81651, 285, 5583), (81652, 285, 5615), (81653, 285, 5696), (81654, 285, 5698), (81655, 285, 5742), (81656, 285, 5769), (81657, 285, 5829), (81658, 285, 5842), (81659, 285, 5860), (81660, 285, 5886), (81661, 285, 5892), (81662, 285, 5909), (81663, 285, 5926), (81664, 285, 5934), (81665, 285, 5938), (81666, 285, 5997), (81667, 285, 6059), (81668, 285, 6069), (81669, 285, 6082), (81670, 285, 6191), (81671, 285, 6222), (81672, 285, 6292), (81673, 285, 6339), (81674, 285, 6514), (81675, 285, 6519), (81676, 285, 6569), (81677, 285, 6583), (81678, 285, 6643), (81679, 285, 6810), (81680, 285, 6872), (81681, 285, 6977), (81682, 285, 7102), (81683, 285, 7108), (81684, 285, 7175), (81685, 285, 7180), (81686, 285, 7317), (81687, 285, 7334), (81688, 285, 7403), (81689, 285, 7526), (81690, 285, 7572), (81691, 285, 7710), (81692, 285, 7776), (81693, 285, 7784), (81694, 285, 7852), (81695, 285, 7913), (81696, 285, 8038), (81697, 285, 8051), (81698, 285, 8054), (81699, 285, 8062), (81700, 285, 8069), (81701, 285, 8083), (81702, 285, 8186), (81703, 285, 8225), (81704, 285, 8293), (81705, 285, 8310), (81706, 285, 8405), (81707, 285, 8457), (81708, 285, 8502), (81709, 285, 8570), (81710, 285, 8593), (81711, 285, 8636), (81712, 285, 8685), (81713, 285, 8692), (81714, 285, 8713), (81715, 285, 8728), (81716, 285, 8729), (81717, 285, 8755), (81718, 285, 8787), (81719, 285, 8858), (81720, 285, 8859), (81721, 285, 8961), (81722, 285, 8966), (81723, 285, 9034), (81724, 285, 9067), (81725, 285, 9073), (81726, 285, 9092), (81727, 285, 9111), (81728, 285, 9114), (81729, 285, 9164), (81730, 285, 9166), (81731, 285, 9211), (81732, 285, 9226), (81733, 285, 9264), (81734, 285, 9265), (81735, 285, 9267), (81736, 285, 9290), (81737, 285, 9313), (81738, 285, 9319), (81739, 285, 9323), (81740, 285, 9381), (81741, 285, 9415), (81742, 285, 9430), (81743, 285, 9483), (81744, 285, 9505), (81745, 285, 9507), (81746, 285, 9559), (81747, 285, 9575), (81748, 285, 9660), (81749, 285, 9682), (81750, 285, 9695), (81751, 285, 9719), (81752, 285, 9759), (81753, 285, 9807), (81754, 285, 9875), (81755, 285, 9887), (81756, 285, 9935), (81757, 285, 9941), (81758, 285, 9942), (81759, 285, 9966), (81760, 285, 9973), (81761, 285, 10020), (81762, 285, 10033), (81763, 285, 10093), (81764, 285, 10096), (81765, 285, 10168), (81766, 285, 10222), (81767, 285, 10227), (81768, 285, 10264), (81769, 285, 10319), (81770, 285, 10331), (81771, 285, 10351), (81772, 285, 10404), (81773, 285, 10422), (81774, 285, 10423), (81775, 285, 10447), (81776, 285, 10490), (81777, 285, 10537), (81778, 285, 10574), (81779, 285, 10642), (81780, 285, 10718), (81781, 285, 10719), (81782, 285, 10739), (81783, 285, 10755), (81784, 285, 10776), (81785, 285, 10788), (81786, 285, 10815), (81787, 285, 10817), (81788, 285, 10866), (81789, 285, 10875), (81790, 285, 10897), (81791, 285, 10903), (81792, 285, 10915), (81793, 285, 10955), (81794, 285, 10962), (81795, 285, 10990), (81796, 285, 11015), (81797, 285, 11036), (81798, 285, 11097), (81799, 285, 11149), (81800, 285, 11152), (81801, 285, 11169), (81802, 285, 11176), (81803, 285, 11181), (81804, 285, 11243), (81805, 285, 11266), (81806, 285, 11317), (81807, 285, 11331), (81808, 285, 11360), (81809, 285, 11515), (81810, 285, 11539), (81811, 285, 11583), (81812, 285, 11752), (81813, 285, 11761), (81814, 285, 11774), (81815, 285, 11775), (81816, 285, 12091), (81817, 285, 12144), (81818, 285, 12152), (81819, 285, 12180), (81820, 285, 12228), (81821, 285, 12229), (81822, 285, 12232), (81823, 285, 12234), (81824, 285, 12264), (81825, 285, 12299), (81826, 285, 12335), (81827, 285, 12352), (81828, 285, 12377), (81829, 285, 12419), (81830, 285, 12449), (81831, 285, 12474), (81832, 285, 12485), (81833, 285, 12544), (81834, 285, 12673), (81835, 285, 12705), (81836, 285, 12734), (81837, 285, 12778), (81838, 285, 12785), (81839, 285, 12797), (81840, 285, 12842), (81841, 285, 12890), (81842, 285, 12891), (81843, 285, 12930), (81844, 285, 12931), (81845, 285, 12932), (81846, 285, 12947), (81847, 285, 12977), (81848, 285, 13023), (81849, 285, 13064), (81850, 285, 13115), (81851, 285, 13132), (81852, 285, 13134), (81853, 285, 13177), (81854, 285, 13187), (81855, 285, 13234), (81856, 285, 13337), (81857, 285, 13391), (81858, 285, 13393), (81859, 285, 13426), (81860, 285, 13470), (81861, 285, 13478), (81862, 285, 13488), (81863, 285, 13502), (81864, 285, 13509), (81865, 285, 13565), (81866, 285, 13584), (81867, 285, 13597), (81868, 285, 13602), (81869, 285, 13669), (81870, 285, 13729), (81871, 285, 13768), (81872, 285, 13785), (81873, 285, 13802), (81874, 285, 13803), (81875, 285, 13810), (81876, 285, 13916), (81877, 285, 13977), (81878, 285, 14000), (81879, 285, 14073), (81880, 285, 14150), (81881, 285, 14156), (81882, 285, 14160), (81883, 285, 14176), (81884, 285, 14279), (81885, 285, 14301), (81886, 285, 14340), (81887, 285, 14343), (81888, 285, 14354), (81889, 285, 14388), (81890, 285, 14392), (81891, 285, 14540), (81892, 285, 14589), (81893, 285, 14595), (81894, 285, 14596), (81895, 285, 14614), (81896, 285, 14621), (81897, 285, 14645), (81898, 285, 14686), (81899, 285, 14710), (81900, 285, 14765), (81901, 285, 14810), (81902, 285, 14832), (81903, 285, 14954), (81904, 285, 14983), (81905, 285, 15014), (81906, 285, 15061), (81907, 285, 15237), (81908, 285, 15350), (81909, 285, 15410), (81910, 285, 15439), (81911, 285, 15464), (81912, 285, 15479), (81913, 285, 15491), (81914, 285, 15507), (81915, 285, 15525), (81916, 285, 15555), (81917, 285, 15581), (81918, 285, 15595), (81919, 285, 15618), (81920, 285, 15620), (81921, 285, 15684), (81922, 285, 15737), (81923, 285, 15740), (81924, 285, 15798), (81925, 285, 15813), (81926, 285, 15828), (81927, 285, 15845), (81928, 285, 15861), (81929, 285, 15890), (81930, 285, 15900), (81931, 285, 15915), (81932, 285, 15958), (81933, 285, 15974), (81934, 285, 16049), (81935, 285, 16053), (81936, 285, 16144), (81937, 285, 16205), (81938, 285, 16228), (81939, 285, 16238), (81940, 285, 16244), (81941, 285, 16246), (81942, 285, 16297), (81943, 285, 16338), (81944, 285, 16375), (81945, 285, 16381), (81946, 285, 16412), (81947, 285, 16427), (81948, 285, 16527), (81949, 285, 16535), (81950, 285, 16554), (81951, 285, 16573), (81952, 285, 16584), (81953, 285, 16604), (81954, 285, 16615), (81955, 285, 16656), (81956, 285, 16826), (81957, 285, 16836), (81958, 285, 16870), (81959, 285, 16901), (81960, 285, 17031), (81961, 285, 17034), (81962, 285, 17068), (81963, 285, 17080), (81964, 285, 17097), (81965, 285, 17121), (81966, 285, 17123), (81967, 285, 17200), (81968, 285, 17226), (81969, 285, 17231), (81970, 285, 17320), (81971, 285, 17340), (81972, 285, 17394), (81973, 285, 17447), (81974, 285, 17472), (81975, 285, 17486), (81976, 285, 17490), (81977, 285, 17550), (81978, 285, 17571), (81979, 285, 17579), (81980, 285, 17594), (81981, 285, 17663), (81982, 285, 17794), (81983, 285, 17838), (81984, 285, 17925), (81985, 285, 17929), (81986, 285, 17951), (81987, 285, 17963), (81988, 285, 17993), (81989, 285, 18018), (81990, 285, 18019), (81991, 285, 18039), (81992, 285, 18071), (81993, 285, 18073), (81994, 285, 18085), (81995, 285, 18123), (81996, 285, 18169), (81997, 285, 18185), (81998, 285, 18212), (81999, 285, 18213), (82000, 285, 18253), (82001, 285, 18261), (82002, 285, 18265), (82003, 285, 18270), (82004, 285, 18329), (82005, 285, 18333), (82006, 285, 18390), (82007, 285, 18403), (82008, 285, 18435), (82009, 285, 18525), (82010, 285, 18527), (82011, 285, 18545), (82012, 285, 18562), (82013, 285, 18588), (82014, 285, 18596), (82015, 285, 18599), (82016, 285, 18633), (82017, 285, 18641), (82018, 285, 18643), (82019, 285, 18670), (82020, 285, 18726), (82021, 285, 18729), (82022, 285, 18793), (82023, 285, 18825), (82024, 285, 18842), (82025, 285, 18857), (82026, 285, 18922), (82027, 285, 18924), (82028, 285, 18975), (82029, 285, 18990), (82030, 285, 19075), (82031, 285, 19109), (82032, 285, 19113), (82033, 285, 19154), (82034, 285, 19179), (82035, 285, 19181), (82036, 285, 19227), (82037, 285, 19240), (82038, 285, 19263), (82039, 285, 19304), (82040, 285, 19360), (82041, 285, 19432), (82042, 285, 19433), (82043, 285, 19459), (82044, 285, 19476), (82045, 285, 19481), (82046, 285, 19542), (82047, 285, 19553), (82048, 285, 19577), (82049, 285, 19632), (82050, 285, 19657), (82051, 285, 19671), (82052, 285, 19682), (82053, 285, 19717), (82054, 285, 19727), (82055, 285, 19745), (82056, 285, 19746), (82057, 285, 19821), (82058, 285, 19824), (82059, 285, 19841), (82060, 285, 19853), (82061, 285, 19870), (82062, 285, 19918), (82063, 285, 19932), (82064, 285, 19938), (82065, 285, 19958), (82066, 285, 19986), (82067, 285, 20009), (82068, 285, 20051), (82069, 285, 20070), (82070, 285, 20145), (82071, 285, 20146), (82072, 285, 20157), (82073, 285, 20158), (82074, 285, 20161), (82075, 285, 20191), (82076, 285, 20286), (82077, 285, 20293), (82078, 285, 20339), (82079, 285, 20343), (82080, 285, 20344), (82081, 285, 20416), (82082, 285, 20439), (82083, 285, 20482), (82084, 285, 20495), (82085, 285, 20521), (82086, 285, 20586), (82087, 285, 20622), (82088, 285, 20650), (82089, 285, 20733), (82090, 285, 20745), (82091, 285, 20762), (82092, 285, 20816), (82093, 285, 20818), (82094, 285, 20826), (82095, 285, 20849), (82096, 285, 20867), (82097, 285, 20872), (82098, 285, 20876), (82099, 285, 20880), (82100, 285, 20885), (82101, 285, 20890), (82102, 285, 20927), (82103, 285, 20935), (82104, 285, 20973), (82105, 285, 20983), (82106, 285, 21093), (82107, 285, 21126), (82108, 285, 21130), (82109, 285, 21152), (82110, 285, 21161), (82111, 285, 21174), (82112, 285, 21177), (82113, 285, 21198), (82114, 285, 21271), (82115, 285, 21296), (82116, 285, 21301), (82117, 285, 21328), (82118, 285, 21348), (82119, 285, 21355), (82120, 285, 21364), (82121, 285, 21366), (82122, 285, 21384), (82123, 285, 21465), (82124, 285, 21484), (82125, 285, 21564), (82126, 285, 21707), (82127, 285, 21714); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (82128, 285, 21740), (82129, 285, 21808), (82130, 285, 21861), (82131, 285, 21867), (82132, 285, 21877), (82133, 285, 21965), (82134, 285, 21985), (82135, 285, 22015), (82136, 285, 22016), (82137, 285, 22055), (82138, 285, 22073), (82139, 285, 22078), (82140, 285, 22084), (82141, 285, 22097), (82142, 285, 22103), (82143, 285, 22160), (82144, 285, 22203), (82145, 285, 22336), (82146, 285, 22418), (82147, 285, 22475), (82148, 285, 22479), (82149, 285, 22486), (82150, 285, 22524), (82151, 285, 22525), (82152, 285, 22549), (82153, 285, 22561), (82154, 285, 22577), (82155, 285, 22600), (82156, 285, 22606), (82157, 285, 22624), (82158, 285, 22634), (82159, 285, 22642), (82160, 285, 22670), (82161, 285, 22742), (82162, 285, 22755), (82163, 285, 22766), (82164, 285, 22848), (82165, 285, 22922), (82166, 285, 22937), (82167, 285, 22953), (82168, 285, 23015), (82169, 285, 23055), (82170, 285, 23056), (82171, 285, 23096), (82172, 285, 23227), (82173, 285, 23274), (82174, 285, 23331), (82175, 285, 23385), (82176, 285, 23418), (82177, 285, 23485), (82178, 285, 23557), (82179, 285, 23688), (82180, 285, 23701), (82181, 285, 23718), (82182, 285, 23755), (82183, 285, 23919), (82184, 285, 23920), (82185, 285, 23947), (82186, 285, 23952), (82187, 285, 23955), (82188, 285, 23975), (82189, 285, 23977), (82190, 285, 23989), (82191, 285, 23994), (82192, 285, 24023), (82193, 285, 24040), (82194, 285, 24174), (82195, 285, 24241), (82196, 285, 24315), (82197, 285, 24369), (82198, 285, 24373), (82199, 285, 24463), (82200, 285, 24595), (82201, 285, 24624), (82202, 285, 24677), (82203, 285, 24933), (82204, 285, 24974), (82205, 285, 24988), (82206, 285, 25069), (82207, 285, 25070), (82208, 285, 25073), (82209, 285, 25108), (82210, 285, 25210), (82211, 285, 25214), (82212, 285, 25219), (82558, 286, 591), (82559, 286, 1366), (82560, 286, 1834), (82561, 286, 2143), (82562, 286, 2611), (82563, 286, 2663), (82564, 286, 3027), (82565, 286, 3166), (82566, 286, 3352), (82567, 286, 3400), (82568, 286, 3442), (82569, 286, 3545), (82570, 286, 3776), (82571, 286, 3852), (82572, 286, 4098), (82573, 286, 4223), (82574, 286, 4306), (82575, 286, 4425), (82576, 286, 4959), (82577, 286, 5224), (82578, 286, 5455), (82579, 286, 5579), (82580, 286, 5599), (82581, 286, 5601), (82582, 286, 5638), (82583, 286, 5829), (82584, 286, 5837), (82585, 286, 5884), (82586, 286, 5987), (82587, 286, 6069), (82588, 286, 6072), (82589, 286, 6344), (82590, 286, 6349), (82591, 286, 6492), (82592, 286, 6519), (82593, 286, 6614), (82594, 286, 6662), (82595, 286, 6726), (82596, 286, 6757), (82597, 286, 6815), (82598, 286, 6977), (82599, 286, 6988), (82600, 286, 6996), (82601, 286, 7056), (82602, 286, 7251), (82603, 286, 7388), (82604, 286, 7396), (82605, 286, 7698), (82606, 286, 7719), (82607, 286, 7742), (82608, 286, 7749), (82609, 286, 8004), (82610, 286, 8063), (82611, 286, 8310), (82612, 286, 8570), (82613, 286, 8587), (82614, 286, 8606), (82615, 286, 8663), (82616, 286, 8692), (82617, 286, 8713), (82618, 286, 8717), (82619, 286, 8800), (82620, 286, 8843), (82621, 286, 8887), (82622, 286, 8926), (82623, 286, 8966), (82624, 286, 8993), (82625, 286, 9022), (82626, 286, 9032), (82627, 286, 9041), (82628, 286, 9113), (82629, 286, 9177), (82630, 286, 9253), (82631, 286, 9410), (82632, 286, 9434), (82633, 286, 9443), (82634, 286, 9453), (82635, 286, 9476), (82636, 286, 9479), (82637, 286, 9480), (82638, 286, 9545), (82639, 286, 9547), (82640, 286, 9626), (82641, 286, 9646), (82642, 286, 9682), (82643, 286, 9718), (82644, 286, 9741), (82645, 286, 9773), (82646, 286, 9775), (82647, 286, 9807), (82648, 286, 9836), (82649, 286, 9864), (82650, 286, 9886), (82651, 286, 9981), (82652, 286, 10015), (82653, 286, 10036), (82654, 286, 10096), (82655, 286, 10127), (82656, 286, 10168), (82657, 286, 10221), (82658, 286, 10252), (82659, 286, 10319), (82660, 286, 10331), (82661, 286, 10496), (82662, 286, 10520), (82663, 286, 10575), (82664, 286, 10604), (82665, 286, 10626), (82666, 286, 10695), (82667, 286, 10824), (82668, 286, 10834), (82669, 286, 10851), (82670, 286, 10859), (82671, 286, 10949), (82672, 286, 10956), (82673, 286, 11128), (82674, 286, 11156), (82675, 286, 11160), (82676, 286, 11176), (82677, 286, 11241), (82678, 286, 11341), (82679, 286, 11400), (82680, 286, 11484), (82681, 286, 11518), (82682, 286, 11535), (82683, 286, 11580), (82684, 286, 11631), (82685, 286, 11663), (82686, 286, 11692), (82687, 286, 11709), (82688, 286, 11811), (82689, 286, 11885), (82690, 286, 12014), (82691, 286, 12033), (82692, 286, 12116), (82693, 286, 12184), (82694, 286, 12201), (82695, 286, 12202), (82696, 286, 12212), (82697, 286, 12284), (82698, 286, 12285), (82699, 286, 12310), (82700, 286, 12329), (82701, 286, 12352), (82702, 286, 12366), (82703, 286, 12376), (82704, 286, 12416), (82705, 286, 12419), (82706, 286, 12446), (82707, 286, 12473), (82708, 286, 12489), (82709, 286, 12750), (82710, 286, 12765), (82711, 286, 12789), (82712, 286, 12805), (82713, 286, 12888), (82714, 286, 12929), (82715, 286, 12967), (82716, 286, 12977), (82717, 286, 12994), (82718, 286, 13033), (82719, 286, 13135), (82720, 286, 13146), (82721, 286, 13178), (82722, 286, 13192), (82723, 286, 13219), (82724, 286, 13315), (82725, 286, 13327), (82726, 286, 13404), (82727, 286, 13418), (82728, 286, 13475), (82729, 286, 13509), (82730, 286, 13520), (82731, 286, 13531), (82732, 286, 13596), (82733, 286, 13637), (82734, 286, 13658), (82735, 286, 13737), (82736, 286, 13740), (82737, 286, 13746), (82738, 286, 13762), (82739, 286, 13798), (82740, 286, 13818), (82741, 286, 13851), (82742, 286, 13854), (82743, 286, 13878), (82744, 286, 13906), (82745, 286, 13970), (82746, 286, 14055), (82747, 286, 14073), (82748, 286, 14116), (82749, 286, 14169), (82750, 286, 14171), (82751, 286, 14179), (82752, 286, 14237), (82753, 286, 14260), (82754, 286, 14326), (82755, 286, 14418), (82756, 286, 14440), (82757, 286, 14479), (82758, 286, 14568), (82759, 286, 14575), (82760, 286, 14624), (82761, 286, 14637), (82762, 286, 14649), (82763, 286, 14657), (82764, 286, 14660), (82765, 286, 14663), (82766, 286, 14726), (82767, 286, 14764), (82768, 286, 14778), (82769, 286, 14800), (82770, 286, 14822), (82771, 286, 14849), (82772, 286, 14864), (82773, 286, 14896), (82774, 286, 14914), (82775, 286, 14936), (82776, 286, 14983), (82777, 286, 15008), (82778, 286, 15013), (82779, 286, 15019), (82780, 286, 15021), (82781, 286, 15052), (82782, 286, 15069), (82783, 286, 15087), (82784, 286, 15143), (82785, 286, 15205), (82786, 286, 15232), (82787, 286, 15237), (82788, 286, 15256), (82789, 286, 15277), (82790, 286, 15297), (82791, 286, 15326), (82792, 286, 15350), (82793, 286, 15367), (82794, 286, 15405), (82795, 286, 15411), (82796, 286, 15459), (82797, 286, 15479), (82798, 286, 15484), (82799, 286, 15508), (82800, 286, 15509), (82801, 286, 15537), (82802, 286, 15544), (82803, 286, 15557), (82804, 286, 15579), (82805, 286, 15639), (82806, 286, 15699), (82807, 286, 15701), (82808, 286, 15713), (82809, 286, 15814), (82810, 286, 15835), (82811, 286, 15843), (82812, 286, 15849), (82813, 286, 15857), (82814, 286, 15888), (82815, 286, 15900), (82816, 286, 15933), (82817, 286, 15958), (82818, 286, 15974), (82819, 286, 16012), (82820, 286, 16031), (82821, 286, 16035), (82822, 286, 16071), (82823, 286, 16089), (82824, 286, 16098), (82825, 286, 16151), (82826, 286, 16160), (82827, 286, 16196), (82828, 286, 16219), (82829, 286, 16238), (82830, 286, 16241), (82831, 286, 16244), (82832, 286, 16306), (82833, 286, 16375), (82834, 286, 16393), (82835, 286, 16413), (82836, 286, 16431), (82837, 286, 16483), (82838, 286, 16504), (82839, 286, 16507), (82840, 286, 16509), (82841, 286, 16510), (82842, 286, 16545), (82843, 286, 16557), (82844, 286, 16566), (82845, 286, 16583), (82846, 286, 16584), (82847, 286, 16648), (82848, 286, 16677), (82849, 286, 16688), (82850, 286, 16741), (82851, 286, 16763), (82852, 286, 16778), (82853, 286, 16780), (82854, 286, 16788), (82855, 286, 16791), (82856, 286, 16838), (82857, 286, 16901), (82858, 286, 16948), (82859, 286, 17038), (82860, 286, 17052), (82861, 286, 17056), (82862, 286, 17082), (82863, 286, 17088), (82864, 286, 17097), (82865, 286, 17099), (82866, 286, 17130), (82867, 286, 17146), (82868, 286, 17183), (82869, 286, 17207), (82870, 286, 17215), (82871, 286, 17217), (82872, 286, 17250), (82873, 286, 17254), (82874, 286, 17258), (82875, 286, 17274), (82876, 286, 17345), (82877, 286, 17365), (82878, 286, 17373), (82879, 286, 17389), (82880, 286, 17396), (82881, 286, 17407), (82882, 286, 17485), (82883, 286, 17499), (82884, 286, 17572), (82885, 286, 17613), (82886, 286, 17636), (82887, 286, 17668), (82888, 286, 17673), (82889, 286, 17681), (82890, 286, 17746), (82891, 286, 17748), (82892, 286, 17749), (82893, 286, 17804), (82894, 286, 17814), (82895, 286, 17823), (82896, 286, 17878), (82897, 286, 17891), (82898, 286, 17905), (82899, 286, 17961), (82900, 286, 17962), (82901, 286, 18001), (82902, 286, 18019), (82903, 286, 18027), (82904, 286, 18041), (82905, 286, 18071), (82906, 286, 18073), (82907, 286, 18093), (82908, 286, 18097), (82909, 286, 18102), (82910, 286, 18130), (82911, 286, 18147), (82912, 286, 18160), (82913, 286, 18173), (82914, 286, 18205), (82915, 286, 18224), (82916, 286, 18274), (82917, 286, 18286), (82918, 286, 18335), (82919, 286, 18349), (82920, 286, 18353), (82921, 286, 18358), (82922, 286, 18363), (82923, 286, 18375), (82924, 286, 18384), (82925, 286, 18388), (82926, 286, 18394), (82927, 286, 18408), (82928, 286, 18428), (82929, 286, 18445), (82930, 286, 18504), (82931, 286, 18516), (82932, 286, 18524), (82933, 286, 18535), (82934, 286, 18539), (82935, 286, 18557), (82936, 286, 18566), (82937, 286, 18568), (82938, 286, 18599), (82939, 286, 18605), (82940, 286, 18613), (82941, 286, 18618), (82942, 286, 18652), (82943, 286, 18665), (82944, 286, 18681), (82945, 286, 18687), (82946, 286, 18710), (82947, 286, 18729), (82948, 286, 18746), (82949, 286, 18761), (82950, 286, 18768), (82951, 286, 18798), (82952, 286, 18835), (82953, 286, 18857), (82954, 286, 18905), (82955, 286, 18938), (82956, 286, 18940), (82957, 286, 18990), (82958, 286, 19044), (82959, 286, 19045), (82960, 286, 19064), (82961, 286, 19082), (82962, 286, 19084), (82963, 286, 19090), (82964, 286, 19095), (82965, 286, 19097), (82966, 286, 19099), (82967, 286, 19201), (82968, 286, 19219), (82969, 286, 19241), (82970, 286, 19245), (82971, 286, 19268), (82972, 286, 19279), (82973, 286, 19296), (82974, 286, 19304), (82975, 286, 19313), (82976, 286, 19344), (82977, 286, 19345), (82978, 286, 19346), (82979, 286, 19362), (82980, 286, 19380), (82981, 286, 19386), (82982, 286, 19397), (82983, 286, 19399), (82984, 286, 19402), (82985, 286, 19404), (82986, 286, 19431), (82987, 286, 19459), (82988, 286, 19477), (82989, 286, 19479), (82990, 286, 19486), (82991, 286, 19487), (82992, 286, 19494), (82993, 286, 19541), (82994, 286, 19548), (82995, 286, 19568), (82996, 286, 19571), (82997, 286, 19579), (82998, 286, 19590), (82999, 286, 19594), (83000, 286, 19604), (83001, 286, 19617), (83002, 286, 19620), (83003, 286, 19623), (83004, 286, 19642), (83005, 286, 19662), (83006, 286, 19676), (83007, 286, 19703), (83008, 286, 19727), (83009, 286, 19759), (83010, 286, 19762), (83011, 286, 19793), (83012, 286, 19859), (83013, 286, 19905), (83014, 286, 19922), (83015, 286, 19928), (83016, 286, 19948), (83017, 286, 19957), (83018, 286, 19961), (83019, 286, 19968), (83020, 286, 19987), (83021, 286, 19994), (83022, 286, 20022), (83023, 286, 20033), (83024, 286, 20038), (83025, 286, 20095), (83026, 286, 20108), (83027, 286, 20135), (83028, 286, 20140), (83029, 286, 20146), (83030, 286, 20161), (83031, 286, 20174), (83032, 286, 20185), (83033, 286, 20206), (83034, 286, 20223), (83035, 286, 20237), (83036, 286, 20241), (83037, 286, 20264), (83038, 286, 20273), (83039, 286, 20281), (83040, 286, 20297), (83041, 286, 20334), (83042, 286, 20336), (83043, 286, 20383), (83044, 286, 20416), (83045, 286, 20443), (83046, 286, 20449), (83047, 286, 20475), (83048, 286, 20480), (83049, 286, 20481), (83050, 286, 20508), (83051, 286, 20517), (83052, 286, 20529), (83053, 286, 20562), (83054, 286, 20591), (83055, 286, 20595), (83056, 286, 20602), (83057, 286, 20638), (83058, 286, 20651), (83059, 286, 20673), (83060, 286, 20683), (83061, 286, 20711), (83062, 286, 20725), (83063, 286, 20733), (83064, 286, 20748), (83065, 286, 20757), (83066, 286, 20760), (83067, 286, 20762), (83068, 286, 20765), (83069, 286, 20767), (83070, 286, 20769), (83071, 286, 20776), (83072, 286, 20798), (83073, 286, 20807), (83074, 286, 20814), (83075, 286, 20822), (83076, 286, 20871), (83077, 286, 20889), (83078, 286, 20910), (83079, 286, 20916), (83080, 286, 20937), (83081, 286, 20939), (83082, 286, 20951), (83083, 286, 20964), (83084, 286, 20983), (83085, 286, 20992), (83086, 286, 20996), (83087, 286, 21007), (83088, 286, 21009), (83089, 286, 21011), (83090, 286, 21038), (83091, 286, 21057), (83092, 286, 21058), (83093, 286, 21090), (83094, 286, 21093), (83095, 286, 21099), (83096, 286, 21102), (83097, 286, 21116), (83098, 286, 21117), (83099, 286, 21123), (83100, 286, 21154), (83101, 286, 21162), (83102, 286, 21177), (83103, 286, 21219), (83104, 286, 21233), (83105, 286, 21252), (83106, 286, 21254), (83107, 286, 21261), (83108, 286, 21263), (83109, 286, 21269), (83110, 286, 21278), (83111, 286, 21286), (83112, 286, 21316), (83113, 286, 21391), (83114, 286, 21393), (83115, 286, 21398), (83116, 286, 21400), (83117, 286, 21421), (83118, 286, 21423), (83119, 286, 21431), (83120, 286, 21448), (83121, 286, 21494), (83122, 286, 21498), (83123, 286, 21500), (83124, 286, 21511), (83125, 286, 21520), (83126, 286, 21524), (83127, 286, 21535), (83128, 286, 21539), (83129, 286, 21541), (83130, 286, 21544), (83131, 286, 21546), (83132, 286, 21548), (83133, 286, 21555), (83134, 286, 21556), (83135, 286, 21557), (83136, 286, 21570), (83137, 286, 21574), (83138, 286, 21575), (83139, 286, 21576), (83140, 286, 21601), (83141, 286, 21604), (83142, 286, 21615), (83143, 286, 21619), (83144, 286, 21627), (83145, 286, 21638), (83146, 286, 21639), (83147, 286, 21645), (83148, 286, 21646), (83149, 286, 21647), (83150, 286, 21659), (83151, 286, 21660), (83152, 286, 21675), (83153, 286, 21693), (83154, 286, 21715), (83155, 286, 21718), (83156, 286, 21730), (83157, 286, 21732), (83158, 286, 21740), (83159, 286, 21741), (83160, 286, 21742), (83161, 286, 21776), (83162, 286, 21782), (83163, 286, 21786), (83164, 286, 21803), (83165, 286, 21857), (83166, 286, 21877), (83167, 286, 21883), (83168, 286, 21884), (83169, 286, 21887), (83170, 286, 21911), (83171, 286, 21912), (83172, 286, 21915), (83173, 286, 21952), (83174, 286, 21955), (83175, 286, 21965), (83176, 286, 21980), (83177, 286, 21985), (83178, 286, 21999), (83179, 286, 22003), (83180, 286, 22005), (83181, 286, 22009), (83182, 286, 22019), (83183, 286, 22020), (83184, 286, 22021), (83185, 286, 22029), (83186, 286, 22036), (83187, 286, 22063), (83188, 286, 22067), (83189, 286, 22068), (83190, 286, 22073), (83191, 286, 22082), (83192, 286, 22086), (83193, 286, 22087), (83194, 286, 22103), (83195, 286, 22105), (83196, 286, 22113), (83197, 286, 22135), (83198, 286, 22142), (83199, 286, 22144), (83200, 286, 22145), (83201, 286, 22168), (83202, 286, 22177), (83203, 286, 22195), (83204, 286, 22203), (83205, 286, 22205), (83206, 286, 22216), (83207, 286, 22236), (83208, 286, 22240), (83209, 286, 22255), (83210, 286, 22261), (83211, 286, 22266), (83212, 286, 22278), (83213, 286, 22301), (83214, 286, 22316), (83215, 286, 22320), (83216, 286, 22322), (83217, 286, 22327), (83218, 286, 22330), (83219, 286, 22333), (83220, 286, 22336), (83221, 286, 22339), (83222, 286, 22358), (83223, 286, 22359), (83224, 286, 22364), (83225, 286, 22374), (83226, 286, 22378), (83227, 286, 22387), (83228, 286, 22394), (83229, 286, 22405), (83230, 286, 22416), (83231, 286, 22444), (83232, 286, 22453), (83233, 286, 22459), (83234, 286, 22469), (83235, 286, 22475), (83236, 286, 22476), (83237, 286, 22485), (83238, 286, 22490), (83239, 286, 22494), (83240, 286, 22515), (83241, 286, 22518), (83242, 286, 22520), (83243, 286, 22526), (83244, 286, 22533), (83245, 286, 22544), (83246, 286, 22550), (83247, 286, 22551), (83248, 286, 22555), (83249, 286, 22559), (83250, 286, 22561), (83251, 286, 22596), (83252, 286, 22601), (83253, 286, 22609), (83254, 286, 22629), (83255, 286, 22631), (83256, 286, 22632), (83257, 286, 22634), (83258, 286, 22644), (83259, 286, 22651), (83260, 286, 22652), (83261, 286, 22654), (83262, 286, 22681), (83263, 286, 22698), (83264, 286, 22705), (83265, 286, 22708), (83266, 286, 22710), (83267, 286, 22715), (83268, 286, 22718), (83269, 286, 22719), (83270, 286, 22723), (83271, 286, 22724), (83272, 286, 22744), (83273, 286, 22759), (83274, 286, 22768), (83275, 286, 22778), (83276, 286, 22803), (83277, 286, 22805), (83278, 286, 22807), (83279, 286, 22821), (83280, 286, 22831), (83281, 286, 22833), (83282, 286, 22835), (83283, 286, 22857), (83284, 286, 22858), (83285, 286, 22882), (83286, 286, 22902), (83287, 286, 22912), (83288, 286, 22917), (83289, 286, 22923), (83290, 286, 22924), (83291, 286, 22931), (83292, 286, 22938), (83293, 286, 22941), (83294, 286, 22942), (83295, 286, 22947), (83296, 286, 22955), (83297, 286, 22959), (83298, 286, 22967), (83299, 286, 22971), (83300, 286, 22973), (83301, 286, 22979), (83302, 286, 22981), (83303, 286, 22991), (83304, 286, 22996), (83305, 286, 22997), (83306, 286, 23005), (83307, 286, 23007), (83308, 286, 23026), (83309, 286, 23042), (83310, 286, 23049), (83311, 286, 23067), (83312, 286, 23084), (83313, 286, 23087), (83314, 286, 23089), (83315, 286, 23098), (83316, 286, 23102), (83317, 286, 23103), (83318, 286, 23119), (83319, 286, 23138), (83320, 286, 23145), (83321, 286, 23194), (83322, 286, 23223), (83323, 286, 23229), (83324, 286, 23246), (83325, 286, 23253), (83326, 286, 23270), (83327, 286, 23310), (83328, 286, 23313), (83329, 286, 23318), (83330, 286, 23322), (83331, 286, 23323), (83332, 286, 23332), (83333, 286, 23347), (83334, 286, 23348), (83335, 286, 23349), (83336, 286, 23360), (83337, 286, 23367), (83338, 286, 23373), (83339, 286, 23385), (83340, 286, 23400), (83341, 286, 23420), (83342, 286, 23424), (83343, 286, 23434), (83344, 286, 23453), (83345, 286, 23460), (83346, 286, 23461), (83347, 286, 23466), (83348, 286, 23469), (83349, 286, 23475), (83350, 286, 23484), (83351, 286, 23504), (83352, 286, 23506), (83353, 286, 23507), (83354, 286, 23510), (83355, 286, 23517), (83356, 286, 23536), (83357, 286, 23543), (83358, 286, 23550), (83359, 286, 23552), (83360, 286, 23554), (83361, 286, 23563), (83362, 286, 23568), (83363, 286, 23583), (83364, 286, 23586), (83365, 286, 23590), (83366, 286, 23594), (83367, 286, 23596), (83368, 286, 23598), (83369, 286, 23600), (83370, 286, 23602), (83371, 286, 23610), (83372, 286, 23613), (83373, 286, 23642), (83374, 286, 23646), (83375, 286, 23655), (83376, 286, 23672), (83377, 286, 23679), (83378, 286, 23680), (83379, 286, 23681), (83380, 286, 23686), (83381, 286, 23688), (83382, 286, 23689), (83383, 286, 23695), (83384, 286, 23713), (83385, 286, 23714), (83386, 286, 23715), (83387, 286, 23716), (83388, 286, 23723), (83389, 286, 23755), (83390, 286, 23763), (83391, 286, 23770), (83392, 286, 23776), (83393, 286, 23779), (83394, 286, 23782), (83395, 286, 23793), (83396, 286, 23801), (83397, 286, 23810), (83398, 286, 23817), (83399, 286, 23818), (83400, 286, 23826), (83401, 286, 23829), (83402, 286, 23830), (83403, 286, 23836), (83404, 286, 23841), (83405, 286, 23842), (83406, 286, 23843), (83407, 286, 23849), (83408, 286, 23855), (83409, 286, 23872), (83410, 286, 23875), (83411, 286, 23878), (83412, 286, 23885), (83413, 286, 23893), (83414, 286, 23914), (83415, 286, 23923), (83416, 286, 23935), (83417, 286, 23942), (83418, 286, 23957), (83419, 286, 23988), (83420, 286, 23993), (83421, 286, 24017), (83422, 286, 24019), (83423, 286, 24022), (83424, 286, 24023), (83425, 286, 24025), (83426, 286, 24031), (83427, 286, 24045), (83428, 286, 24047), (83429, 286, 24049), (83430, 286, 24068), (83431, 286, 24070), (83432, 286, 24080), (83433, 286, 24089), (83434, 286, 24090), (83435, 286, 24091), (83436, 286, 24102), (83437, 286, 24103), (83438, 286, 24111), (83439, 286, 24113), (83440, 286, 24120), (83441, 286, 24130), (83442, 286, 24131), (83443, 286, 24146), (83444, 286, 24147), (83445, 286, 24153), (83446, 286, 24154), (83447, 286, 24165), (83448, 286, 24171), (83449, 286, 24174), (83450, 286, 24178), (83451, 286, 24179), (83452, 286, 24180), (83453, 286, 24189), (83454, 286, 24195), (83455, 286, 24199), (83456, 286, 24209), (83457, 286, 24222), (83458, 286, 24237), (83459, 286, 24257), (83460, 286, 24260), (83461, 286, 24282), (83462, 286, 24283), (83463, 286, 24284), (83464, 286, 24294), (83465, 286, 24314), (83466, 286, 24321), (83467, 286, 24325), (83468, 286, 24326), (83469, 286, 24352), (83470, 286, 24369), (83471, 286, 24370), (83472, 286, 24375), (83473, 286, 24379), (83474, 286, 24380), (83475, 286, 24388), (83476, 286, 24389), (83477, 286, 24393), (83478, 286, 24395), (83479, 286, 24404), (83480, 286, 24409), (83481, 286, 24411), (83482, 286, 24416), (83483, 286, 24420), (83484, 286, 24434), (83485, 286, 24443), (83486, 286, 24463), (83487, 286, 24480), (83488, 286, 24481), (83489, 286, 24486), (83490, 286, 24487), (83491, 286, 24495), (83492, 286, 24503), (83493, 286, 24505), (83494, 286, 24507), (83495, 286, 24511), (83496, 286, 24519), (83497, 286, 24524), (83498, 286, 24555), (83499, 286, 24556), (83500, 286, 24560), (83501, 286, 24574), (83502, 286, 24576), (83503, 286, 24583), (83504, 286, 24584), (83505, 286, 24586), (83506, 286, 24594), (83507, 286, 24604), (83508, 286, 24613), (83509, 286, 24624), (83510, 286, 24625), (83511, 286, 24639), (83512, 286, 24646), (83513, 286, 24656), (83514, 286, 24657), (83515, 286, 24673), (83516, 286, 24677), (83517, 286, 24686), (83518, 286, 24689), (83519, 286, 24692), (83520, 286, 24698), (83521, 286, 24699), (83522, 286, 24714), (83523, 286, 24719), (83524, 286, 24724), (83525, 286, 24728), (83526, 286, 24731), (83527, 286, 24739), (83528, 286, 24742), (83529, 286, 24754), (83530, 286, 24755), (83531, 286, 24757), (83532, 286, 24769), (83533, 286, 24770), (83534, 286, 24783), (83535, 286, 24784), (83536, 286, 24790), (83537, 286, 24792), (83538, 286, 24797), (83539, 286, 24798), (83540, 286, 24803), (83541, 286, 24822), (83542, 286, 24832), (83543, 286, 24848), (83544, 286, 24858), (83545, 286, 24871), (83546, 286, 24882), (83547, 286, 24883), (83548, 286, 24893), (83549, 286, 24904), (83550, 286, 24905), (83551, 286, 24907), (83552, 286, 24919), (83553, 286, 24920), (83554, 286, 24924), (83555, 286, 24925), (83556, 286, 24927), (83557, 286, 24940), (83558, 286, 24967), (83559, 286, 24968), (83560, 286, 24971), (83561, 286, 24975), (83562, 286, 24988), (83563, 286, 25031), (83564, 286, 25056), (83565, 286, 25175), (83566, 286, 25178), (83567, 286, 25205), (83568, 286, 25220), (83581, 287, 1015), (83582, 287, 1073), (83583, 287, 1186), (83584, 287, 1430), (83585, 287, 1443), (83586, 287, 1539), (83587, 287, 1834), (83588, 287, 2162), (83589, 287, 2224), (83590, 287, 2514), (83591, 287, 2754), (83592, 287, 2953), (83593, 287, 3361), (83594, 287, 3555), (83595, 287, 3665), (83596, 287, 3970), (83597, 287, 4306), (83598, 287, 4850), (83599, 287, 4886), (83600, 287, 5377), (83601, 287, 5488), (83602, 287, 6135), (83603, 287, 6185), (83604, 287, 6310), (83605, 287, 6971), (83606, 287, 7170), (83607, 287, 8178), (83608, 287, 8408), (83609, 287, 8697), (83610, 287, 8756), (83611, 287, 9151), (83612, 287, 9532), (83613, 287, 10036), (83614, 287, 10398), (83615, 287, 10474), (83616, 287, 10659), (83617, 287, 10859), (83618, 287, 11175), (83619, 287, 11248), (83620, 287, 11483), (83621, 287, 11616), (83622, 287, 11851), (83623, 287, 12127), (83624, 287, 12231), (83625, 287, 13219), (83626, 287, 13245), (83627, 287, 13369), (83628, 287, 13658), (83629, 287, 13715), (83630, 287, 13737), (83631, 287, 13746), (83632, 287, 13878), (83633, 287, 13923), (83634, 287, 13936), (83635, 287, 14042), (83636, 287, 14108), (83637, 287, 14382), (83638, 287, 14458), (83639, 287, 14528), (83640, 287, 14822), (83641, 287, 15272), (83642, 287, 15367), (83643, 287, 15551), (83644, 287, 15754), (83645, 287, 15849), (83646, 287, 15877), (83647, 287, 15933), (83648, 287, 16134), (83649, 287, 16167), (83650, 287, 16593), (83651, 287, 16653), (83652, 287, 16667), (83653, 287, 17125), (83654, 287, 17501), (83655, 287, 17689), (83656, 287, 17831), (83657, 287, 18043), (83658, 287, 18286), (83659, 287, 18660), (83660, 287, 18949), (83661, 287, 19108), (83662, 287, 19404), (83663, 287, 19455), (83664, 287, 20329), (83665, 287, 20604), (83666, 287, 20741), (83667, 287, 20807), (83668, 287, 21048), (83669, 287, 21162), (83670, 287, 21166), (83671, 287, 21295), (83672, 287, 21421), (83673, 287, 21515), (83674, 287, 21575), (83675, 287, 21732), (83676, 287, 21815), (83677, 287, 21856), (83678, 287, 21879), (83679, 287, 21917), (83680, 287, 21988), (83681, 287, 22108), (83682, 287, 22775), (83683, 287, 22923), (83684, 287, 23484), (83685, 287, 23618), (83708, 288, 59), (83709, 288, 155), (83710, 288, 173), (83711, 288, 218), (83712, 288, 259), (83713, 288, 309), (83714, 288, 323), (83715, 288, 347), (83716, 288, 371), (83717, 288, 381), (83718, 288, 401), (83719, 288, 411), (83720, 288, 423), (83721, 288, 446), (83722, 288, 447), (83723, 288, 451), (83724, 288, 462), (83725, 288, 463), (83726, 288, 510), (83727, 288, 513), (83728, 288, 535), (83729, 288, 557), (83730, 288, 561), (83731, 288, 578), (83732, 288, 596), (83733, 288, 605), (83734, 288, 606), (83735, 288, 615), (83736, 288, 627), (83737, 288, 639), (83738, 288, 703), (83739, 288, 708), (83740, 288, 736), (83741, 288, 756), (83742, 288, 772), (83743, 288, 785), (83744, 288, 800), (83745, 288, 859), (83746, 288, 878), (83747, 288, 880), (83748, 288, 882), (83749, 288, 884), (83750, 288, 898), (83751, 288, 901), (83752, 288, 906), (83753, 288, 915), (83754, 288, 924), (83755, 288, 926), (83756, 288, 964), (83757, 288, 1011), (83758, 288, 1015), (83759, 288, 1084), (83760, 288, 1107), (83761, 288, 1115), (83762, 288, 1131), (83763, 288, 1133), (83764, 288, 1135), (83765, 288, 1167), (83766, 288, 1179), (83767, 288, 1182), (83768, 288, 1192), (83769, 288, 1201), (83770, 288, 1203), (83771, 288, 1224), (83772, 288, 1240), (83773, 288, 1264), (83774, 288, 1275), (83775, 288, 1285), (83776, 288, 1299), (83777, 288, 1344), (83778, 288, 1380), (83779, 288, 1400), (83780, 288, 1428), (83781, 288, 1434), (83782, 288, 1464), (83783, 288, 1484), (83784, 288, 1516), (83785, 288, 1539), (83786, 288, 1563), (83787, 288, 1577), (83788, 288, 1597), (83789, 288, 1601), (83790, 288, 1609), (83791, 288, 1619), (83792, 288, 1625), (83793, 288, 1638), (83794, 288, 1642), (83795, 288, 1658), (83796, 288, 1686), (83797, 288, 1692), (83798, 288, 1700), (83799, 288, 1705), (83800, 288, 1715), (83801, 288, 1727), (83802, 288, 1728), (83803, 288, 1751), (83804, 288, 1787), (83805, 288, 1816), (83806, 288, 1833), (83807, 288, 1835), (83808, 288, 1848), (83809, 288, 1854), (83810, 288, 1855), (83811, 288, 1871), (83812, 288, 1879), (83813, 288, 1883), (83814, 288, 1912), (83815, 288, 1919), (83816, 288, 1939), (83817, 288, 2016), (83818, 288, 2026), (83819, 288, 2070), (83820, 288, 2071), (83821, 288, 2081), (83822, 288, 2087), (83823, 288, 2097), (83824, 288, 2106), (83825, 288, 2127), (83826, 288, 2131), (83827, 288, 2139), (83828, 288, 2147), (83829, 288, 2167), (83830, 288, 2186), (83831, 288, 2190), (83832, 288, 2211), (83833, 288, 2213), (83834, 288, 2234), (83835, 288, 2238), (83836, 288, 2242), (83837, 288, 2244), (83838, 288, 2300), (83839, 288, 2320), (83840, 288, 2353), (83841, 288, 2412), (83842, 288, 2449), (83843, 288, 2460), (83844, 288, 2488), (83845, 288, 2500), (83846, 288, 2506), (83847, 288, 2507), (83848, 288, 2514), (83849, 288, 2521), (83850, 288, 2532), (83851, 288, 2586), (83852, 288, 2615), (83853, 288, 2663), (83854, 288, 2665), (83855, 288, 2721), (83856, 288, 2747), (83857, 288, 2755), (83858, 288, 2811), (83859, 288, 2814), (83860, 288, 2853), (83861, 288, 2861), (83862, 288, 2862), (83863, 288, 2880), (83864, 288, 2916), (83865, 288, 2959), (83866, 288, 2983), (83867, 288, 2985), (83868, 288, 3009), (83869, 288, 3030), (83870, 288, 3045), (83871, 288, 3077), (83872, 288, 3096), (83873, 288, 3135), (83874, 288, 3139), (83875, 288, 3142), (83876, 288, 3167), (83877, 288, 3174), (83878, 288, 3176), (83879, 288, 3189), (83880, 288, 3201), (83881, 288, 3211), (83882, 288, 3226), (83883, 288, 3237), (83884, 288, 3238), (83885, 288, 3245), (83886, 288, 3274), (83887, 288, 3298), (83888, 288, 3310), (83889, 288, 3321), (83890, 288, 3365), (83891, 288, 3367), (83892, 288, 3388), (83893, 288, 3408), (83894, 288, 3418), (83895, 288, 3437), (83896, 288, 3465), (83897, 288, 3500), (83898, 288, 3510), (83899, 288, 3518), (83900, 288, 3523), (83901, 288, 3536), (83902, 288, 3563), (83903, 288, 3608), (83904, 288, 3621), (83905, 288, 3627), (83906, 288, 3634), (83907, 288, 3638), (83908, 288, 3653), (83909, 288, 3662), (83910, 288, 3705), (83911, 288, 3726), (83912, 288, 3776), (83913, 288, 3780), (83914, 288, 3795), (83915, 288, 3805), (83916, 288, 3812), (83917, 288, 3833), (83918, 288, 3837), (83919, 288, 3842), (83920, 288, 3844), (83921, 288, 3873), (83922, 288, 3912), (83923, 288, 3917), (83924, 288, 3936), (83925, 288, 3956), (83926, 288, 3963), (83927, 288, 3970), (83928, 288, 3972), (83929, 288, 3991), (83930, 288, 3999), (83931, 288, 4005), (83932, 288, 4012), (83933, 288, 4020), (83934, 288, 4034), (83935, 288, 4046), (83936, 288, 4056), (83937, 288, 4070), (83938, 288, 4083), (83939, 288, 4094), (83940, 288, 4115), (83941, 288, 4134), (83942, 288, 4156), (83943, 288, 4161), (83944, 288, 4183), (83945, 288, 4184), (83946, 288, 4214), (83947, 288, 4235), (83948, 288, 4289), (83949, 288, 4296), (83950, 288, 4297), (83951, 288, 4303), (83952, 288, 4305), (83953, 288, 4325), (83954, 288, 4327), (83955, 288, 4343), (83956, 288, 4348), (83957, 288, 4353), (83958, 288, 4366), (83959, 288, 4378), (83960, 288, 4405), (83961, 288, 4428), (83962, 288, 4448), (83963, 288, 4471), (83964, 288, 4472), (83965, 288, 4488), (83966, 288, 4501), (83967, 288, 4505), (83968, 288, 4512), (83969, 288, 4547), (83970, 288, 4551), (83971, 288, 4559), (83972, 288, 4561), (83973, 288, 4577), (83974, 288, 4595), (83975, 288, 4650), (83976, 288, 4652), (83977, 288, 4670), (83978, 288, 4709), (83979, 288, 4720), (83980, 288, 4764), (83981, 288, 4776), (83982, 288, 4791), (83983, 288, 4794), (83984, 288, 4800), (83985, 288, 4824), (83986, 288, 4850), (83987, 288, 4886), (83988, 288, 4898), (83989, 288, 4964), (83990, 288, 4981), (83991, 288, 5026), (83992, 288, 5049), (83993, 288, 5064), (83994, 288, 5072), (83995, 288, 5073), (83996, 288, 5090), (83997, 288, 5111), (83998, 288, 5116), (83999, 288, 5117), (84000, 288, 5133), (84001, 288, 5160), (84002, 288, 5164), (84003, 288, 5174), (84004, 288, 5182), (84005, 288, 5189), (84006, 288, 5197), (84007, 288, 5210), (84008, 288, 5211), (84009, 288, 5234), (84010, 288, 5250), (84011, 288, 5286), (84012, 288, 5292), (84013, 288, 5298), (84014, 288, 5302), (84015, 288, 5322), (84016, 288, 5348), (84017, 288, 5361), (84018, 288, 5362), (84019, 288, 5374), (84020, 288, 5384), (84021, 288, 5418), (84022, 288, 5451), (84023, 288, 5452), (84024, 288, 5461), (84025, 288, 5474), (84026, 288, 5476), (84027, 288, 5488), (84028, 288, 5513), (84029, 288, 5556), (84030, 288, 5575), (84031, 288, 5582), (84032, 288, 5592), (84033, 288, 5594), (84034, 288, 5603), (84035, 288, 5609), (84036, 288, 5625), (84037, 288, 5672), (84038, 288, 5677), (84039, 288, 5690), (84040, 288, 5753), (84041, 288, 5764), (84042, 288, 5781), (84043, 288, 5785), (84044, 288, 5810), (84045, 288, 5812), (84046, 288, 5819), (84047, 288, 5823), (84048, 288, 5839), (84049, 288, 5862), (84050, 288, 5883), (84051, 288, 5898), (84052, 288, 5903), (84053, 288, 5927), (84054, 288, 5928), (84055, 288, 5979), (84056, 288, 5993), (84057, 288, 6024), (84058, 288, 6042), (84059, 288, 6068), (84060, 288, 6072), (84061, 288, 6135), (84062, 288, 6146), (84063, 288, 6154), (84064, 288, 6174), (84065, 288, 6178), (84066, 288, 6185), (84067, 288, 6203), (84068, 288, 6205), (84069, 288, 6206), (84070, 288, 6229), (84071, 288, 6257), (84072, 288, 6263), (84073, 288, 6274), (84074, 288, 6304), (84075, 288, 6322), (84076, 288, 6323), (84077, 288, 6325), (84078, 288, 6354), (84079, 288, 6368), (84080, 288, 6377), (84081, 288, 6412), (84082, 288, 6423), (84083, 288, 6439), (84084, 288, 6460), (84085, 288, 6472), (84086, 288, 6476), (84087, 288, 6482), (84088, 288, 6509), (84089, 288, 6535), (84090, 288, 6553), (84091, 288, 6598), (84092, 288, 6661), (84093, 288, 6670), (84094, 288, 6671), (84095, 288, 6677), (84096, 288, 6700), (84097, 288, 6723), (84098, 288, 6730), (84099, 288, 6738), (84100, 288, 6740), (84101, 288, 6747), (84102, 288, 6769), (84103, 288, 6800), (84104, 288, 6827), (84105, 288, 6852), (84106, 288, 6873), (84107, 288, 6881), (84108, 288, 6909), (84109, 288, 6921), (84110, 288, 6978), (84111, 288, 6983), (84112, 288, 6996), (84113, 288, 7009), (84114, 288, 7016), (84115, 288, 7023), (84116, 288, 7025), (84117, 288, 7042), (84118, 288, 7056), (84119, 288, 7071), (84120, 288, 7133), (84121, 288, 7137), (84122, 288, 7147), (84123, 288, 7148), (84124, 288, 7174), (84125, 288, 7240), (84126, 288, 7245), (84127, 288, 7272), (84128, 288, 7273), (84129, 288, 7282), (84130, 288, 7283), (84131, 288, 7311), (84132, 288, 7338), (84133, 288, 7349), (84134, 288, 7374), (84135, 288, 7376), (84136, 288, 7387), (84137, 288, 7428), (84138, 288, 7470), (84139, 288, 7472), (84140, 288, 7488), (84141, 288, 7504), (84142, 288, 7516), (84143, 288, 7527), (84144, 288, 7531), (84145, 288, 7553), (84146, 288, 7555), (84147, 288, 7591), (84148, 288, 7593), (84149, 288, 7602), (84150, 288, 7623), (84151, 288, 7663), (84152, 288, 7715), (84153, 288, 7812), (84154, 288, 7820), (84155, 288, 7846), (84156, 288, 7870), (84157, 288, 7892), (84158, 288, 7898), (84159, 288, 7900), (84160, 288, 7917), (84161, 288, 7920), (84162, 288, 7955), (84163, 288, 7976), (84164, 288, 8005), (84165, 288, 8027), (84166, 288, 8033), (84167, 288, 8056), (84168, 288, 8063), (84169, 288, 8090), (84170, 288, 8096), (84171, 288, 8097), (84172, 288, 8107), (84173, 288, 8112), (84174, 288, 8126), (84175, 288, 8135), (84176, 288, 8147), (84177, 288, 8163), (84178, 288, 8197), (84179, 288, 8201), (84180, 288, 8239), (84181, 288, 8242), (84182, 288, 8262), (84183, 288, 8281), (84184, 288, 8297), (84185, 288, 8312), (84186, 288, 8314), (84187, 288, 8317), (84188, 288, 8334), (84189, 288, 8345), (84190, 288, 8350), (84191, 288, 8356), (84192, 288, 8376), (84193, 288, 8388), (84194, 288, 8418), (84195, 288, 8428), (84196, 288, 8431), (84197, 288, 8436), (84198, 288, 8451), (84199, 288, 8453), (84200, 288, 8457), (84201, 288, 8458), (84202, 288, 8486), (84203, 288, 8580), (84204, 288, 8601), (84205, 288, 8615), (84206, 288, 8618), (84207, 288, 8626), (84208, 288, 8647), (84209, 288, 8665), (84210, 288, 8682), (84211, 288, 8706), (84212, 288, 8717), (84213, 288, 8720), (84214, 288, 8723), (84215, 288, 8733), (84216, 288, 8766), (84217, 288, 8784), (84218, 288, 8810), (84219, 288, 8850), (84220, 288, 8853), (84221, 288, 8862), (84222, 288, 8875), (84223, 288, 8884), (84224, 288, 8888), (84225, 288, 8897), (84226, 288, 8905), (84227, 288, 8920), (84228, 288, 8939), (84229, 288, 8953), (84230, 288, 8981), (84231, 288, 9005), (84232, 288, 9026), (84233, 288, 9081), (84234, 288, 9127), (84235, 288, 9144), (84236, 288, 9146), (84237, 288, 9153), (84238, 288, 9160), (84239, 288, 9172), (84240, 288, 9182), (84241, 288, 9205), (84242, 288, 9207), (84243, 288, 9210), (84244, 288, 9228), (84245, 288, 9229), (84246, 288, 9236), (84247, 288, 9239), (84248, 288, 9256), (84249, 288, 9292), (84250, 288, 9321), (84251, 288, 9328), (84252, 288, 9360), (84253, 288, 9377), (84254, 288, 9383), (84255, 288, 9428), (84256, 288, 9436), (84257, 288, 9437), (84258, 288, 9449), (84259, 288, 9453), (84260, 288, 9457), (84261, 288, 9466), (84262, 288, 9479), (84263, 288, 9481), (84264, 288, 9511), (84265, 288, 9526), (84266, 288, 9540), (84267, 288, 9546), (84268, 288, 9583), (84269, 288, 9586), (84270, 288, 9606), (84271, 288, 9622), (84272, 288, 9627), (84273, 288, 9668), (84274, 288, 9681), (84275, 288, 9683), (84276, 288, 9687), (84277, 288, 9741), (84278, 288, 9840), (84279, 288, 9870), (84280, 288, 9882), (84281, 288, 9886), (84282, 288, 9912), (84283, 288, 9944), (84284, 288, 9980), (84285, 288, 9987), (84286, 288, 9997), (84287, 288, 9998), (84288, 288, 10001), (84289, 288, 10003), (84290, 288, 10004), (84291, 288, 10009), (84292, 288, 10011), (84293, 288, 10040), (84294, 288, 10044), (84295, 288, 10046), (84296, 288, 10074), (84297, 288, 10110), (84298, 288, 10117), (84299, 288, 10136), (84300, 288, 10191), (84301, 288, 10197), (84302, 288, 10199), (84303, 288, 10220), (84304, 288, 10221), (84305, 288, 10229), (84306, 288, 10318), (84307, 288, 10323), (84308, 288, 10326), (84309, 288, 10333), (84310, 288, 10339), (84311, 288, 10350), (84312, 288, 10359), (84313, 288, 10378), (84314, 288, 10398), (84315, 288, 10409), (84316, 288, 10424), (84317, 288, 10486), (84318, 288, 10496), (84319, 288, 10499), (84320, 288, 10539), (84321, 288, 10545), (84322, 288, 10569), (84323, 288, 10600), (84324, 288, 10601), (84325, 288, 10618), (84326, 288, 10631), (84327, 288, 10691), (84328, 288, 10703), (84329, 288, 10722), (84330, 288, 10730), (84331, 288, 10745), (84332, 288, 10746), (84333, 288, 10747), (84334, 288, 10801), (84335, 288, 10822), (84336, 288, 10890), (84337, 288, 10898), (84338, 288, 10926), (84339, 288, 10935), (84340, 288, 10947), (84341, 288, 10948), (84342, 288, 10975), (84343, 288, 11003), (84344, 288, 11017), (84345, 288, 11023), (84346, 288, 11058), (84347, 288, 11072), (84348, 288, 11122), (84349, 288, 11128), (84350, 288, 11219), (84351, 288, 11225), (84352, 288, 11241), (84353, 288, 11273), (84354, 288, 11313), (84355, 288, 11336), (84356, 288, 11361), (84357, 288, 11372), (84358, 288, 11388), (84359, 288, 11456), (84360, 288, 11478), (84361, 288, 11517), (84362, 288, 11550), (84363, 288, 11587), (84364, 288, 11600), (84365, 288, 11611), (84366, 288, 11616), (84367, 288, 11625), (84368, 288, 11682), (84369, 288, 11688), (84370, 288, 11690), (84371, 288, 11721), (84372, 288, 11756), (84373, 288, 11765), (84374, 288, 11776), (84375, 288, 11799), (84376, 288, 11835), (84377, 288, 11868), (84378, 288, 11888), (84379, 288, 11898), (84380, 288, 11924), (84381, 288, 11934), (84382, 288, 11965), (84383, 288, 11989), (84384, 288, 11999), (84385, 288, 12012), (84386, 288, 12046), (84387, 288, 12049), (84388, 288, 12063), (84389, 288, 12079), (84390, 288, 12081), (84391, 288, 12103), (84392, 288, 12122), (84393, 288, 12128), (84394, 288, 12143), (84395, 288, 12169), (84396, 288, 12172), (84397, 288, 12178), (84398, 288, 12179), (84399, 288, 12182), (84400, 288, 12190), (84401, 288, 12203), (84402, 288, 12209), (84403, 288, 12211), (84404, 288, 12214), (84405, 288, 12231), (84406, 288, 12233), (84407, 288, 12315), (84408, 288, 12318), (84409, 288, 12343), (84410, 288, 12346), (84411, 288, 12369), (84412, 288, 12371), (84413, 288, 12394), (84414, 288, 12397), (84415, 288, 12412), (84416, 288, 12442), (84417, 288, 12444), (84418, 288, 12508), (84419, 288, 12509), (84420, 288, 12531), (84421, 288, 12540), (84422, 288, 12580), (84423, 288, 12608), (84424, 288, 12627), (84425, 288, 12721), (84426, 288, 12725), (84427, 288, 12741), (84428, 288, 12765), (84429, 288, 12804), (84430, 288, 12822), (84431, 288, 12849), (84432, 288, 12857), (84433, 288, 12860), (84434, 288, 12877), (84435, 288, 12902), (84436, 288, 12912), (84437, 288, 12983), (84438, 288, 13020), (84439, 288, 13030), (84440, 288, 13039), (84441, 288, 13047), (84442, 288, 13070), (84443, 288, 13077), (84444, 288, 13108), (84445, 288, 13112), (84446, 288, 13144), (84447, 288, 13170), (84448, 288, 13172), (84449, 288, 13202), (84450, 288, 13213), (84451, 288, 13225), (84452, 288, 13237), (84453, 288, 13251), (84454, 288, 13269), (84455, 288, 13306), (84456, 288, 13363), (84457, 288, 13369), (84458, 288, 13410), (84459, 288, 13412), (84460, 288, 13414), (84461, 288, 13418), (84462, 288, 13434), (84463, 288, 13509), (84464, 288, 13518), (84465, 288, 13546), (84466, 288, 13550), (84467, 288, 13600), (84468, 288, 13607), (84469, 288, 13609), (84470, 288, 13639), (84471, 288, 13683), (84472, 288, 13690), (84473, 288, 13696), (84474, 288, 13725), (84475, 288, 13727), (84476, 288, 13740), (84477, 288, 13795), (84478, 288, 13796), (84479, 288, 13799), (84480, 288, 13813), (84481, 288, 13861), (84482, 288, 13865), (84483, 288, 13876), (84484, 288, 13878), (84485, 288, 13881), (84486, 288, 13883), (84487, 288, 13888), (84488, 288, 13908), (84489, 288, 13914), (84490, 288, 13922), (84491, 288, 14015), (84492, 288, 14030), (84493, 288, 14063), (84494, 288, 14079), (84495, 288, 14082), (84496, 288, 14117), (84497, 288, 14119), (84498, 288, 14142), (84499, 288, 14144), (84500, 288, 14159), (84501, 288, 14212), (84502, 288, 14267), (84503, 288, 14286), (84504, 288, 14293), (84505, 288, 14297), (84506, 288, 14300), (84507, 288, 14313), (84508, 288, 14329), (84509, 288, 14336), (84510, 288, 14337), (84511, 288, 14351), (84512, 288, 14382), (84513, 288, 14429), (84514, 288, 14449), (84515, 288, 14458), (84516, 288, 14473), (84517, 288, 14476), (84518, 288, 14485), (84519, 288, 14498), (84520, 288, 14523), (84521, 288, 14528), (84522, 288, 14557), (84523, 288, 14588), (84524, 288, 14637), (84525, 288, 14699), (84526, 288, 14700), (84527, 288, 14703), (84528, 288, 14707), (84529, 288, 14764), (84530, 288, 14770), (84531, 288, 14804), (84532, 288, 14840), (84533, 288, 14844), (84534, 288, 14860), (84535, 288, 14871), (84536, 288, 14873), (84537, 288, 14886), (84538, 288, 14924), (84539, 288, 14931), (84540, 288, 14965), (84541, 288, 14984), (84542, 288, 15052), (84543, 288, 15055), (84544, 288, 15059), (84545, 288, 15069), (84546, 288, 15082), (84547, 288, 15110), (84548, 288, 15122), (84549, 288, 15126), (84550, 288, 15156), (84551, 288, 15193), (84552, 288, 15232), (84553, 288, 15271), (84554, 288, 15272), (84555, 288, 15277), (84556, 288, 15298), (84557, 288, 15315), (84558, 288, 15330), (84559, 288, 15359), (84560, 288, 15405), (84561, 288, 15420), (84562, 288, 15449), (84563, 288, 15459), (84564, 288, 15465), (84565, 288, 15475), (84566, 288, 15531), (84567, 288, 15539), (84568, 288, 15563), (84569, 288, 15575), (84570, 288, 15613), (84571, 288, 15644), (84572, 288, 15645), (84573, 288, 15675), (84574, 288, 15678), (84575, 288, 15681), (84576, 288, 15688), (84577, 288, 15694), (84578, 288, 15701), (84579, 288, 15709), (84580, 288, 15714), (84581, 288, 15723), (84582, 288, 15734), (84583, 288, 15741), (84584, 288, 15754), (84585, 288, 15766), (84586, 288, 15779), (84587, 288, 15788), (84588, 288, 15795), (84589, 288, 15809), (84590, 288, 15819), (84591, 288, 15825), (84592, 288, 15839), (84593, 288, 15873), (84594, 288, 15877), (84595, 288, 15891), (84596, 288, 15897), (84597, 288, 15898), (84598, 288, 15901), (84599, 288, 15933), (84600, 288, 15978), (84601, 288, 16005), (84602, 288, 16075), (84603, 288, 16123), (84604, 288, 16143), (84605, 288, 16171), (84606, 288, 16175), (84607, 288, 16199), (84608, 288, 16214), (84609, 288, 16245), (84610, 288, 16302), (84611, 288, 16323), (84612, 288, 16351), (84613, 288, 16357), (84614, 288, 16394), (84615, 288, 16402), (84616, 288, 16427), (84617, 288, 16444), (84618, 288, 16450), (84619, 288, 16493), (84620, 288, 16497), (84621, 288, 16516), (84622, 288, 16539), (84623, 288, 16540), (84624, 288, 16573), (84625, 288, 16574), (84626, 288, 16576), (84627, 288, 16638), (84628, 288, 16642), (84629, 288, 16653), (84630, 288, 16677), (84631, 288, 16683), (84632, 288, 16711), (84633, 288, 16763), (84634, 288, 16783), (84635, 288, 16817), (84636, 288, 16866), (84637, 288, 16888), (84638, 288, 16925), (84639, 288, 16928), (84640, 288, 16969), (84641, 288, 16975), (84642, 288, 17020), (84643, 288, 17056), (84644, 288, 17066), (84645, 288, 17074), (84646, 288, 17076), (84647, 288, 17111), (84648, 288, 17125), (84649, 288, 17154), (84650, 288, 17164), (84651, 288, 17173), (84652, 288, 17178), (84653, 288, 17243), (84654, 288, 17253), (84655, 288, 17288), (84656, 288, 17293), (84657, 288, 17311), (84658, 288, 17324), (84659, 288, 17367), (84660, 288, 17393), (84661, 288, 17410), (84662, 288, 17422), (84663, 288, 17430), (84664, 288, 17437), (84665, 288, 17439), (84666, 288, 17451), (84667, 288, 17455), (84668, 288, 17476), (84669, 288, 17481), (84670, 288, 17485), (84671, 288, 17529), (84672, 288, 17632), (84673, 288, 17643), (84674, 288, 17651), (84675, 288, 17698), (84676, 288, 17716), (84677, 288, 17721), (84678, 288, 17775), (84679, 288, 17781), (84680, 288, 17785), (84681, 288, 17790), (84682, 288, 17792), (84683, 288, 17793), (84684, 288, 17795), (84685, 288, 17811), (84686, 288, 17848), (84687, 288, 17849), (84688, 288, 17865), (84689, 288, 17896), (84690, 288, 17926), (84691, 288, 18005), (84692, 288, 18041), (84693, 288, 18060), (84694, 288, 18065), (84695, 288, 18133), (84696, 288, 18161), (84697, 288, 18175), (84698, 288, 18184), (84699, 288, 18210), (84700, 288, 18215), (84701, 288, 18235), (84702, 288, 18246), (84703, 288, 18254), (84704, 288, 18278), (84705, 288, 18298), (84706, 288, 18299), (84707, 288, 18313), (84708, 288, 18354), (84709, 288, 18361), (84710, 288, 18407), (84711, 288, 18414), (84712, 288, 18418), (84713, 288, 18419), (84714, 288, 18424), (84715, 288, 18432), (84716, 288, 18433), (84717, 288, 18443), (84718, 288, 18448), (84719, 288, 18455), (84720, 288, 18532), (84721, 288, 18604), (84722, 288, 18621), (84723, 288, 18646), (84724, 288, 18660), (84725, 288, 18743), (84726, 288, 18758), (84727, 288, 18760), (84728, 288, 18762), (84729, 288, 18774), (84730, 288, 18776), (84731, 288, 18792), (84732, 288, 18838), (84733, 288, 18843), (84734, 288, 18850), (84735, 288, 18888), (84736, 288, 18896), (84737, 288, 18918), (84738, 288, 18920), (84739, 288, 18949), (84740, 288, 18966), (84741, 288, 18979), (84742, 288, 18986), (84743, 288, 19012), (84744, 288, 19014), (84745, 288, 19016), (84746, 288, 19055), (84747, 288, 19079), (84748, 288, 19080), (84749, 288, 19096), (84750, 288, 19107), (84751, 288, 19111), (84752, 288, 19131), (84753, 288, 19159), (84754, 288, 19176), (84755, 288, 19206), (84756, 288, 19211), (84757, 288, 19223), (84758, 288, 19236), (84759, 288, 19241), (84760, 288, 19242), (84761, 288, 19248), (84762, 288, 19311), (84763, 288, 19321), (84764, 288, 19356), (84765, 288, 19404), (84766, 288, 19412), (84767, 288, 19435), (84768, 288, 19472), (84769, 288, 19479), (84770, 288, 19483), (84771, 288, 19495), (84772, 288, 19497), (84773, 288, 19504), (84774, 288, 19508), (84775, 288, 19519), (84776, 288, 19521), (84777, 288, 19551), (84778, 288, 19552), (84779, 288, 19577), (84780, 288, 19590), (84781, 288, 19600), (84782, 288, 19601), (84783, 288, 19628), (84784, 288, 19634), (84785, 288, 19649), (84786, 288, 19654), (84787, 288, 19677), (84788, 288, 19700), (84789, 288, 19731), (84790, 288, 19763), (84791, 288, 19802), (84792, 288, 19809), (84793, 288, 19846), (84794, 288, 19848), (84795, 288, 19854), (84796, 288, 19855), (84797, 288, 19866), (84798, 288, 19902), (84799, 288, 19912), (84800, 288, 19967), (84801, 288, 19975), (84802, 288, 20013), (84803, 288, 20024), (84804, 288, 20055), (84805, 288, 20072), (84806, 288, 20194), (84807, 288, 20201), (84808, 288, 20234), (84809, 288, 20242), (84810, 288, 20279), (84811, 288, 20281), (84812, 288, 20294), (84813, 288, 20335), (84814, 288, 20364), (84815, 288, 20386), (84816, 288, 20394), (84817, 288, 20404), (84818, 288, 20427), (84819, 288, 20506), (84820, 288, 20527), (84821, 288, 20556), (84822, 288, 20557), (84823, 288, 20592), (84824, 288, 20609), (84825, 288, 20672), (84826, 288, 20701), (84827, 288, 20728), (84828, 288, 20742), (84829, 288, 20766), (84830, 288, 20862), (84831, 288, 20875), (84832, 288, 20880), (84833, 288, 20881), (84834, 288, 20909), (84835, 288, 20985), (84836, 288, 21075), (84837, 288, 21083), (84838, 288, 21132), (84839, 288, 21186), (84840, 288, 21194), (84841, 288, 21215), (84842, 288, 21218), (84843, 288, 21226), (84844, 288, 21232), (84845, 288, 21268), (84846, 288, 21295), (84847, 288, 21300), (84848, 288, 21342), (84849, 288, 21374), (84850, 288, 21423), (84851, 288, 21427), (84852, 288, 21467), (84853, 288, 21494), (84854, 288, 21500), (84855, 288, 21517), (84856, 288, 21602), (84857, 288, 21711), (84858, 288, 21795), (84859, 288, 21856), (84860, 288, 21870), (84861, 288, 21879), (84862, 288, 21880), (84863, 288, 21917), (84864, 288, 21933), (84865, 288, 21970), (84866, 288, 21978), (84867, 288, 21988), (84868, 288, 22020), (84869, 288, 22022), (84870, 288, 22048), (84871, 288, 22062), (84872, 288, 22138), (84873, 288, 22139), (84874, 288, 22150), (84875, 288, 22152), (84876, 288, 22169), (84877, 288, 22237), (84878, 288, 22261), (84879, 288, 22262), (84880, 288, 22285), (84881, 288, 22319), (84882, 288, 22327), (84883, 288, 22376), (84884, 288, 22425), (84885, 288, 22461), (84886, 288, 22470), (84887, 288, 22472), (84888, 288, 22509), (84889, 288, 22536), (84890, 288, 22560), (84891, 288, 22583), (84892, 288, 22653), (84893, 288, 22684), (84894, 288, 22706), (84895, 288, 22715), (84896, 288, 22716), (84897, 288, 22731), (84898, 288, 22738), (84899, 288, 22743), (84900, 288, 22746), (84901, 288, 22765), (84902, 288, 22828), (84903, 288, 22869), (84904, 288, 22886), (84905, 288, 22907), (84906, 288, 22915), (84907, 288, 22946), (84908, 288, 22984), (84909, 288, 22985), (84910, 288, 23005), (84911, 288, 23052), (84912, 288, 23067), (84913, 288, 23082), (84914, 288, 23096), (84915, 288, 23107), (84916, 288, 23128), (84917, 288, 23140), (84918, 288, 23142), (84919, 288, 23161), (84920, 288, 23181), (84921, 288, 23184), (84922, 288, 23202), (84923, 288, 23208), (84924, 288, 23218), (84925, 288, 23250), (84926, 288, 23363), (84927, 288, 23430), (84928, 288, 23469), (84929, 288, 23472), (84930, 288, 23484), (84931, 288, 23514), (84932, 288, 23516), (84933, 288, 23524), (84934, 288, 23558), (84935, 288, 23572), (84936, 288, 23618), (84937, 288, 23620), (84938, 288, 23634), (84939, 288, 23659), (84940, 288, 23698), (84941, 288, 23731), (84942, 288, 23748), (84943, 288, 23749), (84944, 288, 23750), (84945, 288, 23757), (84946, 288, 23783), (84947, 288, 23785), (84948, 288, 23787), (84949, 288, 23788), (84950, 288, 23889), (84951, 288, 23901), (84952, 288, 23910), (84953, 288, 23981), (84954, 288, 24001), (84955, 288, 24092), (84956, 288, 24165), (84957, 288, 24181), (84958, 288, 24200), (84959, 288, 24210), (84960, 288, 24339), (84961, 288, 24353), (84962, 288, 24397), (84963, 288, 24472), (84964, 288, 24605), (84965, 288, 24653), (84966, 288, 24654), (84967, 288, 24766), (84968, 288, 24829), (84969, 288, 24913), (84970, 288, 25028), (84971, 288, 25047), (84972, 288, 25051), (84973, 288, 25054), (84974, 288, 25091), (84975, 288, 25136), (84976, 288, 25137), (84977, 288, 25205), (84978, 288, 25207), (85755, 289, 206), (85756, 289, 218), (85757, 289, 371), (85758, 289, 392), (85759, 289, 411), (85760, 289, 446), (85761, 289, 447), (85762, 289, 451), (85763, 289, 453), (85764, 289, 462), (85765, 289, 477), (85766, 289, 501), (85767, 289, 516), (85768, 289, 520), (85769, 289, 534), (85770, 289, 547), (85771, 289, 557), (85772, 289, 559), (85773, 289, 579), (85774, 289, 582), (85775, 289, 596), (85776, 289, 605), (85777, 289, 607), (85778, 289, 608), (85779, 289, 615), (85780, 289, 621), (85781, 289, 627), (85782, 289, 670), (85783, 289, 674), (85784, 289, 703), (85785, 289, 740), (85786, 289, 756), (85787, 289, 758), (85788, 289, 827), (85789, 289, 848), (85790, 289, 859), (85791, 289, 882), (85792, 289, 884), (85793, 289, 901), (85794, 289, 906), (85795, 289, 946), (85796, 289, 959), (85797, 289, 962), (85798, 289, 1011), (85799, 289, 1015), (85800, 289, 1041), (85801, 289, 1053), (85802, 289, 1084), (85803, 289, 1087), (85804, 289, 1091), (85805, 289, 1096), (85806, 289, 1102), (85807, 289, 1126), (85808, 289, 1127), (85809, 289, 1131), (85810, 289, 1179), (85811, 289, 1182), (85812, 289, 1195), (85813, 289, 1203), (85814, 289, 1240), (85815, 289, 1264), (85816, 289, 1275), (85817, 289, 1281), (85818, 289, 1285), (85819, 289, 1287), (85820, 289, 1299), (85821, 289, 1322), (85822, 289, 1353), (85823, 289, 1389), (85824, 289, 1400), (85825, 289, 1426), (85826, 289, 1428), (85827, 289, 1464), (85828, 289, 1481), (85829, 289, 1514), (85830, 289, 1538), (85831, 289, 1560), (85832, 289, 1563), (85833, 289, 1597), (85834, 289, 1601), (85835, 289, 1605), (85836, 289, 1609), (85837, 289, 1631), (85838, 289, 1658), (85839, 289, 1685), (85840, 289, 1686), (85841, 289, 1699), (85842, 289, 1704), (85843, 289, 1717), (85844, 289, 1739), (85845, 289, 1747), (85846, 289, 1751), (85847, 289, 1753), (85848, 289, 1808), (85849, 289, 1816), (85850, 289, 1831), (85851, 289, 1834), (85852, 289, 1842), (85853, 289, 1844), (85854, 289, 1848), (85855, 289, 1894), (85856, 289, 1911), (85857, 289, 1924), (85858, 289, 1939), (85859, 289, 1991), (85860, 289, 2010), (85861, 289, 2014), (85862, 289, 2071), (85863, 289, 2087), (85864, 289, 2090), (85865, 289, 2097), (85866, 289, 2117), (85867, 289, 2131), (85868, 289, 2139), (85869, 289, 2190), (85870, 289, 2192), (85871, 289, 2211), (85872, 289, 2213), (85873, 289, 2238), (85874, 289, 2248), (85875, 289, 2256), (85876, 289, 2271), (85877, 289, 2298), (85878, 289, 2309), (85879, 289, 2320), (85880, 289, 2329), (85881, 289, 2344), (85882, 289, 2347), (85883, 289, 2385), (85884, 289, 2403), (85885, 289, 2428), (85886, 289, 2449), (85887, 289, 2454), (85888, 289, 2460), (85889, 289, 2504), (85890, 289, 2509), (85891, 289, 2515), (85892, 289, 2520), (85893, 289, 2521), (85894, 289, 2532), (85895, 289, 2565), (85896, 289, 2583), (85897, 289, 2586), (85898, 289, 2606), (85899, 289, 2615), (85900, 289, 2629), (85901, 289, 2631), (85902, 289, 2648), (85903, 289, 2663), (85904, 289, 2698), (85905, 289, 2700), (85906, 289, 2724), (85907, 289, 2733), (85908, 289, 2755), (85909, 289, 2801), (85910, 289, 2815), (85911, 289, 2834), (85912, 289, 2835), (85913, 289, 2853), (85914, 289, 2864), (85915, 289, 2865), (85916, 289, 2867), (85917, 289, 2869), (85918, 289, 2890), (85919, 289, 2900), (85920, 289, 2916), (85921, 289, 2929), (85922, 289, 2947), (85923, 289, 2981), (85924, 289, 2983), (85925, 289, 2990), (85926, 289, 3030), (85927, 289, 3045), (85928, 289, 3054), (85929, 289, 3077), (85930, 289, 3085), (85931, 289, 3096), (85932, 289, 3139), (85933, 289, 3142), (85934, 289, 3145), (85935, 289, 3150), (85936, 289, 3156), (85937, 289, 3160), (85938, 289, 3166), (85939, 289, 3179), (85940, 289, 3195), (85941, 289, 3215), (85942, 289, 3226), (85943, 289, 3228), (85944, 289, 3246), (85945, 289, 3258), (85946, 289, 3260), (85947, 289, 3263), (85948, 289, 3274), (85949, 289, 3298), (85950, 289, 3313), (85951, 289, 3321), (85952, 289, 3333), (85953, 289, 3336), (85954, 289, 3358), (85955, 289, 3363), (85956, 289, 3381), (85957, 289, 3402), (85958, 289, 3418), (85959, 289, 3423), (85960, 289, 3439), (85961, 289, 3458); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (85962, 289, 3477), (85963, 289, 3514), (85964, 289, 3518), (85965, 289, 3521), (85966, 289, 3536), (85967, 289, 3550), (85968, 289, 3564), (85969, 289, 3608), (85970, 289, 3627), (85971, 289, 3634), (85972, 289, 3653), (85973, 289, 3656), (85974, 289, 3657), (85975, 289, 3679), (85976, 289, 3705), (85977, 289, 3713), (85978, 289, 3719), (85979, 289, 3726), (85980, 289, 3740), (85981, 289, 3761), (85982, 289, 3764), (85983, 289, 3795), (85984, 289, 3802), (85985, 289, 3813), (85986, 289, 3834), (85987, 289, 3837), (85988, 289, 3842), (85989, 289, 3844), (85990, 289, 3853), (85991, 289, 3892), (85992, 289, 3909), (85993, 289, 3912), (85994, 289, 3917), (85995, 289, 3923), (85996, 289, 3937), (85997, 289, 3956), (85998, 289, 3959), (85999, 289, 3963), (86000, 289, 3964), (86001, 289, 3965), (86002, 289, 3972), (86003, 289, 3997), (86004, 289, 4007), (86005, 289, 4012), (86006, 289, 4028), (86007, 289, 4034), (86008, 289, 4040), (86009, 289, 4046), (86010, 289, 4056), (86011, 289, 4058), (86012, 289, 4067), (86013, 289, 4083), (86014, 289, 4098), (86015, 289, 4120), (86016, 289, 4132), (86017, 289, 4156), (86018, 289, 4183), (86019, 289, 4201), (86020, 289, 4209), (86021, 289, 4256), (86022, 289, 4295), (86023, 289, 4314), (86024, 289, 4323), (86025, 289, 4327), (86026, 289, 4343), (86027, 289, 4364), (86028, 289, 4378), (86029, 289, 4388), (86030, 289, 4399), (86031, 289, 4412), (86032, 289, 4437), (86033, 289, 4439), (86034, 289, 4441), (86035, 289, 4455), (86036, 289, 4485), (86037, 289, 4486), (86038, 289, 4501), (86039, 289, 4515), (86040, 289, 4538), (86041, 289, 4550), (86042, 289, 4551), (86043, 289, 4561), (86044, 289, 4574), (86045, 289, 4585), (86046, 289, 4588), (86047, 289, 4590), (86048, 289, 4610), (86049, 289, 4631), (86050, 289, 4673), (86051, 289, 4709), (86052, 289, 4748), (86053, 289, 4763), (86054, 289, 4770), (86055, 289, 4771), (86056, 289, 4786), (86057, 289, 4791), (86058, 289, 4804), (86059, 289, 4831), (86060, 289, 4853), (86061, 289, 4867), (86062, 289, 4868), (86063, 289, 4869), (86064, 289, 4871), (86065, 289, 4902), (86066, 289, 4964), (86067, 289, 4965), (86068, 289, 4973), (86069, 289, 4975), (86070, 289, 4986), (86071, 289, 5003), (86072, 289, 5010), (86073, 289, 5071), (86074, 289, 5073), (86075, 289, 5100), (86076, 289, 5113), (86077, 289, 5120), (86078, 289, 5141), (86079, 289, 5148), (86080, 289, 5182), (86081, 289, 5186), (86082, 289, 5189), (86083, 289, 5210), (86084, 289, 5211), (86085, 289, 5221), (86086, 289, 5226), (86087, 289, 5250), (86088, 289, 5260), (86089, 289, 5286), (86090, 289, 5298), (86091, 289, 5316), (86092, 289, 5322), (86093, 289, 5323), (86094, 289, 5342), (86095, 289, 5362), (86096, 289, 5367), (86097, 289, 5401), (86098, 289, 5404), (86099, 289, 5425), (86100, 289, 5451), (86101, 289, 5461), (86102, 289, 5484), (86103, 289, 5504), (86104, 289, 5538), (86105, 289, 5553), (86106, 289, 5566), (86107, 289, 5579), (86108, 289, 5603), (86109, 289, 5622), (86110, 289, 5625), (86111, 289, 5627), (86112, 289, 5630), (86113, 289, 5641), (86114, 289, 5655), (86115, 289, 5675), (86116, 289, 5702), (86117, 289, 5705), (86118, 289, 5728), (86119, 289, 5743), (86120, 289, 5750), (86121, 289, 5753), (86122, 289, 5781), (86123, 289, 5785), (86124, 289, 5812), (86125, 289, 5823), (86126, 289, 5828), (86127, 289, 5833), (86128, 289, 5839), (86129, 289, 5843), (86130, 289, 5859), (86131, 289, 5883), (86132, 289, 5903), (86133, 289, 5916), (86134, 289, 5940), (86135, 289, 5943), (86136, 289, 5958), (86137, 289, 5960), (86138, 289, 6015), (86139, 289, 6022), (86140, 289, 6029), (86141, 289, 6043), (86142, 289, 6057), (86143, 289, 6068), (86144, 289, 6112), (86145, 289, 6122), (86146, 289, 6128), (86147, 289, 6139), (86148, 289, 6141), (86149, 289, 6154), (86150, 289, 6160), (86151, 289, 6174), (86152, 289, 6193), (86153, 289, 6205), (86154, 289, 6206), (86155, 289, 6280), (86156, 289, 6288), (86157, 289, 6327), (86158, 289, 6350), (86159, 289, 6369), (86160, 289, 6377), (86161, 289, 6430), (86162, 289, 6432), (86163, 289, 6464), (86164, 289, 6476), (86165, 289, 6505), (86166, 289, 6509), (86167, 289, 6511), (86168, 289, 6516), (86169, 289, 6535), (86170, 289, 6553), (86171, 289, 6573), (86172, 289, 6584), (86173, 289, 6606), (86174, 289, 6619), (86175, 289, 6621), (86176, 289, 6650), (86177, 289, 6660), (86178, 289, 6667), (86179, 289, 6679), (86180, 289, 6680), (86181, 289, 6731), (86182, 289, 6738), (86183, 289, 6740), (86184, 289, 6747), (86185, 289, 6754), (86186, 289, 6766), (86187, 289, 6787), (86188, 289, 6797), (86189, 289, 6817), (86190, 289, 6866), (86191, 289, 6887), (86192, 289, 6909), (86193, 289, 6958), (86194, 289, 6974), (86195, 289, 6978), (86196, 289, 6988), (86197, 289, 7016), (86198, 289, 7020), (86199, 289, 7025), (86200, 289, 7042), (86201, 289, 7067), (86202, 289, 7128), (86203, 289, 7133), (86204, 289, 7174), (86205, 289, 7180), (86206, 289, 7197), (86207, 289, 7227), (86208, 289, 7374), (86209, 289, 7376), (86210, 289, 7377), (86211, 289, 7387), (86212, 289, 7406), (86213, 289, 7482), (86214, 289, 7489), (86215, 289, 7500), (86216, 289, 7504), (86217, 289, 7511), (86218, 289, 7553), (86219, 289, 7559), (86220, 289, 7582), (86221, 289, 7589), (86222, 289, 7591), (86223, 289, 7593), (86224, 289, 7623), (86225, 289, 7648), (86226, 289, 7651), (86227, 289, 7663), (86228, 289, 7707), (86229, 289, 7784), (86230, 289, 7800), (86231, 289, 7805), (86232, 289, 7841), (86233, 289, 7846), (86234, 289, 7850), (86235, 289, 7860), (86236, 289, 7866), (86237, 289, 7892), (86238, 289, 7910), (86239, 289, 7917), (86240, 289, 7966), (86241, 289, 7976), (86242, 289, 8004), (86243, 289, 8022), (86244, 289, 8096), (86245, 289, 8097), (86246, 289, 8107), (86247, 289, 8113), (86248, 289, 8135), (86249, 289, 8147), (86250, 289, 8157), (86251, 289, 8166), (86252, 289, 8179), (86253, 289, 8192), (86254, 289, 8276), (86255, 289, 8279), (86256, 289, 8297), (86257, 289, 8314), (86258, 289, 8360), (86259, 289, 8401), (86260, 289, 8405), (86261, 289, 8419), (86262, 289, 8427), (86263, 289, 8428), (86264, 289, 8440), (86265, 289, 8446), (86266, 289, 8454), (86267, 289, 8458), (86268, 289, 8480), (86269, 289, 8484), (86270, 289, 8486), (86271, 289, 8497), (86272, 289, 8520), (86273, 289, 8523), (86274, 289, 8532), (86275, 289, 8542), (86276, 289, 8544), (86277, 289, 8569), (86278, 289, 8579), (86279, 289, 8601), (86280, 289, 8645), (86281, 289, 8685), (86282, 289, 8696), (86283, 289, 8744), (86284, 289, 8797), (86285, 289, 8810), (86286, 289, 8811), (86287, 289, 8821), (86288, 289, 8825), (86289, 289, 8850), (86290, 289, 8851), (86291, 289, 8864), (86292, 289, 8875), (86293, 289, 8878), (86294, 289, 8887), (86295, 289, 8888), (86296, 289, 8894), (86297, 289, 8902), (86298, 289, 8905), (86299, 289, 8917), (86300, 289, 8944), (86301, 289, 8953), (86302, 289, 8991), (86303, 289, 9002), (86304, 289, 9006), (86305, 289, 9059), (86306, 289, 9064), (86307, 289, 9066), (86308, 289, 9092), (86309, 289, 9113), (86310, 289, 9127), (86311, 289, 9130), (86312, 289, 9133), (86313, 289, 9139), (86314, 289, 9147), (86315, 289, 9180), (86316, 289, 9193), (86317, 289, 9210), (86318, 289, 9220), (86319, 289, 9239), (86320, 289, 9240), (86321, 289, 9241), (86322, 289, 9249), (86323, 289, 9265), (86324, 289, 9267), (86325, 289, 9273), (86326, 289, 9292), (86327, 289, 9297), (86328, 289, 9366), (86329, 289, 9373), (86330, 289, 9378), (86331, 289, 9390), (86332, 289, 9393), (86333, 289, 9396), (86334, 289, 9405), (86335, 289, 9415), (86336, 289, 9427), (86337, 289, 9428), (86338, 289, 9439), (86339, 289, 9449), (86340, 289, 9452), (86341, 289, 9455), (86342, 289, 9468), (86343, 289, 9477), (86344, 289, 9481), (86345, 289, 9500), (86346, 289, 9503), (86347, 289, 9513), (86348, 289, 9522), (86349, 289, 9564), (86350, 289, 9581), (86351, 289, 9622), (86352, 289, 9629), (86353, 289, 9631), (86354, 289, 9636), (86355, 289, 9647), (86356, 289, 9664), (86357, 289, 9668), (86358, 289, 9675), (86359, 289, 9692), (86360, 289, 9719), (86361, 289, 9726), (86362, 289, 9744), (86363, 289, 9770), (86364, 289, 9773), (86365, 289, 9800), (86366, 289, 9804), (86367, 289, 9805), (86368, 289, 9810), (86369, 289, 9854), (86370, 289, 9855), (86371, 289, 9856), (86372, 289, 9865), (86373, 289, 9882), (86374, 289, 9915), (86375, 289, 9928), (86376, 289, 9944), (86377, 289, 9953), (86378, 289, 9957), (86379, 289, 9978), (86380, 289, 9997), (86381, 289, 10013), (86382, 289, 10032), (86383, 289, 10046), (86384, 289, 10078), (86385, 289, 10098), (86386, 289, 10132), (86387, 289, 10140), (86388, 289, 10142), (86389, 289, 10196), (86390, 289, 10199), (86391, 289, 10221), (86392, 289, 10236), (86393, 289, 10252), (86394, 289, 10254), (86395, 289, 10273), (86396, 289, 10284), (86397, 289, 10286), (86398, 289, 10287), (86399, 289, 10301), (86400, 289, 10307), (86401, 289, 10321), (86402, 289, 10327), (86403, 289, 10339), (86404, 289, 10342), (86405, 289, 10364), (86406, 289, 10379), (86407, 289, 10411), (86408, 289, 10449), (86409, 289, 10458), (86410, 289, 10465), (86411, 289, 10527), (86412, 289, 10535), (86413, 289, 10539), (86414, 289, 10569), (86415, 289, 10588), (86416, 289, 10599), (86417, 289, 10600), (86418, 289, 10601), (86419, 289, 10611), (86420, 289, 10619), (86421, 289, 10631), (86422, 289, 10632), (86423, 289, 10667), (86424, 289, 10686), (86425, 289, 10699), (86426, 289, 10703), (86427, 289, 10713), (86428, 289, 10714), (86429, 289, 10717), (86430, 289, 10722), (86431, 289, 10731), (86432, 289, 10746), (86433, 289, 10768), (86434, 289, 10814), (86435, 289, 10830), (86436, 289, 10836), (86437, 289, 10856), (86438, 289, 10869), (86439, 289, 10891), (86440, 289, 10893), (86441, 289, 10898), (86442, 289, 10926), (86443, 289, 10941), (86444, 289, 10948), (86445, 289, 10955), (86446, 289, 10961), (86447, 289, 10982), (86448, 289, 11008), (86449, 289, 11017), (86450, 289, 11019), (86451, 289, 11049), (86452, 289, 11072), (86453, 289, 11099), (86454, 289, 11109), (86455, 289, 11121), (86456, 289, 11139), (86457, 289, 11143), (86458, 289, 11172), (86459, 289, 11178), (86460, 289, 11214), (86461, 289, 11255), (86462, 289, 11273), (86463, 289, 11288), (86464, 289, 11301), (86465, 289, 11306), (86466, 289, 11324), (86467, 289, 11346), (86468, 289, 11363), (86469, 289, 11388), (86470, 289, 11389), (86471, 289, 11419), (86472, 289, 11423), (86473, 289, 11435), (86474, 289, 11437), (86475, 289, 11450), (86476, 289, 11451), (86477, 289, 11475), (86478, 289, 11477), (86479, 289, 11478), (86480, 289, 11503), (86481, 289, 11511), (86482, 289, 11521), (86483, 289, 11531), (86484, 289, 11542), (86485, 289, 11544), (86486, 289, 11573), (86487, 289, 11590), (86488, 289, 11593), (86489, 289, 11595), (86490, 289, 11600), (86491, 289, 11603), (86492, 289, 11631), (86493, 289, 11672), (86494, 289, 11680), (86495, 289, 11688), (86496, 289, 11721), (86497, 289, 11730), (86498, 289, 11738), (86499, 289, 11749), (86500, 289, 11750), (86501, 289, 11754), (86502, 289, 11758), (86503, 289, 11770), (86504, 289, 11788), (86505, 289, 11789), (86506, 289, 11811), (86507, 289, 11815), (86508, 289, 11816), (86509, 289, 11818), (86510, 289, 11836), (86511, 289, 11839), (86512, 289, 11888), (86513, 289, 11915), (86514, 289, 11923), (86515, 289, 11924), (86516, 289, 11982), (86517, 289, 11983), (86518, 289, 11985), (86519, 289, 11989), (86520, 289, 12003), (86521, 289, 12014), (86522, 289, 12033), (86523, 289, 12042), (86524, 289, 12054), (86525, 289, 12055), (86526, 289, 12083), (86527, 289, 12103), (86528, 289, 12108), (86529, 289, 12124), (86530, 289, 12127), (86531, 289, 12128), (86532, 289, 12138), (86533, 289, 12169), (86534, 289, 12180), (86535, 289, 12198), (86536, 289, 12224), (86537, 289, 12232), (86538, 289, 12246), (86539, 289, 12251), (86540, 289, 12254), (86541, 289, 12262), (86542, 289, 12279), (86543, 289, 12287), (86544, 289, 12328), (86545, 289, 12332), (86546, 289, 12361), (86547, 289, 12369), (86548, 289, 12397), (86549, 289, 12409), (86550, 289, 12497), (86551, 289, 12503), (86552, 289, 12508), (86553, 289, 12516), (86554, 289, 12540), (86555, 289, 12579), (86556, 289, 12580), (86557, 289, 12608), (86558, 289, 12610), (86559, 289, 12619), (86560, 289, 12660), (86561, 289, 12670), (86562, 289, 12678), (86563, 289, 12725), (86564, 289, 12761), (86565, 289, 12765), (86566, 289, 12767), (86567, 289, 12768), (86568, 289, 12785), (86569, 289, 12789), (86570, 289, 12790), (86571, 289, 12804), (86572, 289, 12805), (86573, 289, 12822), (86574, 289, 12842), (86575, 289, 12851), (86576, 289, 12858), (86577, 289, 12885), (86578, 289, 12929), (86579, 289, 12946), (86580, 289, 12958), (86581, 289, 12976), (86582, 289, 12989), (86583, 289, 12993), (86584, 289, 13009), (86585, 289, 13028), (86586, 289, 13036), (86587, 289, 13041), (86588, 289, 13046), (86589, 289, 13057), (86590, 289, 13064), (86591, 289, 13084), (86592, 289, 13100), (86593, 289, 13101), (86594, 289, 13112), (86595, 289, 13129), (86596, 289, 13146), (86597, 289, 13177), (86598, 289, 13202), (86599, 289, 13205), (86600, 289, 13225), (86601, 289, 13237), (86602, 289, 13257), (86603, 289, 13268), (86604, 289, 13273), (86605, 289, 13291), (86606, 289, 13292), (86607, 289, 13300), (86608, 289, 13306), (86609, 289, 13345), (86610, 289, 13349), (86611, 289, 13374), (86612, 289, 13377), (86613, 289, 13378), (86614, 289, 13410), (86615, 289, 13434), (86616, 289, 13449), (86617, 289, 13472), (86618, 289, 13522), (86619, 289, 13527), (86620, 289, 13548), (86621, 289, 13551), (86622, 289, 13570), (86623, 289, 13576), (86624, 289, 13596), (86625, 289, 13625), (86626, 289, 13652), (86627, 289, 13662), (86628, 289, 13673), (86629, 289, 13675), (86630, 289, 13683), (86631, 289, 13704), (86632, 289, 13725), (86633, 289, 13757), (86634, 289, 13759), (86635, 289, 13775), (86636, 289, 13784), (86637, 289, 13795), (86638, 289, 13801), (86639, 289, 13806), (86640, 289, 13828), (86641, 289, 13861), (86642, 289, 13865), (86643, 289, 13875), (86644, 289, 13883), (86645, 289, 13906), (86646, 289, 13935), (86647, 289, 13956), (86648, 289, 14002), (86649, 289, 14015), (86650, 289, 14018), (86651, 289, 14057), (86652, 289, 14059), (86653, 289, 14069), (86654, 289, 14144), (86655, 289, 14147), (86656, 289, 14159), (86657, 289, 14162), (86658, 289, 14189), (86659, 289, 14208), (86660, 289, 14217), (86661, 289, 14225), (86662, 289, 14244), (86663, 289, 14270), (86664, 289, 14299), (86665, 289, 14305), (86666, 289, 14308), (86667, 289, 14334), (86668, 289, 14351), (86669, 289, 14357), (86670, 289, 14389), (86671, 289, 14393), (86672, 289, 14447), (86673, 289, 14476), (86674, 289, 14485), (86675, 289, 14498), (86676, 289, 14505), (86677, 289, 14523), (86678, 289, 14540), (86679, 289, 14561), (86680, 289, 14565), (86681, 289, 14577), (86682, 289, 14579), (86683, 289, 14595), (86684, 289, 14641), (86685, 289, 14658), (86686, 289, 14660), (86687, 289, 14664), (86688, 289, 14682), (86689, 289, 14689), (86690, 289, 14691), (86691, 289, 14697), (86692, 289, 14700), (86693, 289, 14702), (86694, 289, 14707), (86695, 289, 14730), (86696, 289, 14758), (86697, 289, 14774), (86698, 289, 14785), (86699, 289, 14791), (86700, 289, 14806), (86701, 289, 14831), (86702, 289, 14862), (86703, 289, 14864), (86704, 289, 14880), (86705, 289, 14924), (86706, 289, 14931), (86707, 289, 14995), (86708, 289, 15004), (86709, 289, 15035), (86710, 289, 15046), (86711, 289, 15059), (86712, 289, 15063), (86713, 289, 15094), (86714, 289, 15103), (86715, 289, 15113), (86716, 289, 15145), (86717, 289, 15153), (86718, 289, 15156), (86719, 289, 15159), (86720, 289, 15165), (86721, 289, 15174), (86722, 289, 15185), (86723, 289, 15193), (86724, 289, 15229), (86725, 289, 15232), (86726, 289, 15269), (86727, 289, 15270), (86728, 289, 15274), (86729, 289, 15305), (86730, 289, 15330), (86731, 289, 15361), (86732, 289, 15364), (86733, 289, 15385), (86734, 289, 15405), (86735, 289, 15447), (86736, 289, 15449), (86737, 289, 15475), (86738, 289, 15482), (86739, 289, 15486), (86740, 289, 15554), (86741, 289, 15588), (86742, 289, 15609), (86743, 289, 15613), (86744, 289, 15624), (86745, 289, 15637), (86746, 289, 15678), (86747, 289, 15682), (86748, 289, 15686), (86749, 289, 15699), (86750, 289, 15723), (86751, 289, 15726), (86752, 289, 15754), (86753, 289, 15823), (86754, 289, 15831), (86755, 289, 15839), (86756, 289, 15850), (86757, 289, 15853), (86758, 289, 15870), (86759, 289, 15874), (86760, 289, 15884), (86761, 289, 15890), (86762, 289, 15902), (86763, 289, 15939), (86764, 289, 16016), (86765, 289, 16052), (86766, 289, 16076), (86767, 289, 16091), (86768, 289, 16114), (86769, 289, 16123), (86770, 289, 16137), (86771, 289, 16150), (86772, 289, 16178), (86773, 289, 16238), (86774, 289, 16246), (86775, 289, 16250), (86776, 289, 16251), (86777, 289, 16263), (86778, 289, 16265), (86779, 289, 16268), (86780, 289, 16269), (86781, 289, 16273), (86782, 289, 16306), (86783, 289, 16313), (86784, 289, 16323), (86785, 289, 16339), (86786, 289, 16354), (86787, 289, 16378), (86788, 289, 16381), (86789, 289, 16394), (86790, 289, 16399), (86791, 289, 16401), (86792, 289, 16405), (86793, 289, 16407), (86794, 289, 16441), (86795, 289, 16442), (86796, 289, 16449), (86797, 289, 16450), (86798, 289, 16467), (86799, 289, 16471), (86800, 289, 16493), (86801, 289, 16509), (86802, 289, 16512), (86803, 289, 16516), (86804, 289, 16540), (86805, 289, 16558), (86806, 289, 16573), (86807, 289, 16574), (86808, 289, 16578), (86809, 289, 16583), (86810, 289, 16591), (86811, 289, 16594), (86812, 289, 16625), (86813, 289, 16641), (86814, 289, 16644), (86815, 289, 16648), (86816, 289, 16659), (86817, 289, 16693), (86818, 289, 16723), (86819, 289, 16730), (86820, 289, 16734), (86821, 289, 16761), (86822, 289, 16763), (86823, 289, 16810), (86824, 289, 16818), (86825, 289, 16821), (86826, 289, 16829), (86827, 289, 16870), (86828, 289, 16872), (86829, 289, 16888), (86830, 289, 16890), (86831, 289, 16911), (86832, 289, 16939), (86833, 289, 16961), (86834, 289, 16977), (86835, 289, 17045), (86836, 289, 17056), (86837, 289, 17060), (86838, 289, 17074), (86839, 289, 17075), (86840, 289, 17085), (86841, 289, 17172), (86842, 289, 17218), (86843, 289, 17226), (86844, 289, 17253), (86845, 289, 17254), (86846, 289, 17256), (86847, 289, 17311), (86848, 289, 17320), (86849, 289, 17324), (86850, 289, 17329), (86851, 289, 17377), (86852, 289, 17421), (86853, 289, 17439), (86854, 289, 17459), (86855, 289, 17461), (86856, 289, 17472), (86857, 289, 17490), (86858, 289, 17511), (86859, 289, 17524), (86860, 289, 17525), (86861, 289, 17528), (86862, 289, 17549), (86863, 289, 17558), (86864, 289, 17559), (86865, 289, 17567), (86866, 289, 17571), (86867, 289, 17573), (86868, 289, 17583), (86869, 289, 17605), (86870, 289, 17615), (86871, 289, 17618), (86872, 289, 17619), (86873, 289, 17622), (86874, 289, 17627), (86875, 289, 17657), (86876, 289, 17696), (86877, 289, 17702), (86878, 289, 17703), (86879, 289, 17719), (86880, 289, 17728), (86881, 289, 17770), (86882, 289, 17779), (86883, 289, 17781), (86884, 289, 17790), (86885, 289, 17797), (86886, 289, 17811), (86887, 289, 17844), (86888, 289, 17848), (86889, 289, 17857), (86890, 289, 17875), (86891, 289, 17876), (86892, 289, 17883), (86893, 289, 17890), (86894, 289, 17896), (86895, 289, 17900), (86896, 289, 17931), (86897, 289, 17958), (86898, 289, 17974), (86899, 289, 18014), (86900, 289, 18037), (86901, 289, 18068), (86902, 289, 18113), (86903, 289, 18114), (86904, 289, 18118), (86905, 289, 18133), (86906, 289, 18137), (86907, 289, 18139), (86908, 289, 18159), (86909, 289, 18161), (86910, 289, 18184), (86911, 289, 18211), (86912, 289, 18215), (86913, 289, 18236), (86914, 289, 18277), (86915, 289, 18278), (86916, 289, 18294), (86917, 289, 18298), (86918, 289, 18336), (86919, 289, 18357), (86920, 289, 18361), (86921, 289, 18363), (86922, 289, 18366), (86923, 289, 18397), (86924, 289, 18414), (86925, 289, 18424), (86926, 289, 18448), (86927, 289, 18460), (86928, 289, 18503), (86929, 289, 18505), (86930, 289, 18508), (86931, 289, 18533), (86932, 289, 18539), (86933, 289, 18564), (86934, 289, 18582), (86935, 289, 18604), (86936, 289, 18607), (86937, 289, 18620), (86938, 289, 18622), (86939, 289, 18640), (86940, 289, 18646), (86941, 289, 18715), (86942, 289, 18728), (86943, 289, 18760), (86944, 289, 18767), (86945, 289, 18774), (86946, 289, 18802), (86947, 289, 18813), (86948, 289, 18816), (86949, 289, 18834), (86950, 289, 18850), (86951, 289, 18856), (86952, 289, 18888), (86953, 289, 18898), (86954, 289, 18904), (86955, 289, 19013), (86956, 289, 19038), (86957, 289, 19062), (86958, 289, 19092), (86959, 289, 19104), (86960, 289, 19174), (86961, 289, 19176), (86962, 289, 19184), (86963, 289, 19210), (86964, 289, 19212), (86965, 289, 19284), (86966, 289, 19301), (86967, 289, 19366), (86968, 289, 19416), (86969, 289, 19435), (86970, 289, 19465), (86971, 289, 19470), (86972, 289, 19483), (86973, 289, 19513), (86974, 289, 19542), (86975, 289, 19553), (86976, 289, 19575), (86977, 289, 19618), (86978, 289, 19634), (86979, 289, 19636), (86980, 289, 19660), (86981, 289, 19731), (86982, 289, 19738), (86983, 289, 19743), (86984, 289, 19816), (86985, 289, 19818), (86986, 289, 19846), (86987, 289, 19860), (86988, 289, 19872), (86989, 289, 19890), (86990, 289, 19902), (86991, 289, 19904), (86992, 289, 19913), (86993, 289, 19942), (86994, 289, 19975), (86995, 289, 19989), (86996, 289, 19992), (86997, 289, 20017), (86998, 289, 20018), (86999, 289, 20031), (87000, 289, 20055), (87001, 289, 20060), (87002, 289, 20080), (87003, 289, 20085), (87004, 289, 20117), (87005, 289, 20201), (87006, 289, 20294), (87007, 289, 20318), (87008, 289, 20346), (87009, 289, 20358), (87010, 289, 20364), (87011, 289, 20367), (87012, 289, 20394), (87013, 289, 20398), (87014, 289, 20440), (87015, 289, 20478), (87016, 289, 20519), (87017, 289, 20556), (87018, 289, 20567), (87019, 289, 20593), (87020, 289, 20599), (87021, 289, 20609), (87022, 289, 20627), (87023, 289, 20631), (87024, 289, 20633), (87025, 289, 20671), (87026, 289, 20688), (87027, 289, 20691), (87028, 289, 20699), (87029, 289, 20702), (87030, 289, 20718), (87031, 289, 20723), (87032, 289, 20731), (87033, 289, 20750), (87034, 289, 20830), (87035, 289, 20846), (87036, 289, 20863), (87037, 289, 20909), (87038, 289, 20932), (87039, 289, 20976), (87040, 289, 21003), (87041, 289, 21006), (87042, 289, 21047), (87043, 289, 21054), (87044, 289, 21083), (87045, 289, 21106), (87046, 289, 21108), (87047, 289, 21145), (87048, 289, 21175), (87049, 289, 21181), (87050, 289, 21205), (87051, 289, 21215), (87052, 289, 21216), (87053, 289, 21226), (87054, 289, 21248), (87055, 289, 21268), (87056, 289, 21324), (87057, 289, 21330), (87058, 289, 21337), (87059, 289, 21348), (87060, 289, 21416), (87061, 289, 21456), (87062, 289, 21481), (87063, 289, 21508), (87064, 289, 21596), (87065, 289, 21602), (87066, 289, 21620), (87067, 289, 21625), (87068, 289, 21637), (87069, 289, 21661), (87070, 289, 21687), (87071, 289, 21711), (87072, 289, 21714), (87073, 289, 21731), (87074, 289, 21796), (87075, 289, 21804), (87076, 289, 21826), (87077, 289, 21847), (87078, 289, 21860), (87079, 289, 21862), (87080, 289, 21866), (87081, 289, 21887), (87082, 289, 21909), (87083, 289, 21933), (87084, 289, 21970), (87085, 289, 22015), (87086, 289, 22037), (87087, 289, 22106), (87088, 289, 22139), (87089, 289, 22173), (87090, 289, 22228), (87091, 289, 22237), (87092, 289, 22249), (87093, 289, 22254), (87094, 289, 22285), (87095, 289, 22298), (87096, 289, 22303), (87097, 289, 22309), (87098, 289, 22321), (87099, 289, 22442), (87100, 289, 22461), (87101, 289, 22472), (87102, 289, 22480), (87103, 289, 22486), (87104, 289, 22535), (87105, 289, 22543), (87106, 289, 22569), (87107, 289, 22576), (87108, 289, 22581), (87109, 289, 22605), (87110, 289, 22620), (87111, 289, 22641), (87112, 289, 22658), (87113, 289, 22660), (87114, 289, 22738), (87115, 289, 22740), (87116, 289, 22744), (87117, 289, 22746), (87118, 289, 22760), (87119, 289, 22818), (87120, 289, 22840), (87121, 289, 22852), (87122, 289, 22861), (87123, 289, 22869), (87124, 289, 22885), (87125, 289, 22933), (87126, 289, 22966), (87127, 289, 22984), (87128, 289, 23032), (87129, 289, 23034), (87130, 289, 23036), (87131, 289, 23037), (87132, 289, 23051), (87133, 289, 23091), (87134, 289, 23128), (87135, 289, 23130), (87136, 289, 23153), (87137, 289, 23211), (87138, 289, 23246), (87139, 289, 23257), (87140, 289, 23265), (87141, 289, 23275), (87142, 289, 23331), (87143, 289, 23377), (87144, 289, 23402), (87145, 289, 23410), (87146, 289, 23426), (87147, 289, 23446), (87148, 289, 23461), (87149, 289, 23480), (87150, 289, 23526), (87151, 289, 23542), (87152, 289, 23573), (87153, 289, 23589), (87154, 289, 23613), (87155, 289, 23616), (87156, 289, 23682), (87157, 289, 23728), (87158, 289, 23788), (87159, 289, 23829), (87160, 289, 23860), (87161, 289, 23879), (87162, 289, 23882), (87163, 289, 23908), (87164, 289, 23920), (87165, 289, 23922), (87166, 289, 24052), (87167, 289, 24077), (87168, 289, 24092), (87169, 289, 24100), (87170, 289, 24101), (87171, 289, 24139), (87172, 289, 24203), (87173, 289, 24319), (87174, 289, 24353), (87175, 289, 24397), (87176, 289, 24471), (87177, 289, 24612), (87178, 289, 24766), (87179, 289, 24845), (87180, 289, 24846), (87181, 289, 24864), (87182, 289, 24997), (87183, 289, 25004), (87184, 289, 25005), (87185, 289, 25006), (87186, 289, 25039), (87187, 289, 25051), (87188, 289, 25057), (87189, 289, 25076), (87190, 289, 25077), (87191, 289, 25082), (87192, 289, 25089), (87193, 289, 25105), (87194, 289, 25116), (87195, 289, 25167), (87196, 289, 25175), (87197, 289, 25197), (87198, 289, 25204), (87199, 289, 25205), (87200, 289, 25208), (87201, 289, 25211), (87202, 289, 25214), (87203, 289, 25215), (87802, 290, 579), (87803, 290, 621), (87804, 290, 1169), (87805, 290, 1605), (87806, 290, 1894), (87807, 290, 2014), (87808, 290, 2329), (87809, 290, 2347), (87810, 290, 2385), (87811, 290, 2515), (87812, 290, 2583), (87813, 290, 4804), (87814, 290, 4869), (87815, 290, 4871), (87816, 290, 5071), (87817, 290, 5298), (87818, 290, 5316), (87819, 290, 5361), (87820, 290, 6889), (87821, 290, 8454), (87822, 290, 8484), (87823, 290, 8569), (87824, 290, 8607), (87825, 290, 8991), (87826, 290, 9117), (87827, 290, 9366), (87828, 290, 9452), (87829, 290, 9595), (87830, 290, 9631), (87831, 290, 9675), (87832, 290, 9805), (87833, 290, 9899), (87834, 290, 10132), (87835, 290, 10357), (87836, 290, 10379), (87837, 290, 10588), (87838, 290, 11444), (87839, 290, 11521), (87840, 290, 11603), (87841, 290, 11989), (87842, 290, 12003), (87843, 290, 12180), (87844, 290, 12610), (87845, 290, 12837), (87846, 290, 12976), (87847, 290, 13137), (87848, 290, 13449), (87849, 290, 13602), (87850, 290, 13626), (87851, 290, 13806), (87852, 290, 14069), (87853, 290, 14189), (87854, 290, 14390), (87855, 290, 14645), (87856, 290, 14832), (87857, 290, 15831), (87858, 290, 16250), (87859, 290, 16251), (87860, 290, 16378), (87861, 290, 16442), (87862, 290, 18171), (87863, 290, 18886), (87864, 290, 18929), (87865, 290, 19837), (87866, 290, 20702), (87867, 290, 20731), (87868, 290, 20758), (87869, 290, 20987), (87870, 290, 22254), (87871, 290, 22309), (87872, 290, 22742), (87873, 290, 22818), (87929, 291, 1616), (87930, 291, 1925), (87931, 291, 2043), (87932, 291, 2213), (87933, 291, 2449), (87934, 291, 3015), (87935, 291, 3056), (87936, 291, 3416), (87937, 291, 3722), (87938, 291, 3953), (87939, 291, 3955), (87940, 291, 4187), (87941, 291, 4266), (87942, 291, 4306), (87943, 291, 4418), (87944, 291, 4442), (87945, 291, 4610), (87946, 291, 4976), (87947, 291, 5559), (87948, 291, 5627), (87949, 291, 5698), (87950, 291, 5832), (87951, 291, 5856), (87952, 291, 5976), (87953, 291, 6249), (87954, 291, 6512), (87955, 291, 6606), (87956, 291, 6628), (87957, 291, 6891), (87958, 291, 6971), (87959, 291, 6985), (87960, 291, 7391), (87961, 291, 7622), (87962, 291, 8067), (87963, 291, 8211), (87964, 291, 8391), (87965, 291, 8446), (87966, 291, 8521), (87967, 291, 8606), (87968, 291, 8764), (87969, 291, 8784), (87970, 291, 8822), (87971, 291, 8887), (87972, 291, 8926), (87973, 291, 9205), (87974, 291, 9443), (87975, 291, 9515), (87976, 291, 9688), (87977, 291, 9709), (87978, 291, 9775), (87979, 291, 9900), (87980, 291, 9973), (87981, 291, 10102), (87982, 291, 10334), (87983, 291, 10582), (87984, 291, 10778), (87985, 291, 10834), (87986, 291, 11160), (87987, 291, 11210), (87988, 291, 11282), (87989, 291, 11353), (87990, 291, 11386), (87991, 291, 11530), (87992, 291, 12010), (87993, 291, 12039), (87994, 291, 12366), (87995, 291, 12711), (87996, 291, 12994), (87997, 291, 13295), (87998, 291, 13523), (87999, 291, 13814), (88000, 291, 13906), (88001, 291, 13925), (88002, 291, 14159), (88003, 291, 14162), (88004, 291, 14208), (88005, 291, 14313), (88006, 291, 14520), (88007, 291, 14883), (88008, 291, 14941), (88009, 291, 15109), (88010, 291, 15232), (88011, 291, 15888), (88012, 291, 15985), (88013, 291, 16688), (88014, 291, 16712), (88015, 291, 16741), (88016, 291, 16984), (88017, 291, 16999), (88018, 291, 17056), (88019, 291, 17162), (88020, 291, 17574), (88021, 291, 17681), (88022, 291, 18049), (88023, 291, 18388), (88024, 291, 18394), (88025, 291, 18914), (88026, 291, 19085), (88027, 291, 19134), (88028, 291, 19219), (88029, 291, 19301), (88030, 291, 19555), (88031, 291, 19571), (88032, 291, 19640), (88033, 291, 19677), (88034, 291, 19984), (88035, 291, 20068), (88036, 291, 20329), (88037, 291, 20417), (88038, 291, 20638), (88039, 291, 20748), (88040, 291, 21026), (88041, 291, 21094), (88042, 291, 21333), (88043, 291, 21372), (88044, 291, 21834), (88045, 291, 21884), (88046, 291, 22004), (88047, 291, 22118), (88048, 291, 22122), (88049, 291, 22259), (88050, 291, 22266), (88051, 291, 22417), (88052, 291, 22516), (88053, 291, 22650), (88054, 291, 22799), (88055, 291, 22971), (88056, 291, 23425), (88057, 291, 23517), (88058, 291, 23530), (88059, 291, 23585), (88060, 291, 23600), (88061, 291, 23830), (88062, 291, 23872), (88063, 291, 23986), (88064, 291, 24021), (88065, 291, 24091), (88066, 291, 24469), (88067, 291, 24686), (88068, 291, 24739), (88069, 291, 24740), (88070, 291, 25134), (88071, 291, 25205), (88184, 292, 309), (88185, 292, 323), (88186, 292, 347), (88187, 292, 401), (88188, 292, 513), (88189, 292, 578), (88190, 292, 639), (88191, 292, 772), (88192, 292, 785), (88193, 292, 880), (88194, 292, 915), (88195, 292, 964), (88196, 292, 1107), (88197, 292, 1115), (88198, 292, 1167), (88199, 292, 1224), (88200, 292, 1380), (88201, 292, 1516), (88202, 292, 1577), (88203, 292, 1692), (88204, 292, 1700), (88205, 292, 1705), (88206, 292, 1715), (88207, 292, 1728), (88208, 292, 1787), (88209, 292, 1833), (88210, 292, 1835), (88211, 292, 1854), (88212, 292, 1883), (88213, 292, 1919), (88214, 292, 2026), (88215, 292, 2070), (88216, 292, 2081), (88217, 292, 2106), (88218, 292, 2167), (88219, 292, 2234), (88220, 292, 2242), (88221, 292, 2244), (88222, 292, 2300), (88223, 292, 2506), (88224, 292, 2514), (88225, 292, 2665), (88226, 292, 2721), (88227, 292, 2811), (88228, 292, 2814), (88229, 292, 2861), (88230, 292, 2862), (88231, 292, 2880), (88232, 292, 3009), (88233, 292, 3174), (88234, 292, 3176), (88235, 292, 3189), (88236, 292, 3237), (88237, 292, 3238), (88238, 292, 3245), (88239, 292, 3310), (88240, 292, 3388), (88241, 292, 3408), (88242, 292, 3437), (88243, 292, 3465), (88244, 292, 3510), (88245, 292, 3523), (88246, 292, 3563), (88247, 292, 3621), (88248, 292, 3662), (88249, 292, 3776), (88250, 292, 3805), (88251, 292, 3812), (88252, 292, 3873), (88253, 292, 3936), (88254, 292, 3970), (88255, 292, 3999), (88256, 292, 4005), (88257, 292, 4020), (88258, 292, 4094), (88259, 292, 4134), (88260, 292, 4184), (88261, 292, 4235), (88262, 292, 4296), (88263, 292, 4297), (88264, 292, 4325), (88265, 292, 4366), (88266, 292, 4405), (88267, 292, 4448), (88268, 292, 4488), (88269, 292, 4512), (88270, 292, 4559), (88271, 292, 4577), (88272, 292, 4670), (88273, 292, 4720), (88274, 292, 4800), (88275, 292, 4850), (88276, 292, 4886), (88277, 292, 4898), (88278, 292, 4981), (88279, 292, 5049), (88280, 292, 5064), (88281, 292, 5072), (88282, 292, 5117), (88283, 292, 5133), (88284, 292, 5174), (88285, 292, 5234), (88286, 292, 5374), (88287, 292, 5418), (88288, 292, 5452), (88289, 292, 5474), (88290, 292, 5488), (88291, 292, 5513), (88292, 292, 5575), (88293, 292, 5592), (88294, 292, 5594), (88295, 292, 5609), (88296, 292, 5672), (88297, 292, 5677), (88298, 292, 5810), (88299, 292, 5819), (88300, 292, 5862), (88301, 292, 5898), (88302, 292, 5927), (88303, 292, 5979), (88304, 292, 6024), (88305, 292, 6042), (88306, 292, 6135), (88307, 292, 6146), (88308, 292, 6178), (88309, 292, 6185), (88310, 292, 6229), (88311, 292, 6257), (88312, 292, 6263), (88313, 292, 6304), (88314, 292, 6322), (88315, 292, 6323), (88316, 292, 6354), (88317, 292, 6368), (88318, 292, 6460), (88319, 292, 6482), (88320, 292, 6598), (88321, 292, 6671), (88322, 292, 6677), (88323, 292, 6700), (88324, 292, 6730), (88325, 292, 6769), (88326, 292, 6852), (88327, 292, 6873), (88328, 292, 6881), (88329, 292, 6921), (88330, 292, 6983), (88331, 292, 6996), (88332, 292, 7009), (88333, 292, 7023), (88334, 292, 7056), (88335, 292, 7071), (88336, 292, 7137), (88337, 292, 7148), (88338, 292, 7245), (88339, 292, 7272), (88340, 292, 7273), (88341, 292, 7282), (88342, 292, 7283), (88343, 292, 7338), (88344, 292, 7349), (88345, 292, 7470), (88346, 292, 7531), (88347, 292, 7555), (88348, 292, 7715), (88349, 292, 7820), (88350, 292, 7898), (88351, 292, 7900), (88352, 292, 7917), (88353, 292, 7920), (88354, 292, 8005), (88355, 292, 8033), (88356, 292, 8056), (88357, 292, 8063), (88358, 292, 8126), (88359, 292, 8163), (88360, 292, 8197), (88361, 292, 8201), (88362, 292, 8239), (88363, 292, 8242), (88364, 292, 8262), (88365, 292, 8281), (88366, 292, 8317), (88367, 292, 8334), (88368, 292, 8356), (88369, 292, 8376), (88370, 292, 8388), (88371, 292, 8418), (88372, 292, 8431), (88373, 292, 8451), (88374, 292, 8457), (88375, 292, 8615), (88376, 292, 8618), (88377, 292, 8626), (88378, 292, 8665), (88379, 292, 8682), (88380, 292, 8706), (88381, 292, 8717), (88382, 292, 8720), (88383, 292, 8723), (88384, 292, 8733), (88385, 292, 8766), (88386, 292, 8784), (88387, 292, 8853), (88388, 292, 8862), (88389, 292, 8897), (88390, 292, 8905), (88391, 292, 8920), (88392, 292, 8939), (88393, 292, 9005), (88394, 292, 9026), (88395, 292, 9144), (88396, 292, 9146), (88397, 292, 9153), (88398, 292, 9160), (88399, 292, 9172), (88400, 292, 9182), (88401, 292, 9205), (88402, 292, 9207), (88403, 292, 9228), (88404, 292, 9229), (88405, 292, 9236), (88406, 292, 9256), (88407, 292, 9321), (88408, 292, 9360), (88409, 292, 9377), (88410, 292, 9383), (88411, 292, 9436), (88412, 292, 9437), (88413, 292, 9453), (88414, 292, 9457), (88415, 292, 9479), (88416, 292, 9481), (88417, 292, 9540), (88418, 292, 9546), (88419, 292, 9583), (88420, 292, 9586), (88421, 292, 9606), (88422, 292, 9681), (88423, 292, 9683), (88424, 292, 9687), (88425, 292, 9840), (88426, 292, 9886), (88427, 292, 9912), (88428, 292, 9980), (88429, 292, 9998), (88430, 292, 10001), (88431, 292, 10003), (88432, 292, 10004), (88433, 292, 10009), (88434, 292, 10011), (88435, 292, 10040), (88436, 292, 10044), (88437, 292, 10074), (88438, 292, 10110), (88439, 292, 10117), (88440, 292, 10136), (88441, 292, 10191), (88442, 292, 10197), (88443, 292, 10229), (88444, 292, 10318), (88445, 292, 10326), (88446, 292, 10333), (88447, 292, 10359), (88448, 292, 10409), (88449, 292, 10499), (88450, 292, 10545), (88451, 292, 10618), (88452, 292, 10730), (88453, 292, 10747), (88454, 292, 10822), (88455, 292, 10890), (88456, 292, 10935), (88457, 292, 10975), (88458, 292, 11023), (88459, 292, 11122), (88460, 292, 11128), (88461, 292, 11219), (88462, 292, 11225), (88463, 292, 11241), (88464, 292, 11313), (88465, 292, 11456), (88466, 292, 11517), (88467, 292, 11550), (88468, 292, 11587), (88469, 292, 11611), (88470, 292, 11616), (88471, 292, 11625), (88472, 292, 11682), (88473, 292, 11690), (88474, 292, 11756), (88475, 292, 11765), (88476, 292, 11776), (88477, 292, 11799), (88478, 292, 11835), (88479, 292, 11898), (88480, 292, 11965), (88481, 292, 11999), (88482, 292, 12046), (88483, 292, 12049), (88484, 292, 12063), (88485, 292, 12079), (88486, 292, 12081), (88487, 292, 12122), (88488, 292, 12172), (88489, 292, 12178), (88490, 292, 12179), (88491, 292, 12190), (88492, 292, 12203), (88493, 292, 12209), (88494, 292, 12211), (88495, 292, 12214), (88496, 292, 12231), (88497, 292, 12233), (88498, 292, 12315), (88499, 292, 12318), (88500, 292, 12343), (88501, 292, 12346), (88502, 292, 12371), (88503, 292, 12394), (88504, 292, 12444), (88505, 292, 12509), (88506, 292, 12531), (88507, 292, 12627), (88508, 292, 12721), (88509, 292, 12741), (88510, 292, 12849), (88511, 292, 12857), (88512, 292, 12860), (88513, 292, 12877), (88514, 292, 12902), (88515, 292, 12983), (88516, 292, 13020), (88517, 292, 13030), (88518, 292, 13039), (88519, 292, 13047), (88520, 292, 13070), (88521, 292, 13077), (88522, 292, 13108), (88523, 292, 13144), (88524, 292, 13172), (88525, 292, 13213), (88526, 292, 13251), (88527, 292, 13269), (88528, 292, 13369), (88529, 292, 13412), (88530, 292, 13414), (88531, 292, 13418), (88532, 292, 13509), (88533, 292, 13546), (88534, 292, 13550), (88535, 292, 13600), (88536, 292, 13607), (88537, 292, 13609), (88538, 292, 13639), (88539, 292, 13690), (88540, 292, 13696), (88541, 292, 13740), (88542, 292, 13796), (88543, 292, 13799), (88544, 292, 13813), (88545, 292, 13876), (88546, 292, 13878), (88547, 292, 13888), (88548, 292, 13908), (88549, 292, 13914), (88550, 292, 13922), (88551, 292, 14030), (88552, 292, 14063), (88553, 292, 14079), (88554, 292, 14117), (88555, 292, 14119), (88556, 292, 14212), (88557, 292, 14267), (88558, 292, 14293), (88559, 292, 14297), (88560, 292, 14300), (88561, 292, 14329), (88562, 292, 14336), (88563, 292, 14337), (88564, 292, 14382), (88565, 292, 14429), (88566, 292, 14449), (88567, 292, 14458), (88568, 292, 14473), (88569, 292, 14528), (88570, 292, 14557), (88571, 292, 14588), (88572, 292, 14699), (88573, 292, 14764), (88574, 292, 14770), (88575, 292, 14804), (88576, 292, 14840), (88577, 292, 14860), (88578, 292, 14871), (88579, 292, 14873), (88580, 292, 14886), (88581, 292, 14984), (88582, 292, 15055), (88583, 292, 15082), (88584, 292, 15110), (88585, 292, 15126), (88586, 292, 15271), (88587, 292, 15272), (88588, 292, 15277), (88589, 292, 15298), (88590, 292, 15315), (88591, 292, 15405), (88592, 292, 15420), (88593, 292, 15459), (88594, 292, 15465), (88595, 292, 15531), (88596, 292, 15539), (88597, 292, 15563), (88598, 292, 15575), (88599, 292, 15675), (88600, 292, 15688), (88601, 292, 15701), (88602, 292, 15709), (88603, 292, 15714), (88604, 292, 15734), (88605, 292, 15741), (88606, 292, 15779), (88607, 292, 15788), (88608, 292, 15795), (88609, 292, 15809), (88610, 292, 15819), (88611, 292, 15825), (88612, 292, 15873), (88613, 292, 15877), (88614, 292, 15897), (88615, 292, 15898), (88616, 292, 15901), (88617, 292, 15933), (88618, 292, 15978), (88619, 292, 16075), (88620, 292, 16123), (88621, 292, 16143), (88622, 292, 16171), (88623, 292, 16175), (88624, 292, 16199), (88625, 292, 16214), (88626, 292, 16302), (88627, 292, 16351), (88628, 292, 16357), (88629, 292, 16402), (88630, 292, 16444), (88631, 292, 16497), (88632, 292, 16539), (88633, 292, 16540), (88634, 292, 16576), (88635, 292, 16642), (88636, 292, 16653), (88637, 292, 16677), (88638, 292, 16683), (88639, 292, 16711), (88640, 292, 16783), (88641, 292, 16817), (88642, 292, 16928), (88643, 292, 16969), (88644, 292, 16975), (88645, 292, 17020), (88646, 292, 17066), (88647, 292, 17111), (88648, 292, 17125), (88649, 292, 17154), (88650, 292, 17164), (88651, 292, 17173), (88652, 292, 17178), (88653, 292, 17243), (88654, 292, 17288), (88655, 292, 17293), (88656, 292, 17367), (88657, 292, 17393), (88658, 292, 17410), (88659, 292, 17422), (88660, 292, 17430), (88661, 292, 17437), (88662, 292, 17439), (88663, 292, 17451), (88664, 292, 17481), (88665, 292, 17485), (88666, 292, 17529), (88667, 292, 17632), (88668, 292, 17643), (88669, 292, 17651), (88670, 292, 17698), (88671, 292, 17716), (88672, 292, 17775), (88673, 292, 17785), (88674, 292, 17792), (88675, 292, 17793), (88676, 292, 17795), (88677, 292, 17849), (88678, 292, 17865), (88679, 292, 17926), (88680, 292, 18005), (88681, 292, 18041), (88682, 292, 18060), (88683, 292, 18065), (88684, 292, 18210), (88685, 292, 18235), (88686, 292, 18246), (88687, 292, 18254), (88688, 292, 18299), (88689, 292, 18313), (88690, 292, 18354), (88691, 292, 18407), (88692, 292, 18419), (88693, 292, 18432), (88694, 292, 18433), (88695, 292, 18443), (88696, 292, 18455), (88697, 292, 18621), (88698, 292, 18660), (88699, 292, 18743), (88700, 292, 18762), (88701, 292, 18776), (88702, 292, 18838), (88703, 292, 18843), (88704, 292, 18896), (88705, 292, 18918), (88706, 292, 18920), (88707, 292, 18949), (88708, 292, 18966), (88709, 292, 18986), (88710, 292, 19014), (88711, 292, 19079), (88712, 292, 19096), (88713, 292, 19107), (88714, 292, 19111), (88715, 292, 19131), (88716, 292, 19159), (88717, 292, 19176), (88718, 292, 19206), (88719, 292, 19223), (88720, 292, 19236), (88721, 292, 19242), (88722, 292, 19248), (88723, 292, 19311), (88724, 292, 19321), (88725, 292, 19356), (88726, 292, 19404), (88727, 292, 19412), (88728, 292, 19472), (88729, 292, 19479), (88730, 292, 19495), (88731, 292, 19504), (88732, 292, 19519), (88733, 292, 19521), (88734, 292, 19552), (88735, 292, 19577), (88736, 292, 19590), (88737, 292, 19601), (88738, 292, 19628), (88739, 292, 19649), (88740, 292, 19654), (88741, 292, 19677), (88742, 292, 19700), (88743, 292, 19763), (88744, 292, 19802), (88745, 292, 19809), (88746, 292, 19854), (88747, 292, 19855), (88748, 292, 19866), (88749, 292, 19912), (88750, 292, 19967), (88751, 292, 20013), (88752, 292, 20024), (88753, 292, 20072), (88754, 292, 20194), (88755, 292, 20242), (88756, 292, 20279), (88757, 292, 20281), (88758, 292, 20335), (88759, 292, 20404), (88760, 292, 20427), (88761, 292, 20527), (88762, 292, 20556), (88763, 292, 20592), (88764, 292, 20672), (88765, 292, 20701), (88766, 292, 20728), (88767, 292, 20742), (88768, 292, 20862), (88769, 292, 20875), (88770, 292, 20880), (88771, 292, 20985), (88772, 292, 21075), (88773, 292, 21186), (88774, 292, 21194), (88775, 292, 21218), (88776, 292, 21232), (88777, 292, 21295), (88778, 292, 21300), (88779, 292, 21342), (88780, 292, 21374), (88781, 292, 21423), (88782, 292, 21467), (88783, 292, 21494), (88784, 292, 21795), (88785, 292, 21856), (88786, 292, 21879), (88787, 292, 21880), (88788, 292, 21917), (88789, 292, 21988), (88790, 292, 22022), (88791, 292, 22048), (88792, 292, 22062), (88793, 292, 22138), (88794, 292, 22150), (88795, 292, 22152), (88796, 292, 22169), (88797, 292, 22261), (88798, 292, 22262), (88799, 292, 22327), (88800, 292, 22425), (88801, 292, 22470), (88802, 292, 22509), (88803, 292, 22536), (88804, 292, 22560), (88805, 292, 22583), (88806, 292, 22653), (88807, 292, 22684), (88808, 292, 22706), (88809, 292, 22716), (88810, 292, 22731), (88811, 292, 22743), (88812, 292, 22765), (88813, 292, 22828), (88814, 292, 22886), (88815, 292, 22907), (88816, 292, 22915), (88817, 292, 22946), (88818, 292, 23005), (88819, 292, 23052), (88820, 292, 23067), (88821, 292, 23082), (88822, 292, 23107), (88823, 292, 23140), (88824, 292, 23142), (88825, 292, 23161), (88826, 292, 23181), (88827, 292, 23184), (88828, 292, 23202), (88829, 292, 23208), (88830, 292, 23218), (88831, 292, 23250), (88832, 292, 23363), (88833, 292, 23430), (88834, 292, 23469), (88835, 292, 23472), (88836, 292, 23484), (88837, 292, 23514), (88838, 292, 23516), (88839, 292, 23524), (88840, 292, 23558), (88841, 292, 23572), (88842, 292, 23618), (88843, 292, 23620), (88844, 292, 23634), (88845, 292, 23659), (88846, 292, 23698), (88847, 292, 23731), (88848, 292, 23748), (88849, 292, 23749), (88850, 292, 23750), (88851, 292, 23757), (88852, 292, 23787), (88853, 292, 23889), (88854, 292, 23901), (88855, 292, 23910), (88856, 292, 23981), (88857, 292, 24001), (88858, 292, 24165), (88859, 292, 24181), (88860, 292, 24200), (88861, 292, 24210), (88862, 292, 24339), (88863, 292, 24472), (88864, 292, 24605), (88865, 292, 24653), (88866, 292, 24654), (88867, 292, 24829), (88868, 292, 25028), (88869, 292, 25047), (88870, 292, 25051), (88871, 292, 25054), (88872, 292, 25137), (88873, 292, 25207), (89207, 293, 2), (89208, 293, 13), (89209, 293, 122), (89210, 293, 472), (89211, 293, 748), (89212, 293, 1073), (89213, 293, 1129), (89214, 293, 1155), (89215, 293, 1264), (89216, 293, 1407), (89217, 293, 1493), (89218, 293, 1686), (89219, 293, 1854), (89220, 293, 1911), (89221, 293, 2024), (89222, 293, 2211), (89223, 293, 2257), (89224, 293, 2277), (89225, 293, 2335), (89226, 293, 2513), (89227, 293, 2654), (89228, 293, 2665), (89229, 293, 2726), (89230, 293, 2792), (89231, 293, 2827), (89232, 293, 2863), (89233, 293, 2904), (89234, 293, 2937), (89235, 293, 3172), (89236, 293, 3196), (89237, 293, 3400), (89238, 293, 3489), (89239, 293, 3630), (89240, 293, 3643), (89241, 293, 3807), (89242, 293, 3846), (89243, 293, 3953), (89244, 293, 3987), (89245, 293, 4045), (89246, 293, 4074), (89247, 293, 4140), (89248, 293, 4141), (89249, 293, 4194), (89250, 293, 4260), (89251, 293, 4373), (89252, 293, 4375), (89253, 293, 4515), (89254, 293, 4525), (89255, 293, 4620), (89256, 293, 4940), (89257, 293, 4996), (89258, 293, 5019), (89259, 293, 5081), (89260, 293, 5086), (89261, 293, 5172), (89262, 293, 5321), (89263, 293, 5413), (89264, 293, 5429), (89265, 293, 5488), (89266, 293, 5587), (89267, 293, 5639), (89268, 293, 5666), (89269, 293, 5688), (89270, 293, 5701), (89271, 293, 5851), (89272, 293, 6010), (89273, 293, 6021), (89274, 293, 6098), (89275, 293, 6132), (89276, 293, 6171), (89277, 293, 6201), (89278, 293, 6248), (89279, 293, 6349), (89280, 293, 6375), (89281, 293, 6399), (89282, 293, 6456), (89283, 293, 6467), (89284, 293, 6475), (89285, 293, 6492), (89286, 293, 6509), (89287, 293, 6623), (89288, 293, 6702), (89289, 293, 6716), (89290, 293, 6735), (89291, 293, 6816), (89292, 293, 6894), (89293, 293, 6895), (89294, 293, 6910), (89295, 293, 7389), (89296, 293, 7564), (89297, 293, 7629), (89298, 293, 7635), (89299, 293, 7666), (89300, 293, 7697), (89301, 293, 7733), (89302, 293, 7786), (89303, 293, 7925), (89304, 293, 7926), (89305, 293, 7930), (89306, 293, 8072), (89307, 293, 8319), (89308, 293, 8324), (89309, 293, 8391), (89310, 293, 8572), (89311, 293, 8625), (89312, 293, 8879), (89313, 293, 8926), (89314, 293, 8969), (89315, 293, 8998), (89316, 293, 9026), (89317, 293, 9027), (89318, 293, 9128), (89319, 293, 9130), (89320, 293, 9135), (89321, 293, 9158), (89322, 293, 9194), (89323, 293, 9441), (89324, 293, 9462), (89325, 293, 9493), (89326, 293, 9522), (89327, 293, 9542), (89328, 293, 9622), (89329, 293, 9709), (89330, 293, 9741), (89331, 293, 9775), (89332, 293, 9786), (89333, 293, 9801), (89334, 293, 9819), (89335, 293, 9850), (89336, 293, 9884), (89337, 293, 9997), (89338, 293, 10162), (89339, 293, 10236), (89340, 293, 10260), (89341, 293, 10367), (89342, 293, 10454), (89343, 293, 10488), (89344, 293, 10703), (89345, 293, 10814), (89346, 293, 10877), (89347, 293, 10965), (89348, 293, 11026), (89349, 293, 11166), (89350, 293, 11205), (89351, 293, 11255), (89352, 293, 11475), (89353, 293, 11478), (89354, 293, 11500), (89355, 293, 11524), (89356, 293, 11651), (89357, 293, 11674), (89358, 293, 11714), (89359, 293, 11731), (89360, 293, 11762), (89361, 293, 11947), (89362, 293, 11968), (89363, 293, 12035), (89364, 293, 12539), (89365, 293, 12574), (89366, 293, 12579), (89367, 293, 12659), (89368, 293, 12718), (89369, 293, 12725), (89370, 293, 12727), (89371, 293, 12785), (89372, 293, 12851), (89373, 293, 12862), (89374, 293, 12940), (89375, 293, 12955), (89376, 293, 12994), (89377, 293, 12995), (89378, 293, 13058), (89379, 293, 13111), (89380, 293, 13112), (89381, 293, 13117), (89382, 293, 13211), (89383, 293, 13219), (89384, 293, 13277), (89385, 293, 13295), (89386, 293, 13329), (89387, 293, 13410), (89388, 293, 13461), (89389, 293, 13475), (89390, 293, 13693), (89391, 293, 13764), (89392, 293, 13883), (89393, 293, 14045), (89394, 293, 14175), (89395, 293, 14342), (89396, 293, 14343), (89397, 293, 14864), (89398, 293, 14876), (89399, 293, 14924), (89400, 293, 15059), (89401, 293, 15068), (89402, 293, 15131), (89403, 293, 15269), (89404, 293, 15334), (89405, 293, 15490), (89406, 293, 15562), (89407, 293, 15577), (89408, 293, 15783), (89409, 293, 15850), (89410, 293, 15914), (89411, 293, 15972), (89412, 293, 16089), (89413, 293, 16108), (89414, 293, 16252), (89415, 293, 16258), (89416, 293, 16313), (89417, 293, 16513), (89418, 293, 16537), (89419, 293, 16626), (89420, 293, 16685), (89421, 293, 16691), (89422, 293, 16804), (89423, 293, 16943), (89424, 293, 16947), (89425, 293, 16966), (89426, 293, 17125), (89427, 293, 17253), (89428, 293, 17439), (89429, 293, 17445), (89430, 293, 17500), (89431, 293, 17799), (89432, 293, 18014), (89433, 293, 18051), (89434, 293, 18287), (89435, 293, 18288), (89436, 293, 18312), (89437, 293, 18388), (89438, 293, 18604), (89439, 293, 18698), (89440, 293, 18801), (89441, 293, 19069), (89442, 293, 19147), (89443, 293, 19239), (89444, 293, 19298), (89445, 293, 19336), (89446, 293, 19337), (89447, 293, 19370), (89448, 293, 19379), (89449, 293, 19387), (89450, 293, 19689), (89451, 293, 19860), (89452, 293, 19983), (89453, 293, 20292), (89454, 293, 20351), (89455, 293, 20403), (89456, 293, 20412), (89457, 293, 20498), (89458, 293, 20548), (89459, 293, 20556), (89460, 293, 20882), (89461, 293, 21073), (89462, 293, 21076), (89463, 293, 21147), (89464, 293, 21422), (89465, 293, 21562), (89466, 293, 21680), (89467, 293, 21796), (89468, 293, 21930), (89469, 293, 21966), (89470, 293, 22074), (89471, 293, 22153), (89472, 293, 22170), (89473, 293, 22209), (89474, 293, 22219), (89475, 293, 22319), (89476, 293, 22376), (89477, 293, 22404), (89478, 293, 22472), (89479, 293, 22933), (89480, 293, 23155), (89481, 293, 23414), (89482, 293, 23431), (89483, 293, 23638), (89484, 293, 23728), (89485, 293, 23997), (89486, 293, 24449), (89487, 293, 24688), (89488, 293, 25042), (89489, 293, 25074), (89490, 293, 25116), (89491, 293, 25133), (89492, 293, 25198), (89718, 294, 1455), (89719, 294, 1569), (89720, 294, 2512), (89721, 294, 3024), (89722, 294, 3751), (89723, 294, 5535), (89724, 294, 5728), (89725, 294, 5732), (89726, 294, 5754), (89727, 294, 6584), (89728, 294, 6679), (89729, 294, 6696), (89730, 294, 7096), (89731, 294, 7799), (89732, 294, 7925), (89733, 294, 8071), (89734, 294, 8423), (89735, 294, 8635), (89736, 294, 8845), (89737, 294, 9608), (89738, 294, 9950), (89739, 294, 10448), (89740, 294, 11496), (89741, 294, 11754), (89742, 294, 11833), (89743, 294, 12076), (89744, 294, 12323), (89745, 294, 14510), (89746, 294, 15260), (89747, 294, 15532), (89748, 294, 16440), (89749, 294, 17236), (89750, 294, 17765), (89751, 294, 17831), (89752, 294, 19224), (89753, 294, 19505), (89754, 294, 20722), (89755, 294, 21073), (89781, 295, 240), (89782, 295, 309), (89783, 295, 319), (89784, 295, 323), (89785, 295, 326), (89786, 295, 338), (89787, 295, 353), (89788, 295, 495), (89789, 295, 574), (89790, 295, 617), (89791, 295, 723), (89792, 295, 731), (89793, 295, 762), (89794, 295, 948), (89795, 295, 974), (89796, 295, 1093), (89797, 295, 1139), (89798, 295, 1167), (89799, 295, 1169), (89800, 295, 1185), (89801, 295, 1190), (89802, 295, 1192), (89803, 295, 1224), (89804, 295, 1262), (89805, 295, 1282), (89806, 295, 1301), (89807, 295, 1352), (89808, 295, 1373), (89809, 295, 1380), (89810, 295, 1426), (89811, 295, 1516), (89812, 295, 1569), (89813, 295, 1635), (89814, 295, 1653), (89815, 295, 1655), (89816, 295, 1676), (89817, 295, 1686), (89818, 295, 1728), (89819, 295, 1769), (89820, 295, 1787), (89821, 295, 1833), (89822, 295, 1854), (89823, 295, 1904), (89824, 295, 1931), (89825, 295, 1964), (89826, 295, 1978), (89827, 295, 2026), (89828, 295, 2064), (89829, 295, 2092), (89830, 295, 2186), (89831, 295, 2210), (89832, 295, 2353), (89833, 295, 2368), (89834, 295, 2371), (89835, 295, 2397), (89836, 295, 2399), (89837, 295, 2405), (89838, 295, 2408), (89839, 295, 2421), (89840, 295, 2435), (89841, 295, 2447), (89842, 295, 2481), (89843, 295, 2593), (89844, 295, 2630), (89845, 295, 2669), (89846, 295, 2672), (89847, 295, 2702), (89848, 295, 2829), (89849, 295, 2836), (89850, 295, 2863), (89851, 295, 2885), (89852, 295, 2902), (89853, 295, 2927), (89854, 295, 2942), (89855, 295, 3003), (89856, 295, 3015), (89857, 295, 3063), (89858, 295, 3071), (89859, 295, 3090), (89860, 295, 3155), (89861, 295, 3174), (89862, 295, 3238), (89863, 295, 3241), (89864, 295, 3306), (89865, 295, 3473), (89866, 295, 3517), (89867, 295, 3523), (89868, 295, 3548), (89869, 295, 3556), (89870, 295, 3585), (89871, 295, 3662), (89872, 295, 3735), (89873, 295, 3736), (89874, 295, 3771), (89875, 295, 3861), (89876, 295, 3920), (89877, 295, 4001), (89878, 295, 4020), (89879, 295, 4043), (89880, 295, 4052), (89881, 295, 4079), (89882, 295, 4088), (89883, 295, 4148), (89884, 295, 4241), (89885, 295, 4255), (89886, 295, 4259), (89887, 295, 4297), (89888, 295, 4328), (89889, 295, 4366), (89890, 295, 4414), (89891, 295, 4425), (89892, 295, 4448), (89893, 295, 4519), (89894, 295, 4531), (89895, 295, 4576), (89896, 295, 4630), (89897, 295, 4677), (89898, 295, 4838), (89899, 295, 4850), (89900, 295, 4898), (89901, 295, 4906), (89902, 295, 4916), (89903, 295, 4959), (89904, 295, 4984), (89905, 295, 4985), (89906, 295, 5013), (89907, 295, 5064), (89908, 295, 5068), (89909, 295, 5117), (89910, 295, 5119), (89911, 295, 5128), (89912, 295, 5134), (89913, 295, 5174), (89914, 295, 5234), (89915, 295, 5273), (89916, 295, 5328), (89917, 295, 5348), (89918, 295, 5374), (89919, 295, 5377), (89920, 295, 5379), (89921, 295, 5418), (89922, 295, 5429), (89923, 295, 5432), (89924, 295, 5448), (89925, 295, 5452), (89926, 295, 5460), (89927, 295, 5537), (89928, 295, 5563), (89929, 295, 5609), (89930, 295, 5624), (89931, 295, 5751), (89932, 295, 5761), (89933, 295, 5769), (89934, 295, 5795), (89935, 295, 5805), (89936, 295, 5827), (89937, 295, 5840), (89938, 295, 5844), (89939, 295, 5856), (89940, 295, 5862), (89941, 295, 5909), (89942, 295, 5927), (89943, 295, 5928), (89944, 295, 5932), (89945, 295, 5939), (89946, 295, 5975), (89947, 295, 5979), (89948, 295, 6012), (89949, 295, 6017), (89950, 295, 6036), (89951, 295, 6055), (89952, 295, 6083), (89953, 295, 6180), (89954, 295, 6221), (89955, 295, 6238), (89956, 295, 6323), (89957, 295, 6345), (89958, 295, 6365), (89959, 295, 6366), (89960, 295, 6379), (89961, 295, 6380), (89962, 295, 6398), (89963, 295, 6399), (89964, 295, 6504), (89965, 295, 6592), (89966, 295, 6610), (89967, 295, 6612), (89968, 295, 6627), (89969, 295, 6647), (89970, 295, 6664), (89971, 295, 6735), (89972, 295, 6737), (89973, 295, 6781), (89974, 295, 6784), (89975, 295, 6847), (89976, 295, 6895), (89977, 295, 6952), (89978, 295, 6999), (89979, 295, 7056), (89980, 295, 7148), (89981, 295, 7157), (89982, 295, 7163), (89983, 295, 7180), (89984, 295, 7218), (89985, 295, 7273), (89986, 295, 7278), (89987, 295, 7296), (89988, 295, 7338), (89989, 295, 7480), (89990, 295, 7517), (89991, 295, 7551), (89992, 295, 7618), (89993, 295, 7717), (89994, 295, 7720), (89995, 295, 7727); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (89996, 295, 7738), (89997, 295, 7752), (89998, 295, 7762), (89999, 295, 7820), (90000, 295, 7849), (90001, 295, 7899), (90002, 295, 7901), (90003, 295, 7925), (90004, 295, 7928), (90005, 295, 7942), (90006, 295, 7999), (90007, 295, 8002), (90008, 295, 8044), (90009, 295, 8056), (90010, 295, 8108), (90011, 295, 8177), (90012, 295, 8238), (90013, 295, 8239), (90014, 295, 8288), (90015, 295, 8313), (90016, 295, 8317), (90017, 295, 8327), (90018, 295, 8342), (90019, 295, 8389), (90020, 295, 8408), (90021, 295, 8423), (90022, 295, 8432), (90023, 295, 8433), (90024, 295, 8476), (90025, 295, 8493), (90026, 295, 8508), (90027, 295, 8512), (90028, 295, 8554), (90029, 295, 8555), (90030, 295, 8613), (90031, 295, 8643), (90032, 295, 8649), (90033, 295, 8654), (90034, 295, 8657), (90035, 295, 8665), (90036, 295, 8676), (90037, 295, 8697), (90038, 295, 8702), (90039, 295, 8709), (90040, 295, 8720), (90041, 295, 8741), (90042, 295, 8756), (90043, 295, 8784), (90044, 295, 8793), (90045, 295, 8827), (90046, 295, 8828), (90047, 295, 8935), (90048, 295, 8949), (90049, 295, 8964), (90050, 295, 9036), (90051, 295, 9039), (90052, 295, 9093), (90053, 295, 9097), (90054, 295, 9128), (90055, 295, 9207), (90056, 295, 9215), (90057, 295, 9217), (90058, 295, 9226), (90059, 295, 9229), (90060, 295, 9264), (90061, 295, 9269), (90062, 295, 9297), (90063, 295, 9299), (90064, 295, 9309), (90065, 295, 9349), (90066, 295, 9397), (90067, 295, 9402), (90068, 295, 9457), (90069, 295, 9481), (90070, 295, 9531), (90071, 295, 9532), (90072, 295, 9546), (90073, 295, 9559), (90074, 295, 9562), (90075, 295, 9665), (90076, 295, 9709), (90077, 295, 9778), (90078, 295, 9811), (90079, 295, 9826), (90080, 295, 9833), (90081, 295, 9842), (90082, 295, 9844), (90083, 295, 9850), (90084, 295, 9851), (90085, 295, 9900), (90086, 295, 9904), (90087, 295, 9911), (90088, 295, 10001), (90089, 295, 10009), (90090, 295, 10024), (90091, 295, 10040), (90092, 295, 10061), (90093, 295, 10099), (90094, 295, 10123), (90095, 295, 10124), (90096, 295, 10153), (90097, 295, 10198), (90098, 295, 10249), (90099, 295, 10254), (90100, 295, 10291), (90101, 295, 10293), (90102, 295, 10323), (90103, 295, 10326), (90104, 295, 10363), (90105, 295, 10392), (90106, 295, 10409), (90107, 295, 10420), (90108, 295, 10433), (90109, 295, 10474), (90110, 295, 10497), (90111, 295, 10539), (90112, 295, 10564), (90113, 295, 10573), (90114, 295, 10629), (90115, 295, 10641), (90116, 295, 10681), (90117, 295, 10692), (90118, 295, 10736), (90119, 295, 10806), (90120, 295, 10837), (90121, 295, 10875), (90122, 295, 10890), (90123, 295, 10911), (90124, 295, 10919), (90125, 295, 10946), (90126, 295, 10996), (90127, 295, 10997), (90128, 295, 11056), (90129, 295, 11072), (90130, 295, 11081), (90131, 295, 11122), (90132, 295, 11148), (90133, 295, 11165), (90134, 295, 11170), (90135, 295, 11217), (90136, 295, 11218), (90137, 295, 11271), (90138, 295, 11308), (90139, 295, 11314), (90140, 295, 11409), (90141, 295, 11443), (90142, 295, 11460), (90143, 295, 11467), (90144, 295, 11516), (90145, 295, 11561), (90146, 295, 11611), (90147, 295, 11622), (90148, 295, 11629), (90149, 295, 11671), (90150, 295, 11755), (90151, 295, 11760), (90152, 295, 11793), (90153, 295, 11805), (90154, 295, 11825), (90155, 295, 11835), (90156, 295, 11853), (90157, 295, 11857), (90158, 295, 11868), (90159, 295, 11882), (90160, 295, 11898), (90161, 295, 11937), (90162, 295, 11942), (90163, 295, 11947), (90164, 295, 11965), (90165, 295, 11973), (90166, 295, 12048), (90167, 295, 12089), (90168, 295, 12119), (90169, 295, 12122), (90170, 295, 12131), (90171, 295, 12132), (90172, 295, 12151), (90173, 295, 12152), (90174, 295, 12154), (90175, 295, 12158), (90176, 295, 12167), (90177, 295, 12193), (90178, 295, 12207), (90179, 295, 12210), (90180, 295, 12280), (90181, 295, 12291), (90182, 295, 12323), (90183, 295, 12331), (90184, 295, 12342), (90185, 295, 12343), (90186, 295, 12370), (90187, 295, 12379), (90188, 295, 12380), (90189, 295, 12384), (90190, 295, 12400), (90191, 295, 12404), (90192, 295, 12414), (90193, 295, 12417), (90194, 295, 12423), (90195, 295, 12453), (90196, 295, 12496), (90197, 295, 12547), (90198, 295, 12597), (90199, 295, 12620), (90200, 295, 12709), (90201, 295, 12725), (90202, 295, 12760), (90203, 295, 12774), (90204, 295, 12789), (90205, 295, 12831), (90206, 295, 12838), (90207, 295, 12896), (90208, 295, 12901), (90209, 295, 12915), (90210, 295, 12941), (90211, 295, 12983), (90212, 295, 12986), (90213, 295, 12987), (90214, 295, 12991), (90215, 295, 13047), (90216, 295, 13054), (90217, 295, 13092), (90218, 295, 13097), (90219, 295, 13152), (90220, 295, 13168), (90221, 295, 13170), (90222, 295, 13172), (90223, 295, 13184), (90224, 295, 13207), (90225, 295, 13218), (90226, 295, 13250), (90227, 295, 13285), (90228, 295, 13308), (90229, 295, 13321), (90230, 295, 13405), (90231, 295, 13411), (90232, 295, 13473), (90233, 295, 13483), (90234, 295, 13584), (90235, 295, 13586), (90236, 295, 13609), (90237, 295, 13657), (90238, 295, 13693), (90239, 295, 13711), (90240, 295, 13737), (90241, 295, 13746), (90242, 295, 13824), (90243, 295, 13839), (90244, 295, 13850), (90245, 295, 13889), (90246, 295, 13933), (90247, 295, 14048), (90248, 295, 14061), (90249, 295, 14136), (90250, 295, 14138), (90251, 295, 14142), (90252, 295, 14164), (90253, 295, 14166), (90254, 295, 14206), (90255, 295, 14245), (90256, 295, 14288), (90257, 295, 14322), (90258, 295, 14336), (90259, 295, 14340), (90260, 295, 14411), (90261, 295, 14472), (90262, 295, 14519), (90263, 295, 14585), (90264, 295, 14591), (90265, 295, 14616), (90266, 295, 14634), (90267, 295, 14636), (90268, 295, 14665), (90269, 295, 14666), (90270, 295, 14673), (90271, 295, 14677), (90272, 295, 14715), (90273, 295, 14823), (90274, 295, 14882), (90275, 295, 14883), (90276, 295, 14886), (90277, 295, 14892), (90278, 295, 14978), (90279, 295, 14986), (90280, 295, 14990), (90281, 295, 15024), (90282, 295, 15038), (90283, 295, 15041), (90284, 295, 15082), (90285, 295, 15086), (90286, 295, 15091), (90287, 295, 15116), (90288, 295, 15183), (90289, 295, 15207), (90290, 295, 15254), (90291, 295, 15265), (90292, 295, 15321), (90293, 295, 15344), (90294, 295, 15347), (90295, 295, 15363), (90296, 295, 15378), (90297, 295, 15392), (90298, 295, 15432), (90299, 295, 15442), (90300, 295, 15462), (90301, 295, 15471), (90302, 295, 15510), (90303, 295, 15527), (90304, 295, 15533), (90305, 295, 15566), (90306, 295, 15576), (90307, 295, 15591), (90308, 295, 15596), (90309, 295, 15605), (90310, 295, 15607), (90311, 295, 15644), (90312, 295, 15646), (90313, 295, 15709), (90314, 295, 15717), (90315, 295, 15734), (90316, 295, 15763), (90317, 295, 15779), (90318, 295, 15785), (90319, 295, 15795), (90320, 295, 15838), (90321, 295, 15873), (90322, 295, 15934), (90323, 295, 15951), (90324, 295, 15972), (90325, 295, 16030), (90326, 295, 16065), (90327, 295, 16123), (90328, 295, 16135), (90329, 295, 16140), (90330, 295, 16152), (90331, 295, 16181), (90332, 295, 16195), (90333, 295, 16208), (90334, 295, 16217), (90335, 295, 16252), (90336, 295, 16258), (90337, 295, 16260), (90338, 295, 16267), (90339, 295, 16295), (90340, 295, 16304), (90341, 295, 16397), (90342, 295, 16402), (90343, 295, 16431), (90344, 295, 16517), (90345, 295, 16555), (90346, 295, 16564), (90347, 295, 16566), (90348, 295, 16605), (90349, 295, 16630), (90350, 295, 16631), (90351, 295, 16677), (90352, 295, 16679), (90353, 295, 16727), (90354, 295, 16729), (90355, 295, 16749), (90356, 295, 16772), (90357, 295, 16790), (90358, 295, 16863), (90359, 295, 16880), (90360, 295, 16892), (90361, 295, 16908), (90362, 295, 16916), (90363, 295, 16945), (90364, 295, 16957), (90365, 295, 16969), (90366, 295, 16984), (90367, 295, 16995), (90368, 295, 17005), (90369, 295, 17027), (90370, 295, 17028), (90371, 295, 17050), (90372, 295, 17100), (90373, 295, 17102), (90374, 295, 17116), (90375, 295, 17139), (90376, 295, 17154), (90377, 295, 17184), (90378, 295, 17246), (90379, 295, 17255), (90380, 295, 17263), (90381, 295, 17280), (90382, 295, 17285), (90383, 295, 17301), (90384, 295, 17317), (90385, 295, 17323), (90386, 295, 17338), (90387, 295, 17380), (90388, 295, 17396), (90389, 295, 17419), (90390, 295, 17440), (90391, 295, 17445), (90392, 295, 17448), (90393, 295, 17529), (90394, 295, 17530), (90395, 295, 17563), (90396, 295, 17574), (90397, 295, 17576), (90398, 295, 17597), (90399, 295, 17611), (90400, 295, 17616), (90401, 295, 17652), (90402, 295, 17696), (90403, 295, 17736), (90404, 295, 17751), (90405, 295, 17795), (90406, 295, 17801), (90407, 295, 17812), (90408, 295, 17824), (90409, 295, 17826), (90410, 295, 17833), (90411, 295, 17883), (90412, 295, 17890), (90413, 295, 17912), (90414, 295, 17921), (90415, 295, 17944), (90416, 295, 17945), (90417, 295, 17958), (90418, 295, 18024), (90419, 295, 18031), (90420, 295, 18039), (90421, 295, 18064), (90422, 295, 18069), (90423, 295, 18108), (90424, 295, 18120), (90425, 295, 18121), (90426, 295, 18134), (90427, 295, 18135), (90428, 295, 18146), (90429, 295, 18154), (90430, 295, 18179), (90431, 295, 18182), (90432, 295, 18183), (90433, 295, 18201), (90434, 295, 18202), (90435, 295, 18214), (90436, 295, 18260), (90437, 295, 18272), (90438, 295, 18287), (90439, 295, 18299), (90440, 295, 18305), (90441, 295, 18311), (90442, 295, 18344), (90443, 295, 18347), (90444, 295, 18348), (90445, 295, 18349), (90446, 295, 18387), (90447, 295, 18440), (90448, 295, 18443), (90449, 295, 18446), (90450, 295, 18456), (90451, 295, 18479), (90452, 295, 18501), (90453, 295, 18507), (90454, 295, 18522), (90455, 295, 18525), (90456, 295, 18558), (90457, 295, 18575), (90458, 295, 18577), (90459, 295, 18601), (90460, 295, 18621), (90461, 295, 18644), (90462, 295, 18706), (90463, 295, 18708), (90464, 295, 18727), (90465, 295, 18736), (90466, 295, 18743), (90467, 295, 18744), (90468, 295, 18776), (90469, 295, 18782), (90470, 295, 18783), (90471, 295, 18836), (90472, 295, 18964), (90473, 295, 18966), (90474, 295, 18973), (90475, 295, 18996), (90476, 295, 19002), (90477, 295, 19017), (90478, 295, 19020), (90479, 295, 19030), (90480, 295, 19044), (90481, 295, 19081), (90482, 295, 19096), (90483, 295, 19098), (90484, 295, 19135), (90485, 295, 19146), (90486, 295, 19173), (90487, 295, 19188), (90488, 295, 19215), (90489, 295, 19223), (90490, 295, 19224), (90491, 295, 19265), (90492, 295, 19270), (90493, 295, 19299), (90494, 295, 19311), (90495, 295, 19400), (90496, 295, 19401), (90497, 295, 19415), (90498, 295, 19424), (90499, 295, 19472), (90500, 295, 19495), (90501, 295, 19496), (90502, 295, 19497), (90503, 295, 19507), (90504, 295, 19520), (90505, 295, 19533), (90506, 295, 19538), (90507, 295, 19551), (90508, 295, 19557), (90509, 295, 19581), (90510, 295, 19585), (90511, 295, 19586), (90512, 295, 19628), (90513, 295, 19667), (90514, 295, 19688), (90515, 295, 19704), (90516, 295, 19761), (90517, 295, 19778), (90518, 295, 19780), (90519, 295, 19788), (90520, 295, 19801), (90521, 295, 19809), (90522, 295, 19826), (90523, 295, 19836), (90524, 295, 19853), (90525, 295, 19933), (90526, 295, 20014), (90527, 295, 20035), (90528, 295, 20039), (90529, 295, 20053), (90530, 295, 20057), (90531, 295, 20067), (90532, 295, 20071), (90533, 295, 20072), (90534, 295, 20077), (90535, 295, 20096), (90536, 295, 20100), (90537, 295, 20101), (90538, 295, 20113), (90539, 295, 20147), (90540, 295, 20148), (90541, 295, 20170), (90542, 295, 20197), (90543, 295, 20200), (90544, 295, 20205), (90545, 295, 20208), (90546, 295, 20211), (90547, 295, 20212), (90548, 295, 20228), (90549, 295, 20231), (90550, 295, 20236), (90551, 295, 20242), (90552, 295, 20246), (90553, 295, 20257), (90554, 295, 20269), (90555, 295, 20279), (90556, 295, 20281), (90557, 295, 20307), (90558, 295, 20308), (90559, 295, 20332), (90560, 295, 20333), (90561, 295, 20335), (90562, 295, 20381), (90563, 295, 20454), (90564, 295, 20461), (90565, 295, 20467), (90566, 295, 20537), (90567, 295, 20559), (90568, 295, 20565), (90569, 295, 20570), (90570, 295, 20584), (90571, 295, 20589), (90572, 295, 20608), (90573, 295, 20614), (90574, 295, 20629), (90575, 295, 20652), (90576, 295, 20682), (90577, 295, 20742), (90578, 295, 20773), (90579, 295, 20792), (90580, 295, 20809), (90581, 295, 20857), (90582, 295, 20870), (90583, 295, 20875), (90584, 295, 20886), (90585, 295, 20902), (90586, 295, 20942), (90587, 295, 20959), (90588, 295, 21009), (90589, 295, 21098), (90590, 295, 21133), (90591, 295, 21163), (90592, 295, 21205), (90593, 295, 21236), (90594, 295, 21336), (90595, 295, 21361), (90596, 295, 21375), (90597, 295, 21396), (90598, 295, 21435), (90599, 295, 21460), (90600, 295, 21478), (90601, 295, 21489), (90602, 295, 21520), (90603, 295, 21542), (90604, 295, 21578), (90605, 295, 21644), (90606, 295, 21680), (90607, 295, 21701), (90608, 295, 21702), (90609, 295, 21724), (90610, 295, 21732), (90611, 295, 21749), (90612, 295, 21770), (90613, 295, 21781), (90614, 295, 21795), (90615, 295, 21846), (90616, 295, 21847), (90617, 295, 21865), (90618, 295, 21895), (90619, 295, 21921), (90620, 295, 21932), (90621, 295, 21935), (90622, 295, 21943), (90623, 295, 21946), (90624, 295, 21947), (90625, 295, 21949), (90626, 295, 21950), (90627, 295, 21957), (90628, 295, 21964), (90629, 295, 21973), (90630, 295, 21975), (90631, 295, 22024), (90632, 295, 22057), (90633, 295, 22093), (90634, 295, 22107), (90635, 295, 22108), (90636, 295, 22112), (90637, 295, 22136), (90638, 295, 22143), (90639, 295, 22146), (90640, 295, 22148), (90641, 295, 22158), (90642, 295, 22198), (90643, 295, 22218), (90644, 295, 22219), (90645, 295, 22245), (90646, 295, 22253), (90647, 295, 22256), (90648, 295, 22257), (90649, 295, 22259), (90650, 295, 22287), (90651, 295, 22307), (90652, 295, 22330), (90653, 295, 22333), (90654, 295, 22351), (90655, 295, 22365), (90656, 295, 22369), (90657, 295, 22372), (90658, 295, 22384), (90659, 295, 22426), (90660, 295, 22434), (90661, 295, 22514), (90662, 295, 22520), (90663, 295, 22521), (90664, 295, 22552), (90665, 295, 22563), (90666, 295, 22583), (90667, 295, 22585), (90668, 295, 22590), (90669, 295, 22598), (90670, 295, 22660), (90671, 295, 22666), (90672, 295, 22669), (90673, 295, 22686), (90674, 295, 22812), (90675, 295, 22816), (90676, 295, 22834), (90677, 295, 22866), (90678, 295, 22888), (90679, 295, 22911), (90680, 295, 22915), (90681, 295, 22922), (90682, 295, 22924), (90683, 295, 22946), (90684, 295, 22972), (90685, 295, 22974), (90686, 295, 22993), (90687, 295, 23003), (90688, 295, 23013), (90689, 295, 23017), (90690, 295, 23052), (90691, 295, 23082), (90692, 295, 23095), (90693, 295, 23154), (90694, 295, 23163), (90695, 295, 23195), (90696, 295, 23205), (90697, 295, 23218), (90698, 295, 23279), (90699, 295, 23301), (90700, 295, 23342), (90701, 295, 23345), (90702, 295, 23372), (90703, 295, 23383), (90704, 295, 23384), (90705, 295, 23429), (90706, 295, 23430), (90707, 295, 23462), (90708, 295, 23483), (90709, 295, 23494), (90710, 295, 23498), (90711, 295, 23524), (90712, 295, 23530), (90713, 295, 23531), (90714, 295, 23539), (90715, 295, 23559), (90716, 295, 23560), (90717, 295, 23597), (90718, 295, 23604), (90719, 295, 23612), (90720, 295, 23633), (90721, 295, 23642), (90722, 295, 23648), (90723, 295, 23679), (90724, 295, 23685), (90725, 295, 23686), (90726, 295, 23690), (90727, 295, 23692), (90728, 295, 23719), (90729, 295, 23737), (90730, 295, 23757), (90731, 295, 23780), (90732, 295, 23811), (90733, 295, 23825), (90734, 295, 23837), (90735, 295, 23937), (90736, 295, 23946), (90737, 295, 23955), (90738, 295, 23963), (90739, 295, 23972), (90740, 295, 23979), (90741, 295, 24001), (90742, 295, 24011), (90743, 295, 24064), (90744, 295, 24079), (90745, 295, 24081), (90746, 295, 24140), (90747, 295, 24144), (90748, 295, 24160), (90749, 295, 24170), (90750, 295, 24182), (90751, 295, 24183), (90752, 295, 24220), (90753, 295, 24225), (90754, 295, 24250), (90755, 295, 24324), (90756, 295, 24351), (90757, 295, 24428), (90758, 295, 24458), (90759, 295, 24483), (90760, 295, 24535), (90761, 295, 24562), (90762, 295, 24570), (90763, 295, 24575), (90764, 295, 24659), (90765, 295, 24662), (90766, 295, 24757), (90767, 295, 24793), (90768, 295, 24794), (90769, 295, 24837), (90770, 295, 24859), (90771, 295, 24950), (90772, 295, 24962), (90773, 295, 24976), (90774, 295, 25009), (90775, 295, 25041), (90776, 295, 25043), (90777, 295, 25047), (90778, 295, 25056), (90779, 295, 25097), (90780, 295, 25107), (90781, 295, 25145), (90782, 295, 25153), (90783, 295, 25160), (90784, 295, 25183), (90785, 295, 25188), (90786, 295, 25194), (90804, 296, 481), (90805, 296, 541), (90806, 296, 698), (90807, 296, 717), (90808, 296, 848), (90809, 296, 1071), (90810, 296, 1169), (90811, 296, 1370), (90812, 296, 1459), (90813, 296, 1970), (90814, 296, 2418), (90815, 296, 2638), (90816, 296, 2829), (90817, 296, 2862), (90818, 296, 3066), (90819, 296, 3133), (90820, 296, 3161), (90821, 296, 3703), (90822, 296, 3929), (90823, 296, 4214), (90824, 296, 4300), (90825, 296, 4452), (90826, 296, 4869), (90827, 296, 5019), (90828, 296, 5020), (90829, 296, 5029), (90830, 296, 5120), (90831, 296, 5221), (90832, 296, 5316), (90833, 296, 5432), (90834, 296, 5695), (90835, 296, 6099), (90836, 296, 6491), (90837, 296, 6771), (90838, 296, 6772), (90839, 296, 6787), (90840, 296, 6889), (90841, 296, 6977), (90842, 296, 7113), (90843, 296, 7234), (90844, 296, 7444), (90845, 296, 7893), (90846, 296, 7985), (90847, 296, 8138), (90848, 296, 8454), (90849, 296, 8467), (90850, 296, 8513), (90851, 296, 8532), (90852, 296, 8607), (90853, 296, 8790), (90854, 296, 8869), (90855, 296, 8907), (90856, 296, 9098), (90857, 296, 9117), (90858, 296, 9390), (90859, 296, 9533), (90860, 296, 9557), (90861, 296, 9595), (90862, 296, 9748), (90863, 296, 9806), (90864, 296, 9842), (90865, 296, 9889), (90866, 296, 10132), (90867, 296, 10176), (90868, 296, 10272), (90869, 296, 10399), (90870, 296, 10412), (90871, 296, 10623), (90872, 296, 10719), (90873, 296, 10728), (90874, 296, 10793), (90875, 296, 10824), (90876, 296, 10900), (90877, 296, 10982), (90878, 296, 11043), (90879, 296, 11169), (90880, 296, 11220), (90881, 296, 11446), (90882, 296, 11542), (90883, 296, 11588), (90884, 296, 11603), (90885, 296, 11729), (90886, 296, 11744), (90887, 296, 11761), (90888, 296, 11802), (90889, 296, 11837), (90890, 296, 11861), (90891, 296, 12011), (90892, 296, 12024), (90893, 296, 12137), (90894, 296, 12368), (90895, 296, 12399), (90896, 296, 12506), (90897, 296, 12746), (90898, 296, 12789), (90899, 296, 12790), (90900, 296, 12837), (90901, 296, 12979), (90902, 296, 12985), (90903, 296, 13023), (90904, 296, 13137), (90905, 296, 13314), (90906, 296, 13437), (90907, 296, 13479), (90908, 296, 13512), (90909, 296, 13601), (90910, 296, 13631), (90911, 296, 13917), (90912, 296, 13945), (90913, 296, 14021), (90914, 296, 14090), (90915, 296, 14332), (90916, 296, 14518), (90917, 296, 14536), (90918, 296, 14579), (90919, 296, 14761), (90920, 296, 14774), (90921, 296, 14960), (90922, 296, 15092), (90923, 296, 15125), (90924, 296, 15168), (90925, 296, 15253), (90926, 296, 15299), (90927, 296, 15437), (90928, 296, 15538), (90929, 296, 15552), (90930, 296, 15585), (90931, 296, 15871), (90932, 296, 16006), (90933, 296, 16053), (90934, 296, 16148), (90935, 296, 16192), (90936, 296, 16363), (90937, 296, 16414), (90938, 296, 16661), (90939, 296, 16910), (90940, 296, 17152), (90941, 296, 17320), (90942, 296, 17708), (90943, 296, 17753), (90944, 296, 17802), (90945, 296, 17808), (90946, 296, 17991), (90947, 296, 18004), (90948, 296, 18071), (90949, 296, 18085), (90950, 296, 18104), (90951, 296, 18135), (90952, 296, 18170), (90953, 296, 18171), (90954, 296, 18231), (90955, 296, 18308), (90956, 296, 18317), (90957, 296, 18377), (90958, 296, 18596), (90959, 296, 18631), (90960, 296, 18641), (90961, 296, 18709), (90962, 296, 18871), (90963, 296, 18929), (90964, 296, 19007), (90965, 296, 19100), (90966, 296, 19169), (90967, 296, 19227), (90968, 296, 19256), (90969, 296, 19367), (90970, 296, 19433), (90971, 296, 19663), (90972, 296, 19730), (90973, 296, 19791), (90974, 296, 19816), (90975, 296, 19856), (90976, 296, 19958), (90977, 296, 19963), (90978, 296, 19986), (90979, 296, 20093), (90980, 296, 20250), (90981, 296, 20326), (90982, 296, 20350), (90983, 296, 20411), (90984, 296, 20518), (90985, 296, 20743), (90986, 296, 20802), (90987, 296, 20916), (90988, 296, 21041), (90989, 296, 21101), (90990, 296, 21290), (90991, 296, 21335), (90992, 296, 21503), (90993, 296, 21560), (90994, 296, 21617), (90995, 296, 21655), (90996, 296, 21663), (90997, 296, 21668), (90998, 296, 21724), (90999, 296, 21930), (91000, 296, 22015), (91001, 296, 22017), (91002, 296, 22200), (91003, 296, 22222), (91004, 296, 22455), (91005, 296, 22500), (91006, 296, 22505), (91007, 296, 22563), (91008, 296, 22564), (91009, 296, 22714), (91010, 296, 22893), (91011, 296, 22937), (91012, 296, 22955), (91013, 296, 23120), (91014, 296, 23147), (91015, 296, 23398), (91016, 296, 23486), (91017, 296, 23576), (91018, 296, 23904), (91019, 296, 23975), (91020, 296, 23982), (91021, 296, 23989), (91022, 296, 24075), (91023, 296, 24199), (91024, 296, 24263), (91025, 296, 24285), (91026, 296, 24287), (91027, 296, 24376), (91028, 296, 24377), (91029, 296, 24652), (91030, 296, 24864), (91031, 296, 24933), (91032, 296, 24955), (91033, 296, 24989), (91059, 297, 6), (91060, 297, 627), (91061, 297, 827), (91062, 297, 1015), (91063, 297, 2024), (91064, 297, 2472), (91065, 297, 2665), (91066, 297, 3795), (91067, 297, 3920), (91068, 297, 4045), (91069, 297, 4266), (91070, 297, 4343), (91071, 297, 4378), (91072, 297, 5189), (91073, 297, 5320), (91074, 297, 5823), (91075, 297, 5918), (91076, 297, 6464), (91077, 297, 7786), (91078, 297, 7800), (91079, 297, 8601), (91080, 297, 9019), (91081, 297, 9072), (91082, 297, 9130), (91083, 297, 9180), (91084, 297, 9292), (91085, 297, 9303), (91086, 297, 9786), (91087, 297, 9793), (91088, 297, 10303), (91089, 297, 10339), (91090, 297, 10659), (91091, 297, 10948), (91092, 297, 11788), (91093, 297, 12115), (91094, 297, 12497), (91095, 297, 12610), (91096, 297, 12994), (91097, 297, 13455), (91098, 297, 13757), (91099, 297, 13867), (91100, 297, 14139), (91101, 297, 14159), (91102, 297, 14455), (91103, 297, 15059), (91104, 297, 16333), (91105, 297, 16744), (91106, 297, 17056), (91107, 297, 17312), (91108, 297, 17445), (91109, 297, 17896), (91110, 297, 18880), (91111, 297, 19239), (91112, 297, 21166), (91113, 297, 23128), (91122, 298, 383), (91123, 298, 424), (91124, 298, 491), (91125, 298, 670), (91126, 298, 932), (91127, 298, 943), (91128, 298, 1041), (91129, 298, 1084), (91130, 298, 1096), (91131, 298, 1127), (91132, 298, 1203), (91133, 298, 1275), (91134, 298, 1310), (91135, 298, 1363), (91136, 298, 1404), (91137, 298, 1663), (91138, 298, 1664), (91139, 298, 1682), (91140, 298, 1699), (91141, 298, 1824), (91142, 298, 1844), (91143, 298, 1947), (91144, 298, 1949), (91145, 298, 2010), (91146, 298, 2119), (91147, 298, 2297), (91148, 298, 2298), (91149, 298, 2312), (91150, 298, 2403), (91151, 298, 2414), (91152, 298, 2428), (91153, 298, 2724), (91154, 298, 2733), (91155, 298, 2815), (91156, 298, 2869), (91157, 298, 2929), (91158, 298, 2947), (91159, 298, 2988), (91160, 298, 2993), (91161, 298, 3145), (91162, 298, 3156), (91163, 298, 3215), (91164, 298, 3228), (91165, 298, 3258), (91166, 298, 3261), (91167, 298, 3277), (91168, 298, 3420), (91169, 298, 3458), (91170, 298, 3459), (91171, 298, 3564), (91172, 298, 3590), (91173, 298, 3637), (91174, 298, 3648), (91175, 298, 3654), (91176, 298, 3706), (91177, 298, 3713), (91178, 298, 3734), (91179, 298, 3892), (91180, 298, 3912), (91181, 298, 3923), (91182, 298, 3937), (91183, 298, 4007), (91184, 298, 4053), (91185, 298, 4098), (91186, 298, 4201), (91187, 298, 4291), (91188, 298, 4292), (91189, 298, 4327), (91190, 298, 4359), (91191, 298, 4364), (91192, 298, 4438), (91193, 298, 4441), (91194, 298, 4544), (91195, 298, 4565), (91196, 298, 4586), (91197, 298, 4631), (91198, 298, 4648), (91199, 298, 4680), (91200, 298, 4986), (91201, 298, 5005), (91202, 298, 5021), (91203, 298, 5131), (91204, 298, 5148), (91205, 298, 5224), (91206, 298, 5376), (91207, 298, 5454), (91208, 298, 5501), (91209, 298, 5606), (91210, 298, 5638), (91211, 298, 5696), (91212, 298, 5742), (91213, 298, 5833), (91214, 298, 5968), (91215, 298, 6032), (91216, 298, 6057), (91217, 298, 6069), (91218, 298, 6112), (91219, 298, 6148), (91220, 298, 6191), (91221, 298, 6206), (91222, 298, 6222), (91223, 298, 6292), (91224, 298, 6377), (91225, 298, 6514), (91226, 298, 6562), (91227, 298, 6573), (91228, 298, 6597), (91229, 298, 6739), (91230, 298, 6810), (91231, 298, 6819), (91232, 298, 6828), (91233, 298, 6946), (91234, 298, 7387), (91235, 298, 7404), (91236, 298, 7526), (91237, 298, 7658), (91238, 298, 7713), (91239, 298, 7814), (91240, 298, 7878), (91241, 298, 7961), (91242, 298, 8073), (91243, 298, 8214), (91244, 298, 8216), (91245, 298, 8249), (91246, 298, 8336), (91247, 298, 8360), (91248, 298, 8392), (91249, 298, 8395), (91250, 298, 8419), (91251, 298, 8570), (91252, 298, 8645), (91253, 298, 8648), (91254, 298, 8713), (91255, 298, 8726), (91256, 298, 8761), (91257, 298, 8878), (91258, 298, 8902), (91259, 298, 8966), (91260, 298, 9133), (91261, 298, 9166), (91262, 298, 9280), (91263, 298, 9319), (91264, 298, 9409), (91265, 298, 9439), (91266, 298, 9475), (91267, 298, 9501), (91268, 298, 9505), (91269, 298, 9636), (91270, 298, 9668), (91271, 298, 9692), (91272, 298, 9695), (91273, 298, 9752), (91274, 298, 9849), (91275, 298, 9917), (91276, 298, 9930), (91277, 298, 9944), (91278, 298, 10022), (91279, 298, 10152), (91280, 298, 10196), (91281, 298, 10215), (91282, 298, 10242), (91283, 298, 10255), (91284, 298, 10327), (91285, 298, 10490), (91286, 298, 10509), (91287, 298, 10530), (91288, 298, 10649), (91289, 298, 10718), (91290, 298, 10735), (91291, 298, 10741), (91292, 298, 10795), (91293, 298, 10826), (91294, 298, 10863), (91295, 298, 10889), (91296, 298, 10903), (91297, 298, 10908), (91298, 298, 11034), (91299, 298, 11049), (91300, 298, 11101), (91301, 298, 11139), (91302, 298, 11238), (91303, 298, 11266), (91304, 298, 11327), (91305, 298, 11386), (91306, 298, 11399), (91307, 298, 11437), (91308, 298, 11463), (91309, 298, 11509), (91310, 298, 11570), (91311, 298, 11631), (91312, 298, 11665), (91313, 298, 11816), (91314, 298, 11924), (91315, 298, 11929), (91316, 298, 12021), (91317, 298, 12033), (91318, 298, 12085), (91319, 298, 12113), (91320, 298, 12128), (91321, 298, 12171), (91322, 298, 12184), (91323, 298, 12235), (91324, 298, 12236), (91325, 298, 12271), (91326, 298, 12285), (91327, 298, 12377), (91328, 298, 12437), (91329, 298, 12502), (91330, 298, 12516), (91331, 298, 12603), (91332, 298, 12670), (91333, 298, 12734), (91334, 298, 12735), (91335, 298, 12768), (91336, 298, 12790), (91337, 298, 12817), (91338, 298, 12856), (91339, 298, 12858), (91340, 298, 12868), (91341, 298, 12977), (91342, 298, 13167), (91343, 298, 13177), (91344, 298, 13198), (91345, 298, 13205), (91346, 298, 13292), (91347, 298, 13322), (91348, 298, 13327), (91349, 298, 13434), (91350, 298, 13456), (91351, 298, 13470), (91352, 298, 13472), (91353, 298, 13492), (91354, 298, 13513), (91355, 298, 13555), (91356, 298, 13572), (91357, 298, 13597), (91358, 298, 13632), (91359, 298, 13646), (91360, 298, 13663), (91361, 298, 13675), (91362, 298, 13800), (91363, 298, 13833), (91364, 298, 13890), (91365, 298, 13910), (91366, 298, 13919), (91367, 298, 13932), (91368, 298, 13973), (91369, 298, 13999), (91370, 298, 14057), (91371, 298, 14077), (91372, 298, 14093), (91373, 298, 14162), (91374, 298, 14179), (91375, 298, 14186), (91376, 298, 14218), (91377, 298, 14304), (91378, 298, 14344), (91379, 298, 14441), (91380, 298, 14481), (91381, 298, 14490), (91382, 298, 14495), (91383, 298, 14513), (91384, 298, 14622), (91385, 298, 14718), (91386, 298, 14722), (91387, 298, 14806), (91388, 298, 14815), (91389, 298, 14880), (91390, 298, 14960), (91391, 298, 15048), (91392, 298, 15087), (91393, 298, 15111), (91394, 298, 15153), (91395, 298, 15172), (91396, 298, 15190), (91397, 298, 15219), (91398, 298, 15229), (91399, 298, 15306), (91400, 298, 15311), (91401, 298, 15387), (91402, 298, 15418), (91403, 298, 15449), (91404, 298, 15472), (91405, 298, 15482), (91406, 298, 15484), (91407, 298, 15525), (91408, 298, 15583), (91409, 298, 15618), (91410, 298, 15624), (91411, 298, 15655), (91412, 298, 15729), (91413, 298, 15743), (91414, 298, 15748), (91415, 298, 15769), (91416, 298, 15772), (91417, 298, 15798), (91418, 298, 15880), (91419, 298, 15890), (91420, 298, 15900), (91421, 298, 15921), (91422, 298, 15952), (91423, 298, 15974), (91424, 298, 16020), (91425, 298, 16052), (91426, 298, 16071), (91427, 298, 16160), (91428, 298, 16178), (91429, 298, 16205), (91430, 298, 16236), (91431, 298, 16261), (91432, 298, 16271), (91433, 298, 16306), (91434, 298, 16339), (91435, 298, 16352), (91436, 298, 16358), (91437, 298, 16413), (91438, 298, 16415), (91439, 298, 16416), (91440, 298, 16424), (91441, 298, 16448), (91442, 298, 16449), (91443, 298, 16488), (91444, 298, 16507), (91445, 298, 16509), (91446, 298, 16553), (91447, 298, 16554), (91448, 298, 16568), (91449, 298, 16573), (91450, 298, 16575), (91451, 298, 16615), (91452, 298, 16675), (91453, 298, 16692), (91454, 298, 16699), (91455, 298, 16720), (91456, 298, 16784), (91457, 298, 16848), (91458, 298, 16885), (91459, 298, 16907), (91460, 298, 16953), (91461, 298, 16998), (91462, 298, 17038), (91463, 298, 17045), (91464, 298, 17067), (91465, 298, 17080), (91466, 298, 17172), (91467, 298, 17221), (91468, 298, 17274), (91469, 298, 17284), (91470, 298, 17327), (91471, 298, 17347), (91472, 298, 17358), (91473, 298, 17368), (91474, 298, 17389), (91475, 298, 17390), (91476, 298, 17466), (91477, 298, 17496), (91478, 298, 17501), (91479, 298, 17504), (91480, 298, 17508), (91481, 298, 17514), (91482, 298, 17525), (91483, 298, 17583), (91484, 298, 17618), (91485, 298, 17649), (91486, 298, 17650), (91487, 298, 17654), (91488, 298, 17712), (91489, 298, 17770), (91490, 298, 17841), (91491, 298, 17876), (91492, 298, 17913), (91493, 298, 17952), (91494, 298, 17953), (91495, 298, 17993), (91496, 298, 18001), (91497, 298, 18010), (91498, 298, 18015), (91499, 298, 18019), (91500, 298, 18063), (91501, 298, 18068), (91502, 298, 18071), (91503, 298, 18073), (91504, 298, 18087), (91505, 298, 18094), (91506, 298, 18099), (91507, 298, 18100), (91508, 298, 18102), (91509, 298, 18113), (91510, 298, 18126), (91511, 298, 18211), (91512, 298, 18294), (91513, 298, 18330), (91514, 298, 18351), (91515, 298, 18374), (91516, 298, 18399), (91517, 298, 18402), (91518, 298, 18414), (91519, 298, 18454), (91520, 298, 18459), (91521, 298, 18469), (91522, 298, 18480), (91523, 298, 18485), (91524, 298, 18505), (91525, 298, 18506), (91526, 298, 18514), (91527, 298, 18533), (91528, 298, 18537), (91529, 298, 18538), (91530, 298, 18544), (91531, 298, 18586), (91532, 298, 18587), (91533, 298, 18606), (91534, 298, 18632), (91535, 298, 18635), (91536, 298, 18640), (91537, 298, 18665), (91538, 298, 18684), (91539, 298, 18685), (91540, 298, 18704), (91541, 298, 18721), (91542, 298, 18802), (91543, 298, 18805), (91544, 298, 18822), (91545, 298, 18865), (91546, 298, 19049), (91547, 298, 19065), (91548, 298, 19088), (91549, 298, 19090), (91550, 298, 19091), (91551, 298, 19145), (91552, 298, 19154), (91553, 298, 19171), (91554, 298, 19179), (91555, 298, 19205), (91556, 298, 19340), (91557, 298, 19341), (91558, 298, 19399), (91559, 298, 19402), (91560, 298, 19409), (91561, 298, 19494), (91562, 298, 19553), (91563, 298, 19558), (91564, 298, 19589), (91565, 298, 19604), (91566, 298, 19611), (91567, 298, 19618), (91568, 298, 19674), (91569, 298, 19686), (91570, 298, 19717), (91571, 298, 19718), (91572, 298, 19735), (91573, 298, 19764), (91574, 298, 19781), (91575, 298, 19827), (91576, 298, 19837), (91577, 298, 19841), (91578, 298, 19864), (91579, 298, 19881), (91580, 298, 19890), (91581, 298, 19950), (91582, 298, 19953), (91583, 298, 20004), (91584, 298, 20005), (91585, 298, 20038), (91586, 298, 20054), (91587, 298, 20055), (91588, 298, 20063), (91589, 298, 20088), (91590, 298, 20124), (91591, 298, 20191), (91592, 298, 20238), (91593, 298, 20278), (91594, 298, 20308), (91595, 298, 20313), (91596, 298, 20314), (91597, 298, 20346), (91598, 298, 20355), (91599, 298, 20357), (91600, 298, 20358), (91601, 298, 20360), (91602, 298, 20387), (91603, 298, 20390), (91604, 298, 20440), (91605, 298, 20443), (91606, 298, 20445), (91607, 298, 20450), (91608, 298, 20480), (91609, 298, 20495), (91610, 298, 20521), (91611, 298, 20526), (91612, 298, 20540), (91613, 298, 20567), (91614, 298, 20585), (91615, 298, 20590), (91616, 298, 20602), (91617, 298, 20604), (91618, 298, 20636), (91619, 298, 20645), (91620, 298, 20648), (91621, 298, 20673), (91622, 298, 20677), (91623, 298, 20678), (91624, 298, 20690), (91625, 298, 20693), (91626, 298, 20696), (91627, 298, 20724), (91628, 298, 20725), (91629, 298, 20749), (91630, 298, 20770), (91631, 298, 20788), (91632, 298, 20803), (91633, 298, 20851), (91634, 298, 20852), (91635, 298, 20867), (91636, 298, 20874), (91637, 298, 20899), (91638, 298, 20921), (91639, 298, 20925), (91640, 298, 20970), (91641, 298, 20976), (91642, 298, 20977), (91643, 298, 20996), (91644, 298, 21007), (91645, 298, 21011), (91646, 298, 21043), (91647, 298, 21064), (91648, 298, 21081), (91649, 298, 21083), (91650, 298, 21085), (91651, 298, 21103), (91652, 298, 21124), (91653, 298, 21138), (91654, 298, 21149), (91655, 298, 21150), (91656, 298, 21161), (91657, 298, 21174), (91658, 298, 21177), (91659, 298, 21182), (91660, 298, 21183), (91661, 298, 21252), (91662, 298, 21274), (91663, 298, 21279), (91664, 298, 21298), (91665, 298, 21319), (91666, 298, 21327), (91667, 298, 21346), (91668, 298, 21354), (91669, 298, 21366), (91670, 298, 21378), (91671, 298, 21446), (91672, 298, 21457), (91673, 298, 21495), (91674, 298, 21496), (91675, 298, 21502), (91676, 298, 21511), (91677, 298, 21524), (91678, 298, 21532), (91679, 298, 21539), (91680, 298, 21547), (91681, 298, 21563), (91682, 298, 21574), (91683, 298, 21582), (91684, 298, 21586), (91685, 298, 21587), (91686, 298, 21593), (91687, 298, 21600), (91688, 298, 21607), (91689, 298, 21608), (91690, 298, 21630), (91691, 298, 21672), (91692, 298, 21687), (91693, 298, 21693), (91694, 298, 21726), (91695, 298, 21741), (91696, 298, 21742), (91697, 298, 21759), (91698, 298, 21762), (91699, 298, 21778), (91700, 298, 21779), (91701, 298, 21804), (91702, 298, 21827), (91703, 298, 21857), (91704, 298, 21867), (91705, 298, 21877), (91706, 298, 21894), (91707, 298, 21906), (91708, 298, 21909), (91709, 298, 21983), (91710, 298, 21996), (91711, 298, 22004), (91712, 298, 22016), (91713, 298, 22019), (91714, 298, 22032), (91715, 298, 22044), (91716, 298, 22066), (91717, 298, 22067), (91718, 298, 22068), (91719, 298, 22078), (91720, 298, 22087), (91721, 298, 22088), (91722, 298, 22092), (91723, 298, 22094), (91724, 298, 22102), (91725, 298, 22106), (91726, 298, 22121), (91727, 298, 22126), (91728, 298, 22140), (91729, 298, 22162), (91730, 298, 22168), (91731, 298, 22176), (91732, 298, 22208), (91733, 298, 22221), (91734, 298, 22240), (91735, 298, 22242), (91736, 298, 22246), (91737, 298, 22253), (91738, 298, 22263), (91739, 298, 22278), (91740, 298, 22281), (91741, 298, 22299), (91742, 298, 22300), (91743, 298, 22302), (91744, 298, 22303), (91745, 298, 22305), (91746, 298, 22321), (91747, 298, 22323), (91748, 298, 22325), (91749, 298, 22337), (91750, 298, 22379), (91751, 298, 22395), (91752, 298, 22399), (91753, 298, 22407), (91754, 298, 22408), (91755, 298, 22410), (91756, 298, 22419), (91757, 298, 22447), (91758, 298, 22455), (91759, 298, 22469), (91760, 298, 22474), (91761, 298, 22479), (91762, 298, 22489), (91763, 298, 22522), (91764, 298, 22524), (91765, 298, 22548), (91766, 298, 22549), (91767, 298, 22561), (91768, 298, 22566), (91769, 298, 22570), (91770, 298, 22574), (91771, 298, 22593), (91772, 298, 22597), (91773, 298, 22598), (91774, 298, 22613), (91775, 298, 22616), (91776, 298, 22633), (91777, 298, 22635), (91778, 298, 22646), (91779, 298, 22647), (91780, 298, 22697), (91781, 298, 22703), (91782, 298, 22705), (91783, 298, 22709), (91784, 298, 22724), (91785, 298, 22753), (91786, 298, 22755), (91787, 298, 22796), (91788, 298, 22802), (91789, 298, 22804), (91790, 298, 22815), (91791, 298, 22835), (91792, 298, 22841), (91793, 298, 22853), (91794, 298, 22862), (91795, 298, 22893), (91796, 298, 22916), (91797, 298, 22917), (91798, 298, 22941), (91799, 298, 22979), (91800, 298, 22980), (91801, 298, 22981), (91802, 298, 22982), (91803, 298, 22984), (91804, 298, 22990), (91805, 298, 22991), (91806, 298, 23000), (91807, 298, 23015), (91808, 298, 23042), (91809, 298, 23055), (91810, 298, 23079), (91811, 298, 23083), (91812, 298, 23101), (91813, 298, 23102), (91814, 298, 23130), (91815, 298, 23131), (91816, 298, 23134), (91817, 298, 23153), (91818, 298, 23180), (91819, 298, 23196), (91820, 298, 23210), (91821, 298, 23243), (91822, 298, 23246), (91823, 298, 23281), (91824, 298, 23287), (91825, 298, 23293), (91826, 298, 23304), (91827, 298, 23315), (91828, 298, 23323), (91829, 298, 23326), (91830, 298, 23330), (91831, 298, 23331), (91832, 298, 23349), (91833, 298, 23360), (91834, 298, 23370), (91835, 298, 23371), (91836, 298, 23390), (91837, 298, 23413), (91838, 298, 23420), (91839, 298, 23425), (91840, 298, 23427), (91841, 298, 23461), (91842, 298, 23473), (91843, 298, 23504), (91844, 298, 23506), (91845, 298, 23509), (91846, 298, 23510), (91847, 298, 23511), (91848, 298, 23543), (91849, 298, 23552), (91850, 298, 23581), (91851, 298, 23582), (91852, 298, 23583), (91853, 298, 23623), (91854, 298, 23626), (91855, 298, 23628), (91856, 298, 23672), (91857, 298, 23673), (91858, 298, 23682), (91859, 298, 23689), (91860, 298, 23695), (91861, 298, 23699), (91862, 298, 23700), (91863, 298, 23716), (91864, 298, 23725), (91865, 298, 23779), (91866, 298, 23788), (91867, 298, 23792), (91868, 298, 23796), (91869, 298, 23797), (91870, 298, 23804), (91871, 298, 23813), (91872, 298, 23818), (91873, 298, 23819), (91874, 298, 23824), (91875, 298, 23832), (91876, 298, 23841), (91877, 298, 23854), (91878, 298, 23870), (91879, 298, 23874), (91880, 298, 23875), (91881, 298, 23882), (91882, 298, 23885), (91883, 298, 23887), (91884, 298, 23917), (91885, 298, 23919), (91886, 298, 23920), (91887, 298, 23923), (91888, 298, 23924), (91889, 298, 23943), (91890, 298, 23947), (91891, 298, 23965), (91892, 298, 23969), (91893, 298, 24005), (91894, 298, 24006), (91895, 298, 24008), (91896, 298, 24026), (91897, 298, 24031), (91898, 298, 24039), (91899, 298, 24047), (91900, 298, 24069), (91901, 298, 24077), (91902, 298, 24114), (91903, 298, 24125), (91904, 298, 24156), (91905, 298, 24174), (91906, 298, 24185), (91907, 298, 24191), (91908, 298, 24192), (91909, 298, 24199), (91910, 298, 24224), (91911, 298, 24227), (91912, 298, 24228), (91913, 298, 24264), (91914, 298, 24265), (91915, 298, 24268), (91916, 298, 24278), (91917, 298, 24292), (91918, 298, 24293), (91919, 298, 24303), (91920, 298, 24315), (91921, 298, 24327), (91922, 298, 24341), (91923, 298, 24342), (91924, 298, 24359), (91925, 298, 24369), (91926, 298, 24375), (91927, 298, 24389), (91928, 298, 24393), (91929, 298, 24402), (91930, 298, 24405), (91931, 298, 24406), (91932, 298, 24427), (91933, 298, 24432), (91934, 298, 24433), (91935, 298, 24454), (91936, 298, 24460), (91937, 298, 24461), (91938, 298, 24463), (91939, 298, 24465), (91940, 298, 24470), (91941, 298, 24476), (91942, 298, 24477), (91943, 298, 24478), (91944, 298, 24493), (91945, 298, 24500), (91946, 298, 24503), (91947, 298, 24523), (91948, 298, 24549), (91949, 298, 24550), (91950, 298, 24551), (91951, 298, 24552), (91952, 298, 24592), (91953, 298, 24619), (91954, 298, 24624), (91955, 298, 24626), (91956, 298, 24638), (91957, 298, 24642), (91958, 298, 24645), (91959, 298, 24646), (91960, 298, 24655), (91961, 298, 24682), (91962, 298, 24686), (91963, 298, 24719), (91964, 298, 24732), (91965, 298, 24734), (91966, 298, 24736), (91967, 298, 24737), (91968, 298, 24745), (91969, 298, 24746), (91970, 298, 24756), (91971, 298, 24770), (91972, 298, 24777), (91973, 298, 24784), (91974, 298, 24791), (91975, 298, 24798), (91976, 298, 24817), (91977, 298, 24836), (91978, 298, 24846), (91979, 298, 24872), (91980, 298, 24884), (91981, 298, 24890), (91982, 298, 24907), (91983, 298, 24926), (91984, 298, 24948), (91985, 298, 24951), (91986, 298, 24956), (91987, 298, 24973), (91988, 298, 24974), (91989, 298, 25059), (91990, 298, 25146), (91991, 298, 25168), (91992, 298, 25175), (91993, 298, 25208), (91994, 298, 25214), (91995, 298, 25219), (91996, 298, 25220), (92145, 299, 187), (92146, 299, 216), (92147, 299, 240), (92148, 299, 380), (92149, 299, 524), (92150, 299, 660), (92151, 299, 706), (92152, 299, 726), (92153, 299, 762), (92154, 299, 778), (92155, 299, 925), (92156, 299, 941), (92157, 299, 944), (92158, 299, 1061), (92159, 299, 1072), (92160, 299, 1073), (92161, 299, 1079), (92162, 299, 1395), (92163, 299, 1438), (92164, 299, 1630), (92165, 299, 1661), (92166, 299, 1918), (92167, 299, 1993), (92168, 299, 2092), (92169, 299, 2135), (92170, 299, 2234), (92171, 299, 2390), (92172, 299, 2465), (92173, 299, 2554), (92174, 299, 2608), (92175, 299, 2737), (92176, 299, 2740), (92177, 299, 2824), (92178, 299, 2880), (92179, 299, 3118), (92180, 299, 3135), (92181, 299, 3138), (92182, 299, 3174), (92183, 299, 3245), (92184, 299, 3270), (92185, 299, 3320), (92186, 299, 3408), (92187, 299, 3545), (92188, 299, 3669), (92189, 299, 3693), (92190, 299, 3811), (92191, 299, 3886), (92192, 299, 4001), (92193, 299, 4088), (92194, 299, 4405), (92195, 299, 4420), (92196, 299, 4472), (92197, 299, 4630), (92198, 299, 4800), (92199, 299, 4807), (92200, 299, 4981), (92201, 299, 5049), (92202, 299, 5064), (92203, 299, 5072), (92204, 299, 5396), (92205, 299, 5426), (92206, 299, 5580), (92207, 299, 5599), (92208, 299, 5672), (92209, 299, 5819), (92210, 299, 5870), (92211, 299, 6024), (92212, 299, 6036), (92213, 299, 6039), (92214, 299, 6049), (92215, 299, 6072), (92216, 299, 6115), (92217, 299, 6238), (92218, 299, 6332), (92219, 299, 6365), (92220, 299, 6392), (92221, 299, 6463), (92222, 299, 6490), (92223, 299, 6612), (92224, 299, 6628), (92225, 299, 6700), (92226, 299, 6811), (92227, 299, 6839), (92228, 299, 6999), (92229, 299, 7087), (92230, 299, 7291), (92231, 299, 7304), (92232, 299, 7331), (92233, 299, 7425), (92234, 299, 7470), (92235, 299, 7698), (92236, 299, 7776), (92237, 299, 7788), (92238, 299, 7930), (92239, 299, 8108), (92240, 299, 8177), (92241, 299, 8242), (92242, 299, 8251), (92243, 299, 8284), (92244, 299, 8317), (92245, 299, 8363), (92246, 299, 8432), (92247, 299, 8476), (92248, 299, 8508), (92249, 299, 8610), (92250, 299, 8741), (92251, 299, 8750), (92252, 299, 8852), (92253, 299, 8862), (92254, 299, 8897), (92255, 299, 8927), (92256, 299, 8934), (92257, 299, 9024), (92258, 299, 9037), (92259, 299, 9080), (92260, 299, 9097), (92261, 299, 9144), (92262, 299, 9172), (92263, 299, 9182), (92264, 299, 9185), (92265, 299, 9221), (92266, 299, 9287), (92267, 299, 9288), (92268, 299, 9293), (92269, 299, 9365), (92270, 299, 9372), (92271, 299, 9418), (92272, 299, 9423), (92273, 299, 9489), (92274, 299, 9531), (92275, 299, 9678), (92276, 299, 9702), (92277, 299, 9839), (92278, 299, 9886), (92279, 299, 9912), (92280, 299, 9923), (92281, 299, 10011), (92282, 299, 10038), (92283, 299, 10061), (92284, 299, 10074), (92285, 299, 10081), (92286, 299, 10136), (92287, 299, 10147), (92288, 299, 10220), (92289, 299, 10301), (92290, 299, 10410), (92291, 299, 10496), (92292, 299, 10497), (92293, 299, 10547), (92294, 299, 10549), (92295, 299, 10574), (92296, 299, 10575), (92297, 299, 10591), (92298, 299, 10640), (92299, 299, 10681), (92300, 299, 10692), (92301, 299, 10720), (92302, 299, 10730), (92303, 299, 10801), (92304, 299, 10851), (92305, 299, 10960), (92306, 299, 11127), (92307, 299, 11156), (92308, 299, 11251), (92309, 299, 11254), (92310, 299, 11292), (92311, 299, 11357), (92312, 299, 11400), (92313, 299, 11408), (92314, 299, 11454), (92315, 299, 11467), (92316, 299, 11484), (92317, 299, 11561), (92318, 299, 11594), (92319, 299, 11611), (92320, 299, 11682), (92321, 299, 11825), (92322, 299, 11873), (92323, 299, 11874), (92324, 299, 11905), (92325, 299, 12070), (92326, 299, 12135), (92327, 299, 12143), (92328, 299, 12172), (92329, 299, 12207), (92330, 299, 12310), (92331, 299, 12414), (92332, 299, 12531), (92333, 299, 12596), (92334, 299, 12703), (92335, 299, 12779), (92336, 299, 12897), (92337, 299, 12907), (92338, 299, 12915), (92339, 299, 12934), (92340, 299, 12991), (92341, 299, 13024), (92342, 299, 13048), (92343, 299, 13164), (92344, 299, 13218), (92345, 299, 13321), (92346, 299, 13328), (92347, 299, 13342), (92348, 299, 13462), (92349, 299, 13498), (92350, 299, 13520), (92351, 299, 13531), (92352, 299, 13546), (92353, 299, 13550), (92354, 299, 13594), (92355, 299, 13598), (92356, 299, 13607), (92357, 299, 13696), (92358, 299, 13726), (92359, 299, 13792), (92360, 299, 13818), (92361, 299, 13839), (92362, 299, 13850), (92363, 299, 14050), (92364, 299, 14055), (92365, 299, 14070), (92366, 299, 14079), (92367, 299, 14088), (92368, 299, 14126), (92369, 299, 14135), (92370, 299, 14142), (92371, 299, 14157), (92372, 299, 14206), (92373, 299, 14286), (92374, 299, 14320), (92375, 299, 14363), (92376, 299, 14446), (92377, 299, 14449), (92378, 299, 14494), (92379, 299, 14634), (92380, 299, 14637), (92381, 299, 14666), (92382, 299, 14673), (92383, 299, 14681), (92384, 299, 14715), (92385, 299, 14747), (92386, 299, 14873), (92387, 299, 15055), (92388, 299, 15177), (92389, 299, 15204), (92390, 299, 15217), (92391, 299, 15235), (92392, 299, 15246), (92393, 299, 15254), (92394, 299, 15322), (92395, 299, 15344), (92396, 299, 15347), (92397, 299, 15405), (92398, 299, 15442), (92399, 299, 15548), (92400, 299, 15592), (92401, 299, 15622), (92402, 299, 15634), (92403, 299, 15681), (92404, 299, 15737), (92405, 299, 15776), (92406, 299, 15779), (92407, 299, 15784), (92408, 299, 15805), (92409, 299, 15809), (92410, 299, 15844), (92411, 299, 15858), (92412, 299, 15873), (92413, 299, 16078), (92414, 299, 16140), (92415, 299, 16145), (92416, 299, 16202), (92417, 299, 16208), (92418, 299, 16219), (92419, 299, 16245), (92420, 299, 16277), (92421, 299, 16323), (92422, 299, 16345), (92423, 299, 16386), (92424, 299, 16431), (92425, 299, 16483), (92426, 299, 16498), (92427, 299, 16543), (92428, 299, 16576), (92429, 299, 16612), (92430, 299, 16642), (92431, 299, 16683), (92432, 299, 16696), (92433, 299, 16897), (92434, 299, 16900), (92435, 299, 17020), (92436, 299, 17136), (92437, 299, 17173), (92438, 299, 17205), (92439, 299, 17228), (92440, 299, 17312), (92441, 299, 17380), (92442, 299, 17389), (92443, 299, 17396), (92444, 299, 17476), (92445, 299, 17576), (92446, 299, 17589), (92447, 299, 17633), (92448, 299, 17675), (92449, 299, 17702), (92450, 299, 17714), (92451, 299, 17748), (92452, 299, 17751), (92453, 299, 17777), (92454, 299, 17778), (92455, 299, 17793), (92456, 299, 17803), (92457, 299, 17836), (92458, 299, 17860), (92459, 299, 17869), (92460, 299, 17905), (92461, 299, 17926), (92462, 299, 18005), (92463, 299, 18024), (92464, 299, 18060), (92465, 299, 18062), (92466, 299, 18120), (92467, 299, 18121), (92468, 299, 18127), (92469, 299, 18149), (92470, 299, 18175), (92471, 299, 18183), (92472, 299, 18260), (92473, 299, 18272), (92474, 299, 18343), (92475, 299, 18350), (92476, 299, 18376), (92477, 299, 18405), (92478, 299, 18418), (92479, 299, 18428), (92480, 299, 18436), (92481, 299, 18449), (92482, 299, 18485), (92483, 299, 18494), (92484, 299, 18504), (92485, 299, 18536), (92486, 299, 18559), (92487, 299, 18575), (92488, 299, 18601), (92489, 299, 18634), (92490, 299, 18651), (92491, 299, 18660), (92492, 299, 18681), (92493, 299, 18699), (92494, 299, 18763), (92495, 299, 18772), (92496, 299, 18781), (92497, 299, 18792), (92498, 299, 18798), (92499, 299, 18808), (92500, 299, 18855), (92501, 299, 18912), (92502, 299, 18942), (92503, 299, 18948), (92504, 299, 18974), (92505, 299, 18977), (92506, 299, 18979), (92507, 299, 18990), (92508, 299, 18997), (92509, 299, 19012), (92510, 299, 19030), (92511, 299, 19039), (92512, 299, 19082), (92513, 299, 19196), (92514, 299, 19197), (92515, 299, 19234), (92516, 299, 19265), (92517, 299, 19279), (92518, 299, 19293), (92519, 299, 19346), (92520, 299, 19356), (92521, 299, 19424), (92522, 299, 19468), (92523, 299, 19475), (92524, 299, 19479), (92525, 299, 19538), (92526, 299, 19581), (92527, 299, 19607), (92528, 299, 19626), (92529, 299, 19691), (92530, 299, 19700), (92531, 299, 19701), (92532, 299, 19725), (92533, 299, 19761), (92534, 299, 19780), (92535, 299, 19803), (92536, 299, 19811), (92537, 299, 19825), (92538, 299, 19835), (92539, 299, 19848), (92540, 299, 19874), (92541, 299, 20077), (92542, 299, 20099), (92543, 299, 20105), (92544, 299, 20113), (92545, 299, 20140), (92546, 299, 20186), (92547, 299, 20234), (92548, 299, 20307), (92549, 299, 20429), (92550, 299, 20432), (92551, 299, 20454), (92552, 299, 20525), (92553, 299, 20538), (92554, 299, 20545), (92555, 299, 20556), (92556, 299, 20615), (92557, 299, 20682), (92558, 299, 20698), (92559, 299, 20720), (92560, 299, 20766), (92561, 299, 20868), (92562, 299, 20881), (92563, 299, 20902), (92564, 299, 20920), (92565, 299, 20981), (92566, 299, 20992), (92567, 299, 21014), (92568, 299, 21058), (92569, 299, 21126), (92570, 299, 21132), (92571, 299, 21154), (92572, 299, 21194), (92573, 299, 21209), (92574, 299, 21250), (92575, 299, 21345), (92576, 299, 21373), (92577, 299, 21426), (92578, 299, 21478), (92579, 299, 21488), (92580, 299, 21500), (92581, 299, 21528), (92582, 299, 21538), (92583, 299, 21576), (92584, 299, 21669), (92585, 299, 21718), (92586, 299, 21732), (92587, 299, 21743), (92588, 299, 21846), (92589, 299, 21860), (92590, 299, 21871), (92591, 299, 21911), (92592, 299, 21912), (92593, 299, 21946), (92594, 299, 21988), (92595, 299, 22062), (92596, 299, 22076), (92597, 299, 22136), (92598, 299, 22169), (92599, 299, 22219), (92600, 299, 22261), (92601, 299, 22279), (92602, 299, 22344), (92603, 299, 22359), (92604, 299, 22405), (92605, 299, 22415), (92606, 299, 22434), (92607, 299, 22476), (92608, 299, 22483), (92609, 299, 22520), (92610, 299, 22550), (92611, 299, 22605), (92612, 299, 22655), (92613, 299, 22701), (92614, 299, 22702), (92615, 299, 22715), (92616, 299, 22762), (92617, 299, 22763), (92618, 299, 22765), (92619, 299, 22834), (92620, 299, 22911), (92621, 299, 22960), (92622, 299, 23007), (92623, 299, 23008), (92624, 299, 23025), (92625, 299, 23042), (92626, 299, 23059), (92627, 299, 23077), (92628, 299, 23090), (92629, 299, 23142), (92630, 299, 23149), (92631, 299, 23165), (92632, 299, 23218), (92633, 299, 23245), (92634, 299, 23270), (92635, 299, 23302), (92636, 299, 23394), (92637, 299, 23400), (92638, 299, 23419), (92639, 299, 23498), (92640, 299, 23519), (92641, 299, 23523), (92642, 299, 23537), (92643, 299, 23543), (92644, 299, 23558), (92645, 299, 23559), (92646, 299, 23610), (92647, 299, 23633), (92648, 299, 23679), (92649, 299, 23719), (92650, 299, 23756), (92651, 299, 23789), (92652, 299, 23826), (92653, 299, 23837), (92654, 299, 23878), (92655, 299, 23955), (92656, 299, 24045), (92657, 299, 24064), (92658, 299, 24082), (92659, 299, 24140), (92660, 299, 24354), (92661, 299, 24390), (92662, 299, 24403), (92663, 299, 24735), (92664, 299, 24757), (92665, 299, 24807), (92666, 299, 24843), (92667, 299, 25031), (92668, 299, 25043), (92669, 299, 25107), (92670, 299, 25121), (92671, 299, 25180), (92672, 299, 25183), (92673, 299, 25218), (93168, 300, 32), (93169, 300, 358), (93170, 300, 659), (93171, 300, 744), (93172, 300, 783), (93173, 300, 857), (93174, 300, 1012), (93175, 300, 1079), (93176, 300, 1102), (93177, 300, 1635), (93178, 300, 1695), (93179, 300, 1936), (93180, 300, 1978), (93181, 300, 2256), (93182, 300, 2319), (93183, 300, 2353), (93184, 300, 2389), (93185, 300, 2421), (93186, 300, 2447), (93187, 300, 2525), (93188, 300, 2672), (93189, 300, 2778), (93190, 300, 2781), (93191, 300, 2904), (93192, 300, 3320), (93193, 300, 3413), (93194, 300, 3662), (93195, 300, 4354), (93196, 300, 4396), (93197, 300, 4471), (93198, 300, 4748), (93199, 300, 4808), (93200, 300, 5319), (93201, 300, 5361), (93202, 300, 5418), (93203, 300, 5424), (93204, 300, 5585), (93205, 300, 5609), (93206, 300, 5751), (93207, 300, 5844), (93208, 300, 6042), (93209, 300, 6093), (93210, 300, 6428), (93211, 300, 6460), (93212, 300, 7019), (93213, 300, 7768), (93214, 300, 7841), (93215, 300, 8138), (93216, 300, 8317), (93217, 300, 8362), (93218, 300, 8388), (93219, 300, 8457), (93220, 300, 8513), (93221, 300, 8580), (93222, 300, 8694), (93223, 300, 8793), (93224, 300, 9036), (93225, 300, 9060), (93226, 300, 9069), (93227, 300, 9287), (93228, 300, 9339), (93229, 300, 9387), (93230, 300, 9678), (93231, 300, 9819), (93232, 300, 9899), (93233, 300, 9933), (93234, 300, 10371), (93235, 300, 10585), (93236, 300, 10601), (93237, 300, 10629), (93238, 300, 11003), (93239, 300, 11178), (93240, 300, 11205), (93241, 300, 11260), (93242, 300, 11378), (93243, 300, 11544), (93244, 300, 11679), (93245, 300, 11741), (93246, 300, 11791), (93247, 300, 12094), (93248, 300, 12183), (93249, 300, 12186), (93250, 300, 12306), (93251, 300, 12456), (93252, 300, 12458), (93253, 300, 12524), (93254, 300, 12774), (93255, 300, 12812), (93256, 300, 12850), (93257, 300, 12987), (93258, 300, 13015), (93259, 300, 13103), (93260, 300, 13124), (93261, 300, 13211), (93262, 300, 13316), (93263, 300, 13405), (93264, 300, 13813), (93265, 300, 14063), (93266, 300, 14288), (93267, 300, 14330), (93268, 300, 14390), (93269, 300, 14455), (93270, 300, 14523), (93271, 300, 14995), (93272, 300, 15004), (93273, 300, 15120), (93274, 300, 15171), (93275, 300, 15359), (93276, 300, 15446), (93277, 300, 15481), (93278, 300, 15622), (93279, 300, 15691), (93280, 300, 15980), (93281, 300, 16003), (93282, 300, 16187), (93283, 300, 16229), (93284, 300, 16258), (93285, 300, 16267), (93286, 300, 16612), (93287, 300, 16749), (93288, 300, 17117), (93289, 300, 17388), (93290, 300, 17476), (93291, 300, 17547), (93292, 300, 17553), (93293, 300, 17554), (93294, 300, 17666), (93295, 300, 17959), (93296, 300, 18004), (93297, 300, 18347), (93298, 300, 18746), (93299, 300, 19020), (93300, 300, 19256), (93301, 300, 19278), (93302, 300, 19364), (93303, 300, 19500), (93304, 300, 19528), (93305, 300, 19689), (93306, 300, 19801), (93307, 300, 19803), (93308, 300, 20080), (93309, 300, 20170), (93310, 300, 20493), (93311, 300, 20538), (93312, 300, 20637), (93313, 300, 20753), (93314, 300, 22136), (93315, 300, 22385), (93316, 300, 22735), (93317, 300, 22878), (93318, 300, 23963), (93319, 300, 23972), (93320, 300, 24864), (93321, 300, 24962), (93322, 300, 25122), (93323, 300, 25183), (93423, 301, 196), (93424, 301, 706), (93425, 301, 986), (93426, 301, 2133), (93427, 301, 3332), (93428, 301, 3409), (93429, 301, 4022), (93430, 301, 4425), (93431, 301, 5059), (93432, 301, 5219), (93433, 301, 5234), (93434, 301, 5403), (93435, 301, 6090), (93436, 301, 6759), (93437, 301, 6895), (93438, 301, 7135), (93439, 301, 7499), (93440, 301, 8196), (93441, 301, 8423), (93442, 301, 8439), (93443, 301, 8548); INSERT INTO `journalcategory` (`idJournalcategory`, `category_idCategory`, `journal_idJournal`) VALUES (93444, 301, 8564), (93445, 301, 8741), (93446, 301, 9024), (93447, 301, 9037), (93448, 301, 9717), (93449, 301, 10291), (93450, 301, 10293), (93451, 301, 10496), (93452, 301, 10547), (93453, 301, 11148), (93454, 301, 11519), (93455, 301, 11608), (93456, 301, 12135), (93457, 301, 12143), (93458, 301, 12414), (93459, 301, 12596), (93460, 301, 12776), (93461, 301, 12914), (93462, 301, 13207), (93463, 301, 13285), (93464, 301, 13461), (93465, 301, 13594), (93466, 301, 13702), (93467, 301, 13850), (93468, 301, 13920), (93469, 301, 14506), (93470, 301, 15198), (93471, 301, 15652), (93472, 301, 15712), (93473, 301, 15785), (93474, 301, 16145), (93475, 301, 16498), (93476, 301, 17513), (93477, 301, 17890), (93478, 301, 18120), (93479, 301, 18146), (93480, 301, 18347), (93481, 301, 18565), (93482, 301, 18575), (93483, 301, 18699), (93484, 301, 19538), (93485, 301, 19545), (93486, 301, 19581), (93487, 301, 19688), (93488, 301, 19825), (93489, 301, 20426), (93490, 301, 20436), (93491, 301, 20525), (93492, 301, 20722), (93493, 301, 21130), (93494, 301, 21488), (93495, 301, 22101), (93496, 301, 22297), (93497, 301, 22960), (93498, 301, 23008), (93499, 301, 23275), (93500, 301, 23279), (93501, 301, 23756), (93502, 301, 23955), (93503, 301, 24970), (93504, 301, 25069), (93505, 301, 25137), (93506, 301, 25183), (93550, 302, 95), (93551, 302, 172), (93552, 302, 274), (93553, 302, 412), (93554, 302, 608), (93555, 302, 620), (93556, 302, 635), (93557, 302, 653), (93558, 302, 662), (93559, 302, 672), (93560, 302, 943), (93561, 302, 969), (93562, 302, 1018), (93563, 302, 1020), (93564, 302, 1199), (93565, 302, 1252), (93566, 302, 1308), (93567, 302, 1311), (93568, 302, 1384), (93569, 302, 1464), (93570, 302, 1497), (93571, 302, 1521), (93572, 302, 1655), (93573, 302, 1680), (93574, 302, 1851), (93575, 302, 1944), (93576, 302, 1961), (93577, 302, 1980), (93578, 302, 2006), (93579, 302, 2023), (93580, 302, 2162), (93581, 302, 2248), (93582, 302, 2257), (93583, 302, 2307), (93584, 302, 2335), (93585, 302, 2353), (93586, 302, 2408), (93587, 302, 2421), (93588, 302, 2554), (93589, 302, 2663), (93590, 302, 2829), (93591, 302, 2853), (93592, 302, 2893), (93593, 302, 3135), (93594, 302, 3241), (93595, 302, 3255), (93596, 302, 3358), (93597, 302, 3481), (93598, 302, 3524), (93599, 302, 3568), (93600, 302, 3669), (93601, 302, 3700), (93602, 302, 3728), (93603, 302, 3748), (93604, 302, 3795), (93605, 302, 3837), (93606, 302, 3937), (93607, 302, 3981), (93608, 302, 3998), (93609, 302, 4086), (93610, 302, 4090), (93611, 302, 4187), (93612, 302, 4220), (93613, 302, 4223), (93614, 302, 4234), (93615, 302, 4300), (93616, 302, 4343), (93617, 302, 4383), (93618, 302, 4423), (93619, 302, 4487), (93620, 302, 4599), (93621, 302, 4620), (93622, 302, 4735), (93623, 302, 4863), (93624, 302, 4960), (93625, 302, 5000), (93626, 302, 5152), (93627, 302, 5170), (93628, 302, 5226), (93629, 302, 5266), (93630, 302, 5413), (93631, 302, 5428), (93632, 302, 5431), (93633, 302, 5540), (93634, 302, 5559), (93635, 302, 5567), (93636, 302, 5689), (93637, 302, 5781), (93638, 302, 5786), (93639, 302, 5837), (93640, 302, 5906), (93641, 302, 5918), (93642, 302, 5984), (93643, 302, 5987), (93644, 302, 5997), (93645, 302, 6012), (93646, 302, 6065), (93647, 302, 6081), (93648, 302, 6154), (93649, 302, 6198), (93650, 302, 6199), (93651, 302, 6344), (93652, 302, 6430), (93653, 302, 6449), (93654, 302, 6688), (93655, 302, 6715), (93656, 302, 6754), (93657, 302, 6774), (93658, 302, 6817), (93659, 302, 6864), (93660, 302, 6988), (93661, 302, 7020), (93662, 302, 7063), (93663, 302, 7072), (93664, 302, 7082), (93665, 302, 7097), (93666, 302, 7122), (93667, 302, 7157), (93668, 302, 7184), (93669, 302, 7255), (93670, 302, 7354), (93671, 302, 7435), (93672, 302, 7652), (93673, 302, 7663), (93674, 302, 7675), (93675, 302, 7708), (93676, 302, 7998), (93677, 302, 8039), (93678, 302, 8043), (93679, 302, 8087), (93680, 302, 8113), (93681, 302, 8137), (93682, 302, 8184), (93683, 302, 8211), (93684, 302, 8439), (93685, 302, 8469), (93686, 302, 8506), (93687, 302, 8539), (93688, 302, 8620), (93689, 302, 8657), (93690, 302, 8822), (93691, 302, 8879), (93692, 302, 8884), (93693, 302, 8901), (93694, 302, 8969), (93695, 302, 9072), (93696, 302, 9242), (93697, 302, 9304), (93698, 302, 9329), (93699, 302, 9396), (93700, 302, 9402), (93701, 302, 9460), (93702, 302, 9462), (93703, 302, 9637), (93704, 302, 9673), (93705, 302, 9723), (93706, 302, 9733), (93707, 302, 9777), (93708, 302, 9817), (93709, 302, 9847), (93710, 302, 9892), (93711, 302, 9932), (93712, 302, 9951), (93713, 302, 10061), (93714, 302, 10091), (93715, 302, 10102), (93716, 302, 10124), (93717, 302, 10161), (93718, 302, 10162), (93719, 302, 10252), (93720, 302, 10258), (93721, 302, 10408), (93722, 302, 10415), (93723, 302, 10451), (93724, 302, 10471), (93725, 302, 10614), (93726, 302, 10684), (93727, 302, 10695), (93728, 302, 10708), (93729, 302, 10736), (93730, 302, 10760), (93731, 302, 10766), (93732, 302, 10807), (93733, 302, 10809), (93734, 302, 10882), (93735, 302, 10920), (93736, 302, 10958), (93737, 302, 11094), (93738, 302, 11121), (93739, 302, 11254), (93740, 302, 11356), (93741, 302, 11362), (93742, 302, 11443), (93743, 302, 11486), (93744, 302, 11493), (93745, 302, 11549), (93746, 302, 11663), (93747, 302, 11674), (93748, 302, 11751), (93749, 302, 11772), (93750, 302, 12075), (93751, 302, 12144), (93752, 302, 12178), (93753, 302, 12225), (93754, 302, 12229), (93755, 302, 12291), (93756, 302, 12324), (93757, 302, 12351), (93758, 302, 12370), (93759, 302, 12387), (93760, 302, 12434), (93761, 302, 12458), (93762, 302, 12508), (93763, 302, 12529), (93764, 302, 12593), (93765, 302, 12595), (93766, 302, 12630), (93767, 302, 12631), (93768, 302, 12637), (93769, 302, 12689), (93770, 302, 12704), (93771, 302, 12807), (93772, 302, 12862), (93773, 302, 12893), (93774, 302, 12897), (93775, 302, 13022), (93776, 302, 13024), (93777, 302, 13053), (93778, 302, 13076), (93779, 302, 13100), (93780, 302, 13111), (93781, 302, 13114), (93782, 302, 13142), (93783, 302, 13263), (93784, 302, 13289), (93785, 302, 13301), (93786, 302, 13342), (93787, 302, 13577), (93788, 302, 13582), (93789, 302, 13585), (93790, 302, 13630), (93791, 302, 13716), (93792, 302, 13738), (93793, 302, 13832), (93794, 302, 13868), (93795, 302, 13875), (93796, 302, 13952), (93797, 302, 14009), (93798, 302, 14021), (93799, 302, 14051), (93800, 302, 14061), (93801, 302, 14102), (93802, 302, 14129), (93803, 302, 14139), (93804, 302, 14175), (93805, 302, 14182), (93806, 302, 14185), (93807, 302, 14250), (93808, 302, 14315), (93809, 302, 14343), (93810, 302, 14374), (93811, 302, 14433), (93812, 302, 14489), (93813, 302, 14497), (93814, 302, 14505), (93815, 302, 14608), (93816, 302, 14637), (93817, 302, 14686), (93818, 302, 14694), (93819, 302, 14785), (93820, 302, 14792), (93821, 302, 14817), (93822, 302, 14832), (93823, 302, 14851), (93824, 302, 15002), (93825, 302, 15307), (93826, 302, 15339), (93827, 302, 15341), (93828, 302, 15342), (93829, 302, 15346), (93830, 302, 15459), (93831, 302, 15579), (93832, 302, 15621), (93833, 302, 15673), (93834, 302, 15766), (93835, 302, 15850), (93836, 302, 15955), (93837, 302, 15991), (93838, 302, 16018), (93839, 302, 16042), (93840, 302, 16070), (93841, 302, 16071), (93842, 302, 16095), (93843, 302, 16303), (93844, 302, 16370), (93845, 302, 16420), (93846, 302, 16462), (93847, 302, 16536), (93848, 302, 16581), (93849, 302, 16632), (93850, 302, 16760), (93851, 302, 16779), (93852, 302, 16839), (93853, 302, 16961), (93854, 302, 16977), (93855, 302, 17005), (93856, 302, 17006), (93857, 302, 17015), (93858, 302, 17022), (93859, 302, 17101), (93860, 302, 17125), (93861, 302, 17133), (93862, 302, 17135), (93863, 302, 17139), (93864, 302, 17180), (93865, 302, 17272), (93866, 302, 17313), (93867, 302, 17348), (93868, 302, 17383), (93869, 302, 17415), (93870, 302, 17428), (93871, 302, 17431), (93872, 302, 17485), (93873, 302, 17547), (93874, 302, 17561), (93875, 302, 17603), (93876, 302, 17622), (93877, 302, 17631), (93878, 302, 17643), (93879, 302, 17681), (93880, 302, 17697), (93881, 302, 17811), (93882, 302, 17831), (93883, 302, 17875), (93884, 302, 17883), (93885, 302, 17895), (93886, 302, 17910), (93887, 302, 17983), (93888, 302, 18005), (93889, 302, 18057), (93890, 302, 18064), (93891, 302, 18143), (93892, 302, 18145), (93893, 302, 18152), (93894, 302, 18179), (93895, 302, 18191), (93896, 302, 18205), (93897, 302, 18220), (93898, 302, 18377), (93899, 302, 18382), (93900, 302, 18467), (93901, 302, 18512), (93902, 302, 18555), (93903, 302, 18583), (93904, 302, 18600), (93905, 302, 18620), (93906, 302, 18686), (93907, 302, 18761), (93908, 302, 18774), (93909, 302, 18791), (93910, 302, 18891), (93911, 302, 18919), (93912, 302, 18923), (93913, 302, 18981), (93914, 302, 19000), (93915, 302, 19009), (93916, 302, 19010), (93917, 302, 19045), (93918, 302, 19047), (93919, 302, 19048), (93920, 302, 19087), (93921, 302, 19119), (93922, 302, 19142), (93923, 302, 19177), (93924, 302, 19207), (93925, 302, 19212), (93926, 302, 19215), (93927, 302, 19243), (93928, 302, 19295), (93929, 302, 19303), (93930, 302, 19343), (93931, 302, 19352), (93932, 302, 19353), (93933, 302, 19393), (93934, 302, 19409), (93935, 302, 19422), (93936, 302, 19453), (93937, 302, 19482), (93938, 302, 19546), (93939, 302, 19585), (93940, 302, 19621), (93941, 302, 19622), (93942, 302, 19644), (93943, 302, 19658), (93944, 302, 19711), (93945, 302, 19715), (93946, 302, 19720), (93947, 302, 19805), (93948, 302, 19832), (93949, 302, 19881), (93950, 302, 19901), (93951, 302, 19949), (93952, 302, 19951), (93953, 302, 19970), (93954, 302, 20010), (93955, 302, 20031), (93956, 302, 20058), (93957, 302, 20086), (93958, 302, 20310), (93959, 302, 20332), (93960, 302, 20401), (93961, 302, 20402), (93962, 302, 20403), (93963, 302, 20409), (93964, 302, 20519), (93965, 302, 20556), (93966, 302, 20563), (93967, 302, 20603), (93968, 302, 20619), (93969, 302, 20656), (93970, 302, 20657), (93971, 302, 20667), (93972, 302, 20726), (93973, 302, 20884), (93974, 302, 20915), (93975, 302, 20932), (93976, 302, 20939), (93977, 302, 20940), (93978, 302, 20964), (93979, 302, 21008), (93980, 302, 21067), (93981, 302, 21094), (93982, 302, 21123), (93983, 302, 21176), (93984, 302, 21178), (93985, 302, 21197), (93986, 302, 21200), (93987, 302, 21206), (93988, 302, 21224), (93989, 302, 21231), (93990, 302, 21235), (93991, 302, 21324), (93992, 302, 21389), (93993, 302, 21426), (93994, 302, 21441), (93995, 302, 21451), (93996, 302, 21455), (93997, 302, 21462), (93998, 302, 21665), (93999, 302, 21667), (94000, 302, 21679), (94001, 302, 21739), (94002, 302, 21767), (94003, 302, 21798), (94004, 302, 21805), (94005, 302, 21825), (94006, 302, 21848), (94007, 302, 21887), (94008, 302, 21908), (94009, 302, 21961), (94010, 302, 21985), (94011, 302, 22107), (94012, 302, 22133), (94013, 302, 22136), (94014, 302, 22209), (94015, 302, 22237), (94016, 302, 22256), (94017, 302, 22259), (94018, 302, 22378), (94019, 302, 22486), (94020, 302, 22498), (94021, 302, 22546), (94022, 302, 22596), (94023, 302, 22640), (94024, 302, 22748), (94025, 302, 22776), (94026, 302, 22784), (94027, 302, 22788), (94028, 302, 22892), (94029, 302, 22938), (94030, 302, 23069), (94031, 302, 23109), (94032, 302, 23129), (94033, 302, 23144), (94034, 302, 23152), (94035, 302, 23155), (94036, 302, 23175), (94037, 302, 23200), (94038, 302, 23307), (94039, 302, 23310), (94040, 302, 23384), (94041, 302, 23409), (94042, 302, 23416), (94043, 302, 23431), (94044, 302, 23484), (94045, 302, 23491), (94046, 302, 23500), (94047, 302, 23501), (94048, 302, 23508), (94049, 302, 23535), (94050, 302, 23570), (94051, 302, 23572), (94052, 302, 23584), (94053, 302, 23636), (94054, 302, 23661), (94055, 302, 23675), (94056, 302, 23756), (94057, 302, 23781), (94058, 302, 23944), (94059, 302, 24009), (94060, 302, 24060), (94061, 302, 24083), (94062, 302, 24087), (94063, 302, 24094), (94064, 302, 24095), (94065, 302, 24135), (94066, 302, 24212), (94067, 302, 24294), (94068, 302, 24297), (94069, 302, 24395), (94070, 302, 24412), (94071, 302, 24424), (94072, 302, 24586), (94073, 302, 24630), (94074, 302, 24675), (94075, 302, 24719), (94076, 302, 24902), (94077, 302, 25154), (94078, 302, 25160), (94079, 302, 25162), (94080, 302, 25183), (94081, 302, 25214), (94573, 303, 596), (94574, 303, 1129), (94575, 303, 2023), (94576, 303, 2097), (94577, 303, 2421), (94578, 303, 3298), (94579, 303, 3643), (94580, 303, 4383), (94581, 303, 4471), (94582, 303, 4620), (94583, 303, 4940), (94584, 303, 5753), (94585, 303, 6154), (94586, 303, 6525), (94587, 303, 6624), (94588, 303, 6688), (94589, 303, 6817), (94590, 303, 7020), (94591, 303, 7364), (94592, 303, 7675), (94593, 303, 7786), (94594, 303, 8039), (94595, 303, 8414), (94596, 303, 8643), (94597, 303, 8822), (94598, 303, 8879), (94599, 303, 8969), (94600, 303, 9130), (94601, 303, 9242), (94602, 303, 9441), (94603, 303, 9462), (94604, 303, 9801), (94605, 303, 10162), (94606, 303, 10236), (94607, 303, 10415), (94608, 303, 10442), (94609, 303, 11058), (94610, 303, 11105), (94611, 303, 11672), (94612, 303, 11753), (94613, 303, 11866), (94614, 303, 12042), (94615, 303, 12595), (94616, 303, 12807), (94617, 303, 13058), (94618, 303, 13142), (94619, 303, 13875), (94620, 303, 13955), (94621, 303, 14342), (94622, 303, 14433), (94623, 303, 16947), (94624, 303, 17006), (94625, 303, 17015), (94626, 303, 19336), (94627, 303, 19483), (94628, 303, 19805), (94629, 303, 22776), (94636, 304, 196), (94637, 304, 513), (94638, 304, 535), (94639, 304, 567), (94640, 304, 577), (94641, 304, 614), (94642, 304, 1114), (94643, 304, 1235), (94644, 304, 1324), (94645, 304, 1344), (94646, 304, 1577), (94647, 304, 1690), (94648, 304, 1777), (94649, 304, 1787), (94650, 304, 1883), (94651, 304, 1979), (94652, 304, 2391), (94653, 304, 2674), (94654, 304, 3101), (94655, 304, 3155), (94656, 304, 3267), (94657, 304, 3437), (94658, 304, 3548), (94659, 304, 3999), (94660, 304, 4020), (94661, 304, 4190), (94662, 304, 4387), (94663, 304, 4514), (94664, 304, 5059), (94665, 304, 5238), (94666, 304, 5347), (94667, 304, 5403), (94668, 304, 5715), (94669, 304, 5745), (94670, 304, 6487), (94671, 304, 6730), (94672, 304, 6989), (94673, 304, 7023), (94674, 304, 7328), (94675, 304, 7460), (94676, 304, 7529), (94677, 304, 7869), (94678, 304, 8063), (94679, 304, 8423), (94680, 304, 8493), (94681, 304, 8558), (94682, 304, 8622), (94683, 304, 8756), (94684, 304, 8806), (94685, 304, 9236), (94686, 304, 9436), (94687, 304, 9616), (94688, 304, 9717), (94689, 304, 9734), (94690, 304, 9760), (94691, 304, 10785), (94692, 304, 10975), (94693, 304, 11669), (94694, 304, 11755), (94695, 304, 11756), (94696, 304, 11780), (94697, 304, 12060), (94698, 304, 12080), (94699, 304, 12414), (94700, 304, 12962), (94701, 304, 13104), (94702, 304, 13207), (94703, 304, 13264), (94704, 304, 13317), (94705, 304, 13690), (94706, 304, 13751), (94707, 304, 13765), (94708, 304, 14257), (94709, 304, 15454), (94710, 304, 15534), (94711, 304, 16190), (94712, 304, 16444), (94713, 304, 16500), (94714, 304, 16830), (94715, 304, 17269), (94716, 304, 17451), (94717, 304, 17563), (94718, 304, 17705), (94719, 304, 17912), (94720, 304, 17984), (94721, 304, 18005), (94722, 304, 18052), (94723, 304, 18227), (94724, 304, 18481), (94725, 304, 18575), (94726, 304, 19165), (94727, 304, 19264), (94728, 304, 20013), (94729, 304, 21494), (94730, 304, 21928), (94731, 304, 22077), (94732, 304, 22554), (94733, 304, 23086), (94734, 304, 23122), (94735, 304, 23306), (94736, 304, 23724), (94737, 304, 23753), (94738, 304, 25176), (94763, 305, 395), (94764, 305, 924), (94765, 305, 1195), (94766, 305, 1392), (94767, 305, 1638), (94768, 305, 1835), (94769, 305, 2106), (94770, 305, 2125), (94771, 305, 2180), (94772, 305, 2279), (94773, 305, 2300), (94774, 305, 2539), (94775, 305, 2661), (94776, 305, 3196), (94777, 305, 3263), (94778, 305, 3465), (94779, 305, 3621), (94780, 305, 3780), (94781, 305, 3876), (94782, 305, 3925), (94783, 305, 3999), (94784, 305, 4086), (94785, 305, 4377), (94786, 305, 4421), (94787, 305, 4425), (94788, 305, 4456), (94789, 305, 4512), (94790, 305, 4836), (94791, 305, 5117), (94792, 305, 5403), (94793, 305, 5513), (94794, 305, 5575), (94795, 305, 5928), (94796, 305, 6090), (94797, 305, 6460), (94798, 305, 6516), (94799, 305, 6640), (94800, 305, 6730), (94801, 305, 7023), (94802, 305, 7147), (94803, 305, 7263), (94804, 305, 7603), (94805, 305, 7711), (94806, 305, 7900), (94807, 305, 7920), (94808, 305, 8005), (94809, 305, 8018), (94810, 305, 8318), (94811, 305, 8334), (94812, 305, 8388), (94813, 305, 8418), (94814, 305, 8451), (94815, 305, 8665), (94816, 305, 8842), (94817, 305, 9236), (94818, 305, 9383), (94819, 305, 9436), (94820, 305, 9457), (94821, 305, 9479), (94822, 305, 9540), (94823, 305, 9606), (94824, 305, 9980), (94825, 305, 10123), (94826, 305, 10723), (94827, 305, 10764), (94828, 305, 10935), (94829, 305, 11128), (94830, 305, 11625), (94831, 305, 11898), (94832, 305, 12127), (94833, 305, 12211), (94834, 305, 12323), (94835, 305, 12325), (94836, 305, 12721), (94837, 305, 12849), (94838, 305, 13069), (94839, 305, 13213), (94840, 305, 13229), (94841, 305, 13251), (94842, 305, 13412), (94843, 305, 13796), (94844, 305, 13813), (94845, 305, 13878), (94846, 305, 13888), (94847, 305, 14283), (94848, 305, 14321), (94849, 305, 14429), (94850, 305, 14458), (94851, 305, 14764), (94852, 305, 14804), (94853, 305, 14840), (94854, 305, 15298), (94855, 305, 15359), (94856, 305, 15539), (94857, 305, 15557), (94858, 305, 15563), (94859, 305, 15607), (94860, 305, 15897), (94861, 305, 16199), (94862, 305, 16214), (94863, 305, 16402), (94864, 305, 16433), (94865, 305, 16539), (94866, 305, 16593), (94867, 305, 16711), (94868, 305, 16798), (94869, 305, 16805), (94870, 305, 16876), (94871, 305, 16975), (94872, 305, 17100), (94873, 305, 17259), (94874, 305, 17410), (94875, 305, 17422), (94876, 305, 17452), (94877, 305, 17603), (94878, 305, 17776), (94879, 305, 17801), (94880, 305, 17919), (94881, 305, 18084), (94882, 305, 18205), (94883, 305, 18239), (94884, 305, 18246), (94885, 305, 18455), (94886, 305, 18548), (94887, 305, 18720), (94888, 305, 18743), (94889, 305, 18762), (94890, 305, 18776), (94891, 305, 18935), (94892, 305, 18949), (94893, 305, 18960), (94894, 305, 19095), (94895, 305, 19096), (94896, 305, 19176), (94897, 305, 19454), (94898, 305, 19504), (94899, 305, 19552), (94900, 305, 19601), (94901, 305, 19654), (94902, 305, 19722), (94903, 305, 19919), (94904, 305, 19967), (94905, 305, 20013), (94906, 305, 20275), (94907, 305, 20323), (94908, 305, 20527), (94909, 305, 20674), (94910, 305, 20728), (94911, 305, 20985), (94912, 305, 21021), (94913, 305, 21300), (94914, 305, 21423), (94915, 305, 21880), (94916, 305, 21925), (94917, 305, 21979), (94918, 305, 22064), (94919, 305, 22152), (94920, 305, 22185), (94921, 305, 22216), (94922, 305, 22536), (94923, 305, 22583), (94924, 305, 22589), (94925, 305, 22590), (94926, 305, 22653), (94927, 305, 22706), (94928, 305, 22915), (94929, 305, 23005), (94930, 305, 23052), (94931, 305, 23161), (94932, 305, 23184), (94933, 305, 23187), (94934, 305, 23202), (94935, 305, 23399), (94936, 305, 23472), (94937, 305, 23593), (94938, 305, 23622), (94939, 305, 23664), (94940, 305, 23753), (94941, 305, 23757), (94942, 305, 23787), (94943, 305, 24055), (94944, 305, 24086), (94945, 305, 24090), (94946, 305, 24210), (94947, 305, 24400), (94948, 305, 24426), (94949, 305, 24455), (94950, 305, 24530), (94951, 305, 24640), (94952, 305, 24667), (94953, 305, 24767), (94954, 305, 24829), (94955, 305, 24952), (94956, 305, 25028), (94957, 305, 25189), (95018, 306, 5711), (95019, 306, 5766), (95020, 306, 8582), (95021, 306, 10772), (95022, 306, 11391), (95023, 306, 13912), (95024, 306, 19650), (95025, 307, 2624), (95026, 307, 4410), (95027, 307, 5350), (95028, 307, 5383), (95029, 307, 5759), (95030, 307, 5766), (95031, 307, 6054), (95032, 307, 6580), (95033, 307, 6663), (95034, 307, 7075), (95035, 307, 7530), (95036, 307, 7970), (95037, 307, 8489), (95038, 307, 8584), (95039, 307, 8627), (95040, 307, 9420), (95041, 307, 9791), (95042, 307, 11024), (95043, 307, 11297), (95044, 307, 12173), (95045, 307, 12836), (95046, 307, 13813), (95047, 307, 14766), (95048, 307, 14998), (95049, 307, 15600), (95050, 307, 16914), (95051, 307, 17769), (95052, 307, 17937), (95053, 307, 17992), (95054, 307, 18593), (95055, 307, 19665), (95056, 308, 5383), (95057, 308, 5557), (95058, 308, 5766), (95059, 308, 6714), (95060, 308, 6959), (95061, 308, 8627), (95062, 308, 10633), (95063, 308, 10950), (95064, 308, 11891), (95065, 308, 14451), (95066, 308, 15006), (95067, 308, 15932), (95068, 308, 18431), (95069, 308, 20912), (95070, 308, 21666), (95071, 308, 22845), (95072, 308, 23117), (95073, 308, 23834), (95087, 309, 671), (95088, 309, 1463), (95089, 309, 2011), (95090, 309, 2544), (95091, 309, 2627), (95092, 309, 2765), (95093, 309, 3229), (95094, 309, 3440), (95095, 309, 3843), (95096, 309, 4125), (95097, 309, 4273), (95098, 309, 4481), (95099, 309, 4615), (95100, 309, 4722), (95101, 309, 4891), (95102, 309, 5145), (95103, 309, 5201), (95104, 309, 5257), (95105, 309, 5282), (95106, 309, 5314), (95107, 309, 5385), (95108, 309, 5421), (95109, 309, 5475), (95110, 309, 5721), (95111, 309, 5962), (95112, 309, 6189), (95113, 309, 6455), (95114, 309, 6458), (95115, 309, 6636), (95116, 309, 6756), (95117, 309, 6789), (95118, 309, 6794), (95119, 309, 7048), (95120, 309, 7095), (95121, 309, 7520), (95122, 309, 7780), (95123, 309, 7843), (95124, 309, 7889), (95125, 309, 7922), (95126, 309, 7952), (95127, 309, 7954), (95128, 309, 8078), (95129, 309, 8091), (95130, 309, 8213), (95131, 309, 8215), (95132, 309, 8218), (95133, 309, 8282), (95134, 309, 8425), (95135, 309, 8434), (95136, 309, 8628), (95137, 309, 8730), (95138, 309, 8740), (95139, 309, 8928), (95140, 309, 8941), (95141, 309, 8985), (95142, 309, 8992), (95143, 309, 9106), (95144, 309, 9167), (95145, 309, 9196), (95146, 309, 9248), (95147, 309, 9295), (95148, 309, 9306), (95149, 309, 9340), (95150, 309, 9506), (95151, 309, 9633), (95152, 309, 9725), (95153, 309, 9744), (95154, 309, 10039), (95155, 309, 10056), (95156, 309, 10179), (95157, 309, 10189), (95158, 309, 10302), (95159, 309, 10522), (95160, 309, 10527), (95161, 309, 10653), (95162, 309, 10742), (95163, 309, 10888), (95164, 309, 11073), (95165, 309, 11171), (95166, 309, 11261), (95167, 309, 11661), (95168, 309, 11784), (95169, 309, 11829), (95170, 309, 11881), (95171, 309, 11909), (95172, 309, 12064), (95173, 309, 12239), (95174, 309, 12243), (95175, 309, 13013), (95176, 309, 13035), (95177, 309, 13043), (95178, 309, 13323), (95179, 309, 13433), (95180, 309, 13753), (95181, 309, 13789), (95182, 309, 13816), (95183, 309, 13979), (95184, 309, 13980), (95185, 309, 14026), (95186, 309, 14133), (95187, 309, 14424), (95188, 309, 14603), (95189, 309, 14656), (95190, 309, 14753), (95191, 309, 14842), (95192, 309, 14845), (95193, 309, 15105), (95194, 309, 15118), (95195, 309, 15192), (95196, 309, 15356), (95197, 309, 15382), (95198, 309, 15593), (95199, 309, 15842), (95200, 309, 15967), (95201, 309, 16164), (95202, 309, 16166), (95203, 309, 16212), (95204, 309, 16411), (95205, 309, 16562), (95206, 309, 16565), (95207, 309, 16795), (95208, 309, 16891), (95209, 309, 16941), (95210, 309, 16981), (95211, 309, 17018), (95212, 309, 17033), (95213, 309, 17138), (95214, 309, 17242), (95215, 309, 17261), (95216, 309, 17369), (95217, 309, 17371), (95218, 309, 17416), (95219, 309, 17424), (95220, 309, 17426), (95221, 309, 17506), (95222, 309, 17570), (95223, 309, 17769), (95224, 309, 17787), (95225, 309, 18059), (95226, 309, 18131), (95227, 309, 18138), (95228, 309, 18199), (95229, 309, 18245), (95230, 309, 18285), (95231, 309, 18324), (95232, 309, 18372), (95233, 309, 18495), (95234, 309, 18590), (95235, 309, 18649), (95236, 309, 18655), (95237, 309, 18676), (95238, 309, 18737), (95239, 309, 18829), (95240, 309, 18927), (95241, 309, 18958), (95242, 309, 18965), (95243, 309, 19024), (95244, 309, 19094), (95245, 309, 19237), (95246, 309, 19315), (95247, 309, 19389), (95248, 309, 19394), (95249, 309, 19612), (95250, 309, 19850), (95251, 309, 20064), (95252, 309, 20106), (95253, 309, 20128), (95254, 309, 20133), (95255, 309, 20354), (95256, 309, 20541), (95257, 309, 20655), (95258, 309, 20706), (95259, 309, 20825), (95260, 309, 20930), (95261, 309, 20945), (95262, 309, 20960), (95263, 309, 21015), (95264, 309, 21128), (95265, 309, 21265), (95266, 309, 21287), (95267, 309, 21304), (95268, 309, 21399), (95269, 309, 21537), (95270, 309, 21642), (95271, 309, 21873), (95272, 309, 21891), (95273, 309, 22120), (95274, 309, 22274), (95275, 309, 22791), (95276, 309, 22844), (95277, 309, 22975), (95278, 309, 23039), (95279, 309, 23168), (95280, 309, 23191), (95281, 309, 23785), (95282, 309, 23900), (95283, 309, 24438), (95284, 309, 24821), (95342, 310, 377), (95343, 310, 446), (95344, 310, 447), (95345, 310, 596), (95346, 310, 627), (95347, 310, 756), (95348, 310, 823), (95349, 310, 1179), (95350, 310, 1182), (95351, 310, 1228), (95352, 310, 1333), (95353, 310, 1597), (95354, 310, 1801), (95355, 310, 1836), (95356, 310, 1855), (95357, 310, 1865), (95358, 310, 2097), (95359, 310, 2161), (95360, 310, 2400), (95361, 310, 2479), (95362, 310, 2483), (95363, 310, 2507), (95364, 310, 2530), (95365, 310, 2615), (95366, 310, 2727), (95367, 310, 2753), (95368, 310, 2833), (95369, 310, 2853), (95370, 310, 2948), (95371, 310, 2952), (95372, 310, 2983), (95373, 310, 3124), (95374, 310, 3129), (95375, 310, 3187), (95376, 310, 3218), (95377, 310, 3298), (95378, 310, 3319), (95379, 310, 3633), (95380, 310, 3787), (95381, 310, 3790), (95382, 310, 3957), (95383, 310, 3972), (95384, 310, 3990), (95385, 310, 4034), (95386, 310, 4068), (95387, 310, 4126), (95388, 310, 4294), (95389, 310, 4316), (95390, 310, 4331), (95391, 310, 4382), (95392, 310, 4436), (95393, 310, 4546), (95394, 310, 4709), (95395, 310, 4718), (95396, 310, 4739), (95397, 310, 4926), (95398, 310, 4939), (95399, 310, 4945), (95400, 310, 5026), (95401, 310, 5169), (95402, 310, 5285), (95403, 310, 5412), (95404, 310, 5456), (95405, 310, 5476), (95406, 310, 5544), (95407, 310, 5603), (95408, 310, 5617), (95409, 310, 5643), (95410, 310, 5708), (95411, 310, 5749), (95412, 310, 5755), (95413, 310, 5785), (95414, 310, 5857), (95415, 310, 5963), (95416, 310, 5999), (95417, 310, 6150), (95418, 310, 6155), (95419, 310, 6174), (95420, 310, 6205), (95421, 310, 6217), (95422, 310, 6385), (95423, 310, 6403), (95424, 310, 6468), (95425, 310, 6510), (95426, 310, 6548), (95427, 310, 6557), (95428, 310, 6720), (95429, 310, 6907), (95430, 310, 6935), (95431, 310, 6973), (95432, 310, 7025), (95433, 310, 7046), (95434, 310, 7052), (95435, 310, 7088), (95436, 310, 7098), (95437, 310, 7238), (95438, 310, 7324), (95439, 310, 7383), (95440, 310, 7401), (95441, 310, 7423), (95442, 310, 7461), (95443, 310, 7476), (95444, 310, 7600), (95445, 310, 7604), (95446, 310, 7613), (95447, 310, 7623), (95448, 310, 7709), (95449, 310, 7714), (95450, 310, 7801), (95451, 310, 7804), (95452, 310, 7812), (95453, 310, 7937), (95454, 310, 8027), (95455, 310, 8055), (95456, 310, 8194), (95457, 310, 8224), (95458, 310, 8422), (95459, 310, 8643), (95460, 310, 8653), (95461, 310, 8672), (95462, 310, 8698), (95463, 310, 8830), (95464, 310, 8924), (95465, 310, 8938), (95466, 310, 8976), (95467, 310, 9086), (95468, 310, 9343), (95469, 310, 9528), (95470, 310, 9554), (95471, 310, 9709), (95472, 310, 9753), (95473, 310, 9808), (95474, 310, 9968), (95475, 310, 10080), (95476, 310, 10174), (95477, 310, 10256), (95478, 310, 10397), (95479, 310, 10446), (95480, 310, 10461), (95481, 310, 10533), (95482, 310, 10540), (95483, 310, 10554), (95484, 310, 10651), (95485, 310, 10683), (95486, 310, 10687), (95487, 310, 10774), (95488, 310, 10850), (95489, 310, 10926), (95490, 310, 11005), (95491, 310, 11080), (95492, 310, 11326), (95493, 310, 11388), (95494, 310, 11462), (95495, 310, 11523), (95496, 310, 11562), (95497, 310, 11676), (95498, 310, 11685), (95499, 310, 11948), (95500, 310, 11963), (95501, 310, 11979), (95502, 310, 12016), (95503, 310, 12030), (95504, 310, 12169), (95505, 310, 12692), (95506, 310, 12782), (95507, 310, 12896), (95508, 310, 12978), (95509, 310, 13078), (95510, 310, 13112), (95511, 310, 13125), (95512, 310, 13202), (95513, 310, 13545), (95514, 310, 13553), (95515, 310, 13795), (95516, 310, 13862), (95517, 310, 13873), (95518, 310, 13894), (95519, 310, 14015), (95520, 310, 14121), (95521, 310, 14268), (95522, 310, 14295), (95523, 310, 14432), (95524, 310, 14604), (95525, 310, 14706), (95526, 310, 14784), (95527, 310, 15027), (95528, 310, 15042), (95529, 310, 15046), (95530, 310, 15374), (95531, 310, 15475), (95532, 310, 15615), (95533, 310, 15654), (95534, 310, 15883), (95535, 310, 16032), (95536, 310, 16034), (95537, 310, 16286), (95538, 310, 16336), (95539, 310, 16343), (95540, 310, 16385), (95541, 310, 16716), (95542, 310, 16894), (95543, 310, 17084), (95544, 310, 17304), (95545, 310, 17352), (95546, 310, 17723), (95547, 310, 17970), (95548, 310, 18103), (95549, 310, 18188), (95550, 310, 18326), (95551, 310, 18340), (95552, 310, 18404), (95553, 310, 18427), (95554, 310, 18458), (95555, 310, 18604), (95556, 310, 18645), (95557, 310, 18654), (95558, 310, 18675), (95559, 310, 18760), (95560, 310, 18869), (95561, 310, 18925), (95562, 310, 19060), (95563, 310, 19124), (95564, 310, 19139), (95565, 310, 19294), (95566, 310, 19408), (95567, 310, 19425), (95568, 310, 19489), (95569, 310, 19540), (95570, 310, 19633), (95571, 310, 19660), (95572, 310, 19710), (95573, 310, 19772), (95574, 310, 19893), (95575, 310, 20107), (95576, 310, 20130), (95577, 310, 20142), (95578, 310, 20173), (95579, 310, 20222), (95580, 310, 20316), (95581, 310, 20366), (95582, 310, 20393), (95583, 310, 20418), (95584, 310, 20503), (95585, 310, 20504), (95586, 310, 20663), (95587, 310, 20999), (95588, 310, 21029), (95589, 310, 21071), (95590, 310, 21215), (95591, 310, 21257), (95592, 310, 21270), (95593, 310, 21272), (95594, 310, 21360), (95595, 310, 21383), (95596, 310, 21545), (95597, 310, 21634), (95598, 310, 21674), (95599, 310, 21794), (95600, 310, 21833), (95601, 310, 22026), (95602, 310, 22083), (95603, 310, 22155), (95604, 310, 22268), (95605, 310, 22458), (95606, 310, 22510), (95607, 310, 22621), (95608, 310, 22661), (95609, 310, 22678), (95610, 310, 22747), (95611, 310, 22794), (95612, 310, 22869), (95613, 310, 22870), (95614, 310, 22871), (95615, 310, 22926), (95616, 310, 22928), (95617, 310, 23128), (95618, 310, 23268), (95619, 310, 23295), (95620, 310, 23299), (95621, 310, 23337), (95622, 310, 23456), (95623, 310, 23768), (95624, 310, 23941), (95625, 310, 24043), (95626, 310, 24076), (95627, 310, 24336), (95628, 310, 24357), (95629, 310, 24702), (95630, 310, 24799), (95631, 310, 24806), (95632, 310, 24811), (95633, 310, 25011), (95634, 310, 25024), (95635, 310, 25025), (95636, 310, 25099), (95637, 310, 25142), (95853, 311, 341), (95854, 311, 368), (95855, 311, 622), (95856, 311, 699), (95857, 311, 721), (95858, 311, 805), (95859, 311, 833), (95860, 311, 1047), (95861, 311, 1050), (95862, 311, 1314), (95863, 311, 1359), (95864, 311, 1466), (95865, 311, 1468), (95866, 311, 1545), (95867, 311, 1570), (95868, 311, 1575), (95869, 311, 1587), (95870, 311, 1608), (95871, 311, 1718), (95872, 311, 1753), (95873, 311, 1759), (95874, 311, 1831), (95875, 311, 1859), (95876, 311, 1899), (95877, 311, 1972), (95878, 311, 2004), (95879, 311, 2035), (95880, 311, 2054), (95881, 311, 2348), (95882, 311, 2384), (95883, 311, 2402), (95884, 311, 2423), (95885, 311, 2511), (95886, 311, 2524), (95887, 311, 2558), (95888, 311, 2561), (95889, 311, 2660), (95890, 311, 2697), (95891, 311, 2713), (95892, 311, 2753), (95893, 311, 2890), (95894, 311, 2915), (95895, 311, 2979), (95896, 311, 3023), (95897, 311, 3152), (95898, 311, 3192), (95899, 311, 3209), (95900, 311, 3288), (95901, 311, 3330), (95902, 311, 3342), (95903, 311, 3445), (95904, 311, 3468), (95905, 311, 3589), (95906, 311, 3604), (95907, 311, 3744), (95908, 311, 3786), (95909, 311, 3813), (95910, 311, 3830), (95911, 311, 3994), (95912, 311, 4048), (95913, 311, 4206), (95914, 311, 4228), (95915, 311, 4229), (95916, 311, 4279), (95917, 311, 4340), (95918, 311, 4384), (95919, 311, 4402), (95920, 311, 4494), (95921, 311, 4529), (95922, 311, 4552), (95923, 311, 4654), (95924, 311, 4745), (95925, 311, 4766), (95926, 311, 4782), (95927, 311, 4857), (95928, 311, 4924), (95929, 311, 4999), (95930, 311, 5104), (95931, 311, 5402), (95932, 311, 5406), (95933, 311, 5423), (95934, 311, 5434), (95935, 311, 5477), (95936, 311, 5538), (95937, 311, 5544), (95938, 311, 5554), (95939, 311, 5581), (95940, 311, 5595), (95941, 311, 5667), (95942, 311, 5707), (95943, 311, 5756), (95944, 311, 5777), (95945, 311, 5834), (95946, 311, 5854), (95947, 311, 5970), (95948, 311, 6018), (95949, 311, 6025), (95950, 311, 6091), (95951, 311, 6133), (95952, 311, 6260), (95953, 311, 6270), (95954, 311, 6275), (95955, 311, 6290), (95956, 311, 6364), (95957, 311, 6373), (95958, 311, 6481), (95959, 311, 6566), (95960, 311, 6666), (95961, 311, 6696), (95962, 311, 6717), (95963, 311, 6728), (95964, 311, 6791), (95965, 311, 6876), (95966, 311, 6900), (95967, 311, 7047), (95968, 311, 7107), (95969, 311, 7162), (95970, 311, 7216), (95971, 311, 7341), (95972, 311, 7370), (95973, 311, 7411), (95974, 311, 7427), (95975, 311, 7441), (95976, 311, 7497), (95977, 311, 7532), (95978, 311, 7619), (95979, 311, 7669), (95980, 311, 7709), (95981, 311, 7844), (95982, 311, 7975), (95983, 311, 7998), (95984, 311, 8127), (95985, 311, 8200), (95986, 311, 8241), (95987, 311, 8261), (95988, 311, 8272), (95989, 311, 8394), (95990, 311, 8456), (95991, 311, 9012), (95992, 311, 9122), (95993, 311, 9162), (95994, 311, 9254), (95995, 311, 9440), (95996, 311, 9487), (95997, 311, 9663), (95998, 311, 9685), (95999, 311, 9698), (96000, 311, 9715), (96001, 311, 9790), (96002, 311, 10086), (96003, 311, 10217), (96004, 311, 10268), (96005, 311, 10652), (96006, 311, 10711), (96007, 311, 10733), (96008, 311, 10784), (96009, 311, 10800), (96010, 311, 10814), (96011, 311, 10954), (96012, 311, 10968), (96013, 311, 11005), (96014, 311, 11146), (96015, 311, 11196), (96016, 311, 11237), (96017, 311, 11415), (96018, 311, 11418), (96019, 311, 11574), (96020, 311, 11653), (96021, 311, 11732), (96022, 311, 11777), (96023, 311, 11828), (96024, 311, 12117), (96025, 311, 12422), (96026, 311, 12429), (96027, 311, 12503), (96028, 311, 12592), (96029, 311, 12636), (96030, 311, 12824), (96031, 311, 13075), (96032, 311, 13231), (96033, 311, 13759), (96034, 311, 13975), (96035, 311, 14065), (96036, 311, 14097), (96037, 311, 14195), (96038, 311, 14562), (96039, 311, 14725), (96040, 311, 14790), (96041, 311, 14791), (96042, 311, 14848), (96043, 311, 14865), (96044, 311, 14977), (96045, 311, 15054), (96046, 311, 15097), (96047, 311, 15105), (96048, 311, 15260), (96049, 311, 15489), (96050, 311, 15696), (96051, 311, 15756), (96052, 311, 15856), (96053, 311, 16215), (96054, 311, 16342), (96055, 311, 16450), (96056, 311, 16455), (96057, 311, 16470), (96058, 311, 16495), (96059, 311, 16582), (96060, 311, 16732), (96061, 311, 16758), (96062, 311, 16806), (96063, 311, 16812), (96064, 311, 16874), (96065, 311, 16964), (96066, 311, 16973), (96067, 311, 17013), (96068, 311, 17098), (96069, 311, 17171), (96070, 311, 17216), (96071, 311, 17223), (96072, 311, 17235), (96073, 311, 17434), (96074, 311, 17465), (96075, 311, 17478), (96076, 311, 17558), (96077, 311, 17620), (96078, 311, 17671), (96079, 311, 17684), (96080, 311, 17732), (96081, 311, 17740), (96082, 311, 17761), (96083, 311, 17889), (96084, 311, 18028), (96085, 311, 18283), (96086, 311, 18288), (96087, 311, 18731), (96088, 311, 18846), (96089, 311, 18985), (96090, 311, 19177), (96091, 311, 19343), (96092, 311, 19489), (96093, 311, 19502), (96094, 311, 19563), (96095, 311, 19831), (96096, 311, 19839), (96097, 311, 19892), (96098, 311, 19949), (96099, 311, 20111), (96100, 311, 20138), (96101, 311, 20337), (96102, 311, 20536), (96103, 311, 20797), (96104, 311, 20882), (96105, 311, 20896), (96106, 311, 21314), (96107, 311, 21351), (96108, 311, 21377), (96109, 311, 21392), (96110, 311, 21413), (96111, 311, 21450), (96112, 311, 21792), (96113, 311, 21844), (96114, 311, 21967), (96115, 311, 22468), (96116, 311, 22707), (96117, 311, 22837), (96118, 311, 22921), (96119, 311, 23040), (96120, 311, 23334), (96121, 311, 23487), (96122, 311, 23660), (96123, 311, 23938), (96124, 311, 24059), (96125, 311, 24256), (96126, 311, 25008), (96127, 311, 25022), (96128, 311, 25023), (96129, 311, 25049), (96130, 311, 25104), (96131, 311, 25140); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `logadministrator` -- CREATE TABLE `logadministrator` ( `idLogAdministrator` int(11) NOT NULL, `action` varchar(45) NOT NULL, `information` text NOT NULL, `date` date NOT NULL, `time` time NOT NULL, `ip` varchar(45) NOT NULL, `os` varchar(45) NOT NULL, `browser` varchar(45) NOT NULL, `administrator_idAdministrator` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `logadministrator` -- INSERT INTO `logadministrator` (`idLogAdministrator`, `action`, `information`, `date`, `time`, `ip`, `os`, `browser`, `administrator_idAdministrator`) VALUES (1, 'Log In', '', '2020-12-02', '23:51:52', '::1', 'WINNT', 'Chrome', 1), (9, 'Log In', '', '2021-04-23', '09:48:53', '::1', 'WINNT', 'Chrome', 1), (12, 'Log In', '', '2021-04-29', '21:18:53', '::1', 'WINNT', 'Chrome', 1), (13, 'Log In', '', '2021-04-29', '21:34:19', '::1', 'WINNT', 'Chrome', 1), (14, 'Log In', '', '2021-04-30', '08:07:13', '::1', 'WINNT', 'Chrome', 1), (15, 'Log In', '', '2021-04-30', '08:34:57', '::1', 'WINNT', 'Chrome', 1), (16, 'Log In', '', '2021-04-30', '08:39:27', '::1', 'WINNT', 'Chrome', 1), (17, 'Log In', '', '2021-04-30', '09:02:30', '::1', 'WINNT', 'Chrome', 1), (18, 'Log In', '', '2021-04-30', '09:24:16', '::1', 'WINNT', 'Chrome', 1), (19, 'Log In', '', '2021-05-08', '18:56:23', '::1', 'WINNT', 'Chrome', 1), (20, 'Log In', '', '2021-05-08', '19:15:36', '::1', 'WINNT', 'Chrome', 1), (21, 'Log In', '', '2021-05-08', '20:04:07', '::1', 'WINNT', 'Chrome', 1), (22, 'Log In', '', '2021-05-08', '20:09:17', '::1', 'WINNT', 'Chrome', 1), (23, 'Log In', '', '2021-05-08', '20:17:50', '::1', 'WINNT', 'Chrome', 1), (24, 'Log In', '', '2021-05-09', '22:23:50', '::1', 'WINNT', 'Chrome', 1), (25, 'View all administrators', '', '2021-05-09', '22:38:20', '::1', 'WINNT', 'Chrome', 0), (26, 'Log In', '', '2021-05-10', '08:28:57', '::1', 'WINNT', 'Chrome', 1), (27, 'Log In', '', '2021-05-10', '08:46:34', '::1', 'WINNT', 'Chrome', 1), (28, 'Log In', '', '2021-05-10', '08:49:44', '::1', 'WINNT', 'Chrome', 1), (29, 'Log In', '', '2021-05-10', '09:04:43', '::1', 'WINNT', 'Chrome', 1), (30, 'Delete Journal', 'Title: CA - A Cancer Journal for Clinicians;; Issn: 15424863;; Sjr: 88;; Best_quartile: Q1;; Hindex: 156;; Total_docs: 36;; Total_references: 2924;; Total_cites: 22644;; Citable_docs: 89;; Coverage: 1950-2020;; Categories: ;; Country: ', '2021-05-10', '09:05:18', '::1', 'WINNT', 'Chrome', 1), (31, 'Delete Journal', 'Title: Quarterly Journal of Economics;; Issn: 335533;; Sjr: 36;; Best_quartile: Q1;; Hindex: 246;; Total_docs: 30;; Total_references: 1909;; Total_cites: 2020;; Citable_docs: 119;; Coverage: 1886-2020;; Categories: ;; Country: ', '2021-05-10', '09:05:47', '::1', 'WINNT', 'Chrome', 1), (32, 'View all administrators', '', '2021-05-10', '09:10:46', '::1', 'WINNT', 'Chrome', 0), (33, 'View all filter searchs', '', '2021-05-10', '09:12:38', '::1', 'WINNT', 'Chrome', 0), (34, 'View all administrators', '', '2021-05-10', '09:14:59', '::1', 'WINNT', 'Chrome', 0), (35, 'View all filter searchs', '', '2021-05-10', '09:17:33', '::1', 'WINNT', 'Chrome', 0), (36, 'View all filter searchs', '', '2021-05-10', '09:17:55', '::1', 'WINNT', 'Chrome', 0), (37, 'View all filter searchs', '', '2021-05-10', '09:25:49', '::1', 'WINNT', 'Chrome', 0), (38, 'View all filter searchs', '', '2021-05-10', '09:27:56', '::1', 'WINNT', 'Chrome', 0), (39, 'View all filter searchs', '', '2021-05-10', '09:28:13', '::1', 'WINNT', 'Chrome', 0), (40, 'View all filter searchs', '', '2021-05-10', '09:28:26', '::1', 'WINNT', 'Chrome', 0), (41, 'View all filter searchs', '', '2021-05-10', '09:28:35', '::1', 'WINNT', 'Chrome', 0), (42, 'View all filter searchs', '', '2021-05-10', '09:28:49', '::1', 'WINNT', 'Chrome', 0), (43, 'View all filter searchs', '', '2021-05-10', '09:29:27', '::1', 'WINNT', 'Chrome', 0), (44, 'View all filter searchs', '', '2021-05-10', '09:29:40', '::1', 'WINNT', 'Chrome', 0), (45, 'Log In', '', '2021-05-10', '10:06:13', '::1', 'WINNT', 'Chrome', 1), (46, 'Log In', '', '2021-05-10', '10:37:16', '::1', 'WINNT', 'Chrome', 1), (47, 'Log In', '', '2021-05-10', '11:20:48', '::1', 'WINNT', 'Chrome', 1), (48, 'Log In', '', '2021-05-10', '11:39:58', '::1', 'WINNT', 'Chrome', 1), (49, 'Log In', '', '2021-05-10', '12:00:42', '::1', 'WINNT', 'Chrome', 1), (50, 'Log In', '', '2021-05-10', '12:57:50', '::1', 'WINNT', 'Chrome', 1), (51, 'Log In', '', '2021-05-10', '14:57:18', '::1', 'WINNT', 'Chrome', 1), (52, 'Log In', '', '2021-05-10', '15:38:51', '::1', 'WINNT', 'Chrome', 1), (53, 'Log In', '', '2021-05-10', '15:39:55', '::1', 'WINNT', 'Chrome', 1), (54, 'Log In', '', '2021-05-11', '16:11:04', '::1', 'WINNT', 'Chrome', 1), (55, 'Log In', '', '2021-05-11', '16:11:28', '::1', 'WINNT', 'Chrome', 1), (56, 'Log In', '', '2021-05-11', '16:21:43', '::1', 'WINNT', 'Chrome', 1), (57, 'View all administrators', '', '2021-05-11', '16:29:19', '::1', 'WINNT', 'Chrome', 0), (58, 'Log In', '', '2021-05-11', '16:35:13', '::1', 'WINNT', 'Chrome', 1), (59, 'Log In', '', '2021-05-11', '16:50:36', '::1', 'WINNT', 'Chrome', 1), (60, 'View PDF reports', '', '2021-05-13', '10:24:54', '::1', 'WINNT', 'Chrome', 0), (61, 'View PDF reports', '', '2021-05-13', '10:25:34', '::1', 'WINNT', 'Chrome', 0), (62, 'View PDF reports', '', '2021-05-13', '10:26:19', '::1', 'WINNT', 'Chrome', 0), (63, 'View PDF reports', '', '2021-05-13', '10:26:45', '::1', 'WINNT', 'Chrome', 0), (64, 'View PDF reports', '', '2021-05-13', '15:59:47', '::1', 'WINNT', 'Chrome', 0), (65, 'Log In', '', '2021-05-16', '16:14:20', '::1', 'WINNT', 'Chrome', 1), (66, 'View PDF reports', '', '2021-05-16', '16:15:57', '::1', 'WINNT', 'Chrome', 0), (67, 'View PDF reports', '', '2021-05-16', '16:16:37', '::1', 'WINNT', 'Chrome', 0), (68, 'View PDF reports', '', '2021-05-16', '16:16:51', '::1', 'WINNT', 'Chrome', 0), (69, 'Log In', '', '2021-05-19', '14:26:58', '::1', 'WINNT', 'Chrome', 1), (70, 'View PDF reports', '', '2021-05-19', '14:27:04', '::1', 'WINNT', 'Chrome', 0), (71, 'Log In', '', '2021-05-21', '08:34:06', '::1', 'WINNT', 'Chrome', 1), (72, 'View PDF reports', '', '2021-05-21', '09:14:03', '::1', 'WINNT', 'Chrome', 0), (73, 'Log In', '', '2021-05-27', '12:01:30', '::1', 'WINNT', 'Chrome', 1), (74, 'Log In', '', '2021-05-28', '20:59:04', '::1', 'WINNT', 'Chrome', 1), (75, 'Log In', '', '2021-05-28', '21:13:35', '::1', 'WINNT', 'Chrome', 1), (76, 'Log In', '', '2021-05-31', '14:25:05', '::1', 'WINNT', 'Chrome', 1), (77, 'Log In', '', '2021-05-31', '15:51:20', '::1', 'WINNT', 'Chrome', 1), (78, 'Log In', '', '2021-05-31', '17:13:54', '::1', 'WINNT', 'Chrome', 1), (79, 'Log In', '', '2021-05-31', '17:17:32', '::1', 'WINNT', 'Chrome', 1), (80, 'Log In', '', '2021-06-02', '10:31:51', '::1', 'WINNT', 'Chrome', 1), (81, 'Search administrators', '', '2021-06-02', '10:32:51', '::1', 'WINNT', 'Chrome', 0), (82, 'Search administrators', '', '2021-06-02', '10:34:43', '::1', 'WINNT', 'Chrome', 0), (83, 'Search administrators', '', '2021-06-02', '10:35:14', '::1', 'WINNT', 'Chrome', 0), (84, 'Log In', '', '2021-06-02', '11:13:04', '::1', 'WINNT', 'Chrome', 1), (85, 'View PDF reports', '', '2021-06-02', '11:16:34', '::1', 'WINNT', 'Chrome', 0), (86, 'Log In', '', '2021-06-03', '08:28:18', '::1', 'WINNT', 'Chrome', 1), (87, 'Log In', '', '2021-06-03', '08:46:45', '::1', 'WINNT', 'Chrome', 1), (88, 'Log In', '', '2021-06-13', '18:25:53', '::1', 'WINNT', 'Chrome', 1), (89, 'Log In', '', '2021-06-14', '18:03:29', '::1', 'WINNT', 'Chrome', 1), (90, 'Log In', '', '2021-06-14', '18:27:06', '::1', 'WINNT', 'Chrome', 1), (91, 'Log In', '', '2021-06-14', '18:30:58', '::1', 'WINNT', 'Chrome', 1), (92, 'Log In', '', '2021-06-14', '18:39:53', '::1', 'WINNT', 'Chrome', 1), (93, 'Log In', '', '2021-06-14', '19:50:06', '::1', 'WINNT', 'Chrome', 1), (94, 'Log In', '', '2021-06-14', '19:52:28', '::1', 'WINNT', 'Chrome', 1), (95, 'Log In', '', '2021-06-15', '22:11:52', '::1', 'WINNT', 'Chrome', 1), (96, 'Log In', '', '2021-06-15', '22:16:17', '::1', 'WINNT', 'Chrome', 1), (97, 'Log In', '', '2021-06-15', '22:30:18', '::1', 'WINNT', 'Chrome', 1), (98, 'Log In', '', '2021-06-15', '22:34:33', '127.0.0.1', 'WINNT', 'Chrome', 1), (99, 'Log In', '', '2021-06-15', '22:44:16', '::1', 'WINNT', 'Chrome', 1), (100, 'Log In', '', '2021-06-15', '23:02:47', '::1', 'WINNT', 'Chrome', 1), (101, 'Log In', '', '2021-06-15', '23:21:27', '::1', 'WINNT', 'Chrome', 1), (102, 'Log In', '', '2021-06-16', '21:40:35', '::1', 'WINNT', 'Chrome', 1), (103, 'Update SRS', 'Update all information about journals', '2021-06-16', '21:42:11', '::1', 'WINNT', 'Chrome', 1), (104, 'Update SRS', 'Update all information about journals', '2021-06-16', '21:50:11', '::1', 'WINNT', 'Chrome', 1), (105, 'Log In', '', '2021-06-16', '22:00:25', '::1', 'WINNT', 'Chrome', 1); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `administrator` -- ALTER TABLE `administrator` ADD PRIMARY KEY (`idAdministrator`); -- -- Indices de la tabla `area` -- ALTER TABLE `area` ADD PRIMARY KEY (`idArea`); -- -- Indices de la tabla `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`idCategory`), ADD KEY `area_idArea` (`area_idArea`); -- -- Indices de la tabla `country` -- ALTER TABLE `country` ADD PRIMARY KEY (`idCountry`); -- -- Indices de la tabla `filter_search` -- ALTER TABLE `filter_search` ADD PRIMARY KEY (`idFilter_search`); -- -- Indices de la tabla `journal` -- ALTER TABLE `journal` ADD PRIMARY KEY (`idJournal`), ADD KEY `country_idCountry` (`country_idCountry`); -- -- Indices de la tabla `journalcategory` -- ALTER TABLE `journalcategory` ADD PRIMARY KEY (`idJournalcategory`,`category_idCategory`,`journal_idJournal`), ADD UNIQUE KEY `indexjc` (`category_idCategory`,`journal_idJournal`), ADD KEY `category_idCategory` (`category_idCategory`), ADD KEY `journal_idJournal` (`journal_idJournal`); -- -- Indices de la tabla `logadministrator` -- ALTER TABLE `logadministrator` ADD PRIMARY KEY (`idLogAdministrator`), ADD KEY `administrator_idAdministrator` (`administrator_idAdministrator`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `administrator` -- ALTER TABLE `administrator` MODIFY `idAdministrator` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT de la tabla `area` -- ALTER TABLE `area` MODIFY `idArea` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; -- -- AUTO_INCREMENT de la tabla `category` -- ALTER TABLE `category` MODIFY `idCategory` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=624; -- -- AUTO_INCREMENT de la tabla `country` -- ALTER TABLE `country` MODIFY `idCountry` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=232; -- -- AUTO_INCREMENT de la tabla `filter_search` -- ALTER TABLE `filter_search` MODIFY `idFilter_search` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; -- -- AUTO_INCREMENT de la tabla `journal` -- ALTER TABLE `journal` MODIFY `idJournal` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26202; -- -- AUTO_INCREMENT de la tabla `journalcategory` -- ALTER TABLE `journalcategory` MODIFY `idJournalcategory` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=96364; -- -- AUTO_INCREMENT de la tabla `logadministrator` -- ALTER TABLE `logadministrator` MODIFY `idLogAdministrator` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=106; -- -- Restricciones para tablas volcadas -- -- -- Filtros para la tabla `category` -- ALTER TABLE `category` ADD CONSTRAINT `category_ibfk_1` FOREIGN KEY (`area_idArea`) REFERENCES `area` (`idArea`); -- -- Filtros para la tabla `journalcategory` -- ALTER TABLE `journalcategory` ADD CONSTRAINT `journalcategory_ibfk_1` FOREIGN KEY (`category_idCategory`) REFERENCES `category` (`idCategory`), ADD CONSTRAINT `journalcategory_ibfk_2` FOREIGN KEY (`journal_idJournal`) REFERENCES `journal` (`idJournal`); 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 */;
true
cc3bac3112a3562ac0c047b6f6f8c3561163ad75
SQL
honeybeeChu/xiuniang_sync_server
/src/main/resources/sqls/efast_orders.sql
UTF-8
2,802
3.609375
4
[]
no_license
/* Navicat MySQL Data Transfer Source Server : localhost_weixin_ctsh Source Server Version : 50718 Source Host : localhost:3306 Source Database : xiuniang Target Server Type : MYSQL Target Server Version : 50718 File Encoding : 65001 Date: 2017-07-02 10:14:52 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `efast_orders` -- ---------------------------- DROP TABLE IF EXISTS `efast_orders`; CREATE TABLE `efast_orders` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sell_record_code` varchar(255) DEFAULT NULL COMMENT 'efast 订单号', `order_status` varchar(255) DEFAULT NULL COMMENT '订单状态 0-未确认;1-已确认;3-已作废;5-已完成', `shipping_status` int(11) DEFAULT NULL COMMENT '0-未发货 1-已通知配货 2-拣货中(已分配拣货任务) 3-已完成拣货4-已发货', `pay_status` varchar(255) DEFAULT NULL COMMENT '支付状态 0:未付款 2:已付款', `sale_channel_code` varchar(255) DEFAULT NULL COMMENT '销售平台 taobao jingdong', `shop_code` varchar(255) DEFAULT NULL COMMENT '店铺代码', `buyer_name` varchar(255) DEFAULT NULL COMMENT '会员昵称', `receiver_name` varchar(255) DEFAULT NULL COMMENT '收货人', `receiver_country` varchar(255) DEFAULT NULL COMMENT '国家编号', `receiver_province` varchar(255) DEFAULT NULL COMMENT '省(名称)', `receiver_city` varchar(255) DEFAULT NULL COMMENT '市(名称)', `receiver_district` varchar(255) DEFAULT NULL COMMENT '区(名称)', `receiver_street` varchar(255) DEFAULT NULL COMMENT '街道(名称)', `receiver_address` varchar(255) DEFAULT NULL COMMENT '收货地址(包含省市', `receiver_addr` varchar(255) DEFAULT NULL COMMENT '收货地址(不包含省市', `receiver_zip_code` varchar(255) DEFAULT NULL COMMENT '收货邮编 ', `receiver_mobile` varchar(255) DEFAULT NULL COMMENT '收货手机号码 ', `receiver_phone` varchar(255) DEFAULT NULL COMMENT '收货电话 ', `receiver_email` varchar(255) DEFAULT NULL COMMENT '收货邮箱 ', `payable_money` int(11) DEFAULT NULL COMMENT '订单应付款=商品均摊金额之和+运费 ', `order_money` int(11) DEFAULT NULL COMMENT '订单总额sum(单价*数量) ', `discount_fee` int(11) DEFAULT NULL COMMENT '优惠金额 订单总额-订单应付款 ', `pay_code` varchar(255) DEFAULT NULL COMMENT '支付方式 ', `pay_time` datetime DEFAULT NULL COMMENT '支付时间 ', `openid` varchar(255) DEFAULT NULL COMMENT '这个订单属于哪个会员', PRIMARY KEY (`id`), KEY `index_efast_orders_on_openid` (`openid`), KEY `index_efast_orders_on_receiver_mobile` (`receiver_mobile`) ) ENGINE=InnoDB AUTO_INCREMENT=4013 DEFAULT CHARSET=utf8;
true
6d5122eb80bbd6d04584a456a580ed805aa67a07
SQL
fabricechatel/bam-app
/src/config/database/setfk.sql
UTF-8
4,750
2.75
3
[]
no_license
use bamdb; alter table CLIENT add constraint FK_ASSOCIATION_17 foreign key (ID_UTILISATEUR) references UTILISATEUR (ID_UTILISATEUR) on delete restrict on update restrict; alter table COMMANDE add constraint FK_PASSER foreign key (ID_CLIENT) references CLIENT (ID_CLIENT) on delete restrict on update restrict; alter table COMMENTAIRE add constraint FK_CONCERNE foreign key (ID_ARTICLE) references ARTICLE (ID_ARTICLE) on delete restrict on update restrict; alter table COMMENTAIRE add constraint FK_FAIT foreign key (ID_CLIENT) references CLIENT (ID_CLIENT) on delete restrict on update restrict; alter table FICHE add constraint FK_POSSEDE foreign key (ID_ARTICLE) references ARTICLE (ID_ARTICLE) on delete restrict on update restrict; alter table LIENS_CATEGORIE_ARTICLE add constraint FK_LIENS_CATEGORIE_ARTICLE foreign key (ID_ARTICLE) references ARTICLE (ID_ARTICLE) on delete restrict on update restrict; alter table LIENS_CATEGORIE_ARTICLE add constraint FK_LIENS_CATEGORIE_ARTICLE2 foreign key (ID_CATEGORIE) references CATEGORIE (ID_CATEGORIE) on delete restrict on update restrict; alter table LIENS_CLIENT_ADRESSE add constraint FK_POSSEDER foreign key (ID_CLIENT) references CLIENT (ID_CLIENT) on delete restrict on update restrict; alter table LIENS_CLIENT_ADRESSE add constraint FK_POSSEDER2 foreign key (ID_ADRESSE) references ADRESSE (ID_ADRESSE) on delete restrict on update restrict; alter table LIENS_COMMANDE_ADRESSE add constraint FK_LIENS_COMMANDE_ADRESSE foreign key (ID_COMMANDE) references COMMANDE (ID_COMMANDE) on delete restrict on update restrict; alter table LIENS_COMMANDE_ADRESSE add constraint FK_LIENS_COMMANDE_ADRESSE2 foreign key (ID_ADRESSE) references ADRESSE (ID_ADRESSE) on delete restrict on update restrict; alter table LIENS_PANIER_ARTICLE add constraint FK_CONTIENT foreign key (IDPANIER) references PANIER (IDPANIER) on delete restrict on update restrict; alter table LIENS_PANIER_ARTICLE add constraint FK_CONTIENT2 foreign key (ID_ARTICLE) references ARTICLE (ID_ARTICLE) on delete restrict on update restrict; alter table LIENS_PROMOTIONS_ARTICLES add constraint FK_LIENS_PROMOTION_ARTICLE foreign key (ID_ARTICLE) references ARTICLE (ID_ARTICLE) on delete restrict on update restrict; alter table LIENS_PROMOTIONS_ARTICLES add constraint FK_LIENS_PROMOTION_ARTICLE2 foreign key (ID_PROMOTION) references PROMOTION (ID_PROMOTION) on delete restrict on update restrict; alter table LIENS_SPECS_ARTICLE add constraint FK_LIENS_CARACTERISTIQUE_ARTIC foreign key (ID_CARACTERISTIQUE) references CARACTERISTIQUE (ID_CARACTERISTIQUE) on delete restrict on update restrict; alter table LIENS_SPECS_ARTICLE add constraint FK_LIENS_CARACTERISTIQUE_ARTI2 foreign key (ID_ARTICLE) references ARTICLE (ID_ARTICLE) on delete restrict on update restrict; alter table LIENS_SPECS_CATEGORIE add constraint FK_LIENS_SPECS_CATEGORIE foreign key (ID_CARACTERISTIQUE) references CARACTERISTIQUE (ID_CARACTERISTIQUE) on delete restrict on update restrict; alter table LIENS_SPECS_CATEGORIE add constraint FK_LIENS_SPECS_CATEGORIE2 foreign key (ID_CATEGORIE) references CATEGORIE (ID_CATEGORIE) on delete restrict on update restrict; alter table LIGNE_COMMANDE add constraint FK_LIGNE_COMMANDE foreign key (ID_COMMANDE) references COMMANDE (ID_COMMANDE) on delete restrict on update restrict; alter table LIGNE_COMMANDE add constraint FK_LIGNE_COMMANDE2 foreign key (ID_ARTICLE) references ARTICLE (ID_ARTICLE) on delete restrict on update restrict; alter table LISTE_DE_SOUHAITS add constraint FK_LISTE_DE_SOUHAITS foreign key (ID_ARTICLE) references ARTICLE (ID_ARTICLE) on delete restrict on update restrict; alter table LISTE_DE_SOUHAITS add constraint FK_LISTE_DE_SOUHAITS2 foreign key (ID_CLIENT) references CLIENT (ID_CLIENT) on delete restrict on update restrict; alter table MESSAGE add constraint FK_ENVOIE foreign key (ID_SENDER) references UTILISATEUR (ID_UTILISATEUR) on delete restrict on update restrict; alter table MESSAGE add constraint FK_RECOIT foreign key (ID_RECEIVER) references UTILISATEUR (ID_UTILISATEUR) on delete restrict on update restrict; alter table PANIER add constraint FK_APPARTIENT foreign key (ID_CLIENT) references CLIENT (ID_CLIENT) on delete restrict on update restrict; alter table UTILISATEUR_ROLES add constraint FK_REFERENCE_27 foreign key (NOMROLE) references ROLE (NOMROLE) on delete restrict on update restrict; alter table UTILISATEUR_ROLES add constraint FK_REFERENCE_28 foreign key (ID_UTILISATEUR) references UTILISATEUR (ID_UTILISATEUR) on delete restrict on update restrict;
true
0fd6b824f7a099d41ace4a759cde36bb0c0e1ca6
SQL
KhanhNguyenKHTN/IRES_ProjectWPF
/SqlFile/V1__init_master_data_v1.sql
UTF-8
19,375
3.8125
4
[]
no_license
CREATE TABLE IF NOT EXISTS ROLE ( ROLE_ID BIGSERIAL PRIMARY KEY, ROLE_CODE VARCHAR(20) NOT NULL, ROLE_NAME VARCHAR(100) NOT NULL, ROLE_DESCRIPTION VARCHAR(500), CREATED_BY VARCHAR(100), CREATED_DATETIME TIMESTAMP WITH TIME ZONE, UPDATED_BY VARCHAR(100), UPDATED_DATETIME TIMESTAMP WITH TIME ZONE, ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, VERSION NUMERIC, CONSTRAINT ROLE_CODE_UNIQUE UNIQUE (ROLE_CODE), CONSTRAINT ROLE_NAME_UNIQUE UNIQUE (ROLE_NAME) ); CREATE TABLE IF NOT EXISTS USER_INFO ( USER_ID BIGSERIAL PRIMARY KEY, USER_DISPLAY_NAME VARCHAR(100), USER_DoB DATE, USER_EMAIL VARCHAR(100), USER_PHONE VARCHAR(20), USER_ADDRESS VARCHAR(100), USER_AVATAR_URL VARCHAR(500), USER_STATUS VARCHAR(10) NOT NULL DEFAULT 'ACTIVE', CREATED_BY VARCHAR(100), CREATED_DATETIME TIMESTAMP WITH TIME ZONE, UPDATED_BY VARCHAR(100), UPDATED_DATETIME TIMESTAMP WITH TIME ZONE, ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, VERSION NUMERIC ); CREATE TABLE IF NOT EXISTS EMPLOYEE ( EMPLOYEE_ID BIGSERIAL PRIMARY KEY, EMPLOYEE_CODE VARCHAR(20) NOT NULL, USER_ID BIGINT, ROLE_ID BIGINT, EMPLOYEE_STATUS VARCHAR(10) NOT NULL DEFAULT 'ACTIVE', USER_NAME VARCHAR(100) NOT NULL, PASSWORD VARCHAR(500) NOT NULL, EMPLOYEE_DESCRIPTION VARCHAR(500), CREATED_BY VARCHAR(100), CREATED_DATETIME TIMESTAMP WITH TIME ZONE, UPDATED_BY VARCHAR(100), UPDATED_DATETIME TIMESTAMP WITH TIME ZONE, ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, VERSION NUMERIC, CONSTRAINT EMPLOYEE_CODE_UNIQUE UNIQUE (EMPLOYEE_CODE), CONSTRAINT USER_NAME_UNIQUE UNIQUE (USER_NAME), CONSTRAINT ROLE_FK FOREIGN KEY (ROLE_ID) REFERENCES ROLE (ROLE_ID), CONSTRAINT USER_INFO_FK FOREIGN KEY (USER_ID) REFERENCES USER_INFO (USER_ID) ); CREATE TABLE IF NOT EXISTS CUSTOMER ( CUSTOMER_ID BIGSERIAL PRIMARY KEY, CUSTOMER_CODE VARCHAR(20) NOT NULL, USER_ID BIGINT, USER_NAME VARCHAR(100) NOT NULL, PASSWORD VARCHAR(500) NOT NULL, CUSTOMER_LEVEL VARCHAR(50), CUSTOMER_POINT INTEGER, CUSTOMER_STATUS VARCHAR(10) NOT NULL DEFAULT 'ACTIVE', CUSTOMER_DESCRIPTION VARCHAR(500), CREATED_BY VARCHAR(100), CREATED_DATETIME TIMESTAMP WITH TIME ZONE, UPDATED_BY VARCHAR(100), UPDATED_DATETIME TIMESTAMP WITH TIME ZONE, ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, VERSION NUMERIC, CONSTRAINT CUSTOMER_CODE_UNIQUE UNIQUE (CUSTOMER_CODE), CONSTRAINT CUSTOMER_NAME_UNIQUE UNIQUE (USER_NAME), CONSTRAINT USER_FK FOREIGN KEY (USER_ID) REFERENCES USER_INFO (USER_ID) ); CREATE TABLE IF NOT EXISTS PROMOTION ( PROMOTION_ID BIGSERIAL PRIMARY KEY, PROMOTION_CODE VARCHAR(20) NOT NULL, PROMOTION_APPLY_TYPE VARCHAR(50) NOT NULL, PROMOTION_START_DATE DATE NOT NULL, PROMOTION_END_DATE DATE NOT NULL, PROMOTION_QUANTITY INTEGER DEFAULT NULL, PROMOTION_VALUE VARCHAR(50), PROMOTION_MAX_VALUE INTEGER, PROMOTION_UNIT VARCHAR(20) NOT NULL, PROMOTION_CONDITION VARCHAR(500), PROMOTION_DESCRIPTION VARCHAR(500), CREATED_BY VARCHAR(100), CREATED_DATETIME TIMESTAMP WITH TIME ZONE, UPDATED_BY VARCHAR(100), UPDATED_DATETIME TIMESTAMP WITH TIME ZONE, ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, VERSION NUMERIC, CONSTRAINT PROMOTION_CODE_UNIQUE UNIQUE (PROMOTION_CODE) ); CREATE TABLE IF NOT EXISTS TABLE_INFO ( TABLE_ID BIGSERIAL PRIMARY KEY, TABLE_CODE VARCHAR(20) NOT NULL, TABLE_NUMBER INTEGER, TABLE_POSITION VARCHAR(100) NOT NULL, TABLE_STATUS VARCHAR(20) NOT NULL DEFAULT 'ACTIVE', TABLE_DESCRIPTION VARCHAR(500), CREATED_BY VARCHAR(100), CREATED_DATETIME TIMESTAMP WITH TIME ZONE, UPDATED_BY VARCHAR(100), UPDATED_DATETIME TIMESTAMP WITH TIME ZONE, ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, VERSION NUMERIC, CONSTRAINT TABLE_CODE_UNIQUE UNIQUE (TABLE_CODE) ); CREATE TABLE IF NOT EXISTS RESTAURANT_INFO ( RESTAURANT_ID BIGSERIAL PRIMARY KEY, RESTAURANT_CODE VARCHAR(20) NOT NULL, RESTAURANT_NAME VARCHAR(100) NOT NULL, RESTAURANT_EMAIL VARCHAR(100) NOT NULL, RESTAURANT_PHONE VARCHAR(20) NOT NULL, RESTAURANT_ADDRESS VARCHAR(20) NOT NULL, RESTAURANT_DESCRIPTION VARCHAR(500), CREATED_BY VARCHAR(100), CREATED_DATETIME TIMESTAMP WITH TIME ZONE, UPDATED_BY VARCHAR(100), UPDATED_DATETIME TIMESTAMP WITH TIME ZONE, ACTIVE BOOLEAN NOT NULL DEFAULT TRUE, VERSION NUMERIC, CONSTRAINT RESTAURANT_CODE_UNIQUE UNIQUE (RESTAURANT_CODE) ); CREATE TABLE IF NOT EXISTS EMPLOYEE_TALBE ( EMPLOYEE_ID BIGINT NOT NULL, TABLE_ID BIGINT NOT NULL, PRIMARY KEY (EMPLOYEE_ID, TABLE_ID), CONSTRAINT EMPLOYEE_TABLE_FK1 FOREIGN KEY (EMPLOYEE_ID) REFERENCES EMPLOYEE (EMPLOYEE_ID), CONSTRAINT EMPLOYEE_TABLE_FK2 FOREIGN KEY (TABLE_ID) REFERENCES TABLE_INFO (TABLE_ID) ); INSERT INTO "role" ("role_id", "role_code", "role_name", "role_description", "created_by", "created_datetime", "updated_by", "updated_datetime", "active", "version") VALUES (2, E'CHEF', E'Bếp trưởng', E'Bếp trưởng', E'Script', E'2019-09-29 11:02:29+07', E'Script', E'2019-09-29 11:02:33+07', E'true', 0), (3, E'CASHIER', E'Thu ngân', E'Thu ngân', E'Script', E'2019-09-29 11:04:58+07', E'Script', E'2019-09-29 11:05:00+07', E'true', 0), (1, E'STAFF', E'Nhân viên phục vụ', E'Nhân viên phục vụ', E'Script', E'2019-09-29 11:01:53+07', E'Script', E'2019-09-29 11:01:56+07', E'true', 0), (4, E'RECEPTIONIST', E'Lễ tân', E'Lễ tân', E'Script', E'2019-09-29 11:06:57+07', E'Script', E'2019-09-29 11:06:59+07', E'true', 0), (5, E'COOK', E'Đầu bếp', E'Đầu bếp', E'Script', E'2019-09-29 11:14:38+07', E'Script', E'2019-09-29 11:14:41+07', E'true', 0), (6, E'SHIF-MANAGER', E'Quản lý ca', E'Quản ly ca', E'Script', E'2019-09-29 11:15:11+07', E'Script', E'2019-09-29 11:15:18+07', E'true', 0), (7, E'ADMIN', E'Quản lý nhà hàng', E'Quản lý nhà hàng', E'Script', E'2019-09-29 11:15:48+07', E'Script', E'2019-09-29 11:15:50+07', E'true', 0); INSERT INTO "user_info" ("user_id", "user_display_name", "user_dob", "user_email", "user_phone", "user_address", "user_avatar_url", "user_status", "created_by", "created_datetime", "updated_by", "updated_datetime", "active", "version") VALUES (4, E'Nguyễn Khánh Hòa', E'1997-01-04', E'nkhoa@fit.hcmus.edu', E'00444444444', E'Đồng Nai', E'https://scontent.fsgn5-2.fna.fbcdn.net/v/t1.0-9/31719880_600835530269311_738568352951173120_n.jpg?_nc_cat=107&_nc_oc=AQnVJFBwoeypcnMB9u3f8cKcPRHe5X-Q_jb-RE8O1IRbkJrtDtCY5q6FHjBNXTZz4J0UM1K6IRQZYtBDH79nYB7A&_nc_ht=scontent.fsgn5-2.fna&oh=a19aeb7c4e3b2dc5c43f78b945d952dc&oe=5DF1A1CB', E'ACTIVE', E'Script', E'2019-09-29 00:13:57+07', E'Script', E'2019-09-29 00:13:59+07', E'true', 0), (5, E'Nguyễn Văn Khánh', E'1997-01-05', E'nvkhanh@fit.hcmus.edu', E'00555555555', E'Quảng Nam', E'https://scontent.fsgn5-4.fna.fbcdn.net/v/t1.0-1/13920587_590900304416593_2249068951488918012_n.jpg?_nc_cat=102&_nc_oc=AQlleEt1I-T6niwHzaTY4aanFcROUNXBkA44lSJZeXVyckVUyBOK2baYcd6Hz4p0L2lmbx0UncAytX4jYGfHSUs3&_nc_ht=scontent.fsgn5-4.fna&oh=2f60403bc05b00f14c31f0906655db13&oe=5DF1AFE0', E'ACTIVE', E'Script', E'2019-09-29 00:14:59+07', E'Script', E'2019-09-29 00:15:01+07', E'true', 0), (6, E'NV phục vụ 01', E'1997-01-06', E'nvpv01@gmail.com', E'01111111111', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 00:18:11+07', E'Admin', E'2019-09-29 00:18:17+07', E'true', 0), (2, E'Hồ Ngọc Phương Duy', E'1997-01-02', E'hnpduy@fit.hcmus.edu', E'00222222222', E'Hà Nội', E'https://scontent.fsgn5-3.fna.fbcdn.net/v/t1.0-9/71013848_1174914632692805_8612454823519846400_n.jpg?_nc_cat=111&_nc_oc=AQkdyjUvvye6gpDkmANVpITDzaQdJPSbHaFVWMlcwDGMahCDTruWxDFhZq6jL6g-P9NjA1XjN0izHSqTQcpAjtyU&_nc_ht=scontent.fsgn5-3.fna&oh=117790f9a9a56273939a855ff9e456bb&oe=5DF6BCD0', E'ACTIVE', E'Script', E'2019-09-29 00:08:20+07', E'Script', E'2019-09-29 00:08:22+07', E'true', 0), (1, E'Nguyễn Trần Tuấn Anh', E'1997-01-01', E'nttanh@fit.hcmus.edu', E'00111111111', E'TP HCM', E'https://scontent.fsgn5-3.fna.fbcdn.net/v/t1.0-9/68542902_1813466048798656_7185744658624937984_n.jpg?_nc_cat=111&_nc_oc=AQmfOxhgzhgBf3dNOImdytwx4OcwAOqgOHjBdnEt2_8HOGemL3IATG3PNXAIys5lBjLVqy25xJ_567i-UsR4bv7E&_nc_ht=scontent.fsgn5-3.fna&oh=38082ee4131120ed0886f3457545fa82&oe=5E3A972F', E'ACTIVE', E'Script', E'2019-09-29 00:03:57+07', E'Script', E'2019-09-29 00:04:00+07', E'true', 0), (20, E'Admin', E'2019-09-29', E'admin@gmail.com', E'07111111111', E'TP HCM', NULL, E'ACTIVE', E'Script', E'2019-09-29 11:32:14+07', E'Script', E'2019-09-29 11:32:17+07', E'true', 0), (7, E'NV phục vụ 02', E'2019-09-29', E'nvpv02@gmail.com', E'01222222222', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 00:18:11+07', E'Admin', E'2019-09-29 00:18:17+07', E'true', 0), (8, E'NV phục vụ 03', E'2019-09-29', E'nvpv03@gmail.com', E'01333333333', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 00:18:11+07', E'Admin', E'2019-09-29 00:18:17+07', E'true', 0), (9, E'Bếp trưởng 1', E'2019-09-29', E'chef01@gmail.com', E'02111111111', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 00:18:11+07', E'Admin', E'2019-09-29 00:18:17+07', E'true', 0), (10, E'Bếp trưởng 2', E'2019-09-29', E'chef02@gmail.com', E'02222222222', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 00:18:11+07', E'Admin', E'2019-09-29 00:18:17+07', E'true', 0), (11, E'Thu ngân 01', E'2019-09-29', E'cashier01@gmail.com', E'03111111111', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:24:03+07', E'Admin', E'2019-09-29 11:24:09+07', E'true', 0), (12, E'Thu ngân 02', E'2019-09-29', E'cashier02@gmail.com', E'03222222222', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:24:38+07', E'Admin', E'2019-09-29 11:24:41+07', E'true', 0), (13, E'Lễ tân 01', E'2019-09-29', E'receptionist01@gmail.com', E'04111111111', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:25:30+07', E'Admin', E'2019-09-29 11:25:33+07', E'true', 0), (14, E'Lễ tân 02', E'2019-09-29', E'receptionist02@gmail.com', E'04222222222', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:26:34+07', E'Admin', E'2019-09-29 11:26:38+07', E'true', 0), (15, E'Đầu bếp 01', E'2019-09-29', E'cook01@gmail.com', E'05111111111', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:27:21+07', E'Admin', E'2019-09-29 11:27:24+07', E'true', 0), (16, E'Đầu bếp 02', E'2019-09-29', E'cook02@gmail.com', E'05222222222', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:27:51+07', E'Admin', E'2019-09-29 11:27:53+07', E'true', 0), (17, E'Đầu bếp 03', E'2019-09-29', E'cook03@gmail.com', E'05333333333', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:28:24+07', E'Admin', E'2019-09-29 11:28:26+07', E'true', 0), (18, E'Quản lý ca 01', E'2019-09-29', E'shif_manager@gmail.com', E'06111111111', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:29:04+07', E'Admin', E'2019-09-29 11:29:05+07', E'true', 0), (19, E'Quản lý ca 02', E'2019-09-29', E'shif_manager02@gmail.com', E'06222222222', E'TP HCM', NULL, E'ACTIVE', E'Admin', E'2019-09-29 11:29:43+07', E'Admin', E'2019-09-29 11:29:46+07', E'true', 0), (3, E'Lê Thị Kim Hạnh', E'1997-01-03', E'ltkhanh@fit.hcmus.edu', E'00333333333', E'Ninh Thuận', E'https://scontent.fsgn5-1.fna.fbcdn.net/v/t1.0-9/50542060_2301030766847417_2626816042776657920_n.jpg?_nc_cat=101&_nc_oc=AQnvF8wdPAXA5bn6m6tXTOoepi7NbsParFkGL_NsEXZCeAjdiA--aZLRGU_mMV6C9CyPGNT6052JdVqC6j7V5VD8&_nc_ht=scontent.fsgn5-1.fna&oh=ced0f2cbf98e6c960b9881c4502e66d7&oe=5E32D0D1', E'ACTIVE', E'Script', E'2019-09-29 00:11:09+07', E'Script', E'2019-09-29 00:11:11+07', E'true', 0); INSERT INTO "employee" ("employee_id", "employee_code", "user_id", "role_id", "employee_status", "user_name", "password", "employee_description", "created_by", "created_datetime", "updated_by", "updated_datetime", "active", "version") VALUES (1, E'NV-111111-PV', 6, 1, E'ACTIVE', E'nvpv01', E'111111', E'Nhân viên phục vụ 01', E'Script', E'2019-09-29 11:17:46+07', E'Script', E'2019-09-29 11:17:48+07', E'true', 0), (2, E'NV-222222-PV', 7, 1, E'ACTIVE', E'nvpv02', E'111111', E'Nhân viên phục vụ 02', E'Script', E'2019-09-29 11:18:23+07', E'Script', E'2019-09-29 11:18:25+07', E'true', 0), (3, E'NV-333333-PV', 8, 1, E'ACTIVE', E'nvpv03', E'111111', E'Nhân viên phục vụ 03', E'Script', E'2019-09-29 11:18:51+07', E'Script', E'2019-09-29 11:18:53+07', E'true', 0), (4, E'CHEF-111111', 9, 2, E'ACTIVE', E'chef01', E'222222', E'Đầu bếp trưởng 01', E'Script', E'2019-09-29 11:22:03+07', E'Script', E'2019-09-29 11:22:05+07', E'true', 0), (5, E'CHEF-222222', 10, 2, E'ACTIVE', E'chef02', E'222222', E'Đầu bếp trưởng 02', E'Script', E'2019-09-29 11:22:34+07', E'Script', E'2019-09-29 11:22:36+07', E'true', 0), (6, E'CASHIER-111111', 11, 3, E'ACTIVE', E'cashier01', E'333333', E'Thu ngân 01', E'Script', E'2019-09-29 11:33:44+07', E'Script', E'2019-09-29 11:33:46+07', E'true', 0), (7, E'CASHIER-222222', 12, 3, E'ACTIVE', E'cashier02', E'333333', E'Thu ngân 02', E'Script', E'2019-09-29 11:34:17+07', E'Script', E'2019-09-29 11:34:18+07', E'true', 0), (8, E'RECEP-111111', 13, 4, E'ACTIVE', E'receptionist01', E'444444', E'Lễ tân 01', E'Script', E'2019-09-29 11:35:34+07', E'Script', E'2019-09-29 11:35:36+07', E'true', 0), (9, E'RECEP-222222', 14, 4, E'ACTIVE', E'receptionist02', E'444444', E'Lễ tân 02', E'Script', E'2019-09-29 11:36:12+07', E'Script', E'2019-09-29 11:36:14+07', E'true', 0), (10, E'COOK-111111', 15, 5, E'ACTIVE', E'cook01', E'555555', E'Đầu bếp 01', E'Script', E'2019-09-29 11:36:52+07', E'Script', E'2019-09-29 11:36:55+07', E'true', 0), (16, E'ADMIN', 20, 7, E'ACTIVE', E'admin', E'777777', E'Quản lý nhà hàng', E'Script', E'2019-09-29 11:40:53+07', E'Script', E'2019-09-29 11:40:56+07', E'true', 0), (11, E'COOK-222222', 16, 5, E'ACTIVE', E'cook02', E'555555', E'Đầu bếp 02', E'Script', E'2019-09-29 11:37:28+07', E'Script', E'2019-09-29 11:37:31+07', E'true', 0), (14, E'SHMN-111111', 18, 6, E'ACTIVE', E'shifmanager01', E'666666', E'Quản lý ca 01', E'Script', E'2019-09-29 11:39:45+07', E'Script', E'2019-09-29 11:39:47+07', E'true', 0), (15, E'SHMN-222222', 19, 6, E'ACTIVE', E'shifmanager02', E'666666', E'Quản lý ca 02', E'Script', E'2019-09-29 11:40:16+07', E'Script', E'2019-09-29 11:40:18+07', E'true', 0), (12, E'COOK-333333', 17, 5, E'ACTIVE', E'cook03', E'555555', E'Đầu bếp 03', E'Script', E'2019-09-29 11:38:41+07', E'Script', E'2019-09-29 11:38:44+07', E'true', 0); INSERT INTO "customer" ("customer_id", "customer_code", "user_id", "user_name", "password", "customer_level", "customer_point", "customer_status", "customer_description", "created_by", "created_datetime", "updated_by", "updated_datetime", "active", "version") VALUES (1, E'CU-111111', 1, E'customer01', E'111111', E'Bạc', 100, E'ACTIVE', E'Khách hàng 01', E'Script', E'2019-09-29 00:00:13+07', E'Script', E'2019-09-29 00:00:20+07', E'true', 0), (2, E'CU-222222', 2, E'customer02', E'222222', E'Bạc', 100, E'ACTIVE', E'Khách hàng 02', E'Script', E'2019-09-29 10:54:32+07', E'Script', E'2019-09-29 10:54:35+07', E'true', 0), (3, E'Cu-333333', 3, E'customer03', E'333333', E'Bạc', 100, E'ACTIVE', E'Khách hàng 03', E'Script', E'2019-09-29 10:55:17+07', E'Script', E'2019-09-29 10:55:21+07', E'true', 0), (4, E'Cu-444444', 4, E'customer04', E'444444', E'Bạc', 100, E'ACTIVE', E'Khách hàng 04', E'Script', E'2019-09-29 10:55:55+07', E'Script', E'2019-09-29 10:55:58+07', E'true', 0), (5, E'Cu-555555', 5, E'customer05', E'555555', E'Bạc', 100, E'ACTIVE', E'Khách hàng 05', E'Script', E'2019-09-29 10:56:53+07', E'Script', E'2019-09-29 10:56:56+07', E'true', 0); INSERT INTO "promotion" ("promotion_id", "promotion_code", "promotion_apply_type", "promotion_start_date", "promotion_end_date", "promotion_quantity", "promotion_value", "promotion_max_value", "promotion_unit", "promotion_condition", "promotion_description", "created_by", "created_datetime", "updated_by", "updated_datetime", "active", "version") VALUES (1, E'KHUYENMAI01', E'ALL', E'2019-09-27', E'2019-10-01', NULL, E'100000', 100000, E'VNĐ', NULL, E'Giảm giá 100,000VNĐ đối với khách hàng nhập mã khuyến mãi là KHUYENMAI01', E'Script', E'2019-09-29 11:56:12+07', E'Script', E'2019-09-29 11:56:14+07', E'true', 0), (2, E'KHUYENMAI02', E'CUSTOMER', E'2019-09-26', E'2019-10-01', NULL, E'40', 500000, E'%', E'Level bạc', E'Giảm giá 40% tổng hóa đơn tối đa 500,000VNĐ', E'Script', E'2019-09-29 11:57:31+07', E'Script', E'2019-09-29 11:57:33+07', E'true', 0); INSERT INTO "table_info" ("table_id", "table_code", "table_number", "table_position", "table_status", "table_description", "created_by", "created_datetime", "updated_by", "updated_datetime", "active", "version") VALUES (1, E'TABLE-01', 1, E'Tầng 1', E'ACTIVE', E'Bàn 1 Tầng 1', E'Script', E'2019-09-29 12:00:42+07', E'Script', E'2019-09-29 12:00:45+07', E'true', 0), (2, E'TABLE-02', 2, E'Tầng 1', E'ACTIVE', E'Bàn 2 Tầng 1', E'Script', E'2019-09-29 12:01:18+07', E'Script', E'2019-09-29 12:01:20+07', E'true', 0), (3, E'TABLE-03', 3, E'Tầng 1', E'ACTIVE', E'Bàn 3 Tầng 1', E'Script', E'2019-09-29 12:01:18+07', E'Script', E'2019-09-29 12:01:20+07', E'true', 0), (4, E'TABLE-04', 4, E'Tầng 1', E'ACTIVE', E'Bàn 4 Tầng 1', E'Script', E'2019-09-29 12:01:18+07', E'Script', E'2019-09-29 12:01:20+07', E'true', 0), (5, E'TABLE-05', 5, E'Tầng 1', E'ACTIVE', E'Bàn 5 Tầng 1', E'Script', E'2019-09-29 12:01:18+07', E'Script', E'2019-09-29 12:01:20+07', E'true', 0), (6, E'TABLE-06', 1, E'Tầng 2', E'ACTIVE', E'Bàn 1 Tầng 2', E'Script', E'2019-09-29 12:03:15+07', E'Script', E'2019-09-29 12:03:17+07', E'true', 0), (7, E'TABLE-07', 2, E'Tầng 2', E'ACTIVE', E'Bàn 2 Tầng 2', E'Script', E'2019-09-29 12:03:15+07', E'Script', E'2019-09-29 12:03:17+07', E'true', 0), (8, E'TABLE-08', 3, E'Tầng 2', E'ACTIVE', E'Bàn 3 Tầng 2', E'Script', E'2019-09-29 12:03:15+07', E'Script', E'2019-09-29 12:03:17+07', E'true', 0), (10, E'TABLE-10', 5, E'Tầng 2', E'ACTIVE', E'Bàn 5 Tầng 2', E'Script', E'2019-09-29 12:03:15+07', E'Script', E'2019-09-29 12:03:17+07', E'true', 0), (9, E'TABLE-09', 4, E'Tầng 2', E'ACTIVE', E'Bàn 4 Tầng 2', E'Script', E'2019-09-29 12:03:15+07', E'Script', E'2019-09-29 12:03:17+07', E'true', 0); INSERT INTO "restaurant_info" ("restaurant_id", "restaurant_code", "restaurant_name", "restaurant_email", "restaurant_phone", "restaurant_address", "restaurant_description", "created_by", "created_datetime", "updated_by", "updated_datetime", "active", "version") VALUES (1, E'RESTAURANT-IRES', E'Nhà hàng 5 sao IRES', E'kingdom@ires.com', E'0999999999', E'227 Nguyễn Văn Cừ', E'Nhà hàng 5 sao IRES', E'Script', E'2019-09-29 11:59:05+07', E'Script', E'2019-09-29 11:59:07+07', E'true', 0);
true
acb320fbabaddccfa83ddf64fef8fa10ec25a2b9
SQL
freebz/Effective-SQL
/ch01/ex1-9.sql
UTF-8
378
2.84375
3
[]
no_license
-- 코드 1-9 Customers 테이블 생성 CREATE TABLE Customers ( CustomerID int NOT NULL PRIMARY KEY, CustFirstName varchar(25) NULL, CustLastName varchar(25) NULL, CustStreetAddress varchar(50) NULL, CustCity varchar(30) NULL, CustState varchar(2) NULL, CustZipCode varchar(10) NULL, CustAreaCode smallint NULL DEFAULT 0, CustPhoneNumber varchar(8) NULL );
true
33413c367ff9b5ff3263cb0287b5204bd8f8e8fb
SQL
czqmike/ticketManager
/ticketdb.sql
UTF-8
7,438
2.890625
3
[]
no_license
CREATE DATABASE IF NOT EXISTS `ticketdb` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `ticketdb`; -- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) -- -- Host: localhost Database: ticketdb -- ------------------------------------------------------ -- Server version 5.7.19-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `order` -- DROP TABLE IF EXISTS `order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `order` ( `ticket_id` int(20) NOT NULL DEFAULT '0', `username` varchar(45) NOT NULL DEFAULT '0', `time` datetime NOT NULL DEFAULT '1960-01-01 00:00:00', `station` varchar(45) NOT NULL DEFAULT '武汉', PRIMARY KEY (`ticket_id`,`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order` -- LOCK TABLES `order` WRITE; /*!40000 ALTER TABLE `order` DISABLE KEYS */; INSERT INTO `order` VALUES (1,'admin','2018-04-24 23:06:15','北京'),(4,'czqmike','2018-04-25 23:27:10','武昌'); /*!40000 ALTER TABLE `order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `refund` -- DROP TABLE IF EXISTS `refund`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `refund` ( `ticket_id` int(20) NOT NULL DEFAULT '0', `username` varchar(45) NOT NULL DEFAULT '0', `time` datetime NOT NULL DEFAULT '1960-01-01 00:00:00', `price` double NOT NULL DEFAULT '0', PRIMARY KEY (`ticket_id`,`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `refund` -- LOCK TABLES `refund` WRITE; /*!40000 ALTER TABLE `refund` DISABLE KEYS */; /*!40000 ALTER TABLE `refund` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ticket` -- DROP TABLE IF EXISTS `ticket`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ticket` ( `ticket_id` int(20) NOT NULL AUTO_INCREMENT, `train_number` varchar(45) NOT NULL DEFAULT '0' COMMENT '车次号', `seat_number` varchar(45) NOT NULL DEFAULT '0' COMMENT '座位号', `price` double NOT NULL DEFAULT '0' COMMENT '票价', `bought` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`ticket_id`), KEY `train_number_idx` (`train_number`), CONSTRAINT `train_number` FOREIGN KEY (`train_number`) REFERENCES `ticket_count` (`train_number`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ticket` -- LOCK TABLES `ticket` WRITE; /*!40000 ALTER TABLE `ticket` DISABLE KEYS */; INSERT INTO `ticket` VALUES (1,'K599','A-1',152.5,1),(2,'K599','A-2',152.5,0),(3,'K599','A-3',152.5,0),(4,'K968','A-1',153.5,1),(5,'K968','A-2',153.5,0),(6,'K968','A-3',153.5,0),(7,'K600','A-1',152.5,0),(8,'K600','A-2',152.5,0),(9,'K600','A-3',152.5,0),(10,'Z36','A-1',1058,0); /*!40000 ALTER TABLE `ticket` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ticket_count` -- DROP TABLE IF EXISTS `ticket_count`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `ticket_count` ( `train_number` varchar(45) NOT NULL DEFAULT '0', `total` int(11) NOT NULL DEFAULT '0' COMMENT '总票数', `refund` int(11) NOT NULL DEFAULT '0' COMMENT '退票数', `remain` int(11) NOT NULL DEFAULT '0' COMMENT '剩余票数', PRIMARY KEY (`train_number`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ticket_count` -- LOCK TABLES `ticket_count` WRITE; /*!40000 ALTER TABLE `ticket_count` DISABLE KEYS */; INSERT INTO `ticket_count` VALUES ('K599',3,0,2),('K600',3,0,3),('K968',3,0,2),('Z36',1,0,1); /*!40000 ALTER TABLE `ticket_count` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `train` -- DROP TABLE IF EXISTS `train`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `train` ( `train_number` varchar(45) NOT NULL DEFAULT '‘0’' COMMENT '车次号', `start_station` varchar(45) NOT NULL DEFAULT '武汉' COMMENT '始发站', `end_station` varchar(45) NOT NULL DEFAULT '武汉' COMMENT '终点站', `start_date` date NOT NULL DEFAULT '1960-01-01' COMMENT '发车时间', `start_time` time NOT NULL DEFAULT '00:00:00', `timecost` int(11) NOT NULL DEFAULT '0' COMMENT '用时(分钟)', PRIMARY KEY (`train_number`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `train` -- LOCK TABLES `train` WRITE; /*!40000 ALTER TABLE `train` DISABLE KEYS */; INSERT INTO `train` VALUES ('K599','北京','武昌','2018-05-01','05:08:00',1021),('K600','武昌','北京','2018-05-01','03:52:00',1028),('K968','武昌','北京','2018-05-01','00:13:00',1035),('Z36','武昌','北京','2018-05-01','03:14:00',811); /*!40000 ALTER TABLE `train` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `user` ( `username` varchar(45) NOT NULL DEFAULT 'null' COMMENT '用户名', `password` varchar(45) NOT NULL DEFAULT 'null', `name` varchar(45) NOT NULL DEFAULT 'null' COMMENT '姓名', `permission` varchar(20) NOT NULL DEFAULT 'user' COMMENT '用户权限', `phonenumber` varchar(45) NOT NULL DEFAULT 'null', `citizenID` varchar(45) NOT NULL DEFAULT 'null' COMMENT '身份证号', PRIMARY KEY (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user` -- LOCK TABLES `user` WRITE; /*!40000 ALTER TABLE `user` DISABLE KEYS */; INSERT INTO `user` VALUES ('admin','123','陈','admin','null','null'),('czqmike','123','MikeChen','user','1871','4208'),('signup','123','注册','user','1800','4100'),('test','test','测试','user','111','1111'); /*!40000 ALTER TABLE `user` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping events for database 'ticketdb' -- -- -- Dumping routines for database 'ticketdb' -- /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-04-27 9:42:10
true
c06464cd4379592162a7d09ca1516b1d05b81c97
SQL
Yitian-Zhang/yitian-heron-scheduler
/heron_scheduler.sql
UTF-8
1,125
3.109375
3
[]
no_license
SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for tb_cpu_load -- ---------------------------- DROP TABLE IF EXISTS `tb_cpu_load`; CREATE TABLE `tb_cpu_load` ( `topology_id` varchar(255) DEFAULT NULL, `begin_task` int(255) DEFAULT NULL, `end_task` int(255) DEFAULT NULL, `load` bigint(255) DEFAULT NULL, `node` varchar(255) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for tb_node -- ---------------------------- DROP TABLE IF EXISTS `tb_node`; CREATE TABLE `tb_node` ( `name` varchar(255) DEFAULT NULL, `capacity` bigint(255) DEFAULT NULL, `cores` int(255) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for tb_traffic -- ---------------------------- DROP TABLE IF EXISTS `tb_traffic`; CREATE TABLE `tb_traffic` ( `topology_id` varchar(255) DEFAULT NULL, `source_task` int(255) DEFAULT NULL, `destination_task` int(255) DEFAULT NULL, `traffic` int(255) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET FOREIGN_KEY_CHECKS = 1;
true
f3556991ea7f6cfb8f298bf27b0fe89f1fc33266
SQL
jeterpan/sqls_logix_padrao
/Acessos, Usuário x Carteira.sql
UTF-8
753
2.75
3
[]
no_license
-- ----------------------------------------------------------------------------- -- vdp6330 Usuário x Carteira -- ----------------------------------------------------------------------------- -- Replica acessos de carteira que usuario destino ainda não tem INSERT INTO usuario_carteira SELECT cod_empresa , '' -- Usuário destino , cod_tip_carteira , ies_tip_lista FROM usuario_carteira u WHERE nom_usuario = '' -- Usuário origem AND NOT EXISTS ( SELECT 1 FROM usuario_carteira u2 WHERE u2.cod_empresa = u.cod_empresa AND u2.nom_usuario = '' -- Usuário destino AND u2.cod_tip_carteira = u.cod_tip_carteira ) ;
true
c5f8c2d5cd68dc82171282700ca2285fcc0ea958
SQL
cwi-crescer-2017-1/rafael.barreto
/modulo07/exercicios em aula.sql
UTF-8
1,058
3.71875
4
[]
no_license
------------------------- Exercicio 01 ------------------------- CREATE VIEW vwProdutos_Sem_Compra as select IDProduto,Nome from Produto where IDProduto not in( select pro.IDProduto from produto pro inner join pedidoItem pItem on pItem.IDProduto = pro.IDProduto inner join pedido ped on ped.IDPedido = pItem.IDPedido where ped.datapedido > sysdate - 120); ------------------------ Exercicio 02 ---------------------------- update produto set Situacao = 'I' where IdProduto IN (select IDProduto From VWPRODUTOS_SEM_COMPRA); update produto set Situacao = 'I' where Exists (select IDProduto From VWPRODUTOS_SEM_COMPRA vw where Produto.Idproduto = Vw.Idproduto); --> pode projetar mais de uma coluna e nao pode usar funcao de grupo. ------------------------ Exercicio 03 ---------------------------- select sum(item.Quantidade) qtde from PedidoItem item inner join pedido ped on Ped.IDPedido = item.IDPedido where item.IDProduto = :p_IDProduto and ped.DataPedido >= trunc(sysdate, 'yyyy');
true
d3098b88670ec5ede07cbc89043c5582a8211c8c
SQL
Tienza/PIRADON---DATABASE-MANAGEMENT---CMPT-308L---111
/Lab 03 - Getting started with SQL queries/Documents/Basic Queries.sql
UTF-8
1,105
3.890625
4
[]
no_license
-- #1 Order number and total dollars of all orders. SELECT ordnum, totalUSD FROM orders; -- #2 List the name and city of agents named Smith. SELECT name, city FROM agents WHERE name = 'Smith'; -- #3 List the pid, name, and priceUSD of products with quantity more than 208,000. SELECT pid, name, priceUSD FROM products WHERE quantity > 208000; -- #4 List the names and cities of customers in Dallas. SELECT name, city FROM customers WHERE city = 'Dallas'; -- #5 List the names of agents not in New York and not in Tokyo. SELECT name FROM agents WHERE city <> 'New York' AND city <> 'Tokyo'; -- #6 List all data for products not in Dallas or Duluth that cost US$1 or more. SELECT * FROM products WHERE city <> 'Dallas' AND city <> 'Duluth' AND priceUSD >= 1; -- #7 List all data for orders in January or March. SELECT * FROM orders WHERE mon = 'jan' OR mon = 'mar'; -- #8 List all data for orders in February less than us$500. SELECT * FROM orders WHERE mon = 'feb' AND totalUSD < 500; -- #9 List all orders from the customer whose cid is C005. SELECT * FROM orders WHERE cid = 'c005';
true
f771d886135f4faeec20ebee18d43a687add9d2b
SQL
D03R90/PHP-2
/Lesson7/shops.sql
UTF-8
2,706
3.265625
3
[]
no_license
-- phpMyAdmin SQL Dump -- version 4.8.3 -- https://www.phpmyadmin.net/ -- -- Хост: 127.0.0.1:3306 -- Время создания: Янв 17 2019 г., 11:00 -- Версия сервера: 5.7.23 -- Версия PHP: 7.1.22 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 */; -- -- База данных: `shops` -- -- -------------------------------------------------------- -- -- Структура таблицы `basket` -- CREATE TABLE `basket` ( `idx` int(11) NOT NULL, `session` text NOT NULL, `product` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `basket` -- INSERT INTO `basket` (`idx`, `session`, `product`) VALUES (100, 'atvap8if6g5qccbne0dj5mf4s6m8thjb', 1), (101, 'atvap8if6g5qccbne0dj5mf4s6m8thjb', 2), (102, 'atvap8if6g5qccbne0dj5mf4s6m8thjb', 3), (103, 'sc6sse5raqae52gbeeem55gpdipb1o2n', 1); -- -------------------------------------------------------- -- -- Структура таблицы `products` -- CREATE TABLE `products` ( `idx` int(11) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `image` text NOT NULL, `price` float NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `products` -- INSERT INTO `products` (`idx`, `name`, `description`, `image`, `price`) VALUES (1, 'Ноутбук HP 15-bs516ur 2GF21EA', 'Характеристики:', '2.jpg', 11000), (2, 'Ноутбук Lenovo IdeaPad 110-15IBR (80T700С2RK)', 'Характеристики:', '3.jpg', 22000), (3, 'Ноутбук Acer', 'Характеристики:', '1.jpg', 30000); -- -- Индексы сохранённых таблиц -- -- -- Индексы таблицы `basket` -- ALTER TABLE `basket` ADD PRIMARY KEY (`idx`); -- -- Индексы таблицы `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`idx`); -- -- AUTO_INCREMENT для сохранённых таблиц -- -- -- AUTO_INCREMENT для таблицы `basket` -- ALTER TABLE `basket` MODIFY `idx` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=104; -- -- AUTO_INCREMENT для таблицы `products` -- ALTER TABLE `products` MODIFY `idx` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
true
76105cef638886f02d758287422c9c706e5e8d54
SQL
hkoscielski/oracle-lab
/lista4/49_dane.sql
WINDOWS-1250
2,682
3.421875
3
[]
no_license
-- Wypelnij danymi DECLARE TYPE dane_kota IS RECORD (pseudo kocury.pseudo%TYPE, myszy NUMBER(3)); TYPE tablica_kotow IS TABLE OF dane_kota INDEX BY BINARY_INTEGER; koty tablica_kotow; TYPE myszy_wiersz IS RECORD (nr_myszy myszy.nr_myszy%TYPE, lowca myszy.lowca%TYPE, zjadacz myszy.zjadacz%TYPE, waga_myszy myszy.waga_myszy%TYPE, data_zlowienia Myszy.data_zlowienia%TYPE, data_wydania Myszy.data_wydania%TYPE); TYPE tablica_myszy IS TABLE OF myszy_wiersz INDEX BY BINARY_INTEGER; dane_myszy tablica_myszy; sroda DATE := '04/01/01'; nastepny_dzien DATE; ile_poluja NUMBER; l_myszy BINARY_INTEGER := 1; przydzielone BINARY_INTEGER := 1; BEGIN WHILE sroda < SYSDATE LOOP nastepny_dzien := sroda+1; sroda := (NEXT_DAY(LAST_DAY(ADD_MONTHS(sroda, 1)) - 7, 'roda')); SELECT pseudo, NVL(przydzial_myszy,0) + NVL(myszy_extra,0) BULK COLLECT INTO koty FROM Kocury WHERE w_stadku_od <= nastepny_dzien; SELECT ROUND(AVG(NVL(przydzial_myszy,0) + NVL(myszy_extra,0))+0.5) INTO ile_poluja FROM kocury WHERE w_stadku_od <= nastepny_dzien; przydzielone:=l_myszy; FOR j IN 1..koty.COUNT LOOP FOR k IN 1..ile_poluja LOOP dane_myszy(l_myszy).nr_myszy := l_myszy; dane_myszy(l_myszy).lowca := koty(j).pseudo; dane_myszy(l_myszy).waga_myszy := DBMS_RANDOM.VALUE(30,60); dane_myszy(l_myszy).data_zlowienia := nastepny_dzien + DBMS_RANDOM.VALUE(0,28); dane_myszy(l_myszy).data_wydania := sroda; l_myszy:=l_myszy+1; END LOOP; END LOOP; FOR j IN 1..koty.COUNT LOOP FOR k IN 1..koty(j).myszy LOOP dane_myszy(przydzielone).zjadacz := koty(j).pseudo; przydzielone:=przydzielone+1; END LOOP; END LOOP; WHILE przydzielone < l_myszy LOOP dane_myszy(przydzielone).zjadacz := 'TYGRYS'; przydzielone:=przydzielone+1; END LOOP; END LOOP; FORALL j IN 1..dane_myszy.COUNT SAVE EXCEPTIONS INSERT INTO myszy(nr_myszy, lowca, zjadacz, waga_myszy, data_zlowienia, data_wydania) VALUES(dane_myszy(j).nr_myszy, dane_myszy(j).lowca, dane_myszy(j).zjadacz, dane_myszy(j).waga_myszy, dane_myszy(j).data_zlowienia, dane_myszy(j).data_wydania); EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE(SQLERRM); END;
true
ffbfedeb2721572864401cc25b344defe3443071
SQL
supernet29/RouteCommunity
/webapp/SQL/RouteCoummunity.sql
UTF-8
5,775
3.25
3
[]
no_license
-- MySQL dump 10.16 Distrib 10.1.23-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: RouteCommunity -- ------------------------------------------------------ -- Server version 10.1.23-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `comment` -- DROP TABLE IF EXISTS `comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comment` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `document` bigint(20) NOT NULL, `writer` bigint(20) NOT NULL, `comment` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `comment_ibfk_1` (`document`), KEY `comment_ibfk_2` (`writer`), CONSTRAINT `comment_ibfk_1` FOREIGN KEY (`document`) REFERENCES `document` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `comment_ibfk_2` FOREIGN KEY (`writer`) REFERENCES `userinfo` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `comment` -- LOCK TABLES `comment` WRITE; /*!40000 ALTER TABLE `comment` DISABLE KEYS */; INSERT INTO `comment` VALUES (1,1,1,'test'),(16,9,11,'Naver'),(17,13,11,'좋은 정보네요.'),(18,14,11,'그렇군요?'),(27,13,16,'정말 좋은 정보네요.'),(28,14,16,'자세한 버스 번호까지 말해주세요.'),(29,13,17,'좋은 정보 감사합니다. 자가용을 이용하지만 자가용 곧 수리들어가는 참이었는데 감사해요~'),(30,20,17,'기가맥힌 정보네요^^'); /*!40000 ALTER TABLE `comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `document` -- DROP TABLE IF EXISTS `document`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `document` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `source_latitude` double NOT NULL, `source_longitude` double NOT NULL, `destination_latitude` double NOT NULL, `destination_longitude` double NOT NULL, `writer` bigint(20) NOT NULL, `content` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `writer` (`writer`), CONSTRAINT `document_ibfk_1` FOREIGN KEY (`writer`) REFERENCES `userinfo` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `document` -- LOCK TABLES `document` WRITE; /*!40000 ALTER TABLE `document` DISABLE KEYS */; INSERT INTO `document` VALUES (1,33.49182363501188,126.59230224245964,33.45579878691985,126.5614934326073,1,'test','test'),(9,33.49182363501188,126.59230224245964,33.45579878691985,126.5614934326073,11,'hello','hello'),(13,33.49182363501188,126.59230224245964,33.45579878691985,126.5614934326073,11,'봉개동에서 제주대까지 올때는 버스를 시외버스 710, 720, 730 번을 타고 시청에서 환승해서 오는게 빨라요.','봉개동에서 제주대까지'),(14,33.45534848916691,126.5616355273278,33.499015043823114,126.53025055892827,11,'시청까지 가는 버스가 많아요, 아무거나 타서 내려가세요.','제주대에서 시청까지'),(20,33.522004008496324,126.56691850609883,33.45464892415522,126.56524228139838,17,'버스 : 10, 11, 48, 28\r\n(버스는 노선이 가장 쉬워11번이 가장 빨리도착해요 - 교통량에따라 상이함)','화북에서 제주대까지'); /*!40000 ALTER TABLE `document` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `userinfo` -- DROP TABLE IF EXISTS `userinfo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `userinfo` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `image_url` varchar(256) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`), UNIQUE KEY `email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `userinfo` -- LOCK TABLES `userinfo` WRITE; /*!40000 ALTER TABLE `userinfo` DISABLE KEYS */; INSERT INTO `userinfo` VALUES (1,'test','test1234','test@test.com',NULL),(11,'master','test','master@test.com','/master.png'),(16,'woochan','jeju','jeju@test.com',NULL),(17,'flask','1234','tmdgy15@gmail.com',NULL); /*!40000 ALTER TABLE `userinfo` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2017-06-16 16:03:07
true
1588d0cb5435c721a1c2546717719b2104c6f1d2
SQL
cdlee390778266/qlttwx
/code/jeecg-p3-biz-alipay-single/src/main/java/com/jeecg/alipay/account/sql/mysql/AlipayMenuDao_getAllFirstMenu.sql
UTF-8
100
2.671875
3
[]
no_license
SELECT * FROM alipay_menu qm WHERE (qm.father_id is null or qm.father_id ='') ORDER BY qm.orders
true
58fd37afb833440c265852140d491a4c131a7d57
SQL
arnaudmathias/42
/PHP/d05/ex01/ex01.sql
UTF-8
198
2.609375
3
[]
no_license
CREATE TABLE ft_table ( id int NOT NULL AUTO_INCREMENT, login varchar(8) NOT NULL DEFAULT 'toto', groupe ENUM('staff','student','other') NOT NULL, date_de_creation DATE NOT NULL, PRIMARY KEY (id));
true
76412048b100c2e812b53c298464b3a7db3b4d1a
SQL
goten4/GtnPersistZendDb
/test/data/schema.sql
UTF-8
326
2.53125
3
[ "MIT" ]
permissive
DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, `name` varchar(255) DEFAULT NULL, `company_id` INTEGER NOT NULL ); DROP TABLE IF EXISTS `companies`; CREATE TABLE `companies` ( `id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, `name` varchar(255) DEFAULT NULL );
true
566784d86a37572813a361bcca0416de610316b2
SQL
ivan-fr/python_aprentissage_2
/openclassrooms/openclassrooms_mysql/chap2-jointure.sql
UTF-8
5,065
4.40625
4
[]
no_license
select espece_id from `Animal` where nom = 'cartouche'; select description from `Espece` where id = 1; select Espece.nom_latin from `Espece` inner join `Animal` on `Espece`.id = `Animal`.espece_id where Animal.nom = 'caribou'; select 3+5 as chiots_cartouche; SELECT * -- comme d'habitude, vous sélectionnez les colonnes que vous voulez FROM nom_table1 [INNER] JOIN nom_table2 -- INNER explicite le fait qu'il s'agit d'une jointure interne, mais c'est facultatif ON colonne_table1 = colonne_table2 -- sur quelles colonnes se fait la jointure -- vous pouvez mettre colonne_table2 = colonne_table1, l'ordre n'a pas d'importance [WHERE ...] [ORDER BY ...] -- les clauses habituelles sont bien sûr utilisables ! [LIMIT ...]; SELECT * FROM table1 INNER JOIN table2 ON table1.colonneA = table2.colonneJ AND table1.colonneT = table2.colonneX [AND ...]; select e.id, e.description, a.nom from `Espece` as e inner join `Animal` as a on e.id = a.espece_id where a.nom like 'ch%'; SELECT Espece.id AS id_espece, Espece.description AS description_espece, Animal.nom AS nom_bestiole FROM Espece INNER JOIN Animal ON Espece.id = Animal.espece_id WHERE Animal.nom LIKE 'Ch%'; SELECT Animal.nom AS nom_animal, Race.nom AS race FROM Animal INNER JOIN Race ON Animal.race_id = Race.id WHERE Animal.espece_id = 2 -- ceci correspond aux chats ORDER BY Race.nom, Animal.nom; SELECT Animal.nom AS nom_animal, Race.nom AS race FROM Animal -- Table de gauche LEFT JOIN Race -- Table de droite ON Animal.race_id = Race.id WHERE Animal.espece_id = 2 AND Animal.nom LIKE 'C%' ORDER BY Race.nom, Animal.nom; SELECT Animal.nom AS nom_animal, Race.nom AS race FROM Animal -- Table de gauche right JOIN Race -- Table de droite ON Animal.race_id = Race.id WHERE Race.espece_id = 2 ORDER BY Race.nom, Animal.nom; SELECT * FROM table1 [INNER | LEFT | RIGHT] JOIN table2 USING (colonneJ); -- colonneJ est présente dans les deux tables -- équivalent à SELECT * FROM table1 [INNER | LEFT | RIGHT] JOIN table2 ON table1.colonneJ = table2.colonneJ; -- table1 : colonnes A, B, C -- table2 : colonnes B, E, F -- table3 : colonnes A, C, E SELECT * FROM table1 NATURAL JOIN table2; -- EST ÉQUIVALENT À SELECT * FROM table1 INNER JOIN table2 ON table1.B = table2.B; SELECT * FROM table1 NATURAL JOIN table3; -- EST ÉQUIVALENT À SELECT * FROM table1 INNER JOIN table3 ON table1.A = table3.A AND table1.C = table3.C; SELECT * FROM table1, table2 WHERE table1.colonne1 = table2.colonne2; -- équivalent à SELECT * FROM table1 [INNER] JOIN table2 ON table1.colonne1 = table2.colonne2; select Race.nom from `Race` inner join `Espece` on `Race`.espece_id = `Espece`.id where Espece.nom_courant = 'Chien' and Race.nom like 'berger%' select Animal.nom, Animal.date_naissance, Race.nom as race_nom from `Animal` left join `Race` on `Animal`.race_id = `Race`.id where (Race.description not like '%pelage%' and Race.description not like '%poil%' and Race.description not like '%robe%') or Race.id is null; select Animal.sexe, Espece.nom_latin, Race.nom from `Animal` inner join `Espece` on `Animal`.espece_id = `Espece`.id left join `Race` on `Animal`.race_id = `Race`.id where Espece.nom_courant = 'chat' or Espece.nom_courant = 'Perroquet amazone' order by Espece.nom_latin, Race.nom; select Animal.nom, Animal.date_naissance, Race.nom from `Animal` inner join `Race` on `Animal`.race_id = `Race`.id inner join `Espece` on `Animal`.espece_id = `Espece`.id where Animal.date_naissance < '2016-07-01' and Animal.sexe = 'F' and Espece.nom_courant = 'Chien'; select Pere.nom as papa, Mere.nom as maman, Animal.nom from `Animal` inner join `Animal` as Pere on `Animal`.pere_id = Pere.id inner join `Animal` as Mere on `Animal`.mere_id = Mere.id inner join `Espece` on `Animal`.espece_id = `Espece`.id where Espece.nom_courant = 'chat'; select Animal.nom, Animal.sexe, Animal.date_naissance from `Animal` inner join `Animal` as Pere on `Animal`.pere_id = Pere.id where Pere.nom = 'bouli'; select Enfant.nom, Enfant.sexe, Enfant.date_naissance from Animal inner join Animal as Enfant on Enfant.pere_id = `Animal`.id where Animal.nom = 'bouli' select animale_spece.nom_courant AS espece, Animal.nom AS nom_animal, race_animal.nom AS race_animal, Pere.nom AS papa, Race_pere.nom AS race_papa, Mere.nom AS maman, Race_mere.nom AS race_maman from `Animal` inner join `Animal` as Pere on `Animal`.pere_id = Pere.id inner join Race as Race_pere on Pere.race_id = Race_pere.id inner join `Animal` as Mere on `Animal`.mere_id = Mere.id inner join `Race` as Race_mere on Mere.race_id = Race_mere.id inner join `Espece` as animale_spece on `Animal`.espece_id = animale_spece.id inner join `Race` as race_animal on `Animal`.race_id = race_animal.id
true
efd947841de021574133c8928c8aa2c1fb8e0e74
SQL
grigory89/UniversityEducationalProject
/src/main/resources/testdata/insert_into_tables.sql
UTF-8
1,662
2.765625
3
[]
no_license
insert into FACULTIES (NAME) values ('art'), ('science'); insert into SUBJECTS (NAME, FACULTY_ID) values ('math', 2), ('economy', 2), ('philosophy', 1), ('history', 1), ('computers', 2); insert into TEACHERS (FACULTY_ID, NAME, PHONE_NUMBER, SUBJECT_ID) values (2, 'Marijo Smullen', '+263-990-807-3846', 1), (2, 'Valerie Brockwell','+3-190-112-5569', 2), (1, 'Rosabelle Spatari', '+1-359-284-4567', 3), (1, 'Gallagher Michelotti', '+45-359-284-5695', 4), (2, 'Claudina Manthroppe', '+34-459-246-9095',5); insert into CLASSROOMS (NUMBER) VALUES (1), (2), (3), (4); insert into GROUPS (FACULTY_ID, NAME) values (1, 'ab19'), (2, 'cd19'), (2, 'ef19'), (1, 'gh18'), (1, 'lk18'), (2, 'mu18'), (1, 'gr18'); insert into STUDENTS (GROUP_ID, NAME, PHONE_NUMBER, ID_CARD) values (2, 'Myron Giaomozzo', '+359-621-794-4600', 1), (4, 'Maurise Healing', '+86-751-754-9988', 2), (1, 'Audrye Hartrick', '+7-333-659-9133', 3), (2, 'Fremont Scrane', '+63-153-723-1444', 4), (3, 'Sheryl Baron', '+371-190-112-5556', 5), (3, 'Almire Perrin', '+82-194-292-9909', 6), (1, 'Lira Sabattier', '+1-359-284-9095', 7), (2, 'Dayna Davidovics', '+30-102-127-1501', 8), (1, 'Rodi Hosier', '+54-799-504-0278', 9), (7, 'Ruddy Pavese', '+52-472-557-9199', 10), (6, 'Fancy Dullingham', '+385-447-363-4475', 11), (4, 'Craggy Presho', '+263-990-807-3846', 12), (1, 'Price Klaggeman', '+234-836-762-1412', 13), (5, 'Clint Lannen', '+86-619-311-8646', 14); insert into LESSONS (DATE_TIME, SUBJECT_ID, CLASSROOM, TEACHER_ID) values ('2019-10-19 10:00:00', 1, 2, 1); insert into LESSONS_GROUPS (LESSON_ID, GROUP_ID) values (1, 2), (1, 1);
true
f0a83bb0716f91b25babc5e3c1b887f1bdfe1739
SQL
IshtiaqueNafis/SQL-REPO
/SQL BASICS/3- The WHERE Clause.sql
UTF-8
1,225
3.09375
3
[]
no_license
SELECT * FROM customers where points > 3000; /*customer_id, first_name, last_name, birth_date, phone, address, city, state, points 5 Clemmie Betchley 1973-11-07 5 Spohn Circle Arlington TX 3675 6 Elka Twiddell 1991-09-04 312-480-8498 7 Manley Drive Chicago IL 3073 */ SELECT * from customers where state = "VA"; /*customer_id, first_name, last_name, birth_date, phone, address, city, state, points 1 Babara MacCaffrey 1986-03-28 781-932-9754 0 Sage Terrace Waltham VA 2273 2 Ines Brushfield 1986-04-13 804-427-9456 14187 Commercial Trail Hampton VA 947 */ SELECT * from customers where birth_date > '1990-01-01'; /* # customer_id, first_name, last_name, birth_date, phone, address, city, state, points '6', 'Elka', 'Twiddell', '1991-09-04', '312-480-8498', '7 Manley Drive', 'Chicago', 'IL', '3073' '8', 'Thacher', 'Naseby', '1993-07-17', '941-527-3977', '538 Mosinee Center', 'Sarasota', 'FL', '205' '9', 'Romola', 'Rumgay', '1992-05-23', '559-181-3744', '3520 Ohio Trail', 'Visalia', 'CA', '1486' */ SELECT * from orders where order_date >='2019-01-01'; /* # order_id, customer_id, order_date, status, comments, shipped_date, shipper_id '1', '6', '2019-01-30', '1', NULL, NULL, NULL */
true